Version Description
= 7.0.0 =
This is a major release. Please back up your site before upgrading.
= 6.0.0 =
This is a major release. Please back up your site before upgrading.
Download this release
Release Info
Developer | chriscct7 |
Plugin | Google Analytics for WordPress by MonsterInsights |
Version | 7.10.2 |
Comparing to | |
See all releases |
Code changes from version 7.10.1 to 7.10.2
- assets/images/rafflepress.png +0 -0
- assets/images/seedprod.png +0 -0
- assets/images/trustpulse.png +0 -0
- googleanalytics.php +2 -2
- includes/admin/api-auth.php +5 -5
- includes/admin/common.php +261 -0
- includes/admin/reports/abstract-report.php +1 -0
- includes/admin/routes.php +32 -2
- includes/api-request.php +1 -1
- languages/google-analytics-for-wordpress.pot +987 -621
- languages/vue.php +444 -58
- lite/assets/vue/css/chunk-common.css +1 -1
- lite/assets/vue/css/chunk-common.rtl.css +1 -1
- lite/assets/vue/css/reports.css +1 -1
- lite/assets/vue/css/reports.rtl.css +1 -1
- lite/assets/vue/css/widget.css +1 -1
- lite/assets/vue/css/widget.rtl.css +1 -1
assets/images/rafflepress.png
ADDED
Binary file
|
assets/images/seedprod.png
ADDED
Binary file
|
assets/images/trustpulse.png
ADDED
Binary file
|
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: 7.10.
|
10 |
* Requires at least: 3.8.0
|
11 |
*
|
12 |
* License: GPL v3
|
@@ -68,7 +68,7 @@ final class MonsterInsights_Lite {
|
|
68 |
* @access public
|
69 |
* @var string $version Plugin version.
|
70 |
*/
|
71 |
-
public $version = '7.10.
|
72 |
|
73 |
/**
|
74 |
* 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: 7.10.2
|
10 |
* Requires at least: 3.8.0
|
11 |
*
|
12 |
* License: GPL v3
|
68 |
* @access public
|
69 |
* @var string $version Plugin version.
|
70 |
*/
|
71 |
+
public $version = '7.10.2';
|
72 |
|
73 |
/**
|
74 |
* Plugin file.
|
includes/admin/api-auth.php
CHANGED
@@ -115,7 +115,7 @@ final class MonsterInsights_API_Auth {
|
|
115 |
'network' => is_network_admin() ? 'network' : 'site',
|
116 |
'siteurl' => is_network_admin() ? network_admin_url() : site_url(),
|
117 |
'return' => is_network_admin() ? network_admin_url( 'admin.php?page=monsterinsights_network' ) : admin_url( 'admin.php?page=monsterinsights_settings' ),
|
118 |
-
'testurl' => 'https://
|
119 |
), $this->get_route( 'https://' . monsterinsights_get_api_url() . 'auth/new/{type}' ) );
|
120 |
|
121 |
if ( monsterinsights_is_pro_version() ) {
|
@@ -269,7 +269,7 @@ final class MonsterInsights_API_Auth {
|
|
269 |
'key' => MonsterInsights()->auth->get_key(),
|
270 |
'token' => MonsterInsights()->auth->get_token(),
|
271 |
'return' => is_network_admin() ? network_admin_url( 'admin.php?page=monsterinsights_network' ) : admin_url( 'admin.php?page=monsterinsights_settings' ),
|
272 |
-
'testurl' => 'https://
|
273 |
), $this->get_route( 'https://' . monsterinsights_get_api_url() . 'auth/reauth/{type}' ) );
|
274 |
|
275 |
if ( monsterinsights_is_pro_version() ) {
|
@@ -395,7 +395,7 @@ final class MonsterInsights_API_Auth {
|
|
395 |
}
|
396 |
|
397 |
$network = ! empty( $_REQUEST['network'] ) ? $_REQUEST['network'] === 'network' : $this->is_network_admin();
|
398 |
-
$api = new MonsterInsights_API_Request( $this->get_route( 'auth/verify/{type}/' ), array( 'network' => $network, 'tt' => $this->get_tt(), 'key' => $creds['key'], 'token' => $creds['token'], 'testurl' => 'https://
|
399 |
$ret = $api->request();
|
400 |
|
401 |
$this->rotate_tt();
|
@@ -476,7 +476,7 @@ final class MonsterInsights_API_Auth {
|
|
476 |
}
|
477 |
}
|
478 |
|
479 |
-
$api = new MonsterInsights_API_Request( $this->get_route( 'auth/delete/{type}/' ), array( 'network' => $this->is_network_admin(), 'tt' => $this->get_tt(), 'key' => $creds['key'], 'token' => $creds['token'], 'testurl' => 'https://
|
480 |
$ret = $api->request();
|
481 |
|
482 |
$this->rotate_tt();
|
@@ -511,7 +511,7 @@ final class MonsterInsights_API_Auth {
|
|
511 |
'tt' => $this->get_tt(),
|
512 |
'key' => $creds['key'],
|
513 |
'token' => $creds['token'],
|
514 |
-
'testurl' => 'https://
|
515 |
) );
|
516 |
// Force the network admin url otherwise this will fail not finding the url in relay.
|
517 |
$api->site_url = network_admin_url();
|
115 |
'network' => is_network_admin() ? 'network' : 'site',
|
116 |
'siteurl' => is_network_admin() ? network_admin_url() : site_url(),
|
117 |
'return' => is_network_admin() ? network_admin_url( 'admin.php?page=monsterinsights_network' ) : admin_url( 'admin.php?page=monsterinsights_settings' ),
|
118 |
+
'testurl' => 'https://' . monsterinsights_get_api_url() . 'test/',
|
119 |
), $this->get_route( 'https://' . monsterinsights_get_api_url() . 'auth/new/{type}' ) );
|
120 |
|
121 |
if ( monsterinsights_is_pro_version() ) {
|
269 |
'key' => MonsterInsights()->auth->get_key(),
|
270 |
'token' => MonsterInsights()->auth->get_token(),
|
271 |
'return' => is_network_admin() ? network_admin_url( 'admin.php?page=monsterinsights_network' ) : admin_url( 'admin.php?page=monsterinsights_settings' ),
|
272 |
+
'testurl' => 'https://' . monsterinsights_get_api_url() . 'test/',
|
273 |
), $this->get_route( 'https://' . monsterinsights_get_api_url() . 'auth/reauth/{type}' ) );
|
274 |
|
275 |
if ( monsterinsights_is_pro_version() ) {
|
395 |
}
|
396 |
|
397 |
$network = ! empty( $_REQUEST['network'] ) ? $_REQUEST['network'] === 'network' : $this->is_network_admin();
|
398 |
+
$api = new MonsterInsights_API_Request( $this->get_route( 'auth/verify/{type}/' ), array( 'network' => $network, 'tt' => $this->get_tt(), 'key' => $creds['key'], 'token' => $creds['token'], 'testurl' => 'https://' . monsterinsights_get_api_url() . 'test/' ) );
|
399 |
$ret = $api->request();
|
400 |
|
401 |
$this->rotate_tt();
|
476 |
}
|
477 |
}
|
478 |
|
479 |
+
$api = new MonsterInsights_API_Request( $this->get_route( 'auth/delete/{type}/' ), array( 'network' => $this->is_network_admin(), 'tt' => $this->get_tt(), 'key' => $creds['key'], 'token' => $creds['token'], 'testurl' => 'https://' . monsterinsights_get_api_url() . 'test/' ) );
|
480 |
$ret = $api->request();
|
481 |
|
482 |
$this->rotate_tt();
|
511 |
'tt' => $this->get_tt(),
|
512 |
'key' => $creds['key'],
|
513 |
'token' => $creds['token'],
|
514 |
+
'testurl' => 'https://' . monsterinsights_get_api_url() . 'test/'
|
515 |
) );
|
516 |
// Force the network admin url otherwise this will fail not finding the url in relay.
|
517 |
$api->site_url = network_admin_url();
|
includes/admin/common.php
CHANGED
@@ -308,6 +308,7 @@ function monsterinsights_admin_scripts() {
|
|
308 |
'wizard_url' => admin_url( 'index.php?page=monsterinsights-onboarding' ),
|
309 |
'install_nonce' => wp_create_nonce( 'monsterinsights-install' ),
|
310 |
'activate_nonce' => wp_create_nonce( 'monsterinsights-activate' ),
|
|
|
311 |
'update_settings' => current_user_can( 'monsterinsights_save_settings' ),
|
312 |
)
|
313 |
);
|
@@ -803,3 +804,263 @@ function monsterinsights_remove_unnecessary_footer_hooks() {
|
|
803 |
}
|
804 |
|
805 |
add_action( 'admin_head', 'monsterinsights_remove_unnecessary_footer_hooks', 15 );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
308 |
'wizard_url' => admin_url( 'index.php?page=monsterinsights-onboarding' ),
|
309 |
'install_nonce' => wp_create_nonce( 'monsterinsights-install' ),
|
310 |
'activate_nonce' => wp_create_nonce( 'monsterinsights-activate' ),
|
311 |
+
'deactivate_nonce'=> wp_create_nonce( 'monsterinsights-deactivate' ),
|
312 |
'update_settings' => current_user_can( 'monsterinsights_save_settings' ),
|
313 |
)
|
314 |
);
|
804 |
}
|
805 |
|
806 |
add_action( 'admin_head', 'monsterinsights_remove_unnecessary_footer_hooks', 15 );
|
807 |
+
|
808 |
+
/**
|
809 |
+
* Display dismissable admin pointer for year in review 2019 report
|
810 |
+
*
|
811 |
+
*/
|
812 |
+
function monsterinsights_yearinreview_admin_menu_tooltip() {
|
813 |
+
|
814 |
+
$dismiss_tooltip = get_option( 'monsterinsights_yearinreview_dismiss_admin_tooltip', false );
|
815 |
+
$activated = get_option( 'monsterinsights_over_time', array() );
|
816 |
+
$ua_code = monsterinsights_get_ua();
|
817 |
+
$dashboards_disabled = monsterinsights_get_option( 'dashboards_disabled', false );
|
818 |
+
|
819 |
+
if ( $dashboards_disabled ) {
|
820 |
+
return;
|
821 |
+
}
|
822 |
+
|
823 |
+
if ( ! current_user_can( 'monsterinsights_view_dashboard' ) ) {
|
824 |
+
return;
|
825 |
+
}
|
826 |
+
|
827 |
+
if ( monsterinsights_is_reports_page() || monsterinsights_is_settings_page() ) {
|
828 |
+
// Don't show on MI pages.
|
829 |
+
return;
|
830 |
+
}
|
831 |
+
|
832 |
+
// equivalent to: 01/01/2020 @ 12:00am (UTC)
|
833 |
+
$new_year = '1577836800';
|
834 |
+
|
835 |
+
// equivalent to: 01/02/2020 @ 12:00am (UTC)
|
836 |
+
$start_time = '1577923200';
|
837 |
+
|
838 |
+
// equivalent to: 01/13/2020 @ 12:00am (UTC)
|
839 |
+
$end_time = '1578873600';
|
840 |
+
|
841 |
+
if ( $dismiss_tooltip ) {
|
842 |
+
return;
|
843 |
+
}
|
844 |
+
|
845 |
+
// don't show before January 02, 2020
|
846 |
+
if ( $start_time > time() ) {
|
847 |
+
return;
|
848 |
+
}
|
849 |
+
|
850 |
+
// don't show after January 13, 2020
|
851 |
+
if ( $end_time < time() ) {
|
852 |
+
return;
|
853 |
+
}
|
854 |
+
|
855 |
+
if ( empty( $activated['connected_date'] ) || ( $activated['connected_date'] > $new_year ) || empty( $ua_code ) ) {
|
856 |
+
return;
|
857 |
+
}
|
858 |
+
|
859 |
+
// remove lite upsell
|
860 |
+
remove_action( 'adminmenu', 'monsterinsights_get_admin_menu_tooltip' );
|
861 |
+
|
862 |
+
$url = admin_url( 'admin.php?page=monsterinsights_reports#/year-in-review' );
|
863 |
+
?>
|
864 |
+
<div id="monsterinsights-yearinreview-admin-menu-tooltip" class="monsterinsights-yearinreview-admin-menu-tooltip-hide">
|
865 |
+
<div class="monsterinsights-yearinreview-admin-menu-tooltip-header">
|
866 |
+
<span class="monsterinsights-yearinreview-admin-menu-tooltip-icon">
|
867 |
+
<span class="dashicons dashicons-megaphone"></span>
|
868 |
+
</span>
|
869 |
+
<?php esc_html_e( 'Your 2019 Analytics Report', 'google-analytics-for-wordpress' ); ?>
|
870 |
+
<a href="#" class="monsterinsights-yearinreview-admin-menu-tooltip-close">
|
871 |
+
<span class="dashicons dashicons-dismiss"></span>
|
872 |
+
</a>
|
873 |
+
</div>
|
874 |
+
<div class="monsterinsights-yearinreview-admin-menu-tooltip-content">
|
875 |
+
<strong><?php esc_html_e( 'See how your website performed this year and find tips along the way to help grow even more in 2020!', 'google-analytics-for-wordpress' ); ?></strong>
|
876 |
+
<p>
|
877 |
+
<a href="<?php echo esc_url( $url ); ?>" class="button button-primary monsterinsights-yearinreview-admin-menu-tooltip-btn-link"><?php esc_html_e( 'View 2019 Year in Review report!', 'google-analytics-for-wordpress' ); ?></a>
|
878 |
+
</p>
|
879 |
+
</div>
|
880 |
+
</div>
|
881 |
+
<style type="text/css">
|
882 |
+
#monsterinsights-yearinreview-admin-menu-tooltip {
|
883 |
+
position: absolute;
|
884 |
+
left: 100%;
|
885 |
+
top: 100%;
|
886 |
+
background: #fff;
|
887 |
+
margin-left: 16px;
|
888 |
+
width: 350px;
|
889 |
+
box-shadow: 0px 4px 7px 0px #ccc;
|
890 |
+
}
|
891 |
+
|
892 |
+
#monsterinsights-yearinreview-admin-menu-tooltip:before {
|
893 |
+
content: '';
|
894 |
+
width: 0;
|
895 |
+
height: 0;
|
896 |
+
border-style: solid;
|
897 |
+
border-width: 12px 12px 12px 0;
|
898 |
+
border-color: transparent #fff transparent transparent;
|
899 |
+
position: absolute;
|
900 |
+
right: 100%;
|
901 |
+
top: 130px;
|
902 |
+
z-index: 10;
|
903 |
+
}
|
904 |
+
|
905 |
+
#monsterinsights-yearinreview-admin-menu-tooltip:after {
|
906 |
+
content: '';
|
907 |
+
width: 0;
|
908 |
+
height: 0;
|
909 |
+
border-style: solid;
|
910 |
+
border-width: 13px 13px 13px 0;
|
911 |
+
border-color: transparent #ccc transparent transparent;
|
912 |
+
position: absolute;
|
913 |
+
right: 100%;
|
914 |
+
margin-left: -1px;
|
915 |
+
top: 129px;
|
916 |
+
z-index: 5;
|
917 |
+
}
|
918 |
+
|
919 |
+
#monsterinsights-yearinreview-admin-menu-tooltip.monsterinsights-yearinreview-tooltip-arrow-top:before {
|
920 |
+
top: 254px;
|
921 |
+
}
|
922 |
+
|
923 |
+
#monsterinsights-yearinreview-admin-menu-tooltip.monsterinsights-yearinreview-tooltip-arrow-top:after {
|
924 |
+
top: 253px;
|
925 |
+
}
|
926 |
+
|
927 |
+
.monsterinsights-yearinreview-admin-menu-tooltip-header {
|
928 |
+
background: #03a0d2;
|
929 |
+
padding: 5px 12px;
|
930 |
+
font-size: 14px;
|
931 |
+
font-weight: 700;
|
932 |
+
font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
|
933 |
+
color: #fff;
|
934 |
+
line-height: 1.6;
|
935 |
+
}
|
936 |
+
|
937 |
+
.monsterinsights-yearinreview-admin-menu-tooltip-icon {
|
938 |
+
background: #fff;
|
939 |
+
border-radius: 50%;
|
940 |
+
width: 28px;
|
941 |
+
height: 25px;
|
942 |
+
display: inline-block;
|
943 |
+
color: #03a0d2;
|
944 |
+
text-align: center;
|
945 |
+
padding: 3px 0 0;
|
946 |
+
margin-right: 6px;
|
947 |
+
}
|
948 |
+
|
949 |
+
.monsterinsights-yearinreview-admin-menu-tooltip-hide {
|
950 |
+
display: none;
|
951 |
+
}
|
952 |
+
|
953 |
+
.monsterinsights-yearinreview-admin-menu-tooltip-content {
|
954 |
+
padding: 20px 15px 7px;
|
955 |
+
}
|
956 |
+
|
957 |
+
.monsterinsights-yearinreview-admin-menu-tooltip-content strong {
|
958 |
+
font-size: 14px;
|
959 |
+
}
|
960 |
+
|
961 |
+
.monsterinsights-yearinreview-admin-menu-tooltip-content p strong {
|
962 |
+
font-size: 13px;
|
963 |
+
}
|
964 |
+
|
965 |
+
.monsterinsights-yearinreview-admin-menu-tooltip-close {
|
966 |
+
color: #fff;
|
967 |
+
text-decoration: none;
|
968 |
+
position: absolute;
|
969 |
+
right: 10px;
|
970 |
+
top: 12px;
|
971 |
+
display: block;
|
972 |
+
}
|
973 |
+
|
974 |
+
.monsterinsights-yearinreview-admin-menu-tooltip-close:hover {
|
975 |
+
color: #fff;
|
976 |
+
text-decoration: none;
|
977 |
+
}
|
978 |
+
|
979 |
+
.monsterinsights-yearinreview-admin-menu-tooltip-close .dashicons {
|
980 |
+
font-size: 14px;
|
981 |
+
}
|
982 |
+
|
983 |
+
@media ( max-width: 782px ) {
|
984 |
+
#monsterinsights-yearinreview-admin-menu-tooltip {
|
985 |
+
display: none;
|
986 |
+
}
|
987 |
+
}
|
988 |
+
</style>
|
989 |
+
<script type="text/javascript">
|
990 |
+
if ( 'undefined' !== typeof jQuery ) {
|
991 |
+
jQuery( function ( $ ) {
|
992 |
+
var $tooltip = $( document.getElementById( 'monsterinsights-yearinreview-admin-menu-tooltip' ) );
|
993 |
+
var $menuwrapper = $( document.getElementById( 'adminmenuwrap' ) );
|
994 |
+
var $menuitem = $( document.getElementById( 'toplevel_page_monsterinsights_reports' ) );
|
995 |
+
if ( 0 === $menuitem.length ) {
|
996 |
+
$menuitem = $( document.getElementById( 'toplevel_page_monsterinsights_network' ) );
|
997 |
+
}
|
998 |
+
|
999 |
+
if ( $menuitem.length ) {
|
1000 |
+
$menuwrapper.append( $tooltip );
|
1001 |
+
$tooltip.removeClass( 'monsterinsights-yearinreview-admin-menu-tooltip-hide' );
|
1002 |
+
}
|
1003 |
+
|
1004 |
+
function alignTooltip() {
|
1005 |
+
var sticky = $( 'body' ).hasClass( 'sticky-menu' );
|
1006 |
+
|
1007 |
+
var menuitem_pos = $menuitem.position();
|
1008 |
+
var tooltip_top = menuitem_pos.top - 124;
|
1009 |
+
if ( sticky && $( window ).height() > $menuwrapper.height() + 150 ) {
|
1010 |
+
$tooltip.removeClass( 'monsterinsights-yearinreview-tooltip-arrow-top' );
|
1011 |
+
} else {
|
1012 |
+
tooltip_top = menuitem_pos.top - 250;
|
1013 |
+
$tooltip.addClass( 'monsterinsights-yearinreview-tooltip-arrow-top' );
|
1014 |
+
}
|
1015 |
+
// Don't let the tooltip go outside of the screen and make the close button not visible.
|
1016 |
+
if ( tooltip_top < 40 ) {
|
1017 |
+
tooltip_top = 40;
|
1018 |
+
}
|
1019 |
+
$tooltip.css( {
|
1020 |
+
top: tooltip_top + 'px'
|
1021 |
+
} );
|
1022 |
+
}
|
1023 |
+
|
1024 |
+
var $document = $( document );
|
1025 |
+
var timeout = setTimeout( alignTooltip, 10 );
|
1026 |
+
$document.on( 'wp-pin-menu wp-window-resized.pin-menu postboxes-columnchange.pin-menu postbox-toggled.pin-menu wp-collapse-menu.pin-menu wp-scroll-start.pin-menu', function () {
|
1027 |
+
if ( timeout ) {
|
1028 |
+
clearTimeout( timeout );
|
1029 |
+
}
|
1030 |
+
timeout = setTimeout( alignTooltip, 10 );
|
1031 |
+
} );
|
1032 |
+
|
1033 |
+
$( '.monsterinsights-yearinreview-admin-menu-tooltip-btn-link' ).on( 'click', function ( e ) {
|
1034 |
+
hideYearInReviewTooltip();
|
1035 |
+
} );
|
1036 |
+
|
1037 |
+
$( '.monsterinsights-yearinreview-admin-menu-tooltip-close' ).on( 'click', function ( e ) {
|
1038 |
+
e.preventDefault();
|
1039 |
+
hideYearInReviewTooltip();
|
1040 |
+
} );
|
1041 |
+
|
1042 |
+
function hideYearInReviewTooltip() {
|
1043 |
+
$tooltip.addClass( 'monsterinsights-yearinreview-admin-menu-tooltip-hide' );
|
1044 |
+
$.post( ajaxurl, {
|
1045 |
+
action: 'monsterinsights_yearinreview_hide_admin_tooltip',
|
1046 |
+
nonce: '<?php echo esc_js( wp_create_nonce( 'mi-admin-nonce' ) ); ?>',
|
1047 |
+
} );
|
1048 |
+
}
|
1049 |
+
} );
|
1050 |
+
}
|
1051 |
+
</script>
|
1052 |
+
<?php
|
1053 |
+
}
|
1054 |
+
|
1055 |
+
add_action( 'adminmenu', 'monsterinsights_yearinreview_admin_menu_tooltip', 5 );
|
1056 |
+
|
1057 |
+
/**
|
1058 |
+
* Store the time when the year in review tooltip was hidden so it won't show again
|
1059 |
+
*/
|
1060 |
+
function monsterinsights_mark_yearinreview_tooltip_hidden() {
|
1061 |
+
check_ajax_referer( 'mi-admin-nonce', 'nonce' );
|
1062 |
+
update_option( 'monsterinsights_yearinreview_dismiss_admin_tooltip', true );
|
1063 |
+
wp_send_json_success();
|
1064 |
+
}
|
1065 |
+
|
1066 |
+
add_action( 'wp_ajax_monsterinsights_yearinreview_hide_admin_tooltip', 'monsterinsights_mark_yearinreview_tooltip_hidden' );
|
includes/admin/reports/abstract-report.php
CHANGED
@@ -251,6 +251,7 @@ class MonsterInsights_Report {
|
|
251 |
'p' => $p,
|
252 |
'data' => $ret['data'],
|
253 |
);
|
|
|
254 |
if ( $check_cache ) {
|
255 |
! $site_auth && $ms_auth ? update_site_option( $option_name, $data ) : update_option( $option_name, $data );
|
256 |
} else {
|
251 |
'p' => $p,
|
252 |
'data' => $ret['data'],
|
253 |
);
|
254 |
+
|
255 |
if ( $check_cache ) {
|
256 |
! $site_auth && $ms_auth ? update_site_option( $option_name, $data ) : update_option( $option_name, $data );
|
257 |
} else {
|
includes/admin/routes.php
CHANGED
@@ -289,10 +289,38 @@ class MonsterInsights_Rest_Routes {
|
|
289 |
'icon' => plugin_dir_url( MONSTERINSIGHTS_PLUGIN_FILE ) . 'assets/images/plugin-smtp.png',
|
290 |
'title' => 'WP Mail SMTP',
|
291 |
'excerpt' => __( 'SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication', 'google-analytics-for-wordpress' ),
|
292 |
-
'installed' => array_key_exists( '
|
293 |
'basename' => 'wp-mail-smtp/wp_mail_smtp.php',
|
294 |
'slug' => 'wp-mail-smtp',
|
295 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
296 |
// Gravity Forms.
|
297 |
$parsed_addons['gravity_forms'] = array(
|
298 |
'active' => class_exists( 'GFCommon' ),
|
@@ -534,11 +562,13 @@ class MonsterInsights_Rest_Routes {
|
|
534 |
|
535 |
$isnetwork = ! empty( $_REQUEST['isnetwork'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['isnetwork'] ) ) : '';
|
536 |
$start = ! empty( $_POST['start'] ) ? sanitize_text_field( wp_unslash( $_POST['start'] ) ) : date( 'Y-m-d', strtotime( '-30 days' ) );
|
537 |
-
$end = ! empty( $_POST['end'] ) ? sanitize_text_field( wp_unslash( $_POST['end'] ) ) : date( 'Y-m-d', strtotime( '-1 day' ) )
|
|
|
538 |
$args = array(
|
539 |
'start' => $start,
|
540 |
'end' => $end,
|
541 |
);
|
|
|
542 |
if ( $isnetwork ) {
|
543 |
$args['network'] = true;
|
544 |
}
|
289 |
'icon' => plugin_dir_url( MONSTERINSIGHTS_PLUGIN_FILE ) . 'assets/images/plugin-smtp.png',
|
290 |
'title' => 'WP Mail SMTP',
|
291 |
'excerpt' => __( 'SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication', 'google-analytics-for-wordpress' ),
|
292 |
+
'installed' => array_key_exists( 'wp-mail-smtp/wp_mail_smtp.php', $installed_plugins ),
|
293 |
'basename' => 'wp-mail-smtp/wp_mail_smtp.php',
|
294 |
'slug' => 'wp-mail-smtp',
|
295 |
);
|
296 |
+
// SeedProd.
|
297 |
+
$parsed_addons['coming-soon'] = array(
|
298 |
+
'active' => function_exists( 'seed_csp4_activation' ),
|
299 |
+
'icon' => plugin_dir_url( MONSTERINSIGHTS_PLUGIN_FILE ) . 'assets/images/seedprod.png',
|
300 |
+
'title' => 'SeedProd',
|
301 |
+
'excerpt' => __( 'Better Coming Soon & Maintenance Mode Pages', 'google-analytics-for-wordpress' ),
|
302 |
+
'installed' => array_key_exists( 'coming-soon/coming-soon.php', $installed_plugins ),
|
303 |
+
'basename' => 'coming-soon/coming-soon.php',
|
304 |
+
'slug' => 'coming-soon',
|
305 |
+
);
|
306 |
+
$parsed_addons['rafflepress'] = array(
|
307 |
+
'active' => function_exists( 'rafflepress_lite_activation' ),
|
308 |
+
'icon' => plugin_dir_url( MONSTERINSIGHTS_PLUGIN_FILE ) . 'assets/images/rafflepress.png',
|
309 |
+
'title' => 'RafflePress',
|
310 |
+
'excerpt' => __( 'Get More Traffic with Viral Giveaways', 'google-analytics-for-wordpress' ),
|
311 |
+
'installed' => array_key_exists( 'rafflepress/rafflepress.php', $installed_plugins ),
|
312 |
+
'basename' => 'rafflepress/rafflepress.php',
|
313 |
+
'slug' => 'rafflepress',
|
314 |
+
);
|
315 |
+
$parsed_addons['trustpulse-api'] = array(
|
316 |
+
'active' => class_exists( 'TPAPI' ),
|
317 |
+
'icon' => plugin_dir_url( MONSTERINSIGHTS_PLUGIN_FILE ) . 'assets/images/trustpulse.png',
|
318 |
+
'title' => 'TrustPulse',
|
319 |
+
'excerpt' => __( 'Social Proof Notifications that Boost Sales', 'google-analytics-for-wordpress' ),
|
320 |
+
'installed' => array_key_exists( 'trustpulse-api/trustpulse.php', $installed_plugins ),
|
321 |
+
'basename' => 'trustpulse-api/trustpulse.php',
|
322 |
+
'slug' => 'trustpulse-api',
|
323 |
+
);
|
324 |
// Gravity Forms.
|
325 |
$parsed_addons['gravity_forms'] = array(
|
326 |
'active' => class_exists( 'GFCommon' ),
|
562 |
|
563 |
$isnetwork = ! empty( $_REQUEST['isnetwork'] ) ? sanitize_text_field( wp_unslash( $_REQUEST['isnetwork'] ) ) : '';
|
564 |
$start = ! empty( $_POST['start'] ) ? sanitize_text_field( wp_unslash( $_POST['start'] ) ) : date( 'Y-m-d', strtotime( '-30 days' ) );
|
565 |
+
$end = ! empty( $_POST['end'] ) ? sanitize_text_field( wp_unslash( $_POST['end'] ) ) : date( 'Y-m-d', strtotime( '-1 day' ) );
|
566 |
+
|
567 |
$args = array(
|
568 |
'start' => $start,
|
569 |
'end' => $end,
|
570 |
);
|
571 |
+
|
572 |
if ( $isnetwork ) {
|
573 |
$args['network'] = true;
|
574 |
}
|
includes/api-request.php
CHANGED
@@ -387,7 +387,7 @@ final class MonsterInsights_API_Request {
|
|
387 |
// The below page is a testing empty content HTML page used for firewall/router login detection
|
388 |
// and for image linking purposes in Google Images. We use it to test outbound connections since it is run on google.com
|
389 |
// and is only a few bytes large. Plus on Google's main CDN so it loads in most places in 0.07 seconds or less. Perfect for our
|
390 |
-
// use case of quickly testing outbound connections.
|
391 |
$testurl = ! empty( $this->testurl ) ? $this->testurl :'http://www.google.com/blank.html';
|
392 |
if ( defined( 'WP_HTTP_BLOCK_EXTERNAL' ) && WP_HTTP_BLOCK_EXTERNAL ) {
|
393 |
if ( defined( 'WP_ACCESSIBLE_HOSTS' ) ) {
|
387 |
// The below page is a testing empty content HTML page used for firewall/router login detection
|
388 |
// and for image linking purposes in Google Images. We use it to test outbound connections since it is run on google.com
|
389 |
// and is only a few bytes large. Plus on Google's main CDN so it loads in most places in 0.07 seconds or less. Perfect for our
|
390 |
+
// use case of quickly testing outbound connections.
|
391 |
$testurl = ! empty( $this->testurl ) ? $this->testurl :'http://www.google.com/blank.html';
|
392 |
if ( defined( 'WP_HTTP_BLOCK_EXTERNAL' ) && WP_HTTP_BLOCK_EXTERNAL ) {
|
393 |
if ( defined( 'WP_ACCESSIBLE_HOSTS' ) ) {
|
languages/google-analytics-for-wordpress.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the MonsterInsights Pro plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: MonsterInsights Pro 7.10.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights\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: 2019-12-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.2.0\n"
|
15 |
"X-Domain: google-analytics-for-wordpress\n"
|
@@ -63,7 +63,7 @@ msgstr ""
|
|
63 |
#: includes/admin/admin.php:37
|
64 |
#: includes/admin/admin.php:45
|
65 |
#: includes/admin/admin.php:91
|
66 |
-
#: languages/vue.php:
|
67 |
msgid "Insights"
|
68 |
msgstr ""
|
69 |
|
@@ -85,7 +85,7 @@ msgstr ""
|
|
85 |
|
86 |
#: includes/admin/admin.php:39
|
87 |
#: includes/admin/admin.php:95
|
88 |
-
#: languages/vue.php:
|
89 |
msgid "Reports"
|
90 |
msgstr ""
|
91 |
|
@@ -114,7 +114,7 @@ msgstr ""
|
|
114 |
|
115 |
#: includes/admin/admin.php:60
|
116 |
#: includes/admin/admin.php:103
|
117 |
-
#: languages/vue.php:
|
118 |
msgid "About Us"
|
119 |
msgstr ""
|
120 |
|
@@ -136,13 +136,13 @@ msgid "Documentation"
|
|
136 |
msgstr ""
|
137 |
|
138 |
#: includes/admin/admin.php:169
|
139 |
-
#: includes/admin/reports/abstract-report.php:
|
140 |
msgid "Get MonsterInsights Pro"
|
141 |
msgstr ""
|
142 |
|
143 |
#: includes/admin/admin.php:175
|
144 |
#: includes/admin/admin.php:178
|
145 |
-
#: languages/vue.php:
|
146 |
msgid "Support"
|
147 |
msgstr ""
|
148 |
|
@@ -151,22 +151,22 @@ msgid "Please rate %sMonsterInsights%s %s on %sWordPress.org%s to help us spread
|
|
151 |
msgstr ""
|
152 |
|
153 |
#: includes/admin/admin.php:276
|
154 |
-
#: languages/vue.php:
|
155 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
156 |
msgstr ""
|
157 |
|
158 |
#: includes/admin/admin.php:277
|
159 |
-
#: languages/vue.php:
|
160 |
msgid "Connect MonsterInsights and Setup Website Analytics"
|
161 |
msgstr ""
|
162 |
|
163 |
#: includes/admin/admin.php:279
|
164 |
-
#: languages/vue.php:
|
165 |
msgid "Learn More"
|
166 |
msgstr ""
|
167 |
|
168 |
#: includes/admin/admin.php:281
|
169 |
-
#: languages/vue.php:
|
170 |
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 2 million website owners use MonsterInsights to see the stats that matter and grow their business."
|
171 |
msgstr ""
|
172 |
|
@@ -179,12 +179,12 @@ msgid "Your license key for MonsterInsights has expired. %1$sPlease click here t
|
|
179 |
msgstr ""
|
180 |
|
181 |
#: includes/admin/admin.php:302
|
182 |
-
#: languages/vue.php:
|
183 |
msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
|
184 |
msgstr ""
|
185 |
|
186 |
#: includes/admin/admin.php:304
|
187 |
-
#: languages/vue.php:
|
188 |
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."
|
189 |
msgstr ""
|
190 |
|
@@ -303,10 +303,24 @@ msgstr ""
|
|
303 |
msgid "Could not deauthenticate."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/admin/common.php:
|
307 |
msgid "MonsterInsights has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of MonsterInsights. To solve this, ensure MonsterInsights is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
|
308 |
msgstr ""
|
309 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
#: includes/admin/licensing/skin.php:86
|
311 |
msgid "There was an error installing the addon. Please try again."
|
312 |
msgstr ""
|
@@ -383,66 +397,66 @@ msgstr ""
|
|
383 |
msgid "Invalid date range."
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: includes/admin/reports/abstract-report.php:
|
387 |
msgid "You must authenticate with MonsterInsights to use reports."
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: includes/admin/reports/abstract-report.php:
|
391 |
msgid "You currently have a %s level license, but this report requires at least a %s level license to view the %s. Please upgrade to view this report."
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: includes/admin/reports/abstract-report.php:
|
395 |
msgid "Ready to Get Analytics Super-Powers?"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: includes/admin/reports/abstract-report.php:
|
399 |
msgid "(And Crush Your Competition?)"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: includes/admin/reports/abstract-report.php:
|
403 |
msgid ""
|
404 |
"Hey there! It looks like you've got the %s license installed on your site.
|
405 |
"\t\t\t\t\t\t\t\t\t That's awesome! %s"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: includes/admin/reports/abstract-report.php:
|
409 |
msgid "Do you want to access to %s reporting right now%s in your WordPress Dashboard? That comes with the %s level%s of our paid packages. You'll need to upgrade your license to get instant access."
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: includes/admin/reports/abstract-report.php:
|
413 |
msgid "It's easy! To upgrade, navigate to %sMy Account%s on MonsterInsights.com, go to the licenses tab, and click upgrade. We also have a %sstep by step guide%s with pictures of this process."
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: includes/admin/reports/abstract-report.php:
|
417 |
-
#: includes/admin/reports/abstract-report.php:
|
418 |
msgid "If you have any questions, don't hesitate to reach out. We're here to help."
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: includes/admin/reports/abstract-report.php:
|
422 |
msgid ""
|
423 |
"Hey there! %s It looks like you've got the free version of MonsterInsights installed on your site.
|
424 |
"\t\t\t\t\t\t\t\t\t That's awesome!"
|
425 |
msgstr ""
|
426 |
|
427 |
-
#: includes/admin/reports/abstract-report.php:
|
428 |
msgid "Do you you want to access to %s reporting right now%s in your WordPress Dashboard? That comes with %s level%s of our paid packages. To get instant access, you'll want to buy a MonsterInsights license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
|
429 |
msgstr ""
|
430 |
|
431 |
-
#: includes/admin/reports/abstract-report.php:
|
432 |
msgid "Upgrading is easy! To upgrade, navigate to %sour pricing page%s, purchase the required license, and then follow the %sinstructions in the email receipt%s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
|
433 |
msgstr ""
|
434 |
|
435 |
-
#: includes/admin/reports/abstract-report.php:
|
436 |
-
#: languages/vue.php:
|
437 |
msgid "Upgrade Now"
|
438 |
msgstr ""
|
439 |
|
440 |
-
#: includes/admin/reports/abstract-report.php:
|
441 |
msgid "Please ask your webmaster to enable this addon."
|
442 |
msgstr ""
|
443 |
|
444 |
#: includes/admin/reports/overview.php:34
|
445 |
-
#: languages/vue.php:
|
446 |
msgid "Overview"
|
447 |
msgstr ""
|
448 |
|
@@ -502,43 +516,55 @@ msgstr ""
|
|
502 |
msgid "SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication"
|
503 |
msgstr ""
|
504 |
|
505 |
-
#: includes/admin/routes.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
506 |
msgid "Invalid UA code"
|
507 |
msgstr ""
|
508 |
|
509 |
-
#: includes/admin/routes.php:
|
510 |
msgid "Please upload a valid .json file"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: includes/admin/routes.php:
|
514 |
msgid "Please upload a file to import"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: includes/admin/routes.php:
|
518 |
msgid "You don't have permission to view MonsterInsights reports."
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: includes/admin/routes.php:
|
522 |
msgid "You can't view MonsterInsights reports because you are not licensed."
|
523 |
msgstr ""
|
524 |
|
525 |
-
#: includes/admin/routes.php:
|
526 |
msgid "Add your license"
|
527 |
msgstr ""
|
528 |
|
529 |
-
#: includes/admin/routes.php:
|
530 |
msgid "You can't view MonsterInsights reports due to license key errors."
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: includes/admin/routes.php:
|
534 |
msgid "You must authenticate with MonsterInsights before you can view reports."
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: includes/admin/routes.php:
|
538 |
msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
|
539 |
msgstr ""
|
540 |
|
541 |
-
#: includes/admin/routes.php:
|
542 |
msgid "We encountered an error when fetching the report data."
|
543 |
msgstr ""
|
544 |
|
@@ -1646,576 +1672,576 @@ msgstr ""
|
|
1646 |
msgid "Loading new report data..."
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: languages/vue.php:
|
1650 |
msgid "Error"
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: languages/vue.php:
|
1654 |
msgid "Please try again."
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: languages/vue.php:
|
1658 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
-
#: languages/vue.php:
|
1662 |
msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
|
1663 |
msgstr ""
|
1664 |
|
1665 |
-
#: languages/vue.php:
|
1666 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
1667 |
msgstr ""
|
1668 |
|
1669 |
-
#: languages/vue.php:
|
1670 |
msgid "Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions."
|
1671 |
msgstr ""
|
1672 |
|
1673 |
-
#: languages/vue.php:
|
1674 |
msgid "See Your Top Landing Pages to Improve Enagement"
|
1675 |
msgstr ""
|
1676 |
|
1677 |
-
#: languages/vue.php:
|
1678 |
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
1679 |
msgstr ""
|
1680 |
|
1681 |
-
#: languages/vue.php:
|
1682 |
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
1683 |
msgstr ""
|
1684 |
|
1685 |
-
#: languages/vue.php:
|
1686 |
msgid "See Your Top Affiliate Links and Focus on what's working"
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#: languages/vue.php:
|
1690 |
msgid "See Your Top Downloads and Improve Conversions"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: languages/vue.php:
|
1694 |
msgid "See Audience Demographic Report ( Age / Gender / Interests )"
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: languages/vue.php:
|
1698 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
1699 |
msgstr ""
|
1700 |
|
1701 |
-
#: languages/vue.php:
|
1702 |
msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
|
1703 |
msgstr ""
|
1704 |
|
1705 |
-
#: languages/vue.php:
|
1706 |
msgid "See Your Conversion Rate to Improve Funnel"
|
1707 |
msgstr ""
|
1708 |
|
1709 |
-
#: languages/vue.php:
|
1710 |
msgid "See The Number of Transactions and make data-driven decisions"
|
1711 |
msgstr ""
|
1712 |
|
1713 |
-
#: languages/vue.php:
|
1714 |
msgid "See The Total Revenue to Track Growth"
|
1715 |
msgstr ""
|
1716 |
|
1717 |
-
#: languages/vue.php:
|
1718 |
msgid "See Average Order Value to Find Offer Opportunities"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: languages/vue.php:
|
1722 |
msgid "See Your Top Products to See Individual Performance"
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: languages/vue.php:
|
1726 |
msgid "See Your Top Conversion Sources and Focus on what's working"
|
1727 |
msgstr ""
|
1728 |
|
1729 |
-
#: languages/vue.php:
|
1730 |
msgid "See The Time it takes for Customers to Purchase"
|
1731 |
msgstr ""
|
1732 |
|
1733 |
-
#: languages/vue.php:
|
1734 |
msgid "See How Many Sessions are needed for a Purchase"
|
1735 |
msgstr ""
|
1736 |
|
1737 |
-
#: languages/vue.php:
|
1738 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
1739 |
msgstr ""
|
1740 |
|
1741 |
-
#: languages/vue.php:
|
1742 |
msgid "Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: languages/vue.php:
|
1746 |
msgid "See Which Authors Generate the Most Traffic"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: languages/vue.php:
|
1750 |
msgid "See Which Post Types Perform Better"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
-
#: languages/vue.php:
|
1754 |
msgid "See Which Categories are the Most Popular"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
-
#: languages/vue.php:
|
1758 |
msgid "See Your Blog's most populare SEO Scores"
|
1759 |
msgstr ""
|
1760 |
|
1761 |
-
#: languages/vue.php:
|
1762 |
msgid "See Which Focus Keyword is Performing Better in Search Engines"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
-
#: languages/vue.php:
|
1766 |
msgid "Unlock the Forms Report and Improve Conversions"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
-
#: languages/vue.php:
|
1770 |
msgid "Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
-
#: languages/vue.php:
|
1774 |
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: languages/vue.php:
|
1778 |
msgid "See Your Top Converting Forms and Optimize"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
-
#: languages/vue.php:
|
1782 |
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#: languages/vue.php:
|
1786 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
-
#: languages/vue.php:
|
1790 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
1791 |
msgstr ""
|
1792 |
|
1793 |
-
#: languages/vue.php:
|
1794 |
msgid "See Your Top Google Search Terms and Optimize Content"
|
1795 |
msgstr ""
|
1796 |
|
1797 |
-
#: languages/vue.php:
|
1798 |
msgid "See The Number of Clicks and Track Interests"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
-
#: languages/vue.php:
|
1802 |
msgid "See The Click-Through-Ratio and Improve SEO"
|
1803 |
msgstr ""
|
1804 |
|
1805 |
-
#: languages/vue.php:
|
1806 |
msgid "See The Average Results Position and Focus on what works"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
-
#: languages/vue.php:
|
1810 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
1811 |
msgstr ""
|
1812 |
|
1813 |
-
#: languages/vue.php:
|
1814 |
msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it."
|
1815 |
msgstr ""
|
1816 |
|
1817 |
-
#: languages/vue.php:
|
1818 |
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: languages/vue.php:
|
1822 |
msgid "See Your Top Pages Immediately After Making Changes"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
-
#: languages/vue.php:
|
1826 |
msgid "See Your Top Referral Sources and Adapt Faster"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
-
#: languages/vue.php:
|
1830 |
msgid "See Your Traffic Demographics and "
|
1831 |
msgstr ""
|
1832 |
|
1833 |
-
#: languages/vue.php:
|
1834 |
msgid "Get Fresh Reports Data Every 60 Seconds"
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#: languages/vue.php:
|
1838 |
msgid "Overview Report"
|
1839 |
msgstr ""
|
1840 |
|
1841 |
-
#: languages/vue.php:
|
1842 |
msgid "Loading Settings"
|
1843 |
msgstr ""
|
1844 |
|
1845 |
-
#: languages/vue.php:
|
1846 |
msgid "Saving Changes..."
|
1847 |
msgstr ""
|
1848 |
|
1849 |
-
#: languages/vue.php:
|
1850 |
msgid "Settings Updated"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
-
#: languages/vue.php:
|
1854 |
msgid "Could Not Save Changes"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
-
#: languages/vue.php:
|
1858 |
msgid "Congratulations! "
|
1859 |
msgstr ""
|
1860 |
|
1861 |
-
#: languages/vue.php:
|
1862 |
msgid "You Successfully Unlocked the most powerful Analytics plugin"
|
1863 |
msgstr ""
|
1864 |
|
1865 |
-
#: languages/vue.php:
|
1866 |
msgid "Publishers Report"
|
1867 |
msgstr ""
|
1868 |
|
1869 |
-
#: languages/vue.php:
|
1870 |
msgid "eCommerce Report"
|
1871 |
msgstr ""
|
1872 |
|
1873 |
-
#: languages/vue.php:
|
1874 |
msgid "Search Console Report"
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#: languages/vue.php:
|
1878 |
msgid "Dimensions Report"
|
1879 |
msgstr ""
|
1880 |
|
1881 |
-
#: languages/vue.php:
|
1882 |
msgid "Forms Report"
|
1883 |
msgstr ""
|
1884 |
|
1885 |
-
#: languages/vue.php:
|
1886 |
msgid "Real-Time Report"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
-
#: languages/vue.php:
|
1890 |
msgid "Recommended Plugin: %s"
|
1891 |
msgstr ""
|
1892 |
|
1893 |
-
#: languages/vue.php:
|
1894 |
msgid "Install"
|
1895 |
msgstr ""
|
1896 |
|
1897 |
-
#: languages/vue.php:
|
1898 |
msgid "Activate"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#: languages/vue.php:
|
1902 |
#: lite/includes/admin/reports/report-publisher.php:22
|
1903 |
msgid "Publishers"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#: languages/vue.php:
|
1907 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
1908 |
msgid "eCommerce"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: languages/vue.php:
|
1912 |
#: lite/includes/admin/reports/report-queries.php:22
|
1913 |
msgid "Search Console"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
-
#: languages/vue.php:
|
1917 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
1918 |
msgid "Dimensions"
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: languages/vue.php:
|
1922 |
#: lite/includes/admin/reports/report-forms.php:22
|
1923 |
msgid "Forms"
|
1924 |
msgstr ""
|
1925 |
|
1926 |
-
#: languages/vue.php:
|
1927 |
msgid "Real-Time"
|
1928 |
msgstr ""
|
1929 |
|
1930 |
-
#: languages/vue.php:
|
1931 |
msgid "Loading settings"
|
1932 |
msgstr ""
|
1933 |
|
1934 |
-
#: languages/vue.php:
|
1935 |
msgid "Getting Started"
|
1936 |
msgstr ""
|
1937 |
|
1938 |
-
#: languages/vue.php:
|
1939 |
msgid "Lite vs Pro"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
-
#: languages/vue.php:
|
1943 |
msgid "General"
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: languages/vue.php:
|
1947 |
msgid "Engagement"
|
1948 |
msgstr ""
|
1949 |
|
1950 |
-
#: languages/vue.php:
|
1951 |
msgid "Publisher"
|
1952 |
msgstr ""
|
1953 |
|
1954 |
-
#: languages/vue.php:
|
1955 |
msgid "Conversions"
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: languages/vue.php:
|
1959 |
msgid "Advanced"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#: languages/vue.php:
|
1963 |
msgid "URL Builder"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
-
#: languages/vue.php:
|
1967 |
msgid "Import Export"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
-
#: languages/vue.php:
|
1971 |
msgid "Time to Purchase"
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#: languages/vue.php:
|
1975 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: languages/vue.php:
|
1979 |
msgid "Sessions to Purchase"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
-
#: languages/vue.php:
|
1983 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
1984 |
msgstr ""
|
1985 |
|
1986 |
-
#: languages/vue.php:
|
1987 |
msgid "Top Posts/Pages"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
#: languages/vue.php:
|
1991 |
msgid "This list shows the most viewed posts and pages on your website."
|
1992 |
msgstr ""
|
1993 |
|
1994 |
-
#: languages/vue.php:
|
1995 |
msgid "New vs. Returning Visitors"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
-
#: languages/vue.php:
|
1999 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#: languages/vue.php:
|
2003 |
msgid "Device Breakdown"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: languages/vue.php:
|
2007 |
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."
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#: languages/vue.php:
|
2011 |
msgid "Top Landing Pages"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: languages/vue.php:
|
2015 |
msgid "This list shows the top pages users first land on when visiting your website."
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: languages/vue.php:
|
2019 |
msgid "Top Exit Pages"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: languages/vue.php:
|
2023 |
msgid "This list shows the top pages users exit your website from."
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: languages/vue.php:
|
2027 |
msgid "Top Outbound Links"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: languages/vue.php:
|
2031 |
msgid "This list shows the top links clicked on your website that go to another website."
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: languages/vue.php:
|
2035 |
msgid "Top Affiliate Links"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: languages/vue.php:
|
2039 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: languages/vue.php:
|
2043 |
msgid "Top Download Links"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: languages/vue.php:
|
2047 |
msgid "This list shows the download links your visitors clicked the most."
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: languages/vue.php:
|
2051 |
msgid "Top Products"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: languages/vue.php:
|
2055 |
msgid "This list shows the top selling products on your website."
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: languages/vue.php:
|
2059 |
msgid "Top Conversion Sources"
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: languages/vue.php:
|
2063 |
msgid "This list shows the top referral websites in terms of product revenue."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
-
#: languages/vue.php:
|
2067 |
msgid "Total Add/Remove"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
-
#: languages/vue.php:
|
2071 |
msgid "Exit Setup"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#: languages/vue.php:
|
2075 |
msgid "Yikes! PHP Update Required"
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#: languages/vue.php:
|
2079 |
msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%s), which could be putting your site at risk for being hacked. WordPress itself will stop supporting your PHP version in April, 2019. Updating to the recommended version (PHP %s) only takes a few minutes and will make your website significantly faster and more secure."
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: languages/vue.php:
|
2083 |
msgid "Learn more about updating PHP"
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#: languages/vue.php:
|
2087 |
msgid "Yikes! WordPress Update Required"
|
2088 |
msgstr ""
|
2089 |
|
2090 |
-
#: languages/vue.php:
|
2091 |
msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
2092 |
msgstr ""
|
2093 |
|
2094 |
-
#: languages/vue.php:
|
2095 |
msgid "Learn more about updating WordPress"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: languages/vue.php:
|
2099 |
msgid "Powered by MonsterInsights"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: languages/vue.php:
|
2103 |
msgid "Save Changes"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: languages/vue.php:
|
2107 |
msgid "New"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: languages/vue.php:
|
2111 |
msgid "Returning"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: languages/vue.php:
|
2115 |
msgid "Desktop"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: languages/vue.php:
|
2119 |
msgid "Tablet"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#: languages/vue.php:
|
2123 |
msgid "Mobile"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
-
#: languages/vue.php:
|
2127 |
msgid "Sessions"
|
2128 |
msgstr ""
|
2129 |
|
2130 |
-
#: languages/vue.php:
|
2131 |
msgid "Unique %s Sessions"
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: languages/vue.php:
|
2135 |
msgid "Pageviews"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#: languages/vue.php:
|
2139 |
msgid "Unique %s Pageviews"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: languages/vue.php:
|
2143 |
msgid "Avg. Session Duration"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: languages/vue.php:
|
2147 |
msgid "Bounce Rate"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: languages/vue.php:
|
2151 |
msgid "Top 10 Countries"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
-
#: languages/vue.php:
|
2155 |
msgid "View Countries Report"
|
2156 |
msgstr ""
|
2157 |
|
2158 |
-
#: languages/vue.php:
|
2159 |
msgid "Top 10 Referrals"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
-
#: languages/vue.php:
|
2163 |
msgid "View All Referral Sources"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: languages/vue.php:
|
2167 |
msgid "View Full Posts/Pages Report"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
#: languages/vue.php:
|
2171 |
msgid "A session is the browsing session of a single user to your site."
|
2172 |
msgstr ""
|
2173 |
|
2174 |
-
#: languages/vue.php:
|
2175 |
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."
|
2176 |
msgstr ""
|
2177 |
|
2178 |
-
#: languages/vue.php:
|
2179 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: languages/vue.php:
|
2183 |
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."
|
2184 |
msgstr ""
|
2185 |
|
2186 |
-
#: languages/vue.php:
|
2187 |
msgid "This list shows the top countries your website visitors are from."
|
2188 |
msgstr ""
|
2189 |
|
2190 |
-
#: languages/vue.php:
|
2191 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
2192 |
msgstr ""
|
2193 |
|
2194 |
-
#: languages/vue.php:
|
2195 |
msgid "MonsterInsights Addons"
|
2196 |
msgstr ""
|
2197 |
|
2198 |
-
#: languages/vue.php:
|
2199 |
msgid "Search Addons"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
#: languages/vue.php:
|
2203 |
msgid "Yes (recommended) %s- Get the latest features, bugfixes, and security updates as they are released.%s"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
-
#: languages/vue.php:
|
2207 |
msgid "Minor only %s- Get bugfixes and security updates, but not major features.%s"
|
2208 |
msgstr ""
|
2209 |
|
2210 |
-
#: languages/vue.php:
|
2211 |
msgid "None %s- Manually update everything.%s"
|
2212 |
msgstr ""
|
2213 |
|
2214 |
-
#: languages/vue.php:
|
2215 |
msgid "License Key"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: languages/vue.php:
|
2219 |
msgid "Google Authentication"
|
2220 |
msgstr ""
|
2221 |
|
@@ -2223,1332 +2249,1332 @@ msgstr ""
|
|
2223 |
msgid "Connect Google Analytics + WordPress"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
-
#: languages/vue.php:
|
2227 |
msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
|
2228 |
msgstr ""
|
2229 |
|
2230 |
-
#: languages/vue.php:
|
2231 |
msgid "Automatic Updates"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#: languages/vue.php:
|
2235 |
msgid "Setup Wizard"
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: languages/vue.php:
|
2239 |
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
2240 |
msgstr ""
|
2241 |
|
2242 |
-
#: languages/vue.php:
|
2243 |
msgid "Launch Setup Wizard"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
-
#: languages/vue.php:
|
2247 |
msgid "Path (example: %s)"
|
2248 |
msgstr ""
|
2249 |
|
2250 |
-
#: languages/vue.php:
|
2251 |
msgid "Path has to start with a / and have no spaces"
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: languages/vue.php:
|
2255 |
msgid "Label (example: %s)"
|
2256 |
msgstr ""
|
2257 |
|
2258 |
-
#: languages/vue.php:
|
2259 |
msgid "Label can't contain any spaces"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
-
#: languages/vue.php:
|
2263 |
msgid "Affiliate Links"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
-
#: languages/vue.php:
|
2267 |
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 %shere%s."
|
2268 |
msgstr ""
|
2269 |
|
2270 |
-
#: languages/vue.php:
|
2271 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
2272 |
msgstr ""
|
2273 |
|
2274 |
-
#: languages/vue.php:
|
2275 |
msgid "Demographics"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
-
#: languages/vue.php:
|
2279 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
2280 |
msgstr ""
|
2281 |
|
2282 |
-
#: languages/vue.php:
|
2283 |
msgid "Anonymize IP Addresses"
|
2284 |
msgstr ""
|
2285 |
|
2286 |
-
#: languages/vue.php:
|
2287 |
msgid "Link Attribution"
|
2288 |
msgstr ""
|
2289 |
|
2290 |
-
#: languages/vue.php:
|
2291 |
msgid "Enable Enhanced Link Attribution"
|
2292 |
msgstr ""
|
2293 |
|
2294 |
-
#: languages/vue.php:
|
2295 |
msgid "Enable Anchor Tracking"
|
2296 |
msgstr ""
|
2297 |
|
2298 |
-
#: languages/vue.php:
|
2299 |
msgid "Enable allowAnchor"
|
2300 |
msgstr ""
|
2301 |
|
2302 |
-
#: languages/vue.php:
|
2303 |
msgid "Enable allowLinker"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: languages/vue.php:
|
2307 |
msgid "Enable Tag Links in RSS"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
#: languages/vue.php:
|
2311 |
msgid "File Downloads"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: languages/vue.php:
|
2315 |
msgid "Extensions of Files to Track as Downloads"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: languages/vue.php:
|
2319 |
msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: languages/vue.php:
|
2323 |
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 %sknowledge base%s. For more information about Remarketing, we refer you to %sGoogle's documentation%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."
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: languages/vue.php:
|
2327 |
msgid "This adds %sanonymizeIp%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."
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#: languages/vue.php:
|
2331 |
msgid "Add %sEnhanced Link Attribution%s to your tracking code."
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
#: languages/vue.php:
|
2335 |
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."
|
2336 |
msgstr ""
|
2337 |
|
2338 |
-
#: languages/vue.php:
|
2339 |
msgid "This adds %sallowAnchor%s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
|
2340 |
msgstr ""
|
2341 |
|
2342 |
-
#: languages/vue.php:
|
2343 |
msgid "Enabling %scross-domain tracking (additional setup required)%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."
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: languages/vue.php:
|
2347 |
msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %shelp page%s for info on how to enable this feature in FeedBurner."
|
2348 |
msgstr ""
|
2349 |
|
2350 |
-
#: languages/vue.php:
|
2351 |
msgid "Add domain"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: languages/vue.php:
|
2355 |
msgid "Domain (example: %s)"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
-
#: languages/vue.php:
|
2359 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: languages/vue.php:
|
2363 |
msgid "Cross Domain Tracking"
|
2364 |
msgstr ""
|
2365 |
|
2366 |
-
#: languages/vue.php:
|
2367 |
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 %sknowledge base%s."
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#: languages/vue.php:
|
2371 |
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 %sGeneral%s tab."
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#: languages/vue.php:
|
2375 |
msgid "Permissions"
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: languages/vue.php:
|
2379 |
msgid "Allow These User Roles to See Reports"
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#: languages/vue.php:
|
2383 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
2384 |
msgstr ""
|
2385 |
|
2386 |
-
#: languages/vue.php:
|
2387 |
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."
|
2388 |
msgstr ""
|
2389 |
|
2390 |
-
#: languages/vue.php:
|
2391 |
msgid "Allow These User Roles to Save Settings"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: languages/vue.php:
|
2395 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
2396 |
msgstr ""
|
2397 |
|
2398 |
-
#: languages/vue.php:
|
2399 |
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."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
-
#: languages/vue.php:
|
2403 |
msgid "Exclude These User Roles From Tracking"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
-
#: languages/vue.php:
|
2407 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: languages/vue.php:
|
2411 |
msgid "Performance"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
-
#: languages/vue.php:
|
2415 |
msgid "Custom code"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
-
#: languages/vue.php:
|
2419 |
msgid "Not for the average user: this allows you to add a line of code, to be added before the %spageview is sent%s."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
-
#: languages/vue.php:
|
2423 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: languages/vue.php:
|
2427 |
msgid "Hide Admin Bar Reports"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
-
#: languages/vue.php:
|
2431 |
msgid "Enabled %s- Show reports and dashboard widget.%s"
|
2432 |
msgstr ""
|
2433 |
|
2434 |
-
#: languages/vue.php:
|
2435 |
msgid "Dashboard Widget Only %s- Disable reports, but show dashboard widget.%s"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
-
#: languages/vue.php:
|
2439 |
msgid "Disabled %s- Hide reports and dashboard widget.%s"
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#: languages/vue.php:
|
2443 |
msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visit, so you can analyze and optimize it for higher conversions."
|
2444 |
msgstr ""
|
2445 |
|
2446 |
-
#: languages/vue.php:
|
2447 |
msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
|
2448 |
msgstr ""
|
2449 |
|
2450 |
-
#: languages/vue.php:
|
2451 |
msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
|
2452 |
msgstr ""
|
2453 |
|
2454 |
-
#: languages/vue.php:
|
2455 |
msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#: languages/vue.php:
|
2459 |
msgid "Yup, we know a thing or two about building awesome products that customer love."
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: languages/vue.php:
|
2463 |
msgid "The MonsterInsights Team: Syed, Chris, Jay, Mircea, Sunita and Basanta"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: languages/vue.php:
|
2467 |
msgid "Import/Export"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
-
#: languages/vue.php:
|
2471 |
msgid "Import"
|
2472 |
msgstr ""
|
2473 |
|
2474 |
-
#: languages/vue.php:
|
2475 |
msgid "Import settings from another MonsterInsights website."
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#: languages/vue.php:
|
2479 |
msgid "Export"
|
2480 |
msgstr ""
|
2481 |
|
2482 |
-
#: languages/vue.php:
|
2483 |
msgid "Export settings to import into another MonsterInsights install."
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#: languages/vue.php:
|
2487 |
msgid "Import Settings"
|
2488 |
msgstr ""
|
2489 |
|
2490 |
-
#: languages/vue.php:
|
2491 |
msgid "Export Settings"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
-
#: languages/vue.php:
|
2495 |
msgid "Please choose a file to import"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#: languages/vue.php:
|
2499 |
msgid "Use the filepicker below to select the settings export file from another site."
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: languages/vue.php:
|
2503 |
msgid "Use the button below to export a file with your MonsterInsights settings."
|
2504 |
msgstr ""
|
2505 |
|
2506 |
-
#: languages/vue.php:
|
2507 |
msgid "Uploading file..."
|
2508 |
msgstr ""
|
2509 |
|
2510 |
-
#: languages/vue.php:
|
2511 |
msgid "File imported"
|
2512 |
msgstr ""
|
2513 |
|
2514 |
-
#: languages/vue.php:
|
2515 |
msgid "Settings successfully updated!"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#: languages/vue.php:
|
2519 |
msgid "Error importing settings"
|
2520 |
msgstr ""
|
2521 |
|
2522 |
-
#: languages/vue.php:
|
2523 |
msgid "Please choose a .json file generated by a MonsterInsights settings export."
|
2524 |
msgstr ""
|
2525 |
|
2526 |
-
#: languages/vue.php:
|
2527 |
msgid "Ok"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
-
#: languages/vue.php:
|
2531 |
msgid "Custom Campaign Parameters"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: languages/vue.php:
|
2535 |
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: languages/vue.php:
|
2539 |
msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the urls that are the most effective in attracting users to your content."
|
2540 |
msgstr ""
|
2541 |
|
2542 |
-
#: languages/vue.php:
|
2543 |
msgid "Website URL %s"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
-
#: languages/vue.php:
|
2547 |
msgid "The full website URL (e.g. %s %s%s)"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
-
#: languages/vue.php:
|
2551 |
msgid "Campaign Source %s"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
-
#: languages/vue.php:
|
2555 |
msgid "Enter a referrer (e.g. %sfacebook, newsletter, google%s)"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
-
#: languages/vue.php:
|
2559 |
msgid "Enter a marketing medium (e.g. %scpc, banner, email%s)"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
#: languages/vue.php:
|
2563 |
msgid "Enter a name to easily identify (e.g. %sspring_sale%s)"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: languages/vue.php:
|
2567 |
msgid "Enter the paid keyword"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: languages/vue.php:
|
2571 |
msgid "Enter something to differentiate ads"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: languages/vue.php:
|
2575 |
msgid "Use Fragment"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: languages/vue.php:
|
2579 |
msgid "Set the parameters in the fragment portion of the URL %s(not recommended)%s"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: languages/vue.php:
|
2583 |
msgid "URL to use"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: languages/vue.php:
|
2587 |
msgid "Updates automatically"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: languages/vue.php:
|
2591 |
msgid "Copy to clipboard"
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: languages/vue.php:
|
2595 |
msgid "More Information & Examples"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: languages/vue.php:
|
2599 |
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: languages/vue.php:
|
2603 |
msgid "Campaign Source"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: languages/vue.php:
|
2607 |
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: languages/vue.php:
|
2611 |
msgid "Campaign Medium"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: languages/vue.php:
|
2615 |
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: languages/vue.php:
|
2619 |
msgid "Campaign Name"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: languages/vue.php:
|
2623 |
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: languages/vue.php:
|
2627 |
msgid "Campaign Term"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: languages/vue.php:
|
2631 |
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: languages/vue.php:
|
2635 |
msgid "Campaign Content"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: languages/vue.php:
|
2639 |
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: languages/vue.php:
|
2643 |
msgid "Example: %s"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: languages/vue.php:
|
2647 |
msgid "Examples: %s"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: languages/vue.php:
|
2651 |
msgid "About Campaigns"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: languages/vue.php:
|
2655 |
msgid "About Custom Campaigns"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: languages/vue.php:
|
2659 |
msgid "Best practices for creating Custom Campaigns"
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: languages/vue.php:
|
2663 |
msgid "About the Referral Traffic report"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: languages/vue.php:
|
2667 |
msgid "About traffic source dimensions"
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: languages/vue.php:
|
2671 |
msgid "AdWords Auto-Tagging"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: languages/vue.php:
|
2675 |
msgid "Additional Information"
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: languages/vue.php:
|
2679 |
msgid "GDPR Guide"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: languages/vue.php:
|
2683 |
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. "
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: languages/vue.php:
|
2687 |
msgid "How to install and activate MonsterInsights addons"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: languages/vue.php:
|
2691 |
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."
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: languages/vue.php:
|
2695 |
msgid "Enabling eCommerce Tracking and Reports"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: languages/vue.php:
|
2699 |
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."
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: languages/vue.php:
|
2703 |
msgid "Read Documentation"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: languages/vue.php:
|
2707 |
msgid "Getting Started with MonsterInsights"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: languages/vue.php:
|
2711 |
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."
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: languages/vue.php:
|
2715 |
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."
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: languages/vue.php:
|
2719 |
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!."
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: languages/vue.php:
|
2723 |
msgid "Launch the wizard!"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
-
#: languages/vue.php:
|
2727 |
msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: languages/vue.php:
|
2731 |
msgid "Thanks for being a loyal MonsterInsights Lite user. %sUpgrade to MonsterInsights Pro%s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
|
2732 |
msgstr ""
|
2733 |
|
2734 |
-
#: languages/vue.php:
|
2735 |
msgid "Universal Tracking across devices and campaigns with just a few clicks."
|
2736 |
msgstr ""
|
2737 |
|
2738 |
-
#: languages/vue.php:
|
2739 |
msgid "See your website analytics reports inside the WordPress dashboard"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
-
#: languages/vue.php:
|
2743 |
msgid "Get real-time stats right inside WordPress"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#: languages/vue.php:
|
2747 |
msgid "1-click Google Analytics Enhanced Ecommerce tracking"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#: languages/vue.php:
|
2751 |
msgid "Get detailed stats for each post and page."
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#: languages/vue.php:
|
2755 |
msgid "Automatically track clicks on your affiliate links and ads."
|
2756 |
msgstr ""
|
2757 |
|
2758 |
-
#: languages/vue.php:
|
2759 |
msgid "Make Google Analytics GDPR compliant automatically"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
-
#: languages/vue.php:
|
2763 |
msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#: languages/vue.php:
|
2767 |
msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
|
2768 |
msgstr ""
|
2769 |
|
2770 |
-
#: languages/vue.php:
|
2771 |
msgid "More advanced features"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
-
#: languages/vue.php:
|
2775 |
msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
-
#: languages/vue.php:
|
2779 |
msgid "Bonus: MonsterInsights Lite users get %s50%% off regular price%s, automatically applied at checkout."
|
2780 |
msgstr ""
|
2781 |
|
2782 |
-
#: languages/vue.php:
|
2783 |
msgid "How to Connect to Google Analytics"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#: languages/vue.php:
|
2787 |
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."
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
#: languages/vue.php:
|
2791 |
msgid "Guide and Checklist for Advanced Insights"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: languages/vue.php:
|
2795 |
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."
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: languages/vue.php:
|
2799 |
msgid "WordPress Admin Area Reports"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: languages/vue.php:
|
2803 |
msgid "Standard Reports"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: languages/vue.php:
|
2807 |
msgid "Overview Reports for the last 30 days."
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: languages/vue.php:
|
2811 |
msgid "Advanced Reports"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: languages/vue.php:
|
2815 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: languages/vue.php:
|
2819 |
msgid "Dashboard Widget"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: languages/vue.php:
|
2823 |
msgid "Basic Widget"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: languages/vue.php:
|
2827 |
msgid "Overview Report Synopsis"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: languages/vue.php:
|
2831 |
msgid "Advanced Dashboard Widget"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
-
#: languages/vue.php:
|
2835 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
-
#: languages/vue.php:
|
2839 |
msgid "Publisher Reports"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
-
#: languages/vue.php:
|
2843 |
msgid "Advanced Publisher Reports & Tracking"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#: languages/vue.php:
|
2847 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#: languages/vue.php:
|
2851 |
msgid "Custom Dimensions"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#: languages/vue.php:
|
2855 |
msgid "Not Available"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#: languages/vue.php:
|
2859 |
msgid "Complete Custom Dimensions Tracking"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#: languages/vue.php:
|
2863 |
msgid "Track and measure by the Author, Post Type, Category, Tags, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#: languages/vue.php:
|
2867 |
msgid "Limited support"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#: languages/vue.php:
|
2871 |
msgid "Priority Support"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: languages/vue.php:
|
2875 |
msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#: languages/vue.php:
|
2879 |
msgid "Feature"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#: languages/vue.php:
|
2883 |
msgid "Lite"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#: languages/vue.php:
|
2887 |
msgid "Pro"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#: languages/vue.php:
|
2891 |
msgid "Universal Tracking"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#: languages/vue.php:
|
2895 |
msgid "Included"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#: languages/vue.php:
|
2899 |
msgid "Custom Google Analytics Link Tracking"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#: languages/vue.php:
|
2903 |
msgid "Standard Tracking"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#: languages/vue.php:
|
2907 |
msgid "Advanced Tracking"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#: languages/vue.php:
|
2911 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
-
#: languages/vue.php:
|
2915 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: languages/vue.php:
|
2919 |
msgid "No-Code-Needed Tracking Features"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: languages/vue.php:
|
2923 |
msgid "Basic Tracking Options"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: languages/vue.php:
|
2927 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: languages/vue.php:
|
2931 |
msgid "Advanced Tracking Options"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: languages/vue.php:
|
2935 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: languages/vue.php:
|
2939 |
msgid "eCommerce Tracking"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: languages/vue.php:
|
2943 |
msgid "One-click Complete eCommerce tracking"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: languages/vue.php:
|
2947 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: languages/vue.php:
|
2951 |
msgid "Forms Tracking"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: languages/vue.php:
|
2955 |
msgid "One-click Form Events Tracking"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: languages/vue.php:
|
2959 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: languages/vue.php:
|
2963 |
msgid "MonsterInsights Recommends WPForms"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: languages/vue.php:
|
2967 |
msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: languages/vue.php:
|
2971 |
msgid "Used on over 1,000,000 websites!"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: languages/vue.php:
|
2975 |
msgid "WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: languages/vue.php:
|
2979 |
msgid "Skip this Step"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: languages/vue.php:
|
2983 |
msgid "Continue & Install WPForms"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: languages/vue.php:
|
2987 |
msgid "Installing..."
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: languages/vue.php:
|
2991 |
msgid "Awesome, You're All Set!"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: languages/vue.php:
|
2995 |
msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: languages/vue.php:
|
2999 |
msgid "%sPlease Note:%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."
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: languages/vue.php:
|
3003 |
msgid "%sSubscribe to the MonsterInsights blog%s for tips on how to get more traffic and grow your business."
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: languages/vue.php:
|
3007 |
msgid "Finish Setup & Exit Wizard"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: languages/vue.php:
|
3011 |
msgid "Checking your website..."
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: languages/vue.php:
|
3015 |
msgid "Recommended Settings"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: languages/vue.php:
|
3019 |
msgid "MonsterInsights recommends the following settings based on your configuration."
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: languages/vue.php:
|
3023 |
msgid "Events Tracking"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: languages/vue.php:
|
3027 |
msgid "Must have for all click tracking on site."
|
3028 |
msgstr ""
|
3029 |
|
3030 |
-
#: languages/vue.php:
|
3031 |
msgid "MonsterInsights uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
|
3032 |
msgstr ""
|
3033 |
|
3034 |
-
#: languages/vue.php:
|
3035 |
msgid "Enhanced Link Attribution"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
-
#: languages/vue.php:
|
3039 |
msgid "Improves the accuracy of your In-Page Analytics."
|
3040 |
msgstr ""
|
3041 |
|
3042 |
-
#: languages/vue.php:
|
3043 |
msgid "MonsterInsights will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
|
3044 |
msgstr ""
|
3045 |
|
3046 |
-
#: languages/vue.php:
|
3047 |
msgid "Install Updates Automatically"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
-
#: languages/vue.php:
|
3051 |
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#: languages/vue.php:
|
3055 |
msgid "To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
|
3056 |
msgstr ""
|
3057 |
|
3058 |
-
#: languages/vue.php:
|
3059 |
msgid "File Download Tracking"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
-
#: languages/vue.php:
|
3063 |
msgid "Helps you see file downloads data."
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: languages/vue.php:
|
3067 |
msgid "MonsterInsights will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: languages/vue.php:
|
3071 |
msgid "Helps you increase affiliate revenue."
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: languages/vue.php:
|
3075 |
msgid "MonsterInsights will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: languages/vue.php:
|
3079 |
msgid "Affiliate Link Tracking"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: languages/vue.php:
|
3083 |
msgid "Who Can See Reports"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: languages/vue.php:
|
3087 |
msgid "These user roles will be able to access MonsterInsights's reports in the WordPress admin area."
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: languages/vue.php:
|
3091 |
msgid "Save and continue"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: languages/vue.php:
|
3095 |
msgid "Events Tracking is enabled the moment you set up MonsterInsights"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: languages/vue.php:
|
3099 |
msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: languages/vue.php:
|
3103 |
msgid "Connect MonsterInsights to Your Website"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: languages/vue.php:
|
3107 |
msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: languages/vue.php:
|
3111 |
msgid "vs. Previous Day"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: languages/vue.php:
|
3115 |
msgid "No change"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: languages/vue.php:
|
3119 |
msgid "Show"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: languages/vue.php:
|
3123 |
msgid "Right Now"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: languages/vue.php:
|
3127 |
msgid "Active users on site"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: languages/vue.php:
|
3131 |
msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: languages/vue.php:
|
3135 |
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."
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: languages/vue.php:
|
3139 |
msgid "The real-time report automatically updates approximately every 60 seconds."
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#: languages/vue.php:
|
3143 |
msgid "The real-time report was last updated %s seconds ago."
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: languages/vue.php:
|
3147 |
msgid "The latest data will be automatically shown on this page when it becomes available."
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: languages/vue.php:
|
3151 |
msgid "There is no need to refresh the browser (doing so won't have any effect)."
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: languages/vue.php:
|
3155 |
msgid "Pageviews Per Minute"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: languages/vue.php:
|
3159 |
msgid "Top Pages"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: languages/vue.php:
|
3163 |
msgid "No pageviews currently."
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: languages/vue.php:
|
3167 |
msgid "Page"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: languages/vue.php:
|
3171 |
msgid "Pageview Count"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
-
#: languages/vue.php:
|
3175 |
msgid "Percent of Total"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
-
#: languages/vue.php:
|
3179 |
msgid "This is the number of active users currently on your site."
|
3180 |
msgstr ""
|
3181 |
|
3182 |
-
#: languages/vue.php:
|
3183 |
msgid "This graph shows the number of pageviews for each of the last 30 minutes."
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: languages/vue.php:
|
3187 |
msgid "This list shows the top pages users are currently viewing on your site."
|
3188 |
msgstr ""
|
3189 |
|
3190 |
-
#: languages/vue.php:
|
3191 |
msgid "View All Real-Time Pageviews"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
-
#: languages/vue.php:
|
3195 |
msgid "View All Real-Time Traffic Sources"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
-
#: languages/vue.php:
|
3199 |
msgid "View All Real-Time Traffic by Country"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
-
#: languages/vue.php:
|
3203 |
msgid "View All Real-Time Traffic by City"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
-
#: languages/vue.php:
|
3207 |
msgid "Welcome to MonsterInsights!"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
-
#: languages/vue.php:
|
3211 |
msgid "Let's get you set up."
|
3212 |
msgstr ""
|
3213 |
|
3214 |
-
#: languages/vue.php:
|
3215 |
msgid "Save and Continue"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: languages/vue.php:
|
3219 |
msgid "Which category best describes your website?"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
-
#: languages/vue.php:
|
3223 |
msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: languages/vue.php:
|
3227 |
msgid "Business Website"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: languages/vue.php:
|
3231 |
msgid "Publisher %s(Blog)%s"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: languages/vue.php:
|
3235 |
msgid "Ecommerce"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: languages/vue.php:
|
3239 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#: languages/vue.php:
|
3243 |
msgid "Google Optimize"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#: languages/vue.php:
|
3247 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#: languages/vue.php:
|
3251 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: languages/vue.php:
|
3255 |
msgid "Your license key for MonsterInsights has expired. %sPlease click here to renew your license key.%s"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: languages/vue.php:
|
3259 |
#: lite/includes/admin/helpers.php:83
|
3260 |
msgid "Upgrade to MonsterInsights Pro"
|
3261 |
msgstr ""
|
3262 |
|
3263 |
-
#: languages/vue.php:
|
3264 |
msgid "Show in widget mode"
|
3265 |
msgstr ""
|
3266 |
|
3267 |
-
#: languages/vue.php:
|
3268 |
msgid "Show in full-width mode"
|
3269 |
msgstr ""
|
3270 |
|
3271 |
-
#: languages/vue.php:
|
3272 |
msgid "Last 30 Days Insights for:"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
-
#: languages/vue.php:
|
3276 |
msgid "Your Website"
|
3277 |
msgstr ""
|
3278 |
|
3279 |
-
#: languages/vue.php:
|
3280 |
msgid "Avg. Duration"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
-
#: languages/vue.php:
|
3284 |
msgid "More data is available"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
-
#: languages/vue.php:
|
3288 |
msgid "Want to see page-specific stats?"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
-
#: languages/vue.php:
|
3292 |
msgid "Can't load settings. Error: %s, %s"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
-
#: languages/vue.php:
|
3296 |
msgid "You appear to be offline."
|
3297 |
msgstr ""
|
3298 |
|
3299 |
-
#: languages/vue.php:
|
3300 |
msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %sLearn More%s"
|
3301 |
msgstr ""
|
3302 |
|
3303 |
-
#: languages/vue.php:
|
3304 |
msgid "In order for the MonsterInsights Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %s%s Plugin%s | %sLearn More%s"
|
3305 |
msgstr ""
|
3306 |
|
3307 |
-
#: languages/vue.php:
|
3308 |
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. %sLearn More%s"
|
3309 |
msgstr ""
|
3310 |
|
3311 |
-
#: languages/vue.php:
|
3312 |
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. %s%s Plugin%s | %sLearn More%s"
|
3313 |
msgstr ""
|
3314 |
|
3315 |
-
#: languages/vue.php:
|
3316 |
msgid "Recommended Addons"
|
3317 |
msgstr ""
|
3318 |
|
3319 |
-
#: languages/vue.php:
|
3320 |
msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
|
3321 |
msgstr ""
|
3322 |
|
3323 |
-
#: languages/vue.php:
|
3324 |
msgid "Other Addons"
|
3325 |
msgstr ""
|
3326 |
|
3327 |
-
#: languages/vue.php:
|
3328 |
msgid "View all MonsterInsights addons"
|
3329 |
msgstr ""
|
3330 |
|
3331 |
-
#: languages/vue.php:
|
3332 |
msgid "Deactivating..."
|
3333 |
msgstr ""
|
3334 |
|
3335 |
-
#: languages/vue.php:
|
3336 |
msgid "Deactivate"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
-
#: languages/vue.php:
|
3340 |
msgid "Status: %s"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
#: languages/vue.php:
|
3344 |
msgid "Not Installed"
|
3345 |
msgstr ""
|
3346 |
|
3347 |
-
#: languages/vue.php:
|
3348 |
msgid "Network Active"
|
3349 |
msgstr ""
|
3350 |
|
3351 |
-
#: languages/vue.php:
|
3352 |
msgid "Active"
|
3353 |
msgstr ""
|
3354 |
|
3355 |
-
#: languages/vue.php:
|
3356 |
msgid "Inactive"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
-
#: languages/vue.php:
|
3360 |
msgid "Activating..."
|
3361 |
msgstr ""
|
3362 |
|
3363 |
-
#: languages/vue.php:
|
3364 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: languages/vue.php:
|
3368 |
msgid "No addons found."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: languages/vue.php:
|
3372 |
msgid "Refresh Addons"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: languages/vue.php:
|
3376 |
msgid "Refreshing Addons"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: languages/vue.php:
|
3380 |
msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %sreceive 50%% off%s, automatically applied at checkout!"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#: languages/vue.php:
|
3384 |
msgid "See All Your Important Store Metrics in One Place"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
-
#: languages/vue.php:
|
3388 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#: languages/vue.php:
|
3392 |
msgid "ONE-CLICK INTEGRATIONS"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
-
#: languages/vue.php:
|
3396 |
msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
-
#: languages/vue.php:
|
3400 |
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."
|
3401 |
msgstr ""
|
3402 |
|
3403 |
-
#: languages/vue.php:
|
3404 |
msgid "Upgrade to Pro and unlock addons and other great features. %sSave 50%% automatically!%s"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
-
#: languages/vue.php:
|
3408 |
msgid "Add your MonsterInsights license key from the email receipt or account area. %sRetrieve your license key%s."
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#: languages/vue.php:
|
3412 |
msgid "Miscellaneous"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#: languages/vue.php:
|
3416 |
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#: languages/vue.php:
|
3420 |
msgid "Hide Announcements"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#: languages/vue.php:
|
3424 |
msgid "Show Overview Reports"
|
3425 |
msgstr ""
|
3426 |
|
3427 |
-
#: languages/vue.php:
|
3428 |
msgid "Show Publishers Reports"
|
3429 |
msgstr ""
|
3430 |
|
3431 |
-
#: languages/vue.php:
|
3432 |
msgid "Show eCommerce Reports"
|
3433 |
msgstr ""
|
3434 |
|
3435 |
-
#: languages/vue.php:
|
3436 |
msgid "Available in PRO version"
|
3437 |
msgstr ""
|
3438 |
|
3439 |
-
#: languages/vue.php:
|
3440 |
msgid "No options available"
|
3441 |
msgstr ""
|
3442 |
|
3443 |
-
#: languages/vue.php:
|
3444 |
msgid "Reset to default"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
-
#: languages/vue.php:
|
3448 |
msgid "The value entered does not match the required format"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
-
#: languages/vue.php:
|
3452 |
msgid "%s can't be empty."
|
3453 |
msgstr ""
|
3454 |
|
3455 |
-
#: languages/vue.php:
|
3456 |
msgid "Duplicate values are not allowed."
|
3457 |
msgstr ""
|
3458 |
|
3459 |
-
#: languages/vue.php:
|
3460 |
msgid "Add Another Link Path"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#: languages/vue.php:
|
3464 |
msgid "Remove row"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
-
#: languages/vue.php:
|
3468 |
msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
-
#: languages/vue.php:
|
3472 |
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!"
|
3473 |
msgstr ""
|
3474 |
|
3475 |
-
#: languages/vue.php:
|
3476 |
msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
|
3477 |
msgstr ""
|
3478 |
|
3479 |
-
#: languages/vue.php:
|
3480 |
msgid "Use coupon code %sLITEUPGRADE%s"
|
3481 |
msgstr ""
|
3482 |
|
3483 |
-
#: languages/vue.php:
|
3484 |
msgid "Facebook Instant Articles"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
-
#: languages/vue.php:
|
3488 |
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
|
3489 |
msgstr ""
|
3490 |
|
3491 |
-
#: languages/vue.php:
|
3492 |
msgid "Scroll Tracking"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: languages/vue.php:
|
3496 |
msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
|
3497 |
msgstr ""
|
3498 |
|
3499 |
-
#: languages/vue.php:
|
3500 |
msgid "Can't save settings. Error: %s, %s"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
-
#: languages/vue.php:
|
3504 |
msgid "You appear to be offline. Settings not saved."
|
3505 |
msgstr ""
|
3506 |
|
3507 |
-
#: languages/vue.php:
|
3508 |
msgid "Authenticating"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
-
#: languages/vue.php:
|
3512 |
msgid "Re-Authenticating"
|
3513 |
msgstr ""
|
3514 |
|
3515 |
-
#: languages/vue.php:
|
3516 |
msgid "Verifying Credentials"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
-
#: languages/vue.php:
|
3520 |
msgid "Your site is connected to MonsterInsights!"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
-
#: languages/vue.php:
|
3524 |
msgid "Deauthenticating"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
-
#: languages/vue.php:
|
3528 |
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."
|
3529 |
msgstr ""
|
3530 |
|
3531 |
-
#: languages/vue.php:
|
3532 |
msgid "Connect MonsterInsights"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
-
#: languages/vue.php:
|
3536 |
msgid "Verify Credentials"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
-
#: languages/vue.php:
|
3540 |
msgid "Reconnect MonsterInsights"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
-
#: languages/vue.php:
|
3544 |
msgid "Website Profile"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
-
#: languages/vue.php:
|
3548 |
msgid "Active Profile"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
-
#: languages/vue.php:
|
3552 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
3553 |
msgstr ""
|
3554 |
|
@@ -3874,428 +3900,764 @@ msgstr ""
|
|
3874 |
msgid "Do Upgrade Later"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
-
#: languages/vue.php:
|
3878 |
msgid "Upgrade to PRO"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#: languages/vue.php:
|
3882 |
msgid "Upgrade to Pro"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: languages/vue.php:
|
3886 |
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."
|
3887 |
msgstr ""
|
3888 |
|
3889 |
-
#: languages/vue.php:
|
3890 |
msgid "You're using %sMonsterInsights Lite%s - no license needed. Enjoy!"
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#: languages/vue.php:
|
3894 |
msgid "You need to %sconnect MonsterInsights%s first"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#: languages/vue.php:
|
3898 |
#: lite/includes/admin/welcome.php:52
|
3899 |
#: lite/includes/admin/welcome.php:53
|
3900 |
msgid "Welcome to MonsterInsights"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: languages/vue.php:
|
3904 |
msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
-
#: languages/vue.php:
|
3908 |
msgid "MonsterInsights makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
|
3909 |
msgstr ""
|
3910 |
|
3911 |
-
#: languages/vue.php:
|
3912 |
msgid "Launch the Wizard!"
|
3913 |
msgstr ""
|
3914 |
|
3915 |
-
#: languages/vue.php:
|
3916 |
msgid "Read the Full Guide"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
-
#: languages/vue.php:
|
3920 |
msgid "MonsterInsights Features & Addons"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
-
#: languages/vue.php:
|
3924 |
msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: languages/vue.php:
|
3928 |
msgid "See All Features"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
-
#: languages/vue.php:
|
3932 |
msgid "per year"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#: languages/vue.php:
|
3936 |
msgid "Testimonials"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
-
#: languages/vue.php:
|
3940 |
msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
3941 |
msgstr ""
|
3942 |
|
3943 |
-
#: languages/vue.php:
|
3944 |
msgid "Google Analytics Dashboard"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: languages/vue.php:
|
3948 |
msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: languages/vue.php:
|
3952 |
msgid "Real-time Stats"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: languages/vue.php:
|
3956 |
msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
|
3957 |
msgstr ""
|
3958 |
|
3959 |
-
#: languages/vue.php:
|
3960 |
msgid "Enhanced Ecommerce Tracking"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#: languages/vue.php:
|
3964 |
msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: languages/vue.php:
|
3968 |
msgid "Page Level Analytics"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
-
#: languages/vue.php:
|
3972 |
msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
|
3973 |
msgstr ""
|
3974 |
|
3975 |
-
#: languages/vue.php:
|
3976 |
msgid "Affiliate Link & Ads Tracking"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
-
#: languages/vue.php:
|
3980 |
msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
|
3981 |
msgstr ""
|
3982 |
|
3983 |
-
#: languages/vue.php:
|
3984 |
msgid "EU Compliance (GDPR Friendly)"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
-
#: languages/vue.php:
|
3988 |
msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
3989 |
msgstr ""
|
3990 |
|
3991 |
-
#: languages/vue.php:
|
3992 |
msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
|
3993 |
msgstr ""
|
3994 |
|
3995 |
-
#: languages/vue.php:
|
3996 |
msgid "Ecommerce Report"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
-
#: languages/vue.php:
|
4000 |
msgid "Category / Tags Tracking"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
-
#: languages/vue.php:
|
4004 |
msgid "WooCommerce"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
-
#: languages/vue.php:
|
4008 |
msgid "Easy Digital Downloads"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
-
#: languages/vue.php:
|
4012 |
msgid "MemberPress"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
-
#: languages/vue.php:
|
4016 |
msgid "LifterLMS"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#: languages/vue.php:
|
4020 |
msgid "See how %s visitors found your site!"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
-
#: languages/vue.php:
|
4024 |
msgid "Your website was visited by %s users in the last 30 days."
|
4025 |
msgstr ""
|
4026 |
|
4027 |
-
#: languages/vue.php:
|
4028 |
msgid "See the full analytics report!"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
-
#: languages/vue.php:
|
4032 |
msgid "You must connect with MonsterInsights before you can view reports."
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: languages/vue.php:
|
4036 |
msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: languages/vue.php:
|
4040 |
msgid "See Quick Links"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
-
#: languages/vue.php:
|
4044 |
msgid "Suggest a Feature"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: languages/vue.php:
|
4048 |
msgid "Join Our Community"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
-
#: languages/vue.php:
|
4052 |
msgid "Support & Docs"
|
4053 |
msgstr ""
|
4054 |
|
4055 |
-
#: languages/vue.php:
|
4056 |
msgid "Upgrade to Pro »"
|
4057 |
msgstr ""
|
4058 |
|
4059 |
-
#: languages/vue.php:
|
4060 |
msgid "MonsterInsights encountered an error loading your report data"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
-
#: languages/vue.php:
|
4064 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
4065 |
msgstr ""
|
4066 |
|
4067 |
-
#: languages/vue.php:
|
4068 |
msgid "Last %s days"
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: languages/vue.php:
|
4072 |
#: lite/includes/admin/wp-site-health.php:179
|
4073 |
msgid "View Reports"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: languages/vue.php:
|
4077 |
msgid "Congratulations!"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
-
#: languages/vue.php:
|
4081 |
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 %sGetting started video%s or use our %s to get you quickly set up."
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: languages/vue.php:
|
4085 |
msgid "Onboarding Wizard"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
-
#: languages/vue.php:
|
4089 |
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."
|
4090 |
msgstr ""
|
4091 |
|
4092 |
-
#: languages/vue.php:
|
4093 |
msgid "Yup, we know a thing or two about building awesome products that customers love."
|
4094 |
msgstr ""
|
4095 |
|
4096 |
-
#: languages/vue.php:
|
4097 |
msgid "The MonsterInsights Team"
|
4098 |
msgstr ""
|
4099 |
|
4100 |
-
#: languages/vue.php:
|
4101 |
msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%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 %s) only takes a few minutes and will make your website significantly faster and more secure."
|
4102 |
msgstr ""
|
4103 |
|
4104 |
-
#: languages/vue.php:
|
4105 |
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."
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: languages/vue.php:
|
4109 |
msgid "You’re using MonsterInsights Lite. To unlock more features consider %supgrading to Pro%s."
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: languages/vue.php:
|
4113 |
msgid "Installing Addon"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: languages/vue.php:
|
4117 |
msgid "Activating Addon"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: languages/vue.php:
|
4121 |
msgid "Addon Activated"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: languages/vue.php:
|
4125 |
msgid "Loading report data"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#: languages/vue.php:
|
4129 |
msgid "Please activate manually"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
-
#: languages/vue.php:
|
4133 |
msgid "Error: %s, %s"
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: languages/vue.php:
|
4137 |
msgid "Error Activating Addon"
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#: languages/vue.php:
|
4141 |
#: lite/includes/admin/wp-site-health.php:298
|
4142 |
#: lite/includes/admin/wp-site-health.php:324
|
4143 |
#: lite/includes/admin/wp-site-health.php:351
|
4144 |
msgid "View Addons"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
-
#: languages/vue.php:
|
4148 |
msgid "Dismiss"
|
4149 |
msgstr ""
|
4150 |
|
4151 |
-
#: languages/vue.php:
|
4152 |
msgid "Redirecting"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
-
#: languages/vue.php:
|
4156 |
msgid "Please wait"
|
4157 |
msgstr ""
|
4158 |
|
4159 |
-
#: languages/vue.php:
|
4160 |
msgid "Visit addons page"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
-
#: languages/vue.php:
|
4164 |
msgid "Report Unavailable"
|
4165 |
msgstr ""
|
4166 |
|
4167 |
-
#: languages/vue.php:
|
4168 |
msgid "%s Addon"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
-
#: languages/vue.php:
|
4172 |
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."
|
4173 |
msgstr ""
|
4174 |
|
4175 |
-
#: languages/vue.php:
|
4176 |
msgid "See All Reports"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
-
#: languages/vue.php:
|
4180 |
msgid "Go to the Analytics Dashboard"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
-
#: languages/vue.php:
|
4184 |
msgid "Hide dashboard widget"
|
4185 |
msgstr ""
|
4186 |
|
4187 |
-
#: languages/vue.php:
|
4188 |
msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
|
4189 |
msgstr ""
|
4190 |
|
4191 |
-
#: languages/vue.php:
|
4192 |
msgid "Yes, hide it!"
|
4193 |
msgstr ""
|
4194 |
|
4195 |
-
#: languages/vue.php:
|
4196 |
msgid "No, cancel!"
|
4197 |
msgstr ""
|
4198 |
|
4199 |
-
#: languages/vue.php:
|
4200 |
msgid "MonsterInsights Widget Hidden"
|
4201 |
msgstr ""
|
4202 |
|
4203 |
-
#: languages/vue.php:
|
4204 |
msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
|
4205 |
msgstr ""
|
4206 |
|
4207 |
-
#: languages/vue.php:
|
4208 |
msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %sRetrieve your license key%s."
|
4209 |
msgstr ""
|
4210 |
|
4211 |
-
#: languages/vue.php:
|
4212 |
msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
|
4213 |
msgstr ""
|
4214 |
|
4215 |
-
#: languages/vue.php:
|
4216 |
msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
|
4217 |
msgstr ""
|
4218 |
|
4219 |
-
#: languages/vue.php:
|
4220 |
msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
|
4221 |
msgstr ""
|
4222 |
|
4223 |
-
#: languages/vue.php:
|
4224 |
msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
|
4225 |
msgstr ""
|
4226 |
|
4227 |
-
#: languages/vue.php:
|
4228 |
msgid "Use Google Optimize to easily perform A/B split tests on your site."
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#: languages/vue.php:
|
4232 |
msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#: languages/vue.php:
|
4236 |
msgid "Unlock search console report to see your top performing keywords in Google."
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#: languages/vue.php:
|
4240 |
msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
|
4241 |
msgstr ""
|
4242 |
|
4243 |
-
#: languages/vue.php:
|
4244 |
msgid "Publishers Report shows your top performing pages, audience demographics, and more."
|
4245 |
msgstr ""
|
4246 |
|
4247 |
-
#: languages/vue.php:
|
4248 |
msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving.s"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
-
#: languages/vue.php:
|
4252 |
msgid "Upgrade to Pro »"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
-
#: languages/vue.php:
|
4256 |
msgid "Pro Tip:"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
-
#: languages/vue.php:
|
4260 |
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 October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
4261 |
msgstr ""
|
4262 |
|
4263 |
-
#: languages/vue.php:
|
4264 |
msgid "Can't load report data. Error: %s, %s"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
-
#: languages/vue.php:
|
4268 |
msgid "Error loading report data"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
-
#: languages/vue.php:
|
4272 |
msgid "Error loading license details"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
-
#: languages/vue.php:
|
4276 |
msgid "Network error encountered. Settings not saved."
|
4277 |
msgstr ""
|
4278 |
|
4279 |
-
#: languages/vue.php:
|
4280 |
msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
|
4281 |
msgstr ""
|
4282 |
|
4283 |
-
#: languages/vue.php:
|
4284 |
msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
|
4285 |
msgstr ""
|
4286 |
|
4287 |
-
#: languages/vue.php:
|
4288 |
msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
|
4289 |
msgstr ""
|
4290 |
|
4291 |
-
#: languages/vue.php:
|
4292 |
msgid "UA code can't be empty"
|
4293 |
msgstr ""
|
4294 |
|
4295 |
-
#: languages/vue.php:
|
4296 |
msgid "Saving UA code..."
|
4297 |
msgstr ""
|
4298 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4299 |
#: lite/includes/admin/connect.php:42
|
4300 |
msgid "You are not allowed to install plugins."
|
4301 |
msgstr ""
|
@@ -4363,15 +4725,15 @@ msgstr ""
|
|
4363 |
msgid "%1$sBonus:%2$s You also get 50%% off discount for being a loyal MonsterInsights Lite user."
|
4364 |
msgstr ""
|
4365 |
|
4366 |
-
#: lite/includes/admin/onboarding-wizard.php:
|
4367 |
msgid "MonsterInsights › Onboarding Wizard"
|
4368 |
msgstr ""
|
4369 |
|
4370 |
-
#: lite/includes/admin/onboarding-wizard.php:
|
4371 |
msgid "Return to Dashboard"
|
4372 |
msgstr ""
|
4373 |
|
4374 |
-
#: lite/includes/admin/onboarding-wizard.php:
|
4375 |
msgid "You are not allowed to install plugins"
|
4376 |
msgstr ""
|
4377 |
|
@@ -4379,6 +4741,10 @@ msgstr ""
|
|
4379 |
msgid "Real Time"
|
4380 |
msgstr ""
|
4381 |
|
|
|
|
|
|
|
|
|
4382 |
#: lite/includes/admin/tools.php:10
|
4383 |
msgid "Want even more fine tuned control over your website analytics?"
|
4384 |
msgstr ""
|
2 |
# This file is distributed under the same license as the MonsterInsights Pro plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: MonsterInsights Pro 7.10.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights\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: 2019-12-19T18:37:42+00:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.2.0\n"
|
15 |
"X-Domain: google-analytics-for-wordpress\n"
|
63 |
#: includes/admin/admin.php:37
|
64 |
#: includes/admin/admin.php:45
|
65 |
#: includes/admin/admin.php:91
|
66 |
+
#: languages/vue.php:169
|
67 |
msgid "Insights"
|
68 |
msgstr ""
|
69 |
|
85 |
|
86 |
#: includes/admin/admin.php:39
|
87 |
#: includes/admin/admin.php:95
|
88 |
+
#: languages/vue.php:606
|
89 |
msgid "Reports"
|
90 |
msgstr ""
|
91 |
|
114 |
|
115 |
#: includes/admin/admin.php:60
|
116 |
#: includes/admin/admin.php:103
|
117 |
+
#: languages/vue.php:233
|
118 |
msgid "About Us"
|
119 |
msgstr ""
|
120 |
|
136 |
msgstr ""
|
137 |
|
138 |
#: includes/admin/admin.php:169
|
139 |
+
#: includes/admin/reports/abstract-report.php:361
|
140 |
msgid "Get MonsterInsights Pro"
|
141 |
msgstr ""
|
142 |
|
143 |
#: includes/admin/admin.php:175
|
144 |
#: includes/admin/admin.php:178
|
145 |
+
#: languages/vue.php:942
|
146 |
msgid "Support"
|
147 |
msgstr ""
|
148 |
|
151 |
msgstr ""
|
152 |
|
153 |
#: includes/admin/admin.php:276
|
154 |
+
#: languages/vue.php:1893
|
155 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
156 |
msgstr ""
|
157 |
|
158 |
#: includes/admin/admin.php:277
|
159 |
+
#: languages/vue.php:1899
|
160 |
msgid "Connect MonsterInsights and Setup Website Analytics"
|
161 |
msgstr ""
|
162 |
|
163 |
#: includes/admin/admin.php:279
|
164 |
+
#: languages/vue.php:206
|
165 |
msgid "Learn More"
|
166 |
msgstr ""
|
167 |
|
168 |
#: includes/admin/admin.php:281
|
169 |
+
#: languages/vue.php:1896
|
170 |
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 2 million website owners use MonsterInsights to see the stats that matter and grow their business."
|
171 |
msgstr ""
|
172 |
|
179 |
msgstr ""
|
180 |
|
181 |
#: includes/admin/admin.php:302
|
182 |
+
#: languages/vue.php:1239
|
183 |
msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
|
184 |
msgstr ""
|
185 |
|
186 |
#: includes/admin/admin.php:304
|
187 |
+
#: languages/vue.php:1242
|
188 |
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."
|
189 |
msgstr ""
|
190 |
|
303 |
msgid "Could not deauthenticate."
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/admin/common.php:749
|
307 |
msgid "MonsterInsights has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of MonsterInsights. To solve this, ensure MonsterInsights is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: includes/admin/common.php:869
|
311 |
+
#: languages/vue.php:2055
|
312 |
+
msgid "Your 2019 Analytics Report"
|
313 |
+
msgstr ""
|
314 |
+
|
315 |
+
#: includes/admin/common.php:875
|
316 |
+
#: languages/vue.php:2058
|
317 |
+
msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: includes/admin/common.php:877
|
321 |
+
msgid "View 2019 Year in Review report!"
|
322 |
+
msgstr ""
|
323 |
+
|
324 |
#: includes/admin/licensing/skin.php:86
|
325 |
msgid "There was an error installing the addon. Please try again."
|
326 |
msgstr ""
|
397 |
msgid "Invalid date range."
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: includes/admin/reports/abstract-report.php:270
|
401 |
msgid "You must authenticate with MonsterInsights to use reports."
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: includes/admin/reports/abstract-report.php:319
|
405 |
msgid "You currently have a %s level license, but this report requires at least a %s level license to view the %s. Please upgrade to view this report."
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: includes/admin/reports/abstract-report.php:331
|
409 |
msgid "Ready to Get Analytics Super-Powers?"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: includes/admin/reports/abstract-report.php:333
|
413 |
msgid "(And Crush Your Competition?)"
|
414 |
msgstr ""
|
415 |
|
416 |
+
#: includes/admin/reports/abstract-report.php:336
|
417 |
msgid ""
|
418 |
"Hey there! It looks like you've got the %s license installed on your site.
|
419 |
"\t\t\t\t\t\t\t\t\t That's awesome! %s"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: includes/admin/reports/abstract-report.php:339
|
423 |
msgid "Do you want to access to %s reporting right now%s in your WordPress Dashboard? That comes with the %s level%s of our paid packages. You'll need to upgrade your license to get instant access."
|
424 |
msgstr ""
|
425 |
|
426 |
+
#: includes/admin/reports/abstract-report.php:341
|
427 |
msgid "It's easy! To upgrade, navigate to %sMy Account%s on MonsterInsights.com, go to the licenses tab, and click upgrade. We also have a %sstep by step guide%s with pictures of this process."
|
428 |
msgstr ""
|
429 |
|
430 |
+
#: includes/admin/reports/abstract-report.php:343
|
431 |
+
#: includes/admin/reports/abstract-report.php:352
|
432 |
msgid "If you have any questions, don't hesitate to reach out. We're here to help."
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: includes/admin/reports/abstract-report.php:345
|
436 |
msgid ""
|
437 |
"Hey there! %s It looks like you've got the free version of MonsterInsights installed on your site.
|
438 |
"\t\t\t\t\t\t\t\t\t That's awesome!"
|
439 |
msgstr ""
|
440 |
|
441 |
+
#: includes/admin/reports/abstract-report.php:348
|
442 |
msgid "Do you you want to access to %s reporting right now%s in your WordPress Dashboard? That comes with %s level%s of our paid packages. To get instant access, you'll want to buy a MonsterInsights license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
|
443 |
msgstr ""
|
444 |
|
445 |
+
#: includes/admin/reports/abstract-report.php:350
|
446 |
msgid "Upgrading is easy! To upgrade, navigate to %sour pricing page%s, purchase the required license, and then follow the %sinstructions in the email receipt%s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: includes/admin/reports/abstract-report.php:358
|
450 |
+
#: languages/vue.php:1322
|
451 |
msgid "Upgrade Now"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: includes/admin/reports/abstract-report.php:395
|
455 |
msgid "Please ask your webmaster to enable this addon."
|
456 |
msgstr ""
|
457 |
|
458 |
#: includes/admin/reports/overview.php:34
|
459 |
+
#: languages/vue.php:209
|
460 |
msgid "Overview"
|
461 |
msgstr ""
|
462 |
|
516 |
msgid "SMTP (Simple Mail Transfer Protocol) is an industry standard for sending emails. SMTP helps increase email deliverability by using proper authentication"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: includes/admin/routes.php:301
|
520 |
+
msgid "Better Coming Soon & Maintenance Mode Pages"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: includes/admin/routes.php:310
|
524 |
+
msgid "Get More Traffic with Viral Giveaways"
|
525 |
+
msgstr ""
|
526 |
+
|
527 |
+
#: includes/admin/routes.php:319
|
528 |
+
msgid "Social Proof Notifications that Boost Sales"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: includes/admin/routes.php:437
|
532 |
msgid "Invalid UA code"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: includes/admin/routes.php:464
|
536 |
msgid "Please upload a valid .json file"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: includes/admin/routes.php:473
|
540 |
msgid "Please upload a file to import"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: includes/admin/routes.php:524
|
544 |
msgid "You don't have permission to view MonsterInsights reports."
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: includes/admin/routes.php:536
|
548 |
msgid "You can't view MonsterInsights reports because you are not licensed."
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: includes/admin/routes.php:537
|
552 |
msgid "Add your license"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: includes/admin/routes.php:544
|
556 |
msgid "You can't view MonsterInsights reports due to license key errors."
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: includes/admin/routes.php:552
|
560 |
msgid "You must authenticate with MonsterInsights before you can view reports."
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: includes/admin/routes.php:558
|
564 |
msgid "Unknown report. Try refreshing and retrying. Contact support if this issue persists."
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: includes/admin/routes.php:606
|
568 |
msgid "We encountered an error when fetching the report data."
|
569 |
msgstr ""
|
570 |
|
1672 |
msgid "Loading new report data..."
|
1673 |
msgstr ""
|
1674 |
|
1675 |
+
#: languages/vue.php:13
|
1676 |
msgid "Error"
|
1677 |
msgstr ""
|
1678 |
|
1679 |
+
#: languages/vue.php:16
|
1680 |
msgid "Please try again."
|
1681 |
msgstr ""
|
1682 |
|
1683 |
+
#: languages/vue.php:19
|
1684 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
1685 |
msgstr ""
|
1686 |
|
1687 |
+
#: languages/vue.php:22
|
1688 |
msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
|
1689 |
msgstr ""
|
1690 |
|
1691 |
+
#: languages/vue.php:25
|
1692 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
1693 |
msgstr ""
|
1694 |
|
1695 |
+
#: languages/vue.php:28
|
1696 |
msgid "Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions."
|
1697 |
msgstr ""
|
1698 |
|
1699 |
+
#: languages/vue.php:31
|
1700 |
msgid "See Your Top Landing Pages to Improve Enagement"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: languages/vue.php:34
|
1704 |
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
1705 |
msgstr ""
|
1706 |
|
1707 |
+
#: languages/vue.php:37
|
1708 |
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
1709 |
msgstr ""
|
1710 |
|
1711 |
+
#: languages/vue.php:40
|
1712 |
msgid "See Your Top Affiliate Links and Focus on what's working"
|
1713 |
msgstr ""
|
1714 |
|
1715 |
+
#: languages/vue.php:43
|
1716 |
msgid "See Your Top Downloads and Improve Conversions"
|
1717 |
msgstr ""
|
1718 |
|
1719 |
+
#: languages/vue.php:46
|
1720 |
msgid "See Audience Demographic Report ( Age / Gender / Interests )"
|
1721 |
msgstr ""
|
1722 |
|
1723 |
+
#: languages/vue.php:49
|
1724 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
1725 |
msgstr ""
|
1726 |
|
1727 |
+
#: languages/vue.php:52
|
1728 |
msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
|
1729 |
msgstr ""
|
1730 |
|
1731 |
+
#: languages/vue.php:55
|
1732 |
msgid "See Your Conversion Rate to Improve Funnel"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
+
#: languages/vue.php:58
|
1736 |
msgid "See The Number of Transactions and make data-driven decisions"
|
1737 |
msgstr ""
|
1738 |
|
1739 |
+
#: languages/vue.php:61
|
1740 |
msgid "See The Total Revenue to Track Growth"
|
1741 |
msgstr ""
|
1742 |
|
1743 |
+
#: languages/vue.php:64
|
1744 |
msgid "See Average Order Value to Find Offer Opportunities"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
+
#: languages/vue.php:67
|
1748 |
msgid "See Your Top Products to See Individual Performance"
|
1749 |
msgstr ""
|
1750 |
|
1751 |
+
#: languages/vue.php:70
|
1752 |
msgid "See Your Top Conversion Sources and Focus on what's working"
|
1753 |
msgstr ""
|
1754 |
|
1755 |
+
#: languages/vue.php:73
|
1756 |
msgid "See The Time it takes for Customers to Purchase"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
+
#: languages/vue.php:76
|
1760 |
msgid "See How Many Sessions are needed for a Purchase"
|
1761 |
msgstr ""
|
1762 |
|
1763 |
+
#: languages/vue.php:79
|
1764 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: languages/vue.php:82
|
1768 |
msgid "Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: languages/vue.php:85
|
1772 |
msgid "See Which Authors Generate the Most Traffic"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: languages/vue.php:88
|
1776 |
msgid "See Which Post Types Perform Better"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: languages/vue.php:91
|
1780 |
msgid "See Which Categories are the Most Popular"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: languages/vue.php:94
|
1784 |
msgid "See Your Blog's most populare SEO Scores"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: languages/vue.php:97
|
1788 |
msgid "See Which Focus Keyword is Performing Better in Search Engines"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: languages/vue.php:100
|
1792 |
msgid "Unlock the Forms Report and Improve Conversions"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
+
#: languages/vue.php:103
|
1796 |
msgid "Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data."
|
1797 |
msgstr ""
|
1798 |
|
1799 |
+
#: languages/vue.php:106
|
1800 |
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
1801 |
msgstr ""
|
1802 |
|
1803 |
+
#: languages/vue.php:109
|
1804 |
msgid "See Your Top Converting Forms and Optimize"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: languages/vue.php:112
|
1808 |
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: languages/vue.php:115
|
1812 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: languages/vue.php:118
|
1816 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
1817 |
msgstr ""
|
1818 |
|
1819 |
+
#: languages/vue.php:121
|
1820 |
msgid "See Your Top Google Search Terms and Optimize Content"
|
1821 |
msgstr ""
|
1822 |
|
1823 |
+
#: languages/vue.php:124
|
1824 |
msgid "See The Number of Clicks and Track Interests"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
+
#: languages/vue.php:127
|
1828 |
msgid "See The Click-Through-Ratio and Improve SEO"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
+
#: languages/vue.php:130
|
1832 |
msgid "See The Average Results Position and Focus on what works"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
+
#: languages/vue.php:133
|
1836 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
+
#: languages/vue.php:136
|
1840 |
msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it."
|
1841 |
msgstr ""
|
1842 |
|
1843 |
+
#: languages/vue.php:139
|
1844 |
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
+
#: languages/vue.php:142
|
1848 |
msgid "See Your Top Pages Immediately After Making Changes"
|
1849 |
msgstr ""
|
1850 |
|
1851 |
+
#: languages/vue.php:145
|
1852 |
msgid "See Your Top Referral Sources and Adapt Faster"
|
1853 |
msgstr ""
|
1854 |
|
1855 |
+
#: languages/vue.php:148
|
1856 |
msgid "See Your Traffic Demographics and "
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#: languages/vue.php:151
|
1860 |
msgid "Get Fresh Reports Data Every 60 Seconds"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
+
#: languages/vue.php:154
|
1864 |
msgid "Overview Report"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
+
#: languages/vue.php:157
|
1868 |
msgid "Loading Settings"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
+
#: languages/vue.php:160
|
1872 |
msgid "Saving Changes..."
|
1873 |
msgstr ""
|
1874 |
|
1875 |
+
#: languages/vue.php:163
|
1876 |
msgid "Settings Updated"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
+
#: languages/vue.php:166
|
1880 |
msgid "Could Not Save Changes"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: languages/vue.php:172
|
1884 |
msgid "Congratulations! "
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: languages/vue.php:175
|
1888 |
msgid "You Successfully Unlocked the most powerful Analytics plugin"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: languages/vue.php:178
|
1892 |
msgid "Publishers Report"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: languages/vue.php:181
|
1896 |
msgid "eCommerce Report"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: languages/vue.php:184
|
1900 |
msgid "Search Console Report"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: languages/vue.php:188
|
1904 |
msgid "Dimensions Report"
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: languages/vue.php:191
|
1908 |
msgid "Forms Report"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: languages/vue.php:194
|
1912 |
msgid "Real-Time Report"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: languages/vue.php:197
|
1916 |
msgid "Recommended Plugin: %s"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: languages/vue.php:200
|
1920 |
msgid "Install"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: languages/vue.php:203
|
1924 |
msgid "Activate"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: languages/vue.php:212
|
1928 |
#: lite/includes/admin/reports/report-publisher.php:22
|
1929 |
msgid "Publishers"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
+
#: languages/vue.php:215
|
1933 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
1934 |
msgid "eCommerce"
|
1935 |
msgstr ""
|
1936 |
|
1937 |
+
#: languages/vue.php:218
|
1938 |
#: lite/includes/admin/reports/report-queries.php:22
|
1939 |
msgid "Search Console"
|
1940 |
msgstr ""
|
1941 |
|
1942 |
+
#: languages/vue.php:221
|
1943 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
1944 |
msgid "Dimensions"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: languages/vue.php:224
|
1948 |
#: lite/includes/admin/reports/report-forms.php:22
|
1949 |
msgid "Forms"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
+
#: languages/vue.php:227
|
1953 |
msgid "Real-Time"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
+
#: languages/vue.php:230
|
1957 |
msgid "Loading settings"
|
1958 |
msgstr ""
|
1959 |
|
1960 |
+
#: languages/vue.php:236
|
1961 |
msgid "Getting Started"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
+
#: languages/vue.php:239
|
1965 |
msgid "Lite vs Pro"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
+
#: languages/vue.php:242
|
1969 |
msgid "General"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
+
#: languages/vue.php:245
|
1973 |
msgid "Engagement"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
+
#: languages/vue.php:248
|
1977 |
msgid "Publisher"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
+
#: languages/vue.php:251
|
1981 |
msgid "Conversions"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
+
#: languages/vue.php:254
|
1985 |
msgid "Advanced"
|
1986 |
msgstr ""
|
1987 |
|
1988 |
+
#: languages/vue.php:257
|
1989 |
msgid "URL Builder"
|
1990 |
msgstr ""
|
1991 |
|
1992 |
+
#: languages/vue.php:260
|
1993 |
msgid "Import Export"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
+
#: languages/vue.php:263
|
1997 |
msgid "Time to Purchase"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
+
#: languages/vue.php:266
|
2001 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
2002 |
msgstr ""
|
2003 |
|
2004 |
+
#: languages/vue.php:269
|
2005 |
msgid "Sessions to Purchase"
|
2006 |
msgstr ""
|
2007 |
|
2008 |
+
#: languages/vue.php:272
|
2009 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
2010 |
msgstr ""
|
2011 |
|
2012 |
+
#: languages/vue.php:275
|
2013 |
msgid "Top Posts/Pages"
|
2014 |
msgstr ""
|
2015 |
|
2016 |
+
#: languages/vue.php:278
|
2017 |
msgid "This list shows the most viewed posts and pages on your website."
|
2018 |
msgstr ""
|
2019 |
|
2020 |
+
#: languages/vue.php:281
|
2021 |
msgid "New vs. Returning Visitors"
|
2022 |
msgstr ""
|
2023 |
|
2024 |
+
#: languages/vue.php:284
|
2025 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: languages/vue.php:287
|
2029 |
msgid "Device Breakdown"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: languages/vue.php:290
|
2033 |
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."
|
2034 |
msgstr ""
|
2035 |
|
2036 |
+
#: languages/vue.php:293
|
2037 |
msgid "Top Landing Pages"
|
2038 |
msgstr ""
|
2039 |
|
2040 |
+
#: languages/vue.php:296
|
2041 |
msgid "This list shows the top pages users first land on when visiting your website."
|
2042 |
msgstr ""
|
2043 |
|
2044 |
+
#: languages/vue.php:299
|
2045 |
msgid "Top Exit Pages"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
+
#: languages/vue.php:302
|
2049 |
msgid "This list shows the top pages users exit your website from."
|
2050 |
msgstr ""
|
2051 |
|
2052 |
+
#: languages/vue.php:305
|
2053 |
msgid "Top Outbound Links"
|
2054 |
msgstr ""
|
2055 |
|
2056 |
+
#: languages/vue.php:308
|
2057 |
msgid "This list shows the top links clicked on your website that go to another website."
|
2058 |
msgstr ""
|
2059 |
|
2060 |
+
#: languages/vue.php:311
|
2061 |
msgid "Top Affiliate Links"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
+
#: languages/vue.php:314
|
2065 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
2066 |
msgstr ""
|
2067 |
|
2068 |
+
#: languages/vue.php:317
|
2069 |
msgid "Top Download Links"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
+
#: languages/vue.php:320
|
2073 |
msgid "This list shows the download links your visitors clicked the most."
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: languages/vue.php:323
|
2077 |
msgid "Top Products"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
+
#: languages/vue.php:326
|
2081 |
msgid "This list shows the top selling products on your website."
|
2082 |
msgstr ""
|
2083 |
|
2084 |
+
#: languages/vue.php:329
|
2085 |
msgid "Top Conversion Sources"
|
2086 |
msgstr ""
|
2087 |
|
2088 |
+
#: languages/vue.php:332
|
2089 |
msgid "This list shows the top referral websites in terms of product revenue."
|
2090 |
msgstr ""
|
2091 |
|
2092 |
+
#: languages/vue.php:335
|
2093 |
msgid "Total Add/Remove"
|
2094 |
msgstr ""
|
2095 |
|
2096 |
+
#: languages/vue.php:338
|
2097 |
msgid "Exit Setup"
|
2098 |
msgstr ""
|
2099 |
|
2100 |
+
#: languages/vue.php:341
|
2101 |
msgid "Yikes! PHP Update Required"
|
2102 |
msgstr ""
|
2103 |
|
2104 |
+
#: languages/vue.php:344
|
2105 |
msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%s), which could be putting your site at risk for being hacked. WordPress itself will stop supporting your PHP version in April, 2019. Updating to the recommended version (PHP %s) only takes a few minutes and will make your website significantly faster and more secure."
|
2106 |
msgstr ""
|
2107 |
|
2108 |
+
#: languages/vue.php:347
|
2109 |
msgid "Learn more about updating PHP"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
+
#: languages/vue.php:350
|
2113 |
msgid "Yikes! WordPress Update Required"
|
2114 |
msgstr ""
|
2115 |
|
2116 |
+
#: languages/vue.php:353
|
2117 |
msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: languages/vue.php:356
|
2121 |
msgid "Learn more about updating WordPress"
|
2122 |
msgstr ""
|
2123 |
|
2124 |
+
#: languages/vue.php:359
|
2125 |
msgid "Powered by MonsterInsights"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
+
#: languages/vue.php:362
|
2129 |
msgid "Save Changes"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
+
#: languages/vue.php:365
|
2133 |
msgid "New"
|
2134 |
msgstr ""
|
2135 |
|
2136 |
+
#: languages/vue.php:368
|
2137 |
msgid "Returning"
|
2138 |
msgstr ""
|
2139 |
|
2140 |
+
#: languages/vue.php:371
|
2141 |
msgid "Desktop"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
+
#: languages/vue.php:374
|
2145 |
msgid "Tablet"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
+
#: languages/vue.php:377
|
2149 |
msgid "Mobile"
|
2150 |
msgstr ""
|
2151 |
|
2152 |
+
#: languages/vue.php:380
|
2153 |
msgid "Sessions"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: languages/vue.php:383
|
2157 |
msgid "Unique %s Sessions"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: languages/vue.php:386
|
2161 |
msgid "Pageviews"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: languages/vue.php:389
|
2165 |
msgid "Unique %s Pageviews"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: languages/vue.php:392
|
2169 |
msgid "Avg. Session Duration"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: languages/vue.php:395
|
2173 |
msgid "Bounce Rate"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: languages/vue.php:398
|
2177 |
msgid "Top 10 Countries"
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: languages/vue.php:401
|
2181 |
msgid "View Countries Report"
|
2182 |
msgstr ""
|
2183 |
|
2184 |
+
#: languages/vue.php:404
|
2185 |
msgid "Top 10 Referrals"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: languages/vue.php:407
|
2189 |
msgid "View All Referral Sources"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: languages/vue.php:410
|
2193 |
msgid "View Full Posts/Pages Report"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: languages/vue.php:413
|
2197 |
msgid "A session is the browsing session of a single user to your site."
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: languages/vue.php:416
|
2201 |
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."
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: languages/vue.php:419
|
2205 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: languages/vue.php:422
|
2209 |
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."
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: languages/vue.php:425
|
2213 |
msgid "This list shows the top countries your website visitors are from."
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: languages/vue.php:428
|
2217 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: languages/vue.php:431
|
2221 |
msgid "MonsterInsights Addons"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: languages/vue.php:434
|
2225 |
msgid "Search Addons"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: languages/vue.php:438
|
2229 |
msgid "Yes (recommended) %s- Get the latest features, bugfixes, and security updates as they are released.%s"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: languages/vue.php:442
|
2233 |
msgid "Minor only %s- Get bugfixes and security updates, but not major features.%s"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: languages/vue.php:446
|
2237 |
msgid "None %s- Manually update everything.%s"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: languages/vue.php:449
|
2241 |
msgid "License Key"
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: languages/vue.php:452
|
2245 |
msgid "Google Authentication"
|
2246 |
msgstr ""
|
2247 |
|
2249 |
msgid "Connect Google Analytics + WordPress"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: languages/vue.php:458
|
2253 |
msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: languages/vue.php:462
|
2257 |
msgid "Automatic Updates"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
+
#: languages/vue.php:465
|
2261 |
msgid "Setup Wizard"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: languages/vue.php:468
|
2265 |
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
2266 |
msgstr ""
|
2267 |
|
2268 |
+
#: languages/vue.php:471
|
2269 |
msgid "Launch Setup Wizard"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: languages/vue.php:474
|
2273 |
msgid "Path (example: %s)"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
+
#: languages/vue.php:477
|
2277 |
msgid "Path has to start with a / and have no spaces"
|
2278 |
msgstr ""
|
2279 |
|
2280 |
+
#: languages/vue.php:480
|
2281 |
msgid "Label (example: %s)"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: languages/vue.php:483
|
2285 |
msgid "Label can't contain any spaces"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: languages/vue.php:486
|
2289 |
msgid "Affiliate Links"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: languages/vue.php:489
|
2293 |
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 %shere%s."
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: languages/vue.php:492
|
2297 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: languages/vue.php:495
|
2301 |
msgid "Demographics"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: languages/vue.php:498
|
2305 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: languages/vue.php:501
|
2309 |
msgid "Anonymize IP Addresses"
|
2310 |
msgstr ""
|
2311 |
|
2312 |
+
#: languages/vue.php:504
|
2313 |
msgid "Link Attribution"
|
2314 |
msgstr ""
|
2315 |
|
2316 |
+
#: languages/vue.php:507
|
2317 |
msgid "Enable Enhanced Link Attribution"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
+
#: languages/vue.php:510
|
2321 |
msgid "Enable Anchor Tracking"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
+
#: languages/vue.php:513
|
2325 |
msgid "Enable allowAnchor"
|
2326 |
msgstr ""
|
2327 |
|
2328 |
+
#: languages/vue.php:516
|
2329 |
msgid "Enable allowLinker"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: languages/vue.php:519
|
2333 |
msgid "Enable Tag Links in RSS"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: languages/vue.php:522
|
2337 |
msgid "File Downloads"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: languages/vue.php:525
|
2341 |
msgid "Extensions of Files to Track as Downloads"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
+
#: languages/vue.php:528
|
2345 |
msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
|
2346 |
msgstr ""
|
2347 |
|
2348 |
+
#: languages/vue.php:531
|
2349 |
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 %sknowledge base%s. For more information about Remarketing, we refer you to %sGoogle's documentation%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."
|
2350 |
msgstr ""
|
2351 |
|
2352 |
+
#: languages/vue.php:534
|
2353 |
msgid "This adds %sanonymizeIp%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."
|
2354 |
msgstr ""
|
2355 |
|
2356 |
+
#: languages/vue.php:537
|
2357 |
msgid "Add %sEnhanced Link Attribution%s to your tracking code."
|
2358 |
msgstr ""
|
2359 |
|
2360 |
+
#: languages/vue.php:540
|
2361 |
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."
|
2362 |
msgstr ""
|
2363 |
|
2364 |
+
#: languages/vue.php:543
|
2365 |
msgid "This adds %sallowAnchor%s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
|
2366 |
msgstr ""
|
2367 |
|
2368 |
+
#: languages/vue.php:546
|
2369 |
msgid "Enabling %scross-domain tracking (additional setup required)%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."
|
2370 |
msgstr ""
|
2371 |
|
2372 |
+
#: languages/vue.php:549
|
2373 |
msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %shelp page%s for info on how to enable this feature in FeedBurner."
|
2374 |
msgstr ""
|
2375 |
|
2376 |
+
#: languages/vue.php:552
|
2377 |
msgid "Add domain"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
+
#: languages/vue.php:555
|
2381 |
msgid "Domain (example: %s)"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: languages/vue.php:558
|
2385 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: languages/vue.php:561
|
2389 |
msgid "Cross Domain Tracking"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: languages/vue.php:564
|
2393 |
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 %sknowledge base%s."
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: languages/vue.php:567
|
2397 |
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 %sGeneral%s tab."
|
2398 |
msgstr ""
|
2399 |
|
2400 |
+
#: languages/vue.php:570
|
2401 |
msgid "Permissions"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
+
#: languages/vue.php:573
|
2405 |
msgid "Allow These User Roles to See Reports"
|
2406 |
msgstr ""
|
2407 |
|
2408 |
+
#: languages/vue.php:576
|
2409 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: languages/vue.php:579
|
2413 |
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."
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: languages/vue.php:582
|
2417 |
msgid "Allow These User Roles to Save Settings"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
+
#: languages/vue.php:585
|
2421 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
2422 |
msgstr ""
|
2423 |
|
2424 |
+
#: languages/vue.php:588
|
2425 |
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."
|
2426 |
msgstr ""
|
2427 |
|
2428 |
+
#: languages/vue.php:591
|
2429 |
msgid "Exclude These User Roles From Tracking"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: languages/vue.php:594
|
2433 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: languages/vue.php:597
|
2437 |
msgid "Performance"
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: languages/vue.php:600
|
2441 |
msgid "Custom code"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: languages/vue.php:603
|
2445 |
msgid "Not for the average user: this allows you to add a line of code, to be added before the %spageview is sent%s."
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: languages/vue.php:609
|
2449 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: languages/vue.php:612
|
2453 |
msgid "Hide Admin Bar Reports"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: languages/vue.php:615
|
2457 |
msgid "Enabled %s- Show reports and dashboard widget.%s"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: languages/vue.php:618
|
2461 |
msgid "Dashboard Widget Only %s- Disable reports, but show dashboard widget.%s"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: languages/vue.php:621
|
2465 |
msgid "Disabled %s- Hide reports and dashboard widget.%s"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: languages/vue.php:624
|
2469 |
msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visit, so you can analyze and optimize it for higher conversions."
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: languages/vue.php:627
|
2473 |
msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: languages/vue.php:630
|
2477 |
msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: languages/vue.php:633
|
2481 |
msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
|
2482 |
msgstr ""
|
2483 |
|
2484 |
+
#: languages/vue.php:636
|
2485 |
msgid "Yup, we know a thing or two about building awesome products that customer love."
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: languages/vue.php:639
|
2489 |
msgid "The MonsterInsights Team: Syed, Chris, Jay, Mircea, Sunita and Basanta"
|
2490 |
msgstr ""
|
2491 |
|
2492 |
+
#: languages/vue.php:642
|
2493 |
msgid "Import/Export"
|
2494 |
msgstr ""
|
2495 |
|
2496 |
+
#: languages/vue.php:645
|
2497 |
msgid "Import"
|
2498 |
msgstr ""
|
2499 |
|
2500 |
+
#: languages/vue.php:648
|
2501 |
msgid "Import settings from another MonsterInsights website."
|
2502 |
msgstr ""
|
2503 |
|
2504 |
+
#: languages/vue.php:651
|
2505 |
msgid "Export"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
+
#: languages/vue.php:654
|
2509 |
msgid "Export settings to import into another MonsterInsights install."
|
2510 |
msgstr ""
|
2511 |
|
2512 |
+
#: languages/vue.php:657
|
2513 |
msgid "Import Settings"
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: languages/vue.php:660
|
2517 |
msgid "Export Settings"
|
2518 |
msgstr ""
|
2519 |
|
2520 |
+
#: languages/vue.php:663
|
2521 |
msgid "Please choose a file to import"
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: languages/vue.php:666
|
2525 |
msgid "Use the filepicker below to select the settings export file from another site."
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: languages/vue.php:669
|
2529 |
msgid "Use the button below to export a file with your MonsterInsights settings."
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: languages/vue.php:672
|
2533 |
msgid "Uploading file..."
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: languages/vue.php:675
|
2537 |
msgid "File imported"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
+
#: languages/vue.php:678
|
2541 |
msgid "Settings successfully updated!"
|
2542 |
msgstr ""
|
2543 |
|
2544 |
+
#: languages/vue.php:681
|
2545 |
msgid "Error importing settings"
|
2546 |
msgstr ""
|
2547 |
|
2548 |
+
#: languages/vue.php:684
|
2549 |
msgid "Please choose a .json file generated by a MonsterInsights settings export."
|
2550 |
msgstr ""
|
2551 |
|
2552 |
+
#: languages/vue.php:687
|
2553 |
msgid "Ok"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
+
#: languages/vue.php:690
|
2557 |
msgid "Custom Campaign Parameters"
|
2558 |
msgstr ""
|
2559 |
|
2560 |
+
#: languages/vue.php:693
|
2561 |
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
2562 |
msgstr ""
|
2563 |
|
2564 |
+
#: languages/vue.php:696
|
2565 |
msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the urls that are the most effective in attracting users to your content."
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: languages/vue.php:699
|
2569 |
msgid "Website URL %s"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: languages/vue.php:702
|
2573 |
msgid "The full website URL (e.g. %s %s%s)"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: languages/vue.php:705
|
2577 |
msgid "Campaign Source %s"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: languages/vue.php:708
|
2581 |
msgid "Enter a referrer (e.g. %sfacebook, newsletter, google%s)"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: languages/vue.php:711
|
2585 |
msgid "Enter a marketing medium (e.g. %scpc, banner, email%s)"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: languages/vue.php:714
|
2589 |
msgid "Enter a name to easily identify (e.g. %sspring_sale%s)"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: languages/vue.php:717
|
2593 |
msgid "Enter the paid keyword"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: languages/vue.php:720
|
2597 |
msgid "Enter something to differentiate ads"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: languages/vue.php:723
|
2601 |
msgid "Use Fragment"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: languages/vue.php:726
|
2605 |
msgid "Set the parameters in the fragment portion of the URL %s(not recommended)%s"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: languages/vue.php:729
|
2609 |
msgid "URL to use"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: languages/vue.php:732
|
2613 |
msgid "Updates automatically"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: languages/vue.php:735
|
2617 |
msgid "Copy to clipboard"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: languages/vue.php:738
|
2621 |
msgid "More Information & Examples"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: languages/vue.php:741
|
2625 |
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: languages/vue.php:744
|
2629 |
msgid "Campaign Source"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: languages/vue.php:747
|
2633 |
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
2634 |
msgstr ""
|
2635 |
|
2636 |
+
#: languages/vue.php:750
|
2637 |
msgid "Campaign Medium"
|
2638 |
msgstr ""
|
2639 |
|
2640 |
+
#: languages/vue.php:753
|
2641 |
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
2642 |
msgstr ""
|
2643 |
|
2644 |
+
#: languages/vue.php:756
|
2645 |
msgid "Campaign Name"
|
2646 |
msgstr ""
|
2647 |
|
2648 |
+
#: languages/vue.php:759
|
2649 |
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
2650 |
msgstr ""
|
2651 |
|
2652 |
+
#: languages/vue.php:762
|
2653 |
msgid "Campaign Term"
|
2654 |
msgstr ""
|
2655 |
|
2656 |
+
#: languages/vue.php:765
|
2657 |
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
2658 |
msgstr ""
|
2659 |
|
2660 |
+
#: languages/vue.php:768
|
2661 |
msgid "Campaign Content"
|
2662 |
msgstr ""
|
2663 |
|
2664 |
+
#: languages/vue.php:771
|
2665 |
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
2666 |
msgstr ""
|
2667 |
|
2668 |
+
#: languages/vue.php:774
|
2669 |
msgid "Example: %s"
|
2670 |
msgstr ""
|
2671 |
|
2672 |
+
#: languages/vue.php:777
|
2673 |
msgid "Examples: %s"
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: languages/vue.php:780
|
2677 |
msgid "About Campaigns"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
+
#: languages/vue.php:783
|
2681 |
msgid "About Custom Campaigns"
|
2682 |
msgstr ""
|
2683 |
|
2684 |
+
#: languages/vue.php:786
|
2685 |
msgid "Best practices for creating Custom Campaigns"
|
2686 |
msgstr ""
|
2687 |
|
2688 |
+
#: languages/vue.php:789
|
2689 |
msgid "About the Referral Traffic report"
|
2690 |
msgstr ""
|
2691 |
|
2692 |
+
#: languages/vue.php:792
|
2693 |
msgid "About traffic source dimensions"
|
2694 |
msgstr ""
|
2695 |
|
2696 |
+
#: languages/vue.php:795
|
2697 |
msgid "AdWords Auto-Tagging"
|
2698 |
msgstr ""
|
2699 |
|
2700 |
+
#: languages/vue.php:798
|
2701 |
msgid "Additional Information"
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: languages/vue.php:801
|
2705 |
msgid "GDPR Guide"
|
2706 |
msgstr ""
|
2707 |
|
2708 |
+
#: languages/vue.php:804
|
2709 |
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. "
|
2710 |
msgstr ""
|
2711 |
|
2712 |
+
#: languages/vue.php:807
|
2713 |
msgid "How to install and activate MonsterInsights addons"
|
2714 |
msgstr ""
|
2715 |
|
2716 |
+
#: languages/vue.php:810
|
2717 |
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."
|
2718 |
msgstr ""
|
2719 |
|
2720 |
+
#: languages/vue.php:813
|
2721 |
msgid "Enabling eCommerce Tracking and Reports"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
+
#: languages/vue.php:816
|
2725 |
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."
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: languages/vue.php:819
|
2729 |
msgid "Read Documentation"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
+
#: languages/vue.php:822
|
2733 |
msgid "Getting Started with MonsterInsights"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
+
#: languages/vue.php:825
|
2737 |
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."
|
2738 |
msgstr ""
|
2739 |
|
2740 |
+
#: languages/vue.php:828
|
2741 |
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."
|
2742 |
msgstr ""
|
2743 |
|
2744 |
+
#: languages/vue.php:831
|
2745 |
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!."
|
2746 |
msgstr ""
|
2747 |
|
2748 |
+
#: languages/vue.php:834
|
2749 |
msgid "Launch the wizard!"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
+
#: languages/vue.php:837
|
2753 |
msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
|
2754 |
msgstr ""
|
2755 |
|
2756 |
+
#: languages/vue.php:840
|
2757 |
msgid "Thanks for being a loyal MonsterInsights Lite user. %sUpgrade to MonsterInsights Pro%s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
+
#: languages/vue.php:843
|
2761 |
msgid "Universal Tracking across devices and campaigns with just a few clicks."
|
2762 |
msgstr ""
|
2763 |
|
2764 |
+
#: languages/vue.php:846
|
2765 |
msgid "See your website analytics reports inside the WordPress dashboard"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
+
#: languages/vue.php:849
|
2769 |
msgid "Get real-time stats right inside WordPress"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
+
#: languages/vue.php:852
|
2773 |
msgid "1-click Google Analytics Enhanced Ecommerce tracking"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
+
#: languages/vue.php:855
|
2777 |
msgid "Get detailed stats for each post and page."
|
2778 |
msgstr ""
|
2779 |
|
2780 |
+
#: languages/vue.php:858
|
2781 |
msgid "Automatically track clicks on your affiliate links and ads."
|
2782 |
msgstr ""
|
2783 |
|
2784 |
+
#: languages/vue.php:861
|
2785 |
msgid "Make Google Analytics GDPR compliant automatically"
|
2786 |
msgstr ""
|
2787 |
|
2788 |
+
#: languages/vue.php:864
|
2789 |
msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
|
2790 |
msgstr ""
|
2791 |
|
2792 |
+
#: languages/vue.php:867
|
2793 |
msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
|
2794 |
msgstr ""
|
2795 |
|
2796 |
+
#: languages/vue.php:870
|
2797 |
msgid "More advanced features"
|
2798 |
msgstr ""
|
2799 |
|
2800 |
+
#: languages/vue.php:873
|
2801 |
msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
|
2802 |
msgstr ""
|
2803 |
|
2804 |
+
#: languages/vue.php:876
|
2805 |
msgid "Bonus: MonsterInsights Lite users get %s50%% off regular price%s, automatically applied at checkout."
|
2806 |
msgstr ""
|
2807 |
|
2808 |
+
#: languages/vue.php:879
|
2809 |
msgid "How to Connect to Google Analytics"
|
2810 |
msgstr ""
|
2811 |
|
2812 |
+
#: languages/vue.php:882
|
2813 |
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."
|
2814 |
msgstr ""
|
2815 |
|
2816 |
+
#: languages/vue.php:885
|
2817 |
msgid "Guide and Checklist for Advanced Insights"
|
2818 |
msgstr ""
|
2819 |
|
2820 |
+
#: languages/vue.php:888
|
2821 |
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."
|
2822 |
msgstr ""
|
2823 |
|
2824 |
+
#: languages/vue.php:891
|
2825 |
msgid "WordPress Admin Area Reports"
|
2826 |
msgstr ""
|
2827 |
|
2828 |
+
#: languages/vue.php:894
|
2829 |
msgid "Standard Reports"
|
2830 |
msgstr ""
|
2831 |
|
2832 |
+
#: languages/vue.php:897
|
2833 |
msgid "Overview Reports for the last 30 days."
|
2834 |
msgstr ""
|
2835 |
|
2836 |
+
#: languages/vue.php:900
|
2837 |
msgid "Advanced Reports"
|
2838 |
msgstr ""
|
2839 |
|
2840 |
+
#: languages/vue.php:903
|
2841 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: languages/vue.php:906
|
2845 |
msgid "Dashboard Widget"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: languages/vue.php:909
|
2849 |
msgid "Basic Widget"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: languages/vue.php:912
|
2853 |
msgid "Overview Report Synopsis"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
+
#: languages/vue.php:915
|
2857 |
msgid "Advanced Dashboard Widget"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
+
#: languages/vue.php:918
|
2861 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
+
#: languages/vue.php:921
|
2865 |
msgid "Publisher Reports"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
+
#: languages/vue.php:924
|
2869 |
msgid "Advanced Publisher Reports & Tracking"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: languages/vue.php:927
|
2873 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: languages/vue.php:930
|
2877 |
msgid "Custom Dimensions"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: languages/vue.php:933
|
2881 |
msgid "Not Available"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: languages/vue.php:936
|
2885 |
msgid "Complete Custom Dimensions Tracking"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: languages/vue.php:939
|
2889 |
msgid "Track and measure by the Author, Post Type, Category, Tags, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: languages/vue.php:945
|
2893 |
msgid "Limited support"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: languages/vue.php:948
|
2897 |
msgid "Priority Support"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
+
#: languages/vue.php:951
|
2901 |
msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: languages/vue.php:954
|
2905 |
msgid "Feature"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: languages/vue.php:957
|
2909 |
msgid "Lite"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: languages/vue.php:960
|
2913 |
msgid "Pro"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: languages/vue.php:963
|
2917 |
msgid "Universal Tracking"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: languages/vue.php:966
|
2921 |
msgid "Included"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: languages/vue.php:969
|
2925 |
msgid "Custom Google Analytics Link Tracking"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: languages/vue.php:972
|
2929 |
msgid "Standard Tracking"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: languages/vue.php:975
|
2933 |
msgid "Advanced Tracking"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: languages/vue.php:978
|
2937 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: languages/vue.php:981
|
2941 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: languages/vue.php:984
|
2945 |
msgid "No-Code-Needed Tracking Features"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: languages/vue.php:987
|
2949 |
msgid "Basic Tracking Options"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: languages/vue.php:990
|
2953 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: languages/vue.php:993
|
2957 |
msgid "Advanced Tracking Options"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: languages/vue.php:996
|
2961 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: languages/vue.php:999
|
2965 |
msgid "eCommerce Tracking"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: languages/vue.php:1002
|
2969 |
msgid "One-click Complete eCommerce tracking"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: languages/vue.php:1005
|
2973 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: languages/vue.php:1008
|
2977 |
msgid "Forms Tracking"
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: languages/vue.php:1011
|
2981 |
msgid "One-click Form Events Tracking"
|
2982 |
msgstr ""
|
2983 |
|
2984 |
+
#: languages/vue.php:1014
|
2985 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
2986 |
msgstr ""
|
2987 |
|
2988 |
+
#: languages/vue.php:1017
|
2989 |
msgid "MonsterInsights Recommends WPForms"
|
2990 |
msgstr ""
|
2991 |
|
2992 |
+
#: languages/vue.php:1020
|
2993 |
msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
|
2994 |
msgstr ""
|
2995 |
|
2996 |
+
#: languages/vue.php:1023
|
2997 |
msgid "Used on over 1,000,000 websites!"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
+
#: languages/vue.php:1026
|
3001 |
msgid "WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
+
#: languages/vue.php:1029
|
3005 |
msgid "Skip this Step"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: languages/vue.php:1032
|
3009 |
msgid "Continue & Install WPForms"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: languages/vue.php:1035
|
3013 |
msgid "Installing..."
|
3014 |
msgstr ""
|
3015 |
|
3016 |
+
#: languages/vue.php:1038
|
3017 |
msgid "Awesome, You're All Set!"
|
3018 |
msgstr ""
|
3019 |
|
3020 |
+
#: languages/vue.php:1041
|
3021 |
msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
3022 |
msgstr ""
|
3023 |
|
3024 |
+
#: languages/vue.php:1044
|
3025 |
msgid "%sPlease Note:%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."
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: languages/vue.php:1047
|
3029 |
msgid "%sSubscribe to the MonsterInsights blog%s for tips on how to get more traffic and grow your business."
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: languages/vue.php:1050
|
3033 |
msgid "Finish Setup & Exit Wizard"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: languages/vue.php:1053
|
3037 |
msgid "Checking your website..."
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: languages/vue.php:1056
|
3041 |
msgid "Recommended Settings"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: languages/vue.php:1059
|
3045 |
msgid "MonsterInsights recommends the following settings based on your configuration."
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: languages/vue.php:1062
|
3049 |
msgid "Events Tracking"
|
3050 |
msgstr ""
|
3051 |
|
3052 |
+
#: languages/vue.php:1065
|
3053 |
msgid "Must have for all click tracking on site."
|
3054 |
msgstr ""
|
3055 |
|
3056 |
+
#: languages/vue.php:1068
|
3057 |
msgid "MonsterInsights uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
|
3058 |
msgstr ""
|
3059 |
|
3060 |
+
#: languages/vue.php:1071
|
3061 |
msgid "Enhanced Link Attribution"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
+
#: languages/vue.php:1074
|
3065 |
msgid "Improves the accuracy of your In-Page Analytics."
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: languages/vue.php:1077
|
3069 |
msgid "MonsterInsights will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: languages/vue.php:1080
|
3073 |
msgid "Install Updates Automatically"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: languages/vue.php:1083
|
3077 |
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: languages/vue.php:1086
|
3081 |
msgid "To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
|
3082 |
msgstr ""
|
3083 |
|
3084 |
+
#: languages/vue.php:1089
|
3085 |
msgid "File Download Tracking"
|
3086 |
msgstr ""
|
3087 |
|
3088 |
+
#: languages/vue.php:1092
|
3089 |
msgid "Helps you see file downloads data."
|
3090 |
msgstr ""
|
3091 |
|
3092 |
+
#: languages/vue.php:1095
|
3093 |
msgid "MonsterInsights will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
|
3094 |
msgstr ""
|
3095 |
|
3096 |
+
#: languages/vue.php:1098
|
3097 |
msgid "Helps you increase affiliate revenue."
|
3098 |
msgstr ""
|
3099 |
|
3100 |
+
#: languages/vue.php:1101
|
3101 |
msgid "MonsterInsights will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
|
3102 |
msgstr ""
|
3103 |
|
3104 |
+
#: languages/vue.php:1104
|
3105 |
msgid "Affiliate Link Tracking"
|
3106 |
msgstr ""
|
3107 |
|
3108 |
+
#: languages/vue.php:1107
|
3109 |
msgid "Who Can See Reports"
|
3110 |
msgstr ""
|
3111 |
|
3112 |
+
#: languages/vue.php:1110
|
3113 |
msgid "These user roles will be able to access MonsterInsights's reports in the WordPress admin area."
|
3114 |
msgstr ""
|
3115 |
|
3116 |
+
#: languages/vue.php:1113
|
3117 |
msgid "Save and continue"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: languages/vue.php:1116
|
3121 |
msgid "Events Tracking is enabled the moment you set up MonsterInsights"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: languages/vue.php:1119
|
3125 |
msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: languages/vue.php:1122
|
3129 |
msgid "Connect MonsterInsights to Your Website"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
+
#: languages/vue.php:1125
|
3133 |
msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
|
3134 |
msgstr ""
|
3135 |
|
3136 |
+
#: languages/vue.php:1128
|
3137 |
msgid "vs. Previous Day"
|
3138 |
msgstr ""
|
3139 |
|
3140 |
+
#: languages/vue.php:1131
|
3141 |
msgid "No change"
|
3142 |
msgstr ""
|
3143 |
|
3144 |
+
#: languages/vue.php:1134
|
3145 |
msgid "Show"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
+
#: languages/vue.php:1137
|
3149 |
msgid "Right Now"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: languages/vue.php:1140
|
3153 |
msgid "Active users on site"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: languages/vue.php:1143
|
3157 |
msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: languages/vue.php:1146
|
3161 |
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."
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: languages/vue.php:1149
|
3165 |
msgid "The real-time report automatically updates approximately every 60 seconds."
|
3166 |
msgstr ""
|
3167 |
|
3168 |
+
#: languages/vue.php:1152
|
3169 |
msgid "The real-time report was last updated %s seconds ago."
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: languages/vue.php:1155
|
3173 |
msgid "The latest data will be automatically shown on this page when it becomes available."
|
3174 |
msgstr ""
|
3175 |
|
3176 |
+
#: languages/vue.php:1158
|
3177 |
msgid "There is no need to refresh the browser (doing so won't have any effect)."
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: languages/vue.php:1161
|
3181 |
msgid "Pageviews Per Minute"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
+
#: languages/vue.php:1164
|
3185 |
msgid "Top Pages"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
+
#: languages/vue.php:1167
|
3189 |
msgid "No pageviews currently."
|
3190 |
msgstr ""
|
3191 |
|
3192 |
+
#: languages/vue.php:1170
|
3193 |
msgid "Page"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
+
#: languages/vue.php:1173
|
3197 |
msgid "Pageview Count"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: languages/vue.php:1176
|
3201 |
msgid "Percent of Total"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
+
#: languages/vue.php:1179
|
3205 |
msgid "This is the number of active users currently on your site."
|
3206 |
msgstr ""
|
3207 |
|
3208 |
+
#: languages/vue.php:1182
|
3209 |
msgid "This graph shows the number of pageviews for each of the last 30 minutes."
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: languages/vue.php:1185
|
3213 |
msgid "This list shows the top pages users are currently viewing on your site."
|
3214 |
msgstr ""
|
3215 |
|
3216 |
+
#: languages/vue.php:1188
|
3217 |
msgid "View All Real-Time Pageviews"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
+
#: languages/vue.php:1191
|
3221 |
msgid "View All Real-Time Traffic Sources"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
+
#: languages/vue.php:1194
|
3225 |
msgid "View All Real-Time Traffic by Country"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: languages/vue.php:1197
|
3229 |
msgid "View All Real-Time Traffic by City"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: languages/vue.php:1200
|
3233 |
msgid "Welcome to MonsterInsights!"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: languages/vue.php:1203
|
3237 |
msgid "Let's get you set up."
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: languages/vue.php:1206
|
3241 |
msgid "Save and Continue"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: languages/vue.php:1209
|
3245 |
msgid "Which category best describes your website?"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: languages/vue.php:1212
|
3249 |
msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: languages/vue.php:1215
|
3253 |
msgid "Business Website"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: languages/vue.php:1218
|
3257 |
msgid "Publisher %s(Blog)%s"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
+
#: languages/vue.php:1221
|
3261 |
msgid "Ecommerce"
|
3262 |
msgstr ""
|
3263 |
|
3264 |
+
#: languages/vue.php:1224
|
3265 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
3266 |
msgstr ""
|
3267 |
|
3268 |
+
#: languages/vue.php:1227
|
3269 |
msgid "Google Optimize"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
+
#: languages/vue.php:1230
|
3273 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
3274 |
msgstr ""
|
3275 |
|
3276 |
+
#: languages/vue.php:1233
|
3277 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
+
#: languages/vue.php:1236
|
3281 |
msgid "Your license key for MonsterInsights has expired. %sPlease click here to renew your license key.%s"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
+
#: languages/vue.php:1247
|
3285 |
#: lite/includes/admin/helpers.php:83
|
3286 |
msgid "Upgrade to MonsterInsights Pro"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: languages/vue.php:1250
|
3290 |
msgid "Show in widget mode"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: languages/vue.php:1253
|
3294 |
msgid "Show in full-width mode"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: languages/vue.php:1256
|
3298 |
msgid "Last 30 Days Insights for:"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: languages/vue.php:1259
|
3302 |
msgid "Your Website"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: languages/vue.php:1262
|
3306 |
msgid "Avg. Duration"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: languages/vue.php:1265
|
3310 |
msgid "More data is available"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
+
#: languages/vue.php:1268
|
3314 |
msgid "Want to see page-specific stats?"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: languages/vue.php:1271
|
3318 |
msgid "Can't load settings. Error: %s, %s"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: languages/vue.php:1274
|
3322 |
msgid "You appear to be offline."
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: languages/vue.php:1277
|
3326 |
msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %sLearn More%s"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
+
#: languages/vue.php:1280
|
3330 |
msgid "In order for the MonsterInsights Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %s%s Plugin%s | %sLearn More%s"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: languages/vue.php:1283
|
3334 |
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. %sLearn More%s"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
+
#: languages/vue.php:1286
|
3338 |
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. %s%s Plugin%s | %sLearn More%s"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
+
#: languages/vue.php:1289
|
3342 |
msgid "Recommended Addons"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
+
#: languages/vue.php:1292
|
3346 |
msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
+
#: languages/vue.php:1295
|
3350 |
msgid "Other Addons"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
+
#: languages/vue.php:1298
|
3354 |
msgid "View all MonsterInsights addons"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
+
#: languages/vue.php:1301
|
3358 |
msgid "Deactivating..."
|
3359 |
msgstr ""
|
3360 |
|
3361 |
+
#: languages/vue.php:1304
|
3362 |
msgid "Deactivate"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
+
#: languages/vue.php:1307
|
3366 |
msgid "Status: %s"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
#: languages/vue.php:1310
|
3370 |
msgid "Not Installed"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
+
#: languages/vue.php:1313
|
3374 |
msgid "Network Active"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
+
#: languages/vue.php:1316
|
3378 |
msgid "Active"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
+
#: languages/vue.php:1319
|
3382 |
msgid "Inactive"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
+
#: languages/vue.php:1325
|
3386 |
msgid "Activating..."
|
3387 |
msgstr ""
|
3388 |
|
3389 |
+
#: languages/vue.php:1328
|
3390 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
3391 |
msgstr ""
|
3392 |
|
3393 |
+
#: languages/vue.php:1331
|
3394 |
msgid "No addons found."
|
3395 |
msgstr ""
|
3396 |
|
3397 |
+
#: languages/vue.php:1334
|
3398 |
msgid "Refresh Addons"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
+
#: languages/vue.php:1337
|
3402 |
msgid "Refreshing Addons"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: languages/vue.php:1340
|
3406 |
msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %sreceive 50%% off%s, automatically applied at checkout!"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
+
#: languages/vue.php:1343
|
3410 |
msgid "See All Your Important Store Metrics in One Place"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
+
#: languages/vue.php:1346
|
3414 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
+
#: languages/vue.php:1349
|
3418 |
msgid "ONE-CLICK INTEGRATIONS"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
+
#: languages/vue.php:1352
|
3422 |
msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
+
#: languages/vue.php:1355
|
3426 |
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."
|
3427 |
msgstr ""
|
3428 |
|
3429 |
+
#: languages/vue.php:1358
|
3430 |
msgid "Upgrade to Pro and unlock addons and other great features. %sSave 50%% automatically!%s"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
#: languages/vue.php:1361
|
3434 |
msgid "Add your MonsterInsights license key from the email receipt or account area. %sRetrieve your license key%s."
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: languages/vue.php:1365
|
3438 |
msgid "Miscellaneous"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: languages/vue.php:1369
|
3442 |
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
3443 |
msgstr ""
|
3444 |
|
3445 |
+
#: languages/vue.php:1373
|
3446 |
msgid "Hide Announcements"
|
3447 |
msgstr ""
|
3448 |
|
3449 |
+
#: languages/vue.php:1376
|
3450 |
msgid "Show Overview Reports"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
+
#: languages/vue.php:1379
|
3454 |
msgid "Show Publishers Reports"
|
3455 |
msgstr ""
|
3456 |
|
3457 |
+
#: languages/vue.php:1382
|
3458 |
msgid "Show eCommerce Reports"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
+
#: languages/vue.php:1385
|
3462 |
msgid "Available in PRO version"
|
3463 |
msgstr ""
|
3464 |
|
3465 |
+
#: languages/vue.php:1388
|
3466 |
msgid "No options available"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
#: languages/vue.php:1391
|
3470 |
msgid "Reset to default"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
+
#: languages/vue.php:1394
|
3474 |
msgid "The value entered does not match the required format"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
+
#: languages/vue.php:1397
|
3478 |
msgid "%s can't be empty."
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: languages/vue.php:1400
|
3482 |
msgid "Duplicate values are not allowed."
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: languages/vue.php:1403
|
3486 |
msgid "Add Another Link Path"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
+
#: languages/vue.php:1406
|
3490 |
msgid "Remove row"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: languages/vue.php:1409
|
3494 |
msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: languages/vue.php:1412
|
3498 |
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!"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
+
#: languages/vue.php:1415
|
3502 |
msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
#: languages/vue.php:1418
|
3506 |
msgid "Use coupon code %sLITEUPGRADE%s"
|
3507 |
msgstr ""
|
3508 |
|
3509 |
+
#: languages/vue.php:1421
|
3510 |
msgid "Facebook Instant Articles"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
+
#: languages/vue.php:1424
|
3514 |
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
|
3515 |
msgstr ""
|
3516 |
|
3517 |
+
#: languages/vue.php:1427
|
3518 |
msgid "Scroll Tracking"
|
3519 |
msgstr ""
|
3520 |
|
3521 |
+
#: languages/vue.php:1430
|
3522 |
msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
|
3523 |
msgstr ""
|
3524 |
|
3525 |
+
#: languages/vue.php:1433
|
3526 |
msgid "Can't save settings. Error: %s, %s"
|
3527 |
msgstr ""
|
3528 |
|
3529 |
+
#: languages/vue.php:1436
|
3530 |
msgid "You appear to be offline. Settings not saved."
|
3531 |
msgstr ""
|
3532 |
|
3533 |
+
#: languages/vue.php:1440
|
3534 |
msgid "Authenticating"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
+
#: languages/vue.php:1443
|
3538 |
msgid "Re-Authenticating"
|
3539 |
msgstr ""
|
3540 |
|
3541 |
+
#: languages/vue.php:1446
|
3542 |
msgid "Verifying Credentials"
|
3543 |
msgstr ""
|
3544 |
|
3545 |
+
#: languages/vue.php:1449
|
3546 |
msgid "Your site is connected to MonsterInsights!"
|
3547 |
msgstr ""
|
3548 |
|
3549 |
+
#: languages/vue.php:1452
|
3550 |
msgid "Deauthenticating"
|
3551 |
msgstr ""
|
3552 |
|
3553 |
+
#: languages/vue.php:1455
|
3554 |
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."
|
3555 |
msgstr ""
|
3556 |
|
3557 |
+
#: languages/vue.php:1459
|
3558 |
msgid "Connect MonsterInsights"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
+
#: languages/vue.php:1462
|
3562 |
msgid "Verify Credentials"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: languages/vue.php:1465
|
3566 |
msgid "Reconnect MonsterInsights"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: languages/vue.php:1468
|
3570 |
msgid "Website Profile"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: languages/vue.php:1471
|
3574 |
msgid "Active Profile"
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: languages/vue.php:1475
|
3578 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
3579 |
msgstr ""
|
3580 |
|
3900 |
msgid "Do Upgrade Later"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
+
#: languages/vue.php:1722
|
3904 |
msgid "Upgrade to PRO"
|
3905 |
msgstr ""
|
3906 |
|
3907 |
+
#: languages/vue.php:1725
|
3908 |
msgid "Upgrade to Pro"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
+
#: languages/vue.php:1728
|
3912 |
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."
|
3913 |
msgstr ""
|
3914 |
|
3915 |
+
#: languages/vue.php:1731
|
3916 |
msgid "You're using %sMonsterInsights Lite%s - no license needed. Enjoy!"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
+
#: languages/vue.php:1734
|
3920 |
msgid "You need to %sconnect MonsterInsights%s first"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: languages/vue.php:1737
|
3924 |
#: lite/includes/admin/welcome.php:52
|
3925 |
#: lite/includes/admin/welcome.php:53
|
3926 |
msgid "Welcome to MonsterInsights"
|
3927 |
msgstr ""
|
3928 |
|
3929 |
+
#: languages/vue.php:1740
|
3930 |
msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
+
#: languages/vue.php:1743
|
3934 |
msgid "MonsterInsights makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
#: languages/vue.php:1746
|
3938 |
msgid "Launch the Wizard!"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
+
#: languages/vue.php:1749
|
3942 |
msgid "Read the Full Guide"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: languages/vue.php:1752
|
3946 |
msgid "MonsterInsights Features & Addons"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: languages/vue.php:1755
|
3950 |
msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
|
3951 |
msgstr ""
|
3952 |
|
3953 |
+
#: languages/vue.php:1758
|
3954 |
msgid "See All Features"
|
3955 |
msgstr ""
|
3956 |
|
3957 |
+
#: languages/vue.php:1761
|
3958 |
msgid "per year"
|
3959 |
msgstr ""
|
3960 |
|
3961 |
+
#: languages/vue.php:1764
|
3962 |
msgid "Testimonials"
|
3963 |
msgstr ""
|
3964 |
|
3965 |
+
#: languages/vue.php:1767
|
3966 |
msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
3967 |
msgstr ""
|
3968 |
|
3969 |
+
#: languages/vue.php:1770
|
3970 |
msgid "Google Analytics Dashboard"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: languages/vue.php:1773
|
3974 |
msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: languages/vue.php:1776
|
3978 |
msgid "Real-time Stats"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: languages/vue.php:1779
|
3982 |
msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
|
3983 |
msgstr ""
|
3984 |
|
3985 |
+
#: languages/vue.php:1782
|
3986 |
msgid "Enhanced Ecommerce Tracking"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
+
#: languages/vue.php:1785
|
3990 |
msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
|
3991 |
msgstr ""
|
3992 |
|
3993 |
+
#: languages/vue.php:1788
|
3994 |
msgid "Page Level Analytics"
|
3995 |
msgstr ""
|
3996 |
|
3997 |
+
#: languages/vue.php:1791
|
3998 |
msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: languages/vue.php:1794
|
4002 |
msgid "Affiliate Link & Ads Tracking"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: languages/vue.php:1797
|
4006 |
msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
|
4007 |
msgstr ""
|
4008 |
|
4009 |
+
#: languages/vue.php:1800
|
4010 |
msgid "EU Compliance (GDPR Friendly)"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: languages/vue.php:1803
|
4014 |
msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: languages/vue.php:1806
|
4018 |
msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
|
4019 |
msgstr ""
|
4020 |
|
4021 |
+
#: languages/vue.php:1809
|
4022 |
msgid "Ecommerce Report"
|
4023 |
msgstr ""
|
4024 |
|
4025 |
+
#: languages/vue.php:1812
|
4026 |
msgid "Category / Tags Tracking"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
+
#: languages/vue.php:1815
|
4030 |
msgid "WooCommerce"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: languages/vue.php:1818
|
4034 |
msgid "Easy Digital Downloads"
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: languages/vue.php:1821
|
4038 |
msgid "MemberPress"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
+
#: languages/vue.php:1824
|
4042 |
msgid "LifterLMS"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: languages/vue.php:1827
|
4046 |
msgid "See how %s visitors found your site!"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
+
#: languages/vue.php:1830
|
4050 |
msgid "Your website was visited by %s users in the last 30 days."
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: languages/vue.php:1833
|
4054 |
msgid "See the full analytics report!"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: languages/vue.php:1836
|
4058 |
msgid "You must connect with MonsterInsights before you can view reports."
|
4059 |
msgstr ""
|
4060 |
|
4061 |
+
#: languages/vue.php:1839
|
4062 |
msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: languages/vue.php:1842
|
4066 |
msgid "See Quick Links"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: languages/vue.php:1845
|
4070 |
msgid "Suggest a Feature"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: languages/vue.php:1848
|
4074 |
msgid "Join Our Community"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: languages/vue.php:1851
|
4078 |
msgid "Support & Docs"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: languages/vue.php:1854
|
4082 |
msgid "Upgrade to Pro »"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: languages/vue.php:1857
|
4086 |
msgid "MonsterInsights encountered an error loading your report data"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: languages/vue.php:1860
|
4090 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: languages/vue.php:1863
|
4094 |
msgid "Last %s days"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
+
#: languages/vue.php:1866
|
4098 |
#: lite/includes/admin/wp-site-health.php:179
|
4099 |
msgid "View Reports"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: languages/vue.php:1869
|
4103 |
msgid "Congratulations!"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
+
#: languages/vue.php:1872
|
4107 |
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 %sGetting started video%s or use our %s to get you quickly set up."
|
4108 |
msgstr ""
|
4109 |
|
4110 |
+
#: languages/vue.php:1875
|
4111 |
msgid "Onboarding Wizard"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
+
#: languages/vue.php:1878
|
4115 |
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."
|
4116 |
msgstr ""
|
4117 |
|
4118 |
+
#: languages/vue.php:1881
|
4119 |
msgid "Yup, we know a thing or two about building awesome products that customers love."
|
4120 |
msgstr ""
|
4121 |
|
4122 |
+
#: languages/vue.php:1884
|
4123 |
msgid "The MonsterInsights Team"
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#: languages/vue.php:1887
|
4127 |
msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%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 %s) only takes a few minutes and will make your website significantly faster and more secure."
|
4128 |
msgstr ""
|
4129 |
|
4130 |
+
#: languages/vue.php:1890
|
4131 |
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."
|
4132 |
msgstr ""
|
4133 |
|
4134 |
+
#: languages/vue.php:1902
|
4135 |
msgid "You’re using MonsterInsights Lite. To unlock more features consider %supgrading to Pro%s."
|
4136 |
msgstr ""
|
4137 |
|
4138 |
+
#: languages/vue.php:1905
|
4139 |
msgid "Installing Addon"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: languages/vue.php:1908
|
4143 |
msgid "Activating Addon"
|
4144 |
msgstr ""
|
4145 |
|
4146 |
+
#: languages/vue.php:1911
|
4147 |
msgid "Addon Activated"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
+
#: languages/vue.php:1914
|
4151 |
msgid "Loading report data"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
+
#: languages/vue.php:1917
|
4155 |
msgid "Please activate manually"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: languages/vue.php:1920
|
4159 |
msgid "Error: %s, %s"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: languages/vue.php:1923
|
4163 |
msgid "Error Activating Addon"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
+
#: languages/vue.php:1926
|
4167 |
#: lite/includes/admin/wp-site-health.php:298
|
4168 |
#: lite/includes/admin/wp-site-health.php:324
|
4169 |
#: lite/includes/admin/wp-site-health.php:351
|
4170 |
msgid "View Addons"
|
4171 |
msgstr ""
|
4172 |
|
4173 |
+
#: languages/vue.php:1929
|
4174 |
msgid "Dismiss"
|
4175 |
msgstr ""
|
4176 |
|
4177 |
+
#: languages/vue.php:1932
|
4178 |
msgid "Redirecting"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
+
#: languages/vue.php:1935
|
4182 |
msgid "Please wait"
|
4183 |
msgstr ""
|
4184 |
|
4185 |
+
#: languages/vue.php:1938
|
4186 |
msgid "Visit addons page"
|
4187 |
msgstr ""
|
4188 |
|
4189 |
+
#: languages/vue.php:1941
|
4190 |
msgid "Report Unavailable"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
+
#: languages/vue.php:1944
|
4194 |
msgid "%s Addon"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
+
#: languages/vue.php:1947
|
4198 |
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."
|
4199 |
msgstr ""
|
4200 |
|
4201 |
+
#: languages/vue.php:1950
|
4202 |
msgid "See All Reports"
|
4203 |
msgstr ""
|
4204 |
|
4205 |
+
#: languages/vue.php:1953
|
4206 |
msgid "Go to the Analytics Dashboard"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
+
#: languages/vue.php:1956
|
4210 |
msgid "Hide dashboard widget"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
+
#: languages/vue.php:1959
|
4214 |
msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
|
4215 |
msgstr ""
|
4216 |
|
4217 |
+
#: languages/vue.php:1962
|
4218 |
msgid "Yes, hide it!"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
+
#: languages/vue.php:1965
|
4222 |
msgid "No, cancel!"
|
4223 |
msgstr ""
|
4224 |
|
4225 |
+
#: languages/vue.php:1968
|
4226 |
msgid "MonsterInsights Widget Hidden"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: languages/vue.php:1971
|
4230 |
msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: languages/vue.php:1974
|
4234 |
msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %sRetrieve your license key%s."
|
4235 |
msgstr ""
|
4236 |
|
4237 |
+
#: languages/vue.php:1977
|
4238 |
msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
|
4239 |
msgstr ""
|
4240 |
|
4241 |
+
#: languages/vue.php:1980
|
4242 |
msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
|
4243 |
msgstr ""
|
4244 |
|
4245 |
+
#: languages/vue.php:1983
|
4246 |
msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
|
4247 |
msgstr ""
|
4248 |
|
4249 |
+
#: languages/vue.php:1986
|
4250 |
msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
|
4251 |
msgstr ""
|
4252 |
|
4253 |
+
#: languages/vue.php:1989
|
4254 |
msgid "Use Google Optimize to easily perform A/B split tests on your site."
|
4255 |
msgstr ""
|
4256 |
|
4257 |
+
#: languages/vue.php:1992
|
4258 |
msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
|
4259 |
msgstr ""
|
4260 |
|
4261 |
+
#: languages/vue.php:1995
|
4262 |
msgid "Unlock search console report to see your top performing keywords in Google."
|
4263 |
msgstr ""
|
4264 |
|
4265 |
+
#: languages/vue.php:1998
|
4266 |
msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
|
4267 |
msgstr ""
|
4268 |
|
4269 |
+
#: languages/vue.php:2001
|
4270 |
msgid "Publishers Report shows your top performing pages, audience demographics, and more."
|
4271 |
msgstr ""
|
4272 |
|
4273 |
+
#: languages/vue.php:2004
|
4274 |
msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving.s"
|
4275 |
msgstr ""
|
4276 |
|
4277 |
+
#: languages/vue.php:2007
|
4278 |
msgid "Upgrade to Pro »"
|
4279 |
msgstr ""
|
4280 |
|
4281 |
+
#: languages/vue.php:2010
|
4282 |
msgid "Pro Tip:"
|
4283 |
msgstr ""
|
4284 |
|
4285 |
+
#: languages/vue.php:2013
|
4286 |
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 October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
4287 |
msgstr ""
|
4288 |
|
4289 |
+
#: languages/vue.php:2016
|
4290 |
msgid "Can't load report data. Error: %s, %s"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: languages/vue.php:2019
|
4294 |
msgid "Error loading report data"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
+
#: languages/vue.php:2022
|
4298 |
msgid "Error loading license details"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: languages/vue.php:2025
|
4302 |
msgid "Network error encountered. Settings not saved."
|
4303 |
msgstr ""
|
4304 |
|
4305 |
+
#: languages/vue.php:2028
|
4306 |
msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
|
4307 |
msgstr ""
|
4308 |
|
4309 |
+
#: languages/vue.php:2031
|
4310 |
msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
|
4311 |
msgstr ""
|
4312 |
|
4313 |
+
#: languages/vue.php:2034
|
4314 |
msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
|
4315 |
msgstr ""
|
4316 |
|
4317 |
+
#: languages/vue.php:2037
|
4318 |
msgid "UA code can't be empty"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
+
#: languages/vue.php:2040
|
4322 |
msgid "Saving UA code..."
|
4323 |
msgstr ""
|
4324 |
|
4325 |
+
#: languages/vue.php:2043
|
4326 |
+
msgid "2019 Year in Review"
|
4327 |
+
msgstr ""
|
4328 |
+
|
4329 |
+
#: languages/vue.php:2046
|
4330 |
+
msgid "Still Calculating..."
|
4331 |
+
msgstr ""
|
4332 |
+
|
4333 |
+
#: languages/vue.php:2049
|
4334 |
+
msgid "Your 2019 Year in Review is still calculating. Please check back later to see how your website performed last year."
|
4335 |
+
msgstr ""
|
4336 |
+
|
4337 |
+
#: languages/vue.php:2052
|
4338 |
+
msgid "Back to Overview Report"
|
4339 |
+
msgstr ""
|
4340 |
+
|
4341 |
+
#: languages/vue.php:2061
|
4342 |
+
msgid "Audience"
|
4343 |
+
msgstr ""
|
4344 |
+
|
4345 |
+
#: languages/vue.php:2064
|
4346 |
+
msgid "Congrats"
|
4347 |
+
msgstr ""
|
4348 |
+
|
4349 |
+
#: languages/vue.php:2067
|
4350 |
+
msgid "Your website was quite popular this year! "
|
4351 |
+
msgstr ""
|
4352 |
+
|
4353 |
+
#: languages/vue.php:2070
|
4354 |
+
msgid "You had "
|
4355 |
+
msgstr ""
|
4356 |
+
|
4357 |
+
#: languages/vue.php:2073
|
4358 |
+
msgid " visitors!"
|
4359 |
+
msgstr ""
|
4360 |
+
|
4361 |
+
#: languages/vue.php:2076
|
4362 |
+
msgid " visitors"
|
4363 |
+
msgstr ""
|
4364 |
+
|
4365 |
+
#: languages/vue.php:2079
|
4366 |
+
msgid "Total Visitors"
|
4367 |
+
msgstr ""
|
4368 |
+
|
4369 |
+
#: languages/vue.php:2082
|
4370 |
+
msgid "Total Sessions"
|
4371 |
+
msgstr ""
|
4372 |
+
|
4373 |
+
#: languages/vue.php:2085
|
4374 |
+
msgid "Visitors by Month"
|
4375 |
+
msgstr ""
|
4376 |
+
|
4377 |
+
#: languages/vue.php:2088
|
4378 |
+
msgid "January 1, 2019 - December 31, 2019"
|
4379 |
+
msgstr ""
|
4380 |
+
|
4381 |
+
#: languages/vue.php:2091
|
4382 |
+
msgid "A Tip for 2020"
|
4383 |
+
msgstr ""
|
4384 |
+
|
4385 |
+
#: languages/vue.php:2094
|
4386 |
+
msgid "See the top Traffic Sources and Top Pages for the Month of May in the Overview Report to replicate your success."
|
4387 |
+
msgstr ""
|
4388 |
+
|
4389 |
+
#: languages/vue.php:2097
|
4390 |
+
msgid "#1"
|
4391 |
+
msgstr ""
|
4392 |
+
|
4393 |
+
#: languages/vue.php:2100
|
4394 |
+
msgid "You Top 5 Countries"
|
4395 |
+
msgstr ""
|
4396 |
+
|
4397 |
+
#: languages/vue.php:2103
|
4398 |
+
msgid "Let’s get to know your visitors a little better, shall we?"
|
4399 |
+
msgstr ""
|
4400 |
+
|
4401 |
+
#: languages/vue.php:2106
|
4402 |
+
msgid "Gender"
|
4403 |
+
msgstr ""
|
4404 |
+
|
4405 |
+
#: languages/vue.php:2109
|
4406 |
+
msgid "Female"
|
4407 |
+
msgstr ""
|
4408 |
+
|
4409 |
+
#: languages/vue.php:2112
|
4410 |
+
msgid "Women"
|
4411 |
+
msgstr ""
|
4412 |
+
|
4413 |
+
#: languages/vue.php:2115
|
4414 |
+
msgid "Male"
|
4415 |
+
msgstr ""
|
4416 |
+
|
4417 |
+
#: languages/vue.php:2118
|
4418 |
+
msgid "Average Age"
|
4419 |
+
msgstr ""
|
4420 |
+
|
4421 |
+
#: languages/vue.php:2121
|
4422 |
+
msgid "Behavior"
|
4423 |
+
msgstr ""
|
4424 |
+
|
4425 |
+
#: languages/vue.php:2124
|
4426 |
+
msgid "Your Top 5 Pages"
|
4427 |
+
msgstr ""
|
4428 |
+
|
4429 |
+
#: languages/vue.php:2127
|
4430 |
+
msgid "Time Spent on Site"
|
4431 |
+
msgstr ""
|
4432 |
+
|
4433 |
+
#: languages/vue.php:2130
|
4434 |
+
msgid "minutes"
|
4435 |
+
msgstr ""
|
4436 |
+
|
4437 |
+
#: languages/vue.php:2133
|
4438 |
+
msgid "Device Type"
|
4439 |
+
msgstr ""
|
4440 |
+
|
4441 |
+
#: languages/vue.php:2136
|
4442 |
+
msgid "A Tip For 2020"
|
4443 |
+
msgstr ""
|
4444 |
+
|
4445 |
+
#: languages/vue.php:2139
|
4446 |
+
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."
|
4447 |
+
msgstr ""
|
4448 |
+
|
4449 |
+
#: languages/vue.php:2142
|
4450 |
+
msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
|
4451 |
+
msgstr ""
|
4452 |
+
|
4453 |
+
#: languages/vue.php:2145
|
4454 |
+
msgid "So, where did all of these visitors come from?"
|
4455 |
+
msgstr ""
|
4456 |
+
|
4457 |
+
#: languages/vue.php:2148
|
4458 |
+
msgid "Impressions"
|
4459 |
+
msgstr ""
|
4460 |
+
|
4461 |
+
#: languages/vue.php:2151
|
4462 |
+
msgid "Your Top 5 Keywords"
|
4463 |
+
msgstr ""
|
4464 |
+
|
4465 |
+
#: languages/vue.php:2154
|
4466 |
+
msgid "What keywords visitors searched for to find your site"
|
4467 |
+
msgstr ""
|
4468 |
+
|
4469 |
+
#: languages/vue.php:2157
|
4470 |
+
msgid "Your Top 5 Referrals"
|
4471 |
+
msgstr ""
|
4472 |
+
|
4473 |
+
#: languages/vue.php:2160
|
4474 |
+
msgid "The websites that link back to your website"
|
4475 |
+
msgstr ""
|
4476 |
+
|
4477 |
+
#: languages/vue.php:2163
|
4478 |
+
msgid "Opportunity"
|
4479 |
+
msgstr ""
|
4480 |
+
|
4481 |
+
#: languages/vue.php:2166
|
4482 |
+
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."
|
4483 |
+
msgstr ""
|
4484 |
+
|
4485 |
+
#: languages/vue.php:2169
|
4486 |
+
msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
|
4487 |
+
msgstr ""
|
4488 |
+
|
4489 |
+
#: languages/vue.php:2172
|
4490 |
+
msgid "Thank you for using MonsterInsights!"
|
4491 |
+
msgstr ""
|
4492 |
+
|
4493 |
+
#: languages/vue.php:2175
|
4494 |
+
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."
|
4495 |
+
msgstr ""
|
4496 |
+
|
4497 |
+
#: languages/vue.php:2178
|
4498 |
+
msgid "Here's to an amazing 2020!"
|
4499 |
+
msgstr ""
|
4500 |
+
|
4501 |
+
#: languages/vue.php:2181
|
4502 |
+
msgid "Enjoying MonsterInsights"
|
4503 |
+
msgstr ""
|
4504 |
+
|
4505 |
+
#: languages/vue.php:2184
|
4506 |
+
msgid "Leave a five star review!"
|
4507 |
+
msgstr ""
|
4508 |
+
|
4509 |
+
#: languages/vue.php:2187
|
4510 |
+
msgid "Syed Balkhi"
|
4511 |
+
msgstr ""
|
4512 |
+
|
4513 |
+
#: languages/vue.php:2190
|
4514 |
+
msgid "Chris Christoff"
|
4515 |
+
msgstr ""
|
4516 |
+
|
4517 |
+
#: languages/vue.php:2193
|
4518 |
+
msgid "Write Review"
|
4519 |
+
msgstr ""
|
4520 |
+
|
4521 |
+
#: languages/vue.php:2196
|
4522 |
+
msgid "Did you know over 10 million websites use our plugins?"
|
4523 |
+
msgstr ""
|
4524 |
+
|
4525 |
+
#: languages/vue.php:2199
|
4526 |
+
msgid "Try our other popular WordPress plugins to grow your website in 2020."
|
4527 |
+
msgstr ""
|
4528 |
+
|
4529 |
+
#: languages/vue.php:2202
|
4530 |
+
msgid "Join our Communities!"
|
4531 |
+
msgstr ""
|
4532 |
+
|
4533 |
+
#: languages/vue.php:2205
|
4534 |
+
msgid "Become a WordPress expert in 2020. Join our amazing communities and take your website to the next level."
|
4535 |
+
msgstr ""
|
4536 |
+
|
4537 |
+
#: languages/vue.php:2208
|
4538 |
+
msgid "Facebook Group"
|
4539 |
+
msgstr ""
|
4540 |
+
|
4541 |
+
#: languages/vue.php:2211
|
4542 |
+
msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
|
4543 |
+
msgstr ""
|
4544 |
+
|
4545 |
+
#: languages/vue.php:2214
|
4546 |
+
msgid "Join Now...It’s Free!"
|
4547 |
+
msgstr ""
|
4548 |
+
|
4549 |
+
#: languages/vue.php:2217
|
4550 |
+
msgid "WordPress Tutorials by WPBeginner"
|
4551 |
+
msgstr ""
|
4552 |
+
|
4553 |
+
#: languages/vue.php:2220
|
4554 |
+
msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
|
4555 |
+
msgstr ""
|
4556 |
+
|
4557 |
+
#: languages/vue.php:2223
|
4558 |
+
msgid "Visit WPBeginner"
|
4559 |
+
msgstr ""
|
4560 |
+
|
4561 |
+
#: languages/vue.php:2226
|
4562 |
+
msgid "Follow Us!"
|
4563 |
+
msgstr ""
|
4564 |
+
|
4565 |
+
#: languages/vue.php:2229
|
4566 |
+
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."
|
4567 |
+
msgstr ""
|
4568 |
+
|
4569 |
+
#: languages/vue.php:2232
|
4570 |
+
msgid "Copyright MonsterInsights, 2020"
|
4571 |
+
msgstr ""
|
4572 |
+
|
4573 |
+
#: languages/vue.php:2235
|
4574 |
+
msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
|
4575 |
+
msgstr ""
|
4576 |
+
|
4577 |
+
#: languages/vue.php:2238
|
4578 |
+
msgid "January"
|
4579 |
+
msgstr ""
|
4580 |
+
|
4581 |
+
#: languages/vue.php:2241
|
4582 |
+
msgid "February"
|
4583 |
+
msgstr ""
|
4584 |
+
|
4585 |
+
#: languages/vue.php:2244
|
4586 |
+
msgid "March"
|
4587 |
+
msgstr ""
|
4588 |
+
|
4589 |
+
#: languages/vue.php:2247
|
4590 |
+
msgid "April"
|
4591 |
+
msgstr ""
|
4592 |
+
|
4593 |
+
#: languages/vue.php:2250
|
4594 |
+
msgid "May"
|
4595 |
+
msgstr ""
|
4596 |
+
|
4597 |
+
#: languages/vue.php:2253
|
4598 |
+
msgid "June"
|
4599 |
+
msgstr ""
|
4600 |
+
|
4601 |
+
#: languages/vue.php:2256
|
4602 |
+
msgid "July"
|
4603 |
+
msgstr ""
|
4604 |
+
|
4605 |
+
#: languages/vue.php:2259
|
4606 |
+
msgid "August"
|
4607 |
+
msgstr ""
|
4608 |
+
|
4609 |
+
#: languages/vue.php:2262
|
4610 |
+
msgid "September"
|
4611 |
+
msgstr ""
|
4612 |
+
|
4613 |
+
#: languages/vue.php:2265
|
4614 |
+
msgid "October"
|
4615 |
+
msgstr ""
|
4616 |
+
|
4617 |
+
#: languages/vue.php:2268
|
4618 |
+
msgid "November"
|
4619 |
+
msgstr ""
|
4620 |
+
|
4621 |
+
#: languages/vue.php:2271
|
4622 |
+
msgid "December"
|
4623 |
+
msgstr ""
|
4624 |
+
|
4625 |
+
#: languages/vue.php:2274
|
4626 |
+
msgid "Your best month was <strong>%s</strong> with <strong>%s visitors!</strong>"
|
4627 |
+
msgstr ""
|
4628 |
+
|
4629 |
+
#: languages/vue.php:2277
|
4630 |
+
msgid "Your <strong>%s</strong> visitors came from <strong>%s</strong> different countries."
|
4631 |
+
msgstr ""
|
4632 |
+
|
4633 |
+
#: languages/vue.php:2280
|
4634 |
+
msgid "%s Visitors"
|
4635 |
+
msgstr ""
|
4636 |
+
|
4637 |
+
#: languages/vue.php:2283
|
4638 |
+
msgid "%s% of your visitors were %s"
|
4639 |
+
msgstr ""
|
4640 |
+
|
4641 |
+
#: languages/vue.php:2286
|
4642 |
+
msgid "%s% of your visitors were between the ages of %s"
|
4643 |
+
msgstr ""
|
4644 |
+
|
4645 |
+
#: languages/vue.php:2289
|
4646 |
+
msgid "Your <strong>%s</strong> visitors viewed a total of <strong>%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 %s pages for each visitor!</span>"
|
4647 |
+
msgstr ""
|
4648 |
+
|
4649 |
+
#: languages/vue.php:2292
|
4650 |
+
msgid "Each visitor spent an average of %s minutes on your website in 2019."
|
4651 |
+
msgstr ""
|
4652 |
+
|
4653 |
+
#: languages/vue.php:2295
|
4654 |
+
msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
|
4655 |
+
msgstr ""
|
4656 |
+
|
4657 |
+
#: languages/vue.php:2298
|
4658 |
+
msgid "%s% of your visitors were on a %s device."
|
4659 |
+
msgstr ""
|
4660 |
+
|
4661 |
#: lite/includes/admin/connect.php:42
|
4662 |
msgid "You are not allowed to install plugins."
|
4663 |
msgstr ""
|
4725 |
msgid "%1$sBonus:%2$s You also get 50%% off discount for being a loyal MonsterInsights Lite user."
|
4726 |
msgstr ""
|
4727 |
|
4728 |
+
#: lite/includes/admin/onboarding-wizard.php:168
|
4729 |
msgid "MonsterInsights › Onboarding Wizard"
|
4730 |
msgstr ""
|
4731 |
|
4732 |
+
#: lite/includes/admin/onboarding-wizard.php:181
|
4733 |
msgid "Return to Dashboard"
|
4734 |
msgstr ""
|
4735 |
|
4736 |
+
#: lite/includes/admin/onboarding-wizard.php:247
|
4737 |
msgid "You are not allowed to install plugins"
|
4738 |
msgstr ""
|
4739 |
|
4741 |
msgid "Real Time"
|
4742 |
msgstr ""
|
4743 |
|
4744 |
+
#: lite/includes/admin/reports/report-year-in-review.php:22
|
4745 |
+
msgid "Year in Review"
|
4746 |
+
msgstr ""
|
4747 |
+
|
4748 |
#: lite/includes/admin/tools.php:10
|
4749 |
msgid "Want even more fine tuned control over your website analytics?"
|
4750 |
msgstr ""
|
languages/vue.php
CHANGED
@@ -1,155 +1,160 @@
|
|
1 |
<?php
|
2 |
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
|
3 |
$generated_i18n_strings = array(
|
4 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
5 |
__( 'Refreshing Report', 'google-analytics-for-wordpress' ),
|
6 |
|
7 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
8 |
__( 'Loading new report data...', 'google-analytics-for-wordpress' ),
|
9 |
|
|
|
|
|
10 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:67
|
|
|
|
|
11 |
__( 'Error', 'google-analytics-for-wordpress' ),
|
12 |
|
13 |
// Reference: src/plugins/monsterinsights-frontend-helper-plugin.js:14
|
14 |
-
// Reference: src/plugins/monsterinsights-widget-helper-plugin.js:15
|
15 |
__( 'Please try again.', 'google-analytics-for-wordpress' ),
|
16 |
|
17 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
18 |
__( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-for-wordpress' ),
|
19 |
|
20 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
21 |
__( 'Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
|
22 |
|
23 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
24 |
__( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-for-wordpress' ),
|
25 |
|
26 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
27 |
__( 'Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
|
28 |
|
29 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
30 |
__( 'See Your Top Landing Pages to Improve Enagement', 'google-analytics-for-wordpress' ),
|
31 |
|
32 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
33 |
__( 'See Your Top Exit Pages to Reduce Abandonment', 'google-analytics-for-wordpress' ),
|
34 |
|
35 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
36 |
__( 'See Your Top Outbound Links to Find New Revenue Opportunities', 'google-analytics-for-wordpress' ),
|
37 |
|
38 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
39 |
__( 'See Your Top Affiliate Links and Focus on what\'s working', 'google-analytics-for-wordpress' ),
|
40 |
|
41 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
42 |
__( 'See Your Top Downloads and Improve Conversions', 'google-analytics-for-wordpress' ),
|
43 |
|
44 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
45 |
__( 'See Audience Demographic Report ( Age / Gender / Interests )', 'google-analytics-for-wordpress' ),
|
46 |
|
47 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
48 |
__( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-for-wordpress' ),
|
49 |
|
50 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
51 |
__( 'Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.', 'google-analytics-for-wordpress' ),
|
52 |
|
53 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
54 |
__( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-for-wordpress' ),
|
55 |
|
56 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
57 |
__( 'See The Number of Transactions and make data-driven decisions', 'google-analytics-for-wordpress' ),
|
58 |
|
59 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
60 |
__( 'See The Total Revenue to Track Growth', 'google-analytics-for-wordpress' ),
|
61 |
|
62 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
63 |
__( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-for-wordpress' ),
|
64 |
|
65 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
66 |
__( 'See Your Top Products to See Individual Performance', 'google-analytics-for-wordpress' ),
|
67 |
|
68 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
69 |
__( 'See Your Top Conversion Sources and Focus on what\'s working', 'google-analytics-for-wordpress' ),
|
70 |
|
71 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
72 |
__( 'See The Time it takes for Customers to Purchase', 'google-analytics-for-wordpress' ),
|
73 |
|
74 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
75 |
__( 'See How Many Sessions are needed for a Purchase', 'google-analytics-for-wordpress' ),
|
76 |
|
77 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
78 |
__( 'Unlock the Dimensions Report and Track Your Own Custom Data', 'google-analytics-for-wordpress' ),
|
79 |
|
80 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
81 |
__( 'Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
|
82 |
|
83 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
84 |
__( 'See Which Authors Generate the Most Traffic', 'google-analytics-for-wordpress' ),
|
85 |
|
86 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
87 |
__( 'See Which Post Types Perform Better', 'google-analytics-for-wordpress' ),
|
88 |
|
89 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
90 |
__( 'See Which Categories are the Most Popular', 'google-analytics-for-wordpress' ),
|
91 |
|
92 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
93 |
__( 'See Your Blog\'s most populare SEO Scores', 'google-analytics-for-wordpress' ),
|
94 |
|
95 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
96 |
__( 'See Which Focus Keyword is Performing Better in Search Engines', 'google-analytics-for-wordpress' ),
|
97 |
|
98 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
99 |
__( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-for-wordpress' ),
|
100 |
|
101 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
102 |
__( 'Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.', 'google-analytics-for-wordpress' ),
|
103 |
|
104 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
105 |
__( 'See Reports for Any Contact Form Plugin or Sign-up Form', 'google-analytics-for-wordpress' ),
|
106 |
|
107 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
108 |
__( 'See Your Top Converting Forms and Optimize', 'google-analytics-for-wordpress' ),
|
109 |
|
110 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
111 |
__( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-for-wordpress' ),
|
112 |
|
113 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
114 |
__( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-for-wordpress' ),
|
115 |
|
116 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
117 |
__( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-for-wordpress' ),
|
118 |
|
119 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
120 |
__( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-for-wordpress' ),
|
121 |
|
122 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
123 |
__( 'See The Number of Clicks and Track Interests', 'google-analytics-for-wordpress' ),
|
124 |
|
125 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
126 |
__( 'See The Click-Through-Ratio and Improve SEO', 'google-analytics-for-wordpress' ),
|
127 |
|
128 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
129 |
__( 'See The Average Results Position and Focus on what works', 'google-analytics-for-wordpress' ),
|
130 |
|
131 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
132 |
__( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-for-wordpress' ),
|
133 |
|
134 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
135 |
__( 'Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.', 'google-analytics-for-wordpress' ),
|
136 |
|
137 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
138 |
__( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-for-wordpress' ),
|
139 |
|
140 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
141 |
__( 'See Your Top Pages Immediately After Making Changes', 'google-analytics-for-wordpress' ),
|
142 |
|
143 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
144 |
__( 'See Your Top Referral Sources and Adapt Faster', 'google-analytics-for-wordpress' ),
|
145 |
|
146 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
147 |
__( 'See Your Traffic Demographics and ', 'google-analytics-for-wordpress' ),
|
148 |
|
149 |
-
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:
|
150 |
__( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-for-wordpress' ),
|
151 |
|
152 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:236
|
|
|
|
|
153 |
// Reference: src/modules/widget/widget.vue:27
|
154 |
__( 'Overview Report', 'google-analytics-for-wordpress' ),
|
155 |
|
@@ -174,56 +179,72 @@ $generated_i18n_strings = array(
|
|
174 |
// Reference: src/modules/settings/site.vue:79
|
175 |
__( 'You Successfully Unlocked the most powerful Analytics plugin', 'google-analytics-for-wordpress' ),
|
176 |
|
177 |
-
// Reference: src/modules/reports/routes/index.js:
|
178 |
__( 'Publishers Report', 'google-analytics-for-wordpress' ),
|
179 |
|
180 |
// Reference: src/modules/reports/components/reports/ReportEcommerce-Lite.vue:23
|
|
|
181 |
__( 'eCommerce Report', 'google-analytics-for-wordpress' ),
|
182 |
|
183 |
-
// Reference: src/modules/reports/
|
|
|
184 |
__( 'Search Console Report', 'google-analytics-for-wordpress' ),
|
185 |
|
186 |
-
// Reference: src/modules/reports/
|
|
|
187 |
__( 'Dimensions Report', 'google-analytics-for-wordpress' ),
|
188 |
|
189 |
// Reference: src/modules/reports/components/reports/ReportForms-Lite.vue:25
|
|
|
190 |
__( 'Forms Report', 'google-analytics-for-wordpress' ),
|
191 |
|
192 |
// Reference: src/modules/reports/components/reports/ReportRealTime-Lite.vue:51
|
|
|
193 |
__( 'Real-Time Report', 'google-analytics-for-wordpress' ),
|
194 |
|
195 |
// Reference: src/modules/widget/components/WidgetFooter.vue:18
|
196 |
__( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
|
197 |
|
198 |
// Reference: src/modules/addons/components/AddonBlock.vue:113
|
|
|
|
|
199 |
__( 'Install', 'google-analytics-for-wordpress' ),
|
200 |
|
201 |
// Reference: src/modules/addons/components/AddonBlock.vue:111
|
|
|
|
|
202 |
__( 'Activate', 'google-analytics-for-wordpress' ),
|
203 |
|
204 |
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
|
|
|
|
|
205 |
__( 'Learn More', 'google-analytics-for-wordpress' ),
|
206 |
|
207 |
-
// Reference: src/modules/reports/components/ReportsNavigation.vue:
|
208 |
// Reference: src/modules/widget/store/index.js:75
|
209 |
__( 'Overview', 'google-analytics-for-wordpress' ),
|
210 |
|
211 |
-
// Reference: src/modules/reports/components/ReportsNavigation.vue:
|
|
|
212 |
__( 'Publishers', 'google-analytics-for-wordpress' ),
|
213 |
|
|
|
214 |
// Reference: src/modules/reports/components/reports/ReportEcommerce-Lite.vue:22
|
|
|
|
|
215 |
__( 'eCommerce', 'google-analytics-for-wordpress' ),
|
216 |
|
217 |
-
// Reference: src/modules/reports/components/ReportsNavigation.vue:
|
218 |
__( 'Search Console', 'google-analytics-for-wordpress' ),
|
219 |
|
220 |
-
// Reference: src/modules/reports/components/ReportsNavigation.vue:
|
|
|
221 |
__( 'Dimensions', 'google-analytics-for-wordpress' ),
|
222 |
|
223 |
-
// Reference: src/modules/reports/components/ReportsNavigation.vue:
|
224 |
__( 'Forms', 'google-analytics-for-wordpress' ),
|
225 |
|
226 |
-
// Reference: src/modules/reports/components/ReportsNavigation.vue:
|
227 |
__( 'Real-Time', 'google-analytics-for-wordpress' ),
|
228 |
|
229 |
// Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
|
@@ -231,34 +252,45 @@ $generated_i18n_strings = array(
|
|
231 |
|
232 |
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:15
|
233 |
// Reference: src/modules/settings/routes/network.js:35
|
|
|
234 |
__( 'About Us', 'google-analytics-for-wordpress' ),
|
235 |
|
236 |
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:16
|
237 |
// Reference: src/modules/settings/routes/network.js:43
|
|
|
238 |
__( 'Getting Started', 'google-analytics-for-wordpress' ),
|
239 |
|
240 |
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
|
|
|
241 |
// Reference: src/modules/settings/routes/network.js:52
|
|
|
242 |
__( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
|
243 |
|
244 |
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:55
|
|
|
245 |
__( 'General', 'google-analytics-for-wordpress' ),
|
246 |
|
247 |
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:56
|
|
|
248 |
__( 'Engagement', 'google-analytics-for-wordpress' ),
|
249 |
|
250 |
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:58
|
|
|
251 |
__( 'Publisher', 'google-analytics-for-wordpress' ),
|
252 |
|
253 |
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:59
|
|
|
254 |
__( 'Conversions', 'google-analytics-for-wordpress' ),
|
255 |
|
256 |
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:60
|
|
|
257 |
__( 'Advanced', 'google-analytics-for-wordpress' ),
|
258 |
|
|
|
259 |
// Reference: src/modules/tools/components/ToolsNavigation.vue:15
|
260 |
__( 'URL Builder', 'google-analytics-for-wordpress' ),
|
261 |
|
|
|
262 |
// Reference: src/modules/tools/components/ToolsNavigation.vue:14
|
263 |
__( 'Import Export', 'google-analytics-for-wordpress' ),
|
264 |
|
@@ -275,21 +307,27 @@ $generated_i18n_strings = array(
|
|
275 |
__( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-for-wordpress' ),
|
276 |
|
277 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:249
|
|
|
278 |
__( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
|
279 |
|
280 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:260
|
|
|
281 |
__( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
|
282 |
|
283 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:243
|
|
|
284 |
__( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
|
285 |
|
286 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:256
|
|
|
287 |
__( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
|
288 |
|
289 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:244
|
|
|
290 |
__( 'Device Breakdown', 'google-analytics-for-wordpress' ),
|
291 |
|
292 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:257
|
|
|
293 |
__( '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' ),
|
294 |
|
295 |
// Reference: src/modules/widget/store/index.js:40
|
@@ -371,30 +409,44 @@ $generated_i18n_strings = array(
|
|
371 |
__( 'Returning', 'google-analytics-for-wordpress' ),
|
372 |
|
373 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:178
|
|
|
374 |
__( 'Desktop', 'google-analytics-for-wordpress' ),
|
375 |
|
376 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:179
|
|
|
377 |
__( 'Tablet', 'google-analytics-for-wordpress' ),
|
378 |
|
379 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:180
|
|
|
380 |
__( 'Mobile', 'google-analytics-for-wordpress' ),
|
381 |
|
|
|
382 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:237
|
|
|
383 |
__( 'Sessions', 'google-analytics-for-wordpress' ),
|
384 |
|
385 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:238
|
|
|
386 |
__( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
|
387 |
|
|
|
388 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:239
|
|
|
|
|
389 |
__( 'Pageviews', 'google-analytics-for-wordpress' ),
|
390 |
|
391 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:240
|
|
|
|
|
392 |
__( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
|
393 |
|
394 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:241
|
|
|
395 |
__( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
|
396 |
|
|
|
397 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:242
|
|
|
398 |
__( 'Bounce Rate', 'google-analytics-for-wordpress' ),
|
399 |
|
400 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:245
|
@@ -413,12 +465,15 @@ $generated_i18n_strings = array(
|
|
413 |
__( 'View Full Posts/Pages Report', 'google-analytics-for-wordpress' ),
|
414 |
|
415 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:252
|
|
|
416 |
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-for-wordpress' ),
|
417 |
|
418 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:253
|
|
|
419 |
__( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-for-wordpress' ),
|
420 |
|
421 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:254
|
|
|
422 |
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-for-wordpress' ),
|
423 |
|
424 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:255
|
@@ -437,27 +492,38 @@ $generated_i18n_strings = array(
|
|
437 |
__( 'Search Addons', 'google-analytics-for-wordpress' ),
|
438 |
|
439 |
// Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:88
|
|
|
440 |
__( 'Yes (recommended) %s- Get the latest features, bugfixes, and security updates as they are released.%s', 'google-analytics-for-wordpress' ),
|
441 |
|
442 |
// Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:92
|
|
|
443 |
__( 'Minor only %s- Get bugfixes and security updates, but not major features.%s', 'google-analytics-for-wordpress' ),
|
444 |
|
445 |
// Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:96
|
|
|
446 |
__( 'None %s- Manually update everything.%s', 'google-analytics-for-wordpress' ),
|
447 |
|
|
|
|
|
448 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingLicense-Lite.vue:27
|
449 |
__( 'License Key', 'google-analytics-for-wordpress' ),
|
450 |
|
|
|
451 |
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:89
|
452 |
__( 'Google Authentication', 'google-analytics-for-wordpress' ),
|
453 |
|
|
|
454 |
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:90
|
|
|
455 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
|
456 |
|
|
|
457 |
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:91
|
|
|
458 |
__( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
|
459 |
|
460 |
// Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:68
|
|
|
461 |
__( 'Automatic Updates', 'google-analytics-for-wordpress' ),
|
462 |
|
463 |
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:93
|
@@ -467,20 +533,26 @@ $generated_i18n_strings = array(
|
|
467 |
__( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
|
468 |
|
469 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:27
|
|
|
470 |
__( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
|
471 |
|
472 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:41
|
|
|
473 |
__( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
|
474 |
|
475 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:43
|
|
|
476 |
__( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
|
477 |
|
478 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:47
|
|
|
479 |
__( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
|
480 |
|
481 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:49
|
|
|
482 |
__( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
|
483 |
|
|
|
484 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:52
|
485 |
__( 'Affiliate Links', 'google-analytics-for-wordpress' ),
|
486 |
|
@@ -490,6 +562,7 @@ $generated_i18n_strings = array(
|
|
490 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:54
|
491 |
__( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-for-wordpress' ),
|
492 |
|
|
|
493 |
// Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:59
|
494 |
__( 'Demographics', 'google-analytics-for-wordpress' ),
|
495 |
|
@@ -683,6 +756,8 @@ $generated_i18n_strings = array(
|
|
683 |
// Reference: src/modules/tools/components/ToolsTabImportExport.vue:87
|
684 |
__( 'Please choose a .json file generated by a MonsterInsights settings export.', 'google-analytics-for-wordpress' ),
|
685 |
|
|
|
|
|
686 |
// Reference: src/modules/tools/components/ToolsTabImportExport.vue:88
|
687 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:122
|
688 |
__( 'Ok', 'google-analytics-for-wordpress' ),
|
@@ -870,9 +945,11 @@ $generated_i18n_strings = array(
|
|
870 |
// Reference: src/modules/about/components/AboutTabGettingStarted.vue:83
|
871 |
__( 'More advanced features', 'google-analytics-for-wordpress' ),
|
872 |
|
|
|
873 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:57
|
874 |
__( 'Get MonsterInsights Pro Today and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
|
875 |
|
|
|
876 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:58
|
877 |
__( 'Bonus: MonsterInsights Lite users get %s50%% off regular price%s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
|
878 |
|
@@ -927,9 +1004,13 @@ $generated_i18n_strings = array(
|
|
927 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:125
|
928 |
__( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-for-wordpress' ),
|
929 |
|
|
|
930 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:25
|
|
|
|
|
931 |
__( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
|
932 |
|
|
|
933 |
// Reference: src/modules/addons/components/AddonBlock.vue:83
|
934 |
__( 'Not Available', 'google-analytics-for-wordpress' ),
|
935 |
|
@@ -961,6 +1042,7 @@ $generated_i18n_strings = array(
|
|
961 |
__( 'Pro', 'google-analytics-for-wordpress' ),
|
962 |
|
963 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:61
|
|
|
964 |
__( 'Universal Tracking', 'google-analytics-for-wordpress' ),
|
965 |
|
966 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:63
|
@@ -1006,6 +1088,7 @@ $generated_i18n_strings = array(
|
|
1006 |
__( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-for-wordpress' ),
|
1007 |
|
1008 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:94
|
|
|
1009 |
__( 'Forms Tracking', 'google-analytics-for-wordpress' ),
|
1010 |
|
1011 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:98
|
@@ -1032,6 +1115,7 @@ $generated_i18n_strings = array(
|
|
1032 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
|
1033 |
__( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
|
1034 |
|
|
|
1035 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46
|
1036 |
__( 'Installing...', 'google-analytics-for-wordpress' ),
|
1037 |
|
@@ -1111,6 +1195,7 @@ $generated_i18n_strings = array(
|
|
1111 |
__( 'These user roles will be able to access MonsterInsights\'s reports in the WordPress admin area.', 'google-analytics-for-wordpress' ),
|
1112 |
|
1113 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedAddons-Lite.vue:49
|
|
|
1114 |
__( 'Save and continue', 'google-analytics-for-wordpress' ),
|
1115 |
|
1116 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
|
@@ -1132,6 +1217,8 @@ $generated_i18n_strings = array(
|
|
1132 |
__( 'No change', 'google-analytics-for-wordpress' ),
|
1133 |
|
1134 |
// Reference: src/modules/reports/components/ReportListBox.vue:48
|
|
|
|
|
1135 |
__( 'Show', 'google-analytics-for-wordpress' ),
|
1136 |
|
1137 |
// Reference: src/modules/reports/components/reports/ReportRealTime-Lite.vue:52
|
@@ -1203,6 +1290,7 @@ $generated_i18n_strings = array(
|
|
1203 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
|
1204 |
__( 'Let\'s get you set up.', 'google-analytics-for-wordpress' ),
|
1205 |
|
|
|
1206 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
|
1207 |
__( 'Save and Continue', 'google-analytics-for-wordpress' ),
|
1208 |
|
@@ -1224,6 +1312,7 @@ $generated_i18n_strings = array(
|
|
1224 |
// Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:32
|
1225 |
__( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-for-wordpress' ),
|
1226 |
|
|
|
1227 |
// Reference: src/modules/wizard-onboarding/welcome-Lite.vue:185
|
1228 |
__( 'Google Optimize', 'google-analytics-for-wordpress' ),
|
1229 |
|
@@ -1242,7 +1331,11 @@ $generated_i18n_strings = array(
|
|
1242 |
// Reference: src/modules/license/store/actions.js:80
|
1243 |
__( '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.', 'google-analytics-for-wordpress' ),
|
1244 |
|
|
|
|
|
|
|
1245 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:33
|
|
|
1246 |
__( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
|
1247 |
|
1248 |
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
@@ -1270,6 +1363,9 @@ $generated_i18n_strings = array(
|
|
1270 |
__( 'Can\'t load settings. Error: %s, %s', 'google-analytics-for-wordpress' ),
|
1271 |
|
1272 |
// Reference: src/modules/auth/api/index.js:118
|
|
|
|
|
|
|
1273 |
__( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
|
1274 |
|
1275 |
// Reference: src/modules/addons/store/actions.js:32
|
@@ -1317,8 +1413,10 @@ $generated_i18n_strings = array(
|
|
1317 |
// Reference: src/modules/addons/components/AddonBlock.vue:88
|
1318 |
__( 'Inactive', 'google-analytics-for-wordpress' ),
|
1319 |
|
|
|
1320 |
// Reference: src/modules/addons/components/AddonBlock.vue:96
|
1321 |
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
|
|
|
1322 |
__( 'Upgrade Now', 'google-analytics-for-wordpress' ),
|
1323 |
|
1324 |
// Reference: src/modules/addons/components/AddonBlock.vue:99
|
@@ -1360,12 +1458,15 @@ $generated_i18n_strings = array(
|
|
1360 |
// Reference: src/modules/settings/components/SettingsNetwork.vue:34
|
1361 |
__( 'Add your MonsterInsights license key from the email receipt or account area. %sRetrieve your license key%s.', 'google-analytics-for-wordpress' ),
|
1362 |
|
|
|
1363 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:35
|
1364 |
__( 'Miscellaneous', 'google-analytics-for-wordpress' ),
|
1365 |
|
|
|
1366 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:37
|
1367 |
__( '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' ),
|
1368 |
|
|
|
1369 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:38
|
1370 |
__( 'Hide Announcements', 'google-analytics-for-wordpress' ),
|
1371 |
|
@@ -1427,14 +1528,18 @@ $generated_i18n_strings = array(
|
|
1427 |
__( 'Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site.', 'google-analytics-for-wordpress' ),
|
1428 |
|
1429 |
// Reference: src/modules/auth/api/index.js:140
|
|
|
1430 |
__( 'Can\'t save settings. Error: %s, %s', 'google-analytics-for-wordpress' ),
|
1431 |
|
1432 |
// Reference: src/modules/auth/api/index.js:144
|
1433 |
__( 'You appear to be offline. Settings not saved.', 'google-analytics-for-wordpress' ),
|
1434 |
|
|
|
1435 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:78
|
1436 |
__( 'Authenticating', 'google-analytics-for-wordpress' ),
|
1437 |
|
|
|
|
|
1438 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:105
|
1439 |
__( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
|
1440 |
|
@@ -1450,12 +1555,15 @@ $generated_i18n_strings = array(
|
|
1450 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:221
|
1451 |
__( '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' ),
|
1452 |
|
|
|
1453 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:46
|
1454 |
__( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
|
1455 |
|
1456 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:68
|
1457 |
__( 'Verify Credentials', 'google-analytics-for-wordpress' ),
|
1458 |
|
|
|
|
|
1459 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:47
|
1460 |
__( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
|
1461 |
|
@@ -1465,16 +1573,20 @@ $generated_i18n_strings = array(
|
|
1465 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:71
|
1466 |
__( 'Active Profile', 'google-analytics-for-wordpress' ),
|
1467 |
|
|
|
1468 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
|
1469 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
|
1470 |
|
|
|
1471 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51
|
1472 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
|
1473 |
|
1474 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:74
|
|
|
1475 |
__( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
|
1476 |
|
1477 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:75
|
|
|
1478 |
__( 'Warning: If you use a manual UA code, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
|
1479 |
|
1480 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:76
|
@@ -1489,6 +1601,7 @@ $generated_i18n_strings = array(
|
|
1489 |
// Reference: src/modules/wizard-onboarding/api/index.js:17
|
1490 |
__( 'Can\'t load errors. Error: %s, %s', 'google-analytics-for-wordpress' ),
|
1491 |
|
|
|
1492 |
// Reference: src/modules/settings/components/input/tab-publisher/SettingsInputAmp-Lite.vue:22
|
1493 |
__( 'Google AMP', 'google-analytics-for-wordpress' ),
|
1494 |
|
@@ -1496,6 +1609,7 @@ $generated_i18n_strings = array(
|
|
1496 |
__( 'Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking.', 'google-analytics-for-wordpress' ),
|
1497 |
|
1498 |
// Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:29
|
|
|
1499 |
__( 'Upgrade', 'google-analytics-for-wordpress' ),
|
1500 |
|
1501 |
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:20
|
@@ -1509,15 +1623,18 @@ $generated_i18n_strings = array(
|
|
1509 |
__( 'Adjust the sample rate so you don\'t exceed Google Analytics\' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization.', 'google-analytics-for-wordpress' ),
|
1510 |
|
1511 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
|
|
|
1512 |
__( 'Usage Tracking', 'google-analytics-for-wordpress' ),
|
1513 |
|
1514 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
|
|
|
1515 |
__( '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' ),
|
1516 |
|
1517 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:41
|
1518 |
__( 'Allow usage tracking', 'google-analytics-for-wordpress' ),
|
1519 |
|
1520 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:42
|
|
|
1521 |
__( 'Complete documentation on usage tracking is available %shere%s.', 'google-analytics-for-wordpress' ),
|
1522 |
|
1523 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:19
|
@@ -1539,9 +1656,11 @@ $generated_i18n_strings = array(
|
|
1539 |
__( 'Banner Ads', 'google-analytics-for-wordpress' ),
|
1540 |
|
1541 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
|
|
|
1542 |
__( 'Author Tracking', 'google-analytics-for-wordpress' ),
|
1543 |
|
1544 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:29
|
|
|
1545 |
__( 'Form Conversions', 'google-analytics-for-wordpress' ),
|
1546 |
|
1547 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:31
|
@@ -1681,9 +1800,11 @@ $generated_i18n_strings = array(
|
|
1681 |
__( 'You\'re using %sMonsterInsights Lite%s - no license needed. Enjoy! %s', 'google-analytics-for-wordpress' ),
|
1682 |
|
1683 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:30
|
|
|
1684 |
__( 'To unlock more features consider %supgrading to PRO%s.', 'google-analytics-for-wordpress' ),
|
1685 |
|
1686 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:31
|
|
|
1687 |
__( 'As a valued MonsterInsights Lite user you %sreceive 50%% off%s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
|
1688 |
|
1689 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:32
|
@@ -1711,6 +1832,7 @@ $generated_i18n_strings = array(
|
|
1711 |
__( 'Do Upgrade Later', 'google-analytics-for-wordpress' ),
|
1712 |
|
1713 |
// Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
|
|
|
1714 |
__( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
|
1715 |
|
1716 |
// Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:27
|
@@ -1726,6 +1848,7 @@ $generated_i18n_strings = array(
|
|
1726 |
__( 'You need to %sconnect MonsterInsights%s first', 'google-analytics-for-wordpress' ),
|
1727 |
|
1728 |
// Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:41
|
|
|
1729 |
__( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
|
1730 |
|
1731 |
// Reference: src/modules/wizard-onboarding/welcome-Lite.vue:126
|
@@ -2029,6 +2152,269 @@ $generated_i18n_strings = array(
|
|
2029 |
__( 'UA code can\'t be empty', 'google-analytics-for-wordpress' ),
|
2030 |
|
2031 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
|
2032 |
-
__( 'Saving UA code...', 'google-analytics-for-wordpress' )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2033 |
);
|
2034 |
/* THIS IS THE END OF THE GENERATED FILE */
|
1 |
<?php
|
2 |
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
|
3 |
$generated_i18n_strings = array(
|
4 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:187
|
5 |
__( 'Refreshing Report', 'google-analytics-for-wordpress' ),
|
6 |
|
7 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:188
|
8 |
__( 'Loading new report data...', 'google-analytics-for-wordpress' ),
|
9 |
|
10 |
+
// Reference: src/modules/reports/components/ReportReAuth.vue:45
|
11 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:227
|
12 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:67
|
13 |
+
// Reference: src/modules/widget/components/WidgetReportError.vue:25
|
14 |
+
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:120
|
15 |
__( 'Error', 'google-analytics-for-wordpress' ),
|
16 |
|
17 |
// Reference: src/plugins/monsterinsights-frontend-helper-plugin.js:14
|
|
|
18 |
__( 'Please try again.', 'google-analytics-for-wordpress' ),
|
19 |
|
20 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:229
|
21 |
__( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-for-wordpress' ),
|
22 |
|
23 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:230
|
24 |
__( 'Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
|
25 |
|
26 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:241
|
27 |
__( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-for-wordpress' ),
|
28 |
|
29 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:242
|
30 |
__( 'Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
|
31 |
|
32 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:244
|
33 |
__( 'See Your Top Landing Pages to Improve Enagement', 'google-analytics-for-wordpress' ),
|
34 |
|
35 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:245
|
36 |
__( 'See Your Top Exit Pages to Reduce Abandonment', 'google-analytics-for-wordpress' ),
|
37 |
|
38 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:246
|
39 |
__( 'See Your Top Outbound Links to Find New Revenue Opportunities', 'google-analytics-for-wordpress' ),
|
40 |
|
41 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:247
|
42 |
__( 'See Your Top Affiliate Links and Focus on what\'s working', 'google-analytics-for-wordpress' ),
|
43 |
|
44 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:248
|
45 |
__( 'See Your Top Downloads and Improve Conversions', 'google-analytics-for-wordpress' ),
|
46 |
|
47 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:249
|
48 |
__( 'See Audience Demographic Report ( Age / Gender / Interests )', 'google-analytics-for-wordpress' ),
|
49 |
|
50 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:253
|
51 |
__( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-for-wordpress' ),
|
52 |
|
53 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:254
|
54 |
__( 'Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.', 'google-analytics-for-wordpress' ),
|
55 |
|
56 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256
|
57 |
__( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-for-wordpress' ),
|
58 |
|
59 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:257
|
60 |
__( 'See The Number of Transactions and make data-driven decisions', 'google-analytics-for-wordpress' ),
|
61 |
|
62 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:258
|
63 |
__( 'See The Total Revenue to Track Growth', 'google-analytics-for-wordpress' ),
|
64 |
|
65 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:259
|
66 |
__( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-for-wordpress' ),
|
67 |
|
68 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:260
|
69 |
__( 'See Your Top Products to See Individual Performance', 'google-analytics-for-wordpress' ),
|
70 |
|
71 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:261
|
72 |
__( 'See Your Top Conversion Sources and Focus on what\'s working', 'google-analytics-for-wordpress' ),
|
73 |
|
74 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:262
|
75 |
__( 'See The Time it takes for Customers to Purchase', 'google-analytics-for-wordpress' ),
|
76 |
|
77 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:263
|
78 |
__( 'See How Many Sessions are needed for a Purchase', 'google-analytics-for-wordpress' ),
|
79 |
|
80 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:267
|
81 |
__( 'Unlock the Dimensions Report and Track Your Own Custom Data', 'google-analytics-for-wordpress' ),
|
82 |
|
83 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:268
|
84 |
__( 'Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
|
85 |
|
86 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:270
|
87 |
__( 'See Which Authors Generate the Most Traffic', 'google-analytics-for-wordpress' ),
|
88 |
|
89 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:271
|
90 |
__( 'See Which Post Types Perform Better', 'google-analytics-for-wordpress' ),
|
91 |
|
92 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:272
|
93 |
__( 'See Which Categories are the Most Popular', 'google-analytics-for-wordpress' ),
|
94 |
|
95 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:273
|
96 |
__( 'See Your Blog\'s most populare SEO Scores', 'google-analytics-for-wordpress' ),
|
97 |
|
98 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:274
|
99 |
__( 'See Which Focus Keyword is Performing Better in Search Engines', 'google-analytics-for-wordpress' ),
|
100 |
|
101 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:278
|
102 |
__( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-for-wordpress' ),
|
103 |
|
104 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:279
|
105 |
__( 'Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.', 'google-analytics-for-wordpress' ),
|
106 |
|
107 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:281
|
108 |
__( 'See Reports for Any Contact Form Plugin or Sign-up Form', 'google-analytics-for-wordpress' ),
|
109 |
|
110 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:282
|
111 |
__( 'See Your Top Converting Forms and Optimize', 'google-analytics-for-wordpress' ),
|
112 |
|
113 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:283
|
114 |
__( 'See Your Forms Impressions Count to Find the Best Placement', 'google-analytics-for-wordpress' ),
|
115 |
|
116 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:287
|
117 |
__( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-for-wordpress' ),
|
118 |
|
119 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:288
|
120 |
__( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-for-wordpress' ),
|
121 |
|
122 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:290
|
123 |
__( 'See Your Top Google Search Terms and Optimize Content', 'google-analytics-for-wordpress' ),
|
124 |
|
125 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:291
|
126 |
__( 'See The Number of Clicks and Track Interests', 'google-analytics-for-wordpress' ),
|
127 |
|
128 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:292
|
129 |
__( 'See The Click-Through-Ratio and Improve SEO', 'google-analytics-for-wordpress' ),
|
130 |
|
131 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:293
|
132 |
__( 'See The Average Results Position and Focus on what works', 'google-analytics-for-wordpress' ),
|
133 |
|
134 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:297
|
135 |
__( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-for-wordpress' ),
|
136 |
|
137 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:298
|
138 |
__( 'Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.', 'google-analytics-for-wordpress' ),
|
139 |
|
140 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:300
|
141 |
__( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-for-wordpress' ),
|
142 |
|
143 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:301
|
144 |
__( 'See Your Top Pages Immediately After Making Changes', 'google-analytics-for-wordpress' ),
|
145 |
|
146 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:302
|
147 |
__( 'See Your Top Referral Sources and Adapt Faster', 'google-analytics-for-wordpress' ),
|
148 |
|
149 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:303
|
150 |
__( 'See Your Traffic Demographics and ', 'google-analytics-for-wordpress' ),
|
151 |
|
152 |
+
// Reference: src/plugins/monsterinsights-reports-helper-plugin.js:304
|
153 |
__( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-for-wordpress' ),
|
154 |
|
155 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:236
|
156 |
+
// Reference: src/modules/reports/routes/index.js:24
|
157 |
+
// Reference: src/modules/widget/store/index.js:13
|
158 |
// Reference: src/modules/widget/widget.vue:27
|
159 |
__( 'Overview Report', 'google-analytics-for-wordpress' ),
|
160 |
|
179 |
// Reference: src/modules/settings/site.vue:79
|
180 |
__( 'You Successfully Unlocked the most powerful Analytics plugin', 'google-analytics-for-wordpress' ),
|
181 |
|
182 |
+
// Reference: src/modules/reports/routes/index.js:32
|
183 |
__( 'Publishers Report', 'google-analytics-for-wordpress' ),
|
184 |
|
185 |
// Reference: src/modules/reports/components/reports/ReportEcommerce-Lite.vue:23
|
186 |
+
// Reference: src/modules/reports/routes/index.js:40
|
187 |
__( 'eCommerce Report', 'google-analytics-for-wordpress' ),
|
188 |
|
189 |
+
// Reference: src/modules/reports/components/reports/ReportSearchConsole-Lite.vue:26
|
190 |
+
// Reference: src/modules/reports/routes/index.js:48
|
191 |
__( 'Search Console Report', 'google-analytics-for-wordpress' ),
|
192 |
|
193 |
+
// Reference: src/modules/reports/components/reports/ReportDimensions-Lite.vue:23
|
194 |
+
// Reference: src/modules/reports/routes/index.js:56
|
195 |
__( 'Dimensions Report', 'google-analytics-for-wordpress' ),
|
196 |
|
197 |
// Reference: src/modules/reports/components/reports/ReportForms-Lite.vue:25
|
198 |
+
// Reference: src/modules/reports/routes/index.js:64
|
199 |
__( 'Forms Report', 'google-analytics-for-wordpress' ),
|
200 |
|
201 |
// Reference: src/modules/reports/components/reports/ReportRealTime-Lite.vue:51
|
202 |
+
// Reference: src/modules/reports/routes/index.js:72
|
203 |
__( 'Real-Time Report', 'google-analytics-for-wordpress' ),
|
204 |
|
205 |
// Reference: src/modules/widget/components/WidgetFooter.vue:18
|
206 |
__( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
|
207 |
|
208 |
// Reference: src/modules/addons/components/AddonBlock.vue:113
|
209 |
+
// Reference: src/modules/addons/store/actions.js:47
|
210 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:19
|
211 |
__( 'Install', 'google-analytics-for-wordpress' ),
|
212 |
|
213 |
// Reference: src/modules/addons/components/AddonBlock.vue:111
|
214 |
+
// Reference: src/modules/addons/store/actions.js:47
|
215 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:20
|
216 |
__( 'Activate', 'google-analytics-for-wordpress' ),
|
217 |
|
218 |
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
|
219 |
+
// Reference: src/modules/widget/components/WidgetFooter.vue:21
|
220 |
+
// Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:26
|
221 |
__( 'Learn More', 'google-analytics-for-wordpress' ),
|
222 |
|
223 |
+
// Reference: src/modules/reports/components/ReportsNavigation.vue:40
|
224 |
// Reference: src/modules/widget/store/index.js:75
|
225 |
__( 'Overview', 'google-analytics-for-wordpress' ),
|
226 |
|
227 |
+
// Reference: src/modules/reports/components/ReportsNavigation.vue:41
|
228 |
+
// Reference: src/modules/reports/components/reports/ReportPublishers-Lite.vue:25
|
229 |
__( 'Publishers', 'google-analytics-for-wordpress' ),
|
230 |
|
231 |
+
// Reference: src/modules/reports/components/ReportsNavigation.vue:42
|
232 |
// Reference: src/modules/reports/components/reports/ReportEcommerce-Lite.vue:22
|
233 |
+
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:57
|
234 |
+
// Reference: src/modules/settings/routes/site.js:45
|
235 |
__( 'eCommerce', 'google-analytics-for-wordpress' ),
|
236 |
|
237 |
+
// Reference: src/modules/reports/components/ReportsNavigation.vue:43
|
238 |
__( 'Search Console', 'google-analytics-for-wordpress' ),
|
239 |
|
240 |
+
// Reference: src/modules/reports/components/ReportsNavigation.vue:44
|
241 |
+
// Reference: src/modules/reports/components/reports/ReportDimensions-Lite.vue:22
|
242 |
__( 'Dimensions', 'google-analytics-for-wordpress' ),
|
243 |
|
244 |
+
// Reference: src/modules/reports/components/ReportsNavigation.vue:45
|
245 |
__( 'Forms', 'google-analytics-for-wordpress' ),
|
246 |
|
247 |
+
// Reference: src/modules/reports/components/ReportsNavigation.vue:46
|
248 |
__( 'Real-Time', 'google-analytics-for-wordpress' ),
|
249 |
|
250 |
// Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
|
252 |
|
253 |
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:15
|
254 |
// Reference: src/modules/settings/routes/network.js:35
|
255 |
+
// Reference: src/modules/settings/routes/site.js:109
|
256 |
__( 'About Us', 'google-analytics-for-wordpress' ),
|
257 |
|
258 |
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:16
|
259 |
// Reference: src/modules/settings/routes/network.js:43
|
260 |
+
// Reference: src/modules/settings/routes/site.js:117
|
261 |
__( 'Getting Started', 'google-analytics-for-wordpress' ),
|
262 |
|
263 |
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
|
264 |
+
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:52
|
265 |
// Reference: src/modules/settings/routes/network.js:52
|
266 |
+
// Reference: src/modules/settings/routes/site.js:126
|
267 |
__( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
|
268 |
|
269 |
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:55
|
270 |
+
// Reference: src/modules/settings/routes/site.js:29
|
271 |
__( 'General', 'google-analytics-for-wordpress' ),
|
272 |
|
273 |
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:56
|
274 |
+
// Reference: src/modules/settings/routes/site.js:37
|
275 |
__( 'Engagement', 'google-analytics-for-wordpress' ),
|
276 |
|
277 |
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:58
|
278 |
+
// Reference: src/modules/settings/routes/site.js:53
|
279 |
__( 'Publisher', 'google-analytics-for-wordpress' ),
|
280 |
|
281 |
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:59
|
282 |
+
// Reference: src/modules/settings/routes/site.js:61
|
283 |
__( 'Conversions', 'google-analytics-for-wordpress' ),
|
284 |
|
285 |
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:60
|
286 |
+
// Reference: src/modules/settings/routes/site.js:69
|
287 |
__( 'Advanced', 'google-analytics-for-wordpress' ),
|
288 |
|
289 |
+
// Reference: src/modules/settings/routes/site.js:86
|
290 |
// Reference: src/modules/tools/components/ToolsNavigation.vue:15
|
291 |
__( 'URL Builder', 'google-analytics-for-wordpress' ),
|
292 |
|
293 |
+
// Reference: src/modules/settings/routes/site.js:94
|
294 |
// Reference: src/modules/tools/components/ToolsNavigation.vue:14
|
295 |
__( 'Import Export', 'google-analytics-for-wordpress' ),
|
296 |
|
307 |
__( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-for-wordpress' ),
|
308 |
|
309 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:249
|
310 |
+
// Reference: src/modules/widget/store/index.js:19
|
311 |
__( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
|
312 |
|
313 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:260
|
314 |
+
// Reference: src/modules/widget/store/index.js:20
|
315 |
__( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
|
316 |
|
317 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:243
|
318 |
+
// Reference: src/modules/widget/store/index.js:26
|
319 |
__( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
|
320 |
|
321 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:256
|
322 |
+
// Reference: src/modules/widget/store/index.js:27
|
323 |
__( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
|
324 |
|
325 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:244
|
326 |
+
// Reference: src/modules/widget/store/index.js:33
|
327 |
__( 'Device Breakdown', 'google-analytics-for-wordpress' ),
|
328 |
|
329 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:257
|
330 |
+
// Reference: src/modules/widget/store/index.js:34
|
331 |
__( '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' ),
|
332 |
|
333 |
// Reference: src/modules/widget/store/index.js:40
|
409 |
__( 'Returning', 'google-analytics-for-wordpress' ),
|
410 |
|
411 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:178
|
412 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:496
|
413 |
__( 'Desktop', 'google-analytics-for-wordpress' ),
|
414 |
|
415 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:179
|
416 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:497
|
417 |
__( 'Tablet', 'google-analytics-for-wordpress' ),
|
418 |
|
419 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:180
|
420 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:498
|
421 |
__( 'Mobile', 'google-analytics-for-wordpress' ),
|
422 |
|
423 |
+
// Reference: src/modules/frontend/components/FrontendStatsGeneral.vue:26
|
424 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:237
|
425 |
+
// Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:62
|
426 |
__( 'Sessions', 'google-analytics-for-wordpress' ),
|
427 |
|
428 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:238
|
429 |
+
// Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:63
|
430 |
__( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
|
431 |
|
432 |
+
// Reference: src/modules/frontend/components/FrontendStatsGeneral.vue:27
|
433 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:239
|
434 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:300
|
435 |
+
// Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:64
|
436 |
__( 'Pageviews', 'google-analytics-for-wordpress' ),
|
437 |
|
438 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:240
|
439 |
+
// Reference: src/modules/reports/components/reports/ReportRealTime-Lite.vue:61
|
440 |
+
// Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:65
|
441 |
__( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
|
442 |
|
443 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:241
|
444 |
+
// Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:70
|
445 |
__( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
|
446 |
|
447 |
+
// Reference: src/modules/frontend/components/FrontendStatsGeneral.vue:29
|
448 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:242
|
449 |
+
// Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:71
|
450 |
__( 'Bounce Rate', 'google-analytics-for-wordpress' ),
|
451 |
|
452 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:245
|
465 |
__( 'View Full Posts/Pages Report', 'google-analytics-for-wordpress' ),
|
466 |
|
467 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:252
|
468 |
+
// Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:66
|
469 |
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-for-wordpress' ),
|
470 |
|
471 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:253
|
472 |
+
// Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:67
|
473 |
__( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-for-wordpress' ),
|
474 |
|
475 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:254
|
476 |
+
// Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:68
|
477 |
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-for-wordpress' ),
|
478 |
|
479 |
// Reference: src/modules/reports/components/reports/ReportOverview.vue:255
|
492 |
__( 'Search Addons', 'google-analytics-for-wordpress' ),
|
493 |
|
494 |
// Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:88
|
495 |
+
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:77
|
496 |
__( 'Yes (recommended) %s- Get the latest features, bugfixes, and security updates as they are released.%s', 'google-analytics-for-wordpress' ),
|
497 |
|
498 |
// Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:92
|
499 |
+
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:81
|
500 |
__( 'Minor only %s- Get bugfixes and security updates, but not major features.%s', 'google-analytics-for-wordpress' ),
|
501 |
|
502 |
// Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:96
|
503 |
+
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:85
|
504 |
__( 'None %s- Manually update everything.%s', 'google-analytics-for-wordpress' ),
|
505 |
|
506 |
+
// Reference: src/modules/settings/components/SettingsNetwork.vue:33
|
507 |
+
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:88
|
508 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingLicense-Lite.vue:27
|
509 |
__( 'License Key', 'google-analytics-for-wordpress' ),
|
510 |
|
511 |
+
// Reference: src/modules/settings/components/SettingsNetwork.vue:35
|
512 |
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:89
|
513 |
__( 'Google Authentication', 'google-analytics-for-wordpress' ),
|
514 |
|
515 |
+
// Reference: src/modules/settings/components/SettingsNetwork.vue:36
|
516 |
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:90
|
517 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:50
|
518 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
|
519 |
|
520 |
+
// Reference: src/modules/settings/components/SettingsNetwork.vue:37
|
521 |
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:91
|
522 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:51
|
523 |
__( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
|
524 |
|
525 |
// Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:68
|
526 |
+
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:92
|
527 |
__( 'Automatic Updates', 'google-analytics-for-wordpress' ),
|
528 |
|
529 |
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:93
|
533 |
__( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
|
534 |
|
535 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:27
|
536 |
+
// Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:95
|
537 |
__( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
|
538 |
|
539 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:41
|
540 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:70
|
541 |
__( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
|
542 |
|
543 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:43
|
544 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:72
|
545 |
__( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
|
546 |
|
547 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:47
|
548 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:76
|
549 |
__( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
|
550 |
|
551 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:49
|
552 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
|
553 |
__( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
|
554 |
|
555 |
+
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24
|
556 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:52
|
557 |
__( 'Affiliate Links', 'google-analytics-for-wordpress' ),
|
558 |
|
562 |
// Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:54
|
563 |
__( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-for-wordpress' ),
|
564 |
|
565 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:277
|
566 |
// Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:59
|
567 |
__( 'Demographics', 'google-analytics-for-wordpress' ),
|
568 |
|
756 |
// Reference: src/modules/tools/components/ToolsTabImportExport.vue:87
|
757 |
__( 'Please choose a .json file generated by a MonsterInsights settings export.', 'google-analytics-for-wordpress' ),
|
758 |
|
759 |
+
// Reference: src/modules/reports/components/ReportReAuth.vue:47
|
760 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:229
|
761 |
// Reference: src/modules/tools/components/ToolsTabImportExport.vue:88
|
762 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:122
|
763 |
__( 'Ok', 'google-analytics-for-wordpress' ),
|
945 |
// Reference: src/modules/about/components/AboutTabGettingStarted.vue:83
|
946 |
__( 'More advanced features', 'google-analytics-for-wordpress' ),
|
947 |
|
948 |
+
// Reference: src/modules/about/components/AboutTabGettingStarted.vue:85
|
949 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:57
|
950 |
__( 'Get MonsterInsights Pro Today and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
|
951 |
|
952 |
+
// Reference: src/modules/about/components/AboutTabGettingStarted.vue:86
|
953 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:58
|
954 |
__( 'Bonus: MonsterInsights Lite users get %s50%% off regular price%s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
|
955 |
|
1004 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:125
|
1005 |
__( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-for-wordpress' ),
|
1006 |
|
1007 |
+
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:128
|
1008 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:25
|
1009 |
+
// Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:35
|
1010 |
+
// Reference: src/modules/wizard-onboarding/welcome-Lite.vue:183
|
1011 |
__( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
|
1012 |
|
1013 |
+
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:131
|
1014 |
// Reference: src/modules/addons/components/AddonBlock.vue:83
|
1015 |
__( 'Not Available', 'google-analytics-for-wordpress' ),
|
1016 |
|
1042 |
__( 'Pro', 'google-analytics-for-wordpress' ),
|
1043 |
|
1044 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:61
|
1045 |
+
// Reference: src/modules/wizard-onboarding/welcome-Lite.vue:140
|
1046 |
__( 'Universal Tracking', 'google-analytics-for-wordpress' ),
|
1047 |
|
1048 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:63
|
1088 |
__( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-for-wordpress' ),
|
1089 |
|
1090 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:94
|
1091 |
+
// Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:31
|
1092 |
__( 'Forms Tracking', 'google-analytics-for-wordpress' ),
|
1093 |
|
1094 |
// Reference: src/modules/about/components/AboutTabLiteVsPro.vue:98
|
1115 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
|
1116 |
__( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
|
1117 |
|
1118 |
+
// Reference: src/modules/addons/components/AddonBlock.vue:105
|
1119 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46
|
1120 |
__( 'Installing...', 'google-analytics-for-wordpress' ),
|
1121 |
|
1195 |
__( 'These user roles will be able to access MonsterInsights\'s reports in the WordPress admin area.', 'google-analytics-for-wordpress' ),
|
1196 |
|
1197 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedAddons-Lite.vue:49
|
1198 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
|
1199 |
__( 'Save and continue', 'google-analytics-for-wordpress' ),
|
1200 |
|
1201 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
|
1217 |
__( 'No change', 'google-analytics-for-wordpress' ),
|
1218 |
|
1219 |
// Reference: src/modules/reports/components/ReportListBox.vue:48
|
1220 |
+
// Reference: src/modules/reports/components/ReportTableBox.vue:77
|
1221 |
+
// Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:38
|
1222 |
__( 'Show', 'google-analytics-for-wordpress' ),
|
1223 |
|
1224 |
// Reference: src/modules/reports/components/reports/ReportRealTime-Lite.vue:52
|
1290 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
|
1291 |
__( 'Let\'s get you set up.', 'google-analytics-for-wordpress' ),
|
1292 |
|
1293 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55
|
1294 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
|
1295 |
__( 'Save and Continue', 'google-analytics-for-wordpress' ),
|
1296 |
|
1312 |
// Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:32
|
1313 |
__( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-for-wordpress' ),
|
1314 |
|
1315 |
+
// Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:33
|
1316 |
// Reference: src/modules/wizard-onboarding/welcome-Lite.vue:185
|
1317 |
__( 'Google Optimize', 'google-analytics-for-wordpress' ),
|
1318 |
|
1331 |
// Reference: src/modules/license/store/actions.js:80
|
1332 |
__( '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.', 'google-analytics-for-wordpress' ),
|
1333 |
|
1334 |
+
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsell-Lite.vue:30
|
1335 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:327
|
1336 |
+
// Reference: src/modules/reports/components/upsells/ReportUpsellOverlay.vue:29
|
1337 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:33
|
1338 |
+
// Reference: src/modules/settings/components/tabs/SettingsTabEcommerce-Lite.vue:33
|
1339 |
__( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
|
1340 |
|
1341 |
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
1363 |
__( 'Can\'t load settings. Error: %s, %s', 'google-analytics-for-wordpress' ),
|
1364 |
|
1365 |
// Reference: src/modules/auth/api/index.js:118
|
1366 |
+
// Reference: src/modules/license/api/index.js:143
|
1367 |
+
// Reference: src/modules/settings/api/index.js:22
|
1368 |
+
// Reference: src/modules/wizard-onboarding/api/index.js:21
|
1369 |
__( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
|
1370 |
|
1371 |
// Reference: src/modules/addons/store/actions.js:32
|
1413 |
// Reference: src/modules/addons/components/AddonBlock.vue:88
|
1414 |
__( 'Inactive', 'google-analytics-for-wordpress' ),
|
1415 |
|
1416 |
+
// Reference: src/modules/addons/addons-Lite.vue:79
|
1417 |
// Reference: src/modules/addons/components/AddonBlock.vue:96
|
1418 |
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
|
1419 |
+
// Reference: src/modules/wizard-onboarding/welcome-Lite.vue:135
|
1420 |
__( 'Upgrade Now', 'google-analytics-for-wordpress' ),
|
1421 |
|
1422 |
// Reference: src/modules/addons/components/AddonBlock.vue:99
|
1458 |
// Reference: src/modules/settings/components/SettingsNetwork.vue:34
|
1459 |
__( 'Add your MonsterInsights license key from the email receipt or account area. %sRetrieve your license key%s.', 'google-analytics-for-wordpress' ),
|
1460 |
|
1461 |
+
// Reference: src/modules/settings/components/SettingsNetwork.vue:38
|
1462 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:35
|
1463 |
__( 'Miscellaneous', 'google-analytics-for-wordpress' ),
|
1464 |
|
1465 |
+
// Reference: src/modules/settings/components/SettingsNetwork.vue:40
|
1466 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:37
|
1467 |
__( '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' ),
|
1468 |
|
1469 |
+
// Reference: src/modules/settings/components/SettingsNetwork.vue:41
|
1470 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:38
|
1471 |
__( 'Hide Announcements', 'google-analytics-for-wordpress' ),
|
1472 |
|
1528 |
__( 'Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site.', 'google-analytics-for-wordpress' ),
|
1529 |
|
1530 |
// Reference: src/modules/auth/api/index.js:140
|
1531 |
+
// Reference: src/modules/settings/api/index.js:48
|
1532 |
__( 'Can\'t save settings. Error: %s, %s', 'google-analytics-for-wordpress' ),
|
1533 |
|
1534 |
// Reference: src/modules/auth/api/index.js:144
|
1535 |
__( 'You appear to be offline. Settings not saved.', 'google-analytics-for-wordpress' ),
|
1536 |
|
1537 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:116
|
1538 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:78
|
1539 |
__( 'Authenticating', 'google-analytics-for-wordpress' ),
|
1540 |
|
1541 |
+
// Reference: src/modules/reports/components/ReportReAuth.vue:30
|
1542 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:143
|
1543 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:105
|
1544 |
__( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
|
1545 |
|
1555 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:221
|
1556 |
__( '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' ),
|
1557 |
|
1558 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:67
|
1559 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:46
|
1560 |
__( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
|
1561 |
|
1562 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:68
|
1563 |
__( 'Verify Credentials', 'google-analytics-for-wordpress' ),
|
1564 |
|
1565 |
+
// Reference: src/modules/reports/components/ReportReAuth.vue:21
|
1566 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:69
|
1567 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:47
|
1568 |
__( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
|
1569 |
|
1573 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:71
|
1574 |
__( 'Active Profile', 'google-analytics-for-wordpress' ),
|
1575 |
|
1576 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:72
|
1577 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
|
1578 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
|
1579 |
|
1580 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:73
|
1581 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51
|
1582 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
|
1583 |
|
1584 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:74
|
1585 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:53
|
1586 |
__( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
|
1587 |
|
1588 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:75
|
1589 |
+
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:54
|
1590 |
__( 'Warning: If you use a manual UA code, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
|
1591 |
|
1592 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:76
|
1601 |
// Reference: src/modules/wizard-onboarding/api/index.js:17
|
1602 |
__( 'Can\'t load errors. Error: %s, %s', 'google-analytics-for-wordpress' ),
|
1603 |
|
1604 |
+
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:30
|
1605 |
// Reference: src/modules/settings/components/input/tab-publisher/SettingsInputAmp-Lite.vue:22
|
1606 |
__( 'Google AMP', 'google-analytics-for-wordpress' ),
|
1607 |
|
1609 |
__( 'Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking.', 'google-analytics-for-wordpress' ),
|
1610 |
|
1611 |
// Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:29
|
1612 |
+
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:19
|
1613 |
__( 'Upgrade', 'google-analytics-for-wordpress' ),
|
1614 |
|
1615 |
// Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:20
|
1623 |
__( 'Adjust the sample rate so you don\'t exceed Google Analytics\' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization.', 'google-analytics-for-wordpress' ),
|
1624 |
|
1625 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
|
1626 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:27
|
1627 |
__( 'Usage Tracking', 'google-analytics-for-wordpress' ),
|
1628 |
|
1629 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
|
1630 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
|
1631 |
__( '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' ),
|
1632 |
|
1633 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:41
|
1634 |
__( 'Allow usage tracking', 'google-analytics-for-wordpress' ),
|
1635 |
|
1636 |
// Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:42
|
1637 |
+
// Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:30
|
1638 |
__( 'Complete documentation on usage tracking is available %shere%s.', 'google-analytics-for-wordpress' ),
|
1639 |
|
1640 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:19
|
1656 |
__( 'Banner Ads', 'google-analytics-for-wordpress' ),
|
1657 |
|
1658 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
|
1659 |
+
// Reference: src/modules/wizard-onboarding/welcome-Lite.vue:184
|
1660 |
__( 'Author Tracking', 'google-analytics-for-wordpress' ),
|
1661 |
|
1662 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:29
|
1663 |
+
// Reference: src/modules/wizard-onboarding/welcome-Lite.vue:182
|
1664 |
__( 'Form Conversions', 'google-analytics-for-wordpress' ),
|
1665 |
|
1666 |
// Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:31
|
1800 |
__( 'You\'re using %sMonsterInsights Lite%s - no license needed. Enjoy! %s', 'google-analytics-for-wordpress' ),
|
1801 |
|
1802 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:30
|
1803 |
+
// Reference: src/modules/settings/components/network/SettingsInputLicenseNetwork-Lite.vue:21
|
1804 |
__( 'To unlock more features consider %supgrading to PRO%s.', 'google-analytics-for-wordpress' ),
|
1805 |
|
1806 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:31
|
1807 |
+
// Reference: src/modules/settings/components/network/SettingsInputLicenseNetwork-Lite.vue:22
|
1808 |
__( 'As a valued MonsterInsights Lite user you %sreceive 50%% off%s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
|
1809 |
|
1810 |
// Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:32
|
1832 |
__( 'Do Upgrade Later', 'google-analytics-for-wordpress' ),
|
1833 |
|
1834 |
// Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
|
1835 |
+
// Reference: src/modules/wizard-onboarding/welcome-Lite.vue:133
|
1836 |
__( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
|
1837 |
|
1838 |
// Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:27
|
1848 |
__( 'You need to %sconnect MonsterInsights%s first', 'google-analytics-for-wordpress' ),
|
1849 |
|
1850 |
// Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:41
|
1851 |
+
// Reference: src/modules/wizard-onboarding/welcome-Lite.vue:125
|
1852 |
__( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
|
1853 |
|
1854 |
// Reference: src/modules/wizard-onboarding/welcome-Lite.vue:126
|
2152 |
__( 'UA code can\'t be empty', 'google-analytics-for-wordpress' ),
|
2153 |
|
2154 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
|
2155 |
+
__( 'Saving UA code...', 'google-analytics-for-wordpress' ),
|
2156 |
+
|
2157 |
+
// Reference: src/modules/reports/components/ReportsNavigation.vue:48
|
2158 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:263
|
2159 |
+
// Reference: src/modules/reports/routes/index.js:85
|
2160 |
+
__( '2019 Year in Review', 'google-analytics-for-wordpress' ),
|
2161 |
+
|
2162 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:259
|
2163 |
+
__( 'Still Calculating...', 'google-analytics-for-wordpress' ),
|
2164 |
+
|
2165 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:260
|
2166 |
+
__( 'Your 2019 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
|
2167 |
+
|
2168 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:261
|
2169 |
+
__( 'Back to Overview Report', 'google-analytics-for-wordpress' ),
|
2170 |
+
|
2171 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:262
|
2172 |
+
__( 'Your 2019 Analytics Report', 'google-analytics-for-wordpress' ),
|
2173 |
+
|
2174 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:264
|
2175 |
+
__( 'See how your website performed this year and find tips along the way to help grow even more in 2020!', 'google-analytics-for-wordpress' ),
|
2176 |
+
|
2177 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:265
|
2178 |
+
__( 'Audience', 'google-analytics-for-wordpress' ),
|
2179 |
+
|
2180 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:266
|
2181 |
+
__( 'Congrats', 'google-analytics-for-wordpress' ),
|
2182 |
+
|
2183 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:267
|
2184 |
+
__( 'Your website was quite popular this year! ', 'google-analytics-for-wordpress' ),
|
2185 |
+
|
2186 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:268
|
2187 |
+
__( 'You had ', 'google-analytics-for-wordpress' ),
|
2188 |
+
|
2189 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:269
|
2190 |
+
__( ' visitors!', 'google-analytics-for-wordpress' ),
|
2191 |
+
|
2192 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:270
|
2193 |
+
__( ' visitors', 'google-analytics-for-wordpress' ),
|
2194 |
+
|
2195 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:271
|
2196 |
+
__( 'Total Visitors', 'google-analytics-for-wordpress' ),
|
2197 |
+
|
2198 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:272
|
2199 |
+
__( 'Total Sessions', 'google-analytics-for-wordpress' ),
|
2200 |
+
|
2201 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:273
|
2202 |
+
__( 'Visitors by Month', 'google-analytics-for-wordpress' ),
|
2203 |
+
|
2204 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:274
|
2205 |
+
__( 'January 1, 2019 - December 31, 2019', 'google-analytics-for-wordpress' ),
|
2206 |
+
|
2207 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:275
|
2208 |
+
__( 'A Tip for 2020', 'google-analytics-for-wordpress' ),
|
2209 |
+
|
2210 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:276
|
2211 |
+
__( 'See the top Traffic Sources and Top Pages for the Month of May in the Overview Report to replicate your success.', 'google-analytics-for-wordpress' ),
|
2212 |
+
|
2213 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:278
|
2214 |
+
__( '#1', 'google-analytics-for-wordpress' ),
|
2215 |
+
|
2216 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:279
|
2217 |
+
__( 'You Top 5 Countries', 'google-analytics-for-wordpress' ),
|
2218 |
+
|
2219 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:280
|
2220 |
+
__( 'Let’s get to know your visitors a little better, shall we?', 'google-analytics-for-wordpress' ),
|
2221 |
+
|
2222 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:281
|
2223 |
+
__( 'Gender', 'google-analytics-for-wordpress' ),
|
2224 |
+
|
2225 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:282
|
2226 |
+
__( 'Female', 'google-analytics-for-wordpress' ),
|
2227 |
+
|
2228 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:283
|
2229 |
+
__( 'Women', 'google-analytics-for-wordpress' ),
|
2230 |
+
|
2231 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:284
|
2232 |
+
__( 'Male', 'google-analytics-for-wordpress' ),
|
2233 |
+
|
2234 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:285
|
2235 |
+
__( 'Average Age', 'google-analytics-for-wordpress' ),
|
2236 |
+
|
2237 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:286
|
2238 |
+
__( 'Behavior', 'google-analytics-for-wordpress' ),
|
2239 |
+
|
2240 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:287
|
2241 |
+
__( 'Your Top 5 Pages', 'google-analytics-for-wordpress' ),
|
2242 |
+
|
2243 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:289
|
2244 |
+
__( 'Time Spent on Site', 'google-analytics-for-wordpress' ),
|
2245 |
+
|
2246 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:290
|
2247 |
+
__( 'minutes', 'google-analytics-for-wordpress' ),
|
2248 |
+
|
2249 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:291
|
2250 |
+
__( 'Device Type', 'google-analytics-for-wordpress' ),
|
2251 |
+
|
2252 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:292
|
2253 |
+
__( 'A Tip For 2020', 'google-analytics-for-wordpress' ),
|
2254 |
+
|
2255 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:293
|
2256 |
+
__( 'Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic.', 'google-analytics-for-wordpress' ),
|
2257 |
+
|
2258 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:294
|
2259 |
+
__( 'Read - 32 Marketing Hacks to Grow Your Traffic', 'google-analytics-for-wordpress' ),
|
2260 |
+
|
2261 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:295
|
2262 |
+
__( 'So, where did all of these visitors come from?', 'google-analytics-for-wordpress' ),
|
2263 |
+
|
2264 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:296
|
2265 |
+
__( 'Impressions', 'google-analytics-for-wordpress' ),
|
2266 |
+
|
2267 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:297
|
2268 |
+
__( 'Your Top 5 Keywords', 'google-analytics-for-wordpress' ),
|
2269 |
+
|
2270 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:298
|
2271 |
+
__( 'What keywords visitors searched for to find your site', 'google-analytics-for-wordpress' ),
|
2272 |
+
|
2273 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:299
|
2274 |
+
__( 'Your Top 5 Referrals', 'google-analytics-for-wordpress' ),
|
2275 |
+
|
2276 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:301
|
2277 |
+
__( 'The websites that link back to your website', 'google-analytics-for-wordpress' ),
|
2278 |
+
|
2279 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:302
|
2280 |
+
__( 'Opportunity', 'google-analytics-for-wordpress' ),
|
2281 |
+
|
2282 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:303
|
2283 |
+
__( '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.', 'google-analytics-for-wordpress' ),
|
2284 |
+
|
2285 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:304
|
2286 |
+
__( 'Read - How to Ethically Steal Your Competitor’s Traffic', 'google-analytics-for-wordpress' ),
|
2287 |
+
|
2288 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:305
|
2289 |
+
__( 'Thank you for using MonsterInsights!', 'google-analytics-for-wordpress' ),
|
2290 |
+
|
2291 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:306
|
2292 |
+
__( '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.', 'google-analytics-for-wordpress' ),
|
2293 |
+
|
2294 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:307
|
2295 |
+
__( 'Here\'s to an amazing 2020!', 'google-analytics-for-wordpress' ),
|
2296 |
+
|
2297 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:308
|
2298 |
+
__( 'Enjoying MonsterInsights', 'google-analytics-for-wordpress' ),
|
2299 |
+
|
2300 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:309
|
2301 |
+
__( 'Leave a five star review!', 'google-analytics-for-wordpress' ),
|
2302 |
+
|
2303 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:310
|
2304 |
+
__( 'Syed Balkhi', 'google-analytics-for-wordpress' ),
|
2305 |
+
|
2306 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:311
|
2307 |
+
__( 'Chris Christoff', 'google-analytics-for-wordpress' ),
|
2308 |
+
|
2309 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:312
|
2310 |
+
__( 'Write Review', 'google-analytics-for-wordpress' ),
|
2311 |
+
|
2312 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:313
|
2313 |
+
__( 'Did you know over 10 million websites use our plugins?', 'google-analytics-for-wordpress' ),
|
2314 |
+
|
2315 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:314
|
2316 |
+
__( 'Try our other popular WordPress plugins to grow your website in 2020.', 'google-analytics-for-wordpress' ),
|
2317 |
+
|
2318 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:315
|
2319 |
+
__( 'Join our Communities!', 'google-analytics-for-wordpress' ),
|
2320 |
+
|
2321 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:316
|
2322 |
+
__( 'Become a WordPress expert in 2020. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
|
2323 |
+
|
2324 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:317
|
2325 |
+
__( 'Facebook Group', 'google-analytics-for-wordpress' ),
|
2326 |
+
|
2327 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:318
|
2328 |
+
__( 'Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group.', 'google-analytics-for-wordpress' ),
|
2329 |
+
|
2330 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:319
|
2331 |
+
__( 'Join Now...It’s Free!', 'google-analytics-for-wordpress' ),
|
2332 |
+
|
2333 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:320
|
2334 |
+
__( 'WordPress Tutorials by WPBeginner', 'google-analytics-for-wordpress' ),
|
2335 |
+
|
2336 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:321
|
2337 |
+
__( 'WPBeginner is the largest free WordPress resource site for beginners and non-techy users.', 'google-analytics-for-wordpress' ),
|
2338 |
+
|
2339 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:322
|
2340 |
+
__( 'Visit WPBeginner', 'google-analytics-for-wordpress' ),
|
2341 |
+
|
2342 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:323
|
2343 |
+
__( 'Follow Us!', 'google-analytics-for-wordpress' ),
|
2344 |
+
|
2345 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:324
|
2346 |
+
__( 'Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics.', 'google-analytics-for-wordpress' ),
|
2347 |
+
|
2348 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:325
|
2349 |
+
__( 'Copyright MonsterInsights, 2020', 'google-analytics-for-wordpress' ),
|
2350 |
+
|
2351 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:326
|
2352 |
+
__( 'Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights', 'google-analytics-for-wordpress' ),
|
2353 |
+
|
2354 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:329
|
2355 |
+
__( 'January', 'google-analytics-for-wordpress' ),
|
2356 |
+
|
2357 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:330
|
2358 |
+
__( 'February', 'google-analytics-for-wordpress' ),
|
2359 |
+
|
2360 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:331
|
2361 |
+
__( 'March', 'google-analytics-for-wordpress' ),
|
2362 |
+
|
2363 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:332
|
2364 |
+
__( 'April', 'google-analytics-for-wordpress' ),
|
2365 |
+
|
2366 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:333
|
2367 |
+
__( 'May', 'google-analytics-for-wordpress' ),
|
2368 |
+
|
2369 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:334
|
2370 |
+
__( 'June', 'google-analytics-for-wordpress' ),
|
2371 |
+
|
2372 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:335
|
2373 |
+
__( 'July', 'google-analytics-for-wordpress' ),
|
2374 |
+
|
2375 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:336
|
2376 |
+
__( 'August', 'google-analytics-for-wordpress' ),
|
2377 |
+
|
2378 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:337
|
2379 |
+
__( 'September', 'google-analytics-for-wordpress' ),
|
2380 |
+
|
2381 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:338
|
2382 |
+
__( 'October', 'google-analytics-for-wordpress' ),
|
2383 |
+
|
2384 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:339
|
2385 |
+
__( 'November', 'google-analytics-for-wordpress' ),
|
2386 |
+
|
2387 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:340
|
2388 |
+
__( 'December', 'google-analytics-for-wordpress' ),
|
2389 |
+
|
2390 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:367
|
2391 |
+
__( 'Your best month was <strong>%s</strong> with <strong>%s visitors!</strong>', 'google-analytics-for-wordpress' ),
|
2392 |
+
|
2393 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:385
|
2394 |
+
__( 'Your <strong>%s</strong> visitors came from <strong>%s</strong> different countries.', 'google-analytics-for-wordpress' ),
|
2395 |
+
|
2396 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:391
|
2397 |
+
__( '%s Visitors', 'google-analytics-for-wordpress' ),
|
2398 |
+
|
2399 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:405
|
2400 |
+
__( '%s% of your visitors were %s', 'google-analytics-for-wordpress' ),
|
2401 |
+
|
2402 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:411
|
2403 |
+
__( '%s% of your visitors were between the ages of %s', 'google-analytics-for-wordpress' ),
|
2404 |
+
|
2405 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:423
|
2406 |
+
__( 'Your <strong>%s</strong> visitors viewed a total of <strong>%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 %s pages for each visitor!</span>', 'google-analytics-for-wordpress' ),
|
2407 |
+
|
2408 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:447
|
2409 |
+
__( 'Each visitor spent an average of %s minutes on your website in 2019.', 'google-analytics-for-wordpress' ),
|
2410 |
+
|
2411 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:468
|
2412 |
+
__( 'Most of your visitors viewed your website from their <strong>%s</strong> device.', 'google-analytics-for-wordpress' ),
|
2413 |
+
|
2414 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:471
|
2415 |
+
__( '%s% of your visitors were on a %s device.', 'google-analytics-for-wordpress' ),
|
2416 |
+
|
2417 |
+
// Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:296
|
2418 |
+
__( 'Clicks', 'google-analytics-for-wordpress' )
|
2419 |
);
|
2420 |
/* THIS IS THE END OF THE GENERATED FILE */
|
lite/assets/vue/css/chunk-common.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-493c7577]{display:block}.monsterinsights-reset-default[data-v-493c7577]{margin-left:5px}.monsterinsights-dark[data-v-f66259b4]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#4e5c66;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -10px 20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:10px;position:absolute;right:15px;top:50%;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.float-right[data-v-7a774924]{float:right}.monsterinsights-container[data-v-7a774924]:after{display:table;clear:both;content:""}.monsterinsights-quick-links{position:fixed;bottom:25px;right:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;left:2px;right:2px;top:2px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(../img/mascot.png)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}.monsterinsights-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;right:6px;margin-bottom:10px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-link-title{position:absolute;right:100%;margin-right:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.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"}@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-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}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}.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-top:10px;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}@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{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-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-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-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.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){.monsterinsights-swal{margin-left:160px}.auto-fold .monsterinsights-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .monsterinsights-swal{margin-left:160px}.folded .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%}
|
1 |
+
strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-493c7577]{display:block}.monsterinsights-reset-default[data-v-493c7577]{margin-left:5px}.monsterinsights-dark[data-v-f66259b4]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#4e5c66;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -10px 20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:10px;position:absolute;right:15px;top:50%;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.float-right[data-v-7a774924]{float:right}.monsterinsights-container[data-v-7a774924]:after{display:table;clear:both;content:""}.monsterinsights-quick-links{position:fixed;bottom:25px;right:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;left:2px;right:2px;top:2px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(../img/mascot.png)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}.monsterinsights-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;right:6px;margin-bottom:10px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-link-title{position:absolute;right:100%;margin-right:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.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"}@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-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}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}.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-top:10px;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{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-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-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-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.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){.monsterinsights-swal{margin-left:160px}.auto-fold .monsterinsights-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .monsterinsights-swal{margin-left:160px}.folded .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%}
|
lite/assets/vue/css/chunk-common.rtl.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-493c7577]{display:block}.monsterinsights-reset-default[data-v-493c7577]{margin-right:5px}.monsterinsights-dark[data-v-f66259b4]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#4e5c66;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -10px 20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:10px;position:absolute;left:15px;top:50%;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.float-right[data-v-7a774924]{float:left}.monsterinsights-container[data-v-7a774924]:after{display:table;clear:both;content:""}.monsterinsights-quick-links{position:fixed;bottom:25px;left:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;right:2px;left:2px;top:2px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(../img/mascot.png)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg)}.monsterinsights-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:6px;margin-bottom:10px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-link-title{position:absolute;left:100%;margin-left:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.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"}@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-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}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}.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-top:10px;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}@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{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-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-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-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.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){.monsterinsights-swal{margin-right:160px}.auto-fold .monsterinsights-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .monsterinsights-swal{margin-right:160px}.folded .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%}
|
1 |
+
strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-493c7577]{display:block}.monsterinsights-reset-default[data-v-493c7577]{margin-right:5px}.monsterinsights-dark[data-v-f66259b4]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#4e5c66;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -10px 20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:10px;position:absolute;left:15px;top:50%;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.float-right[data-v-7a774924]{float:left}.monsterinsights-container[data-v-7a774924]:after{display:table;clear:both;content:""}.monsterinsights-quick-links{position:fixed;bottom:25px;left:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;right:2px;left:2px;top:2px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(../img/mascot.png)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg)}.monsterinsights-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:6px;margin-bottom:10px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-link-title{position:absolute;left:100%;margin-left:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.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"}@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-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}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}.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-top:10px;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{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-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-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-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.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){.monsterinsights-swal{margin-right:160px}.auto-fold .monsterinsights-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .monsterinsights-swal{margin-right:160px}.folded .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%}
|
lite/assets/vue/css/reports.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
-
*/.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:0 -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:0 -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:0 -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:0 -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:0 -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:0 -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:0 -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:0 -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:0 -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:0 -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:0 -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:0 -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:0 -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:0 -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:0 -480px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-left:10px;padding-right:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-left:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-left:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:50%;font-weight:700;text-align:left;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-right:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-right:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-left:1px solid #d6e2ed;padding:17px 20px 15px;position:relative}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;right:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-left:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-right:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:left}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:right}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px;margin-top:15px}.monsterinsights-reports-infobox-compare{clear:right;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-right:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-right:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-right:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-right:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;left:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:right}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;right:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-left:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-left:0;margin-top:0}.monsterinsights-table-box h3{margin-left:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute;top:20px;right:20px}@media (max-width:991px){.monsterinsights-table-box{margin-left:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px 0 -10px -8px}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}.monsterinsights-table-box-pagination{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-right:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-right:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:left;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-left:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-right:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-left:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABSUlEQVRIie3WP0scQRgH4OdODaggXiGksNLCFCEigtqpYGFhZ6+IhYKSQO4DaGFnIYLcdRbWVhYRVKzsbbURjI2QD2GK24N1b3dv9hK7e2FZ3tn5zQPL/pnSw8ycwFrFJvrwip/4ExLsDRVwgs+x/hEHIcFyAaQ/0Q+GBosgHVcX6SIfjwzhO6b+w5o92MByHBnGLY5xh/l/AEo4jY5f+NFEzjAdTRrABWY7BGpYi/VHWCqjkpg8hEt8K4gcYjsFrpSxjpfExQpuMBEI7KGaMl7DeRlPWEiBRiJorA1QxX4GsIu35tOVBY3iKjqn1ZbGbcoEeP+eZEHjuManxPhKtFgpD0giedAXrf+Tryn5FiANyYPaVSqQhcSh34FAPQvIQ5rQYgBUx04W0A4JgdoCIUgeFASEInHoOeproQDF9l1PmNT4AtwXyPkLNbVGvHN63iMAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABhUlEQVRIie3Wz0qVQRjH8c85qUQtbGN0Ba5U0E0XEAWtBAmh/IdSIUFYFxB1BYWiIMbBMNSwDCoUlAK3bQTpDtx2B5HaYt5DpzmTZ45JK3+r4Znneb/MPH/eKQ3vLMtUH64X632s5ga2NOH3BZdqbN/xOSe4nAm5GAHgcmZsNuSfdAY5g/wfSJfQD6ehHpyvhZQwg2/Y1USTJVRCBXv4io4q5CkeFk6dwqhoPyHkBSaKdQ+20FbGzcixu9i80CTgGaYiWy+ulPEEP6LNq/iItkzAI+FGYk1jv4xtDCRA17CGcw0A43iesM/jMb+rawODCVA/FoWEpnQLLxP7FTzAEX/+Tz7gjvAzaq2xj1SdI93AbfUnXcS92pi4GdcxhIPIPpqAjKnP2VIMSEHgLYYToEZaEcq3Lu5vY+WNkNBc0Jpw2qT/cbPrNe7isAHgnfQVZ0HgFe5LJx7eF4Cfx30kZwpXMJkAfRKqKy77E0FgQZhvVdCm0CMNAeS/u2BOeNR1YjYXAL8A/ktHYGdlxIUAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABRUlEQVRIie3Vvy4EQRwH8M+dKxUeAIV7EvGnUHiCqzQOiUrUvAAdEYlC4glIlCgViJCIQjQ6IrnCn0j8KfY21t7u3Q4KhW+zmd/szCcz2dkp1fa3BKQHAzgOGVQOeLeKUxxhFaXfRqrYQ3+zXQ+BiiAx0JeqTxaFOiF5QBDUDukEFIYqbYB99HYAkhBM4T3dmbWSUCAJZa4ojeQBF3hK1c7xVgRKInnAFUbxkqrvYFrr9rRAMZIH3GCk+czKGuYy6l+gchvgFsO4zgHiLGEhB1pBqYLNDOAeQ7jsAMRZRLfWVdVxUEYj1dHAGM4KAnHmRVuUTqOMGk6ahUeM4zAQIPoAZkQ7E2cOuxXR1gxiAgcCf+MZUDzPLbb5PPENLP9g8mResZEshNwn384/8o/8DeQ51X4oOjDv+s3KrOg0d+EO60UHfgC50EbFBrbrYQAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAYAAAArK+5dAAABYUlEQVRIie3UTUtVURTG8V/HPkBgpuVV86UsTYkG4tgmEeYgiIIIp324gjAoLLVRkM3CSaCOdOZAnEgoiYO7Nlw2J9texZEPHDh7vTz/xdqwr/yemlaoYSygA8+wXtJUFZoPYgVjGI3/kfMC9Idhf0usEbHBswIa+IbbNbm+yA20C+gNg6ETagaipu+0gJvK95zup1EK6I6GuwXmSSPRc+t/gC4s414W360x3cvOdwLS8y9AMh/PGrfwugbwFptZbDQ8buSATnzBRNawgxls1wC28aQmNxaQrgS4FuYPs8I9PMZGjXnSBp7GIK16gCVcr/Aej7KC/Zhu7QTzpDXNpyO/k0m8q3A/SxxgDj8KzJNW8TwGa9VEhXn8icBfvNTc4Wm1glcxYBr0TYWvmMVimH9owzzpI17gs+baPl2NxLL2pq7TQnwof67b1iXgEnBxgKOa2OF5AtbxveX8E79KGo8BZr5ClKgrWrIAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-right:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;right:20px;top:20px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.monsterinsights-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.monsterinsights-upsell-overlay p{margin:20px 0}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-left:20px;padding-right:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:0 auto;max-width:520px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-left:40px;position:relative;line-height:1.2}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;left:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#f9fbff;font-size:14px;text-align:center;line-height:20px;top:-1px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{font-weight:400;font-size:16px;margin-top:10px}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-right:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-left:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}
|
1 |
/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
+
*/.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:0 -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:0 -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:0 -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:0 -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:0 -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:0 -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:0 -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:0 -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:0 -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:0 -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:0 -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:0 -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:0 -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:0 -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:0 -480px}.monsterinsights-report-year-in-review{margin-left:auto;margin-right:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:0 0;margin-bottom:90px}.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:100%;margin-top:20px}}.monsterinsights-report-year-in-review a,.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5,.monsterinsights-report-year-in-review p,.monsterinsights-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5{font-weight:900}.monsterinsights-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.monsterinsights-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-text-right{text-align:right}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/charlie.png);background-repeat:no-repeat;background-position:100% 100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding-left:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/charlie2x.png);background-position:right top 60px;background-size:173px 207px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:26px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-size:12px;max-width:230px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-right:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 25px 14px 90px;position:relative;display:inline-block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:32px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header div{width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder{position:relative}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder .monsterinsights-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box.monsterinsights-year-in-review-table-box-blur-report .monsterinsights-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title{display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle{display:inline-block;float:right}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0;text-transform:capitalize}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list{padding-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item{padding:9px 30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:active,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:focus,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{bottom:-40px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip span{font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip .monsterinsights-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:block;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder .monsterinsights-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{position:relative;left:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{margin:10px 0 0}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{margin-right:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-right:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip a,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip h3,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{width:90px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-size:12px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper{margin-top:15px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:left}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-details{font-size:14px;line-height:20px;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success{background:#1ec185}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:hover{opacity:.8;background:#10ad73}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions img,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors img{margin-bottom:15px;max-height:28px}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-size:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{display:block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{margin:0 auto}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag.monsterinsights-flag-zz{display:none}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{margin-top:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:10px;line-height:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:block;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{margin-top:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:50%;position:relative}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:0;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:55%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:30%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-products-sold,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-revenue{padding:75px 0}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:24px;line-height:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:45%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:70%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning img,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular img{margin-bottom:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-revenue-by-month{margin-bottom:50px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:0 0;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:0;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-size:14px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{padding:0 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.chris{background-image:url(../img/chris.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.syed{background-image:url(../img/syed.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{width:100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content{text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-size:18px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{text-align:center;padding-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:active,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:hover{background:#123c68}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-left:0;margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:calc(50% - 60px);float:left;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:100%;margin:30px 0;min-height:300px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top{padding-top:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image{width:104px;float:left;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image .monsterinsights-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:hover{background:rgba(51,142,239,.5)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{padding-top:100px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-size:18px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:block;margin-left:0;padding-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{min-height:350px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{padding:8px 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-left:10px;padding-right:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-left:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-left:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:50%;font-weight:700;text-align:left;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-right:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-right:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-left:1px solid #d6e2ed;padding:17px 20px 15px;position:relative}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;right:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-left:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-right:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:left}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:right}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px;margin-top:15px}.monsterinsights-reports-infobox-compare{clear:right;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-right:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-right:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-right:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-right:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;left:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:right}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;right:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-left:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-left:0;margin-top:0}.monsterinsights-table-box h3{margin-left:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute;top:20px;right:20px}@media (max-width:991px){.monsterinsights-table-box{margin-left:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px 0 -10px -8px}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}.monsterinsights-table-box-pagination{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-right:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-right:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:left;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-left:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-right:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-left:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABSUlEQVRIie3WP0scQRgH4OdODaggXiGksNLCFCEigtqpYGFhZ6+IhYKSQO4DaGFnIYLcdRbWVhYRVKzsbbURjI2QD2GK24N1b3dv9hK7e2FZ3tn5zQPL/pnSw8ycwFrFJvrwip/4ExLsDRVwgs+x/hEHIcFyAaQ/0Q+GBosgHVcX6SIfjwzhO6b+w5o92MByHBnGLY5xh/l/AEo4jY5f+NFEzjAdTRrABWY7BGpYi/VHWCqjkpg8hEt8K4gcYjsFrpSxjpfExQpuMBEI7KGaMl7DeRlPWEiBRiJorA1QxX4GsIu35tOVBY3iKjqn1ZbGbcoEeP+eZEHjuManxPhKtFgpD0giedAXrf+Tryn5FiANyYPaVSqQhcSh34FAPQvIQ5rQYgBUx04W0A4JgdoCIUgeFASEInHoOeproQDF9l1PmNT4AtwXyPkLNbVGvHN63iMAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABhUlEQVRIie3Wz0qVQRjH8c85qUQtbGN0Ba5U0E0XEAWtBAmh/IdSIUFYFxB1BYWiIMbBMNSwDCoUlAK3bQTpDtx2B5HaYt5DpzmTZ45JK3+r4Znneb/MPH/eKQ3vLMtUH64X632s5ga2NOH3BZdqbN/xOSe4nAm5GAHgcmZsNuSfdAY5g/wfSJfQD6ehHpyvhZQwg2/Y1USTJVRCBXv4io4q5CkeFk6dwqhoPyHkBSaKdQ+20FbGzcixu9i80CTgGaYiWy+ulPEEP6LNq/iItkzAI+FGYk1jv4xtDCRA17CGcw0A43iesM/jMb+rawODCVA/FoWEpnQLLxP7FTzAEX/+Tz7gjvAzaq2xj1SdI93AbfUnXcS92pi4GdcxhIPIPpqAjKnP2VIMSEHgLYYToEZaEcq3Lu5vY+WNkNBc0Jpw2qT/cbPrNe7isAHgnfQVZ0HgFe5LJx7eF4Cfx30kZwpXMJkAfRKqKy77E0FgQZhvVdCm0CMNAeS/u2BOeNR1YjYXAL8A/ktHYGdlxIUAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABRUlEQVRIie3Vvy4EQRwH8M+dKxUeAIV7EvGnUHiCqzQOiUrUvAAdEYlC4glIlCgViJCIQjQ6IrnCn0j8KfY21t7u3Q4KhW+zmd/szCcz2dkp1fa3BKQHAzgOGVQOeLeKUxxhFaXfRqrYQ3+zXQ+BiiAx0JeqTxaFOiF5QBDUDukEFIYqbYB99HYAkhBM4T3dmbWSUCAJZa4ojeQBF3hK1c7xVgRKInnAFUbxkqrvYFrr9rRAMZIH3GCk+czKGuYy6l+gchvgFsO4zgHiLGEhB1pBqYLNDOAeQ7jsAMRZRLfWVdVxUEYj1dHAGM4KAnHmRVuUTqOMGk6ahUeM4zAQIPoAZkQ7E2cOuxXR1gxiAgcCf+MZUDzPLbb5PPENLP9g8mResZEshNwn384/8o/8DeQ51X4oOjDv+s3KrOg0d+EO60UHfgC50EbFBrbrYQAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAYAAAArK+5dAAABYUlEQVRIie3UTUtVURTG8V/HPkBgpuVV86UsTYkG4tgmEeYgiIIIp324gjAoLLVRkM3CSaCOdOZAnEgoiYO7Nlw2J9texZEPHDh7vTz/xdqwr/yemlaoYSygA8+wXtJUFZoPYgVjGI3/kfMC9Idhf0usEbHBswIa+IbbNbm+yA20C+gNg6ETagaipu+0gJvK95zup1EK6I6GuwXmSSPRc+t/gC4s414W360x3cvOdwLS8y9AMh/PGrfwugbwFptZbDQ8buSATnzBRNawgxls1wC28aQmNxaQrgS4FuYPs8I9PMZGjXnSBp7GIK16gCVcr/Aej7KC/Zhu7QTzpDXNpyO/k0m8q3A/SxxgDj8KzJNW8TwGa9VEhXn8icBfvNTc4Wm1glcxYBr0TYWvmMVimH9owzzpI17gs+baPl2NxLL2pq7TQnwof67b1iXgEnBxgKOa2OF5AtbxveX8E79KGo8BZr5ClKgrWrIAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-right:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;right:20px;top:20px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.monsterinsights-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.monsterinsights-upsell-overlay p{margin:20px 0}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-left:20px;padding-right:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:0 auto;max-width:520px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-left:40px;position:relative;line-height:1.2}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;left:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#f9fbff;font-size:14px;text-align:center;line-height:20px;top:-1px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{font-weight:400;font-size:16px;margin-top:10px}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-right:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-left:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}
|
lite/assets/vue/css/reports.rtl.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
-
*/.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:100% -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:100% -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:100% -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:100% -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:100% -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:100% -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:100% -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:100% -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:100% -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:100% -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:100% -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:100% -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:100% -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:100% -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:100% -480px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-right:10px;padding-left:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-right:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-left:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-right:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:50%;font-weight:700;text-align:right;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-left:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-left:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-right:1px solid #d6e2ed;padding:17px 20px 15px;position:relative}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;left:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-right:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-right:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-left:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:right}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:left}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px;margin-top:15px}.monsterinsights-reports-infobox-compare{clear:left;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-left:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-left:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-left:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-left:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;right:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;right:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:left}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;left:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-right:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-right:0;margin-top:0}.monsterinsights-table-box h3{margin-right:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute;top:20px;left:20px}@media (max-width:991px){.monsterinsights-table-box{margin-right:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-left:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px -8px -10px 0}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:left;display:block;padding-right:5px}.monsterinsights-table-box-pagination{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-left:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-left:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-right:0;margin-right:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1{margin-right:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-right:20px;font-size:15px;color:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-left:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;left:10px;top:50%;-webkit-transform:translateY(-50%) rotate(-180deg);-ms-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);color:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:right;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-right:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-left:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-right:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABSUlEQVRIie3WP0scQRgH4OdODaggXiGksNLCFCEigtqpYGFhZ6+IhYKSQO4DaGFnIYLcdRbWVhYRVKzsbbURjI2QD2GK24N1b3dv9hK7e2FZ3tn5zQPL/pnSw8ycwFrFJvrwip/4ExLsDRVwgs+x/hEHIcFyAaQ/0Q+GBosgHVcX6SIfjwzhO6b+w5o92MByHBnGLY5xh/l/AEo4jY5f+NFEzjAdTRrABWY7BGpYi/VHWCqjkpg8hEt8K4gcYjsFrpSxjpfExQpuMBEI7KGaMl7DeRlPWEiBRiJorA1QxX4GsIu35tOVBY3iKjqn1ZbGbcoEeP+eZEHjuManxPhKtFgpD0giedAXrf+Tryn5FiANyYPaVSqQhcSh34FAPQvIQ5rQYgBUx04W0A4JgdoCIUgeFASEInHoOeproQDF9l1PmNT4AtwXyPkLNbVGvHN63iMAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABhUlEQVRIie3Wz0qVQRjH8c85qUQtbGN0Ba5U0E0XEAWtBAmh/IdSIUFYFxB1BYWiIMbBMNSwDCoUlAK3bQTpDtx2B5HaYt5DpzmTZ45JK3+r4Znneb/MPH/eKQ3vLMtUH64X632s5ga2NOH3BZdqbN/xOSe4nAm5GAHgcmZsNuSfdAY5g/wfSJfQD6ehHpyvhZQwg2/Y1USTJVRCBXv4io4q5CkeFk6dwqhoPyHkBSaKdQ+20FbGzcixu9i80CTgGaYiWy+ulPEEP6LNq/iItkzAI+FGYk1jv4xtDCRA17CGcw0A43iesM/jMb+rawODCVA/FoWEpnQLLxP7FTzAEX/+Tz7gjvAzaq2xj1SdI93AbfUnXcS92pi4GdcxhIPIPpqAjKnP2VIMSEHgLYYToEZaEcq3Lu5vY+WNkNBc0Jpw2qT/cbPrNe7isAHgnfQVZ0HgFe5LJx7eF4Cfx30kZwpXMJkAfRKqKy77E0FgQZhvVdCm0CMNAeS/u2BOeNR1YjYXAL8A/ktHYGdlxIUAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABRUlEQVRIie3Vvy4EQRwH8M+dKxUeAIV7EvGnUHiCqzQOiUrUvAAdEYlC4glIlCgViJCIQjQ6IrnCn0j8KfY21t7u3Q4KhW+zmd/szCcz2dkp1fa3BKQHAzgOGVQOeLeKUxxhFaXfRqrYQ3+zXQ+BiiAx0JeqTxaFOiF5QBDUDukEFIYqbYB99HYAkhBM4T3dmbWSUCAJZa4ojeQBF3hK1c7xVgRKInnAFUbxkqrvYFrr9rRAMZIH3GCk+czKGuYy6l+gchvgFsO4zgHiLGEhB1pBqYLNDOAeQ7jsAMRZRLfWVdVxUEYj1dHAGM4KAnHmRVuUTqOMGk6ahUeM4zAQIPoAZkQ7E2cOuxXR1gxiAgcCf+MZUDzPLbb5PPENLP9g8mResZEshNwn384/8o/8DeQ51X4oOjDv+s3KrOg0d+EO60UHfgC50EbFBrbrYQAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAYAAAArK+5dAAABYUlEQVRIie3UTUtVURTG8V/HPkBgpuVV86UsTYkG4tgmEeYgiIIIp324gjAoLLVRkM3CSaCOdOZAnEgoiYO7Nlw2J9texZEPHDh7vTz/xdqwr/yemlaoYSygA8+wXtJUFZoPYgVjGI3/kfMC9Idhf0usEbHBswIa+IbbNbm+yA20C+gNg6ETagaipu+0gJvK95zup1EK6I6GuwXmSSPRc+t/gC4s414W360x3cvOdwLS8y9AMh/PGrfwugbwFptZbDQ8buSATnzBRNawgxls1wC28aQmNxaQrgS4FuYPs8I9PMZGjXnSBp7GIK16gCVcr/Aej7KC/Zhu7QTzpDXNpyO/k0m8q3A/SxxgDj8KzJNW8TwGa9VEhXn8icBfvNTc4Wm1glcxYBr0TYWvmMVimH9owzzpI17gs+baPl2NxLL2pq7TQnwof67b1iXgEnBxgKOa2OF5AtbxveX8E79KGo8BZr5ClKgrWrIAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-left:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;left:20px;top:20px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-right:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-left:10px;margin-right:2px}.monsterinsights-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:0 0;background-color:#fff;background-size:452px}@media (max-width:991px){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-upsell-overlay{position:absolute;top:125px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.monsterinsights-upsell-overlay p{margin:20px 0}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-right:20px;padding-left:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:0 auto;max-width:520px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-right:40px;position:relative;line-height:1.2}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;right:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#f9fbff;font-size:14px;text-align:center;line-height:20px;top:-1px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{font-weight:400;font-size:16px;margin-top:10px}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-left:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-left:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-right:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-right:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;right:50%;width:750px;max-width:100%;margin-right:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{right:0;margin-right:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-right:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}
|
1 |
/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
+
*/.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:100% -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:100% -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:100% -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:100% -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:100% -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:100% -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:100% -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:100% -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:100% -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:100% -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:100% -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:100% -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:100% -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:100% -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:100% -480px}.monsterinsights-report-year-in-review{margin-right:auto;margin-left:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:100% 0;margin-bottom:90px}.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:100%;margin-top:20px}}.monsterinsights-report-year-in-review a,.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5,.monsterinsights-report-year-in-review p,.monsterinsights-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5{font-weight:900}.monsterinsights-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.monsterinsights-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-text-right{text-align:left}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:90px 90px 90px 0;background-image:url(../img/charlie.png);background-repeat:no-repeat;background-position:0 100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding-right:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding:90px 60px 100px 0;background-image:url(../img/charlie2x.png);background-position:left top 60px;background-size:173px 207px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding-right:15px;padding-left:15px;padding-top:50px;background-size:140px 180px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:26px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-size:12px;max-width:230px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-left:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 90px 14px 25px;position:relative;display:inline-block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle svg{position:absolute;right:5px;bottom:-5px}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:32px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header div{width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:left;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 30px 15px 50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder{position:relative}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder .monsterinsights-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box.monsterinsights-year-in-review-table-box-blur-report .monsterinsights-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title{display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle{display:inline-block;float:left}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:left;color:#393f4c;margin:0;text-transform:capitalize}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list{padding-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item{padding:9px 30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:active,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:focus,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;right:0;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{bottom:-40px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip span{font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip .monsterinsights-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-left:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:inline-block;float:right}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:block;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder .monsterinsights-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-right:50px;padding-top:35px;float:right}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-right:0;padding-top:20px;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{position:relative;right:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{margin:10px 0 0}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{display:inline-block;margin-left:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{margin-left:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-left:5px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-left:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip a,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip h3,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{float:right;width:144px;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{width:90px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{float:right;width:calc(100% - 144px);padding-left:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{padding-left:0;width:calc(100% - 90px)}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-size:12px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper{margin-top:15px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:right}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay{position:absolute;top:0;right:0;width:calc(100% - 25px);height:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-left:25px;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-details{font-size:14px;line-height:20px;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success{background:#1ec185}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:hover{opacity:.8;background:#10ad73}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{width:100%;margin-bottom:70px;padding-right:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{margin-bottom:20px;padding-right:0;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions img,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors img{margin-bottom:15px;max-height:28px}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-size:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{display:block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{margin:0 auto}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag.monsterinsights-flag-zz{display:none}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{margin-top:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:10px;line-height:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:block;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{width:32px;height:32px;margin-right:-3px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-left:10px;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{margin-top:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:50%;position:relative}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-left:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-left:0;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-right:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:55%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:30%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-products-sold,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-revenue{padding:75px 0}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:24px;line-height:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:45%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:70%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning img,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular img{margin-bottom:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-revenue-by-month{margin-bottom:50px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:100% 0;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:0;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-size:14px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{padding:0 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.chris{background-image:url(../img/chris.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.syed{background-image:url(../img/syed.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{width:100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content{text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-size:18px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{list-style:none;display:inline-block;margin-left:7px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{text-align:center;padding-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:active,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:hover{background:#123c68}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-top:20px;margin-right:-30px;margin-left:-30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-right:0;margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:calc(50% - 60px);float:right;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:100%;margin:30px 0;min-height:300px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top{padding-top:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image{width:104px;float:right;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image .monsterinsights-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text{width:calc(100% - 104px);float:right;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;right:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status{float:left;line-height:32px;font-weight:900;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:hover{background:rgba(51,142,239,.5)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{padding-top:100px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-size:18px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:block;margin-right:0;padding-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-right:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{margin-right:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{min-height:350px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{position:absolute;bottom:15px;right:24px;width:80%;width:calc(100% - 48px)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{padding:8px 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li{float:right;margin-left:8px;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-right:10px;padding-left:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-right:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-left:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-right:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:50%;font-weight:700;text-align:right;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-left:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-left:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-right:1px solid #d6e2ed;padding:17px 20px 15px;position:relative}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;left:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-right:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-right:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-left:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:right}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:left}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px;margin-top:15px}.monsterinsights-reports-infobox-compare{clear:left;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-left:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-left:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-left:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-left:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;right:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;right:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:left}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;left:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-right:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-right:0;margin-top:0}.monsterinsights-table-box h3{margin-right:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute;top:20px;left:20px}@media (max-width:991px){.monsterinsights-table-box{margin-right:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-left:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px -8px -10px 0}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:left;display:block;padding-right:5px}.monsterinsights-table-box-pagination{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-left:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-left:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-right:0;margin-right:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1{margin-right:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-right:20px;font-size:15px;color:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-left:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;left:10px;top:50%;-webkit-transform:translateY(-50%) rotate(-180deg);-ms-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);color:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:right;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-right:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-left:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-right:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABSUlEQVRIie3WP0scQRgH4OdODaggXiGksNLCFCEigtqpYGFhZ6+IhYKSQO4DaGFnIYLcdRbWVhYRVKzsbbURjI2QD2GK24N1b3dv9hK7e2FZ3tn5zQPL/pnSw8ycwFrFJvrwip/4ExLsDRVwgs+x/hEHIcFyAaQ/0Q+GBosgHVcX6SIfjwzhO6b+w5o92MByHBnGLY5xh/l/AEo4jY5f+NFEzjAdTRrABWY7BGpYi/VHWCqjkpg8hEt8K4gcYjsFrpSxjpfExQpuMBEI7KGaMl7DeRlPWEiBRiJorA1QxX4GsIu35tOVBY3iKjqn1ZbGbcoEeP+eZEHjuManxPhKtFgpD0giedAXrf+Tryn5FiANyYPaVSqQhcSh34FAPQvIQ5rQYgBUx04W0A4JgdoCIUgeFASEInHoOeproQDF9l1PmNT4AtwXyPkLNbVGvHN63iMAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABhUlEQVRIie3Wz0qVQRjH8c85qUQtbGN0Ba5U0E0XEAWtBAmh/IdSIUFYFxB1BYWiIMbBMNSwDCoUlAK3bQTpDtx2B5HaYt5DpzmTZ45JK3+r4Znneb/MPH/eKQ3vLMtUH64X632s5ga2NOH3BZdqbN/xOSe4nAm5GAHgcmZsNuSfdAY5g/wfSJfQD6ehHpyvhZQwg2/Y1USTJVRCBXv4io4q5CkeFk6dwqhoPyHkBSaKdQ+20FbGzcixu9i80CTgGaYiWy+ulPEEP6LNq/iItkzAI+FGYk1jv4xtDCRA17CGcw0A43iesM/jMb+rawODCVA/FoWEpnQLLxP7FTzAEX/+Tz7gjvAzaq2xj1SdI93AbfUnXcS92pi4GdcxhIPIPpqAjKnP2VIMSEHgLYYToEZaEcq3Lu5vY+WNkNBc0Jpw2qT/cbPrNe7isAHgnfQVZ0HgFe5LJx7eF4Cfx30kZwpXMJkAfRKqKy77E0FgQZhvVdCm0CMNAeS/u2BOeNR1YjYXAL8A/ktHYGdlxIUAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABRUlEQVRIie3Vvy4EQRwH8M+dKxUeAIV7EvGnUHiCqzQOiUrUvAAdEYlC4glIlCgViJCIQjQ6IrnCn0j8KfY21t7u3Q4KhW+zmd/szCcz2dkp1fa3BKQHAzgOGVQOeLeKUxxhFaXfRqrYQ3+zXQ+BiiAx0JeqTxaFOiF5QBDUDukEFIYqbYB99HYAkhBM4T3dmbWSUCAJZa4ojeQBF3hK1c7xVgRKInnAFUbxkqrvYFrr9rRAMZIH3GCk+czKGuYy6l+gchvgFsO4zgHiLGEhB1pBqYLNDOAeQ7jsAMRZRLfWVdVxUEYj1dHAGM4KAnHmRVuUTqOMGk6ahUeM4zAQIPoAZkQ7E2cOuxXR1gxiAgcCf+MZUDzPLbb5PPENLP9g8mResZEshNwn384/8o/8DeQ51X4oOjDv+s3KrOg0d+EO60UHfgC50EbFBrbrYQAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAYAAAArK+5dAAABYUlEQVRIie3UTUtVURTG8V/HPkBgpuVV86UsTYkG4tgmEeYgiIIIp324gjAoLLVRkM3CSaCOdOZAnEgoiYO7Nlw2J9texZEPHDh7vTz/xdqwr/yemlaoYSygA8+wXtJUFZoPYgVjGI3/kfMC9Idhf0usEbHBswIa+IbbNbm+yA20C+gNg6ETagaipu+0gJvK95zup1EK6I6GuwXmSSPRc+t/gC4s414W360x3cvOdwLS8y9AMh/PGrfwugbwFptZbDQ8buSATnzBRNawgxls1wC28aQmNxaQrgS4FuYPs8I9PMZGjXnSBp7GIK16gCVcr/Aej7KC/Zhu7QTzpDXNpyO/k0m8q3A/SxxgDj8KzJNW8TwGa9VEhXn8icBfvNTc4Wm1glcxYBr0TYWvmMVimH9owzzpI17gs+baPl2NxLL2pq7TQnwof67b1iXgEnBxgKOa2OF5AtbxveX8E79KGo8BZr5ClKgrWrIAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-left:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;left:20px;top:20px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-right:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-left:10px;margin-right:2px}.monsterinsights-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:0 0;background-color:#fff;background-size:452px}@media (max-width:991px){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-upsell-overlay{position:absolute;top:125px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.monsterinsights-upsell-overlay p{margin:20px 0}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-right:20px;padding-left:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:0 auto;max-width:520px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-right:40px;position:relative;line-height:1.2}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;right:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#f9fbff;font-size:14px;text-align:center;line-height:20px;top:-1px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{font-weight:400;font-size:16px;margin-top:10px}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-left:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-left:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-right:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-right:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;right:50%;width:750px;max-width:100%;margin-right:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{right:0;margin-right:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-right:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}
|
lite/assets/vue/css/widget.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
.monsterinsights-tracking-notice{position:fixed;bottom:20px;right:15px;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;background:#fff;-webkit-box-shadow:0 0 10px 0 #dedede;box-shadow:0 0 10px 0 #dedede;padding:6px 5px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:380px;max-width:calc(100% - 30px);border-radius:6px;z-index:10000}.monsterinsights-tracking-notice h3{font-size:13px;color:#222;font-weight:700;margin:0 0 8px;padding:0;line-height:1;border:none}.monsterinsights-tracking-notice p{font-size:13px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.monsterinsights-tracking-notice p a{color:#509fe2;font-size:13px;line-height:1.2;margin:0;padding:0;text-decoration:underline;font-weight:400}.monsterinsights-tracking-notice p a:hover{color:#3a93dd;text-decoration:none}.monsterinsights-tracking-notice .monsterinsights-tracking-notice-icon{padding:14px;background-color:#f2f6ff;border-radius:6px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-right:12px}.monsterinsights-tracking-notice .monsterinsights-tracking-notice-close{padding:0;margin:0 3px 0 0;border:none;-webkit-box-shadow:none;box-shadow:none;border-radius:0;color:#7f7f7f;background:rgba(0,0,0,0);line-height:1;-ms-flex-item-align:start;align-self:flex-start;cursor:pointer;font-size:16px;font-weight:400}.monsterinsights-tracking-notice .monsterinsights-fullwidth-mascot{position:relative;left:auto;top:auto}.monsterinsights-slide-up-enter-active,.monsterinsights-slide-up-leave-active{-webkit-transition:bottom .7s ease;transition:bottom .7s ease}.monsterinsights-slide-up-enter,.monsterinsights-slide-up-leave-to{bottom:-200px}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-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"}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-left:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip[x-placement^=left]{padding-right:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
-
*/.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:0 -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:0 -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:0 -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:0 -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:0 -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:0 -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:0 -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:0 -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:0 -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:0 -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:0 -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:0 -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:0 -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:0 -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:0 -480px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-left:10px;padding-right:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-left:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-left:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:50%;font-weight:700;text-align:left;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-right:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-right:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-left:1px solid #d6e2ed;padding:17px 20px 15px;position:relative}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;right:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-left:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-right:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:left}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:right}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px}.monsterinsights-reports-infobox-compare{clear:right;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-right:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-right:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-right:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-right:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;left:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:right}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;right:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-left:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-left:0;margin-top:0}.monsterinsights-table-box h3{margin-left:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute}@media (max-width:991px){.monsterinsights-table-box{margin-left:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px 0 -10px -8px}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}.monsterinsights-table-box-pagination{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-right:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-right:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:left;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-left:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-right:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-left:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABSUlEQVRIie3WP0scQRgH4OdODaggXiGksNLCFCEigtqpYGFhZ6+IhYKSQO4DaGFnIYLcdRbWVhYRVKzsbbURjI2QD2GK24N1b3dv9hK7e2FZ3tn5zQPL/pnSw8ycwFrFJvrwip/4ExLsDRVwgs+x/hEHIcFyAaQ/0Q+GBosgHVcX6SIfjwzhO6b+w5o92MByHBnGLY5xh/l/AEo4jY5f+NFEzjAdTRrABWY7BGpYi/VHWCqjkpg8hEt8K4gcYjsFrpSxjpfExQpuMBEI7KGaMl7DeRlPWEiBRiJorA1QxX4GsIu35tOVBY3iKjqn1ZbGbcoEeP+eZEHjuManxPhKtFgpD0giedAXrf+Tryn5FiANyYPaVSqQhcSh34FAPQvIQ5rQYgBUx04W0A4JgdoCIUgeFASEInHoOeproQDF9l1PmNT4AtwXyPkLNbVGvHN63iMAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABhUlEQVRIie3Wz0qVQRjH8c85qUQtbGN0Ba5U0E0XEAWtBAmh/IdSIUFYFxB1BYWiIMbBMNSwDCoUlAK3bQTpDtx2B5HaYt5DpzmTZ45JK3+r4Znneb/MPH/eKQ3vLMtUH64X632s5ga2NOH3BZdqbN/xOSe4nAm5GAHgcmZsNuSfdAY5g/wfSJfQD6ehHpyvhZQwg2/Y1USTJVRCBXv4io4q5CkeFk6dwqhoPyHkBSaKdQ+20FbGzcixu9i80CTgGaYiWy+ulPEEP6LNq/iItkzAI+FGYk1jv4xtDCRA17CGcw0A43iesM/jMb+rawODCVA/FoWEpnQLLxP7FTzAEX/+Tz7gjvAzaq2xj1SdI93AbfUnXcS92pi4GdcxhIPIPpqAjKnP2VIMSEHgLYYToEZaEcq3Lu5vY+WNkNBc0Jpw2qT/cbPrNe7isAHgnfQVZ0HgFe5LJx7eF4Cfx30kZwpXMJkAfRKqKy77E0FgQZhvVdCm0CMNAeS/u2BOeNR1YjYXAL8A/ktHYGdlxIUAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABRUlEQVRIie3Vvy4EQRwH8M+dKxUeAIV7EvGnUHiCqzQOiUrUvAAdEYlC4glIlCgViJCIQjQ6IrnCn0j8KfY21t7u3Q4KhW+zmd/szCcz2dkp1fa3BKQHAzgOGVQOeLeKUxxhFaXfRqrYQ3+zXQ+BiiAx0JeqTxaFOiF5QBDUDukEFIYqbYB99HYAkhBM4T3dmbWSUCAJZa4ojeQBF3hK1c7xVgRKInnAFUbxkqrvYFrr9rRAMZIH3GCk+czKGuYy6l+gchvgFsO4zgHiLGEhB1pBqYLNDOAeQ7jsAMRZRLfWVdVxUEYj1dHAGM4KAnHmRVuUTqOMGk6ahUeM4zAQIPoAZkQ7E2cOuxXR1gxiAgcCf+MZUDzPLbb5PPENLP9g8mResZEshNwn384/8o/8DeQ51X4oOjDv+s3KrOg0d+EO60UHfgC50EbFBrbrYQAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAYAAAArK+5dAAABYUlEQVRIie3UTUtVURTG8V/HPkBgpuVV86UsTYkG4tgmEeYgiIIIp324gjAoLLVRkM3CSaCOdOZAnEgoiYO7Nlw2J9texZEPHDh7vTz/xdqwr/yemlaoYSygA8+wXtJUFZoPYgVjGI3/kfMC9Idhf0usEbHBswIa+IbbNbm+yA20C+gNg6ETagaipu+0gJvK95zup1EK6I6GuwXmSSPRc+t/gC4s414W360x3cvOdwLS8y9AMh/PGrfwugbwFptZbDQ8buSATnzBRNawgxls1wC28aQmNxaQrgS4FuYPs8I9PMZGjXnSBp7GIK16gCVcr/Aej7KC/Zhu7QTzpDXNpyO/k0m8q3A/SxxgDj8KzJNW8TwGa9VEhXn8icBfvNTc4Wm1glcxYBr0TYWvmMVimH9owzzpI17gs+baPl2NxLL2pq7TQnwof67b1iXgEnBxgKOa2OF5AtbxveX8E79KGo8BZr5ClKgrWrIAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-right:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;right:20px;top:20px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.monsterinsights-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.monsterinsights-upsell-overlay p{margin:20px 0}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-left:20px;padding-right:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:0 auto;max-width:520px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-left:40px;position:relative;line-height:1.2}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;left:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#f9fbff;font-size:14px;text-align:center;line-height:20px;top:-1px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{font-weight:400;font-size:16px;margin-top:10px}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-right:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-left:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}#monsterinsights_reports_widget,#monsterinsights_reports_widget *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#monsterinsights_reports_widget .inside{margin:0;padding:0}#monsterinsights_reports_widget .monsterinsights-info:focus,#monsterinsights_reports_widget a:focus,#monsterinsights_reports_widget button:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#monsterinsights_reports_widget .handlediv:focus{outline:none;-webkit-box-shadow:none;box-shadow:none}#dashboard-widgets .monsterinsights-reports-link,#dashboard-widgets .monsterinsights-widget-toggle,.postbox .inside .monsterinsights-reports-link,.postbox .inside .monsterinsights-widget-toggle{background-color:#fafafa;border-bottom:1px solid #eee;cursor:pointer;padding:11px 12px;line-height:1;position:relative}#dashboard-widgets .monsterinsights-reports-link:focus,#dashboard-widgets .monsterinsights-widget-toggle:focus,.postbox .inside .monsterinsights-reports-link:focus,.postbox .inside .monsterinsights-widget-toggle:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:10}#dashboard-widgets .monsterinsights-reports-link h2,#dashboard-widgets .monsterinsights-widget-toggle h2,.postbox .inside .monsterinsights-reports-link h2,.postbox .inside .monsterinsights-widget-toggle h2{display:inline-block;font-size:14px;font-weight:400;line-height:1;margin:0;padding:0;color:#23282c}#dashboard-widgets .monsterinsights-reports-link.monsterinsights-widget-toggle-active:after,#dashboard-widgets .monsterinsights-widget-toggle.monsterinsights-widget-toggle-active:after,.postbox .inside .monsterinsights-reports-link.monsterinsights-widget-toggle-active:after,.postbox .inside .monsterinsights-widget-toggle.monsterinsights-widget-toggle-active:after{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}#dashboard-widgets .monsterinsights-reports-link,.postbox .inside .monsterinsights-reports-link{cursor:default}#dashboard-widgets .monsterinsights-reports-link .monsterinsights-button,.postbox .inside .monsterinsights-reports-link .monsterinsights-button{font-size:12px;font-weight:700;padding:5px 9px 4px;margin-left:10px}#dashboard-widgets .monsterinsights-btn-group-label:after,#dashboard-widgets .monsterinsights-widget-toggle:after,.postbox .inside .monsterinsights-btn-group-label:after,.postbox .inside .monsterinsights-widget-toggle:after{color:#72777c;content:"\f142";display:inline-block;font:normal 20px/1 dashicons;position:absolute;right:7px;text-decoration:none!important;text-indent:-1px;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;top:8px}#dashboard-widgets .monsterinsights-btn-group-label:after,.postbox .inside .monsterinsights-btn-group-label:after{right:2px;top:2px}#dashboard-widgets .monsterinsights-upsell-overlay h3,.postbox .inside .monsterinsights-upsell-overlay h3{text-align:left;color:#393f4c;font-size:20px;margin:12px 0 20px;font-weight:700;line-height:1.4}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle{text-align:left}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-top,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding:20px;width:100%}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{display:none}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{margin-top:0;font-size:13px;padding:8px 10px}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-center,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-center{text-align:left}#dashboard-widgets .monsterinsights-button-full-report,.postbox .inside .monsterinsights-button-full-report{font-size:12px;padding:5px 9px 4px;font-weight:700;line-height:1;margin-right:-5px;margin-left:5px}.monsterinsights-widget-cog{margin:0 0 0 10px;border:none;cursor:pointer;display:block;height:20px;padding:0;width:20px;color:#72777c;background:none;font-size:16px}.monsterinsights-widget-cog:focus,.monsterinsights-widget-cog:hover{color:#393f4c}.monsterinsights-widget-dropdown{position:relative;display:inline-block;vertical-align:middle}.monsterinsights-widget-dropdown-content{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:auto;font-weight:400;margin-right:-11px;margin-top:5px;padding:0 10px 10px;position:absolute;right:0;top:100%;width:180px;z-index:999}.monsterinsights-widget-dropdown-content:before{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #d8d8d8;border-style:solid;border-width:0 4px 4px;bottom:100%;content:"";height:0;position:absolute;right:16px;width:0}.monsterinsights-widget-dropdown-content:after{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-style:solid;border-width:0 3px 3px;bottom:100%;content:"";height:0;position:absolute;right:17px;width:0}.monsterinsights-widget-dropdown-content>span{color:#999;font-size:10px;margin-top:12px;display:block}.monsterinsights-widget-dropdown-content label{padding-left:16px;color:#393f4c;font-size:12px;position:relative;margin-bottom:4px;display:block}.monsterinsights-widget-dropdown-content label:before{content:"";border:1px solid #d6e2ed;width:10px;height:10px;display:block;position:absolute;left:0;top:3px}.monsterinsights-widget-dropdown-content label input[type=checkbox]{display:none}.monsterinsights-widget-dropdown-content label.monsterinsights-checked:after{content:"";border-color:#509fe2;border-style:solid;border-width:1px 0 0 1px;display:block;width:6px;height:10px;position:absolute;left:3px;top:2px;-webkit-transform:rotate(216deg);-ms-transform:rotate(216deg);transform:rotate(216deg)}.monsterinsights-widget-dropdown-content label:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.monsterinsights-red{color:#d73638}.monsterinsights-green{color:#5cc0a5}.monsterinsights-btn-group{position:relative;display:inline-block;vertical-align:middle;width:110px;margin-right:0}.monsterinsights-btn-group .monsterinsights-btn-group-label,.monsterinsights-btn-group .monsterinsights-btn-group-list-button{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:pointer;display:inline-block;font-size:13px;font-weight:400;line-height:1;padding:5px 14px 5px 10px;position:relative;text-align:left;width:100%;margin:0}.monsterinsights-btn-group-list{border-left:1px solid #d8d8d8;border-right:1px solid #d8d8d8;position:absolute;top:100%;z-index:1000;right:0;left:0}.monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{border-radius:0;border-width:0 0 1px}.monsterinsights-btn-group-list .monsterinsights-btn-group-list-button.monsterinsights-btn-group-list-button-selected{background:#1f76c4;color:#fff}.monsterinsights-btn-group-open .monsterinsights-btn-group-label{border-radius:5px 5px 0 0}#monsterinsights_reports_widget.closed .inside{display:block}#monsterinsights_reports_widget .monsterinsights-widget-settings{position:absolute;bottom:100%;right:12px;margin-bottom:6px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (max-width:782px){#monsterinsights_reports_widget .monsterinsights-widget-settings{right:10px}}#monsterinsights_reports_widget .hndle{font-size:14px}#monsterinsights_reports_widget .toggle-indicator{display:none}#monsterinsights_reports_widget .monsterinsights-not-authenticated-notice{-webkit-box-shadow:none;box-shadow:none;position:relative;width:100%;margin:0;left:0;top:0;padding-top:50px;border:none}#monsterinsights_reports_widget .monsterinsights-not-authenticated-notice h3{font-size:18px;font-weight:700}@media (max-width:430px),(max-width:936px) and (min-width:800px),(max-width:1040px) and (min-width:962px),only screen and (max-width:1890px) and (min-width:1800px){#monsterinsights_reports_widget .monsterinsights-button-full-report{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-button-full-report{display:block;padding:12px 12px 11px;line-height:1;font-size:14px;margin-right:0}.monsterinsights-report-tabs{margin:20px}.monsterinsights-report-infobox-row{margin:0 20px 20px;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%;padding:12px 10px 10px 15px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}@media (min-width:783px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:1px solid #d6e2ed}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{top:12px;right:15px}.monsterinsights-reports-infobox-number{font-size:36px;float:none}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none}.monsterinsights-reports-infobox-prev{margin-top:15px}.monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button{font-size:14px;padding:11px 9px 12px;line-height:1;text-align:left;font-weight:400}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:9px}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button i{margin-right:7px}.monsterinsights-widget-regular-width .monsterinsights-table-list-item{font-size:14px;padding:11px 12px;min-height:36px}.monsterinsights-widget-regular-width .monsterinsights-table-box-table td,.monsterinsights-widget-regular-width .monsterinsights-table-box-table td:first-child,.monsterinsights-widget-regular-width .monsterinsights-table-box-table th,.monsterinsights-widget-regular-width .monsterinsights-table-box-table th:first-child{padding-left:12px;padding-right:12px}.monsterinsights-widget-report-title .monsterinsights-info{margin-left:10px;color:#b4b9be}.monsterinsights-widget-content{border-bottom:1px solid #eee;height:100%}.monsterinsights-widget-content .monsterinsights-table-box{padding-top:0;border:none}.monsterinsights-dashboard-widget-page.monsterinsights-blur .monsterinsights-widget-content{height:auto}.monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-button:focus,.monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-table-box-footer{text-align:left}.monsterinsights-table-box-pagination{display:none}.monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}.monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}.monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}.monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}.monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}.monsterinsights-reports-pie-chart{border:none;width:100%}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{left:220px}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{left:auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-text{min-width:75px}.monsterinsights-upsell-overlay{position:relative;-webkit-transform:none;-ms-transform:none;transform:none;left:0;top:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0;padding-top:0;border:none}.monsterinsights-upsell-overlay .monsterinsights-button{color:#fff}.monsterinsights-ecommerce-overview{padding-top:20px}.monsterinsights-ecommerce-overview .monsterinsights-upsell-overlay{padding-top:0}.monsterinsights-report-title{font-size:16px}.mi-dw-not-authed{padding:20px;text-align:center}.mi-dw-not-authed h2{font-size:18px;margin:0}.mi-dw-not-authed p{font-size:14px;margin:18px auto;max-width:280px}.mi-dw-btn-large{background:#1f76c4;border-radius:5px;color:#fff;display:inline-block;font-size:14px;line-height:1;margin-bottom:10px;padding:14px 28px}.mi-dw-btn-large:hover{color:#fff}.monsterinsights-widget-loading{animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;height:2.5em;margin:50px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights-widget-full-width .monsterinsights-widget-accordion{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;padding:20px 22px 22px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-widget-full-width .monsterinsights-widget-accordion:after{width:calc(33.333% - 13px);display:block;content:""}@media (max-width:782px){.monsterinsights-widget-full-width .monsterinsights-widget-accordion{padding:0}}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box{padding-top:0!important}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading){height:auto!important}}.monsterinsights-table-box .monsterinsights-info{top:20px;right:20px}.monsterinsights-reports-pie-chart .monsterinsights-info,.monsterinsights-reports-pie-chart .monsterinsights-report-title,.monsterinsights-table-box .monsterinsights-info,.monsterinsights-table-box .monsterinsights-report-title{display:none}.monsterinsights-hide-button,.monsterinsights-width-button{border:none;background:none;padding:0;margin:0 0 0 8px;color:#72777c;cursor:pointer}.monsterinsights-hide-button:focus,.monsterinsights-hide-button:hover,.monsterinsights-width-button:focus,.monsterinsights-width-button:hover{color:#393f4c}.monsterinsights-hide-button i,.monsterinsights-width-button i{font-size:16px}.monsterinsights-widget-full-width .monsterinsights-hide-button i,.monsterinsights-widget-full-width .monsterinsights-width-button i{font-size:20px}.monsterinsights-hide-button{margin-left:0;margin-top:5px;color:#393f4c}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:10px 5px 7px 9px}#monsterinsights_reports_widget.monsterinsights-widget-full-width{margin:16px 0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-report-title,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-report-title{display:block}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-report-title,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-report-title{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding-left:20px;padding-bottom:20px}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding-left:5px;padding-bottom:5px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box{padding-top:22px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .hndle{padding:22px 22px 22px 72px;border-bottom:none;height:auto;margin:0;position:relative;font-size:16px;color:#657086;font-weight:400;cursor:default}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{border:1px solid #d6e2ed;display:block;padding:0;width:calc(33.333% - 13px);margin-top:20px}@media (max-width:1280px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{width:calc(50% - 10px)}}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{width:100%;padding:0;border:none;margin-right:0;margin-top:0}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element:first-child{width:100%;border:none;padding:0;margin:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings{right:22px;margin-bottom:4px}@media (max-width:806px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings{right:0;margin-right:10px;position:relative;bottom:0;margin-left:10px;float:none;margin-bottom:0}}@media (max-width:494px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings .monsterinsights-button-full-report{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings .monsterinsights-btn-group{width:auto}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list{width:auto;position:relative;top:0;border:none;border-radius:0}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list{margin:20px 0}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{background:#eceff5;color:#464c57;border-radius:0;line-height:18px;display:inline-block;margin:0;width:auto;border:1px solid #d6e2ed;padding:10px 20px;font-size:14px}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{padding:10px 15px}}@media (max-width:374px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{font-size:12px;padding-left:10px;padding-right:10px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:hover{background:#fff}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:focus{z-index:10;position:relative}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-right:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button.monsterinsights-btn-group-list-button-selected{background:#fff;color:#509fe2;font-weight:700}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-widget-content{padding:20px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row{margin:20px 0 0}@media (min-width:783px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;padding:17px 20px 15px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:1px solid #d6e2ed}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-number{font-size:36px;float:left}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-compare,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-prev{float:right}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content{border-bottom:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs{margin:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button{background:#8ea4b4;border:1px solid #708c9f;padding:9px;color:#fff;font-size:20px;line-height:1;min-width:40px;height:auto;width:auto;border-radius:5px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog:focus,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog:hover,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button:focus,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button:hover{background-color:#708c9f}@media (max-width:374px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button{padding:8px;min-width:38px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-toggle{display:none}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-toggle{display:block}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading){height:100%}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading) .monsterinsights-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;height:100%}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:0}.monsterinsights-fullwidth-mascot{background-image:url(../img/mascot.png);width:41px;height:40px;background-repeat:no-repeat;background-size:contain;position:absolute;left:22px;bottom:100%;margin-bottom:4px}.monsterinsights-fullwidth-report-title{position:absolute;left:72px;font-size:20px;color:#393f4c;font-weight:700;bottom:100%;margin-bottom:0}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:none;filter:none}#dashboard-widgets .monsterinsights-widget-footer{padding:11px 12px;line-height:1;font-size:13px;color:#72777c}#dashboard-widgets .monsterinsights-widget-footer .monsterinsights-dark{color:#23282c;font-weight:500}#dashboard-widgets .monsterinsights-widget-footer a{margin-right:10px;text-decoration:underline;color:#1c75a6}#dashboard-widgets .monsterinsights-widget-footer a:focus,#dashboard-widgets .monsterinsights-widget-footer a:hover{text-decoration:none;color:#393f4c}@media (max-width:782px){#dashboard-widgets .monsterinsights-upsell-overlay{width:100%}}#dashboard-widgets .monsterinsights-upsell-overlay a{text-decoration:underline}#dashboard-widgets .monsterinsights-upsell-overlay a.monsterinsights-button,#dashboard-widgets .monsterinsights-upsell-overlay a:focus,#dashboard-widgets .monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-height100{height:100%}@media (max-width:782px){.monsterinsights-height100{height:auto}}.monsterinsights-table-item-content{word-break:break-all}.monsterinsights-table-box.monsterinsights-table-box-mobile .monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}#monsterinsights-chartjs-line-overview-tooltip{margin-top:-60px}.folded #monsterinsights-chartjs-line-overview-tooltip{margin-left:-118px}#monsterinsights_reports_widget .monsterinsights-widget-error{padding:50px 25px;text-align:center}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-title{font-weight:700;font-size:24px}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-content{font-size:16px}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#monsterinsights_reports_widget .monsterinsights-widget-error .swal2-icon,#monsterinsights_reports_widget .monsterinsights-widget-error .swal2-icon *{-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-widget-accordion-lite .monsterinsights-widget-report-overview .monsterinsights-widget-content{padding-top:20px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row{margin:0 0 20px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-upsell-overlay .monsterinsights-upsell-content{height:100%}.monsterinsights-faded{opacity:.5}.monsterinsights-lite-overview-buttons{border-top:1px solid #d6e2ed;background:#f9fbff;padding:20px}.monsterinsights-lite-overview-buttons .monsterinsights-button{margin-top:0;font-size:13px;padding:8px 10px}.monsterinsights-swal .swal2-title{line-height:1.2}#dashboard-widgets .monsterinsights-tips{border:1px solid #5fa6e7;margin:0 20px 20px;padding:17px 15px;color:#393f4c;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}#dashboard-widgets .monsterinsights-tips .monstericon-star{color:#5fa6e7;font-size:19px;margin-right:14px}#dashboard-widgets .monsterinsights-tips a{color:#5fa6e7;text-decoration:underline}#dashboard-widgets .monsterinsights-tips a:hover{text-decoration:none}.monsterinsights-widget-full-width .monsterinsights-tips{display:none}
|
1 |
.monsterinsights-tracking-notice{position:fixed;bottom:20px;right:15px;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;background:#fff;-webkit-box-shadow:0 0 10px 0 #dedede;box-shadow:0 0 10px 0 #dedede;padding:6px 5px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:380px;max-width:calc(100% - 30px);border-radius:6px;z-index:10000}.monsterinsights-tracking-notice h3{font-size:13px;color:#222;font-weight:700;margin:0 0 8px;padding:0;line-height:1;border:none}.monsterinsights-tracking-notice p{font-size:13px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.monsterinsights-tracking-notice p a{color:#509fe2;font-size:13px;line-height:1.2;margin:0;padding:0;text-decoration:underline;font-weight:400}.monsterinsights-tracking-notice p a:hover{color:#3a93dd;text-decoration:none}.monsterinsights-tracking-notice .monsterinsights-tracking-notice-icon{padding:14px;background-color:#f2f6ff;border-radius:6px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-right:12px}.monsterinsights-tracking-notice .monsterinsights-tracking-notice-close{padding:0;margin:0 3px 0 0;border:none;-webkit-box-shadow:none;box-shadow:none;border-radius:0;color:#7f7f7f;background:rgba(0,0,0,0);line-height:1;-ms-flex-item-align:start;align-self:flex-start;cursor:pointer;font-size:16px;font-weight:400}.monsterinsights-tracking-notice .monsterinsights-fullwidth-mascot{position:relative;left:auto;top:auto}.monsterinsights-slide-up-enter-active,.monsterinsights-slide-up-leave-active{-webkit-transition:bottom .7s ease;transition:bottom .7s ease}.monsterinsights-slide-up-enter,.monsterinsights-slide-up-leave-to{bottom:-200px}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-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"}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-left:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip[x-placement^=left]{padding-right:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
+
*/.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:0 -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:0 -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:0 -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:0 -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:0 -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:0 -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:0 -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:0 -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:0 -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:0 -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:0 -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:0 -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:0 -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:0 -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:0 -480px}.monsterinsights-report-year-in-review{margin-left:auto;margin-right:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:0 0;margin-bottom:90px}.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:100%;margin-top:20px}}.monsterinsights-report-year-in-review a,.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5,.monsterinsights-report-year-in-review p,.monsterinsights-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5{font-weight:900}.monsterinsights-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.monsterinsights-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-text-right{text-align:right}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/charlie.png);background-repeat:no-repeat;background-position:100% 100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding-left:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/charlie2x.png);background-position:right top 60px;background-size:173px 207px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:26px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-size:12px;max-width:230px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-right:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 25px 14px 90px;position:relative;display:inline-block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:32px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header div{width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder{position:relative}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder .monsterinsights-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box.monsterinsights-year-in-review-table-box-blur-report .monsterinsights-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title{display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle{display:inline-block;float:right}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0;text-transform:capitalize}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list{padding-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item{padding:9px 30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:active,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:focus,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{bottom:-40px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip span{font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip .monsterinsights-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:block;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder .monsterinsights-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{position:relative;left:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{margin:10px 0 0}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{margin-right:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-right:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip a,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip h3,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{width:90px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-size:12px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper{margin-top:15px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:left}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-details{font-size:14px;line-height:20px;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success{background:#1ec185}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:hover{opacity:.8;background:#10ad73}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions img,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors img{margin-bottom:15px;max-height:28px}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-size:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{display:block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{margin:0 auto}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag.monsterinsights-flag-zz{display:none}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{margin-top:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:10px;line-height:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:block;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{margin-top:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:50%;position:relative}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:0;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:55%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:30%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-products-sold,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-revenue{padding:75px 0}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:24px;line-height:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:45%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:70%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning img,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular img{margin-bottom:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-revenue-by-month{margin-bottom:50px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:0 0;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:0;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-size:14px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{padding:0 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.chris{background-image:url(../img/chris.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.syed{background-image:url(../img/syed.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{width:100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content{text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-size:18px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{text-align:center;padding-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:active,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:hover{background:#123c68}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-left:0;margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:calc(50% - 60px);float:left;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:100%;margin:30px 0;min-height:300px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top{padding-top:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image{width:104px;float:left;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image .monsterinsights-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:hover{background:rgba(51,142,239,.5)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{padding-top:100px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-size:18px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:block;margin-left:0;padding-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{min-height:350px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{padding:8px 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-left:10px;padding-right:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-left:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-left:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:50%;font-weight:700;text-align:left;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-right:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-right:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-left:1px solid #d6e2ed;padding:17px 20px 15px;position:relative}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;right:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-left:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-right:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:left}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:right}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px}.monsterinsights-reports-infobox-compare{clear:right;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-right:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-right:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-right:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-right:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;left:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:right}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;right:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-left:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-left:0;margin-top:0}.monsterinsights-table-box h3{margin-left:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute}@media (max-width:991px){.monsterinsights-table-box{margin-left:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px 0 -10px -8px}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}.monsterinsights-table-box-pagination{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-right:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-right:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:left;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-left:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-right:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-left:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABSUlEQVRIie3WP0scQRgH4OdODaggXiGksNLCFCEigtqpYGFhZ6+IhYKSQO4DaGFnIYLcdRbWVhYRVKzsbbURjI2QD2GK24N1b3dv9hK7e2FZ3tn5zQPL/pnSw8ycwFrFJvrwip/4ExLsDRVwgs+x/hEHIcFyAaQ/0Q+GBosgHVcX6SIfjwzhO6b+w5o92MByHBnGLY5xh/l/AEo4jY5f+NFEzjAdTRrABWY7BGpYi/VHWCqjkpg8hEt8K4gcYjsFrpSxjpfExQpuMBEI7KGaMl7DeRlPWEiBRiJorA1QxX4GsIu35tOVBY3iKjqn1ZbGbcoEeP+eZEHjuManxPhKtFgpD0giedAXrf+Tryn5FiANyYPaVSqQhcSh34FAPQvIQ5rQYgBUx04W0A4JgdoCIUgeFASEInHoOeproQDF9l1PmNT4AtwXyPkLNbVGvHN63iMAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABhUlEQVRIie3Wz0qVQRjH8c85qUQtbGN0Ba5U0E0XEAWtBAmh/IdSIUFYFxB1BYWiIMbBMNSwDCoUlAK3bQTpDtx2B5HaYt5DpzmTZ45JK3+r4Znneb/MPH/eKQ3vLMtUH64X632s5ga2NOH3BZdqbN/xOSe4nAm5GAHgcmZsNuSfdAY5g/wfSJfQD6ehHpyvhZQwg2/Y1USTJVRCBXv4io4q5CkeFk6dwqhoPyHkBSaKdQ+20FbGzcixu9i80CTgGaYiWy+ulPEEP6LNq/iItkzAI+FGYk1jv4xtDCRA17CGcw0A43iesM/jMb+rawODCVA/FoWEpnQLLxP7FTzAEX/+Tz7gjvAzaq2xj1SdI93AbfUnXcS92pi4GdcxhIPIPpqAjKnP2VIMSEHgLYYToEZaEcq3Lu5vY+WNkNBc0Jpw2qT/cbPrNe7isAHgnfQVZ0HgFe5LJx7eF4Cfx30kZwpXMJkAfRKqKy77E0FgQZhvVdCm0CMNAeS/u2BOeNR1YjYXAL8A/ktHYGdlxIUAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABRUlEQVRIie3Vvy4EQRwH8M+dKxUeAIV7EvGnUHiCqzQOiUrUvAAdEYlC4glIlCgViJCIQjQ6IrnCn0j8KfY21t7u3Q4KhW+zmd/szCcz2dkp1fa3BKQHAzgOGVQOeLeKUxxhFaXfRqrYQ3+zXQ+BiiAx0JeqTxaFOiF5QBDUDukEFIYqbYB99HYAkhBM4T3dmbWSUCAJZa4ojeQBF3hK1c7xVgRKInnAFUbxkqrvYFrr9rRAMZIH3GCk+czKGuYy6l+gchvgFsO4zgHiLGEhB1pBqYLNDOAeQ7jsAMRZRLfWVdVxUEYj1dHAGM4KAnHmRVuUTqOMGk6ahUeM4zAQIPoAZkQ7E2cOuxXR1gxiAgcCf+MZUDzPLbb5PPENLP9g8mResZEshNwn384/8o/8DeQ51X4oOjDv+s3KrOg0d+EO60UHfgC50EbFBrbrYQAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAYAAAArK+5dAAABYUlEQVRIie3UTUtVURTG8V/HPkBgpuVV86UsTYkG4tgmEeYgiIIIp324gjAoLLVRkM3CSaCOdOZAnEgoiYO7Nlw2J9texZEPHDh7vTz/xdqwr/yemlaoYSygA8+wXtJUFZoPYgVjGI3/kfMC9Idhf0usEbHBswIa+IbbNbm+yA20C+gNg6ETagaipu+0gJvK95zup1EK6I6GuwXmSSPRc+t/gC4s414W360x3cvOdwLS8y9AMh/PGrfwugbwFptZbDQ8buSATnzBRNawgxls1wC28aQmNxaQrgS4FuYPs8I9PMZGjXnSBp7GIK16gCVcr/Aej7KC/Zhu7QTzpDXNpyO/k0m8q3A/SxxgDj8KzJNW8TwGa9VEhXn8icBfvNTc4Wm1glcxYBr0TYWvmMVimH9owzzpI17gs+baPl2NxLL2pq7TQnwof67b1iXgEnBxgKOa2OF5AtbxveX8E79KGo8BZr5ClKgrWrIAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-right:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;right:20px;top:20px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.monsterinsights-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.monsterinsights-upsell-overlay p{margin:20px 0}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-left:20px;padding-right:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:0 auto;max-width:520px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-left:40px;position:relative;line-height:1.2}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;left:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#f9fbff;font-size:14px;text-align:center;line-height:20px;top:-1px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{font-weight:400;font-size:16px;margin-top:10px}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-right:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-left:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}#monsterinsights_reports_widget,#monsterinsights_reports_widget *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#monsterinsights_reports_widget .inside{margin:0;padding:0}#monsterinsights_reports_widget .monsterinsights-info:focus,#monsterinsights_reports_widget a:focus,#monsterinsights_reports_widget button:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#monsterinsights_reports_widget .handlediv:focus{outline:none;-webkit-box-shadow:none;box-shadow:none}#dashboard-widgets .monsterinsights-reports-link,#dashboard-widgets .monsterinsights-widget-toggle,.postbox .inside .monsterinsights-reports-link,.postbox .inside .monsterinsights-widget-toggle{background-color:#fafafa;border-bottom:1px solid #eee;cursor:pointer;padding:11px 12px;line-height:1;position:relative}#dashboard-widgets .monsterinsights-reports-link:focus,#dashboard-widgets .monsterinsights-widget-toggle:focus,.postbox .inside .monsterinsights-reports-link:focus,.postbox .inside .monsterinsights-widget-toggle:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:10}#dashboard-widgets .monsterinsights-reports-link h2,#dashboard-widgets .monsterinsights-widget-toggle h2,.postbox .inside .monsterinsights-reports-link h2,.postbox .inside .monsterinsights-widget-toggle h2{display:inline-block;font-size:14px;font-weight:400;line-height:1;margin:0;padding:0;color:#23282c}#dashboard-widgets .monsterinsights-reports-link.monsterinsights-widget-toggle-active:after,#dashboard-widgets .monsterinsights-widget-toggle.monsterinsights-widget-toggle-active:after,.postbox .inside .monsterinsights-reports-link.monsterinsights-widget-toggle-active:after,.postbox .inside .monsterinsights-widget-toggle.monsterinsights-widget-toggle-active:after{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}#dashboard-widgets .monsterinsights-reports-link,.postbox .inside .monsterinsights-reports-link{cursor:default}#dashboard-widgets .monsterinsights-reports-link .monsterinsights-button,.postbox .inside .monsterinsights-reports-link .monsterinsights-button{font-size:12px;font-weight:700;padding:5px 9px 4px;margin-left:10px}#dashboard-widgets .monsterinsights-btn-group-label:after,#dashboard-widgets .monsterinsights-widget-toggle:after,.postbox .inside .monsterinsights-btn-group-label:after,.postbox .inside .monsterinsights-widget-toggle:after{color:#72777c;content:"\f142";display:inline-block;font:normal 20px/1 dashicons;position:absolute;right:7px;text-decoration:none!important;text-indent:-1px;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;top:8px}#dashboard-widgets .monsterinsights-btn-group-label:after,.postbox .inside .monsterinsights-btn-group-label:after{right:2px;top:2px}#dashboard-widgets .monsterinsights-upsell-overlay h3,.postbox .inside .monsterinsights-upsell-overlay h3{text-align:left;color:#393f4c;font-size:20px;margin:12px 0 20px;font-weight:700;line-height:1.4}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle{text-align:left}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-top,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding:20px;width:100%}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{display:none}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{margin-top:0;font-size:13px;padding:8px 10px}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-center,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-center{text-align:left}#dashboard-widgets .monsterinsights-button-full-report,.postbox .inside .monsterinsights-button-full-report{font-size:12px;padding:5px 9px 4px;font-weight:700;line-height:1;margin-right:-5px;margin-left:5px}.monsterinsights-widget-cog{margin:0 0 0 10px;border:none;cursor:pointer;display:block;height:20px;padding:0;width:20px;color:#72777c;background:none;font-size:16px}.monsterinsights-widget-cog:focus,.monsterinsights-widget-cog:hover{color:#393f4c}.monsterinsights-widget-dropdown{position:relative;display:inline-block;vertical-align:middle}.monsterinsights-widget-dropdown-content{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:auto;font-weight:400;margin-right:-11px;margin-top:5px;padding:0 10px 10px;position:absolute;right:0;top:100%;width:180px;z-index:999}.monsterinsights-widget-dropdown-content:before{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #d8d8d8;border-style:solid;border-width:0 4px 4px;bottom:100%;content:"";height:0;position:absolute;right:16px;width:0}.monsterinsights-widget-dropdown-content:after{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-style:solid;border-width:0 3px 3px;bottom:100%;content:"";height:0;position:absolute;right:17px;width:0}.monsterinsights-widget-dropdown-content>span{color:#999;font-size:10px;margin-top:12px;display:block}.monsterinsights-widget-dropdown-content label{padding-left:16px;color:#393f4c;font-size:12px;position:relative;margin-bottom:4px;display:block}.monsterinsights-widget-dropdown-content label:before{content:"";border:1px solid #d6e2ed;width:10px;height:10px;display:block;position:absolute;left:0;top:3px}.monsterinsights-widget-dropdown-content label input[type=checkbox]{display:none}.monsterinsights-widget-dropdown-content label.monsterinsights-checked:after{content:"";border-color:#509fe2;border-style:solid;border-width:1px 0 0 1px;display:block;width:6px;height:10px;position:absolute;left:3px;top:2px;-webkit-transform:rotate(216deg);-ms-transform:rotate(216deg);transform:rotate(216deg)}.monsterinsights-widget-dropdown-content label:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.monsterinsights-red{color:#d73638}.monsterinsights-green{color:#5cc0a5}.monsterinsights-btn-group{position:relative;display:inline-block;vertical-align:middle;width:110px;margin-right:0}.monsterinsights-btn-group .monsterinsights-btn-group-label,.monsterinsights-btn-group .monsterinsights-btn-group-list-button{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:pointer;display:inline-block;font-size:13px;font-weight:400;line-height:1;padding:5px 14px 5px 10px;position:relative;text-align:left;width:100%;margin:0}.monsterinsights-btn-group-list{border-left:1px solid #d8d8d8;border-right:1px solid #d8d8d8;position:absolute;top:100%;z-index:1000;right:0;left:0}.monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{border-radius:0;border-width:0 0 1px}.monsterinsights-btn-group-list .monsterinsights-btn-group-list-button.monsterinsights-btn-group-list-button-selected{background:#1f76c4;color:#fff}.monsterinsights-btn-group-open .monsterinsights-btn-group-label{border-radius:5px 5px 0 0}#monsterinsights_reports_widget.closed .inside{display:block}#monsterinsights_reports_widget .monsterinsights-widget-settings{position:absolute;bottom:100%;right:12px;margin-bottom:6px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (max-width:782px){#monsterinsights_reports_widget .monsterinsights-widget-settings{right:10px}}#monsterinsights_reports_widget .hndle{font-size:14px}#monsterinsights_reports_widget .toggle-indicator{display:none}#monsterinsights_reports_widget .monsterinsights-not-authenticated-notice{-webkit-box-shadow:none;box-shadow:none;position:relative;width:100%;margin:0;left:0;top:0;padding-top:50px;border:none}#monsterinsights_reports_widget .monsterinsights-not-authenticated-notice h3{font-size:18px;font-weight:700}@media (max-width:430px),(max-width:936px) and (min-width:800px),(max-width:1040px) and (min-width:962px),only screen and (max-width:1890px) and (min-width:1800px){#monsterinsights_reports_widget .monsterinsights-button-full-report{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-button-full-report{display:block;padding:12px 12px 11px;line-height:1;font-size:14px;margin-right:0}.monsterinsights-report-tabs{margin:20px}.monsterinsights-report-infobox-row{margin:0 20px 20px;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%;padding:12px 10px 10px 15px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}@media (min-width:783px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:1px solid #d6e2ed}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{top:12px;right:15px}.monsterinsights-reports-infobox-number{font-size:36px;float:none}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none}.monsterinsights-reports-infobox-prev{margin-top:15px}.monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button{font-size:14px;padding:11px 9px 12px;line-height:1;text-align:left;font-weight:400}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:9px}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button i{margin-right:7px}.monsterinsights-widget-regular-width .monsterinsights-table-list-item{font-size:14px;padding:11px 12px;min-height:36px}.monsterinsights-widget-regular-width .monsterinsights-table-box-table td,.monsterinsights-widget-regular-width .monsterinsights-table-box-table td:first-child,.monsterinsights-widget-regular-width .monsterinsights-table-box-table th,.monsterinsights-widget-regular-width .monsterinsights-table-box-table th:first-child{padding-left:12px;padding-right:12px}.monsterinsights-widget-report-title .monsterinsights-info{margin-left:10px;color:#b4b9be}.monsterinsights-widget-content{border-bottom:1px solid #eee;height:100%}.monsterinsights-widget-content .monsterinsights-table-box{padding-top:0;border:none}.monsterinsights-dashboard-widget-page.monsterinsights-blur .monsterinsights-widget-content{height:auto}.monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-button:focus,.monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-table-box-footer{text-align:left}.monsterinsights-table-box-pagination{display:none}.monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}.monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}.monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}.monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}.monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}.monsterinsights-reports-pie-chart{border:none;width:100%}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{left:220px}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{left:auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-text{min-width:75px}.monsterinsights-upsell-overlay{position:relative;-webkit-transform:none;-ms-transform:none;transform:none;left:0;top:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0;padding-top:0;border:none}.monsterinsights-upsell-overlay .monsterinsights-button{color:#fff}.monsterinsights-ecommerce-overview{padding-top:20px}.monsterinsights-ecommerce-overview .monsterinsights-upsell-overlay{padding-top:0}.monsterinsights-report-title{font-size:16px}.mi-dw-not-authed{padding:20px;text-align:center}.mi-dw-not-authed h2{font-size:18px;margin:0}.mi-dw-not-authed p{font-size:14px;margin:18px auto;max-width:280px}.mi-dw-btn-large{background:#1f76c4;border-radius:5px;color:#fff;display:inline-block;font-size:14px;line-height:1;margin-bottom:10px;padding:14px 28px}.mi-dw-btn-large:hover{color:#fff}.monsterinsights-widget-loading{animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;height:2.5em;margin:50px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights-widget-full-width .monsterinsights-widget-accordion{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;padding:20px 22px 22px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-widget-full-width .monsterinsights-widget-accordion:after{width:calc(33.333% - 13px);display:block;content:""}@media (max-width:782px){.monsterinsights-widget-full-width .monsterinsights-widget-accordion{padding:0}}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box{padding-top:0!important}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading){height:auto!important}}.monsterinsights-table-box .monsterinsights-info{top:20px;right:20px}.monsterinsights-reports-pie-chart .monsterinsights-info,.monsterinsights-reports-pie-chart .monsterinsights-report-title,.monsterinsights-table-box .monsterinsights-info,.monsterinsights-table-box .monsterinsights-report-title{display:none}.monsterinsights-hide-button,.monsterinsights-width-button{border:none;background:none;padding:0;margin:0 0 0 8px;color:#72777c;cursor:pointer}.monsterinsights-hide-button:focus,.monsterinsights-hide-button:hover,.monsterinsights-width-button:focus,.monsterinsights-width-button:hover{color:#393f4c}.monsterinsights-hide-button i,.monsterinsights-width-button i{font-size:16px}.monsterinsights-widget-full-width .monsterinsights-hide-button i,.monsterinsights-widget-full-width .monsterinsights-width-button i{font-size:20px}.monsterinsights-hide-button{margin-left:0;margin-top:5px;color:#393f4c}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:10px 5px 7px 9px}#monsterinsights_reports_widget.monsterinsights-widget-full-width{margin:16px 0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-report-title,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-report-title{display:block}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-report-title,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-report-title{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding-left:20px;padding-bottom:20px}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding-left:5px;padding-bottom:5px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box{padding-top:22px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .hndle{padding:22px 22px 22px 72px;border-bottom:none;height:auto;margin:0;position:relative;font-size:16px;color:#657086;font-weight:400;cursor:default}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{border:1px solid #d6e2ed;display:block;padding:0;width:calc(33.333% - 13px);margin-top:20px}@media (max-width:1280px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{width:calc(50% - 10px)}}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{width:100%;padding:0;border:none;margin-right:0;margin-top:0}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element:first-child{width:100%;border:none;padding:0;margin:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings{right:22px;margin-bottom:4px}@media (max-width:806px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings{right:0;margin-right:10px;position:relative;bottom:0;margin-left:10px;float:none;margin-bottom:0}}@media (max-width:494px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings .monsterinsights-button-full-report{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings .monsterinsights-btn-group{width:auto}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list{width:auto;position:relative;top:0;border:none;border-radius:0}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list{margin:20px 0}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{background:#eceff5;color:#464c57;border-radius:0;line-height:18px;display:inline-block;margin:0;width:auto;border:1px solid #d6e2ed;padding:10px 20px;font-size:14px}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{padding:10px 15px}}@media (max-width:374px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{font-size:12px;padding-left:10px;padding-right:10px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:hover{background:#fff}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:focus{z-index:10;position:relative}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-right:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button.monsterinsights-btn-group-list-button-selected{background:#fff;color:#509fe2;font-weight:700}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-widget-content{padding:20px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row{margin:20px 0 0}@media (min-width:783px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;padding:17px 20px 15px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:1px solid #d6e2ed}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-number{font-size:36px;float:left}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-compare,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-prev{float:right}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content{border-bottom:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs{margin:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button{background:#8ea4b4;border:1px solid #708c9f;padding:9px;color:#fff;font-size:20px;line-height:1;min-width:40px;height:auto;width:auto;border-radius:5px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog:focus,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog:hover,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button:focus,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button:hover{background-color:#708c9f}@media (max-width:374px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button{padding:8px;min-width:38px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-toggle{display:none}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-toggle{display:block}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading){height:100%}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading) .monsterinsights-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;height:100%}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:0}.monsterinsights-fullwidth-mascot{background-image:url(../img/mascot.png);width:41px;height:40px;background-repeat:no-repeat;background-size:contain;position:absolute;left:22px;bottom:100%;margin-bottom:4px}.monsterinsights-fullwidth-report-title{position:absolute;left:72px;font-size:20px;color:#393f4c;font-weight:700;bottom:100%;margin-bottom:0}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:none;filter:none}#dashboard-widgets .monsterinsights-widget-footer{padding:11px 12px;line-height:1;font-size:13px;color:#72777c}#dashboard-widgets .monsterinsights-widget-footer .monsterinsights-dark{color:#23282c;font-weight:500}#dashboard-widgets .monsterinsights-widget-footer a{margin-right:10px;text-decoration:underline;color:#1c75a6}#dashboard-widgets .monsterinsights-widget-footer a:focus,#dashboard-widgets .monsterinsights-widget-footer a:hover{text-decoration:none;color:#393f4c}@media (max-width:782px){#dashboard-widgets .monsterinsights-upsell-overlay{width:100%}}#dashboard-widgets .monsterinsights-upsell-overlay a{text-decoration:underline}#dashboard-widgets .monsterinsights-upsell-overlay a.monsterinsights-button,#dashboard-widgets .monsterinsights-upsell-overlay a:focus,#dashboard-widgets .monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-height100{height:100%}@media (max-width:782px){.monsterinsights-height100{height:auto}}.monsterinsights-table-item-content{word-break:break-all}.monsterinsights-table-box.monsterinsights-table-box-mobile .monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}#monsterinsights-chartjs-line-overview-tooltip{margin-top:-60px}.folded #monsterinsights-chartjs-line-overview-tooltip{margin-left:-118px}#monsterinsights_reports_widget .monsterinsights-widget-error{padding:50px 25px;text-align:center}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-title{font-weight:700;font-size:24px}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-content{font-size:16px}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#monsterinsights_reports_widget .monsterinsights-widget-error .swal2-icon,#monsterinsights_reports_widget .monsterinsights-widget-error .swal2-icon *{-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-widget-accordion-lite .monsterinsights-widget-report-overview .monsterinsights-widget-content{padding-top:20px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row{margin:0 0 20px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-upsell-overlay .monsterinsights-upsell-content{height:100%}.monsterinsights-faded{opacity:.5}.monsterinsights-lite-overview-buttons{border-top:1px solid #d6e2ed;background:#f9fbff;padding:20px}.monsterinsights-lite-overview-buttons .monsterinsights-button{margin-top:0;font-size:13px;padding:8px 10px}.monsterinsights-swal .swal2-title{line-height:1.2}#dashboard-widgets .monsterinsights-tips{border:1px solid #5fa6e7;margin:0 20px 20px;padding:17px 15px;color:#393f4c;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}#dashboard-widgets .monsterinsights-tips .monstericon-star{color:#5fa6e7;font-size:19px;margin-right:14px}#dashboard-widgets .monsterinsights-tips a{color:#5fa6e7;text-decoration:underline}#dashboard-widgets .monsterinsights-tips a:hover{text-decoration:none}.monsterinsights-widget-full-width .monsterinsights-tips{display:none}
|
lite/assets/vue/css/widget.rtl.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
.monsterinsights-tracking-notice{position:fixed;bottom:20px;left:15px;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;background:#fff;-webkit-box-shadow:0 0 10px 0 #dedede;box-shadow:0 0 10px 0 #dedede;padding:6px 5px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:380px;max-width:calc(100% - 30px);border-radius:6px;z-index:10000}.monsterinsights-tracking-notice h3{font-size:13px;color:#222;font-weight:700;margin:0 0 8px;padding:0;line-height:1;border:none}.monsterinsights-tracking-notice p{font-size:13px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.monsterinsights-tracking-notice p a{color:#509fe2;font-size:13px;line-height:1.2;margin:0;padding:0;text-decoration:underline;font-weight:400}.monsterinsights-tracking-notice p a:hover{color:#3a93dd;text-decoration:none}.monsterinsights-tracking-notice .monsterinsights-tracking-notice-icon{padding:14px;background-color:#f2f6ff;border-radius:6px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-left:12px}.monsterinsights-tracking-notice .monsterinsights-tracking-notice-close{padding:0;margin:0 0 0 3px;border:none;-webkit-box-shadow:none;box-shadow:none;border-radius:0;color:#7f7f7f;background:rgba(0,0,0,0);line-height:1;-ms-flex-item-align:start;align-self:flex-start;cursor:pointer;font-size:16px;font-weight:400}.monsterinsights-tracking-notice .monsterinsights-fullwidth-mascot{position:relative;right:auto;top:auto}.monsterinsights-slide-up-enter-active,.monsterinsights-slide-up-leave-active{-webkit-transition:bottom .7s ease;transition:bottom .7s ease}.monsterinsights-slide-up-enter,.monsterinsights-slide-up-leave-to{bottom:-200px}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-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"}.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}/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
-
*/.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:100% -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:100% -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:100% -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:100% -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:100% -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:100% -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:100% -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:100% -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:100% -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:100% -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:100% -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:100% -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:100% -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:100% -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:100% -480px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-right:10px;padding-left:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-right:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-left:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-right:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:50%;font-weight:700;text-align:right;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-left:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-left:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-right:1px solid #d6e2ed;padding:17px 20px 15px;position:relative}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;left:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-right:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-right:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-left:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:right}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:left}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px}.monsterinsights-reports-infobox-compare{clear:left;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-left:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-left:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-left:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-left:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;right:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;right:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:left}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;left:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-right:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-right:0;margin-top:0}.monsterinsights-table-box h3{margin-right:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute}@media (max-width:991px){.monsterinsights-table-box{margin-right:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-left:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px -8px -10px 0}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:left;display:block;padding-right:5px}.monsterinsights-table-box-pagination{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-left:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-left:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-right:0;margin-right:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1{margin-right:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-right:20px;font-size:15px;color:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-left:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;left:10px;top:50%;-webkit-transform:translateY(-50%) rotate(-180deg);-ms-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);color:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:right;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-right:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-left:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-right:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABSUlEQVRIie3WP0scQRgH4OdODaggXiGksNLCFCEigtqpYGFhZ6+IhYKSQO4DaGFnIYLcdRbWVhYRVKzsbbURjI2QD2GK24N1b3dv9hK7e2FZ3tn5zQPL/pnSw8ycwFrFJvrwip/4ExLsDRVwgs+x/hEHIcFyAaQ/0Q+GBosgHVcX6SIfjwzhO6b+w5o92MByHBnGLY5xh/l/AEo4jY5f+NFEzjAdTRrABWY7BGpYi/VHWCqjkpg8hEt8K4gcYjsFrpSxjpfExQpuMBEI7KGaMl7DeRlPWEiBRiJorA1QxX4GsIu35tOVBY3iKjqn1ZbGbcoEeP+eZEHjuManxPhKtFgpD0giedAXrf+Tryn5FiANyYPaVSqQhcSh34FAPQvIQ5rQYgBUx04W0A4JgdoCIUgeFASEInHoOeproQDF9l1PmNT4AtwXyPkLNbVGvHN63iMAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABhUlEQVRIie3Wz0qVQRjH8c85qUQtbGN0Ba5U0E0XEAWtBAmh/IdSIUFYFxB1BYWiIMbBMNSwDCoUlAK3bQTpDtx2B5HaYt5DpzmTZ45JK3+r4Znneb/MPH/eKQ3vLMtUH64X632s5ga2NOH3BZdqbN/xOSe4nAm5GAHgcmZsNuSfdAY5g/wfSJfQD6ehHpyvhZQwg2/Y1USTJVRCBXv4io4q5CkeFk6dwqhoPyHkBSaKdQ+20FbGzcixu9i80CTgGaYiWy+ulPEEP6LNq/iItkzAI+FGYk1jv4xtDCRA17CGcw0A43iesM/jMb+rawODCVA/FoWEpnQLLxP7FTzAEX/+Tz7gjvAzaq2xj1SdI93AbfUnXcS92pi4GdcxhIPIPpqAjKnP2VIMSEHgLYYToEZaEcq3Lu5vY+WNkNBc0Jpw2qT/cbPrNe7isAHgnfQVZ0HgFe5LJx7eF4Cfx30kZwpXMJkAfRKqKy77E0FgQZhvVdCm0CMNAeS/u2BOeNR1YjYXAL8A/ktHYGdlxIUAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAYAAABCfffNAAABRUlEQVRIie3Vvy4EQRwH8M+dKxUeAIV7EvGnUHiCqzQOiUrUvAAdEYlC4glIlCgViJCIQjQ6IrnCn0j8KfY21t7u3Q4KhW+zmd/szCcz2dkp1fa3BKQHAzgOGVQOeLeKUxxhFaXfRqrYQ3+zXQ+BiiAx0JeqTxaFOiF5QBDUDukEFIYqbYB99HYAkhBM4T3dmbWSUCAJZa4ojeQBF3hK1c7xVgRKInnAFUbxkqrvYFrr9rRAMZIH3GCk+czKGuYy6l+gchvgFsO4zgHiLGEhB1pBqYLNDOAeQ7jsAMRZRLfWVdVxUEYj1dHAGM4KAnHmRVuUTqOMGk6ahUeM4zAQIPoAZkQ7E2cOuxXR1gxiAgcCf+MZUDzPLbb5PPENLP9g8mResZEshNwn384/8o/8DeQ51X4oOjDv+s3KrOg0d+EO60UHfgC50EbFBrbrYQAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAYAAAArK+5dAAABYUlEQVRIie3UTUtVURTG8V/HPkBgpuVV86UsTYkG4tgmEeYgiIIIp324gjAoLLVRkM3CSaCOdOZAnEgoiYO7Nlw2J9texZEPHDh7vTz/xdqwr/yemlaoYSygA8+wXtJUFZoPYgVjGI3/kfMC9Idhf0usEbHBswIa+IbbNbm+yA20C+gNg6ETagaipu+0gJvK95zup1EK6I6GuwXmSSPRc+t/gC4s414W360x3cvOdwLS8y9AMh/PGrfwugbwFptZbDQ8buSATnzBRNawgxls1wC28aQmNxaQrgS4FuYPs8I9PMZGjXnSBp7GIK16gCVcr/Aej7KC/Zhu7QTzpDXNpyO/k0m8q3A/SxxgDj8KzJNW8TwGa9VEhXn8icBfvNTc4Wm1glcxYBr0TYWvmMVimH9owzzpI17gs+baPl2NxLL2pq7TQnwof67b1iXgEnBxgKOa2OF5AtbxveX8E79KGo8BZr5ClKgrWrIAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-left:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;left:20px;top:20px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-right:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-left:10px;margin-right:2px}.monsterinsights-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:0 0;background-color:#fff;background-size:452px}@media (max-width:991px){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-upsell-overlay{position:absolute;top:125px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.monsterinsights-upsell-overlay p{margin:20px 0}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-right:20px;padding-left:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:0 auto;max-width:520px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-right:40px;position:relative;line-height:1.2}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;right:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#f9fbff;font-size:14px;text-align:center;line-height:20px;top:-1px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{font-weight:400;font-size:16px;margin-top:10px}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-left:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-left:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-right:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-right:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;right:50%;width:750px;max-width:100%;margin-right:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{right:0;margin-right:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-right:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}#monsterinsights_reports_widget,#monsterinsights_reports_widget *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#monsterinsights_reports_widget .inside{margin:0;padding:0}#monsterinsights_reports_widget .monsterinsights-info:focus,#monsterinsights_reports_widget a:focus,#monsterinsights_reports_widget button:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}#monsterinsights_reports_widget .handlediv:focus{outline:none;-webkit-box-shadow:none;box-shadow:none}#dashboard-widgets .monsterinsights-reports-link,#dashboard-widgets .monsterinsights-widget-toggle,.postbox .inside .monsterinsights-reports-link,.postbox .inside .monsterinsights-widget-toggle{background-color:#fafafa;border-bottom:1px solid #eee;cursor:pointer;padding:11px 12px;line-height:1;position:relative}#dashboard-widgets .monsterinsights-reports-link:focus,#dashboard-widgets .monsterinsights-widget-toggle:focus,.postbox .inside .monsterinsights-reports-link:focus,.postbox .inside .monsterinsights-widget-toggle:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);z-index:10}#dashboard-widgets .monsterinsights-reports-link h2,#dashboard-widgets .monsterinsights-widget-toggle h2,.postbox .inside .monsterinsights-reports-link h2,.postbox .inside .monsterinsights-widget-toggle h2{display:inline-block;font-size:14px;font-weight:400;line-height:1;margin:0;padding:0;color:#23282c}#dashboard-widgets .monsterinsights-reports-link.monsterinsights-widget-toggle-active:after,#dashboard-widgets .monsterinsights-widget-toggle.monsterinsights-widget-toggle-active:after,.postbox .inside .monsterinsights-reports-link.monsterinsights-widget-toggle-active:after,.postbox .inside .monsterinsights-widget-toggle.monsterinsights-widget-toggle-active:after{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}#dashboard-widgets .monsterinsights-reports-link,.postbox .inside .monsterinsights-reports-link{cursor:default}#dashboard-widgets .monsterinsights-reports-link .monsterinsights-button,.postbox .inside .monsterinsights-reports-link .monsterinsights-button{font-size:12px;font-weight:700;padding:5px 9px 4px;margin-right:10px}#dashboard-widgets .monsterinsights-btn-group-label:after,#dashboard-widgets .monsterinsights-widget-toggle:after,.postbox .inside .monsterinsights-btn-group-label:after,.postbox .inside .monsterinsights-widget-toggle:after{color:#72777c;content:"\f142";display:inline-block;font:normal 20px/1 dashicons;position:absolute;left:7px;text-decoration:none!important;text-indent:-1px;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);speak:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;top:8px}#dashboard-widgets .monsterinsights-btn-group-label:after,.postbox .inside .monsterinsights-btn-group-label:after{left:2px;top:2px}#dashboard-widgets .monsterinsights-upsell-overlay h3,.postbox .inside .monsterinsights-upsell-overlay h3{text-align:right;color:#393f4c;font-size:20px;margin:12px 0 20px;font-weight:700;line-height:1.4}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle{text-align:right}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-top,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding:20px;width:100%}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{display:none}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{margin-top:0;font-size:13px;padding:8px 10px}#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-center,.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-center{text-align:right}#dashboard-widgets .monsterinsights-button-full-report,.postbox .inside .monsterinsights-button-full-report{font-size:12px;padding:5px 9px 4px;font-weight:700;line-height:1;margin-left:-5px;margin-right:5px}.monsterinsights-widget-cog{margin:0 10px 0 0;border:none;cursor:pointer;display:block;height:20px;padding:0;width:20px;color:#72777c;background:none;font-size:16px}.monsterinsights-widget-cog:focus,.monsterinsights-widget-cog:hover{color:#393f4c}.monsterinsights-widget-dropdown{position:relative;display:inline-block;vertical-align:middle}.monsterinsights-widget-dropdown-content{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:auto;font-weight:400;margin-left:-11px;margin-top:5px;padding:0 10px 10px;position:absolute;left:0;top:100%;width:180px;z-index:999}.monsterinsights-widget-dropdown-content:before{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #d8d8d8;border-style:solid;border-width:0 4px 4px;bottom:100%;content:"";height:0;position:absolute;left:16px;width:0}.monsterinsights-widget-dropdown-content:after{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-style:solid;border-width:0 3px 3px;bottom:100%;content:"";height:0;position:absolute;left:17px;width:0}.monsterinsights-widget-dropdown-content>span{color:#999;font-size:10px;margin-top:12px;display:block}.monsterinsights-widget-dropdown-content label{padding-right:16px;color:#393f4c;font-size:12px;position:relative;margin-bottom:4px;display:block}.monsterinsights-widget-dropdown-content label:before{content:"";border:1px solid #d6e2ed;width:10px;height:10px;display:block;position:absolute;right:0;top:3px}.monsterinsights-widget-dropdown-content label input[type=checkbox]{display:none}.monsterinsights-widget-dropdown-content label.monsterinsights-checked:after{content:"";border-color:#509fe2;border-style:solid;border-width:1px 1px 0 0;display:block;width:6px;height:10px;position:absolute;right:3px;top:2px;-webkit-transform:rotate(-216deg);-ms-transform:rotate(-216deg);transform:rotate(-216deg)}.monsterinsights-widget-dropdown-content label:focus{outline:none;-webkit-box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8);box-shadow:0 0 0 1px #5b9dd9,0 0 2px 1px rgba(30,140,190,.8)}.monsterinsights-red{color:#d73638}.monsterinsights-green{color:#5cc0a5}.monsterinsights-btn-group{position:relative;display:inline-block;vertical-align:middle;width:110px;margin-left:0}.monsterinsights-btn-group .monsterinsights-btn-group-label,.monsterinsights-btn-group .monsterinsights-btn-group-list-button{background:#fff;border:1px solid #d8d8d8;border-radius:5px;cursor:pointer;display:inline-block;font-size:13px;font-weight:400;line-height:1;padding:5px 10px 5px 14px;position:relative;text-align:right;width:100%;margin:0}.monsterinsights-btn-group-list{border-right:1px solid #d8d8d8;border-left:1px solid #d8d8d8;position:absolute;top:100%;z-index:1000;left:0;right:0}.monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{border-radius:0;border-width:0 0 1px}.monsterinsights-btn-group-list .monsterinsights-btn-group-list-button.monsterinsights-btn-group-list-button-selected{background:#1f76c4;color:#fff}.monsterinsights-btn-group-open .monsterinsights-btn-group-label{border-radius:5px 5px 0 0}#monsterinsights_reports_widget.closed .inside{display:block}#monsterinsights_reports_widget .monsterinsights-widget-settings{position:absolute;bottom:100%;left:12px;margin-bottom:6px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}@media (max-width:782px){#monsterinsights_reports_widget .monsterinsights-widget-settings{left:10px}}#monsterinsights_reports_widget .hndle{font-size:14px}#monsterinsights_reports_widget .toggle-indicator{display:none}#monsterinsights_reports_widget .monsterinsights-not-authenticated-notice{-webkit-box-shadow:none;box-shadow:none;position:relative;width:100%;margin:0;right:0;top:0;padding-top:50px;border:none}#monsterinsights_reports_widget .monsterinsights-not-authenticated-notice h3{font-size:18px;font-weight:700}@media (max-width:430px),(max-width:936px) and (min-width:800px),(max-width:1040px) and (min-width:962px),only screen and (max-width:1890px) and (min-width:1800px){#monsterinsights_reports_widget .monsterinsights-button-full-report{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-button-full-report{display:block;padding:12px 12px 11px;line-height:1;font-size:14px;margin-left:0}.monsterinsights-report-tabs{margin:20px}.monsterinsights-report-infobox-row{margin:0 20px 20px;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%;padding:12px 15px 10px 10px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-right:none}@media (min-width:783px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:1px solid #d6e2ed}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{top:12px;left:15px}.monsterinsights-reports-infobox-number{font-size:36px;float:none}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none}.monsterinsights-reports-infobox-prev{margin-top:15px}.monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button{font-size:14px;padding:11px 9px 12px;line-height:1;text-align:right;font-weight:400}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:9px}.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button i{margin-left:7px}.monsterinsights-widget-regular-width .monsterinsights-table-list-item{font-size:14px;padding:11px 12px;min-height:36px}.monsterinsights-widget-regular-width .monsterinsights-table-box-table td,.monsterinsights-widget-regular-width .monsterinsights-table-box-table td:first-child,.monsterinsights-widget-regular-width .monsterinsights-table-box-table th,.monsterinsights-widget-regular-width .monsterinsights-table-box-table th:first-child{padding-right:12px;padding-left:12px}.monsterinsights-widget-report-title .monsterinsights-info{margin-right:10px;color:#b4b9be}.monsterinsights-widget-content{border-bottom:1px solid #eee;height:100%}.monsterinsights-widget-content .monsterinsights-table-box{padding-top:0;border:none}.monsterinsights-dashboard-widget-page.monsterinsights-blur .monsterinsights-widget-content{height:auto}.monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-button:focus,.monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-table-box-footer{text-align:right}.monsterinsights-table-box-pagination{display:none}.monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-left:0;margin:0}.monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}.monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}.monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}.monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}.monsterinsights-reports-pie-chart{border:none;width:100%}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{right:220px}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{right:auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-text{min-width:75px}.monsterinsights-upsell-overlay{position:relative;-webkit-transform:none;-ms-transform:none;transform:none;right:0;top:0;-webkit-box-shadow:none;box-shadow:none;border-radius:0;padding-top:0;border:none}.monsterinsights-upsell-overlay .monsterinsights-button{color:#fff}.monsterinsights-ecommerce-overview{padding-top:20px}.monsterinsights-ecommerce-overview .monsterinsights-upsell-overlay{padding-top:0}.monsterinsights-report-title{font-size:16px}.mi-dw-not-authed{padding:20px;text-align:center}.mi-dw-not-authed h2{font-size:18px;margin:0}.mi-dw-not-authed p{font-size:14px;margin:18px auto;max-width:280px}.mi-dw-btn-large{background:#1f76c4;border-radius:5px;color:#fff;display:inline-block;font-size:14px;line-height:1;margin-bottom:10px;padding:14px 28px}.mi-dw-btn-large:hover{color:#fff}.monsterinsights-widget-loading{animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;background-color:rgba(0,0,0,0)!important;border-radius:100%;border-color:rgba(0,0,0,0) #4b9ce4;border-style:solid;border-width:.25em;-webkit-box-sizing:border-box;box-sizing:border-box;color:rgba(0,0,0,0);cursor:default;height:2.5em;margin:50px auto;padding:0;width:2.5em;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights-widget-full-width .monsterinsights-widget-accordion{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;padding:20px 22px 22px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-widget-full-width .monsterinsights-widget-accordion:after{width:calc(33.333% - 13px);display:block;content:""}@media (max-width:782px){.monsterinsights-widget-full-width .monsterinsights-widget-accordion{padding:0}}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box{padding-top:0!important}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading){height:auto!important}}.monsterinsights-table-box .monsterinsights-info{top:20px;left:20px}.monsterinsights-reports-pie-chart .monsterinsights-info,.monsterinsights-reports-pie-chart .monsterinsights-report-title,.monsterinsights-table-box .monsterinsights-info,.monsterinsights-table-box .monsterinsights-report-title{display:none}.monsterinsights-hide-button,.monsterinsights-width-button{border:none;background:none;padding:0;margin:0 8px 0 0;color:#72777c;cursor:pointer}.monsterinsights-hide-button:focus,.monsterinsights-hide-button:hover,.monsterinsights-width-button:focus,.monsterinsights-width-button:hover{color:#393f4c}.monsterinsights-hide-button i,.monsterinsights-width-button i{font-size:16px}.monsterinsights-widget-full-width .monsterinsights-hide-button i,.monsterinsights-widget-full-width .monsterinsights-width-button i{font-size:20px}.monsterinsights-hide-button{margin-right:0;margin-top:5px;color:#393f4c}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:10px 9px 7px 5px}#monsterinsights_reports_widget.monsterinsights-widget-full-width{margin:16px 0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-report-title,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-report-title{display:block}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-report-title,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-info,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-report-title{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding-right:20px;padding-bottom:20px}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding-right:5px;padding-bottom:5px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box{padding-top:22px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .hndle{padding:22px 72px 22px 22px;border-bottom:none;height:auto;margin:0;position:relative;font-size:16px;color:#657086;font-weight:400;cursor:default}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{border:1px solid #d6e2ed;display:block;padding:0;width:calc(33.333% - 13px);margin-top:20px}@media (max-width:1280px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{width:calc(50% - 10px)}}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element{width:100%;padding:0;border:none;margin-left:0;margin-top:0}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element:first-child{width:100%;border:none;padding:0;margin:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings{left:22px;margin-bottom:4px}@media (max-width:806px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings{left:0;margin-left:10px;position:relative;bottom:0;margin-right:10px;float:none;margin-bottom:0}}@media (max-width:494px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings .monsterinsights-button-full-report{display:none}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings .monsterinsights-btn-group{width:auto}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list{width:auto;position:relative;top:0;border:none;border-radius:0}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list{margin:20px 0}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{background:#eceff5;color:#464c57;border-radius:0;line-height:18px;display:inline-block;margin:0;width:auto;border:1px solid #d6e2ed;padding:10px 20px;font-size:14px}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{padding:10px 15px}}@media (max-width:374px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button{font-size:12px;padding-right:10px;padding-left:10px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:hover{background:#fff}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:focus{z-index:10;position:relative}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-left:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button.monsterinsights-btn-group-list-button-selected{background:#fff;color:#509fe2;font-weight:700}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-widget-content{padding:20px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row{margin:20px 0 0}@media (min-width:783px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;padding:17px 20px 15px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-right:1px solid #d6e2ed}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-number{font-size:36px;float:right}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-compare,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-prev{float:left}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content{border-bottom:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs{margin:0}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button{background:#8ea4b4;border:1px solid #708c9f;padding:9px;color:#fff;font-size:20px;line-height:1;min-width:40px;height:auto;width:auto;border-radius:5px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog:focus,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog:hover,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button:focus,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button:hover{background-color:#708c9f}@media (max-width:374px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog,#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button{padding:8px;min-width:38px}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-toggle{display:none}@media (max-width:782px){#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-toggle{display:block}}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading){height:100%}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content>div:not(.monsterinsights-widget-loading) .monsterinsights-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;height:100%}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child,.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2){border-bottom:0}.monsterinsights-fullwidth-mascot{background-image:url(../img/mascot.png);width:41px;height:40px;background-repeat:no-repeat;background-size:contain;position:absolute;right:22px;bottom:100%;margin-bottom:4px}.monsterinsights-fullwidth-report-title{position:absolute;right:72px;font-size:20px;color:#393f4c;font-weight:700;bottom:100%;margin-bottom:0}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:none;filter:none}#dashboard-widgets .monsterinsights-widget-footer{padding:11px 12px;line-height:1;font-size:13px;color:#72777c}#dashboard-widgets .monsterinsights-widget-footer .monsterinsights-dark{color:#23282c;font-weight:500}#dashboard-widgets .monsterinsights-widget-footer a{margin-left:10px;text-decoration:underline;color:#1c75a6}#dashboard-widgets .monsterinsights-widget-footer a:focus,#dashboard-widgets .monsterinsights-widget-footer a:hover{text-decoration:none;color:#393f4c}@media (max-width:782px){#dashboard-widgets .monsterinsights-upsell-overlay{width:100%}}#dashboard-widgets .monsterinsights-upsell-overlay a{text-decoration:underline}#dashboard-widgets .monsterinsights-upsell-overlay a.monsterinsights-button,#dashboard-widgets .monsterinsights-upsell-overlay a:focus,#dashboard-widgets .monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-height100{height:100%}@media (max-width:782px){.monsterinsights-height100{height:auto}}.monsterinsights-table-item-content{word-break:break-all}.monsterinsights-table-box.monsterinsights-table-box-mobile .monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}#monsterinsights-chartjs-line-overview-tooltip{margin-top:-60px}.folded #monsterinsights-chartjs-line-overview-tooltip{margin-right:-118px}#monsterinsights_reports_widget .monsterinsights-widget-error{padding:50px 25px;text-align:center}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-title{font-weight:700;font-size:24px}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-content{font-size:16px}#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-footer{margin:35px 0 0;padding:15px 0 0;border-top:1px solid #ccc}#monsterinsights_reports_widget .monsterinsights-widget-error .swal2-icon,#monsterinsights_reports_widget .monsterinsights-widget-error .swal2-icon *{-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-widget-accordion-lite .monsterinsights-widget-report-overview .monsterinsights-widget-content{padding-top:20px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row{margin:0 0 20px}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-upsell-overlay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-upsell-overlay .monsterinsights-upsell-content{height:100%}.monsterinsights-faded{opacity:.5}.monsterinsights-lite-overview-buttons{border-top:1px solid #d6e2ed;background:#f9fbff;padding:20px}.monsterinsights-lite-overview-buttons .monsterinsights-button{margin-top:0;font-size:13px;padding:8px 10px}.monsterinsights-swal .swal2-title{line-height:1.2}#dashboard-widgets .monsterinsights-tips{border:1px solid #5fa6e7;margin:0 20px 20px;padding:17px 15px;color:#393f4c;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}#dashboard-widgets .monsterinsights-tips .monstericon-star{color:#5fa6e7;font-size:19px;margin-left:14px}#dashboard-widgets .monsterinsights-tips a{color:#5fa6e7;text-decoration:underline}#dashboard-widgets .monsterinsights-tips a:hover{text-decoration:none}.monsterinsights-widget-full-width .monsterinsights-tips{display:none}
|
1 |
.monsterinsights-tracking-notice{position:fixed;bottom:20px;left:15px;font-family:Arial,Helvetica,Trebuchet MS,sans-serif;background:#fff;-webkit-box-shadow:0 0 10px 0 #dedede;box-shadow:0 0 10px 0 #dedede;padding:6px 5px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:380px;max-width:calc(100% - 30px);border-radius:6px;z-index:10000}.monsterinsights-tracking-notice h3{font-size:13px;color:#222;font-weight:700;margin:0 0 8px;padding:0;line-height:1;border:none}.monsterinsights-tracking-notice p{font-size:13px;color:#7f7f7f;font-weight:400;margin:0;padding:0;line-height:1.2;border:none}.monsterinsights-tracking-notice p a{color:#509fe2;font-size:13px;line-height:1.2;margin:0;padding:0;text-decoration:underline;font-weight:400}.monsterinsights-tracking-notice p a:hover{color:#3a93dd;text-decoration:none}.monsterinsights-tracking-notice .monsterinsights-tracking-notice-icon{padding:14px;background-color:#f2f6ff;border-radius:6px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-left:12px}.monsterinsights-tracking-notice .monsterinsights-tracking-notice-close{padding:0;margin:0 0 0 3px;border:none;-webkit-box-shadow:none;box-shadow:none;border-radius:0;color:#7f7f7f;background:rgba(0,0,0,0);line-height:1;-ms-flex-item-align:start;align-self:flex-start;cursor:pointer;font-size:16px;font-weight:400}.monsterinsights-tracking-notice .monsterinsights-fullwidth-mascot{position:relative;right:auto;top:auto}.monsterinsights-slide-up-enter-active,.monsterinsights-slide-up-leave-active{-webkit-transition:bottom .7s ease;transition:bottom .7s ease}.monsterinsights-slide-up-enter,.monsterinsights-slide-up-leave-to{bottom:-200px}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-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"}.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}/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
+
*/.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:100% -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:100% -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:100% -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:100% -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:100% -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:100% -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:100% -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:100% -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:100% -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:100% -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:100% -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:100% -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:100% -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:100% -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:100% -480px}.monsterinsights-report-year-in-review{margin-right:auto;margin-left:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:100% 0;margin-bottom:90px}.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:100%;margin-top:20px}}.monsterinsights-report-year-in-review a,.monster
|