Google Analytics for WordPress by MonsterInsights - Version 8.10.0

Version Description

Download this release

Release Info

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

Code changes from version 8.9.1 to 8.10.0

googleanalytics.php CHANGED
@@ -4,9 +4,9 @@
4
  * Plugin URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=pluginurl&utm_content=7%2E0%2E0
5
  * Description: The best Google Analytics plugin for WordPress. See how visitors find and use your website, so you can keep them coming back.
6
  * Author: MonsterInsights
7
- * Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
- * Version: 8.9.1
10
  * Requires at least: 4.8.0
11
  * Requires PHP: 5.6
12
  *
@@ -69,7 +69,7 @@ final class MonsterInsights_Lite {
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
- public $version = '8.9.1';
73
 
74
  /**
75
  * Plugin file.
4
  * Plugin URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=pluginurl&utm_content=7%2E0%2E0
5
  * Description: The best Google Analytics plugin for WordPress. See how visitors find and use your website, so you can keep them coming back.
6
  * Author: MonsterInsights
7
+ * Author URI: https://www.monsterinsights.com/lite/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
+ * Version: 8.10.0
10
  * Requires at least: 4.8.0
11
  * Requires PHP: 5.6
12
  *
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
+ public $version = '8.10.0';
73
 
74
  /**
75
  * Plugin file.
includes/admin/reports/abstract-report.php CHANGED
@@ -262,6 +262,12 @@ class MonsterInsights_Report {
262
  );
263
  } else {
264
  // Success
 
 
 
 
 
 
265
  $data = array(
266
  'expires' => time() + $expiration,
267
  'p' => $p,
262
  );
263
  } else {
264
  // Success
265
+
266
+ // Strip any HTML tags from API response
267
+ $ret['data'] = json_encode($ret['data']);
268
+ $ret['data'] = strip_tags($ret['data']);
269
+ $ret['data'] = json_decode($ret['data'], true);
270
+
271
  $data = array(
272
  'expires' => time() + $expiration,
273
  'p' => $p,
includes/helpers.php CHANGED
@@ -1481,6 +1481,10 @@ function monsterinsights_custom_track_pretty_links_redirect( $url ) {
1481
  if ( ! function_exists( 'monsterinsights_mp_track_event_call' ) && ! function_exists( 'monsterinsights_mp_collect_v4' ) ) {
1482
  return;
1483
  }
 
 
 
 
1484
  // Try to determine if click originated on the same site.
1485
  $referer = ! empty( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '';
1486
  if ( ! empty( $referer ) ) {
@@ -1551,6 +1555,64 @@ function monsterinsights_custom_track_pretty_links_redirect( $url ) {
1551
 
1552
  add_action( 'prli_before_redirect', 'monsterinsights_custom_track_pretty_links_redirect' );
1553
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1554
  /**
1555
  * Get post type in admin side
1556
  */
@@ -2202,4 +2264,4 @@ if ( ! function_exists( 'current_datetime' ) ) {
2202
  function current_datetime() {
2203
  return new DateTimeImmutable( 'now', wp_timezone() );
2204
  }
2205
- }
1481
  if ( ! function_exists( 'monsterinsights_mp_track_event_call' ) && ! function_exists( 'monsterinsights_mp_collect_v4' ) ) {
1482
  return;
1483
  }
1484
+
1485
+ // Track if it is a file.
1486
+ monsterinsights_track_pretty_links_file_download_redirect( $url );
1487
+
1488
  // Try to determine if click originated on the same site.
1489
  $referer = ! empty( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '';
1490
  if ( ! empty( $referer ) ) {
1555
 
1556
  add_action( 'prli_before_redirect', 'monsterinsights_custom_track_pretty_links_redirect' );
1557
 
1558
+ /**
1559
+ * Track Pretty Links file download redirects with MonsterInsights.
1560
+ *
1561
+ * @param string $url The url to which users get redirected.
1562
+ */
1563
+ function monsterinsights_track_pretty_links_file_download_redirect( $url ) {
1564
+ $file_info = pathinfo( $url );
1565
+
1566
+ // If no extension in URL.
1567
+ if ( ! isset( $file_info['extension'] ) ) {
1568
+ return;
1569
+ }
1570
+
1571
+ if ( ! $file_info['extension'] ) {
1572
+ return;
1573
+ }
1574
+
1575
+ // Get download extensions to track.
1576
+ $download_extensions = monsterinsights_get_option( 'extensions_of_files', '' );
1577
+
1578
+ if ( ! $download_extensions ) {
1579
+ return;
1580
+ }
1581
+
1582
+ $download_extensions = explode( ',', str_replace( '.', '', $download_extensions ) );
1583
+
1584
+ if ( ! is_array( $download_extensions ) ) {
1585
+ $download_extensions = array( $download_extensions );
1586
+ }
1587
+
1588
+ // If current URL extension is not in settings.
1589
+ if ( ! in_array( $file_info['extension'], $download_extensions ) ) {
1590
+ return;
1591
+ }
1592
+
1593
+ $url_components = parse_url( $url );
1594
+
1595
+ global $prli_link;
1596
+ $pretty_link = $prli_link->get_one_by( 'url', $url );
1597
+
1598
+ $args = array(
1599
+ 'events' => array(
1600
+ array(
1601
+ 'name' => 'file_download',
1602
+ 'params' => array(
1603
+ 'link_text' => $pretty_link->name,
1604
+ 'link_url' => $url,
1605
+ 'link_domain' => $url_components['host'],
1606
+ 'file_extension' => $file_info['extension'],
1607
+ 'file_name' => $file_info['basename'],
1608
+ )
1609
+ )
1610
+ ),
1611
+ );
1612
+
1613
+ monsterinsights_mp_collect_v4( $args );
1614
+ }
1615
+
1616
  /**
1617
  * Get post type in admin side
1618
  */
2264
  function current_datetime() {
2265
  return new DateTimeImmutable( 'now', wp_timezone() );
2266
  }
2267
+ }
languages/google-analytics-for-wordpress.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ExactMetrics Pro 7.9.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-10-11T17:28:10+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
@@ -127,7 +127,7 @@ msgstr ""
127
  #: includes/admin/admin.php:34
128
  #: includes/admin/admin.php:42
129
  #: includes/admin/admin.php:230
130
- #: languages/vue.php:515
131
  msgid "Settings"
132
  msgstr ""
133
 
@@ -143,7 +143,7 @@ msgstr ""
143
 
144
  #: includes/admin/admin.php:39
145
  #: includes/admin/admin.php:131
146
- #: languages/vue.php:1979
147
  msgid "Reports"
148
  msgstr ""
149
 
@@ -153,7 +153,7 @@ msgstr ""
153
 
154
  #: includes/admin/admin.php:51
155
  #: languages/gutenberg.php:83
156
- #: languages/vue.php:878
157
  msgid "Popular Posts"
158
  msgstr ""
159
 
@@ -187,7 +187,7 @@ msgstr ""
187
 
188
  #: includes/admin/admin.php:71
189
  #: includes/admin/admin.php:147
190
- #: languages/vue.php:497
191
  msgid "About Us"
192
  msgstr ""
193
 
@@ -206,7 +206,7 @@ msgstr ""
206
  #: includes/admin/admin.php:76
207
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
208
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
209
- #: languages/vue.php:1406
210
  msgid "Upgrade to Pro"
211
  msgstr ""
212
 
@@ -234,7 +234,7 @@ msgstr ""
234
 
235
  #: includes/admin/admin.php:220
236
  #: includes/admin/admin.php:223
237
- #: languages/vue.php:902
238
  msgid "Support"
239
  msgstr ""
240
 
@@ -245,8 +245,8 @@ msgstr ""
245
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:31
246
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
247
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
248
- #: includes/admin/reports/abstract-report.php:452
249
- #: languages/vue.php:1403
250
  msgid "Get MonsterInsights Pro"
251
  msgstr ""
252
 
@@ -256,12 +256,12 @@ msgid "Please rate %1$sMonsterInsights%2$s on %3$s %4$sWordPress.org%5$s to help
256
  msgstr ""
257
 
258
  #: includes/admin/admin.php:335
259
- #: languages/vue.php:482
260
  msgid "Please Setup Website Analytics to See Audience Insights"
261
  msgstr ""
262
 
263
  #: includes/admin/admin.php:336
264
- #: languages/vue.php:488
265
  msgid "Connect MonsterInsights and Setup Website Analytics"
266
  msgstr ""
267
 
@@ -275,12 +275,12 @@ msgstr ""
275
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
276
  #: includes/admin/notifications/notification-returning-visitors.php:43
277
  #: includes/admin/notifications/notification-traffic-dropping.php:43
278
- #: languages/vue.php:435
279
  msgid "Learn More"
280
  msgstr ""
281
 
282
  #: includes/admin/admin.php:340
283
- #: languages/vue.php:485
284
  msgid "MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use MonsterInsights to see the stats that matter and grow their business."
285
  msgstr ""
286
 
@@ -291,18 +291,18 @@ msgstr ""
291
 
292
  #. Translators: Adds a link to the license renewal.
293
  #: includes/admin/admin.php:363
294
- #: languages/vue.php:707
295
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
296
  msgstr ""
297
 
298
  #: includes/admin/admin.php:365
299
- #: languages/vue.php:710
300
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
301
  msgstr ""
302
 
303
  #: includes/admin/admin.php:367
304
  #: includes/admin/api-auth.php:303
305
- #: languages/vue.php:713
306
  msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
307
  msgstr ""
308
 
@@ -499,7 +499,7 @@ msgid "View 2021 Year in Review report!"
499
  msgstr ""
500
 
501
  #: includes/admin/common.php:951
502
- #: languages/vue.php:3465
503
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
504
  msgstr ""
505
 
@@ -520,7 +520,7 @@ msgstr ""
520
 
521
  #: includes/admin/exclude-page-metabox.php:144
522
  #: languages/gutenberg.php:179
523
- #: languages/vue.php:2371
524
  msgid "Upgrade"
525
  msgstr ""
526
 
@@ -717,7 +717,7 @@ msgstr ""
717
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
718
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
719
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
720
- #: languages/vue.php:1258
721
  #: lite/includes/admin/helpers.php:85
722
  msgid "Upgrade to MonsterInsights Pro"
723
  msgstr ""
@@ -752,7 +752,7 @@ msgstr ""
752
 
753
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
754
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
755
- #: includes/admin/reports/abstract-report.php:449
756
  #: languages/vue.php:281
757
  msgid "Upgrade Now"
758
  msgstr ""
@@ -874,64 +874,64 @@ msgstr ""
874
  msgid "Invalid date range."
875
  msgstr ""
876
 
877
- #: includes/admin/reports/abstract-report.php:293
878
  msgid "You must be properly authenticated with MonsterInsights to use our reports. Please use our %1$ssetup wizard%2$s to get started."
879
  msgstr ""
880
 
881
  #. Translators: Placeholders add the license level and the report title.
882
- #: includes/admin/reports/abstract-report.php:380
883
  msgid "You currently have a %1$s level license, but this report requires at least a %2$s level license to view the %3$s. Please upgrade to view this report."
884
  msgstr ""
885
 
886
- #: includes/admin/reports/abstract-report.php:394
887
  msgid "Ready to Get Analytics Super-Powers?"
888
  msgstr ""
889
 
890
- #: includes/admin/reports/abstract-report.php:396
891
  msgid "(And Crush Your Competition?)"
892
  msgstr ""
893
 
894
  #. Translators: License level and smiley.
895
- #: includes/admin/reports/abstract-report.php:402
896
  msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
897
  msgstr ""
898
 
899
  #. Translators: Placeholders add the report title and license level.
900
- #: includes/admin/reports/abstract-report.php:409
901
  msgid "Do you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with the %3$s level%4$s of our paid packages. You'll need to upgrade your license to get instant access."
902
  msgstr ""
903
 
904
  #. Translators: Placeholdes add links to the account area and a guide.
905
- #: includes/admin/reports/abstract-report.php:416
906
  msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on MonsterInsights.com, go to the licenses tab, and click upgrade. We also have a %3$sstep by step guide%4$s with pictures of this process."
907
  msgstr ""
908
 
909
- #: includes/admin/reports/abstract-report.php:420
910
- #: includes/admin/reports/abstract-report.php:443
911
  msgid "If you have any questions, don't hesitate to reach out. We're here to help."
912
  msgstr ""
913
 
914
  #. Translators: Placeholder adds a smiley face.
915
- #: includes/admin/reports/abstract-report.php:425
916
  msgid "Hey there! %s It looks like you've got the free version of MonsterInsights installed on your site. That's awesome!"
917
  msgstr ""
918
 
919
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
920
- #: includes/admin/reports/abstract-report.php:432
921
  msgid "Do you you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with %3$s level%4$s of our paid packages. To get instant access, you'll want to buy a MonsterInsights license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
922
  msgstr ""
923
 
924
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
925
- #: includes/admin/reports/abstract-report.php:439
926
  msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, purchase the required license, and then follow the %3$sinstructions in the email receipt%4$s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
927
  msgstr ""
928
 
929
- #: includes/admin/reports/abstract-report.php:486
930
  msgid "Please ask your webmaster to enable this addon."
931
  msgstr ""
932
 
933
  #: includes/admin/reports/overview.php:34
934
- #: languages/vue.php:564
935
  msgid "Overview"
936
  msgstr ""
937
 
@@ -1032,7 +1032,7 @@ msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect,
1032
  msgstr ""
1033
 
1034
  #: includes/admin/routes.php:535
1035
- #: languages/vue.php:3767
1036
  msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
1037
  msgstr ""
1038
 
@@ -1488,7 +1488,7 @@ msgid "Question"
1488
  msgstr ""
1489
 
1490
  #: includes/gutenberg/headline-tool/headline-tool.php:318
1491
- #: languages/vue.php:521
1492
  msgid "General"
1493
  msgstr ""
1494
 
@@ -3718,12 +3718,12 @@ msgid "United States"
3718
  msgstr ""
3719
 
3720
  #: includes/helpers.php:430
3721
- #: includes/helpers.php:1876
3722
  msgid "Canada"
3723
  msgstr ""
3724
 
3725
  #: includes/helpers.php:431
3726
- #: includes/helpers.php:1921
3727
  msgid "United Kingdom"
3728
  msgstr ""
3729
 
@@ -3764,7 +3764,7 @@ msgid "Antarctica"
3764
  msgstr ""
3765
 
3766
  #: includes/helpers.php:441
3767
- #: includes/helpers.php:1869
3768
  msgid "Antigua and Barbuda"
3769
  msgstr ""
3770
 
@@ -3781,7 +3781,7 @@ msgid "Aruba"
3781
  msgstr ""
3782
 
3783
  #: includes/helpers.php:445
3784
- #: includes/helpers.php:1870
3785
  msgid "Australia"
3786
  msgstr ""
3787
 
@@ -3806,7 +3806,7 @@ msgid "Bangladesh"
3806
  msgstr ""
3807
 
3808
  #: includes/helpers.php:451
3809
- #: includes/helpers.php:1871
3810
  msgid "Barbados"
3811
  msgstr ""
3812
 
@@ -3819,7 +3819,7 @@ msgid "Belgium"
3819
  msgstr ""
3820
 
3821
  #: includes/helpers.php:454
3822
- #: includes/helpers.php:1872
3823
  msgid "Belize"
3824
  msgstr ""
3825
 
@@ -3848,7 +3848,7 @@ msgid "Bosnia and Herzegovina"
3848
  msgstr ""
3849
 
3850
  #: includes/helpers.php:461
3851
- #: includes/helpers.php:1873
3852
  msgid "Botswana"
3853
  msgstr ""
3854
 
@@ -3877,7 +3877,7 @@ msgid "Burkina Faso"
3877
  msgstr ""
3878
 
3879
  #: includes/helpers.php:468
3880
- #: includes/helpers.php:1874
3881
  msgid "Burundi"
3882
  msgstr ""
3883
 
@@ -3886,7 +3886,7 @@ msgid "Cambodia"
3886
  msgstr ""
3887
 
3888
  #: includes/helpers.php:470
3889
- #: includes/helpers.php:1875
3890
  msgid "Cameroon"
3891
  msgstr ""
3892
 
@@ -3979,7 +3979,7 @@ msgid "Djibouti"
3979
  msgstr ""
3980
 
3981
  #: includes/helpers.php:493
3982
- #: includes/helpers.php:1877
3983
  msgid "Dominica"
3984
  msgstr ""
3985
 
@@ -4028,7 +4028,7 @@ msgid "Faroe Islands"
4028
  msgstr ""
4029
 
4030
  #: includes/helpers.php:505
4031
- #: includes/helpers.php:1878
4032
  msgid "Fiji"
4033
  msgstr ""
4034
 
@@ -4057,7 +4057,7 @@ msgid "Gabon"
4057
  msgstr ""
4058
 
4059
  #: includes/helpers.php:512
4060
- #: includes/helpers.php:1881
4061
  msgid "Gambia"
4062
  msgstr ""
4063
 
@@ -4074,7 +4074,7 @@ msgid "Greece"
4074
  msgstr ""
4075
 
4076
  #: includes/helpers.php:516
4077
- #: includes/helpers.php:1882
4078
  msgid "Ghana"
4079
  msgstr ""
4080
 
@@ -4087,7 +4087,7 @@ msgid "Greenland"
4087
  msgstr ""
4088
 
4089
  #: includes/helpers.php:519
4090
- #: includes/helpers.php:1879
4091
  msgid "Grenada"
4092
  msgstr ""
4093
 
@@ -4116,7 +4116,7 @@ msgid "Guinea-Bissau"
4116
  msgstr ""
4117
 
4118
  #: includes/helpers.php:526
4119
- #: includes/helpers.php:1880
4120
  msgid "Guyana"
4121
  msgstr ""
4122
 
@@ -4149,7 +4149,7 @@ msgid "Iceland"
4149
  msgstr ""
4150
 
4151
  #: includes/helpers.php:534
4152
- #: includes/helpers.php:1884
4153
  msgid "India"
4154
  msgstr ""
4155
 
@@ -4166,7 +4166,7 @@ msgid "Iraq"
4166
  msgstr ""
4167
 
4168
  #: includes/helpers.php:538
4169
- #: includes/helpers.php:1883
4170
  msgid "Ireland"
4171
  msgstr ""
4172
 
@@ -4183,7 +4183,7 @@ msgid "Italy"
4183
  msgstr ""
4184
 
4185
  #: includes/helpers.php:542
4186
- #: includes/helpers.php:1885
4187
  msgid "Jamaica"
4188
  msgstr ""
4189
 
@@ -4204,12 +4204,12 @@ msgid "Kazakhstan"
4204
  msgstr ""
4205
 
4206
  #: includes/helpers.php:547
4207
- #: includes/helpers.php:1886
4208
  msgid "Kenya"
4209
  msgstr ""
4210
 
4211
  #: includes/helpers.php:548
4212
- #: includes/helpers.php:1887
4213
  msgid "Kiribati"
4214
  msgstr ""
4215
 
@@ -4234,12 +4234,12 @@ msgid "Lebanon"
4234
  msgstr ""
4235
 
4236
  #: includes/helpers.php:554
4237
- #: includes/helpers.php:1888
4238
  msgid "Lesotho"
4239
  msgstr ""
4240
 
4241
  #: includes/helpers.php:555
4242
- #: includes/helpers.php:1889
4243
  msgid "Liberia"
4244
  msgstr ""
4245
 
@@ -4272,7 +4272,7 @@ msgid "Madagascar"
4272
  msgstr ""
4273
 
4274
  #: includes/helpers.php:563
4275
- #: includes/helpers.php:1890
4276
  msgid "Malawi"
4277
  msgstr ""
4278
 
@@ -4289,12 +4289,12 @@ msgid "Mali"
4289
  msgstr ""
4290
 
4291
  #: includes/helpers.php:567
4292
- #: includes/helpers.php:1891
4293
  msgid "Malta"
4294
  msgstr ""
4295
 
4296
  #: includes/helpers.php:568
4297
- #: includes/helpers.php:1892
4298
  msgid "Marshall Islands"
4299
  msgstr ""
4300
 
@@ -4307,7 +4307,7 @@ msgid "Mauritania"
4307
  msgstr ""
4308
 
4309
  #: includes/helpers.php:571
4310
- #: includes/helpers.php:1893
4311
  msgid "Mauritius"
4312
  msgstr ""
4313
 
@@ -4320,7 +4320,7 @@ msgid "Mexico"
4320
  msgstr ""
4321
 
4322
  #: includes/helpers.php:574
4323
- #: includes/helpers.php:1894
4324
  msgid "Micronesia"
4325
  msgstr ""
4326
 
@@ -4357,12 +4357,12 @@ msgid "Myanmar"
4357
  msgstr ""
4358
 
4359
  #: includes/helpers.php:583
4360
- #: includes/helpers.php:1896
4361
  msgid "Namibia"
4362
  msgstr ""
4363
 
4364
  #: includes/helpers.php:584
4365
- #: includes/helpers.php:1897
4366
  msgid "Nauru"
4367
  msgstr ""
4368
 
@@ -4383,7 +4383,7 @@ msgid "New Caledonia"
4383
  msgstr ""
4384
 
4385
  #: includes/helpers.php:589
4386
- #: includes/helpers.php:1895
4387
  msgid "New Zealand"
4388
  msgstr ""
4389
 
@@ -4396,7 +4396,7 @@ msgid "Niger"
4396
  msgstr ""
4397
 
4398
  #: includes/helpers.php:592
4399
- #: includes/helpers.php:1898
4400
  msgid "Nigeria"
4401
  msgstr ""
4402
 
@@ -4425,12 +4425,12 @@ msgid "Oman"
4425
  msgstr ""
4426
 
4427
  #: includes/helpers.php:599
4428
- #: includes/helpers.php:1899
4429
  msgid "Pakistan"
4430
  msgstr ""
4431
 
4432
  #: includes/helpers.php:600
4433
- #: includes/helpers.php:1900
4434
  msgid "Palau"
4435
  msgstr ""
4436
 
@@ -4443,7 +4443,7 @@ msgid "Panama"
4443
  msgstr ""
4444
 
4445
  #: includes/helpers.php:603
4446
- #: includes/helpers.php:1901
4447
  msgid "Papua New Guinea"
4448
  msgstr ""
4449
 
@@ -4456,7 +4456,7 @@ msgid "Peru"
4456
  msgstr ""
4457
 
4458
  #: includes/helpers.php:606
4459
- #: includes/helpers.php:1902
4460
  msgid "Philippines"
4461
  msgstr ""
4462
 
@@ -4497,7 +4497,7 @@ msgid "Russian Federation"
4497
  msgstr ""
4498
 
4499
  #: includes/helpers.php:616
4500
- #: includes/helpers.php:1903
4501
  msgid "Rwanda"
4502
  msgstr ""
4503
 
@@ -4554,17 +4554,17 @@ msgid "Serbia"
4554
  msgstr ""
4555
 
4556
  #: includes/helpers.php:630
4557
- #: includes/helpers.php:1910
4558
  msgid "Seychelles"
4559
  msgstr ""
4560
 
4561
  #: includes/helpers.php:631
4562
- #: includes/helpers.php:1911
4563
  msgid "Sierra Leone"
4564
  msgstr ""
4565
 
4566
  #: includes/helpers.php:632
4567
- #: includes/helpers.php:1904
4568
  msgid "Singapore"
4569
  msgstr ""
4570
 
@@ -4577,7 +4577,7 @@ msgid "Slovenia"
4577
  msgstr ""
4578
 
4579
  #: includes/helpers.php:635
4580
- #: includes/helpers.php:1912
4581
  msgid "Solomon Islands"
4582
  msgstr ""
4583
 
@@ -4586,7 +4586,7 @@ msgid "Somalia"
4586
  msgstr ""
4587
 
4588
  #: includes/helpers.php:637
4589
- #: includes/helpers.php:1913
4590
  msgid "South Africa"
4591
  msgstr ""
4592
 
@@ -4599,7 +4599,7 @@ msgid "South Korea"
4599
  msgstr ""
4600
 
4601
  #: includes/helpers.php:640
4602
- #: includes/helpers.php:1914
4603
  msgid "South Sudan"
4604
  msgstr ""
4605
 
@@ -4612,7 +4612,7 @@ msgid "Sri Lanka"
4612
  msgstr ""
4613
 
4614
  #: includes/helpers.php:643
4615
- #: includes/helpers.php:1915
4616
  msgid "Sudan"
4617
  msgstr ""
4618
 
@@ -4625,7 +4625,7 @@ msgid "Svalbard and Jan Mayen Islands"
4625
  msgstr ""
4626
 
4627
  #: includes/helpers.php:646
4628
- #: includes/helpers.php:1908
4629
  msgid "Swaziland"
4630
  msgstr ""
4631
 
@@ -4650,7 +4650,7 @@ msgid "Tajikistan"
4650
  msgstr ""
4651
 
4652
  #: includes/helpers.php:652
4653
- #: includes/helpers.php:1918
4654
  msgid "Tanzania"
4655
  msgstr ""
4656
 
@@ -4671,12 +4671,12 @@ msgid "Tokelau"
4671
  msgstr ""
4672
 
4673
  #: includes/helpers.php:657
4674
- #: includes/helpers.php:1919
4675
  msgid "Tonga"
4676
  msgstr ""
4677
 
4678
  #: includes/helpers.php:658
4679
- #: includes/helpers.php:1916
4680
  msgid "Trinidad and Tobago"
4681
  msgstr ""
4682
 
@@ -4697,12 +4697,12 @@ msgid "Turks and Caicos Islands"
4697
  msgstr ""
4698
 
4699
  #: includes/helpers.php:663
4700
- #: includes/helpers.php:1920
4701
  msgid "Tuvalu"
4702
  msgstr ""
4703
 
4704
  #: includes/helpers.php:664
4705
- #: includes/helpers.php:1923
4706
  msgid "Uganda"
4707
  msgstr ""
4708
 
@@ -4727,7 +4727,7 @@ msgid "Uzbekistan"
4727
  msgstr ""
4728
 
4729
  #: includes/helpers.php:670
4730
- #: includes/helpers.php:1924
4731
  msgid "Vanuatu"
4732
  msgstr ""
4733
 
@@ -4764,12 +4764,12 @@ msgid "Yemen"
4764
  msgstr ""
4765
 
4766
  #: includes/helpers.php:679
4767
- #: includes/helpers.php:1925
4768
  msgid "Zambia"
4769
  msgstr ""
4770
 
4771
  #: includes/helpers.php:680
4772
- #: includes/helpers.php:1926
4773
  msgid "Zimbabwe"
4774
  msgstr ""
4775
 
@@ -4787,27 +4787,27 @@ msgstr ""
4787
  msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-MonsterInsights ones. If you need help finding them please %3$sread this article%4$s."
4788
  msgstr ""
4789
 
4790
- #: includes/helpers.php:1905
4791
  msgid "St Kitts and Nevis"
4792
  msgstr ""
4793
 
4794
- #: includes/helpers.php:1906
4795
  msgid "St Lucia"
4796
  msgstr ""
4797
 
4798
- #: includes/helpers.php:1907
4799
  msgid "St Vincent and the Grenadines"
4800
  msgstr ""
4801
 
4802
- #: includes/helpers.php:1909
4803
  msgid "Samoa"
4804
  msgstr ""
4805
 
4806
- #: includes/helpers.php:1917
4807
  msgid "The Bahamas"
4808
  msgstr ""
4809
 
4810
- #: includes/helpers.php:1922
4811
  msgid "United States of America"
4812
  msgstr ""
4813
 
@@ -4888,7 +4888,7 @@ msgid "Theme"
4888
  msgstr ""
4889
 
4890
  #: languages/gutenberg.php:77
4891
- #: languages/vue.php:506
4892
  msgid "Inline Popular Posts"
4893
  msgstr ""
4894
 
@@ -4925,7 +4925,7 @@ msgid "Comment Color"
4925
  msgstr ""
4926
 
4927
  #: languages/gutenberg.php:107
4928
- #: languages/vue.php:2969
4929
  msgid "Wide-Layout Options"
4930
  msgstr ""
4931
 
@@ -4934,12 +4934,12 @@ msgid "Choose Layout"
4934
  msgstr ""
4935
 
4936
  #: languages/gutenberg.php:113
4937
- #: languages/vue.php:2972
4938
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4939
  msgstr ""
4940
 
4941
  #: languages/gutenberg.php:116
4942
- #: languages/vue.php:2993
4943
  msgid "Post Count"
4944
  msgstr ""
4945
 
@@ -4948,7 +4948,7 @@ msgid "Number of posts displayed."
4948
  msgstr ""
4949
 
4950
  #: languages/gutenberg.php:122
4951
- #: languages/vue.php:2975
4952
  msgid "Display Options"
4953
  msgstr ""
4954
 
@@ -4961,7 +4961,7 @@ msgid "Display Widget Title"
4961
  msgstr ""
4962
 
4963
  #: languages/gutenberg.php:131
4964
- #: languages/vue.php:2784
4965
  msgid "Widget Title"
4966
  msgstr ""
4967
 
@@ -4970,17 +4970,17 @@ msgid "Only Show Posts From These Categories"
4970
  msgstr ""
4971
 
4972
  #: languages/gutenberg.php:137
4973
- #: languages/vue.php:2981
4974
  msgid "Display Author"
4975
  msgstr ""
4976
 
4977
  #: languages/gutenberg.php:140
4978
- #: languages/vue.php:2984
4979
  msgid "Display Date"
4980
  msgstr ""
4981
 
4982
  #: languages/gutenberg.php:143
4983
- #: languages/vue.php:2987
4984
  msgid "Display Comments"
4985
  msgstr ""
4986
 
@@ -4997,7 +4997,7 @@ msgid "Yesterday"
4997
  msgstr ""
4998
 
4999
  #: languages/gutenberg.php:152
5000
- #: languages/vue.php:1339
5001
  #: lite/includes/admin/metaboxes.php:65
5002
  #: lite/includes/admin/metaboxes.php:127
5003
  msgid "Bounce Rate"
@@ -5258,7 +5258,7 @@ msgid "Goal: "
5258
  msgstr ""
5259
 
5260
  #: languages/gutenberg.php:354
5261
- #: languages/vue.php:857
5262
  msgid "Headline Analyzer"
5263
  msgstr ""
5264
 
@@ -5578,49 +5578,49 @@ msgstr ""
5578
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5579
  msgstr ""
5580
 
5581
- #: languages/vue.php:246
5582
  msgid "Overview Report"
5583
  msgstr ""
5584
 
5585
- #: languages/vue.php:250
5586
  #: lite/includes/admin/welcome.php:56
5587
  #: lite/includes/admin/welcome.php:57
5588
  msgid "Welcome to MonsterInsights"
5589
  msgstr ""
5590
 
5591
- #: languages/vue.php:253
5592
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5593
  msgstr ""
5594
 
5595
- #: languages/vue.php:256
5596
  msgid "MonsterInsights makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
5597
  msgstr ""
5598
 
5599
- #: languages/vue.php:259
5600
  msgid "Launch the Wizard!"
5601
  msgstr ""
5602
 
5603
- #: languages/vue.php:262
5604
  msgid "Read the Full Guide"
5605
  msgstr ""
5606
 
5607
- #: languages/vue.php:265
5608
  msgid "MonsterInsights Features & Addons"
5609
  msgstr ""
5610
 
5611
- #: languages/vue.php:268
5612
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5613
  msgstr ""
5614
 
5615
- #: languages/vue.php:271
5616
  msgid "See All Features"
5617
  msgstr ""
5618
 
5619
- #: languages/vue.php:274
5620
  msgid "Upgrade to PRO"
5621
  msgstr ""
5622
 
5623
- #: languages/vue.php:277
5624
  msgid "per year"
5625
  msgstr ""
5626
 
@@ -5692,385 +5692,385 @@ msgstr ""
5692
  msgid "Ecommerce Report"
5693
  msgstr ""
5694
 
5695
- #: languages/vue.php:336
5696
  msgid "Form Conversions"
5697
  msgstr ""
5698
 
5699
- #: languages/vue.php:340
5700
  msgid "Custom Dimensions"
5701
  msgstr ""
5702
 
5703
- #: languages/vue.php:344
5704
  msgid "Author Tracking"
5705
  msgstr ""
5706
 
5707
- #: languages/vue.php:347
5708
  msgid "Google Optimize"
5709
  msgstr ""
5710
 
5711
- #: languages/vue.php:350
5712
  msgid "Category / Tags Tracking"
5713
  msgstr ""
5714
 
5715
- #: languages/vue.php:353
5716
  msgid "WooCommerce"
5717
  msgstr ""
5718
 
5719
- #: languages/vue.php:356
5720
  msgid "Easy Digital Downloads"
5721
  msgstr ""
5722
 
5723
- #: languages/vue.php:359
5724
  msgid "MemberPress"
5725
  msgstr ""
5726
 
5727
- #: languages/vue.php:362
5728
  msgid "LifterLMS"
5729
  msgstr ""
5730
 
5731
  #. Translators: Current PHP version and recommended PHP version.
5732
- #: languages/vue.php:366
5733
  msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5734
  msgstr ""
5735
 
5736
  #. Translators: Current WordPress version.
5737
- #: languages/vue.php:370
5738
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5739
  msgstr ""
5740
 
5741
- #: languages/vue.php:373
5742
  msgid "Yikes! PHP Update Required"
5743
  msgstr ""
5744
 
5745
  #. Translators: Current PHP version and recommended PHP version.
5746
- #: languages/vue.php:377
5747
  msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5748
  msgstr ""
5749
 
5750
- #: languages/vue.php:380
5751
  msgid "Learn more about updating PHP"
5752
  msgstr ""
5753
 
5754
- #: languages/vue.php:383
5755
  msgid "Yikes! WordPress Update Required"
5756
  msgstr ""
5757
 
5758
  #. Translators: Current WordPress version.
5759
- #: languages/vue.php:387
5760
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5761
  msgstr ""
5762
 
5763
- #: languages/vue.php:390
5764
  msgid "Learn more about updating WordPress"
5765
  msgstr ""
5766
 
5767
- #: languages/vue.php:393
5768
  msgid "MonsterInsights encountered an error loading your report data"
5769
  msgstr ""
5770
 
5771
- #: languages/vue.php:396
5772
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5773
  msgstr ""
5774
 
5775
- #: languages/vue.php:399
5776
  msgid "Reconnect MonsterInsights"
5777
  msgstr ""
5778
 
5779
- #: languages/vue.php:402
5780
  msgid "Re-Authenticating"
5781
  msgstr ""
5782
 
5783
- #: languages/vue.php:405
5784
  msgid "Ok"
5785
  msgstr ""
5786
 
5787
- #: languages/vue.php:408
5788
  msgid "See Quick Links"
5789
  msgstr ""
5790
 
5791
- #: languages/vue.php:411
5792
  msgid "Suggest a Feature"
5793
  msgstr ""
5794
 
5795
- #: languages/vue.php:414
5796
  msgid "Join Our Community"
5797
  msgstr ""
5798
 
5799
- #: languages/vue.php:417
5800
  msgid "Support & Docs"
5801
  msgstr ""
5802
 
5803
- #: languages/vue.php:420
5804
  msgid "Upgrade to Pro &#187;"
5805
  msgstr ""
5806
 
5807
  #. Translators: Placeholder is replaced with WPForms.
5808
- #: languages/vue.php:424
5809
  msgid "Recommended Plugin: %s"
5810
  msgstr ""
5811
 
5812
- #: languages/vue.php:428
5813
  msgid "Install"
5814
  msgstr ""
5815
 
5816
- #: languages/vue.php:432
5817
  msgid "Activate"
5818
  msgstr ""
5819
 
5820
- #: languages/vue.php:438
5821
  msgid "Powered by MonsterInsights"
5822
  msgstr ""
5823
 
5824
- #: languages/vue.php:441
5825
  #: lite/includes/admin/wp-site-health.php:256
5826
  msgid "View Reports"
5827
  msgstr ""
5828
 
5829
- #: languages/vue.php:444
5830
  msgid "Congratulations!"
5831
  msgstr ""
5832
 
5833
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5834
- #: languages/vue.php:448
5835
  msgid "MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up."
5836
  msgstr ""
5837
 
5838
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5839
- #: languages/vue.php:452
5840
  msgid "Onboarding Wizard"
5841
  msgstr ""
5842
 
5843
- #: languages/vue.php:455
5844
  msgid "You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard."
5845
  msgstr ""
5846
 
5847
- #: languages/vue.php:458
5848
  msgid "Save Changes"
5849
  msgstr ""
5850
 
5851
- #: languages/vue.php:461
5852
  msgid "Inbox"
5853
  msgstr ""
5854
 
5855
- #: languages/vue.php:464
5856
  msgid "Back to Inbox"
5857
  msgstr ""
5858
 
5859
- #: languages/vue.php:467
5860
  msgid "View Dismissed"
5861
  msgstr ""
5862
 
5863
- #: languages/vue.php:470
5864
  msgid "Notifications"
5865
  msgstr ""
5866
 
5867
- #: languages/vue.php:473
5868
  msgid "Dismiss All"
5869
  msgstr ""
5870
 
5871
- #: languages/vue.php:476
5872
  msgid "Dismissed"
5873
  msgstr ""
5874
 
5875
- #: languages/vue.php:479
5876
  msgid "No Notifications"
5877
  msgstr ""
5878
 
5879
- #: languages/vue.php:491
5880
  msgid "Import Export"
5881
  msgstr ""
5882
 
5883
- #: languages/vue.php:494
5884
  msgid "PrettyLinks Integration"
5885
  msgstr ""
5886
 
5887
- #: languages/vue.php:500
5888
  msgid "Getting Started"
5889
  msgstr ""
5890
 
5891
- #: languages/vue.php:503
5892
  msgid "Lite vs Pro"
5893
  msgstr ""
5894
 
5895
- #: languages/vue.php:509
5896
  msgid "Popular Posts Widget"
5897
  msgstr ""
5898
 
5899
- #: languages/vue.php:512
5900
  msgid "Popular Products"
5901
  msgstr ""
5902
 
5903
- #: languages/vue.php:518
5904
  msgid "Sub menu item for WooCommerce Analytics"
5905
  msgstr ""
5906
 
5907
- #: languages/vue.php:525
5908
  msgid "Engagement"
5909
  msgstr ""
5910
 
5911
- #: languages/vue.php:528
5912
  #: lite/includes/admin/reports/report-ecommerce.php:22
5913
  msgid "eCommerce"
5914
  msgstr ""
5915
 
5916
- #: languages/vue.php:531
5917
  msgid "Publisher"
5918
  msgstr ""
5919
 
5920
- #: languages/vue.php:534
5921
  msgid "Conversions"
5922
  msgstr ""
5923
 
5924
- #: languages/vue.php:537
5925
  msgid "Advanced"
5926
  msgstr ""
5927
 
5928
- #: languages/vue.php:540
5929
  msgid "URL Builder"
5930
  msgstr ""
5931
 
5932
- #: languages/vue.php:543
5933
  msgid "MonsterInsights Addons"
5934
  msgstr ""
5935
 
5936
- #: languages/vue.php:546
5937
  msgid "Search Addons"
5938
  msgstr ""
5939
 
5940
- #: languages/vue.php:549
5941
  msgid "Exit Setup"
5942
  msgstr ""
5943
 
5944
- #: languages/vue.php:552
5945
  msgid "You must connect with MonsterInsights before you can view reports."
5946
  msgstr ""
5947
 
5948
- #: languages/vue.php:555
5949
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5950
  msgstr ""
5951
 
5952
- #: languages/vue.php:558
5953
  msgid "Launch Setup Wizard"
5954
  msgstr ""
5955
 
5956
- #: languages/vue.php:561
5957
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
5958
  msgstr ""
5959
 
5960
- #: languages/vue.php:567
5961
  #: lite/includes/admin/reports/report-publisher.php:22
5962
  msgid "Publishers"
5963
  msgstr ""
5964
 
5965
- #: languages/vue.php:570
5966
  #: lite/includes/admin/reports/report-queries.php:22
5967
  msgid "Search Console"
5968
  msgstr ""
5969
 
5970
- #: languages/vue.php:573
5971
  #: lite/includes/admin/reports/report-dimensions.php:22
5972
  msgid "Dimensions"
5973
  msgstr ""
5974
 
5975
- #: languages/vue.php:576
5976
  #: lite/includes/admin/reports/report-forms.php:22
5977
  msgid "Forms"
5978
  msgstr ""
5979
 
5980
- #: languages/vue.php:579
5981
  msgid "Real-Time"
5982
  msgstr ""
5983
 
5984
- #: languages/vue.php:583
5985
  msgid "Site Speed"
5986
  msgstr ""
5987
 
5988
- #: languages/vue.php:586
5989
  msgid "2020 Year in Review"
5990
  msgstr ""
5991
 
5992
  #. Translators: Error status and error text.
5993
- #: languages/vue.php:590
5994
  msgid "Can't load report data. Error: %1$s, %2$s"
5995
  msgstr ""
5996
 
5997
- #: languages/vue.php:593
5998
  msgid "Error loading report data"
5999
  msgstr ""
6000
 
6001
- #: languages/vue.php:596
6002
  msgid "Publishers Report"
6003
  msgstr ""
6004
 
6005
- #: languages/vue.php:599
6006
  msgid "eCommerce Report"
6007
  msgstr ""
6008
 
6009
- #: languages/vue.php:603
6010
  msgid "Search Console Report"
6011
  msgstr ""
6012
 
6013
- #: languages/vue.php:606
6014
  msgid "Dimensions Report"
6015
  msgstr ""
6016
 
6017
- #: languages/vue.php:610
6018
  msgid "Forms Report"
6019
  msgstr ""
6020
 
6021
- #: languages/vue.php:613
6022
  msgid "Real-Time Report"
6023
  msgstr ""
6024
 
6025
- #: languages/vue.php:616
6026
  msgid "Site Speed Report"
6027
  msgstr ""
6028
 
6029
- #: languages/vue.php:619
6030
  msgid "Time to Purchase"
6031
  msgstr ""
6032
 
6033
- #: languages/vue.php:622
6034
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
6035
  msgstr ""
6036
 
6037
- #: languages/vue.php:625
6038
  msgid "Sessions to Purchase"
6039
  msgstr ""
6040
 
6041
- #: languages/vue.php:628
6042
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
6043
  msgstr ""
6044
 
6045
- #: languages/vue.php:631
6046
  msgid "New Customers"
6047
  msgstr ""
6048
 
6049
- #: languages/vue.php:634
6050
  msgid "This list shows the percentage of new customers who purchased a product from your website."
6051
  msgstr ""
6052
 
6053
- #: languages/vue.php:637
6054
  msgid "Abandoned Checkouts"
6055
  msgstr ""
6056
 
6057
- #: languages/vue.php:640
6058
  msgid "This list shows the percentage of carts that never went through the checkout process."
6059
  msgstr ""
6060
 
6061
- #: languages/vue.php:643
6062
  msgid "Top Posts/Pages"
6063
  msgstr ""
6064
 
6065
- #: languages/vue.php:646
6066
  msgid "This list shows the most viewed posts and pages on your website."
6067
  msgstr ""
6068
 
6069
- #: languages/vue.php:649
6070
  msgid "New vs. Returning Visitors"
6071
  msgstr ""
6072
 
6073
- #: languages/vue.php:652
6074
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
6075
  msgstr ""
6076
 
@@ -6078,389 +6078,389 @@ msgstr ""
6078
  msgid "Device Breakdown"
6079
  msgstr ""
6080
 
6081
- #: languages/vue.php:658
6082
  msgid "This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site."
6083
  msgstr ""
6084
 
6085
- #: languages/vue.php:661
6086
  msgid "Top Landing Pages"
6087
  msgstr ""
6088
 
6089
- #: languages/vue.php:664
6090
  msgid "This list shows the top pages users first land on when visiting your website."
6091
  msgstr ""
6092
 
6093
- #: languages/vue.php:667
6094
  msgid "Top Exit Pages"
6095
  msgstr ""
6096
 
6097
- #: languages/vue.php:670
6098
  msgid "This list shows the top pages users exit your website from."
6099
  msgstr ""
6100
 
6101
- #: languages/vue.php:673
6102
  msgid "Top Outbound Links"
6103
  msgstr ""
6104
 
6105
- #: languages/vue.php:676
6106
  msgid "This list shows the top links clicked on your website that go to another website."
6107
  msgstr ""
6108
 
6109
- #: languages/vue.php:679
6110
  msgid "Top Affiliate Links"
6111
  msgstr ""
6112
 
6113
- #: languages/vue.php:682
6114
  msgid "This list shows the top affiliate links your visitors clicked on."
6115
  msgstr ""
6116
 
6117
- #: languages/vue.php:685
6118
  msgid "Top Download Links"
6119
  msgstr ""
6120
 
6121
- #: languages/vue.php:688
6122
  msgid "This list shows the download links your visitors clicked the most."
6123
  msgstr ""
6124
 
6125
- #: languages/vue.php:691
6126
  msgid "Top Products"
6127
  msgstr ""
6128
 
6129
- #: languages/vue.php:694
6130
  msgid "This list shows the top selling products on your website."
6131
  msgstr ""
6132
 
6133
- #: languages/vue.php:697
6134
  msgid "Top Conversion Sources"
6135
  msgstr ""
6136
 
6137
- #: languages/vue.php:700
6138
  msgid "This list shows the top referral websites in terms of product revenue."
6139
  msgstr ""
6140
 
6141
- #: languages/vue.php:703
6142
  msgid "Total Add/Remove"
6143
  msgstr ""
6144
 
6145
  #. Translators: Adds a link to documentation.
6146
- #: languages/vue.php:717
6147
  msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
6148
  msgstr ""
6149
 
6150
  #. Translators: Adds link to activate/install plugin and documentation.
6151
- #: languages/vue.php:721
6152
  msgid "In order for the MonsterInsights Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
6153
  msgstr ""
6154
 
6155
  #. Translators: Adds a link to documentation.
6156
- #: languages/vue.php:725
6157
  msgid "In order for the MonsterInsights Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s"
6158
  msgstr ""
6159
 
6160
  #. Translators: Adds link to activate/install plugin and documentation.
6161
- #: languages/vue.php:729
6162
  msgid "In order for the MonsterInsights Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
6163
  msgstr ""
6164
 
6165
- #: languages/vue.php:732
6166
  msgid "GDPR Guide"
6167
  msgstr ""
6168
 
6169
- #: languages/vue.php:735
6170
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help MonsterInsights users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
6171
  msgstr ""
6172
 
6173
- #: languages/vue.php:738
6174
  msgid "How to Install and Activate MonsterInsights Addons"
6175
  msgstr ""
6176
 
6177
- #: languages/vue.php:741
6178
  msgid "The process for installing and activating addons is quick and easy after you install the MonsterInsights plugin. In this guide we’ll walk you through the process, step by step."
6179
  msgstr ""
6180
 
6181
- #: languages/vue.php:744
6182
  msgid "Enabling eCommerce Tracking and Reports"
6183
  msgstr ""
6184
 
6185
- #: languages/vue.php:747
6186
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with MonsterInsights? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
6187
  msgstr ""
6188
 
6189
- #: languages/vue.php:750
6190
  msgid "Read Documentation"
6191
  msgstr ""
6192
 
6193
- #: languages/vue.php:753
6194
  msgid "Getting Started with MonsterInsights"
6195
  msgstr ""
6196
 
6197
- #: languages/vue.php:756
6198
  msgid "MonsterInsights is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard."
6199
  msgstr ""
6200
 
6201
- #: languages/vue.php:759
6202
  msgid "To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away."
6203
  msgstr ""
6204
 
6205
- #: languages/vue.php:762
6206
  msgid "In no time at all, and after just a few clicks, you'll have setup the most powerful Google Analytics tracking available for WordPress. It's easy to double your traffic and sales when you know exactly how people find and use your website. Let's get started!."
6207
  msgstr ""
6208
 
6209
- #: languages/vue.php:765
6210
  msgid "Launch the wizard!"
6211
  msgstr ""
6212
 
6213
- #: languages/vue.php:768
6214
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6215
  msgstr ""
6216
 
6217
  #. Translators: Makes text bold.
6218
- #: languages/vue.php:772
6219
  msgid "Thanks for being a loyal MonsterInsights Lite user. %1$sUpgrade to MonsterInsights Pro%2$s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
6220
  msgstr ""
6221
 
6222
- #: languages/vue.php:775
6223
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
6224
  msgstr ""
6225
 
6226
- #: languages/vue.php:778
6227
  msgid "See your website analytics reports inside the WordPress dashboard"
6228
  msgstr ""
6229
 
6230
- #: languages/vue.php:781
6231
  msgid "Get real-time stats right inside WordPress"
6232
  msgstr ""
6233
 
6234
- #: languages/vue.php:784
6235
  msgid "1-click Google Analytics Enhanced eCommerce tracking"
6236
  msgstr ""
6237
 
6238
- #: languages/vue.php:787
6239
  msgid "Get detailed stats for each post and page."
6240
  msgstr ""
6241
 
6242
- #: languages/vue.php:790
6243
  msgid "Automatically track clicks on your affiliate links and ads."
6244
  msgstr ""
6245
 
6246
- #: languages/vue.php:793
6247
  msgid "Make Google Analytics GDPR compliant automatically"
6248
  msgstr ""
6249
 
6250
- #: languages/vue.php:796
6251
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6252
  msgstr ""
6253
 
6254
- #: languages/vue.php:799
6255
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6256
  msgstr ""
6257
 
6258
- #: languages/vue.php:802
6259
  msgid "More advanced features"
6260
  msgstr ""
6261
 
6262
- #: languages/vue.php:805
6263
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6264
  msgstr ""
6265
 
6266
  #. Translators: Makes text green.
6267
- #: languages/vue.php:809
6268
  msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6269
  msgstr ""
6270
 
6271
- #: languages/vue.php:812
6272
  msgid "How to Connect to Google Analytics"
6273
  msgstr ""
6274
 
6275
- #: languages/vue.php:815
6276
  msgid "After you install MonsterInsights, you’ll need to connect your WordPress site with your Google Analytics account. MonsterInsights makes the process easy, with no coding required."
6277
  msgstr ""
6278
 
6279
- #: languages/vue.php:818
6280
  msgid "Guide and Checklist for Advanced Insights"
6281
  msgstr ""
6282
 
6283
- #: languages/vue.php:821
6284
  msgid "Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with MonsterInsights’ advanced tracking."
6285
  msgstr ""
6286
 
6287
- #: languages/vue.php:824
6288
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6289
  msgstr ""
6290
 
6291
- #: languages/vue.php:827
6292
  msgid "WordPress Admin Area Reports"
6293
  msgstr ""
6294
 
6295
- #: languages/vue.php:830
6296
  msgid "Standard Reports"
6297
  msgstr ""
6298
 
6299
- #: languages/vue.php:833
6300
  msgid "Overview Reports for the last 30 days."
6301
  msgstr ""
6302
 
6303
- #: languages/vue.php:836
6304
  msgid "Advanced Reports"
6305
  msgstr ""
6306
 
6307
- #: languages/vue.php:839
6308
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6309
  msgstr ""
6310
 
6311
- #: languages/vue.php:842
6312
  msgid "Dashboard Widget"
6313
  msgstr ""
6314
 
6315
- #: languages/vue.php:845
6316
  msgid "Basic Widget"
6317
  msgstr ""
6318
 
6319
- #: languages/vue.php:848
6320
  msgid "Overview Report Synopsis"
6321
  msgstr ""
6322
 
6323
- #: languages/vue.php:851
6324
  msgid "Advanced Dashboard Widget"
6325
  msgstr ""
6326
 
6327
- #: languages/vue.php:854
6328
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6329
  msgstr ""
6330
 
6331
- #: languages/vue.php:860
6332
  msgid "Email Summaries"
6333
  msgstr ""
6334
 
6335
- #: languages/vue.php:863
6336
  msgid "Included"
6337
  msgstr ""
6338
 
6339
- #: languages/vue.php:866
6340
  msgid "Get weekly traffic reports directly in your inbox."
6341
  msgstr ""
6342
 
6343
- #: languages/vue.php:869
6344
  msgid "Publisher Reports"
6345
  msgstr ""
6346
 
6347
- #: languages/vue.php:872
6348
  msgid "Advanced Publisher Reports & Tracking"
6349
  msgstr ""
6350
 
6351
- #: languages/vue.php:875
6352
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6353
  msgstr ""
6354
 
6355
- #: languages/vue.php:881
6356
  msgid "Basic Options"
6357
  msgstr ""
6358
 
6359
- #: languages/vue.php:884
6360
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6361
  msgstr ""
6362
 
6363
- #: languages/vue.php:887
6364
  msgid "Dynamic Popular Posts & Popular Products"
6365
  msgstr ""
6366
 
6367
- #: languages/vue.php:890
6368
  msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
6369
  msgstr ""
6370
 
6371
- #: languages/vue.php:893
6372
  msgid "Not Available"
6373
  msgstr ""
6374
 
6375
- #: languages/vue.php:896
6376
  msgid "Complete Custom Dimensions Tracking"
6377
  msgstr ""
6378
 
6379
- #: languages/vue.php:899
6380
  msgid "Track and measure by the Author, Post Type, Category, Tag, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
6381
  msgstr ""
6382
 
6383
- #: languages/vue.php:905
6384
  msgid "Limited Support"
6385
  msgstr ""
6386
 
6387
- #: languages/vue.php:908
6388
  msgid "Priority Support"
6389
  msgstr ""
6390
 
6391
- #: languages/vue.php:911
6392
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
6393
  msgstr ""
6394
 
6395
- #: languages/vue.php:914
6396
  msgid "Feature"
6397
  msgstr ""
6398
 
6399
- #: languages/vue.php:917
6400
  msgid "Lite"
6401
  msgstr ""
6402
 
6403
- #: languages/vue.php:920
6404
  msgid "Pro"
6405
  msgstr ""
6406
 
6407
- #: languages/vue.php:923
6408
  msgid "Custom Google Analytics Link Tracking"
6409
  msgstr ""
6410
 
6411
- #: languages/vue.php:926
6412
  msgid "Standard Tracking"
6413
  msgstr ""
6414
 
6415
- #: languages/vue.php:929
6416
  msgid "Advanced Tracking"
6417
  msgstr ""
6418
 
6419
- #: languages/vue.php:932
6420
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6421
  msgstr ""
6422
 
6423
- #: languages/vue.php:935
6424
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6425
  msgstr ""
6426
 
6427
- #: languages/vue.php:938
6428
  msgid "No-Code-Needed Tracking Features"
6429
  msgstr ""
6430
 
6431
- #: languages/vue.php:941
6432
  msgid "Basic Tracking Options"
6433
  msgstr ""
6434
 
6435
- #: languages/vue.php:944
6436
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6437
  msgstr ""
6438
 
6439
- #: languages/vue.php:947
6440
  msgid "Advanced Tracking Options"
6441
  msgstr ""
6442
 
6443
- #: languages/vue.php:950
6444
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6445
  msgstr ""
6446
 
6447
- #: languages/vue.php:953
6448
  msgid "eCommerce Tracking"
6449
  msgstr ""
6450
 
6451
- #: languages/vue.php:956
6452
  msgid "One-click Complete eCommerce tracking"
6453
  msgstr ""
6454
 
6455
- #: languages/vue.php:959
6456
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6457
  msgstr ""
6458
 
6459
- #: languages/vue.php:962
6460
  msgid "Forms Tracking"
6461
  msgstr ""
6462
 
6463
- #: languages/vue.php:965
6464
  msgid "One-click Form Events Tracking"
6465
  msgstr ""
6466
 
@@ -6846,2193 +6846,2193 @@ msgstr ""
6846
  msgid "Show in full-width mode"
6847
  msgstr ""
6848
 
6849
- #: languages/vue.php:1261
6850
  msgid "Installing Addon"
6851
  msgstr ""
6852
 
6853
- #: languages/vue.php:1264
6854
  msgid "Activating Addon"
6855
  msgstr ""
6856
 
6857
- #: languages/vue.php:1267
6858
  msgid "Addon Activated"
6859
  msgstr ""
6860
 
6861
- #: languages/vue.php:1270
6862
  msgid "Loading report data"
6863
  msgstr ""
6864
 
6865
- #: languages/vue.php:1273
6866
  msgid "Please activate manually"
6867
  msgstr ""
6868
 
6869
  #. Translators: Adds the error status and status text.
6870
- #: languages/vue.php:1277
6871
  msgid "Error: %1$s, %2$s"
6872
  msgstr ""
6873
 
6874
- #: languages/vue.php:1280
6875
  msgid "Error Activating Addon"
6876
  msgstr ""
6877
 
6878
- #: languages/vue.php:1283
6879
  #: lite/includes/admin/wp-site-health.php:375
6880
  #: lite/includes/admin/wp-site-health.php:401
6881
  #: lite/includes/admin/wp-site-health.php:428
6882
  msgid "View Addons"
6883
  msgstr ""
6884
 
6885
- #: languages/vue.php:1286
6886
  msgid "Dismiss"
6887
  msgstr ""
6888
 
6889
- #: languages/vue.php:1289
6890
  msgid "Redirecting"
6891
  msgstr ""
6892
 
6893
- #: languages/vue.php:1292
6894
  msgid "Please wait"
6895
  msgstr ""
6896
 
6897
- #: languages/vue.php:1296
6898
  msgid "activate"
6899
  msgstr ""
6900
 
6901
- #: languages/vue.php:1300
6902
  msgid "install"
6903
  msgstr ""
6904
 
6905
- #: languages/vue.php:1304
6906
  msgid "Visit addons page"
6907
  msgstr ""
6908
 
6909
- #: languages/vue.php:1307
6910
  msgid "Report Unavailable"
6911
  msgstr ""
6912
 
6913
  #. Translators: Install/Activate the addon.
6914
- #: languages/vue.php:1311
6915
  msgid "%s Addon"
6916
  msgstr ""
6917
 
6918
- #: languages/vue.php:1314
6919
  msgid "Go Back To Reports"
6920
  msgstr ""
6921
 
6922
- #: languages/vue.php:1317
6923
  msgid "Enable Enhanced eCommerce"
6924
  msgstr ""
6925
 
6926
  #. Translators: Placeholders are used for making text bold and adding a link.
6927
- #: languages/vue.php:1321
6928
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6929
  msgstr ""
6930
 
6931
- #: languages/vue.php:1324
6932
  msgid "Last 30 Days Insights for:"
6933
  msgstr ""
6934
 
6935
- #: languages/vue.php:1327
6936
  msgid "Your Website"
6937
  msgstr ""
6938
 
6939
- #: languages/vue.php:1330
6940
  msgid "Sessions"
6941
  msgstr ""
6942
 
6943
- #: languages/vue.php:1333
6944
  msgid "Pageviews"
6945
  msgstr ""
6946
 
6947
- #: languages/vue.php:1336
6948
  msgid "Avg. Duration"
6949
  msgstr ""
6950
 
6951
- #: languages/vue.php:1342
6952
  msgid "Total Users"
6953
  msgstr ""
6954
 
6955
- #: languages/vue.php:1345
6956
  msgid "More data is available"
6957
  msgstr ""
6958
 
6959
- #: languages/vue.php:1348
6960
  msgid "Want to see page-specific stats?"
6961
  msgstr ""
6962
 
6963
- #: languages/vue.php:1351
6964
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6965
  msgstr ""
6966
 
6967
- #: languages/vue.php:1354
6968
  msgid "No addons found."
6969
  msgstr ""
6970
 
6971
- #: languages/vue.php:1357
6972
  msgid "Refresh Addons"
6973
  msgstr ""
6974
 
6975
- #: languages/vue.php:1360
6976
  msgid "Refreshing Addons"
6977
  msgstr ""
6978
 
6979
  #. Translators: Make text green.
6980
- #: languages/vue.php:1364
6981
  msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
6982
  msgstr ""
6983
 
6984
- #: languages/vue.php:1367
6985
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
6986
  msgstr ""
6987
 
6988
- #: languages/vue.php:1370
6989
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
6990
  msgstr ""
6991
 
6992
- #: languages/vue.php:1373
6993
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
6994
  msgstr ""
6995
 
6996
- #: languages/vue.php:1376
6997
  msgid "See All Your Important Store Metrics in One Place"
6998
  msgstr ""
6999
 
7000
- #: languages/vue.php:1379
7001
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
7002
  msgstr ""
7003
 
7004
- #: languages/vue.php:1382
7005
  msgid "ONE-CLICK INTEGRATIONS"
7006
  msgstr ""
7007
 
7008
- #: languages/vue.php:1385
7009
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
7010
  msgstr ""
7011
 
7012
- #: languages/vue.php:1388
7013
  msgid "MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard."
7014
  msgstr ""
7015
 
7016
- #: languages/vue.php:1391
7017
  msgid "Affiliate Tracking"
7018
  msgstr ""
7019
 
7020
- #: languages/vue.php:1394
7021
  msgid "Automatically Track Affiliate Sales"
7022
  msgstr ""
7023
 
7024
- #: languages/vue.php:1397
7025
  msgid "The MonsterInsights eCommerce addon works with EasyAffiliate to automatically attribute orders originating from an EasyAffiliate link in Google Analytics. Gain valuable insights into your top affiliates with no coding required."
7026
  msgstr ""
7027
 
7028
- #: languages/vue.php:1400
7029
  msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
7030
  msgstr ""
7031
 
7032
- #: languages/vue.php:1409
7033
  msgid "Cart Funnel"
7034
  msgstr ""
7035
 
7036
- #: languages/vue.php:1412
7037
  msgid "Customer Insights"
7038
  msgstr ""
7039
 
7040
- #: languages/vue.php:1415
7041
  msgid "Campaign Measurement"
7042
  msgstr ""
7043
 
7044
- #: languages/vue.php:1418
7045
  msgid "Customer Profiles"
7046
  msgstr ""
7047
 
7048
- #: languages/vue.php:1421
7049
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
7050
  msgstr ""
7051
 
7052
- #: languages/vue.php:1424
7053
  msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
7054
  msgstr ""
7055
 
7056
- #: languages/vue.php:1427
7057
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
7058
  msgstr ""
7059
 
7060
- #: languages/vue.php:1430
7061
  msgid "Track all-new metrics!"
7062
  msgstr ""
7063
 
7064
- #: languages/vue.php:1433
7065
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
7066
  msgstr ""
7067
 
7068
- #: languages/vue.php:1436
7069
  msgid "FEATURES"
7070
  msgstr ""
7071
 
7072
- #: languages/vue.php:1439
7073
  msgid "Get The Unique Metrics Neccessary for Growth"
7074
  msgstr ""
7075
 
7076
- #: languages/vue.php:1442
7077
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
7078
  msgstr ""
7079
 
7080
- #: languages/vue.php:1445
7081
  msgid "Get Answers to the important questions %1$syou should know."
7082
  msgstr ""
7083
 
7084
- #: languages/vue.php:1448
7085
  msgid "Did the login/registration step of the checkout put users off?"
7086
  msgstr ""
7087
 
7088
- #: languages/vue.php:1451
7089
  msgid "Which ad campaign is driving the most revenue?"
7090
  msgstr ""
7091
 
7092
- #: languages/vue.php:1454
7093
  msgid "Who is my typical customer?"
7094
  msgstr ""
7095
 
7096
- #: languages/vue.php:1457
7097
  msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
7098
  msgstr ""
7099
 
7100
  #. Translators: placeholders make text small.
7101
- #: languages/vue.php:1461
7102
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
7103
  msgstr ""
7104
 
7105
  #. Translators: placeholders make text small.
7106
- #: languages/vue.php:1465
7107
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
7108
  msgstr ""
7109
 
7110
  #. Translators: placeholders make text small.
7111
- #: languages/vue.php:1469
7112
  msgid "None %1$s- Manually update everything.%2$s"
7113
  msgstr ""
7114
 
7115
- #: languages/vue.php:1472
7116
  msgid "Automatic Updates"
7117
  msgstr ""
7118
 
7119
- #: languages/vue.php:1475
7120
  msgid "Awesome, You're All Set!"
7121
  msgstr ""
7122
 
7123
- #: languages/vue.php:1478
7124
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
7125
  msgstr ""
7126
 
7127
  #. Translators: Make text bold.
7128
- #: languages/vue.php:1482
7129
  msgid "%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate."
7130
  msgstr ""
7131
 
7132
  #. Translators: Link to our blog.
7133
- #: languages/vue.php:1486
7134
  msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
7135
  msgstr ""
7136
 
7137
- #: languages/vue.php:1489
7138
  msgid "Finish Setup & Exit Wizard"
7139
  msgstr ""
7140
 
7141
- #: languages/vue.php:1492
7142
  msgid "Checking your website..."
7143
  msgstr ""
7144
 
7145
- #: languages/vue.php:1495
7146
  msgid "See All Reports"
7147
  msgstr ""
7148
 
7149
- #: languages/vue.php:1498
7150
  msgid "Go to the Analytics Dashboard"
7151
  msgstr ""
7152
 
7153
  #. Translators: Placeholder adds a line break.
7154
- #: languages/vue.php:1502
7155
  msgid "Unique %s Sessions"
7156
  msgstr ""
7157
 
7158
- #. Translators: Placeholder adds a line break.
7159
- #: languages/vue.php:1506
7160
  msgid "Unique %s Pageviews"
7161
  msgstr ""
7162
 
7163
- #: languages/vue.php:1509
7164
  msgid "A session is the browsing session of a single user to your site."
7165
  msgstr ""
7166
 
7167
- #: languages/vue.php:1512
7168
  msgid "A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview."
7169
  msgstr ""
7170
 
7171
- #: languages/vue.php:1515
7172
  msgid "Total duration of all sessions (in seconds) / number of sessions."
7173
  msgstr ""
7174
 
7175
- #: languages/vue.php:1518
7176
  msgid "Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
7177
  msgstr ""
7178
 
7179
- #: languages/vue.php:1521
7180
  msgid "The number of distinct tracked users"
7181
  msgstr ""
7182
 
7183
- #: languages/vue.php:1524
7184
  msgid "Avg. Session Duration"
7185
  msgstr ""
7186
 
7187
- #: languages/vue.php:1527
7188
  msgid "Still Calculating..."
7189
  msgstr ""
7190
 
7191
- #: languages/vue.php:1530
7192
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7193
  msgstr ""
7194
 
7195
- #: languages/vue.php:1533
7196
  msgid "Back to Overview Report"
7197
  msgstr ""
7198
 
7199
- #: languages/vue.php:1536
7200
  msgid "Your 2020 Analytics Report"
7201
  msgstr ""
7202
 
7203
- #: languages/vue.php:1539
7204
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7205
  msgstr ""
7206
 
7207
- #: languages/vue.php:1542
7208
  msgid "Audience"
7209
  msgstr ""
7210
 
7211
- #: languages/vue.php:1545
7212
  msgid "Congrats"
7213
  msgstr ""
7214
 
7215
- #: languages/vue.php:1548
7216
  msgid "Your website was quite popular this year! "
7217
  msgstr ""
7218
 
7219
- #: languages/vue.php:1551
7220
  msgid "You had "
7221
  msgstr ""
7222
 
7223
- #: languages/vue.php:1554
7224
  msgid " visitors!"
7225
  msgstr ""
7226
 
7227
- #: languages/vue.php:1557
7228
  msgid " visitors"
7229
  msgstr ""
7230
 
7231
- #: languages/vue.php:1560
7232
  msgid "Total Visitors"
7233
  msgstr ""
7234
 
7235
- #: languages/vue.php:1563
7236
  msgid "Total Sessions"
7237
  msgstr ""
7238
 
7239
- #: languages/vue.php:1566
7240
  msgid "Visitors by Month"
7241
  msgstr ""
7242
 
7243
- #: languages/vue.php:1569
7244
  msgid "January 1, 2020 - December 31, 2020"
7245
  msgstr ""
7246
 
7247
- #: languages/vue.php:1572
7248
  msgid "A Tip for 2021"
7249
  msgstr ""
7250
 
7251
- #: languages/vue.php:1575
7252
  msgid "Demographics"
7253
  msgstr ""
7254
 
7255
- #: languages/vue.php:1578
7256
  msgid "#1"
7257
  msgstr ""
7258
 
7259
- #: languages/vue.php:1581
7260
  msgid "You Top 5 Countries"
7261
  msgstr ""
7262
 
7263
- #: languages/vue.php:1584
7264
  msgid "Let’s get to know your visitors a little better, shall we?"
7265
  msgstr ""
7266
 
7267
- #: languages/vue.php:1587
7268
  msgid "Gender"
7269
  msgstr ""
7270
 
7271
- #: languages/vue.php:1590
7272
  msgid "Female"
7273
  msgstr ""
7274
 
7275
- #: languages/vue.php:1593
7276
  msgid "Women"
7277
  msgstr ""
7278
 
7279
- #: languages/vue.php:1596
7280
  msgid "Male"
7281
  msgstr ""
7282
 
7283
- #: languages/vue.php:1599
7284
  msgid "Average Age"
7285
  msgstr ""
7286
 
7287
- #: languages/vue.php:1602
7288
  msgid "Behavior"
7289
  msgstr ""
7290
 
7291
- #: languages/vue.php:1605
7292
  msgid "Your Top 5 Pages"
7293
  msgstr ""
7294
 
7295
- #: languages/vue.php:1608
7296
  msgid "Time Spent on Site"
7297
  msgstr ""
7298
 
7299
- #: languages/vue.php:1611
7300
  msgid "minutes"
7301
  msgstr ""
7302
 
7303
- #: languages/vue.php:1614
7304
  msgid "Device Type"
7305
  msgstr ""
7306
 
7307
- #: languages/vue.php:1617
7308
  msgid "A Tip For 2021"
7309
  msgstr ""
7310
 
7311
- #: languages/vue.php:1620
7312
  msgid "Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic."
7313
  msgstr ""
7314
 
7315
- #: languages/vue.php:1623
7316
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
7317
  msgstr ""
7318
 
7319
- #: languages/vue.php:1626
7320
  msgid "So, where did all of these visitors come from?"
7321
  msgstr ""
7322
 
7323
- #: languages/vue.php:1629
7324
  msgid "Clicks"
7325
  msgstr ""
7326
 
7327
- #: languages/vue.php:1632
7328
  msgid "Your Top 5 Keywords"
7329
  msgstr ""
7330
 
7331
- #: languages/vue.php:1635
7332
  msgid "What keywords visitors searched for to find your site"
7333
  msgstr ""
7334
 
7335
- #: languages/vue.php:1638
7336
  msgid "Your Top 5 Referrals"
7337
  msgstr ""
7338
 
7339
- #: languages/vue.php:1641
7340
  msgid "The websites that link back to your website"
7341
  msgstr ""
7342
 
7343
- #: languages/vue.php:1644
7344
  msgid "Opportunity"
7345
  msgstr ""
7346
 
7347
- #: languages/vue.php:1647
7348
  msgid "Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic."
7349
  msgstr ""
7350
 
7351
- #: languages/vue.php:1650
7352
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
7353
  msgstr ""
7354
 
7355
- #: languages/vue.php:1653
7356
  msgid "Thank you for using MonsterInsights!"
7357
  msgstr ""
7358
 
7359
- #: languages/vue.php:1656
7360
  msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
7361
  msgstr ""
7362
 
7363
- #: languages/vue.php:1659
7364
  msgid "Here's to an amazing 2021!"
7365
  msgstr ""
7366
 
7367
- #: languages/vue.php:1662
7368
  msgid "Enjoying MonsterInsights"
7369
  msgstr ""
7370
 
7371
- #: languages/vue.php:1665
7372
  msgid "Leave a five star review!"
7373
  msgstr ""
7374
 
7375
- #: languages/vue.php:1668
7376
  msgid "Syed Balkhi"
7377
  msgstr ""
7378
 
7379
- #: languages/vue.php:1671
7380
  msgid "Chris Christoff"
7381
  msgstr ""
7382
 
7383
- #: languages/vue.php:1674
7384
  msgid "Write Review"
7385
  msgstr ""
7386
 
7387
- #: languages/vue.php:1677
7388
  msgid "Did you know over 10 million websites use our plugins?"
7389
  msgstr ""
7390
 
7391
- #: languages/vue.php:1680
7392
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7393
  msgstr ""
7394
 
7395
- #: languages/vue.php:1683
7396
  msgid "Join our Communities!"
7397
  msgstr ""
7398
 
7399
- #: languages/vue.php:1686
7400
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7401
  msgstr ""
7402
 
7403
- #: languages/vue.php:1689
7404
  msgid "Facebook Group"
7405
  msgstr ""
7406
 
7407
- #: languages/vue.php:1692
7408
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7409
  msgstr ""
7410
 
7411
- #: languages/vue.php:1695
7412
  msgid "Join Now...It’s Free!"
7413
  msgstr ""
7414
 
7415
- #: languages/vue.php:1698
7416
  msgid "WordPress Tutorials by WPBeginner"
7417
  msgstr ""
7418
 
7419
- #: languages/vue.php:1701
7420
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7421
  msgstr ""
7422
 
7423
- #: languages/vue.php:1704
7424
  msgid "Visit WPBeginner"
7425
  msgstr ""
7426
 
7427
- #: languages/vue.php:1707
7428
  msgid "Follow Us!"
7429
  msgstr ""
7430
 
7431
- #: languages/vue.php:1710
7432
  msgid "Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7433
  msgstr ""
7434
 
7435
- #: languages/vue.php:1713
7436
  msgid "Copyright MonsterInsights, 2021"
7437
  msgstr ""
7438
 
7439
- #: languages/vue.php:1716
7440
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
7441
  msgstr ""
7442
 
7443
- #: languages/vue.php:1719
7444
  msgid "January"
7445
  msgstr ""
7446
 
7447
- #: languages/vue.php:1722
7448
  msgid "February"
7449
  msgstr ""
7450
 
7451
- #: languages/vue.php:1725
7452
  msgid "March"
7453
  msgstr ""
7454
 
7455
- #: languages/vue.php:1728
7456
  msgid "April"
7457
  msgstr ""
7458
 
7459
- #: languages/vue.php:1731
7460
  msgid "May"
7461
  msgstr ""
7462
 
7463
- #: languages/vue.php:1734
7464
  msgid "June"
7465
  msgstr ""
7466
 
7467
- #: languages/vue.php:1737
7468
  msgid "July"
7469
  msgstr ""
7470
 
7471
- #: languages/vue.php:1740
7472
  msgid "August"
7473
  msgstr ""
7474
 
7475
- #: languages/vue.php:1743
7476
  msgid "September"
7477
  msgstr ""
7478
 
7479
- #: languages/vue.php:1746
7480
  msgid "October"
7481
  msgstr ""
7482
 
7483
- #: languages/vue.php:1749
7484
  msgid "November"
7485
  msgstr ""
7486
 
7487
- #: languages/vue.php:1752
7488
  msgid "December"
7489
  msgstr ""
7490
 
7491
  #. Translators: Number of visitors.
7492
- #: languages/vue.php:1756
7493
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7494
  msgstr ""
7495
 
7496
- #: languages/vue.php:1759
7497
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7498
  msgstr ""
7499
 
7500
  #. Translators: Number of visitors.
7501
- #: languages/vue.php:1763
7502
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7503
  msgstr ""
7504
 
7505
  #. Translators: Number of visitors.
7506
- #: languages/vue.php:1767
7507
  msgid "%s Visitors"
7508
  msgstr ""
7509
 
7510
  #. Translators: Percent and Number of visitors.
7511
- #: languages/vue.php:1771
7512
  msgid "%1$s&#37 of your visitors were %2$s"
7513
  msgstr ""
7514
 
7515
  #. Translators: Number of visitors and their age.
7516
- #: languages/vue.php:1775
7517
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7518
  msgstr ""
7519
 
7520
- #: languages/vue.php:1778
7521
  msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
7522
  msgstr ""
7523
 
7524
  #. Translators: Number of minutes spent on site.
7525
- #: languages/vue.php:1782
7526
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7527
  msgstr ""
7528
 
7529
  #. Translators: Name of device type.
7530
- #: languages/vue.php:1786
7531
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7532
  msgstr ""
7533
 
7534
  #. Translators: Number of visitors and device percentage.
7535
- #: languages/vue.php:1790
7536
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7537
  msgstr ""
7538
 
7539
- #: languages/vue.php:1793
7540
  msgid "Desktop"
7541
  msgstr ""
7542
 
7543
- #: languages/vue.php:1796
7544
  msgid "Tablet"
7545
  msgstr ""
7546
 
7547
- #: languages/vue.php:1799
7548
  msgid "Mobile"
7549
  msgstr ""
7550
 
7551
- #: languages/vue.php:1802
7552
  msgid "Right Now"
7553
  msgstr ""
7554
 
7555
- #: languages/vue.php:1805
7556
  msgid "Active users on site"
7557
  msgstr ""
7558
 
7559
- #: languages/vue.php:1808
7560
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
7561
  msgstr ""
7562
 
7563
- #: languages/vue.php:1811
7564
  msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter."
7565
  msgstr ""
7566
 
7567
- #: languages/vue.php:1814
7568
  msgid "The real-time report automatically updates approximately every 60 seconds."
7569
  msgstr ""
7570
 
7571
  #. Translators: Number of seconds that have passed since the report was refreshed.
7572
- #: languages/vue.php:1818
7573
  msgid "The real-time report was last updated %s seconds ago."
7574
  msgstr ""
7575
 
7576
- #: languages/vue.php:1821
7577
  msgid "The latest data will be automatically shown on this page when it becomes available."
7578
  msgstr ""
7579
 
7580
- #: languages/vue.php:1824
7581
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
7582
  msgstr ""
7583
 
7584
- #: languages/vue.php:1827
7585
  msgid "Pageviews Per Minute"
7586
  msgstr ""
7587
 
7588
- #: languages/vue.php:1830
7589
  msgid "Top Pages"
7590
  msgstr ""
7591
 
7592
- #: languages/vue.php:1833
7593
  msgid "No pageviews currently."
7594
  msgstr ""
7595
 
7596
- #: languages/vue.php:1836
7597
  msgid "Page"
7598
  msgstr ""
7599
 
7600
- #: languages/vue.php:1839
7601
  msgid "Pageview Count"
7602
  msgstr ""
7603
 
7604
- #: languages/vue.php:1842
7605
  msgid "Percent of Total"
7606
  msgstr ""
7607
 
7608
- #: languages/vue.php:1845
7609
  msgid "This is the number of active users currently on your site."
7610
  msgstr ""
7611
 
7612
- #: languages/vue.php:1848
7613
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
7614
  msgstr ""
7615
 
7616
- #: languages/vue.php:1851
7617
  msgid "This list shows the top pages users are currently viewing on your site."
7618
  msgstr ""
7619
 
7620
- #: languages/vue.php:1854
7621
  msgid "View All Real-Time Pageviews"
7622
  msgstr ""
7623
 
7624
- #: languages/vue.php:1857
7625
  msgid "View All Real-Time Traffic Sources"
7626
  msgstr ""
7627
 
7628
- #: languages/vue.php:1860
7629
  msgid "View All Real-Time Traffic by Country"
7630
  msgstr ""
7631
 
7632
- #: languages/vue.php:1863
7633
  msgid "View All Real-Time Traffic by City"
7634
  msgstr ""
7635
 
7636
- #: languages/vue.php:1866
7637
  msgid "Show Overview Reports"
7638
  msgstr ""
7639
 
7640
- #: languages/vue.php:1869
7641
  msgid "Show Publishers Reports"
7642
  msgstr ""
7643
 
7644
- #: languages/vue.php:1872
7645
  msgid "Show eCommerce Reports"
7646
  msgstr ""
7647
 
7648
- #: languages/vue.php:1875
7649
  msgid "Settings Menu"
7650
  msgstr ""
7651
 
7652
- #: languages/vue.php:1878
7653
  msgid "Available in PRO version"
7654
  msgstr ""
7655
 
7656
- #: languages/vue.php:1881
7657
  msgid "Thank you for being a loyal MonsterInsights Lite user."
7658
  msgstr ""
7659
 
7660
- #: languages/vue.php:1884
7661
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
7662
  msgstr ""
7663
 
7664
  #. Translators: Gets replaced with the coupon code.
7665
- #: languages/vue.php:1888
7666
  msgid "Use coupon code %s to get 50%% off."
7667
  msgstr ""
7668
 
7669
- #: languages/vue.php:1891
7670
  msgid "Dashboard widget"
7671
  msgstr ""
7672
 
7673
- #: languages/vue.php:1894
7674
  msgid "Affiliate Links"
7675
  msgstr ""
7676
 
7677
- #: languages/vue.php:1897
7678
  msgid "Enhanced Ecommerce"
7679
  msgstr ""
7680
 
7681
- #: languages/vue.php:1900
7682
  msgid "Banner Ads"
7683
  msgstr ""
7684
 
7685
- #: languages/vue.php:1904
7686
  msgid "Google AMP"
7687
  msgstr ""
7688
 
7689
- #: languages/vue.php:1907
7690
  msgid "SEO Score Tracking"
7691
  msgstr ""
7692
 
7693
- #: languages/vue.php:1910
7694
  msgid "Activating..."
7695
  msgstr ""
7696
 
7697
- #: languages/vue.php:1913
7698
  msgid "Deactivating..."
7699
  msgstr ""
7700
 
7701
- #: languages/vue.php:1916
7702
  msgid "Deactivate"
7703
  msgstr ""
7704
 
7705
  #. Translators: The status of the addon (installed/active/inactive).
7706
- #: languages/vue.php:1920
7707
  msgid "Status: %s"
7708
  msgstr ""
7709
 
7710
- #: languages/vue.php:1923
7711
  msgid "Not Installed"
7712
  msgstr ""
7713
 
7714
- #: languages/vue.php:1926
7715
  msgid "Network Active"
7716
  msgstr ""
7717
 
7718
- #: languages/vue.php:1929
7719
  msgid "Active"
7720
  msgstr ""
7721
 
7722
- #: languages/vue.php:1932
7723
  msgid "Inactive"
7724
  msgstr ""
7725
 
7726
  #. Translators: Adds a link to the general settings tab.
7727
- #: languages/vue.php:1936
7728
  msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
7729
  msgstr ""
7730
 
7731
- #: languages/vue.php:1939
7732
  msgid "Export PDF Reports"
7733
  msgstr ""
7734
 
7735
- #: languages/vue.php:1942
7736
  msgid "Permissions"
7737
  msgstr ""
7738
 
7739
- #: languages/vue.php:1945
7740
  msgid "Allow These User Roles to See Reports"
7741
  msgstr ""
7742
 
7743
- #: languages/vue.php:1948
7744
  msgid "Users that have at least one of these roles will be able to view the reports."
7745
  msgstr ""
7746
 
7747
- #: languages/vue.php:1951
7748
  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."
7749
  msgstr ""
7750
 
7751
- #: languages/vue.php:1954
7752
  msgid "Allow These User Roles to Save Settings"
7753
  msgstr ""
7754
 
7755
- #: languages/vue.php:1957
7756
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
7757
  msgstr ""
7758
 
7759
- #: languages/vue.php:1960
7760
  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."
7761
  msgstr ""
7762
 
7763
- #: languages/vue.php:1963
7764
  msgid "Exclude These User Roles From Tracking"
7765
  msgstr ""
7766
 
7767
- #: languages/vue.php:1966
7768
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
7769
  msgstr ""
7770
 
7771
- #: languages/vue.php:1969
7772
  msgid "Performance"
7773
  msgstr ""
7774
 
7775
- #: languages/vue.php:1972
7776
  msgid "Custom code"
7777
  msgstr ""
7778
 
7779
  #. Translators: Adds a link to the Google reference.
7780
- #: languages/vue.php:1976
7781
  msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
7782
  msgstr ""
7783
 
7784
- #: languages/vue.php:1982
7785
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
7786
  msgstr ""
7787
 
7788
- #: languages/vue.php:1985
7789
  msgid "Hide Admin Bar Reports"
7790
  msgstr ""
7791
 
7792
  #. Translators: placeholders make text small.
7793
- #: languages/vue.php:1989
7794
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
7795
  msgstr ""
7796
 
7797
  #. Translators: placeholders make text small.
7798
- #: languages/vue.php:1993
7799
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
7800
  msgstr ""
7801
 
7802
  #. Translators: placeholders make text small.
7803
- #: languages/vue.php:1997
7804
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
7805
  msgstr ""
7806
 
7807
- #: languages/vue.php:2000
7808
  msgid "View notifications"
7809
  msgstr ""
7810
 
7811
  #. Translators: Error status and error text.
7812
- #: languages/vue.php:2004
7813
  msgid "Can't load settings. Error: %1$s, %2$s"
7814
  msgstr ""
7815
 
7816
- #: languages/vue.php:2007
7817
  msgid "You appear to be offline."
7818
  msgstr ""
7819
 
7820
  #. Translators: Error status and error text.
7821
- #: languages/vue.php:2011
7822
  msgid "Can't save settings. Error: %1$s, %2$s"
7823
  msgstr ""
7824
 
7825
- #: languages/vue.php:2015
7826
  msgid "Network error encountered. Settings not saved."
7827
  msgstr ""
7828
 
7829
  #. Translators: Error status and error text.
7830
- #: languages/vue.php:2019
7831
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
7832
  msgstr ""
7833
 
7834
  #. Translators: Error status and error text.
7835
- #: languages/vue.php:2023
7836
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7837
  msgstr ""
7838
 
7839
  #. Translators: Error status and error text.
7840
- #: languages/vue.php:2027
7841
  msgid "Can't load license details. Error: %1$s, %2$s"
7842
  msgstr ""
7843
 
7844
- #: languages/vue.php:2030
7845
  msgid "Error loading license details"
7846
  msgstr ""
7847
 
7848
  #. Translators: Error status and error text.
7849
- #: languages/vue.php:2034
7850
  msgid "Can't verify the license. Error: %1$s, %2$s"
7851
  msgstr ""
7852
 
7853
  #. Translators: Error status and error text.
7854
- #: languages/vue.php:2038
7855
  msgid "Can't validate the license. Error: %1$s, %2$s"
7856
  msgstr ""
7857
 
7858
  #. Translators: Error status and error text.
7859
- #: languages/vue.php:2042
7860
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7861
  msgstr ""
7862
 
7863
  #. Translators: Error status and error text.
7864
- #: languages/vue.php:2046
7865
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7866
  msgstr ""
7867
 
7868
- #: languages/vue.php:2049
7869
  msgid "You appear to be offline. Settings not saved."
7870
  msgstr ""
7871
 
7872
  #. Translators: Error status and error text.
7873
- #: languages/vue.php:2053
7874
  msgid "Can't authenticate. Error: %1$s, %2$s"
7875
  msgstr ""
7876
 
7877
  #. Translators: Error status and error text.
7878
- #: languages/vue.php:2057
7879
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7880
  msgstr ""
7881
 
7882
  #. Translators: Error status and error text.
7883
- #: languages/vue.php:2061
7884
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7885
  msgstr ""
7886
 
7887
- #: languages/vue.php:2064
7888
  msgid "Proceed"
7889
  msgstr ""
7890
 
7891
- #: languages/vue.php:2067
7892
  msgid "Connection Information"
7893
  msgstr ""
7894
 
7895
- #: languages/vue.php:2070
7896
  msgid "To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host."
7897
  msgstr ""
7898
 
7899
- #: languages/vue.php:2073
7900
  msgid "Hostname"
7901
  msgstr ""
7902
 
7903
- #: languages/vue.php:2076
7904
  msgid "FTP Username"
7905
  msgstr ""
7906
 
7907
- #: languages/vue.php:2079
7908
  msgid "FTP Password"
7909
  msgstr ""
7910
 
7911
- #: languages/vue.php:2082
7912
  msgid "This password will not be stored on the server."
7913
  msgstr ""
7914
 
7915
- #: languages/vue.php:2085
7916
  msgid "Connection Type"
7917
  msgstr ""
7918
 
7919
- #: languages/vue.php:2088
7920
  msgid "Cancel"
7921
  msgstr ""
7922
 
7923
- #: languages/vue.php:2091
7924
  msgid "You appear to be offline. WPForms not installed."
7925
  msgstr ""
7926
 
7927
  #. Translators: Error status and error text.
7928
- #: languages/vue.php:2095
7929
  msgid "Can't activate addon. Error: %1$s, %2$s"
7930
  msgstr ""
7931
 
7932
- #: languages/vue.php:2098
7933
  msgid "You appear to be offline. Addon not activated."
7934
  msgstr ""
7935
 
7936
  #. Translators: Error status and error text.
7937
- #: languages/vue.php:2102
7938
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7939
  msgstr ""
7940
 
7941
- #: languages/vue.php:2105
7942
  msgid "You appear to be offline. Addon not deactivated."
7943
  msgstr ""
7944
 
7945
  #. Translators: Error status and error text.
7946
- #: languages/vue.php:2109
7947
  msgid "Can't install plugin. Error: %1$s, %2$s"
7948
  msgstr ""
7949
 
7950
- #: languages/vue.php:2112
7951
  msgid "You appear to be offline. Plugin not installed."
7952
  msgstr ""
7953
 
7954
  #. Translators: Error status and error text.
7955
- #: languages/vue.php:2116
7956
  msgid "Can't install addon. Error: %1$s, %2$s"
7957
  msgstr ""
7958
 
7959
- #: languages/vue.php:2119
7960
  msgid "You appear to be offline. Addon not installed."
7961
  msgstr ""
7962
 
7963
  #. Translators: Error status and error text.
7964
- #: languages/vue.php:2123
7965
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7966
  msgstr ""
7967
 
7968
  #. Translators: Example path (/go/).
7969
- #: languages/vue.php:2127
7970
  msgid "Path (example: %s)"
7971
  msgstr ""
7972
 
7973
- #: languages/vue.php:2130
7974
  msgid "Path has to start with a / and have no spaces"
7975
  msgstr ""
7976
 
7977
  #. Translators: Example label (aff).
7978
- #: languages/vue.php:2134
7979
  msgid "Label (example: %s)"
7980
  msgstr ""
7981
 
7982
- #: languages/vue.php:2137
7983
  msgid "Label can't contain any spaces"
7984
  msgstr ""
7985
 
7986
  #. Translators: Add links to documentation.
7987
- #: languages/vue.php:2141
7988
  msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
7989
  msgstr ""
7990
 
7991
- #: languages/vue.php:2144
7992
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
7993
  msgstr ""
7994
 
7995
- #: languages/vue.php:2147
7996
  msgid "The MonsterInsights Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
7997
  msgstr ""
7998
 
7999
- #: languages/vue.php:2150
8000
  msgid "Disable the Headline Analyzer"
8001
  msgstr ""
8002
 
8003
- #: languages/vue.php:2153
8004
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
8005
  msgstr ""
8006
 
8007
- #: languages/vue.php:2156
8008
  msgid "Or manually enter UA code (limited functionality)"
8009
  msgstr ""
8010
 
8011
- #: languages/vue.php:2159
8012
  msgid "Dual Tracking Profile"
8013
  msgstr ""
8014
 
8015
- #: languages/vue.php:2162
8016
  msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
8017
  msgstr ""
8018
 
8019
- #: languages/vue.php:2165
8020
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
8021
  msgstr ""
8022
 
8023
- #: languages/vue.php:2168
8024
  msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
8025
  msgstr ""
8026
 
8027
- #: languages/vue.php:2171
8028
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
8029
  msgstr ""
8030
 
8031
- #: languages/vue.php:2174
8032
  msgid "Measurement Protocol API Secret"
8033
  msgstr ""
8034
 
8035
- #: languages/vue.php:2177
8036
  msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
8037
  msgstr ""
8038
 
8039
- #: languages/vue.php:2180
8040
  msgid "Force Deauthenticate"
8041
  msgstr ""
8042
 
8043
- #: languages/vue.php:2183
8044
  msgid "Disconnect MonsterInsights"
8045
  msgstr ""
8046
 
8047
- #: languages/vue.php:2186
8048
  msgid "Authenticating"
8049
  msgstr ""
8050
 
8051
- #: languages/vue.php:2189
8052
  msgid "Verifying Credentials"
8053
  msgstr ""
8054
 
8055
- #: languages/vue.php:2192
8056
  msgid "Your site is connected to MonsterInsights!"
8057
  msgstr ""
8058
 
8059
- #: languages/vue.php:2195
8060
  msgid "Deauthenticating"
8061
  msgstr ""
8062
 
8063
- #: languages/vue.php:2198
8064
  msgid "You've disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
8065
  msgstr ""
8066
 
8067
- #: languages/vue.php:2201
8068
  msgid "Connect MonsterInsights"
8069
  msgstr ""
8070
 
8071
- #: languages/vue.php:2204
8072
  msgid "Verify Credentials"
8073
  msgstr ""
8074
 
8075
- #: languages/vue.php:2207
8076
  msgid "Website Profile"
8077
  msgstr ""
8078
 
8079
- #: languages/vue.php:2210
8080
  msgid "Active Profile"
8081
  msgstr ""
8082
 
8083
- #: languages/vue.php:2213
8084
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
8085
  msgstr ""
8086
 
8087
- #: languages/vue.php:2216
8088
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
8089
  msgstr ""
8090
 
8091
- #: languages/vue.php:2219
8092
  msgid "Manually enter your UA code"
8093
  msgstr ""
8094
 
8095
- #: languages/vue.php:2222
8096
  msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers."
8097
  msgstr ""
8098
 
8099
- #: languages/vue.php:2225
8100
  msgid "Manually enter your GA4 Measurement ID"
8101
  msgstr ""
8102
 
8103
- #: languages/vue.php:2228
8104
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8105
  msgstr ""
8106
 
8107
- #: languages/vue.php:2231
8108
  msgid "Anonymize IP Addresses"
8109
  msgstr ""
8110
 
8111
- #: languages/vue.php:2234
8112
  msgid "Link Attribution"
8113
  msgstr ""
8114
 
8115
- #: languages/vue.php:2237
8116
  msgid "Enable Enhanced Link Attribution"
8117
  msgstr ""
8118
 
8119
- #: languages/vue.php:2240
8120
  msgid "Enable Anchor Tracking"
8121
  msgstr ""
8122
 
8123
- #: languages/vue.php:2243
8124
  msgid "Enable allowAnchor"
8125
  msgstr ""
8126
 
8127
- #: languages/vue.php:2246
8128
  msgid "Enable allowLinker"
8129
  msgstr ""
8130
 
8131
- #: languages/vue.php:2249
8132
  msgid "Enable Tag Links in RSS"
8133
  msgstr ""
8134
 
8135
- #: languages/vue.php:2252
8136
  msgid "File Downloads"
8137
  msgstr ""
8138
 
8139
- #: languages/vue.php:2255
8140
  msgid "Extensions of Files to Track as Downloads"
8141
  msgstr ""
8142
 
8143
- #: languages/vue.php:2258
8144
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
8145
  msgstr ""
8146
 
8147
  #. Translators: Add links to the documentation.
8148
- #: languages/vue.php:2262
8149
  msgid "Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
8150
  msgstr ""
8151
 
8152
  #. Translators: Adds a link to the documentation.
8153
- #: languages/vue.php:2266
8154
  msgid "This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
8155
  msgstr ""
8156
 
8157
  #. Translators: Adds a link to the documentation.
8158
- #: languages/vue.php:2270
8159
  msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
8160
  msgstr ""
8161
 
8162
- #: languages/vue.php:2273
8163
  msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
8164
  msgstr ""
8165
 
8166
  #. Translators: Adds a link to the documentation.
8167
- #: languages/vue.php:2277
8168
  msgid "This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
8169
  msgstr ""
8170
 
8171
  #. Translators: Adds a link to the documentation.
8172
- #: languages/vue.php:2281
8173
  msgid "Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn't count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code."
8174
  msgstr ""
8175
 
8176
  #. Translators: Adds a link to the documentation.
8177
- #: languages/vue.php:2285
8178
  msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner."
8179
  msgstr ""
8180
 
8181
- #: languages/vue.php:2288
8182
  msgid "Add domain"
8183
  msgstr ""
8184
 
8185
  #. Translators: Example domain.
8186
- #: languages/vue.php:2292
8187
  msgid "Domain (example: %s)"
8188
  msgstr ""
8189
 
8190
  #. Translators: Current site domain to be avoided.
8191
- #: languages/vue.php:2296
8192
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8193
  msgstr ""
8194
 
8195
- #: languages/vue.php:2299
8196
  msgid "Cross Domain Tracking"
8197
  msgstr ""
8198
 
8199
  #. Translators: Adds a link to the documentation.
8200
- #: languages/vue.php:2303
8201
  msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s."
8202
  msgstr ""
8203
 
8204
  #. Translators: Number of days.
8205
- #: languages/vue.php:2307
8206
  msgid "vs. Previous Day"
8207
  msgstr ""
8208
 
8209
- #: languages/vue.php:2310
8210
  msgid "No change"
8211
  msgstr ""
8212
 
8213
- #: languages/vue.php:2313
8214
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
8215
  msgstr ""
8216
 
8217
- #: languages/vue.php:2316
8218
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
8219
  msgstr ""
8220
 
8221
- #: languages/vue.php:2319
8222
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8223
  msgstr ""
8224
 
8225
- #: languages/vue.php:2322
8226
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
8227
  msgstr ""
8228
 
8229
- #: languages/vue.php:2325
8230
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
8231
  msgstr ""
8232
 
8233
- #: languages/vue.php:2328
8234
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
8235
  msgstr ""
8236
 
8237
- #: languages/vue.php:2331
8238
  msgid "Unlock search console report to see your top performing keywords in Google."
8239
  msgstr ""
8240
 
8241
- #: languages/vue.php:2334
8242
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
8243
  msgstr ""
8244
 
8245
- #: languages/vue.php:2337
8246
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
8247
  msgstr ""
8248
 
8249
- #: languages/vue.php:2340
8250
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
8251
  msgstr ""
8252
 
8253
- #: languages/vue.php:2343
8254
  msgid "Upgrade to Pro »"
8255
  msgstr ""
8256
 
8257
- #: languages/vue.php:2346
8258
  msgid "Pro Tip:"
8259
  msgstr ""
8260
 
8261
- #: languages/vue.php:2349
8262
  msgid "Show"
8263
  msgstr ""
8264
 
8265
- #: languages/vue.php:2352
8266
  msgid "Hide dashboard widget"
8267
  msgstr ""
8268
 
8269
- #: languages/vue.php:2355
8270
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
8271
  msgstr ""
8272
 
8273
- #: languages/vue.php:2358
8274
  msgid "Yes, hide it!"
8275
  msgstr ""
8276
 
8277
- #: languages/vue.php:2361
8278
  msgid "No, cancel!"
8279
  msgstr ""
8280
 
8281
- #: languages/vue.php:2364
8282
  msgid "MonsterInsights Widget Hidden"
8283
  msgstr ""
8284
 
8285
- #: languages/vue.php:2367
8286
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
8287
  msgstr ""
8288
 
8289
- #: languages/vue.php:2374
8290
  msgid "Usage Tracking"
8291
  msgstr ""
8292
 
8293
- #: languages/vue.php:2377
8294
  msgid "Allow Usage Tracking"
8295
  msgstr ""
8296
 
8297
- #: languages/vue.php:2380
8298
  msgid "By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test."
8299
  msgstr ""
8300
 
8301
  #. Translators: Add links to documentation.
8302
- #: languages/vue.php:2384
8303
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8304
  msgstr ""
8305
 
8306
  #. Translators: Make text green and add smiley face.
8307
- #: languages/vue.php:2388
8308
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8309
  msgstr ""
8310
 
8311
  #. Translators: Add link to upgrade.
8312
- #: languages/vue.php:2392
8313
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8314
  msgstr ""
8315
 
8316
  #. Translators: Make text green.
8317
- #: languages/vue.php:2396
8318
  msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8319
  msgstr ""
8320
 
8321
- #: languages/vue.php:2399
8322
  msgid "Unlock PRO Features Now"
8323
  msgstr ""
8324
 
8325
- #: languages/vue.php:2402
8326
  msgid "Paste your license key here"
8327
  msgstr ""
8328
 
8329
- #: languages/vue.php:2405
8330
  msgid "Verify"
8331
  msgstr ""
8332
 
8333
  #. Translators: Add link to retrieve license from account area.
8334
- #: languages/vue.php:2409
8335
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8336
  msgstr ""
8337
 
8338
- #: languages/vue.php:2412
8339
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8340
  msgstr ""
8341
 
8342
  #. Translators: Error status and error text.
8343
- #: languages/vue.php:2416
8344
  msgid "Can't load errors. Error: %1$s, %2$s"
8345
  msgstr ""
8346
 
8347
- #: languages/vue.php:2419
8348
  msgid "No options available"
8349
  msgstr ""
8350
 
8351
- #: languages/vue.php:2422
8352
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
8353
  msgstr ""
8354
 
8355
- #: languages/vue.php:2425
8356
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
8357
  msgstr ""
8358
 
8359
- #: languages/vue.php:2428
8360
  msgid "1,938"
8361
  msgstr ""
8362
 
8363
- #: languages/vue.php:2431
8364
  msgid "2+ Million Active Installs"
8365
  msgstr ""
8366
 
8367
- #: languages/vue.php:2434
8368
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
8369
  msgstr ""
8370
 
8371
- #: languages/vue.php:2437
8372
  msgid "Set up the proper SEO foundations in less than 10 minutes."
8373
  msgstr ""
8374
 
8375
- #: languages/vue.php:2440
8376
  msgid "SEO Audit Checklist"
8377
  msgstr ""
8378
 
8379
- #: languages/vue.php:2443
8380
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8381
  msgstr ""
8382
 
8383
- #: languages/vue.php:2446
8384
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8385
  msgstr ""
8386
 
8387
- #: languages/vue.php:2449
8388
  msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
8389
  msgstr ""
8390
 
8391
- #: languages/vue.php:2452
8392
  msgid "Get AIOSEO for WordPress"
8393
  msgstr ""
8394
 
8395
- #: languages/vue.php:2455
8396
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8397
  msgstr ""
8398
 
8399
- #: languages/vue.php:2458
8400
  msgid "Try it out today, for free."
8401
  msgstr ""
8402
 
8403
- #: languages/vue.php:2461
8404
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8405
  msgstr ""
8406
 
8407
- #: languages/vue.php:2464
8408
  msgid "Activate and Install the Plugin with just one click!"
8409
  msgstr ""
8410
 
8411
- #: languages/vue.php:2467
8412
  msgid "Installing AIOSEO..."
8413
  msgstr ""
8414
 
8415
- #: languages/vue.php:2470
8416
  msgid "Congrats! All-in-One SEO Installed."
8417
  msgstr ""
8418
 
8419
- #: languages/vue.php:2473
8420
  msgid "Switch to AIOSEO"
8421
  msgstr ""
8422
 
8423
- #: languages/vue.php:2476
8424
  msgid "Installation Failed. Please refresh and try again."
8425
  msgstr ""
8426
 
8427
- #: languages/vue.php:2479
8428
  msgid "Activating AIOSEO..."
8429
  msgstr ""
8430
 
8431
- #: languages/vue.php:2482
8432
  msgid "Activate AIOSEO"
8433
  msgstr ""
8434
 
8435
- #: languages/vue.php:2485
8436
  msgid "Activation Failed. Please refresh and try again."
8437
  msgstr ""
8438
 
8439
  #. Translators: The name of the field that is throwing a validation error.
8440
- #: languages/vue.php:2489
8441
  msgid "%s can't be empty."
8442
  msgstr ""
8443
 
8444
- #: languages/vue.php:2492
8445
  msgid "Duplicate values are not allowed."
8446
  msgstr ""
8447
 
8448
- #: languages/vue.php:2495
8449
  msgid "You can add maximum 5 items."
8450
  msgstr ""
8451
 
8452
- #: languages/vue.php:2498
8453
  msgid "At least 0 item required."
8454
  msgstr ""
8455
 
8456
- #: languages/vue.php:2501
8457
  msgid "Add Another Link Path"
8458
  msgstr ""
8459
 
8460
- #: languages/vue.php:2504
8461
  msgid "Remove row"
8462
  msgstr ""
8463
 
8464
- #: languages/vue.php:2507
8465
  msgid "New"
8466
  msgstr ""
8467
 
8468
- #: languages/vue.php:2510
8469
  msgid "Returning"
8470
  msgstr ""
8471
 
8472
- #: languages/vue.php:2513
8473
  msgid "Top 10 Countries"
8474
  msgstr ""
8475
 
8476
- #: languages/vue.php:2516
8477
  msgid "View Countries Report"
8478
  msgstr ""
8479
 
8480
- #: languages/vue.php:2519
8481
  msgid "Top 10 Referrals"
8482
  msgstr ""
8483
 
8484
- #: languages/vue.php:2522
8485
  msgid "View All Referral Sources"
8486
  msgstr ""
8487
 
8488
- #: languages/vue.php:2525
8489
  msgid "View Full Posts/Pages Report"
8490
  msgstr ""
8491
 
8492
- #: languages/vue.php:2528
8493
  msgid "Percentage of single-page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
8494
  msgstr ""
8495
 
8496
- #: languages/vue.php:2531
8497
  msgid "This list shows the top countries your website visitors are from."
8498
  msgstr ""
8499
 
8500
- #: languages/vue.php:2534
8501
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8502
  msgstr ""
8503
 
8504
- #: languages/vue.php:2537
8505
  msgid "Export PDF Overview Report"
8506
  msgstr ""
8507
 
8508
- #: languages/vue.php:2540
8509
  msgid "Reset to default"
8510
  msgstr ""
8511
 
8512
- #: languages/vue.php:2543
8513
  msgid "The value entered does not match the required format"
8514
  msgstr ""
8515
 
8516
- #: languages/vue.php:2546
8517
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8518
  msgstr ""
8519
 
8520
- #: languages/vue.php:2549
8521
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8522
  msgstr ""
8523
 
8524
- #: languages/vue.php:2552
8525
  msgid "Recommended Settings"
8526
  msgstr ""
8527
 
8528
- #: languages/vue.php:2555
8529
  msgid "MonsterInsights recommends the following settings based on your configuration."
8530
  msgstr ""
8531
 
8532
- #: languages/vue.php:2558
8533
  msgid "Events Tracking"
8534
  msgstr ""
8535
 
8536
- #: languages/vue.php:2561
8537
  msgid "Must have for all click tracking on site."
8538
  msgstr ""
8539
 
8540
- #: languages/vue.php:2564
8541
  msgid "MonsterInsights uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
8542
  msgstr ""
8543
 
8544
- #: languages/vue.php:2567
8545
  msgid "Enhanced Link Attribution"
8546
  msgstr ""
8547
 
8548
- #: languages/vue.php:2570
8549
  msgid "Improves the accuracy of your In-Page Analytics."
8550
  msgstr ""
8551
 
8552
- #: languages/vue.php:2573
8553
  msgid "MonsterInsights will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
8554
  msgstr ""
8555
 
8556
- #: languages/vue.php:2576
8557
  msgid "Install Updates Automatically"
8558
  msgstr ""
8559
 
8560
- #: languages/vue.php:2579
8561
  msgid "Get the latest features, bug fixes, and security updates as they are released."
8562
  msgstr ""
8563
 
8564
- #: languages/vue.php:2582
8565
  msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
8566
  msgstr ""
8567
 
8568
- #: languages/vue.php:2585
8569
  msgid "File Download Tracking"
8570
  msgstr ""
8571
 
8572
- #: languages/vue.php:2588
8573
  msgid "Helps you see file downloads data."
8574
  msgstr ""
8575
 
8576
- #: languages/vue.php:2591
8577
  msgid "MonsterInsights will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
8578
  msgstr ""
8579
 
8580
- #: languages/vue.php:2594
8581
  msgid "Helps you increase affiliate revenue."
8582
  msgstr ""
8583
 
8584
- #: languages/vue.php:2597
8585
  msgid "MonsterInsights will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
8586
  msgstr ""
8587
 
8588
- #: languages/vue.php:2600
8589
  msgid "Affiliate Link Tracking"
8590
  msgstr ""
8591
 
8592
- #: languages/vue.php:2603
8593
  msgid "Who Can See Reports"
8594
  msgstr ""
8595
 
8596
- #: languages/vue.php:2606
8597
  msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
8598
  msgstr ""
8599
 
8600
- #: languages/vue.php:2609
8601
  msgid "Save and continue"
8602
  msgstr ""
8603
 
8604
- #: languages/vue.php:2612
8605
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
8606
  msgstr ""
8607
 
8608
- #: languages/vue.php:2615
8609
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
8610
  msgstr ""
8611
 
8612
- #: languages/vue.php:2618
8613
  msgid "+ Add Role"
8614
  msgstr ""
8615
 
8616
- #: languages/vue.php:2621
8617
  msgid "Connect MonsterInsights to Your Website"
8618
  msgstr ""
8619
 
8620
- #: languages/vue.php:2624
8621
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
8622
  msgstr ""
8623
 
8624
- #: languages/vue.php:2627
8625
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
8626
  msgstr ""
8627
 
8628
- #: languages/vue.php:2630
8629
  msgid "Save and Continue"
8630
  msgstr ""
8631
 
8632
- #: languages/vue.php:2633
8633
  msgid "UA code can't be empty"
8634
  msgstr ""
8635
 
8636
- #: languages/vue.php:2636
8637
  msgid "Saving UA code..."
8638
  msgstr ""
8639
 
8640
- #: languages/vue.php:2639
8641
  msgid "Allow usage tracking"
8642
  msgstr ""
8643
 
8644
- #: languages/vue.php:2642
8645
  msgid "Adjust the sample rate so you don't exceed Google Analytics' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization."
8646
  msgstr ""
8647
 
8648
- #: languages/vue.php:2645
8649
  msgid "Install All-in-One SEO"
8650
  msgstr ""
8651
 
8652
- #: languages/vue.php:2648
8653
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8654
  msgstr ""
8655
 
8656
- #: languages/vue.php:2651
8657
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8658
  msgstr ""
8659
 
8660
- #: languages/vue.php:2654
8661
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8662
  msgstr ""
8663
 
8664
- #: languages/vue.php:2657
8665
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8666
  msgstr ""
8667
 
8668
- #: languages/vue.php:2660
8669
  msgid "Local SEO"
8670
  msgstr ""
8671
 
8672
- #: languages/vue.php:2663
8673
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8674
  msgstr ""
8675
 
8676
- #: languages/vue.php:2666
8677
  msgid "WooCommerce SEO"
8678
  msgstr ""
8679
 
8680
- #: languages/vue.php:2669
8681
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8682
  msgstr ""
8683
 
8684
- #: languages/vue.php:2672
8685
  msgid "SEO Custom User Roles"
8686
  msgstr ""
8687
 
8688
- #: languages/vue.php:2675
8689
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8690
  msgstr ""
8691
 
8692
- #: languages/vue.php:2678
8693
  msgid "Google News Sitemap"
8694
  msgstr ""
8695
 
8696
- #: languages/vue.php:2681
8697
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8698
  msgstr ""
8699
 
8700
- #: languages/vue.php:2684
8701
  msgid "Smart XML Sitemaps"
8702
  msgstr ""
8703
 
8704
- #: languages/vue.php:2687
8705
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8706
  msgstr ""
8707
 
8708
- #: languages/vue.php:2690
8709
  msgid "Social Media Integration"
8710
  msgstr ""
8711
 
8712
- #: languages/vue.php:2693
8713
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8714
  msgstr ""
8715
 
8716
- #: languages/vue.php:2696
8717
  msgid "TruSEO On-Page Analysis"
8718
  msgstr ""
8719
 
8720
- #: languages/vue.php:2699
8721
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8722
  msgstr ""
8723
 
8724
- #: languages/vue.php:2702
8725
  msgid "& Many More!"
8726
  msgstr ""
8727
 
8728
- #: languages/vue.php:2705
8729
  msgid "Installing. Please wait.."
8730
  msgstr ""
8731
 
8732
- #: languages/vue.php:2708
8733
  msgid "Install All-in-One-SEO"
8734
  msgstr ""
8735
 
8736
- #: languages/vue.php:2711
8737
  msgid "Welcome to MonsterInsights!"
8738
  msgstr ""
8739
 
8740
- #: languages/vue.php:2714
8741
  msgid "Let's get you set up."
8742
  msgstr ""
8743
 
8744
- #: languages/vue.php:2717
8745
  msgid "Which category best describes your website?"
8746
  msgstr ""
8747
 
8748
- #: languages/vue.php:2720
8749
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
8750
  msgstr ""
8751
 
8752
- #: languages/vue.php:2723
8753
  msgid "Business Website"
8754
  msgstr ""
8755
 
8756
  #. Translators: Make text bold.
8757
- #: languages/vue.php:2727
8758
  msgid "Publisher %1$s(Blog)%2$s"
8759
  msgstr ""
8760
 
8761
- #: languages/vue.php:2730
8762
  msgid "Ecommerce"
8763
  msgstr ""
8764
 
8765
- #: languages/vue.php:2733
8766
  msgid "Caching"
8767
  msgstr ""
8768
 
8769
- #: languages/vue.php:2736
8770
  msgid "Enable Data Caching"
8771
  msgstr ""
8772
 
8773
- #: languages/vue.php:2739
8774
  msgid "Refresh Cache Every"
8775
  msgstr ""
8776
 
8777
- #: languages/vue.php:2742
8778
  msgid "Choose how often to refresh the cache."
8779
  msgstr ""
8780
 
8781
- #: languages/vue.php:2745
8782
  msgid "Enable Ajaxify"
8783
  msgstr ""
8784
 
8785
- #: languages/vue.php:2748
8786
  msgid "Ajaxify Widget"
8787
  msgstr ""
8788
 
8789
- #: languages/vue.php:2751
8790
  msgid "Use to bypass page caching."
8791
  msgstr ""
8792
 
8793
- #: languages/vue.php:2754
8794
  msgid "Empty Cache"
8795
  msgstr ""
8796
 
8797
- #: languages/vue.php:2757
8798
  msgid "Click to manually wipe the cache right now."
8799
  msgstr ""
8800
 
8801
- #: languages/vue.php:2760
8802
  msgid "Popular posts cache emptied"
8803
  msgstr ""
8804
 
8805
- #: languages/vue.php:2763
8806
  msgid "Error emptying the popular posts cache. Please try again."
8807
  msgstr ""
8808
 
8809
- #: languages/vue.php:2766
8810
  msgid "Choose Theme"
8811
  msgstr ""
8812
 
8813
- #: languages/vue.php:2769
8814
  msgid "Widget Styling"
8815
  msgstr ""
8816
 
8817
- #: languages/vue.php:2772
8818
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
8819
  msgstr ""
8820
 
8821
- #: languages/vue.php:2775
8822
  msgid "Sort By"
8823
  msgstr ""
8824
 
8825
- #: languages/vue.php:2778
8826
  msgid "Choose how you'd like the widget to determine your popular posts."
8827
  msgstr ""
8828
 
8829
- #: languages/vue.php:2781
8830
  msgid "Display Title"
8831
  msgstr ""
8832
 
8833
- #: languages/vue.php:2787
8834
  msgid "Title your widget and set its display preferences."
8835
  msgstr ""
8836
 
8837
- #: languages/vue.php:2790
8838
  msgid "Include in Post Types"
8839
  msgstr ""
8840
 
8841
- #: languages/vue.php:2793
8842
  msgid "Exclude from specific posts"
8843
  msgstr ""
8844
 
8845
  #. Translators: Placeholders make the text bold.
8846
- #: languages/vue.php:2797
8847
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
8848
  msgstr ""
8849
 
8850
  #. Translators: Placeholders make the text bold.
8851
- #: languages/vue.php:2801
8852
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
8853
  msgstr ""
8854
 
8855
- #: languages/vue.php:2804
8856
  msgid "Loading Themes"
8857
  msgstr ""
8858
 
8859
  #. Translators: placeholders make text small.
8860
- #: languages/vue.php:2808
8861
  msgid "Default Styles %1$s- As seen above.%2$s"
8862
  msgstr ""
8863
 
8864
  #. Translators: placeholders make text small.
8865
- #: languages/vue.php:2812
8866
  msgid "No Styles %1$s- Use your own CSS.%2$s"
8867
  msgstr ""
8868
 
8869
  #. Translators: placeholders make text small.
8870
- #: languages/vue.php:2816
8871
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
8872
  msgstr ""
8873
 
8874
  #. Translators: placeholders make text small.
8875
- #: languages/vue.php:2820
8876
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
8877
  msgstr ""
8878
 
8879
  #. Translators: placeholders make text small.
8880
- #: languages/vue.php:2824
8881
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
8882
  msgstr ""
8883
 
8884
- #: languages/vue.php:2827
8885
  msgid "Placement"
8886
  msgstr ""
8887
 
8888
- #: languages/vue.php:2830
8889
  msgid "Choose how you'd like to place the widget."
8890
  msgstr ""
8891
 
8892
- #: languages/vue.php:2833
8893
  msgid "Insert After"
8894
  msgstr ""
8895
 
8896
- #: languages/vue.php:2836
8897
  msgid "Choose where in the post body the widget will be placed."
8898
  msgstr ""
8899
 
8900
- #: languages/vue.php:2840
8901
  msgid "Customize Design"
8902
  msgstr ""
8903
 
8904
- #: languages/vue.php:2843
8905
  msgid "words"
8906
  msgstr ""
8907
 
8908
- #: languages/vue.php:2846
8909
  msgid "Please select at least one post to display."
8910
  msgstr ""
8911
 
8912
  #. Translators: placeholders make text small.
8913
- #: languages/vue.php:2850
8914
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
8915
  msgstr ""
8916
 
8917
  #. Translators: placeholders make text small.
8918
- #: languages/vue.php:2854
8919
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
8920
  msgstr ""
8921
 
8922
- #: languages/vue.php:2857
8923
  msgid "Facebook Instant Articles"
8924
  msgstr ""
8925
 
8926
- #: languages/vue.php:2860
8927
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8928
  msgstr ""
8929
 
8930
- #: languages/vue.php:2863
8931
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8932
  msgstr ""
8933
 
8934
- #: languages/vue.php:2866
8935
  msgid "Ads Tracking"
8936
  msgstr ""
8937
 
8938
- #: languages/vue.php:2869
8939
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8940
  msgstr ""
8941
 
8942
- #: languages/vue.php:2872
8943
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8944
  msgstr ""
8945
 
8946
- #: languages/vue.php:2875
8947
  msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
8948
  msgstr ""
8949
 
8950
- #: languages/vue.php:2878
8951
  msgid "Jack Brown"
8952
  msgstr ""
8953
 
8954
- #: languages/vue.php:2881
8955
  msgid "PJB Internet Marketing"
8956
  msgstr ""
8957
 
8958
- #: languages/vue.php:2884
8959
  msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
8960
  msgstr ""
8961
 
8962
- #: languages/vue.php:2887
8963
  msgid "Joel Steinmann"
8964
  msgstr ""
8965
 
8966
- #: languages/vue.php:2890
8967
  msgid "CEO, Solergo"
8968
  msgstr ""
8969
 
8970
- #: languages/vue.php:2893
8971
  msgid "Recommended Addons"
8972
  msgstr ""
8973
 
8974
- #: languages/vue.php:2896
8975
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
8976
  msgstr ""
8977
 
8978
- #: languages/vue.php:2899
8979
  msgid "Other Addons"
8980
  msgstr ""
8981
 
8982
- #: languages/vue.php:2902
8983
  msgid "View all MonsterInsights addons"
8984
  msgstr ""
8985
 
8986
- #: languages/vue.php:2905
8987
  msgid "Scroll Tracking"
8988
  msgstr ""
8989
 
8990
- #: languages/vue.php:2908
8991
  msgid "Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions."
8992
  msgstr ""
8993
 
8994
- #: languages/vue.php:2911
8995
  msgid ""
8996
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
8997
  " and other privacy regulations."
8998
  msgstr ""
8999
 
9000
- #: languages/vue.php:2915
9001
  msgid "EU Compliance"
9002
  msgstr ""
9003
 
9004
- #: languages/vue.php:2918
9005
  msgid "Compatibility mode"
9006
  msgstr ""
9007
 
9008
- #: languages/vue.php:2921
9009
  msgid "Enable _gtagTracker Compatibility"
9010
  msgstr ""
9011
 
9012
  #. Translators: Placeholder gets replaced with default GA js function.
9013
- #: languages/vue.php:2925
9014
  msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
9015
  msgstr ""
9016
 
9017
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9018
- #: languages/vue.php:2929
9019
  msgid "%1$sPage %3$s%2$s of %4$s"
9020
  msgstr ""
9021
 
9022
- #: languages/vue.php:2933
9023
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9024
  msgid "Theme Preview"
9025
  msgstr ""
9026
 
9027
- #: languages/vue.php:2936
9028
  msgid "Wide"
9029
  msgstr ""
9030
 
9031
- #: languages/vue.php:2939
9032
  msgid "Narrow"
9033
  msgstr ""
9034
 
9035
- #: languages/vue.php:2943
9036
  msgid "Title"
9037
  msgstr ""
9038
 
@@ -9040,122 +9040,122 @@ msgstr ""
9040
  msgid "Color"
9041
  msgstr ""
9042
 
9043
- #: languages/vue.php:2951
9044
  msgid "Size"
9045
  msgstr ""
9046
 
9047
- #: languages/vue.php:2955
9048
  msgid "Border"
9049
  msgstr ""
9050
 
9051
- #: languages/vue.php:2958
9052
  msgid "Author/Date"
9053
  msgstr ""
9054
 
9055
- #: languages/vue.php:2962
9056
  msgid "Label"
9057
  msgstr ""
9058
 
9059
- #: languages/vue.php:2966
9060
  msgid "Background"
9061
  msgstr ""
9062
 
9063
- #: languages/vue.php:2978
9064
  msgid "Choose which content you would like displayed in the widget."
9065
  msgstr ""
9066
 
9067
- #: languages/vue.php:2990
9068
  msgid "Comments"
9069
  msgstr ""
9070
 
9071
- #: languages/vue.php:2996
9072
  msgid "Choose how many posts you’d like displayed in the widget."
9073
  msgstr ""
9074
 
9075
- #: languages/vue.php:2999
9076
  msgid "Popular Posts data can be fetched correctly"
9077
  msgstr ""
9078
 
9079
- #: languages/vue.php:3002
9080
  msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
9081
  msgstr ""
9082
 
9083
- #: languages/vue.php:3005
9084
  msgid "Close"
9085
  msgstr ""
9086
 
9087
- #: languages/vue.php:3008
9088
  msgid "Add Top 5 Posts from Google Analytics"
9089
  msgstr ""
9090
 
9091
- #: languages/vue.php:3011
9092
  msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both MonsterInsights and Google Analytics settings."
9093
  msgstr ""
9094
 
9095
- #: languages/vue.php:3014
9096
  msgid "Test Automated Posts"
9097
  msgstr ""
9098
 
9099
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9100
- #: languages/vue.php:3018
9101
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9102
  msgstr ""
9103
 
9104
- #: languages/vue.php:3021
9105
  msgid "Automated + Curated"
9106
  msgstr ""
9107
 
9108
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9109
- #: languages/vue.php:3025
9110
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
9111
  msgstr ""
9112
 
9113
  #. Translators: Placeholder gets replaced with current license version.
9114
- #: languages/vue.php:3029
9115
  msgid "Pro version is required."
9116
  msgstr ""
9117
 
9118
- #: languages/vue.php:3032
9119
  msgid "Verifying Popular Posts data"
9120
  msgstr ""
9121
 
9122
- #: languages/vue.php:3035
9123
  msgid "Select posts/search"
9124
  msgstr ""
9125
 
9126
- #: languages/vue.php:3038
9127
  msgid "Oops! No posts found."
9128
  msgstr ""
9129
 
9130
- #: languages/vue.php:3041
9131
  msgid "Search by post title"
9132
  msgstr ""
9133
 
9134
- #: languages/vue.php:3044
9135
  msgid "Can't load posts."
9136
  msgstr ""
9137
 
9138
- #: languages/vue.php:3047
9139
  msgid "SharedCount API Key"
9140
  msgstr ""
9141
 
9142
- #: languages/vue.php:3050
9143
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9144
  msgstr ""
9145
 
9146
- #: languages/vue.php:3053
9147
  msgid "Start Indexing"
9148
  msgstr ""
9149
 
9150
- #: languages/vue.php:3056
9151
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9152
  msgstr ""
9153
 
9154
- #: languages/vue.php:3059
9155
  msgid "Indexing completed, counts will update automatically every day."
9156
  msgstr ""
9157
 
9158
- #: languages/vue.php:3062
9159
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9160
  msgstr ""
9161
 
@@ -9163,1266 +9163,1319 @@ msgstr ""
9163
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9164
  msgstr ""
9165
 
9166
- #: languages/vue.php:3068
9167
  msgid "Icon"
9168
  msgstr ""
9169
 
9170
  #. Translators: Minimum and maximum number that can be used.
9171
- #: languages/vue.php:3072
9172
  msgid "Please enter a value between %1$s and %2$s"
9173
  msgstr ""
9174
 
9175
  #. Translators: The minimum set value.
9176
- #: languages/vue.php:3076
9177
  msgid "Please enter a value higher than %s"
9178
  msgstr ""
9179
 
9180
  #. Translators: The maximum set value.
9181
- #: languages/vue.php:3080
9182
  msgid "Please enter a value lower than %s"
9183
  msgstr ""
9184
 
9185
- #: languages/vue.php:3083
9186
  msgid "Please enter a number"
9187
  msgstr ""
9188
 
9189
- #: languages/vue.php:3086
9190
  msgid "Value has to be a round number"
9191
  msgstr ""
9192
 
9193
- #: languages/vue.php:3089
9194
  msgid "Export PDF Report"
9195
  msgstr ""
9196
 
9197
- #: languages/vue.php:3092
9198
  msgid "You can export PDF reports only in the PRO version."
9199
  msgstr ""
9200
 
9201
- #: languages/vue.php:3095
9202
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
9203
  msgstr ""
9204
 
9205
- #: languages/vue.php:3098
9206
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!"
9207
  msgstr ""
9208
 
9209
- #: languages/vue.php:3101
9210
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
9211
  msgstr ""
9212
 
9213
  #. Translators: Makes text bold.
9214
- #: languages/vue.php:3105
9215
  msgid "Use coupon code %1$sLITEUPGRADE%2$s"
9216
  msgstr ""
9217
 
9218
  #. Translators: Make text green.
9219
- #: languages/vue.php:3109
9220
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9221
  msgstr ""
9222
 
9223
  #. Translators: Placeholder adds a line break.
9224
- #: languages/vue.php:3113
9225
  msgid "You can customize your %sdate range only in the PRO version."
9226
  msgstr ""
9227
 
9228
- #: languages/vue.php:3116
9229
  msgid "Help Us Improve"
9230
  msgstr ""
9231
 
9232
- #: languages/vue.php:3119
9233
  msgid "Help us better understand our users and their website needs."
9234
  msgstr ""
9235
 
9236
  #. Translators: Adds a link to the documentation.
9237
- #: languages/vue.php:3123
9238
  msgid "If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s"
9239
  msgstr ""
9240
 
9241
- #: languages/vue.php:3126
9242
  msgid "Website profile"
9243
  msgstr ""
9244
 
9245
- #: languages/vue.php:3129
9246
  msgid "Active profile"
9247
  msgstr ""
9248
 
9249
- #: languages/vue.php:3132
9250
  msgid "Skip and Keep Connection"
9251
  msgstr ""
9252
 
9253
- #: languages/vue.php:3135
9254
  msgid "This feature requires MonsterInsights Pro"
9255
  msgstr ""
9256
 
9257
- #: languages/vue.php:3138
9258
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
9259
  msgstr ""
9260
 
9261
- #: languages/vue.php:3141
9262
  msgid "Upgrade to Pro and Unlock Popular Products"
9263
  msgstr ""
9264
 
9265
- #: languages/vue.php:3144
9266
  msgid "View all Pro features"
9267
  msgstr ""
9268
 
9269
- #: languages/vue.php:3147
9270
  msgid "Days"
9271
  msgstr ""
9272
 
9273
  #. Translators: placeholders make text small.
9274
- #: languages/vue.php:3151
9275
  msgid "7 days"
9276
  msgstr ""
9277
 
9278
- #: languages/vue.php:3154
9279
  msgid "30 days"
9280
  msgstr ""
9281
 
9282
- #: languages/vue.php:3157
9283
  msgid "Custom"
9284
  msgstr ""
9285
 
9286
- #: languages/vue.php:3160
9287
  msgid "Only Show Posts from These Categories"
9288
  msgstr ""
9289
 
9290
- #: languages/vue.php:3163
9291
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
9292
  msgstr ""
9293
 
9294
- #: languages/vue.php:3166
9295
  msgid "Multiple Entries"
9296
  msgstr ""
9297
 
9298
- #: languages/vue.php:3169
9299
  msgid "Total Number of Widgets to Show"
9300
  msgstr ""
9301
 
9302
- #: languages/vue.php:3172
9303
  msgid "Choose how many widgets will be placed in a single Post."
9304
  msgstr ""
9305
 
9306
- #: languages/vue.php:3175
9307
  msgid "Minimum Distance Between Widgets"
9308
  msgstr ""
9309
 
9310
- #: languages/vue.php:3178
9311
  msgid "Choose the distance between widgets."
9312
  msgstr ""
9313
 
9314
- #: languages/vue.php:3181
9315
  msgid "Minimum Word Count to Display Multiple Widgets"
9316
  msgstr ""
9317
 
9318
- #: languages/vue.php:3184
9319
  msgid "Choose the minimum word count for a Post to have multiple entries."
9320
  msgstr ""
9321
 
9322
- #: languages/vue.php:3187
9323
  msgid "Pro version is required"
9324
  msgstr ""
9325
 
9326
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9327
- #: languages/vue.php:3191
9328
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
9329
  msgstr ""
9330
 
9331
- #: languages/vue.php:3194
9332
  msgid "Unlock with %s"
9333
  msgstr ""
9334
 
9335
- #: languages/vue.php:3197
9336
  msgid "Automatic Placement"
9337
  msgstr ""
9338
 
9339
- #: languages/vue.php:3200
9340
  msgid "Display using Gutenberg Blocks"
9341
  msgstr ""
9342
 
9343
- #: languages/vue.php:3203
9344
  msgid "Embed Options"
9345
  msgstr ""
9346
 
9347
- #: languages/vue.php:3206
9348
  msgid "All Embed Options can be used in conjunction with one another."
9349
  msgstr ""
9350
 
9351
- #: languages/vue.php:3209
9352
  msgid "Using the Gutenberg Block"
9353
  msgstr ""
9354
 
9355
- #: languages/vue.php:3212
9356
  msgid "Using Automatic Embed"
9357
  msgstr ""
9358
 
9359
- #: languages/vue.php:3215
9360
  msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
9361
  msgstr ""
9362
 
9363
- #: languages/vue.php:3218
9364
  msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
9365
  msgstr ""
9366
 
9367
- #: languages/vue.php:3221
9368
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9369
  msgstr ""
9370
 
9371
- #: languages/vue.php:3224
9372
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9373
  msgstr ""
9374
 
9375
- #: languages/vue.php:3227
9376
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9377
  msgstr ""
9378
 
9379
- #: languages/vue.php:3230
9380
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9381
  msgstr ""
9382
 
9383
- #: languages/vue.php:3233
9384
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9385
  msgstr ""
9386
 
9387
- #: languages/vue.php:3236
9388
  msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
9389
  msgstr ""
9390
 
9391
- #: languages/vue.php:3239
9392
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - MonsterInsights widget and drag it into the desired Sidebar on the right."
9393
  msgstr ""
9394
 
9395
- #: languages/vue.php:3242
9396
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9397
  msgstr ""
9398
 
9399
- #: languages/vue.php:3245
9400
  msgid "Display using a Shortcode"
9401
  msgstr ""
9402
 
9403
- #: languages/vue.php:3248
9404
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9405
  msgstr ""
9406
 
9407
- #: languages/vue.php:3251
9408
  msgid "Copy Shortcode"
9409
  msgstr ""
9410
 
9411
- #: languages/vue.php:3254
9412
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9413
  msgstr ""
9414
 
9415
- #: languages/vue.php:3257
9416
  msgid "Enable Automatic Placement"
9417
  msgstr ""
9418
 
9419
- #: languages/vue.php:3260
9420
  msgid "Display in a Sidebar"
9421
  msgstr ""
9422
 
9423
- #: languages/vue.php:3263
9424
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9425
  msgstr ""
9426
 
9427
- #: languages/vue.php:3266
9428
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9429
  msgstr ""
9430
 
9431
- #: languages/vue.php:3269
9432
  msgid "Display Method"
9433
  msgstr ""
9434
 
9435
- #: languages/vue.php:3272
9436
  msgid "There are two ways to manual include the widget in your posts."
9437
  msgstr ""
9438
 
9439
- #: languages/vue.php:3275
9440
  msgid "Using the Shortcode"
9441
  msgstr ""
9442
 
9443
- #: languages/vue.php:3278
9444
  msgid "Learn how to insert the widget using Gutenberg blocks."
9445
  msgstr ""
9446
 
9447
- #: languages/vue.php:3281
9448
  msgid "Learn how to insert the widget using out Shortcode."
9449
  msgstr ""
9450
 
9451
- #: languages/vue.php:3284
9452
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9453
  msgstr ""
9454
 
9455
- #: languages/vue.php:3287
9456
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
9457
  msgstr ""
9458
 
9459
- #: languages/vue.php:3290
9460
  msgid "Shortcode"
9461
  msgstr ""
9462
 
9463
- #: languages/vue.php:3293
9464
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9465
  msgstr ""
9466
 
9467
- #: languages/vue.php:3296
9468
  msgid "Facebook Instant Articleasdasdasds"
9469
  msgstr ""
9470
 
9471
- #: languages/vue.php:3299
9472
  msgid "Media"
9473
  msgstr ""
9474
 
9475
- #: languages/vue.php:3302
9476
  msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
9477
  msgstr ""
9478
 
9479
- #: languages/vue.php:3305
9480
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
9481
  msgstr ""
9482
 
9483
- #: languages/vue.php:3308
9484
  msgid "Top Affilliate Links"
9485
  msgstr ""
9486
 
9487
- #: languages/vue.php:3311
9488
  msgid "Scroll Depth"
9489
  msgstr ""
9490
 
9491
- #: languages/vue.php:3314
9492
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
9493
  msgstr ""
9494
 
9495
- #: languages/vue.php:3317
9496
  msgid "10+ eCommerce Integrations"
9497
  msgstr ""
9498
 
9499
- #: languages/vue.php:3320
9500
  msgid "Average Order Value"
9501
  msgstr ""
9502
 
9503
- #: languages/vue.php:3323
9504
  msgid "Total Revenue"
9505
  msgstr ""
9506
 
9507
- #: languages/vue.php:3326
9508
  msgid "Number of Transactions"
9509
  msgstr ""
9510
 
9511
- #: languages/vue.php:3329
9512
  msgid "Increase Engagement and Unlock New Insights About Your Site."
9513
  msgstr ""
9514
 
9515
- #: languages/vue.php:3332
9516
  msgid "User ID Tracking"
9517
  msgstr ""
9518
 
9519
- #: languages/vue.php:3335
9520
  msgid "Post Types"
9521
  msgstr ""
9522
 
9523
- #: languages/vue.php:3338
9524
  msgid "Tag Tracking"
9525
  msgstr ""
9526
 
9527
- #: languages/vue.php:3341
9528
  msgid "Categories"
9529
  msgstr ""
9530
 
9531
- #: languages/vue.php:3344
9532
  msgid "SEO Scores"
9533
  msgstr ""
9534
 
9535
- #: languages/vue.php:3347
9536
  msgid "Publish Times"
9537
  msgstr ""
9538
 
9539
- #: languages/vue.php:3350
9540
  msgid "Focus Keywords"
9541
  msgstr ""
9542
 
9543
- #: languages/vue.php:3353
9544
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
9545
  msgstr ""
9546
 
9547
- #: languages/vue.php:3356
9548
  msgid "Conversion Counts"
9549
  msgstr ""
9550
 
9551
- #: languages/vue.php:3359
9552
  msgid "Impression Counts"
9553
  msgstr ""
9554
 
9555
- #: languages/vue.php:3362
9556
  msgid "Conversion Rates"
9557
  msgstr ""
9558
 
9559
- #: languages/vue.php:3365
9560
  msgid "See Exactly How Visitors Find Your Website From Google."
9561
  msgstr ""
9562
 
9563
- #: languages/vue.php:3368
9564
  msgid "Top Google Search Terms"
9565
  msgstr ""
9566
 
9567
- #: languages/vue.php:3371
9568
  msgid "Number of Clicks"
9569
  msgstr ""
9570
 
9571
- #: languages/vue.php:3374
9572
  msgid "Click-through Ratio"
9573
  msgstr ""
9574
 
9575
- #: languages/vue.php:3377
9576
  msgid "Average Results Position"
9577
  msgstr ""
9578
 
9579
- #: languages/vue.php:3380
9580
  msgid "Realtime Report"
9581
  msgstr ""
9582
 
9583
- #: languages/vue.php:3383
9584
  msgid "See Who And What is Happening on Your Website in Realtime."
9585
  msgstr ""
9586
 
9587
- #: languages/vue.php:3386
9588
  msgid "Top Page Views"
9589
  msgstr ""
9590
 
9591
- #: languages/vue.php:3389
9592
  msgid "Current Active Users"
9593
  msgstr ""
9594
 
9595
- #: languages/vue.php:3392
9596
  msgid "Top Referral Sources"
9597
  msgstr ""
9598
 
9599
- #: languages/vue.php:3395
9600
  msgid "Top Countries"
9601
  msgstr ""
9602
 
9603
- #: languages/vue.php:3398
9604
  msgid "Top Cities"
9605
  msgstr ""
9606
 
9607
- #: languages/vue.php:3401
9608
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
9609
  msgstr ""
9610
 
9611
- #: languages/vue.php:3404
9612
  msgid "Overall Site Speed Score"
9613
  msgstr ""
9614
 
9615
- #: languages/vue.php:3407
9616
  msgid "Server Response Times"
9617
  msgstr ""
9618
 
9619
- #: languages/vue.php:3410
9620
  msgid "Mobile and Desktop Scores"
9621
  msgstr ""
9622
 
9623
- #: languages/vue.php:3413
9624
  msgid "First Contentful Paint"
9625
  msgstr ""
9626
 
9627
- #: languages/vue.php:3416
9628
  msgid "Automatic Recommendations"
9629
  msgstr ""
9630
 
9631
- #: languages/vue.php:3419
9632
  msgid "Total Blocking Time"
9633
  msgstr ""
9634
 
9635
- #: languages/vue.php:3422
9636
  msgid "On-Demand Audits"
9637
  msgstr ""
9638
 
9639
- #: languages/vue.php:3425
9640
  msgid "Time to Interactive"
9641
  msgstr ""
9642
 
9643
- #: languages/vue.php:3428
9644
  msgid "2021 Year in Review"
9645
  msgstr ""
9646
 
9647
- #: languages/vue.php:3431
9648
  msgid "Realtime"
9649
  msgstr ""
9650
 
9651
  #. Translators: Placeholders are used for making text bold and adding a link.
9652
- #: languages/vue.php:3435
9653
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9654
  msgstr ""
9655
 
9656
- #: languages/vue.php:3438
9657
  msgid "Featured"
9658
  msgstr ""
9659
 
9660
- #: languages/vue.php:3441
9661
  msgid "Traffic"
9662
  msgstr ""
9663
 
9664
- #: languages/vue.php:3444
9665
  msgid "Revenue"
9666
  msgstr ""
9667
 
9668
- #: languages/vue.php:3447
9669
  msgid "Guides & Resources"
9670
  msgstr ""
9671
 
9672
- #: languages/vue.php:3450
9673
  msgid "Upgrade and Unlock"
9674
  msgstr ""
9675
 
9676
- #: languages/vue.php:3453
9677
  msgid "What’s in the %1$s?"
9678
  msgstr ""
9679
 
9680
- #: languages/vue.php:3456
9681
  msgid "%1$sPlus%2$s, upgrading to Pro will unlock %1$sall%2$s advanced reports, tracking, and integrations. %3$sLearn more about Pro%4$s"
9682
  msgstr ""
9683
 
9684
- #: languages/vue.php:3459
9685
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9686
  msgstr ""
9687
 
9688
- #: languages/vue.php:3462
9689
  msgid "Your 2021 Analytics Report"
9690
  msgstr ""
9691
 
9692
- #: languages/vue.php:3468
9693
  msgid "January 1, 2021 - December 31, 2021"
9694
  msgstr ""
9695
 
9696
- #: languages/vue.php:3471
9697
  msgid "A Tip for 2022"
9698
  msgstr ""
9699
 
9700
- #: languages/vue.php:3474
9701
  msgid "A Tip For 2022"
9702
  msgstr ""
9703
 
9704
- #: languages/vue.php:3477
9705
  msgid "Here's to an amazing 2022!"
9706
  msgstr ""
9707
 
9708
- #: languages/vue.php:3480
9709
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9710
  msgstr ""
9711
 
9712
- #: languages/vue.php:3483
9713
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9714
  msgstr ""
9715
 
9716
- #: languages/vue.php:3486
9717
  msgid "Copyright MonsterInsights, 2022"
9718
  msgstr ""
9719
 
9720
  #. Translators: Number of minutes spent on site.
9721
- #: languages/vue.php:3490
9722
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9723
  msgstr ""
9724
 
9725
- #: languages/vue.php:3493
9726
  msgid "RafflePress"
9727
  msgstr ""
9728
 
9729
- #: languages/vue.php:3496
9730
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9731
  msgstr ""
9732
 
9733
- #: languages/vue.php:3499
9734
  msgid "Constant Contact"
9735
  msgstr ""
9736
 
9737
- #: languages/vue.php:3502
9738
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9739
  msgstr ""
9740
 
9741
- #: languages/vue.php:3505
9742
  msgid "SEMRUSH"
9743
  msgstr ""
9744
 
9745
- #: languages/vue.php:3508
9746
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9747
  msgstr ""
9748
 
9749
- #: languages/vue.php:3511
9750
  msgid "Engagement Tools"
9751
  msgstr ""
9752
 
9753
- #: languages/vue.php:3514
9754
  msgid "WPForms"
9755
  msgstr ""
9756
 
9757
- #: languages/vue.php:3517
9758
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9759
  msgstr ""
9760
 
9761
- #: languages/vue.php:3520
9762
  msgid "OptinMonster"
9763
  msgstr ""
9764
 
9765
- #: languages/vue.php:3523
9766
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9767
  msgstr ""
9768
 
9769
- #: languages/vue.php:3526
9770
  msgid "Smash Balloon - Facebook"
9771
  msgstr ""
9772
 
9773
- #: languages/vue.php:3529
9774
  msgid "Smash Balloon - Instagram"
9775
  msgstr ""
9776
 
9777
- #: languages/vue.php:3532
9778
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9779
  msgstr ""
9780
 
9781
- #: languages/vue.php:3535
9782
  msgid "Popular Posts by MonsterInsights"
9783
  msgstr ""
9784
 
9785
- #: languages/vue.php:3538
9786
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9787
  msgstr ""
9788
 
9789
- #: languages/vue.php:3541
9790
  msgid "Popular Products by MonsterInsights"
9791
  msgstr ""
9792
 
9793
- #: languages/vue.php:3544
9794
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9795
  msgstr ""
9796
 
9797
- #: languages/vue.php:3547
9798
  msgid "Revenue Tools"
9799
  msgstr ""
9800
 
9801
- #: languages/vue.php:3550
9802
  msgid "SeedProd"
9803
  msgstr ""
9804
 
9805
- #: languages/vue.php:3553
9806
  msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
9807
  msgstr ""
9808
 
9809
- #: languages/vue.php:3556
9810
  msgid "Featured Tools"
9811
  msgstr ""
9812
 
9813
- #: languages/vue.php:3559
9814
  msgid "Easy Affiliate"
9815
  msgstr ""
9816
 
9817
- #: languages/vue.php:3562
9818
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
9819
  msgstr ""
9820
 
9821
- #: languages/vue.php:3565
9822
  msgid "SearchWP"
9823
  msgstr ""
9824
 
9825
- #: languages/vue.php:3568
9826
  msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
9827
  msgstr ""
9828
 
9829
- #: languages/vue.php:3571
9830
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9831
  msgstr ""
9832
 
9833
- #: languages/vue.php:3574
9834
  msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
9835
  msgstr ""
9836
 
9837
- #: languages/vue.php:3577
9838
  msgid "Thirsty Affiliates"
9839
  msgstr ""
9840
 
9841
- #: languages/vue.php:3580
9842
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9843
  msgstr ""
9844
 
9845
- #: languages/vue.php:3583
9846
  msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
9847
  msgstr ""
9848
 
9849
- #: languages/vue.php:3586
9850
  msgid "Advanced Coupons"
9851
  msgstr ""
9852
 
9853
- #: languages/vue.php:3589
9854
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9855
  msgstr ""
9856
 
9857
- #: languages/vue.php:3592
9858
  msgid "PrettyLinks"
9859
  msgstr ""
9860
 
9861
- #: languages/vue.php:3595
9862
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9863
  msgstr ""
9864
 
9865
- #: languages/vue.php:3598
9866
  msgid "Install Now"
9867
  msgstr ""
9868
 
9869
- #: languages/vue.php:3601
9870
  msgid "Online Marketing Guides & Resources"
9871
  msgstr ""
9872
 
9873
- #: languages/vue.php:3604
9874
  msgid "MonsterInsights Pro"
9875
  msgstr ""
9876
 
9877
- #: languages/vue.php:3607
9878
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9879
  msgstr ""
9880
 
9881
- #: languages/vue.php:3610
9882
  msgid "Traffic Tools"
9883
  msgstr ""
9884
 
9885
- #: languages/vue.php:3613
9886
  msgid "All in One SEO (AIOSEO)"
9887
  msgstr ""
9888
 
9889
- #: languages/vue.php:3616
9890
  msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
9891
  msgstr ""
9892
 
9893
- #: languages/vue.php:3619
9894
  msgid "PushEngage"
9895
  msgstr ""
9896
 
9897
- #: languages/vue.php:3622
9898
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9899
  msgstr ""
9900
 
9901
- #: languages/vue.php:3625
9902
  msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9903
  msgstr ""
9904
 
9905
- #: languages/vue.php:3628
9906
  msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
9907
  msgstr ""
9908
 
9909
- #: languages/vue.php:3631
9910
  msgid "Media Tracking"
9911
  msgstr ""
9912
 
9913
- #: languages/vue.php:3634
9914
  msgid "Get Started"
9915
  msgstr ""
9916
 
9917
- #: languages/vue.php:3637
9918
  msgid "Awesome! Tracking and Analytics are All Setup!"
9919
  msgstr ""
9920
 
9921
- #: languages/vue.php:3640
9922
  msgid "MonsterInsights is connected to Google Analytics and data is being collected."
9923
  msgstr ""
9924
 
9925
- #: languages/vue.php:3643
9926
  msgid "Complete Setup without Upgrading"
9927
  msgstr ""
9928
 
9929
- #: languages/vue.php:3646
9930
  msgid "Success"
9931
  msgstr ""
9932
 
9933
- #: languages/vue.php:3649
9934
  msgid "Connected to Google Analytics"
9935
  msgstr ""
9936
 
9937
- #: languages/vue.php:3652
9938
  msgid "Tracking Code Installed"
9939
  msgstr ""
9940
 
9941
- #: languages/vue.php:3655
9942
  msgid "Data Being Collected"
9943
  msgstr ""
9944
 
9945
  #. Translators: Add link to retrieve license from account area.
9946
- #: languages/vue.php:3659
9947
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!"
9948
  msgstr ""
9949
 
9950
- #: languages/vue.php:3662
9951
  msgid "Verify License Key"
9952
  msgstr ""
9953
 
9954
- #: languages/vue.php:3665
9955
  msgid "Upgrade to Unlock These Features"
9956
  msgstr ""
9957
 
9958
- #: languages/vue.php:3668
9959
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9960
  msgstr ""
9961
 
9962
- #: languages/vue.php:3671
9963
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9964
  msgstr ""
9965
 
9966
- #: languages/vue.php:3674
9967
  msgid "Verifying License..."
9968
  msgstr ""
9969
 
9970
- #: languages/vue.php:3677
9971
  msgid "Privacy Compliance Addon"
9972
  msgstr ""
9973
 
9974
- #: languages/vue.php:3680
9975
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9976
  msgstr ""
9977
 
9978
- #: languages/vue.php:3683
9979
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9980
  msgstr ""
9981
 
9982
- #: languages/vue.php:3686
9983
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9984
  msgstr ""
9985
 
9986
- #: languages/vue.php:3689
9987
  msgid "20+ Advanced Tracking"
9988
  msgstr ""
9989
 
9990
- #: languages/vue.php:3692
9991
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9992
  msgstr ""
9993
 
9994
- #: languages/vue.php:3695
9995
  msgid "Advanced Growth Tools"
9996
  msgstr ""
9997
 
9998
- #: languages/vue.php:3698
9999
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
10000
  msgstr ""
10001
 
10002
- #: languages/vue.php:3701
10003
  msgid "Track how your users interact with videos on your website."
10004
  msgstr ""
10005
 
10006
- #: languages/vue.php:3704
10007
  msgid "Error Processing"
10008
  msgstr ""
10009
 
10010
- #: languages/vue.php:3707
10011
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
10012
  msgstr ""
10013
 
10014
- #: languages/vue.php:3710
10015
  msgid "Which website features would you like to enable?"
10016
  msgstr ""
10017
 
10018
- #: languages/vue.php:3713
10019
  msgid "We’ve already selected our recommended features based on your site. "
10020
  msgstr ""
10021
 
10022
- #: languages/vue.php:3716
10023
  msgid "Continue"
10024
  msgstr ""
10025
 
10026
- #: languages/vue.php:3719
10027
  msgid "Standard Analytics & Reports"
10028
  msgstr ""
10029
 
10030
- #: languages/vue.php:3722
10031
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
10032
  msgstr ""
10033
 
10034
- #: languages/vue.php:3725
10035
  msgid "Helps you see what links your users are clicking on your site."
10036
  msgstr ""
10037
 
10038
- #: languages/vue.php:3728
10039
  msgid "All In One SEO Toolkit"
10040
  msgstr ""
10041
 
10042
- #: languages/vue.php:3731
10043
  msgid "The best WordPress SEO plugin that works with MonsterInsights to boost your rankings."
10044
  msgstr ""
10045
 
10046
- #: languages/vue.php:3734
10047
  msgid "Smart Form Builder by WPForms"
10048
  msgstr ""
10049
 
10050
- #: languages/vue.php:3737
10051
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
10052
  msgstr ""
10053
 
10054
- #: languages/vue.php:3740
10055
  msgid "The following plugins will be installed: "
10056
  msgstr ""
10057
 
10058
- #: languages/vue.php:3743
10059
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10060
  msgstr ""
10061
 
10062
- #: languages/vue.php:3746
10063
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10064
  msgstr ""
10065
 
10066
- #: languages/vue.php:3749
10067
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10068
  msgstr ""
10069
 
10070
- #: languages/vue.php:3752
10071
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
10072
  msgstr ""
10073
 
10074
- #: languages/vue.php:3755
10075
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
10076
  msgstr ""
10077
 
10078
- #: languages/vue.php:3758
10079
  msgid "MonsterInsights makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
10080
  msgstr ""
10081
 
10082
- #: languages/vue.php:3761
10083
  msgid "Expired"
10084
  msgstr ""
10085
 
10086
- #: languages/vue.php:3764
10087
  msgid "WP Simple Pay"
10088
  msgstr ""
10089
 
10090
- #: languages/vue.php:3770
10091
  msgid "License Expired"
10092
  msgstr ""
10093
 
10094
- #: languages/vue.php:3773
10095
  msgid "Your MonsterInsights license key has expired."
10096
  msgstr ""
10097
 
10098
- #: languages/vue.php:3776
10099
  msgid "Renew today to ensure Google Analytics continues to track properly."
10100
  msgstr ""
10101
 
10102
- #: languages/vue.php:3779
10103
  msgid "Click here."
10104
  msgstr ""
10105
 
10106
  #. Translators: Adds a link to the license renewal.
10107
- #: languages/vue.php:3783
10108
  msgid "To ensure tracking works properly, reactivate your license"
10109
  msgstr ""
10110
 
10111
- #: languages/vue.php:3786
10112
  msgid "Reactivate License"
10113
  msgstr ""
10114
 
10115
- #: languages/vue.php:3789
10116
  msgid "View All Reports"
10117
  msgstr ""
10118
 
10119
- #: languages/vue.php:3792
10120
  msgid "Oops! There was an error processing request. Please try again later."
10121
  msgstr ""
10122
 
10123
  #. Translators: tag to make text italic starts, tag end.
10124
- #: languages/vue.php:3796
10125
  msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
10126
  msgstr ""
10127
 
10128
- #: languages/vue.php:3799
10129
  msgid "UserFeedback lets you easily collect feedback from your website in real time. You can use this important data to increase your traffic, sales, newsletter signups, engagement, and more."
10130
  msgstr ""
10131
 
10132
- #: languages/vue.php:3802
10133
  msgid "Understand exactly why visitors left your website, what convinced them to make a purchase, why they signed up for a newsletter, and more with real verbatim feedback"
10134
  msgstr ""
10135
 
10136
- #: languages/vue.php:3805
10137
  msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
10138
  msgstr ""
10139
 
10140
- #: languages/vue.php:3808
10141
  msgid "Customize targeting rules to get specific feedback on certain pages or products"
10142
  msgstr ""
10143
 
10144
- #: languages/vue.php:3811
10145
  msgid "Easily analyze your responses and export data"
10146
  msgstr ""
10147
 
10148
- #: languages/vue.php:3814
10149
  msgid "Install & Activate UserFeedback"
10150
  msgstr ""
10151
 
10152
- #: languages/vue.php:3817
10153
  msgid "Install UserFeedback by clicking the button below."
10154
  msgstr ""
10155
 
10156
- #: languages/vue.php:3820
10157
  msgid "Install UserFeedback"
10158
  msgstr ""
10159
 
10160
- #: languages/vue.php:3823
10161
  msgid "Set Up UserFeedback"
10162
  msgstr ""
10163
 
10164
- #: languages/vue.php:3826
10165
  msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
10166
  msgstr ""
10167
 
10168
- #: languages/vue.php:3829
10169
  msgid "Start Setup"
10170
  msgstr ""
10171
 
10172
- #: languages/vue.php:3832
10173
  msgid "Installing UserFeedback"
10174
  msgstr ""
10175
 
10176
- #: languages/vue.php:3835
10177
  msgid "Activating UserFeedback"
10178
  msgstr ""
10179
 
10180
- #: languages/vue.php:3838
10181
  msgid "Installed & Active"
10182
  msgstr ""
10183
 
10184
- #: languages/vue.php:3841
10185
  msgid "Oops! Something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
10186
  msgstr ""
10187
 
10188
- #. Translators: Error status and error text, Support link tag starts with url and support link tag ends.
10189
  #: languages/vue.php:3846
10190
  msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
10191
  msgstr ""
10192
 
10193
  #. Translators: Support link tag starts with url and support link tag ends.
10194
- #: languages/vue.php:3851
10195
  msgid "Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10196
  msgstr ""
10197
 
10198
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10199
- #: languages/vue.php:3855
10200
  msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
10201
  msgstr ""
10202
 
10203
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10204
- #: languages/vue.php:3859
10205
  msgid "Oops! We can't verify deauthentication. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10206
  msgstr ""
10207
 
10208
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10209
- #: languages/vue.php:3863
10210
  msgid "Can't load authentication details. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10211
  msgstr ""
10212
 
10213
  #. Translators: Support page link tag starts and support page link tag ends.
10214
- #: languages/vue.php:3867
10215
  msgid "Oops! There was an error loading your site details. Please refresh the page and try again. If the issue persists, please contact our support team."
10216
  msgstr ""
10217
 
10218
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10219
- #: languages/vue.php:3871
10220
  msgid "Can't save settings. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10221
  msgstr ""
10222
 
10223
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10224
- #: languages/vue.php:3875
10225
  msgid "Oops! We can't authenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10226
  msgstr ""
10227
 
10228
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10229
- #: languages/vue.php:3879
10230
  msgid "Oops! We can't reauthenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team"
10231
  msgstr ""
10232
 
10233
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10234
- #: languages/vue.php:3883
10235
  msgid "Oops! We can't verify credentials. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10236
  msgstr ""
10237
 
10238
  #. Translators: Error status and error text.
10239
- #: languages/vue.php:3887
10240
  msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
10241
  msgstr ""
10242
 
10243
  #. Translators: Error status and error text.
10244
- #: languages/vue.php:3891
10245
  msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
10246
  msgstr ""
10247
 
10248
- #: languages/vue.php:3894
10249
  msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
10250
  msgstr ""
10251
 
10252
  #. Translators: Error status and error text.
10253
- #: languages/vue.php:3898
10254
  msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
10255
  msgstr ""
10256
 
10257
  #. Translators: Error status and error text.
10258
- #: languages/vue.php:3902
10259
  msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
10260
  msgstr ""
10261
 
10262
  #. Translators: Error status and error text.
10263
- #: languages/vue.php:3906
10264
  msgid "Oops! Can't install addon. Error: %1$s, %2$s"
10265
  msgstr ""
10266
 
10267
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10268
- #: languages/vue.php:3910
10269
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10270
  msgstr ""
10271
 
10272
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10273
- #: languages/vue.php:3914
10274
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10275
  msgstr ""
10276
 
10277
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10278
- #: languages/vue.php:3918
10279
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10280
  msgstr ""
10281
 
10282
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10283
- #: languages/vue.php:3922
10284
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s."
10285
  msgstr ""
10286
 
10287
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10288
- #: languages/vue.php:3926
10289
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10290
  msgstr ""
10291
 
10292
- #: languages/vue.php:3929
10293
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists, please %1$scontact our support team%2$s."
10294
  msgstr ""
10295
 
10296
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10297
- #: languages/vue.php:3933
10298
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10299
  msgstr ""
10300
 
10301
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10302
- #: languages/vue.php:3937
10303
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10304
  msgstr ""
10305
 
10306
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10307
- #: languages/vue.php:3941
10308
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10309
  msgstr ""
10310
 
10311
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10312
- #: languages/vue.php:3945
10313
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10314
  msgstr ""
10315
 
10316
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10317
- #: languages/vue.php:3949
10318
  msgid "Can't load report data. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10319
  msgstr ""
10320
 
10321
  #. Translators: Support link tag starts with url and support link tag ends.
10322
- #: languages/vue.php:3953
10323
  msgid "Oops! Can't load posts. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10324
  msgstr ""
10325
 
10326
- #: languages/vue.php:3956
10327
  msgid "Website Badge"
10328
  msgstr ""
10329
 
10330
- #: languages/vue.php:3959
10331
  msgid "Automatic Display"
10332
  msgstr ""
10333
 
10334
- #: languages/vue.php:3962
10335
  msgid "Automatically Display Website Badge in Website Footer"
10336
  msgstr ""
10337
 
10338
- #: languages/vue.php:3965
10339
  msgid "Enabling will add the chosen badge in your website’s footer."
10340
  msgstr ""
10341
 
10342
- #: languages/vue.php:3968
10343
  msgid "Enable Automatic Display"
10344
  msgstr ""
10345
 
10346
- #: languages/vue.php:3971
10347
  msgid "Appearance"
10348
  msgstr ""
10349
 
10350
- #: languages/vue.php:3974
10351
  msgid "Choose your badge style."
10352
  msgstr ""
10353
 
10354
- #: languages/vue.php:3977
10355
  msgid "Position"
10356
  msgstr ""
10357
 
10358
- #: languages/vue.php:3980
10359
  msgid "Select the position of the badge in your website’s footer."
10360
  msgstr ""
10361
 
10362
- #: languages/vue.php:3983
10363
  msgid "Manual Display"
10364
  msgstr ""
10365
 
10366
- #: languages/vue.php:3986
10367
  msgid "Copy"
10368
  msgstr ""
10369
 
10370
- #: languages/vue.php:3989
10371
  msgid "Light"
10372
  msgstr ""
10373
 
10374
- #: languages/vue.php:3992
10375
  msgid "Dark"
10376
  msgstr ""
10377
 
10378
- #: languages/vue.php:3995
10379
  msgid "Left"
10380
  msgstr ""
10381
 
10382
- #: languages/vue.php:3998
10383
  msgid "Center"
10384
  msgstr ""
10385
 
10386
- #: languages/vue.php:4001
10387
  msgid "Right"
10388
  msgstr ""
10389
 
10390
- #: languages/vue.php:4004
10391
  msgid "Show MonsterInsights Badge"
10392
  msgstr ""
10393
 
10394
- #: languages/vue.php:4007
10395
  msgid "Build trust with website visitors by automatically placing a MonsterInsights badge in your website’s footer."
10396
  msgstr ""
10397
 
10398
- #: languages/vue.php:4010
10399
  msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX or GT-XXXXX where the X's are numbers."
10400
  msgstr ""
10401
 
10402
- #: languages/vue.php:4013
10403
  msgid "Conversion Tools"
10404
  msgstr ""
10405
 
10406
- #: languages/vue.php:4016
10407
  msgid "Get the #1 conversion optimization plugin to convert your growing website traffic into subscribers, leads and sales."
10408
  msgstr ""
10409
 
10410
- #: languages/vue.php:4019
10411
  msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers or GT-YYYYY where the Y's are combination of numbers and letters."
10412
  msgstr ""
10413
 
10414
- #: languages/vue.php:4022
10415
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10416
  msgstr ""
10417
 
10418
- #: languages/vue.php:4025
10419
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers or GT-YYYYY where the Y's are combination of numbers and letters."
10420
  msgstr ""
10421
 
10422
- #: languages/vue.php:4028
10423
  msgid "Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10424
  msgstr ""
10425
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10426
  #: lite/includes/admin/connect.php:42
10427
  msgid "Oops! You are not allowed to install plugins. Please contact your site administrator."
10428
  msgstr ""
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: ExactMetrics Pro 7.10.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-11-07T17:12:02+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
127
  #: includes/admin/admin.php:34
128
  #: includes/admin/admin.php:42
129
  #: includes/admin/admin.php:230
130
+ #: languages/vue.php:511
131
  msgid "Settings"
132
  msgstr ""
133
 
143
 
144
  #: includes/admin/admin.php:39
145
  #: includes/admin/admin.php:131
146
+ #: languages/vue.php:1982
147
  msgid "Reports"
148
  msgstr ""
149
 
153
 
154
  #: includes/admin/admin.php:51
155
  #: languages/gutenberg.php:83
156
+ #: languages/vue.php:879
157
  msgid "Popular Posts"
158
  msgstr ""
159
 
187
 
188
  #: includes/admin/admin.php:71
189
  #: includes/admin/admin.php:147
190
+ #: languages/vue.php:493
191
  msgid "About Us"
192
  msgstr ""
193
 
206
  #: includes/admin/admin.php:76
207
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
208
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
209
+ #: languages/vue.php:1408
210
  msgid "Upgrade to Pro"
211
  msgstr ""
212
 
234
 
235
  #: includes/admin/admin.php:220
236
  #: includes/admin/admin.php:223
237
+ #: languages/vue.php:903
238
  msgid "Support"
239
  msgstr ""
240
 
245
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:31
246
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
247
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
248
+ #: includes/admin/reports/abstract-report.php:458
249
+ #: languages/vue.php:1405
250
  msgid "Get MonsterInsights Pro"
251
  msgstr ""
252
 
256
  msgstr ""
257
 
258
  #: includes/admin/admin.php:335
259
+ #: languages/vue.php:478
260
  msgid "Please Setup Website Analytics to See Audience Insights"
261
  msgstr ""
262
 
263
  #: includes/admin/admin.php:336
264
+ #: languages/vue.php:484
265
  msgid "Connect MonsterInsights and Setup Website Analytics"
266
  msgstr ""
267
 
275
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
276
  #: includes/admin/notifications/notification-returning-visitors.php:43
277
  #: includes/admin/notifications/notification-traffic-dropping.php:43
278
+ #: languages/vue.php:431
279
  msgid "Learn More"
280
  msgstr ""
281
 
282
  #: includes/admin/admin.php:340
283
+ #: languages/vue.php:481
284
  msgid "MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use MonsterInsights to see the stats that matter and grow their business."
285
  msgstr ""
286
 
291
 
292
  #. Translators: Adds a link to the license renewal.
293
  #: includes/admin/admin.php:363
294
+ #: languages/vue.php:708
295
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
296
  msgstr ""
297
 
298
  #: includes/admin/admin.php:365
299
+ #: languages/vue.php:711
300
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
301
  msgstr ""
302
 
303
  #: includes/admin/admin.php:367
304
  #: includes/admin/api-auth.php:303
305
+ #: languages/vue.php:714
306
  msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
307
  msgstr ""
308
 
499
  msgstr ""
500
 
501
  #: includes/admin/common.php:951
502
+ #: languages/vue.php:3466
503
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
504
  msgstr ""
505
 
520
 
521
  #: includes/admin/exclude-page-metabox.php:144
522
  #: languages/gutenberg.php:179
523
+ #: languages/vue.php:2374
524
  msgid "Upgrade"
525
  msgstr ""
526
 
717
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
718
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
719
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
720
+ #: languages/vue.php:1260
721
  #: lite/includes/admin/helpers.php:85
722
  msgid "Upgrade to MonsterInsights Pro"
723
  msgstr ""
752
 
753
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
754
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
755
+ #: includes/admin/reports/abstract-report.php:455
756
  #: languages/vue.php:281
757
  msgid "Upgrade Now"
758
  msgstr ""
874
  msgid "Invalid date range."
875
  msgstr ""
876
 
877
+ #: includes/admin/reports/abstract-report.php:299
878
  msgid "You must be properly authenticated with MonsterInsights to use our reports. Please use our %1$ssetup wizard%2$s to get started."
879
  msgstr ""
880
 
881
  #. Translators: Placeholders add the license level and the report title.
882
+ #: includes/admin/reports/abstract-report.php:386
883
  msgid "You currently have a %1$s level license, but this report requires at least a %2$s level license to view the %3$s. Please upgrade to view this report."
884
  msgstr ""
885
 
886
+ #: includes/admin/reports/abstract-report.php:400
887
  msgid "Ready to Get Analytics Super-Powers?"
888
  msgstr ""
889
 
890
+ #: includes/admin/reports/abstract-report.php:402
891
  msgid "(And Crush Your Competition?)"
892
  msgstr ""
893
 
894
  #. Translators: License level and smiley.
895
+ #: includes/admin/reports/abstract-report.php:408
896
  msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
897
  msgstr ""
898
 
899
  #. Translators: Placeholders add the report title and license level.
900
+ #: includes/admin/reports/abstract-report.php:415
901
  msgid "Do you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with the %3$s level%4$s of our paid packages. You'll need to upgrade your license to get instant access."
902
  msgstr ""
903
 
904
  #. Translators: Placeholdes add links to the account area and a guide.
905
+ #: includes/admin/reports/abstract-report.php:422
906
  msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on MonsterInsights.com, go to the licenses tab, and click upgrade. We also have a %3$sstep by step guide%4$s with pictures of this process."
907
  msgstr ""
908
 
909
+ #: includes/admin/reports/abstract-report.php:426
910
+ #: includes/admin/reports/abstract-report.php:449
911
  msgid "If you have any questions, don't hesitate to reach out. We're here to help."
912
  msgstr ""
913
 
914
  #. Translators: Placeholder adds a smiley face.
915
+ #: includes/admin/reports/abstract-report.php:431
916
  msgid "Hey there! %s It looks like you've got the free version of MonsterInsights installed on your site. That's awesome!"
917
  msgstr ""
918
 
919
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
920
+ #: includes/admin/reports/abstract-report.php:438
921
  msgid "Do you you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with %3$s level%4$s of our paid packages. To get instant access, you'll want to buy a MonsterInsights license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
922
  msgstr ""
923
 
924
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
925
+ #: includes/admin/reports/abstract-report.php:445
926
  msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, purchase the required license, and then follow the %3$sinstructions in the email receipt%4$s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
927
  msgstr ""
928
 
929
+ #: includes/admin/reports/abstract-report.php:492
930
  msgid "Please ask your webmaster to enable this addon."
931
  msgstr ""
932
 
933
  #: includes/admin/reports/overview.php:34
934
+ #: languages/vue.php:560
935
  msgid "Overview"
936
  msgstr ""
937
 
1032
  msgstr ""
1033
 
1034
  #: includes/admin/routes.php:535
1035
+ #: languages/vue.php:3768
1036
  msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
1037
  msgstr ""
1038
 
1488
  msgstr ""
1489
 
1490
  #: includes/gutenberg/headline-tool/headline-tool.php:318
1491
+ #: languages/vue.php:517
1492
  msgid "General"
1493
  msgstr ""
1494
 
3718
  msgstr ""
3719
 
3720
  #: includes/helpers.php:430
3721
+ #: includes/helpers.php:1938
3722
  msgid "Canada"
3723
  msgstr ""
3724
 
3725
  #: includes/helpers.php:431
3726
+ #: includes/helpers.php:1983
3727
  msgid "United Kingdom"
3728
  msgstr ""
3729
 
3764
  msgstr ""
3765
 
3766
  #: includes/helpers.php:441
3767
+ #: includes/helpers.php:1931
3768
  msgid "Antigua and Barbuda"
3769
  msgstr ""
3770
 
3781
  msgstr ""
3782
 
3783
  #: includes/helpers.php:445
3784
+ #: includes/helpers.php:1932
3785
  msgid "Australia"
3786
  msgstr ""
3787
 
3806
  msgstr ""
3807
 
3808
  #: includes/helpers.php:451
3809
+ #: includes/helpers.php:1933
3810
  msgid "Barbados"
3811
  msgstr ""
3812
 
3819
  msgstr ""
3820
 
3821
  #: includes/helpers.php:454
3822
+ #: includes/helpers.php:1934
3823
  msgid "Belize"
3824
  msgstr ""
3825
 
3848
  msgstr ""
3849
 
3850
  #: includes/helpers.php:461
3851
+ #: includes/helpers.php:1935
3852
  msgid "Botswana"
3853
  msgstr ""
3854
 
3877
  msgstr ""
3878
 
3879
  #: includes/helpers.php:468
3880
+ #: includes/helpers.php:1936
3881
  msgid "Burundi"
3882
  msgstr ""
3883
 
3886
  msgstr ""
3887
 
3888
  #: includes/helpers.php:470
3889
+ #: includes/helpers.php:1937
3890
  msgid "Cameroon"
3891
  msgstr ""
3892
 
3979
  msgstr ""
3980
 
3981
  #: includes/helpers.php:493
3982
+ #: includes/helpers.php:1939
3983
  msgid "Dominica"
3984
  msgstr ""
3985
 
4028
  msgstr ""
4029
 
4030
  #: includes/helpers.php:505
4031
+ #: includes/helpers.php:1940
4032
  msgid "Fiji"
4033
  msgstr ""
4034
 
4057
  msgstr ""
4058
 
4059
  #: includes/helpers.php:512
4060
+ #: includes/helpers.php:1943
4061
  msgid "Gambia"
4062
  msgstr ""
4063
 
4074
  msgstr ""
4075
 
4076
  #: includes/helpers.php:516
4077
+ #: includes/helpers.php:1944
4078
  msgid "Ghana"
4079
  msgstr ""
4080
 
4087
  msgstr ""
4088
 
4089
  #: includes/helpers.php:519
4090
+ #: includes/helpers.php:1941
4091
  msgid "Grenada"
4092
  msgstr ""
4093
 
4116
  msgstr ""
4117
 
4118
  #: includes/helpers.php:526
4119
+ #: includes/helpers.php:1942
4120
  msgid "Guyana"
4121
  msgstr ""
4122
 
4149
  msgstr ""
4150
 
4151
  #: includes/helpers.php:534
4152
+ #: includes/helpers.php:1946
4153
  msgid "India"
4154
  msgstr ""
4155
 
4166
  msgstr ""
4167
 
4168
  #: includes/helpers.php:538
4169
+ #: includes/helpers.php:1945
4170
  msgid "Ireland"
4171
  msgstr ""
4172
 
4183
  msgstr ""
4184
 
4185
  #: includes/helpers.php:542
4186
+ #: includes/helpers.php:1947
4187
  msgid "Jamaica"
4188
  msgstr ""
4189
 
4204
  msgstr ""
4205
 
4206
  #: includes/helpers.php:547
4207
+ #: includes/helpers.php:1948
4208
  msgid "Kenya"
4209
  msgstr ""
4210
 
4211
  #: includes/helpers.php:548
4212
+ #: includes/helpers.php:1949
4213
  msgid "Kiribati"
4214
  msgstr ""
4215
 
4234
  msgstr ""
4235
 
4236
  #: includes/helpers.php:554
4237
+ #: includes/helpers.php:1950
4238
  msgid "Lesotho"
4239
  msgstr ""
4240
 
4241
  #: includes/helpers.php:555
4242
+ #: includes/helpers.php:1951
4243
  msgid "Liberia"
4244
  msgstr ""
4245
 
4272
  msgstr ""
4273
 
4274
  #: includes/helpers.php:563
4275
+ #: includes/helpers.php:1952
4276
  msgid "Malawi"
4277
  msgstr ""
4278
 
4289
  msgstr ""
4290
 
4291
  #: includes/helpers.php:567
4292
+ #: includes/helpers.php:1953
4293
  msgid "Malta"
4294
  msgstr ""
4295
 
4296
  #: includes/helpers.php:568
4297
+ #: includes/helpers.php:1954
4298
  msgid "Marshall Islands"
4299
  msgstr ""
4300
 
4307
  msgstr ""
4308
 
4309
  #: includes/helpers.php:571
4310
+ #: includes/helpers.php:1955
4311
  msgid "Mauritius"
4312
  msgstr ""
4313
 
4320
  msgstr ""
4321
 
4322
  #: includes/helpers.php:574
4323
+ #: includes/helpers.php:1956
4324
  msgid "Micronesia"
4325
  msgstr ""
4326
 
4357
  msgstr ""
4358
 
4359
  #: includes/helpers.php:583
4360
+ #: includes/helpers.php:1958
4361
  msgid "Namibia"
4362
  msgstr ""
4363
 
4364
  #: includes/helpers.php:584
4365
+ #: includes/helpers.php:1959
4366
  msgid "Nauru"
4367
  msgstr ""
4368
 
4383
  msgstr ""
4384
 
4385
  #: includes/helpers.php:589
4386
+ #: includes/helpers.php:1957
4387
  msgid "New Zealand"
4388
  msgstr ""
4389
 
4396
  msgstr ""
4397
 
4398
  #: includes/helpers.php:592
4399
+ #: includes/helpers.php:1960
4400
  msgid "Nigeria"
4401
  msgstr ""
4402
 
4425
  msgstr ""
4426
 
4427
  #: includes/helpers.php:599
4428
+ #: includes/helpers.php:1961
4429
  msgid "Pakistan"
4430
  msgstr ""
4431
 
4432
  #: includes/helpers.php:600
4433
+ #: includes/helpers.php:1962
4434
  msgid "Palau"
4435
  msgstr ""
4436
 
4443
  msgstr ""
4444
 
4445
  #: includes/helpers.php:603
4446
+ #: includes/helpers.php:1963
4447
  msgid "Papua New Guinea"
4448
  msgstr ""
4449
 
4456
  msgstr ""
4457
 
4458
  #: includes/helpers.php:606
4459
+ #: includes/helpers.php:1964
4460
  msgid "Philippines"
4461
  msgstr ""
4462
 
4497
  msgstr ""
4498
 
4499
  #: includes/helpers.php:616
4500
+ #: includes/helpers.php:1965
4501
  msgid "Rwanda"
4502
  msgstr ""
4503
 
4554
  msgstr ""
4555
 
4556
  #: includes/helpers.php:630
4557
+ #: includes/helpers.php:1972
4558
  msgid "Seychelles"
4559
  msgstr ""
4560
 
4561
  #: includes/helpers.php:631
4562
+ #: includes/helpers.php:1973
4563
  msgid "Sierra Leone"
4564
  msgstr ""
4565
 
4566
  #: includes/helpers.php:632
4567
+ #: includes/helpers.php:1966
4568
  msgid "Singapore"
4569
  msgstr ""
4570
 
4577
  msgstr ""
4578
 
4579
  #: includes/helpers.php:635
4580
+ #: includes/helpers.php:1974
4581
  msgid "Solomon Islands"
4582
  msgstr ""
4583
 
4586
  msgstr ""
4587
 
4588
  #: includes/helpers.php:637
4589
+ #: includes/helpers.php:1975
4590
  msgid "South Africa"
4591
  msgstr ""
4592
 
4599
  msgstr ""
4600
 
4601
  #: includes/helpers.php:640
4602
+ #: includes/helpers.php:1976
4603
  msgid "South Sudan"
4604
  msgstr ""
4605
 
4612
  msgstr ""
4613
 
4614
  #: includes/helpers.php:643
4615
+ #: includes/helpers.php:1977
4616
  msgid "Sudan"
4617
  msgstr ""
4618
 
4625
  msgstr ""
4626
 
4627
  #: includes/helpers.php:646
4628
+ #: includes/helpers.php:1970
4629
  msgid "Swaziland"
4630
  msgstr ""
4631
 
4650
  msgstr ""
4651
 
4652
  #: includes/helpers.php:652
4653
+ #: includes/helpers.php:1980
4654
  msgid "Tanzania"
4655
  msgstr ""
4656
 
4671
  msgstr ""
4672
 
4673
  #: includes/helpers.php:657
4674
+ #: includes/helpers.php:1981
4675
  msgid "Tonga"
4676
  msgstr ""
4677
 
4678
  #: includes/helpers.php:658
4679
+ #: includes/helpers.php:1978
4680
  msgid "Trinidad and Tobago"
4681
  msgstr ""
4682
 
4697
  msgstr ""
4698
 
4699
  #: includes/helpers.php:663
4700
+ #: includes/helpers.php:1982
4701
  msgid "Tuvalu"
4702
  msgstr ""
4703
 
4704
  #: includes/helpers.php:664
4705
+ #: includes/helpers.php:1985
4706
  msgid "Uganda"
4707
  msgstr ""
4708
 
4727
  msgstr ""
4728
 
4729
  #: includes/helpers.php:670
4730
+ #: includes/helpers.php:1986
4731
  msgid "Vanuatu"
4732
  msgstr ""
4733
 
4764
  msgstr ""
4765
 
4766
  #: includes/helpers.php:679
4767
+ #: includes/helpers.php:1987
4768
  msgid "Zambia"
4769
  msgstr ""
4770
 
4771
  #: includes/helpers.php:680
4772
+ #: includes/helpers.php:1988
4773
  msgid "Zimbabwe"
4774
  msgstr ""
4775
 
4787
  msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-MonsterInsights ones. If you need help finding them please %3$sread this article%4$s."
4788
  msgstr ""
4789
 
4790
+ #: includes/helpers.php:1967
4791
  msgid "St Kitts and Nevis"
4792
  msgstr ""
4793
 
4794
+ #: includes/helpers.php:1968
4795
  msgid "St Lucia"
4796
  msgstr ""
4797
 
4798
+ #: includes/helpers.php:1969
4799
  msgid "St Vincent and the Grenadines"
4800
  msgstr ""
4801
 
4802
+ #: includes/helpers.php:1971
4803
  msgid "Samoa"
4804
  msgstr ""
4805
 
4806
+ #: includes/helpers.php:1979
4807
  msgid "The Bahamas"
4808
  msgstr ""
4809
 
4810
+ #: includes/helpers.php:1984
4811
  msgid "United States of America"
4812
  msgstr ""
4813
 
4888
  msgstr ""
4889
 
4890
  #: languages/gutenberg.php:77
4891
+ #: languages/vue.php:502
4892
  msgid "Inline Popular Posts"
4893
  msgstr ""
4894
 
4925
  msgstr ""
4926
 
4927
  #: languages/gutenberg.php:107
4928
+ #: languages/vue.php:2965
4929
  msgid "Wide-Layout Options"
4930
  msgstr ""
4931
 
4934
  msgstr ""
4935
 
4936
  #: languages/gutenberg.php:113
4937
+ #: languages/vue.php:2968
4938
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4939
  msgstr ""
4940
 
4941
  #: languages/gutenberg.php:116
4942
+ #: languages/vue.php:2989
4943
  msgid "Post Count"
4944
  msgstr ""
4945
 
4948
  msgstr ""
4949
 
4950
  #: languages/gutenberg.php:122
4951
+ #: languages/vue.php:2971
4952
  msgid "Display Options"
4953
  msgstr ""
4954
 
4961
  msgstr ""
4962
 
4963
  #: languages/gutenberg.php:131
4964
+ #: languages/vue.php:2787
4965
  msgid "Widget Title"
4966
  msgstr ""
4967
 
4970
  msgstr ""
4971
 
4972
  #: languages/gutenberg.php:137
4973
+ #: languages/vue.php:2977
4974
  msgid "Display Author"
4975
  msgstr ""
4976
 
4977
  #: languages/gutenberg.php:140
4978
+ #: languages/vue.php:2980
4979
  msgid "Display Date"
4980
  msgstr ""
4981
 
4982
  #: languages/gutenberg.php:143
4983
+ #: languages/vue.php:2983
4984
  msgid "Display Comments"
4985
  msgstr ""
4986
 
4997
  msgstr ""
4998
 
4999
  #: languages/gutenberg.php:152
5000
+ #: languages/vue.php:1341
5001
  #: lite/includes/admin/metaboxes.php:65
5002
  #: lite/includes/admin/metaboxes.php:127
5003
  msgid "Bounce Rate"
5258
  msgstr ""
5259
 
5260
  #: languages/gutenberg.php:354
5261
+ #: languages/vue.php:858
5262
  msgid "Headline Analyzer"
5263
  msgstr ""
5264
 
5578
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5579
  msgstr ""
5580
 
5581
+ #: languages/vue.php:248
5582
  msgid "Overview Report"
5583
  msgstr ""
5584
 
5585
+ #: languages/vue.php:251
5586
  #: lite/includes/admin/welcome.php:56
5587
  #: lite/includes/admin/welcome.php:57
5588
  msgid "Welcome to MonsterInsights"
5589
  msgstr ""
5590
 
5591
+ #: languages/vue.php:254
5592
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5593
  msgstr ""
5594
 
5595
+ #: languages/vue.php:257
5596
  msgid "MonsterInsights makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
5597
  msgstr ""
5598
 
5599
+ #: languages/vue.php:260
5600
  msgid "Launch the Wizard!"
5601
  msgstr ""
5602
 
5603
+ #: languages/vue.php:263
5604
  msgid "Read the Full Guide"
5605
  msgstr ""
5606
 
5607
+ #: languages/vue.php:266
5608
  msgid "MonsterInsights Features & Addons"
5609
  msgstr ""
5610
 
5611
+ #: languages/vue.php:269
5612
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5613
  msgstr ""
5614
 
5615
+ #: languages/vue.php:272
5616
  msgid "See All Features"
5617
  msgstr ""
5618
 
5619
+ #: languages/vue.php:275
5620
  msgid "Upgrade to PRO"
5621
  msgstr ""
5622
 
5623
+ #: languages/vue.php:278
5624
  msgid "per year"
5625
  msgstr ""
5626
 
5692
  msgid "Ecommerce Report"
5693
  msgstr ""
5694
 
5695
+ #: languages/vue.php:335
5696
  msgid "Form Conversions"
5697
  msgstr ""
5698
 
5699
+ #: languages/vue.php:338
5700
  msgid "Custom Dimensions"
5701
  msgstr ""
5702
 
5703
+ #: languages/vue.php:341
5704
  msgid "Author Tracking"
5705
  msgstr ""
5706
 
5707
+ #: languages/vue.php:344
5708
  msgid "Google Optimize"
5709
  msgstr ""
5710
 
5711
+ #: languages/vue.php:347
5712
  msgid "Category / Tags Tracking"
5713
  msgstr ""
5714
 
5715
+ #: languages/vue.php:350
5716
  msgid "WooCommerce"
5717
  msgstr ""
5718
 
5719
+ #: languages/vue.php:353
5720
  msgid "Easy Digital Downloads"
5721
  msgstr ""
5722
 
5723
+ #: languages/vue.php:356
5724
  msgid "MemberPress"
5725
  msgstr ""
5726
 
5727
+ #: languages/vue.php:359
5728
  msgid "LifterLMS"
5729
  msgstr ""
5730
 
5731
  #. Translators: Current PHP version and recommended PHP version.
5732
+ #: languages/vue.php:363
5733
  msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5734
  msgstr ""
5735
 
5736
  #. Translators: Current WordPress version.
5737
+ #: languages/vue.php:367
5738
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5739
  msgstr ""
5740
 
5741
+ #: languages/vue.php:370
5742
  msgid "Yikes! PHP Update Required"
5743
  msgstr ""
5744
 
5745
  #. Translators: Current PHP version and recommended PHP version.
5746
+ #: languages/vue.php:374
5747
  msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5748
  msgstr ""
5749
 
5750
+ #: languages/vue.php:377
5751
  msgid "Learn more about updating PHP"
5752
  msgstr ""
5753
 
5754
+ #: languages/vue.php:380
5755
  msgid "Yikes! WordPress Update Required"
5756
  msgstr ""
5757
 
5758
  #. Translators: Current WordPress version.
5759
+ #: languages/vue.php:384
5760
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5761
  msgstr ""
5762
 
5763
+ #: languages/vue.php:387
5764
  msgid "Learn more about updating WordPress"
5765
  msgstr ""
5766
 
5767
+ #: languages/vue.php:390
5768
  msgid "MonsterInsights encountered an error loading your report data"
5769
  msgstr ""
5770
 
5771
+ #: languages/vue.php:393
5772
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5773
  msgstr ""
5774
 
5775
+ #: languages/vue.php:396
5776
  msgid "Reconnect MonsterInsights"
5777
  msgstr ""
5778
 
5779
+ #: languages/vue.php:399
5780
  msgid "Re-Authenticating"
5781
  msgstr ""
5782
 
5783
+ #: languages/vue.php:403
5784
  msgid "Ok"
5785
  msgstr ""
5786
 
5787
+ #: languages/vue.php:406
5788
  msgid "See Quick Links"
5789
  msgstr ""
5790
 
5791
+ #: languages/vue.php:409
5792
  msgid "Suggest a Feature"
5793
  msgstr ""
5794
 
5795
+ #: languages/vue.php:412
5796
  msgid "Join Our Community"
5797
  msgstr ""
5798
 
5799
+ #: languages/vue.php:415
5800
  msgid "Support & Docs"
5801
  msgstr ""
5802
 
5803
+ #: languages/vue.php:418
5804
  msgid "Upgrade to Pro &#187;"
5805
  msgstr ""
5806
 
5807
  #. Translators: Placeholder is replaced with WPForms.
5808
+ #: languages/vue.php:422
5809
  msgid "Recommended Plugin: %s"
5810
  msgstr ""
5811
 
5812
+ #: languages/vue.php:425
5813
  msgid "Install"
5814
  msgstr ""
5815
 
5816
+ #: languages/vue.php:428
5817
  msgid "Activate"
5818
  msgstr ""
5819
 
5820
+ #: languages/vue.php:434
5821
  msgid "Powered by MonsterInsights"
5822
  msgstr ""
5823
 
5824
+ #: languages/vue.php:437
5825
  #: lite/includes/admin/wp-site-health.php:256
5826
  msgid "View Reports"
5827
  msgstr ""
5828
 
5829
+ #: languages/vue.php:440
5830
  msgid "Congratulations!"
5831
  msgstr ""
5832
 
5833
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5834
+ #: languages/vue.php:444
5835
  msgid "MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up."
5836
  msgstr ""
5837
 
5838
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5839
+ #: languages/vue.php:448
5840
  msgid "Onboarding Wizard"
5841
  msgstr ""
5842
 
5843
+ #: languages/vue.php:451
5844
  msgid "You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard."
5845
  msgstr ""
5846
 
5847
+ #: languages/vue.php:454
5848
  msgid "Save Changes"
5849
  msgstr ""
5850
 
5851
+ #: languages/vue.php:457
5852
  msgid "Inbox"
5853
  msgstr ""
5854
 
5855
+ #: languages/vue.php:460
5856
  msgid "Back to Inbox"
5857
  msgstr ""
5858
 
5859
+ #: languages/vue.php:463
5860
  msgid "View Dismissed"
5861
  msgstr ""
5862
 
5863
+ #: languages/vue.php:466
5864
  msgid "Notifications"
5865
  msgstr ""
5866
 
5867
+ #: languages/vue.php:469
5868
  msgid "Dismiss All"
5869
  msgstr ""
5870
 
5871
+ #: languages/vue.php:472
5872
  msgid "Dismissed"
5873
  msgstr ""
5874
 
5875
+ #: languages/vue.php:475
5876
  msgid "No Notifications"
5877
  msgstr ""
5878
 
5879
+ #: languages/vue.php:487
5880
  msgid "Import Export"
5881
  msgstr ""
5882
 
5883
+ #: languages/vue.php:490
5884
  msgid "PrettyLinks Integration"
5885
  msgstr ""
5886
 
5887
+ #: languages/vue.php:496
5888
  msgid "Getting Started"
5889
  msgstr ""
5890
 
5891
+ #: languages/vue.php:499
5892
  msgid "Lite vs Pro"
5893
  msgstr ""
5894
 
5895
+ #: languages/vue.php:505
5896
  msgid "Popular Posts Widget"
5897
  msgstr ""
5898
 
5899
+ #: languages/vue.php:508
5900
  msgid "Popular Products"
5901
  msgstr ""
5902
 
5903
+ #: languages/vue.php:514
5904
  msgid "Sub menu item for WooCommerce Analytics"
5905
  msgstr ""
5906
 
5907
+ #: languages/vue.php:520
5908
  msgid "Engagement"
5909
  msgstr ""
5910
 
5911
+ #: languages/vue.php:523
5912
  #: lite/includes/admin/reports/report-ecommerce.php:22
5913
  msgid "eCommerce"
5914
  msgstr ""
5915
 
5916
+ #: languages/vue.php:526
5917
  msgid "Publisher"
5918
  msgstr ""
5919
 
5920
+ #: languages/vue.php:529
5921
  msgid "Conversions"
5922
  msgstr ""
5923
 
5924
+ #: languages/vue.php:532
5925
  msgid "Advanced"
5926
  msgstr ""
5927
 
5928
+ #: languages/vue.php:535
5929
  msgid "URL Builder"
5930
  msgstr ""
5931
 
5932
+ #: languages/vue.php:538
5933
  msgid "MonsterInsights Addons"
5934
  msgstr ""
5935
 
5936
+ #: languages/vue.php:541
5937
  msgid "Search Addons"
5938
  msgstr ""
5939
 
5940
+ #: languages/vue.php:544
5941
  msgid "Exit Setup"
5942
  msgstr ""
5943
 
5944
+ #: languages/vue.php:547
5945
  msgid "You must connect with MonsterInsights before you can view reports."
5946
  msgstr ""
5947
 
5948
+ #: languages/vue.php:550
5949
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5950
  msgstr ""
5951
 
5952
+ #: languages/vue.php:554
5953
  msgid "Launch Setup Wizard"
5954
  msgstr ""
5955
 
5956
+ #: languages/vue.php:557
5957
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
5958
  msgstr ""
5959
 
5960
+ #: languages/vue.php:563
5961
  #: lite/includes/admin/reports/report-publisher.php:22
5962
  msgid "Publishers"
5963
  msgstr ""
5964
 
5965
+ #: languages/vue.php:566
5966
  #: lite/includes/admin/reports/report-queries.php:22
5967
  msgid "Search Console"
5968
  msgstr ""
5969
 
5970
+ #: languages/vue.php:570
5971
  #: lite/includes/admin/reports/report-dimensions.php:22
5972
  msgid "Dimensions"
5973
  msgstr ""
5974
 
5975
+ #: languages/vue.php:573
5976
  #: lite/includes/admin/reports/report-forms.php:22
5977
  msgid "Forms"
5978
  msgstr ""
5979
 
5980
+ #: languages/vue.php:576
5981
  msgid "Real-Time"
5982
  msgstr ""
5983
 
5984
+ #: languages/vue.php:579
5985
  msgid "Site Speed"
5986
  msgstr ""
5987
 
5988
+ #: languages/vue.php:582
5989
  msgid "2020 Year in Review"
5990
  msgstr ""
5991
 
5992
  #. Translators: Error status and error text.
5993
+ #: languages/vue.php:586
5994
  msgid "Can't load report data. Error: %1$s, %2$s"
5995
  msgstr ""
5996
 
5997
+ #: languages/vue.php:589
5998
  msgid "Error loading report data"
5999
  msgstr ""
6000
 
6001
+ #: languages/vue.php:592
6002
  msgid "Publishers Report"
6003
  msgstr ""
6004
 
6005
+ #: languages/vue.php:595
6006
  msgid "eCommerce Report"
6007
  msgstr ""
6008
 
6009
+ #: languages/vue.php:598
6010
  msgid "Search Console Report"
6011
  msgstr ""
6012
 
6013
+ #: languages/vue.php:601
6014
  msgid "Dimensions Report"
6015
  msgstr ""
6016
 
6017
+ #: languages/vue.php:604
6018
  msgid "Forms Report"
6019
  msgstr ""
6020
 
6021
+ #: languages/vue.php:608
6022
  msgid "Real-Time Report"
6023
  msgstr ""
6024
 
6025
+ #: languages/vue.php:611
6026
  msgid "Site Speed Report"
6027
  msgstr ""
6028
 
6029
+ #: languages/vue.php:614
6030
  msgid "Time to Purchase"
6031
  msgstr ""
6032
 
6033
+ #: languages/vue.php:617
6034
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
6035
  msgstr ""
6036
 
6037
+ #: languages/vue.php:620
6038
  msgid "Sessions to Purchase"
6039
  msgstr ""
6040
 
6041
+ #: languages/vue.php:623
6042
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
6043
  msgstr ""
6044
 
6045
+ #: languages/vue.php:626
6046
  msgid "New Customers"
6047
  msgstr ""
6048
 
6049
+ #: languages/vue.php:629
6050
  msgid "This list shows the percentage of new customers who purchased a product from your website."
6051
  msgstr ""
6052
 
6053
+ #: languages/vue.php:632
6054
  msgid "Abandoned Checkouts"
6055
  msgstr ""
6056
 
6057
+ #: languages/vue.php:635
6058
  msgid "This list shows the percentage of carts that never went through the checkout process."
6059
  msgstr ""
6060
 
6061
+ #: languages/vue.php:639
6062
  msgid "Top Posts/Pages"
6063
  msgstr ""
6064
 
6065
+ #: languages/vue.php:643
6066
  msgid "This list shows the most viewed posts and pages on your website."
6067
  msgstr ""
6068
 
6069
+ #: languages/vue.php:647
6070
  msgid "New vs. Returning Visitors"
6071
  msgstr ""
6072
 
6073
+ #: languages/vue.php:651
6074
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
6075
  msgstr ""
6076
 
6078
  msgid "Device Breakdown"
6079
  msgstr ""
6080
 
6081
+ #: languages/vue.php:659
6082
  msgid "This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site."
6083
  msgstr ""
6084
 
6085
+ #: languages/vue.php:662
6086
  msgid "Top Landing Pages"
6087
  msgstr ""
6088
 
6089
+ #: languages/vue.php:665
6090
  msgid "This list shows the top pages users first land on when visiting your website."
6091
  msgstr ""
6092
 
6093
+ #: languages/vue.php:668
6094
  msgid "Top Exit Pages"
6095
  msgstr ""
6096
 
6097
+ #: languages/vue.php:671
6098
  msgid "This list shows the top pages users exit your website from."
6099
  msgstr ""
6100
 
6101
+ #: languages/vue.php:674
6102
  msgid "Top Outbound Links"
6103
  msgstr ""
6104
 
6105
+ #: languages/vue.php:677
6106
  msgid "This list shows the top links clicked on your website that go to another website."
6107
  msgstr ""
6108
 
6109
+ #: languages/vue.php:680
6110
  msgid "Top Affiliate Links"
6111
  msgstr ""
6112
 
6113
+ #: languages/vue.php:683
6114
  msgid "This list shows the top affiliate links your visitors clicked on."
6115
  msgstr ""
6116
 
6117
+ #: languages/vue.php:686
6118
  msgid "Top Download Links"
6119
  msgstr ""
6120
 
6121
+ #: languages/vue.php:689
6122
  msgid "This list shows the download links your visitors clicked the most."
6123
  msgstr ""
6124
 
6125
+ #: languages/vue.php:692
6126
  msgid "Top Products"
6127
  msgstr ""
6128
 
6129
+ #: languages/vue.php:695
6130
  msgid "This list shows the top selling products on your website."
6131
  msgstr ""
6132
 
6133
+ #: languages/vue.php:698
6134
  msgid "Top Conversion Sources"
6135
  msgstr ""
6136
 
6137
+ #: languages/vue.php:701
6138
  msgid "This list shows the top referral websites in terms of product revenue."
6139
  msgstr ""
6140
 
6141
+ #: languages/vue.php:704
6142
  msgid "Total Add/Remove"
6143
  msgstr ""
6144
 
6145
  #. Translators: Adds a link to documentation.
6146
+ #: languages/vue.php:718
6147
  msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
6148
  msgstr ""
6149
 
6150
  #. Translators: Adds link to activate/install plugin and documentation.
6151
+ #: languages/vue.php:722
6152
  msgid "In order for the MonsterInsights Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
6153
  msgstr ""
6154
 
6155
  #. Translators: Adds a link to documentation.
6156
+ #: languages/vue.php:726
6157
  msgid "In order for the MonsterInsights Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s"
6158
  msgstr ""
6159
 
6160
  #. Translators: Adds link to activate/install plugin and documentation.
6161
+ #: languages/vue.php:730
6162
  msgid "In order for the MonsterInsights Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s"
6163
  msgstr ""
6164
 
6165
+ #: languages/vue.php:733
6166
  msgid "GDPR Guide"
6167
  msgstr ""
6168
 
6169
+ #: languages/vue.php:736
6170
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help MonsterInsights users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
6171
  msgstr ""
6172
 
6173
+ #: languages/vue.php:739
6174
  msgid "How to Install and Activate MonsterInsights Addons"
6175
  msgstr ""
6176
 
6177
+ #: languages/vue.php:742
6178
  msgid "The process for installing and activating addons is quick and easy after you install the MonsterInsights plugin. In this guide we’ll walk you through the process, step by step."
6179
  msgstr ""
6180
 
6181
+ #: languages/vue.php:745
6182
  msgid "Enabling eCommerce Tracking and Reports"
6183
  msgstr ""
6184
 
6185
+ #: languages/vue.php:748
6186
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with MonsterInsights? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
6187
  msgstr ""
6188
 
6189
+ #: languages/vue.php:751
6190
  msgid "Read Documentation"
6191
  msgstr ""
6192
 
6193
+ #: languages/vue.php:754
6194
  msgid "Getting Started with MonsterInsights"
6195
  msgstr ""
6196
 
6197
+ #: languages/vue.php:757
6198
  msgid "MonsterInsights is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard."
6199
  msgstr ""
6200
 
6201
+ #: languages/vue.php:760
6202
  msgid "To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away."
6203
  msgstr ""
6204
 
6205
+ #: languages/vue.php:763
6206
  msgid "In no time at all, and after just a few clicks, you'll have setup the most powerful Google Analytics tracking available for WordPress. It's easy to double your traffic and sales when you know exactly how people find and use your website. Let's get started!."
6207
  msgstr ""
6208
 
6209
+ #: languages/vue.php:766
6210
  msgid "Launch the wizard!"
6211
  msgstr ""
6212
 
6213
+ #: languages/vue.php:769
6214
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6215
  msgstr ""
6216
 
6217
  #. Translators: Makes text bold.
6218
+ #: languages/vue.php:773
6219
  msgid "Thanks for being a loyal MonsterInsights Lite user. %1$sUpgrade to MonsterInsights Pro%2$s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
6220
  msgstr ""
6221
 
6222
+ #: languages/vue.php:776
6223
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
6224
  msgstr ""
6225
 
6226
+ #: languages/vue.php:779
6227
  msgid "See your website analytics reports inside the WordPress dashboard"
6228
  msgstr ""
6229
 
6230
+ #: languages/vue.php:782
6231
  msgid "Get real-time stats right inside WordPress"
6232
  msgstr ""
6233
 
6234
+ #: languages/vue.php:785
6235
  msgid "1-click Google Analytics Enhanced eCommerce tracking"
6236
  msgstr ""
6237
 
6238
+ #: languages/vue.php:788
6239
  msgid "Get detailed stats for each post and page."
6240
  msgstr ""
6241
 
6242
+ #: languages/vue.php:791
6243
  msgid "Automatically track clicks on your affiliate links and ads."
6244
  msgstr ""
6245
 
6246
+ #: languages/vue.php:794
6247
  msgid "Make Google Analytics GDPR compliant automatically"
6248
  msgstr ""
6249
 
6250
+ #: languages/vue.php:797
6251
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6252
  msgstr ""
6253
 
6254
+ #: languages/vue.php:800
6255
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6256
  msgstr ""
6257
 
6258
+ #: languages/vue.php:803
6259
  msgid "More advanced features"
6260
  msgstr ""
6261
 
6262
+ #: languages/vue.php:806
6263
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6264
  msgstr ""
6265
 
6266
  #. Translators: Makes text green.
6267
+ #: languages/vue.php:810
6268
  msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6269
  msgstr ""
6270
 
6271
+ #: languages/vue.php:813
6272
  msgid "How to Connect to Google Analytics"
6273
  msgstr ""
6274
 
6275
+ #: languages/vue.php:816
6276
  msgid "After you install MonsterInsights, you’ll need to connect your WordPress site with your Google Analytics account. MonsterInsights makes the process easy, with no coding required."
6277
  msgstr ""
6278
 
6279
+ #: languages/vue.php:819
6280
  msgid "Guide and Checklist for Advanced Insights"
6281
  msgstr ""
6282
 
6283
+ #: languages/vue.php:822
6284
  msgid "Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with MonsterInsights’ advanced tracking."
6285
  msgstr ""
6286
 
6287
+ #: languages/vue.php:825
6288
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6289
  msgstr ""
6290
 
6291
+ #: languages/vue.php:828
6292
  msgid "WordPress Admin Area Reports"
6293
  msgstr ""
6294
 
6295
+ #: languages/vue.php:831
6296
  msgid "Standard Reports"
6297
  msgstr ""
6298
 
6299
+ #: languages/vue.php:834
6300
  msgid "Overview Reports for the last 30 days."
6301
  msgstr ""
6302
 
6303
+ #: languages/vue.php:837
6304
  msgid "Advanced Reports"
6305
  msgstr ""
6306
 
6307
+ #: languages/vue.php:840
6308
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6309
  msgstr ""
6310
 
6311
+ #: languages/vue.php:843
6312
  msgid "Dashboard Widget"
6313
  msgstr ""
6314
 
6315
+ #: languages/vue.php:846
6316
  msgid "Basic Widget"
6317
  msgstr ""
6318
 
6319
+ #: languages/vue.php:849
6320
  msgid "Overview Report Synopsis"
6321
  msgstr ""
6322
 
6323
+ #: languages/vue.php:852
6324
  msgid "Advanced Dashboard Widget"
6325
  msgstr ""
6326
 
6327
+ #: languages/vue.php:855
6328
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6329
  msgstr ""
6330
 
6331
+ #: languages/vue.php:861
6332
  msgid "Email Summaries"
6333
  msgstr ""
6334
 
6335
+ #: languages/vue.php:864
6336
  msgid "Included"
6337
  msgstr ""
6338
 
6339
+ #: languages/vue.php:867
6340
  msgid "Get weekly traffic reports directly in your inbox."
6341
  msgstr ""
6342
 
6343
+ #: languages/vue.php:870
6344
  msgid "Publisher Reports"
6345
  msgstr ""
6346
 
6347
+ #: languages/vue.php:873
6348
  msgid "Advanced Publisher Reports & Tracking"
6349
  msgstr ""
6350
 
6351
+ #: languages/vue.php:876
6352
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6353
  msgstr ""
6354
 
6355
+ #: languages/vue.php:882
6356
  msgid "Basic Options"
6357
  msgstr ""
6358
 
6359
+ #: languages/vue.php:885
6360
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6361
  msgstr ""
6362
 
6363
+ #: languages/vue.php:888
6364
  msgid "Dynamic Popular Posts & Popular Products"
6365
  msgstr ""
6366
 
6367
+ #: languages/vue.php:891
6368
  msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
6369
  msgstr ""
6370
 
6371
+ #: languages/vue.php:894
6372
  msgid "Not Available"
6373
  msgstr ""
6374
 
6375
+ #: languages/vue.php:897
6376
  msgid "Complete Custom Dimensions Tracking"
6377
  msgstr ""
6378
 
6379
+ #: languages/vue.php:900
6380
  msgid "Track and measure by the Author, Post Type, Category, Tag, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
6381
  msgstr ""
6382
 
6383
+ #: languages/vue.php:906
6384
  msgid "Limited Support"
6385
  msgstr ""
6386
 
6387
+ #: languages/vue.php:909
6388
  msgid "Priority Support"
6389
  msgstr ""
6390
 
6391
+ #: languages/vue.php:912
6392
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
6393
  msgstr ""
6394
 
6395
+ #: languages/vue.php:915
6396
  msgid "Feature"
6397
  msgstr ""
6398
 
6399
+ #: languages/vue.php:918
6400
  msgid "Lite"
6401
  msgstr ""
6402
 
6403
+ #: languages/vue.php:921
6404
  msgid "Pro"
6405
  msgstr ""
6406
 
6407
+ #: languages/vue.php:924
6408
  msgid "Custom Google Analytics Link Tracking"
6409
  msgstr ""
6410
 
6411
+ #: languages/vue.php:927
6412
  msgid "Standard Tracking"
6413
  msgstr ""
6414
 
6415
+ #: languages/vue.php:930
6416
  msgid "Advanced Tracking"
6417
  msgstr ""
6418
 
6419
+ #: languages/vue.php:933
6420
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6421
  msgstr ""
6422
 
6423
+ #: languages/vue.php:936
6424
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6425
  msgstr ""
6426
 
6427
+ #: languages/vue.php:939
6428
  msgid "No-Code-Needed Tracking Features"
6429
  msgstr ""
6430
 
6431
+ #: languages/vue.php:942
6432
  msgid "Basic Tracking Options"
6433
  msgstr ""
6434
 
6435
+ #: languages/vue.php:945
6436
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6437
  msgstr ""
6438
 
6439
+ #: languages/vue.php:948
6440
  msgid "Advanced Tracking Options"
6441
  msgstr ""
6442
 
6443
+ #: languages/vue.php:951
6444
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6445
  msgstr ""
6446
 
6447
+ #: languages/vue.php:954
6448
  msgid "eCommerce Tracking"
6449
  msgstr ""
6450
 
6451
+ #: languages/vue.php:957
6452
  msgid "One-click Complete eCommerce tracking"
6453
  msgstr ""
6454
 
6455
+ #: languages/vue.php:960
6456
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6457
  msgstr ""
6458
 
6459
+ #: languages/vue.php:963
6460
  msgid "Forms Tracking"
6461
  msgstr ""
6462
 
6463
+ #: languages/vue.php:966
6464
  msgid "One-click Form Events Tracking"
6465
  msgstr ""
6466
 
6846
  msgid "Show in full-width mode"
6847
  msgstr ""
6848
 
6849
+ #: languages/vue.php:1263
6850
  msgid "Installing Addon"
6851
  msgstr ""
6852
 
6853
+ #: languages/vue.php:1266
6854
  msgid "Activating Addon"
6855
  msgstr ""
6856
 
6857
+ #: languages/vue.php:1269
6858
  msgid "Addon Activated"
6859
  msgstr ""
6860
 
6861
+ #: languages/vue.php:1272
6862
  msgid "Loading report data"
6863
  msgstr ""
6864
 
6865
+ #: languages/vue.php:1275
6866
  msgid "Please activate manually"
6867
  msgstr ""
6868
 
6869
  #. Translators: Adds the error status and status text.
6870
+ #: languages/vue.php:1279
6871
  msgid "Error: %1$s, %2$s"
6872
  msgstr ""
6873
 
6874
+ #: languages/vue.php:1282
6875
  msgid "Error Activating Addon"
6876
  msgstr ""
6877
 
6878
+ #: languages/vue.php:1285
6879
  #: lite/includes/admin/wp-site-health.php:375
6880
  #: lite/includes/admin/wp-site-health.php:401
6881
  #: lite/includes/admin/wp-site-health.php:428
6882
  msgid "View Addons"
6883
  msgstr ""
6884
 
6885
+ #: languages/vue.php:1288
6886
  msgid "Dismiss"
6887
  msgstr ""
6888
 
6889
+ #: languages/vue.php:1291
6890
  msgid "Redirecting"
6891
  msgstr ""
6892
 
6893
+ #: languages/vue.php:1294
6894
  msgid "Please wait"
6895
  msgstr ""
6896
 
6897
+ #: languages/vue.php:1298
6898
  msgid "activate"
6899
  msgstr ""
6900
 
6901
+ #: languages/vue.php:1302
6902
  msgid "install"
6903
  msgstr ""
6904
 
6905
+ #: languages/vue.php:1306
6906
  msgid "Visit addons page"
6907
  msgstr ""
6908
 
6909
+ #: languages/vue.php:1309
6910
  msgid "Report Unavailable"
6911
  msgstr ""
6912
 
6913
  #. Translators: Install/Activate the addon.
6914
+ #: languages/vue.php:1313
6915
  msgid "%s Addon"
6916
  msgstr ""
6917
 
6918
+ #: languages/vue.php:1316
6919
  msgid "Go Back To Reports"
6920
  msgstr ""
6921
 
6922
+ #: languages/vue.php:1319
6923
  msgid "Enable Enhanced eCommerce"
6924
  msgstr ""
6925
 
6926
  #. Translators: Placeholders are used for making text bold and adding a link.
6927
+ #: languages/vue.php:1323
6928
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6929
  msgstr ""
6930
 
6931
+ #: languages/vue.php:1326
6932
  msgid "Last 30 Days Insights for:"
6933
  msgstr ""
6934
 
6935
+ #: languages/vue.php:1329
6936
  msgid "Your Website"
6937
  msgstr ""
6938
 
6939
+ #: languages/vue.php:1332
6940
  msgid "Sessions"
6941
  msgstr ""
6942
 
6943
+ #: languages/vue.php:1335
6944
  msgid "Pageviews"
6945
  msgstr ""
6946
 
6947
+ #: languages/vue.php:1338
6948
  msgid "Avg. Duration"
6949
  msgstr ""
6950
 
6951
+ #: languages/vue.php:1344
6952
  msgid "Total Users"
6953
  msgstr ""
6954
 
6955
+ #: languages/vue.php:1347
6956
  msgid "More data is available"
6957
  msgstr ""
6958
 
6959
+ #: languages/vue.php:1350
6960
  msgid "Want to see page-specific stats?"
6961
  msgstr ""
6962
 
6963
+ #: languages/vue.php:1353
6964
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6965
  msgstr ""
6966
 
6967
+ #: languages/vue.php:1356
6968
  msgid "No addons found."
6969
  msgstr ""
6970
 
6971
+ #: languages/vue.php:1359
6972
  msgid "Refresh Addons"
6973
  msgstr ""
6974
 
6975
+ #: languages/vue.php:1362
6976
  msgid "Refreshing Addons"
6977
  msgstr ""
6978
 
6979
  #. Translators: Make text green.
6980
+ #: languages/vue.php:1366
6981
  msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
6982
  msgstr ""
6983
 
6984
+ #: languages/vue.php:1369
6985
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
6986
  msgstr ""
6987
 
6988
+ #: languages/vue.php:1372
6989
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
6990
  msgstr ""
6991
 
6992
+ #: languages/vue.php:1375
6993
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
6994
  msgstr ""
6995
 
6996
+ #: languages/vue.php:1378
6997
  msgid "See All Your Important Store Metrics in One Place"
6998
  msgstr ""
6999
 
7000
+ #: languages/vue.php:1381
7001
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
7002
  msgstr ""
7003
 
7004
+ #: languages/vue.php:1384
7005
  msgid "ONE-CLICK INTEGRATIONS"
7006
  msgstr ""
7007
 
7008
+ #: languages/vue.php:1387
7009
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
7010
  msgstr ""
7011
 
7012
+ #: languages/vue.php:1390
7013
  msgid "MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard."
7014
  msgstr ""
7015
 
7016
+ #: languages/vue.php:1393
7017
  msgid "Affiliate Tracking"
7018
  msgstr ""
7019
 
7020
+ #: languages/vue.php:1396
7021
  msgid "Automatically Track Affiliate Sales"
7022
  msgstr ""
7023
 
7024
+ #: languages/vue.php:1399
7025
  msgid "The MonsterInsights eCommerce addon works with EasyAffiliate to automatically attribute orders originating from an EasyAffiliate link in Google Analytics. Gain valuable insights into your top affiliates with no coding required."
7026
  msgstr ""
7027
 
7028
+ #: languages/vue.php:1402
7029
  msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
7030
  msgstr ""
7031
 
7032
+ #: languages/vue.php:1411
7033
  msgid "Cart Funnel"
7034
  msgstr ""
7035
 
7036
+ #: languages/vue.php:1414
7037
  msgid "Customer Insights"
7038
  msgstr ""
7039
 
7040
+ #: languages/vue.php:1417
7041
  msgid "Campaign Measurement"
7042
  msgstr ""
7043
 
7044
+ #: languages/vue.php:1420
7045
  msgid "Customer Profiles"
7046
  msgstr ""
7047
 
7048
+ #: languages/vue.php:1423
7049
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
7050
  msgstr ""
7051
 
7052
+ #: languages/vue.php:1426
7053
  msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
7054
  msgstr ""
7055
 
7056
+ #: languages/vue.php:1429
7057
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
7058
  msgstr ""
7059
 
7060
+ #: languages/vue.php:1432
7061
  msgid "Track all-new metrics!"
7062
  msgstr ""
7063
 
7064
+ #: languages/vue.php:1435
7065
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
7066
  msgstr ""
7067
 
7068
+ #: languages/vue.php:1438
7069
  msgid "FEATURES"
7070
  msgstr ""
7071
 
7072
+ #: languages/vue.php:1441
7073
  msgid "Get The Unique Metrics Neccessary for Growth"
7074
  msgstr ""
7075
 
7076
+ #: languages/vue.php:1444
7077
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
7078
  msgstr ""
7079
 
7080
+ #: languages/vue.php:1447
7081
  msgid "Get Answers to the important questions %1$syou should know."
7082
  msgstr ""
7083
 
7084
+ #: languages/vue.php:1450
7085
  msgid "Did the login/registration step of the checkout put users off?"
7086
  msgstr ""
7087
 
7088
+ #: languages/vue.php:1453
7089
  msgid "Which ad campaign is driving the most revenue?"
7090
  msgstr ""
7091
 
7092
+ #: languages/vue.php:1456
7093
  msgid "Who is my typical customer?"
7094
  msgstr ""
7095
 
7096
+ #: languages/vue.php:1459
7097
  msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
7098
  msgstr ""
7099
 
7100
  #. Translators: placeholders make text small.
7101
+ #: languages/vue.php:1463
7102
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
7103
  msgstr ""
7104
 
7105
  #. Translators: placeholders make text small.
7106
+ #: languages/vue.php:1467
7107
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
7108
  msgstr ""
7109
 
7110
  #. Translators: placeholders make text small.
7111
+ #: languages/vue.php:1471
7112
  msgid "None %1$s- Manually update everything.%2$s"
7113
  msgstr ""
7114
 
7115
+ #: languages/vue.php:1474
7116
  msgid "Automatic Updates"
7117
  msgstr ""
7118
 
7119
+ #: languages/vue.php:1477
7120
  msgid "Awesome, You're All Set!"
7121
  msgstr ""
7122
 
7123
+ #: languages/vue.php:1480
7124
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
7125
  msgstr ""
7126
 
7127
  #. Translators: Make text bold.
7128
+ #: languages/vue.php:1484
7129
  msgid "%1$sPlease Note:%2$s While Google Analytics is properly setup and tracking everything, it does not send the data back to WordPress immediately. Depending on the size of your website, it can take between a few hours to 24 hours for reports to populate."
7130
  msgstr ""
7131
 
7132
  #. Translators: Link to our blog.
7133
+ #: languages/vue.php:1488
7134
  msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
7135
  msgstr ""
7136
 
7137
+ #: languages/vue.php:1491
7138
  msgid "Finish Setup & Exit Wizard"
7139
  msgstr ""
7140
 
7141
+ #: languages/vue.php:1494
7142
  msgid "Checking your website..."
7143
  msgstr ""
7144
 
7145
+ #: languages/vue.php:1497
7146
  msgid "See All Reports"
7147
  msgstr ""
7148
 
7149
+ #: languages/vue.php:1500
7150
  msgid "Go to the Analytics Dashboard"
7151
  msgstr ""
7152
 
7153
  #. Translators: Placeholder adds a line break.
7154
+ #: languages/vue.php:1504
7155
  msgid "Unique %s Sessions"
7156
  msgstr ""
7157
 
7158
+ #. Translators: Number of unique pageviews.
7159
+ #: languages/vue.php:1509
7160
  msgid "Unique %s Pageviews"
7161
  msgstr ""
7162
 
7163
+ #: languages/vue.php:1512
7164
  msgid "A session is the browsing session of a single user to your site."
7165
  msgstr ""
7166
 
7167
+ #: languages/vue.php:1515
7168
  msgid "A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview."
7169
  msgstr ""
7170
 
7171
+ #: languages/vue.php:1518
7172
  msgid "Total duration of all sessions (in seconds) / number of sessions."
7173
  msgstr ""
7174
 
7175
+ #: languages/vue.php:1521
7176
  msgid "Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
7177
  msgstr ""
7178
 
7179
+ #: languages/vue.php:1524
7180
  msgid "The number of distinct tracked users"
7181
  msgstr ""
7182
 
7183
+ #: languages/vue.php:1527
7184
  msgid "Avg. Session Duration"
7185
  msgstr ""
7186
 
7187
+ #: languages/vue.php:1530
7188
  msgid "Still Calculating..."
7189
  msgstr ""
7190
 
7191
+ #: languages/vue.php:1533
7192
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7193
  msgstr ""
7194
 
7195
+ #: languages/vue.php:1536
7196
  msgid "Back to Overview Report"
7197
  msgstr ""
7198
 
7199
+ #: languages/vue.php:1539
7200
  msgid "Your 2020 Analytics Report"
7201
  msgstr ""
7202
 
7203
+ #: languages/vue.php:1542
7204
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7205
  msgstr ""
7206
 
7207
+ #: languages/vue.php:1545
7208
  msgid "Audience"
7209
  msgstr ""
7210
 
7211
+ #: languages/vue.php:1548
7212
  msgid "Congrats"
7213
  msgstr ""
7214
 
7215
+ #: languages/vue.php:1551
7216
  msgid "Your website was quite popular this year! "
7217
  msgstr ""
7218
 
7219
+ #: languages/vue.php:1554
7220
  msgid "You had "
7221
  msgstr ""
7222
 
7223
+ #: languages/vue.php:1557
7224
  msgid " visitors!"
7225
  msgstr ""
7226
 
7227
+ #: languages/vue.php:1560
7228
  msgid " visitors"
7229
  msgstr ""
7230
 
7231
+ #: languages/vue.php:1563
7232
  msgid "Total Visitors"
7233
  msgstr ""
7234
 
7235
+ #: languages/vue.php:1566
7236
  msgid "Total Sessions"
7237
  msgstr ""
7238
 
7239
+ #: languages/vue.php:1569
7240
  msgid "Visitors by Month"
7241
  msgstr ""
7242
 
7243
+ #: languages/vue.php:1572
7244
  msgid "January 1, 2020 - December 31, 2020"
7245
  msgstr ""
7246
 
7247
+ #: languages/vue.php:1575
7248
  msgid "A Tip for 2021"
7249
  msgstr ""
7250
 
7251
+ #: languages/vue.php:1578
7252
  msgid "Demographics"
7253
  msgstr ""
7254
 
7255
+ #: languages/vue.php:1581
7256
  msgid "#1"
7257
  msgstr ""
7258
 
7259
+ #: languages/vue.php:1584
7260
  msgid "You Top 5 Countries"
7261
  msgstr ""
7262
 
7263
+ #: languages/vue.php:1587
7264
  msgid "Let’s get to know your visitors a little better, shall we?"
7265
  msgstr ""
7266
 
7267
+ #: languages/vue.php:1590
7268
  msgid "Gender"
7269
  msgstr ""
7270
 
7271
+ #: languages/vue.php:1593
7272
  msgid "Female"
7273
  msgstr ""
7274
 
7275
+ #: languages/vue.php:1596
7276
  msgid "Women"
7277
  msgstr ""
7278
 
7279
+ #: languages/vue.php:1599
7280
  msgid "Male"
7281
  msgstr ""
7282
 
7283
+ #: languages/vue.php:1602
7284
  msgid "Average Age"
7285
  msgstr ""
7286
 
7287
+ #: languages/vue.php:1606
7288
  msgid "Behavior"
7289
  msgstr ""
7290
 
7291
+ #: languages/vue.php:1609
7292
  msgid "Your Top 5 Pages"
7293
  msgstr ""
7294
 
7295
+ #: languages/vue.php:1612
7296
  msgid "Time Spent on Site"
7297
  msgstr ""
7298
 
7299
+ #: languages/vue.php:1615
7300
  msgid "minutes"
7301
  msgstr ""
7302
 
7303
+ #: languages/vue.php:1618
7304
  msgid "Device Type"
7305
  msgstr ""
7306
 
7307
+ #: languages/vue.php:1621
7308
  msgid "A Tip For 2021"
7309
  msgstr ""
7310
 
7311
+ #: languages/vue.php:1624
7312
  msgid "Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic."
7313
  msgstr ""
7314
 
7315
+ #: languages/vue.php:1627
7316
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
7317
  msgstr ""
7318
 
7319
+ #: languages/vue.php:1630
7320
  msgid "So, where did all of these visitors come from?"
7321
  msgstr ""
7322
 
7323
+ #: languages/vue.php:1633
7324
  msgid "Clicks"
7325
  msgstr ""
7326
 
7327
+ #: languages/vue.php:1636
7328
  msgid "Your Top 5 Keywords"
7329
  msgstr ""
7330
 
7331
+ #: languages/vue.php:1639
7332
  msgid "What keywords visitors searched for to find your site"
7333
  msgstr ""
7334
 
7335
+ #: languages/vue.php:1642
7336
  msgid "Your Top 5 Referrals"
7337
  msgstr ""
7338
 
7339
+ #: languages/vue.php:1645
7340
  msgid "The websites that link back to your website"
7341
  msgstr ""
7342
 
7343
+ #: languages/vue.php:1648
7344
  msgid "Opportunity"
7345
  msgstr ""
7346
 
7347
+ #: languages/vue.php:1651
7348
  msgid "Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic."
7349
  msgstr ""
7350
 
7351
+ #: languages/vue.php:1654
7352
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
7353
  msgstr ""
7354
 
7355
+ #: languages/vue.php:1657
7356
  msgid "Thank you for using MonsterInsights!"
7357
  msgstr ""
7358
 
7359
+ #: languages/vue.php:1660
7360
  msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
7361
  msgstr ""
7362
 
7363
+ #: languages/vue.php:1663
7364
  msgid "Here's to an amazing 2021!"
7365
  msgstr ""
7366
 
7367
+ #: languages/vue.php:1666
7368
  msgid "Enjoying MonsterInsights"
7369
  msgstr ""
7370
 
7371
+ #: languages/vue.php:1669
7372
  msgid "Leave a five star review!"
7373
  msgstr ""
7374
 
7375
+ #: languages/vue.php:1672
7376
  msgid "Syed Balkhi"
7377
  msgstr ""
7378
 
7379
+ #: languages/vue.php:1675
7380
  msgid "Chris Christoff"
7381
  msgstr ""
7382
 
7383
+ #: languages/vue.php:1678
7384
  msgid "Write Review"
7385
  msgstr ""
7386
 
7387
+ #: languages/vue.php:1681
7388
  msgid "Did you know over 10 million websites use our plugins?"
7389
  msgstr ""
7390
 
7391
+ #: languages/vue.php:1684
7392
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7393
  msgstr ""
7394
 
7395
+ #: languages/vue.php:1687
7396
  msgid "Join our Communities!"
7397
  msgstr ""
7398
 
7399
+ #: languages/vue.php:1690
7400
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7401
  msgstr ""
7402
 
7403
+ #: languages/vue.php:1693
7404
  msgid "Facebook Group"
7405
  msgstr ""
7406
 
7407
+ #: languages/vue.php:1696
7408
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7409
  msgstr ""
7410
 
7411
+ #: languages/vue.php:1699
7412
  msgid "Join Now...It’s Free!"
7413
  msgstr ""
7414
 
7415
+ #: languages/vue.php:1702
7416
  msgid "WordPress Tutorials by WPBeginner"
7417
  msgstr ""
7418
 
7419
+ #: languages/vue.php:1705
7420
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7421
  msgstr ""
7422
 
7423
+ #: languages/vue.php:1708
7424
  msgid "Visit WPBeginner"
7425
  msgstr ""
7426
 
7427
+ #: languages/vue.php:1711
7428
  msgid "Follow Us!"
7429
  msgstr ""
7430
 
7431
+ #: languages/vue.php:1714
7432
  msgid "Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7433
  msgstr ""
7434
 
7435
+ #: languages/vue.php:1717
7436
  msgid "Copyright MonsterInsights, 2021"
7437
  msgstr ""
7438
 
7439
+ #: languages/vue.php:1720
7440
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
7441
  msgstr ""
7442
 
7443
+ #: languages/vue.php:1723
7444
  msgid "January"
7445
  msgstr ""
7446
 
7447
+ #: languages/vue.php:1726
7448
  msgid "February"
7449
  msgstr ""
7450
 
7451
+ #: languages/vue.php:1729
7452
  msgid "March"
7453
  msgstr ""
7454
 
7455
+ #: languages/vue.php:1732
7456
  msgid "April"
7457
  msgstr ""
7458
 
7459
+ #: languages/vue.php:1735
7460
  msgid "May"
7461
  msgstr ""
7462
 
7463
+ #: languages/vue.php:1738
7464
  msgid "June"
7465
  msgstr ""
7466
 
7467
+ #: languages/vue.php:1741
7468
  msgid "July"
7469
  msgstr ""
7470
 
7471
+ #: languages/vue.php:1744
7472
  msgid "August"
7473
  msgstr ""
7474
 
7475
+ #: languages/vue.php:1747
7476
  msgid "September"
7477
  msgstr ""
7478
 
7479
+ #: languages/vue.php:1750
7480
  msgid "October"
7481
  msgstr ""
7482
 
7483
+ #: languages/vue.php:1753
7484
  msgid "November"
7485
  msgstr ""
7486
 
7487
+ #: languages/vue.php:1756
7488
  msgid "December"
7489
  msgstr ""
7490
 
7491
  #. Translators: Number of visitors.
7492
+ #: languages/vue.php:1760
7493
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7494
  msgstr ""
7495
 
7496
+ #: languages/vue.php:1763
7497
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7498
  msgstr ""
7499
 
7500
  #. Translators: Number of visitors.
7501
+ #: languages/vue.php:1767
7502
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7503
  msgstr ""
7504
 
7505
  #. Translators: Number of visitors.
7506
+ #: languages/vue.php:1771
7507
  msgid "%s Visitors"
7508
  msgstr ""
7509
 
7510
  #. Translators: Percent and Number of visitors.
7511
+ #: languages/vue.php:1775
7512
  msgid "%1$s&#37 of your visitors were %2$s"
7513
  msgstr ""
7514
 
7515
  #. Translators: Number of visitors and their age.
7516
+ #: languages/vue.php:1779
7517
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7518
  msgstr ""
7519
 
7520
+ #: languages/vue.php:1782
7521
  msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
7522
  msgstr ""
7523
 
7524
  #. Translators: Number of minutes spent on site.
7525
+ #: languages/vue.php:1786
7526
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7527
  msgstr ""
7528
 
7529
  #. Translators: Name of device type.
7530
+ #: languages/vue.php:1790
7531
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7532
  msgstr ""
7533
 
7534
  #. Translators: Number of visitors and device percentage.
7535
+ #: languages/vue.php:1794
7536
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7537
  msgstr ""
7538
 
7539
+ #: languages/vue.php:1797
7540
  msgid "Desktop"
7541
  msgstr ""
7542
 
7543
+ #: languages/vue.php:1800
7544
  msgid "Tablet"
7545
  msgstr ""
7546
 
7547
+ #: languages/vue.php:1803
7548
  msgid "Mobile"
7549
  msgstr ""
7550
 
7551
+ #: languages/vue.php:1806
7552
  msgid "Right Now"
7553
  msgstr ""
7554
 
7555
+ #: languages/vue.php:1809
7556
  msgid "Active users on site"
7557
  msgstr ""
7558
 
7559
+ #: languages/vue.php:1812
7560
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
7561
  msgstr ""
7562
 
7563
+ #: languages/vue.php:1815
7564
  msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter."
7565
  msgstr ""
7566
 
7567
+ #: languages/vue.php:1818
7568
  msgid "The real-time report automatically updates approximately every 60 seconds."
7569
  msgstr ""
7570
 
7571
  #. Translators: Number of seconds that have passed since the report was refreshed.
7572
+ #: languages/vue.php:1822
7573
  msgid "The real-time report was last updated %s seconds ago."
7574
  msgstr ""
7575
 
7576
+ #: languages/vue.php:1825
7577
  msgid "The latest data will be automatically shown on this page when it becomes available."
7578
  msgstr ""
7579
 
7580
+ #: languages/vue.php:1828
7581
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
7582
  msgstr ""
7583
 
7584
+ #: languages/vue.php:1831
7585
  msgid "Pageviews Per Minute"
7586
  msgstr ""
7587
 
7588
+ #: languages/vue.php:1834
7589
  msgid "Top Pages"
7590
  msgstr ""
7591
 
7592
+ #: languages/vue.php:1837
7593
  msgid "No pageviews currently."
7594
  msgstr ""
7595
 
7596
+ #: languages/vue.php:1840
7597
  msgid "Page"
7598
  msgstr ""
7599
 
7600
+ #: languages/vue.php:1843
7601
  msgid "Pageview Count"
7602
  msgstr ""
7603
 
7604
+ #: languages/vue.php:1846
7605
  msgid "Percent of Total"
7606
  msgstr ""
7607
 
7608
+ #: languages/vue.php:1849
7609
  msgid "This is the number of active users currently on your site."
7610
  msgstr ""
7611
 
7612
+ #: languages/vue.php:1852
7613
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
7614
  msgstr ""
7615
 
7616
+ #: languages/vue.php:1855
7617
  msgid "This list shows the top pages users are currently viewing on your site."
7618
  msgstr ""
7619
 
7620
+ #: languages/vue.php:1858
7621
  msgid "View All Real-Time Pageviews"
7622
  msgstr ""
7623
 
7624
+ #: languages/vue.php:1861
7625
  msgid "View All Real-Time Traffic Sources"
7626
  msgstr ""
7627
 
7628
+ #: languages/vue.php:1864
7629
  msgid "View All Real-Time Traffic by Country"
7630
  msgstr ""
7631
 
7632
+ #: languages/vue.php:1867
7633
  msgid "View All Real-Time Traffic by City"
7634
  msgstr ""
7635
 
7636
+ #: languages/vue.php:1870
7637
  msgid "Show Overview Reports"
7638
  msgstr ""
7639
 
7640
+ #: languages/vue.php:1873
7641
  msgid "Show Publishers Reports"
7642
  msgstr ""
7643
 
7644
+ #: languages/vue.php:1876
7645
  msgid "Show eCommerce Reports"
7646
  msgstr ""
7647
 
7648
+ #: languages/vue.php:1879
7649
  msgid "Settings Menu"
7650
  msgstr ""
7651
 
7652
+ #: languages/vue.php:1882
7653
  msgid "Available in PRO version"
7654
  msgstr ""
7655
 
7656
+ #: languages/vue.php:1885
7657
  msgid "Thank you for being a loyal MonsterInsights Lite user."
7658
  msgstr ""
7659
 
7660
+ #: languages/vue.php:1888
7661
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
7662
  msgstr ""
7663
 
7664
  #. Translators: Gets replaced with the coupon code.
7665
+ #: languages/vue.php:1892
7666
  msgid "Use coupon code %s to get 50%% off."
7667
  msgstr ""
7668
 
7669
+ #: languages/vue.php:1895
7670
  msgid "Dashboard widget"
7671
  msgstr ""
7672
 
7673
+ #: languages/vue.php:1898
7674
  msgid "Affiliate Links"
7675
  msgstr ""
7676
 
7677
+ #: languages/vue.php:1901
7678
  msgid "Enhanced Ecommerce"
7679
  msgstr ""
7680
 
7681
+ #: languages/vue.php:1904
7682
  msgid "Banner Ads"
7683
  msgstr ""
7684
 
7685
+ #: languages/vue.php:1907
7686
  msgid "Google AMP"
7687
  msgstr ""
7688
 
7689
+ #: languages/vue.php:1910
7690
  msgid "SEO Score Tracking"
7691
  msgstr ""
7692
 
7693
+ #: languages/vue.php:1913
7694
  msgid "Activating..."
7695
  msgstr ""
7696
 
7697
+ #: languages/vue.php:1916
7698
  msgid "Deactivating..."
7699
  msgstr ""
7700
 
7701
+ #: languages/vue.php:1919
7702
  msgid "Deactivate"
7703
  msgstr ""
7704
 
7705
  #. Translators: The status of the addon (installed/active/inactive).
7706
+ #: languages/vue.php:1923
7707
  msgid "Status: %s"
7708
  msgstr ""
7709
 
7710
+ #: languages/vue.php:1926
7711
  msgid "Not Installed"
7712
  msgstr ""
7713
 
7714
+ #: languages/vue.php:1929
7715
  msgid "Network Active"
7716
  msgstr ""
7717
 
7718
+ #: languages/vue.php:1932
7719
  msgid "Active"
7720
  msgstr ""
7721
 
7722
+ #: languages/vue.php:1935
7723
  msgid "Inactive"
7724
  msgstr ""
7725
 
7726
  #. Translators: Adds a link to the general settings tab.
7727
+ #: languages/vue.php:1939
7728
  msgid "It looks like you added a Google Analytics tracking code in the custom code area, this can potentially prevent proper tracking. If you want to use a manual UA please use the setting in the %1$sGeneral%2$s tab."
7729
  msgstr ""
7730
 
7731
+ #: languages/vue.php:1942
7732
  msgid "Export PDF Reports"
7733
  msgstr ""
7734
 
7735
+ #: languages/vue.php:1945
7736
  msgid "Permissions"
7737
  msgstr ""
7738
 
7739
+ #: languages/vue.php:1948
7740
  msgid "Allow These User Roles to See Reports"
7741
  msgstr ""
7742
 
7743
+ #: languages/vue.php:1951
7744
  msgid "Users that have at least one of these roles will be able to view the reports."
7745
  msgstr ""
7746
 
7747
+ #: languages/vue.php:1954
7748
  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."
7749
  msgstr ""
7750
 
7751
+ #: languages/vue.php:1957
7752
  msgid "Allow These User Roles to Save Settings"
7753
  msgstr ""
7754
 
7755
+ #: languages/vue.php:1960
7756
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
7757
  msgstr ""
7758
 
7759
+ #: languages/vue.php:1963
7760
  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."
7761
  msgstr ""
7762
 
7763
+ #: languages/vue.php:1966
7764
  msgid "Exclude These User Roles From Tracking"
7765
  msgstr ""
7766
 
7767
+ #: languages/vue.php:1969
7768
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
7769
  msgstr ""
7770
 
7771
+ #: languages/vue.php:1972
7772
  msgid "Performance"
7773
  msgstr ""
7774
 
7775
+ #: languages/vue.php:1975
7776
  msgid "Custom code"
7777
  msgstr ""
7778
 
7779
  #. Translators: Adds a link to the Google reference.
7780
+ #: languages/vue.php:1979
7781
  msgid "Not for the average user: this allows you to add a line of code, to be added before the %1$spageview is sent%2$s."
7782
  msgstr ""
7783
 
7784
+ #: languages/vue.php:1985
7785
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
7786
  msgstr ""
7787
 
7788
+ #: languages/vue.php:1988
7789
  msgid "Hide Admin Bar Reports"
7790
  msgstr ""
7791
 
7792
  #. Translators: placeholders make text small.
7793
+ #: languages/vue.php:1992
7794
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
7795
  msgstr ""
7796
 
7797
  #. Translators: placeholders make text small.
7798
+ #: languages/vue.php:1996
7799
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
7800
  msgstr ""
7801
 
7802
  #. Translators: placeholders make text small.
7803
+ #: languages/vue.php:2000
7804
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
7805
  msgstr ""
7806
 
7807
+ #: languages/vue.php:2003
7808
  msgid "View notifications"
7809
  msgstr ""
7810
 
7811
  #. Translators: Error status and error text.
7812
+ #: languages/vue.php:2007
7813
  msgid "Can't load settings. Error: %1$s, %2$s"
7814
  msgstr ""
7815
 
7816
+ #: languages/vue.php:2010
7817
  msgid "You appear to be offline."
7818
  msgstr ""
7819
 
7820
  #. Translators: Error status and error text.
7821
+ #: languages/vue.php:2014
7822
  msgid "Can't save settings. Error: %1$s, %2$s"
7823
  msgstr ""
7824
 
7825
+ #: languages/vue.php:2018
7826
  msgid "Network error encountered. Settings not saved."
7827
  msgstr ""
7828
 
7829
  #. Translators: Error status and error text.
7830
+ #: languages/vue.php:2022
7831
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
7832
  msgstr ""
7833
 
7834
  #. Translators: Error status and error text.
7835
+ #: languages/vue.php:2026
7836
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7837
  msgstr ""
7838
 
7839
  #. Translators: Error status and error text.
7840
+ #: languages/vue.php:2030
7841
  msgid "Can't load license details. Error: %1$s, %2$s"
7842
  msgstr ""
7843
 
7844
+ #: languages/vue.php:2033
7845
  msgid "Error loading license details"
7846
  msgstr ""
7847
 
7848
  #. Translators: Error status and error text.
7849
+ #: languages/vue.php:2037
7850
  msgid "Can't verify the license. Error: %1$s, %2$s"
7851
  msgstr ""
7852
 
7853
  #. Translators: Error status and error text.
7854
+ #: languages/vue.php:2041
7855
  msgid "Can't validate the license. Error: %1$s, %2$s"
7856
  msgstr ""
7857
 
7858
  #. Translators: Error status and error text.
7859
+ #: languages/vue.php:2045
7860
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7861
  msgstr ""
7862
 
7863
  #. Translators: Error status and error text.
7864
+ #: languages/vue.php:2049
7865
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7866
  msgstr ""
7867
 
7868
+ #: languages/vue.php:2052
7869
  msgid "You appear to be offline. Settings not saved."
7870
  msgstr ""
7871
 
7872
  #. Translators: Error status and error text.
7873
+ #: languages/vue.php:2056
7874
  msgid "Can't authenticate. Error: %1$s, %2$s"
7875
  msgstr ""
7876
 
7877
  #. Translators: Error status and error text.
7878
+ #: languages/vue.php:2060
7879
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7880
  msgstr ""
7881
 
7882
  #. Translators: Error status and error text.
7883
+ #: languages/vue.php:2064
7884
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7885
  msgstr ""
7886
 
7887
+ #: languages/vue.php:2067
7888
  msgid "Proceed"
7889
  msgstr ""
7890
 
7891
+ #: languages/vue.php:2070
7892
  msgid "Connection Information"
7893
  msgstr ""
7894
 
7895
+ #: languages/vue.php:2073
7896
  msgid "To perform the requested action, WordPress needs to access your web server. Please enter your FTP credentials to proceed. If you do not remember your credentials, you should contact your web host."
7897
  msgstr ""
7898
 
7899
+ #: languages/vue.php:2076
7900
  msgid "Hostname"
7901
  msgstr ""
7902
 
7903
+ #: languages/vue.php:2079
7904
  msgid "FTP Username"
7905
  msgstr ""
7906
 
7907
+ #: languages/vue.php:2082
7908
  msgid "FTP Password"
7909
  msgstr ""
7910
 
7911
+ #: languages/vue.php:2085
7912
  msgid "This password will not be stored on the server."
7913
  msgstr ""
7914
 
7915
+ #: languages/vue.php:2088
7916
  msgid "Connection Type"
7917
  msgstr ""
7918
 
7919
+ #: languages/vue.php:2091
7920
  msgid "Cancel"
7921
  msgstr ""
7922
 
7923
+ #: languages/vue.php:2094
7924
  msgid "You appear to be offline. WPForms not installed."
7925
  msgstr ""
7926
 
7927
  #. Translators: Error status and error text.
7928
+ #: languages/vue.php:2098
7929
  msgid "Can't activate addon. Error: %1$s, %2$s"
7930
  msgstr ""
7931
 
7932
+ #: languages/vue.php:2101
7933
  msgid "You appear to be offline. Addon not activated."
7934
  msgstr ""
7935
 
7936
  #. Translators: Error status and error text.
7937
+ #: languages/vue.php:2105
7938
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7939
  msgstr ""
7940
 
7941
+ #: languages/vue.php:2108
7942
  msgid "You appear to be offline. Addon not deactivated."
7943
  msgstr ""
7944
 
7945
  #. Translators: Error status and error text.
7946
+ #: languages/vue.php:2112
7947
  msgid "Can't install plugin. Error: %1$s, %2$s"
7948
  msgstr ""
7949
 
7950
+ #: languages/vue.php:2115
7951
  msgid "You appear to be offline. Plugin not installed."
7952
  msgstr ""
7953
 
7954
  #. Translators: Error status and error text.
7955
+ #: languages/vue.php:2119
7956
  msgid "Can't install addon. Error: %1$s, %2$s"
7957
  msgstr ""
7958
 
7959
+ #: languages/vue.php:2122
7960
  msgid "You appear to be offline. Addon not installed."
7961
  msgstr ""
7962
 
7963
  #. Translators: Error status and error text.
7964
+ #: languages/vue.php:2126
7965
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7966
  msgstr ""
7967
 
7968
  #. Translators: Example path (/go/).
7969
+ #: languages/vue.php:2130
7970
  msgid "Path (example: %s)"
7971
  msgstr ""
7972
 
7973
+ #: languages/vue.php:2133
7974
  msgid "Path has to start with a / and have no spaces"
7975
  msgstr ""
7976
 
7977
  #. Translators: Example label (aff).
7978
+ #: languages/vue.php:2137
7979
  msgid "Label (example: %s)"
7980
  msgstr ""
7981
 
7982
+ #: languages/vue.php:2140
7983
  msgid "Label can't contain any spaces"
7984
  msgstr ""
7985
 
7986
  #. Translators: Add links to documentation.
7987
+ #: languages/vue.php:2144
7988
  msgid "This allows you to track custom affiliate links. A path of /go/ would match urls that start with that. The label is appended onto the end of the string \"outbound-link-\", to provide unique labels for these links in Google Analytics. Complete documentation on affiliate links is available %1$shere%2$s."
7989
  msgstr ""
7990
 
7991
+ #: languages/vue.php:2147
7992
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
7993
  msgstr ""
7994
 
7995
+ #: languages/vue.php:2150
7996
  msgid "The MonsterInsights Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
7997
  msgstr ""
7998
 
7999
+ #: languages/vue.php:2153
8000
  msgid "Disable the Headline Analyzer"
8001
  msgstr ""
8002
 
8003
+ #: languages/vue.php:2156
8004
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
8005
  msgstr ""
8006
 
8007
+ #: languages/vue.php:2159
8008
  msgid "Or manually enter UA code (limited functionality)"
8009
  msgstr ""
8010
 
8011
+ #: languages/vue.php:2162
8012
  msgid "Dual Tracking Profile"
8013
  msgstr ""
8014
 
8015
+ #: languages/vue.php:2165
8016
  msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
8017
  msgstr ""
8018
 
8019
+ #: languages/vue.php:2168
8020
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
8021
  msgstr ""
8022
 
8023
+ #: languages/vue.php:2171
8024
  msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
8025
  msgstr ""
8026
 
8027
+ #: languages/vue.php:2174
8028
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
8029
  msgstr ""
8030
 
8031
+ #: languages/vue.php:2177
8032
  msgid "Measurement Protocol API Secret"
8033
  msgstr ""
8034
 
8035
+ #: languages/vue.php:2180
8036
  msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
8037
  msgstr ""
8038
 
8039
+ #: languages/vue.php:2183
8040
  msgid "Force Deauthenticate"
8041
  msgstr ""
8042
 
8043
+ #: languages/vue.php:2186
8044
  msgid "Disconnect MonsterInsights"
8045
  msgstr ""
8046
 
8047
+ #: languages/vue.php:2189
8048
  msgid "Authenticating"
8049
  msgstr ""
8050
 
8051
+ #: languages/vue.php:2192
8052
  msgid "Verifying Credentials"
8053
  msgstr ""
8054
 
8055
+ #: languages/vue.php:2195
8056
  msgid "Your site is connected to MonsterInsights!"
8057
  msgstr ""
8058
 
8059
+ #: languages/vue.php:2198
8060
  msgid "Deauthenticating"
8061
  msgstr ""
8062
 
8063
+ #: languages/vue.php:2201
8064
  msgid "You've disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
8065
  msgstr ""
8066
 
8067
+ #: languages/vue.php:2204
8068
  msgid "Connect MonsterInsights"
8069
  msgstr ""
8070
 
8071
+ #: languages/vue.php:2207
8072
  msgid "Verify Credentials"
8073
  msgstr ""
8074
 
8075
+ #: languages/vue.php:2210
8076
  msgid "Website Profile"
8077
  msgstr ""
8078
 
8079
+ #: languages/vue.php:2213
8080
  msgid "Active Profile"
8081
  msgstr ""
8082
 
8083
+ #: languages/vue.php:2216
8084
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
8085
  msgstr ""
8086
 
8087
+ #: languages/vue.php:2219
8088
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
8089
  msgstr ""
8090
 
8091
+ #: languages/vue.php:2222
8092
  msgid "Manually enter your UA code"
8093
  msgstr ""
8094
 
8095
+ #: languages/vue.php:2225
8096
  msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers."
8097
  msgstr ""
8098
 
8099
+ #: languages/vue.php:2228
8100
  msgid "Manually enter your GA4 Measurement ID"
8101
  msgstr ""
8102
 
8103
+ #: languages/vue.php:2231
8104
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8105
  msgstr ""
8106
 
8107
+ #: languages/vue.php:2234
8108
  msgid "Anonymize IP Addresses"
8109
  msgstr ""
8110
 
8111
+ #: languages/vue.php:2237
8112
  msgid "Link Attribution"
8113
  msgstr ""
8114
 
8115
+ #: languages/vue.php:2240
8116
  msgid "Enable Enhanced Link Attribution"
8117
  msgstr ""
8118
 
8119
+ #: languages/vue.php:2243
8120
  msgid "Enable Anchor Tracking"
8121
  msgstr ""
8122
 
8123
+ #: languages/vue.php:2246
8124
  msgid "Enable allowAnchor"
8125
  msgstr ""
8126
 
8127
+ #: languages/vue.php:2249
8128
  msgid "Enable allowLinker"
8129
  msgstr ""
8130
 
8131
+ #: languages/vue.php:2252
8132
  msgid "Enable Tag Links in RSS"
8133
  msgstr ""
8134
 
8135
+ #: languages/vue.php:2255
8136
  msgid "File Downloads"
8137
  msgstr ""
8138
 
8139
+ #: languages/vue.php:2258
8140
  msgid "Extensions of Files to Track as Downloads"
8141
  msgstr ""
8142
 
8143
+ #: languages/vue.php:2261
8144
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
8145
  msgstr ""
8146
 
8147
  #. Translators: Add links to the documentation.
8148
+ #: languages/vue.php:2265
8149
  msgid "Enable this setting to add the Demographics and Remarketing features to your Google Analytics tracking code. Make sure to enable Demographics and Remarketing in your Google Analytics account. We have a guide for how to do that in our %1$sknowledge base%2$s. For more information about Remarketing, we refer you to %3$sGoogle's documentation%4$s. Note that usage of this function is affected by privacy and cookie laws around the world. Be sure to follow the laws that affect your target audience."
8150
  msgstr ""
8151
 
8152
  #. Translators: Adds a link to the documentation.
8153
+ #: languages/vue.php:2269
8154
  msgid "This adds %1$sanonymizeIp%2$s, telling Google Analytics to anonymize the information sent by the tracker objects by removing the last octet of the IP address prior to its storage."
8155
  msgstr ""
8156
 
8157
  #. Translators: Adds a link to the documentation.
8158
+ #: languages/vue.php:2273
8159
  msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
8160
  msgstr ""
8161
 
8162
+ #: languages/vue.php:2276
8163
  msgid "Many WordPress \"1-page\" style themes rely on anchor tags for navigation to show virtual pages. The problem is that to Google Analytics, these are all just a single page, and it makes it hard to get meaningful statistics about pages viewed. This feature allows proper tracking in those themes."
8164
  msgstr ""
8165
 
8166
  #. Translators: Adds a link to the documentation.
8167
+ #: languages/vue.php:2280
8168
  msgid "This adds %1$sallowAnchor%2$s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
8169
  msgstr ""
8170
 
8171
  #. Translators: Adds a link to the documentation.
8172
+ #: languages/vue.php:2284
8173
  msgid "Enabling %1$scross-domain tracking (additional setup required)%2$s allows you to track users across multiple properties you own (such as example-1.com and example-2.com as a single session. It also allows you fix an issue so that when a user has to go to an off-site hosted payment gateway to finish a purchase it doesn't count it as referral traffic from that gateway but maintains the visit as part of the same session.) It is required that the other site includes a Google Analytics tracker with the same UA Code."
8174
  msgstr ""
8175
 
8176
  #. Translators: Adds a link to the documentation.
8177
+ #: languages/vue.php:2288
8178
  msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %1$shelp page%2$s for info on how to enable this feature in FeedBurner."
8179
  msgstr ""
8180
 
8181
+ #: languages/vue.php:2291
8182
  msgid "Add domain"
8183
  msgstr ""
8184
 
8185
  #. Translators: Example domain.
8186
+ #: languages/vue.php:2295
8187
  msgid "Domain (example: %s)"
8188
  msgstr ""
8189
 
8190
  #. Translators: Current site domain to be avoided.
8191
+ #: languages/vue.php:2299
8192
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8193
  msgstr ""
8194
 
8195
+ #: languages/vue.php:2302
8196
  msgid "Cross Domain Tracking"
8197
  msgstr ""
8198
 
8199
  #. Translators: Adds a link to the documentation.
8200
+ #: languages/vue.php:2306
8201
  msgid "Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s."
8202
  msgstr ""
8203
 
8204
  #. Translators: Number of days.
8205
+ #: languages/vue.php:2310
8206
  msgid "vs. Previous Day"
8207
  msgstr ""
8208
 
8209
+ #: languages/vue.php:2313
8210
  msgid "No change"
8211
  msgstr ""
8212
 
8213
+ #: languages/vue.php:2316
8214
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
8215
  msgstr ""
8216
 
8217
+ #: languages/vue.php:2319
8218
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
8219
  msgstr ""
8220
 
8221
+ #: languages/vue.php:2322
8222
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8223
  msgstr ""
8224
 
8225
+ #: languages/vue.php:2325
8226
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
8227
  msgstr ""
8228
 
8229
+ #: languages/vue.php:2328
8230
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
8231
  msgstr ""
8232
 
8233
+ #: languages/vue.php:2331
8234
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
8235
  msgstr ""
8236
 
8237
+ #: languages/vue.php:2334
8238
  msgid "Unlock search console report to see your top performing keywords in Google."
8239
  msgstr ""
8240
 
8241
+ #: languages/vue.php:2337
8242
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
8243
  msgstr ""
8244
 
8245
+ #: languages/vue.php:2340
8246
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
8247
  msgstr ""
8248
 
8249
+ #: languages/vue.php:2343
8250
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
8251
  msgstr ""
8252
 
8253
+ #: languages/vue.php:2346
8254
  msgid "Upgrade to Pro »"
8255
  msgstr ""
8256
 
8257
+ #: languages/vue.php:2349
8258
  msgid "Pro Tip:"
8259
  msgstr ""
8260
 
8261
+ #: languages/vue.php:2353
8262
  msgid "Show"
8263
  msgstr ""
8264
 
8265
+ #: languages/vue.php:2356
8266
  msgid "Hide dashboard widget"
8267
  msgstr ""
8268
 
8269
+ #: languages/vue.php:2359
8270
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
8271
  msgstr ""
8272
 
8273
+ #: languages/vue.php:2362
8274
  msgid "Yes, hide it!"
8275
  msgstr ""
8276
 
8277
+ #: languages/vue.php:2365
8278
  msgid "No, cancel!"
8279
  msgstr ""
8280
 
8281
+ #: languages/vue.php:2368
8282
  msgid "MonsterInsights Widget Hidden"
8283
  msgstr ""
8284
 
8285
+ #: languages/vue.php:2371
8286
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
8287
  msgstr ""
8288
 
8289
+ #: languages/vue.php:2377
8290
  msgid "Usage Tracking"
8291
  msgstr ""
8292
 
8293
+ #: languages/vue.php:2380
8294
  msgid "Allow Usage Tracking"
8295
  msgstr ""
8296
 
8297
+ #: languages/vue.php:2383
8298
  msgid "By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test."
8299
  msgstr ""
8300
 
8301
  #. Translators: Add links to documentation.
8302
+ #: languages/vue.php:2387
8303
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8304
  msgstr ""
8305
 
8306
  #. Translators: Make text green and add smiley face.
8307
+ #: languages/vue.php:2391
8308
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8309
  msgstr ""
8310
 
8311
  #. Translators: Add link to upgrade.
8312
+ #: languages/vue.php:2395
8313
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8314
  msgstr ""
8315
 
8316
  #. Translators: Make text green.
8317
+ #: languages/vue.php:2399
8318
  msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8319
  msgstr ""
8320
 
8321
+ #: languages/vue.php:2402
8322
  msgid "Unlock PRO Features Now"
8323
  msgstr ""
8324
 
8325
+ #: languages/vue.php:2405
8326
  msgid "Paste your license key here"
8327
  msgstr ""
8328
 
8329
+ #: languages/vue.php:2408
8330
  msgid "Verify"
8331
  msgstr ""
8332
 
8333
  #. Translators: Add link to retrieve license from account area.
8334
+ #: languages/vue.php:2412
8335
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8336
  msgstr ""
8337
 
8338
+ #: languages/vue.php:2415
8339
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8340
  msgstr ""
8341
 
8342
  #. Translators: Error status and error text.
8343
+ #: languages/vue.php:2419
8344
  msgid "Can't load errors. Error: %1$s, %2$s"
8345
  msgstr ""
8346
 
8347
+ #: languages/vue.php:2422
8348
  msgid "No options available"
8349
  msgstr ""
8350
 
8351
+ #: languages/vue.php:2425
8352
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
8353
  msgstr ""
8354
 
8355
+ #: languages/vue.php:2428
8356
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
8357
  msgstr ""
8358
 
8359
+ #: languages/vue.php:2431
8360
  msgid "1,938"
8361
  msgstr ""
8362
 
8363
+ #: languages/vue.php:2434
8364
  msgid "2+ Million Active Installs"
8365
  msgstr ""
8366
 
8367
+ #: languages/vue.php:2437
8368
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
8369
  msgstr ""
8370
 
8371
+ #: languages/vue.php:2440
8372
  msgid "Set up the proper SEO foundations in less than 10 minutes."
8373
  msgstr ""
8374
 
8375
+ #: languages/vue.php:2443
8376
  msgid "SEO Audit Checklist"
8377
  msgstr ""
8378
 
8379
+ #: languages/vue.php:2446
8380
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8381
  msgstr ""
8382
 
8383
+ #: languages/vue.php:2449
8384
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8385
  msgstr ""
8386
 
8387
+ #: languages/vue.php:2452
8388
  msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
8389
  msgstr ""
8390
 
8391
+ #: languages/vue.php:2455
8392
  msgid "Get AIOSEO for WordPress"
8393
  msgstr ""
8394
 
8395
+ #: languages/vue.php:2458
8396
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8397
  msgstr ""
8398
 
8399
+ #: languages/vue.php:2461
8400
  msgid "Try it out today, for free."
8401
  msgstr ""
8402
 
8403
+ #: languages/vue.php:2464
8404
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8405
  msgstr ""
8406
 
8407
+ #: languages/vue.php:2467
8408
  msgid "Activate and Install the Plugin with just one click!"
8409
  msgstr ""
8410
 
8411
+ #: languages/vue.php:2470
8412
  msgid "Installing AIOSEO..."
8413
  msgstr ""
8414
 
8415
+ #: languages/vue.php:2473
8416
  msgid "Congrats! All-in-One SEO Installed."
8417
  msgstr ""
8418
 
8419
+ #: languages/vue.php:2476
8420
  msgid "Switch to AIOSEO"
8421
  msgstr ""
8422
 
8423
+ #: languages/vue.php:2479
8424
  msgid "Installation Failed. Please refresh and try again."
8425
  msgstr ""
8426
 
8427
+ #: languages/vue.php:2482
8428
  msgid "Activating AIOSEO..."
8429
  msgstr ""
8430
 
8431
+ #: languages/vue.php:2485
8432
  msgid "Activate AIOSEO"
8433
  msgstr ""
8434
 
8435
+ #: languages/vue.php:2488
8436
  msgid "Activation Failed. Please refresh and try again."
8437
  msgstr ""
8438
 
8439
  #. Translators: The name of the field that is throwing a validation error.
8440
+ #: languages/vue.php:2492
8441
  msgid "%s can't be empty."
8442
  msgstr ""
8443
 
8444
+ #: languages/vue.php:2495
8445
  msgid "Duplicate values are not allowed."
8446
  msgstr ""
8447
 
8448
+ #: languages/vue.php:2498
8449
  msgid "You can add maximum 5 items."
8450
  msgstr ""
8451
 
8452
+ #: languages/vue.php:2501
8453
  msgid "At least 0 item required."
8454
  msgstr ""
8455
 
8456
+ #: languages/vue.php:2504
8457
  msgid "Add Another Link Path"
8458
  msgstr ""
8459
 
8460
+ #: languages/vue.php:2507
8461
  msgid "Remove row"
8462
  msgstr ""
8463
 
8464
+ #: languages/vue.php:2510
8465
  msgid "New"
8466
  msgstr ""
8467
 
8468
+ #: languages/vue.php:2513
8469
  msgid "Returning"
8470
  msgstr ""
8471
 
8472
+ #: languages/vue.php:2516
8473
  msgid "Top 10 Countries"
8474
  msgstr ""
8475
 
8476
+ #: languages/vue.php:2519
8477
  msgid "View Countries Report"
8478
  msgstr ""
8479
 
8480
+ #: languages/vue.php:2522
8481
  msgid "Top 10 Referrals"
8482
  msgstr ""
8483
 
8484
+ #: languages/vue.php:2525
8485
  msgid "View All Referral Sources"
8486
  msgstr ""
8487
 
8488
+ #: languages/vue.php:2528
8489
  msgid "View Full Posts/Pages Report"
8490
  msgstr ""
8491
 
8492
+ #: languages/vue.php:2531
8493
  msgid "Percentage of single-page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further."
8494
  msgstr ""
8495
 
8496
+ #: languages/vue.php:2534
8497
  msgid "This list shows the top countries your website visitors are from."
8498
  msgstr ""
8499
 
8500
+ #: languages/vue.php:2537
8501
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8502
  msgstr ""
8503
 
8504
+ #: languages/vue.php:2540
8505
  msgid "Export PDF Overview Report"
8506
  msgstr ""
8507
 
8508
+ #: languages/vue.php:2543
8509
  msgid "Reset to default"
8510
  msgstr ""
8511
 
8512
+ #: languages/vue.php:2546
8513
  msgid "The value entered does not match the required format"
8514
  msgstr ""
8515
 
8516
+ #: languages/vue.php:2549
8517
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8518
  msgstr ""
8519
 
8520
+ #: languages/vue.php:2552
8521
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8522
  msgstr ""
8523
 
8524
+ #: languages/vue.php:2555
8525
  msgid "Recommended Settings"
8526
  msgstr ""
8527
 
8528
+ #: languages/vue.php:2558
8529
  msgid "MonsterInsights recommends the following settings based on your configuration."
8530
  msgstr ""
8531
 
8532
+ #: languages/vue.php:2561
8533
  msgid "Events Tracking"
8534
  msgstr ""
8535
 
8536
+ #: languages/vue.php:2564
8537
  msgid "Must have for all click tracking on site."
8538
  msgstr ""
8539
 
8540
+ #: languages/vue.php:2567
8541
  msgid "MonsterInsights uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
8542
  msgstr ""
8543
 
8544
+ #: languages/vue.php:2570
8545
  msgid "Enhanced Link Attribution"
8546
  msgstr ""
8547
 
8548
+ #: languages/vue.php:2573
8549
  msgid "Improves the accuracy of your In-Page Analytics."
8550
  msgstr ""
8551
 
8552
+ #: languages/vue.php:2576
8553
  msgid "MonsterInsights will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
8554
  msgstr ""
8555
 
8556
+ #: languages/vue.php:2579
8557
  msgid "Install Updates Automatically"
8558
  msgstr ""
8559
 
8560
+ #: languages/vue.php:2582
8561
  msgid "Get the latest features, bug fixes, and security updates as they are released."
8562
  msgstr ""
8563
 
8564
+ #: languages/vue.php:2585
8565
  msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
8566
  msgstr ""
8567
 
8568
+ #: languages/vue.php:2588
8569
  msgid "File Download Tracking"
8570
  msgstr ""
8571
 
8572
+ #: languages/vue.php:2591
8573
  msgid "Helps you see file downloads data."
8574
  msgstr ""
8575
 
8576
+ #: languages/vue.php:2594
8577
  msgid "MonsterInsights will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
8578
  msgstr ""
8579
 
8580
+ #: languages/vue.php:2597
8581
  msgid "Helps you increase affiliate revenue."
8582
  msgstr ""
8583
 
8584
+ #: languages/vue.php:2600
8585
  msgid "MonsterInsights will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
8586
  msgstr ""
8587
 
8588
+ #: languages/vue.php:2603
8589
  msgid "Affiliate Link Tracking"
8590
  msgstr ""
8591
 
8592
+ #: languages/vue.php:2606
8593
  msgid "Who Can See Reports"
8594
  msgstr ""
8595
 
8596
+ #: languages/vue.php:2609
8597
  msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
8598
  msgstr ""
8599
 
8600
+ #: languages/vue.php:2612
8601
  msgid "Save and continue"
8602
  msgstr ""
8603
 
8604
+ #: languages/vue.php:2615
8605
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
8606
  msgstr ""
8607
 
8608
+ #: languages/vue.php:2618
8609
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
8610
  msgstr ""
8611
 
8612
+ #: languages/vue.php:2621
8613
  msgid "+ Add Role"
8614
  msgstr ""
8615
 
8616
+ #: languages/vue.php:2624
8617
  msgid "Connect MonsterInsights to Your Website"
8618
  msgstr ""
8619
 
8620
+ #: languages/vue.php:2627
8621
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
8622
  msgstr ""
8623
 
8624
+ #: languages/vue.php:2630
8625
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
8626
  msgstr ""
8627
 
8628
+ #: languages/vue.php:2633
8629
  msgid "Save and Continue"
8630
  msgstr ""
8631
 
8632
+ #: languages/vue.php:2636
8633
  msgid "UA code can't be empty"
8634
  msgstr ""
8635
 
8636
+ #: languages/vue.php:2639
8637
  msgid "Saving UA code..."
8638
  msgstr ""
8639
 
8640
+ #: languages/vue.php:2642
8641
  msgid "Allow usage tracking"
8642
  msgstr ""
8643
 
8644
+ #: languages/vue.php:2645
8645
  msgid "Adjust the sample rate so you don't exceed Google Analytics' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization."
8646
  msgstr ""
8647
 
8648
+ #: languages/vue.php:2648
8649
  msgid "Install All-in-One SEO"
8650
  msgstr ""
8651
 
8652
+ #: languages/vue.php:2651
8653
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8654
  msgstr ""
8655
 
8656
+ #: languages/vue.php:2654
8657
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8658
  msgstr ""
8659
 
8660
+ #: languages/vue.php:2657
8661
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8662
  msgstr ""
8663
 
8664
+ #: languages/vue.php:2660
8665
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8666
  msgstr ""
8667
 
8668
+ #: languages/vue.php:2663
8669
  msgid "Local SEO"
8670
  msgstr ""
8671
 
8672
+ #: languages/vue.php:2666
8673
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8674
  msgstr ""
8675
 
8676
+ #: languages/vue.php:2669
8677
  msgid "WooCommerce SEO"
8678
  msgstr ""
8679
 
8680
+ #: languages/vue.php:2672
8681
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8682
  msgstr ""
8683
 
8684
+ #: languages/vue.php:2675
8685
  msgid "SEO Custom User Roles"
8686
  msgstr ""
8687
 
8688
+ #: languages/vue.php:2678
8689
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8690
  msgstr ""
8691
 
8692
+ #: languages/vue.php:2681
8693
  msgid "Google News Sitemap"
8694
  msgstr ""
8695
 
8696
+ #: languages/vue.php:2684
8697
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8698
  msgstr ""
8699
 
8700
+ #: languages/vue.php:2687
8701
  msgid "Smart XML Sitemaps"
8702
  msgstr ""
8703
 
8704
+ #: languages/vue.php:2690
8705
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8706
  msgstr ""
8707
 
8708
+ #: languages/vue.php:2693
8709
  msgid "Social Media Integration"
8710
  msgstr ""
8711
 
8712
+ #: languages/vue.php:2696
8713
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8714
  msgstr ""
8715
 
8716
+ #: languages/vue.php:2699
8717
  msgid "TruSEO On-Page Analysis"
8718
  msgstr ""
8719
 
8720
+ #: languages/vue.php:2702
8721
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8722
  msgstr ""
8723
 
8724
+ #: languages/vue.php:2705
8725
  msgid "& Many More!"
8726
  msgstr ""
8727
 
8728
+ #: languages/vue.php:2708
8729
  msgid "Installing. Please wait.."
8730
  msgstr ""
8731
 
8732
+ #: languages/vue.php:2711
8733
  msgid "Install All-in-One-SEO"
8734
  msgstr ""
8735
 
8736
+ #: languages/vue.php:2714
8737
  msgid "Welcome to MonsterInsights!"
8738
  msgstr ""
8739
 
8740
+ #: languages/vue.php:2717
8741
  msgid "Let's get you set up."
8742
  msgstr ""
8743
 
8744
+ #: languages/vue.php:2720
8745
  msgid "Which category best describes your website?"
8746
  msgstr ""
8747
 
8748
+ #: languages/vue.php:2723
8749
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
8750
  msgstr ""
8751
 
8752
+ #: languages/vue.php:2726
8753
  msgid "Business Website"
8754
  msgstr ""
8755
 
8756
  #. Translators: Make text bold.
8757
+ #: languages/vue.php:2730
8758
  msgid "Publisher %1$s(Blog)%2$s"
8759
  msgstr ""
8760
 
8761
+ #: languages/vue.php:2733
8762
  msgid "Ecommerce"
8763
  msgstr ""
8764
 
8765
+ #: languages/vue.php:2736
8766
  msgid "Caching"
8767
  msgstr ""
8768
 
8769
+ #: languages/vue.php:2739
8770
  msgid "Enable Data Caching"
8771
  msgstr ""
8772
 
8773
+ #: languages/vue.php:2742
8774
  msgid "Refresh Cache Every"
8775
  msgstr ""
8776
 
8777
+ #: languages/vue.php:2745
8778
  msgid "Choose how often to refresh the cache."
8779
  msgstr ""
8780
 
8781
+ #: languages/vue.php:2748
8782
  msgid "Enable Ajaxify"
8783
  msgstr ""
8784
 
8785
+ #: languages/vue.php:2751
8786
  msgid "Ajaxify Widget"
8787
  msgstr ""
8788
 
8789
+ #: languages/vue.php:2754
8790
  msgid "Use to bypass page caching."
8791
  msgstr ""
8792
 
8793
+ #: languages/vue.php:2757
8794
  msgid "Empty Cache"
8795
  msgstr ""
8796
 
8797
+ #: languages/vue.php:2760
8798
  msgid "Click to manually wipe the cache right now."
8799
  msgstr ""
8800
 
8801
+ #: languages/vue.php:2763
8802
  msgid "Popular posts cache emptied"
8803
  msgstr ""
8804
 
8805
+ #: languages/vue.php:2766
8806
  msgid "Error emptying the popular posts cache. Please try again."
8807
  msgstr ""
8808
 
8809
+ #: languages/vue.php:2769
8810
  msgid "Choose Theme"
8811
  msgstr ""
8812
 
8813
+ #: languages/vue.php:2772
8814
  msgid "Widget Styling"
8815
  msgstr ""
8816
 
8817
+ #: languages/vue.php:2775
8818
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
8819
  msgstr ""
8820
 
8821
+ #: languages/vue.php:2778
8822
  msgid "Sort By"
8823
  msgstr ""
8824
 
8825
+ #: languages/vue.php:2781
8826
  msgid "Choose how you'd like the widget to determine your popular posts."
8827
  msgstr ""
8828
 
8829
+ #: languages/vue.php:2784
8830
  msgid "Display Title"
8831
  msgstr ""
8832
 
8833
+ #: languages/vue.php:2790
8834
  msgid "Title your widget and set its display preferences."
8835
  msgstr ""
8836
 
8837
+ #: languages/vue.php:2793
8838
  msgid "Include in Post Types"
8839
  msgstr ""
8840
 
8841
+ #: languages/vue.php:2796
8842
  msgid "Exclude from specific posts"
8843
  msgstr ""
8844
 
8845
  #. Translators: Placeholders make the text bold.
8846
+ #: languages/vue.php:2800
8847
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
8848
  msgstr ""
8849
 
8850
  #. Translators: Placeholders make the text bold.
8851
+ #: languages/vue.php:2804
8852
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
8853
  msgstr ""
8854
 
8855
+ #: languages/vue.php:2807
8856
  msgid "Loading Themes"
8857
  msgstr ""
8858
 
8859
  #. Translators: placeholders make text small.
8860
+ #: languages/vue.php:2811
8861
  msgid "Default Styles %1$s- As seen above.%2$s"
8862
  msgstr ""
8863
 
8864
  #. Translators: placeholders make text small.
8865
+ #: languages/vue.php:2815
8866
  msgid "No Styles %1$s- Use your own CSS.%2$s"
8867
  msgstr ""
8868
 
8869
  #. Translators: placeholders make text small.
8870
+ #: languages/vue.php:2819
8871
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
8872
  msgstr ""
8873
 
8874
  #. Translators: placeholders make text small.
8875
+ #: languages/vue.php:2823
8876
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
8877
  msgstr ""
8878
 
8879
  #. Translators: placeholders make text small.
8880
+ #: languages/vue.php:2827
8881
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
8882
  msgstr ""
8883
 
8884
+ #: languages/vue.php:2830
8885
  msgid "Placement"
8886
  msgstr ""
8887
 
8888
+ #: languages/vue.php:2833
8889
  msgid "Choose how you'd like to place the widget."
8890
  msgstr ""
8891
 
8892
+ #: languages/vue.php:2836
8893
  msgid "Insert After"
8894
  msgstr ""
8895
 
8896
+ #: languages/vue.php:2839
8897
  msgid "Choose where in the post body the widget will be placed."
8898
  msgstr ""
8899
 
8900
+ #: languages/vue.php:2842
8901
  msgid "Customize Design"
8902
  msgstr ""
8903
 
8904
+ #: languages/vue.php:2845
8905
  msgid "words"
8906
  msgstr ""
8907
 
8908
+ #: languages/vue.php:2848
8909
  msgid "Please select at least one post to display."
8910
  msgstr ""
8911
 
8912
  #. Translators: placeholders make text small.
8913
+ #: languages/vue.php:2852
8914
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
8915
  msgstr ""
8916
 
8917
  #. Translators: placeholders make text small.
8918
+ #: languages/vue.php:2856
8919
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
8920
  msgstr ""
8921
 
8922
+ #: languages/vue.php:2859
8923
  msgid "Facebook Instant Articles"
8924
  msgstr ""
8925
 
8926
+ #: languages/vue.php:2862
8927
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8928
  msgstr ""
8929
 
8930
+ #: languages/vue.php:2865
8931
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8932
  msgstr ""
8933
 
8934
+ #: languages/vue.php:2868
8935
  msgid "Ads Tracking"
8936
  msgstr ""
8937
 
8938
+ #: languages/vue.php:2871
8939
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8940
  msgstr ""
8941
 
8942
+ #: languages/vue.php:2874
8943
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8944
  msgstr ""
8945
 
8946
+ #: languages/vue.php:2877
8947
  msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
8948
  msgstr ""
8949
 
8950
+ #: languages/vue.php:2880
8951
  msgid "Jack Brown"
8952
  msgstr ""
8953
 
8954
+ #: languages/vue.php:2883
8955
  msgid "PJB Internet Marketing"
8956
  msgstr ""
8957
 
8958
+ #: languages/vue.php:2886
8959
  msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
8960
  msgstr ""
8961
 
8962
+ #: languages/vue.php:2889
8963
  msgid "Joel Steinmann"
8964
  msgstr ""
8965
 
8966
+ #: languages/vue.php:2892
8967
  msgid "CEO, Solergo"
8968
  msgstr ""
8969
 
8970
+ #: languages/vue.php:2895
8971
  msgid "Recommended Addons"
8972
  msgstr ""
8973
 
8974
+ #: languages/vue.php:2898
8975
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
8976
  msgstr ""
8977
 
8978
+ #: languages/vue.php:2901
8979
  msgid "Other Addons"
8980
  msgstr ""
8981
 
8982
+ #: languages/vue.php:2904
8983
  msgid "View all MonsterInsights addons"
8984
  msgstr ""
8985
 
8986
+ #: languages/vue.php:2907
8987
  msgid "Scroll Tracking"
8988
  msgstr ""
8989
 
8990
+ #: languages/vue.php:2910
8991
  msgid "Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions."
8992
  msgstr ""
8993
 
8994
+ #: languages/vue.php:2913
8995
  msgid ""
8996
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
8997
  " and other privacy regulations."
8998
  msgstr ""
8999
 
9000
+ #: languages/vue.php:2917
9001
  msgid "EU Compliance"
9002
  msgstr ""
9003
 
9004
+ #: languages/vue.php:2920
9005
  msgid "Compatibility mode"
9006
  msgstr ""
9007
 
9008
+ #: languages/vue.php:2923
9009
  msgid "Enable _gtagTracker Compatibility"
9010
  msgstr ""
9011
 
9012
  #. Translators: Placeholder gets replaced with default GA js function.
9013
+ #: languages/vue.php:2927
9014
  msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
9015
  msgstr ""
9016
 
9017
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9018
+ #: languages/vue.php:2931
9019
  msgid "%1$sPage %3$s%2$s of %4$s"
9020
  msgstr ""
9021
 
9022
+ #: languages/vue.php:2935
9023
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9024
  msgid "Theme Preview"
9025
  msgstr ""
9026
 
9027
+ #: languages/vue.php:2938
9028
  msgid "Wide"
9029
  msgstr ""
9030
 
9031
+ #: languages/vue.php:2941
9032
  msgid "Narrow"
9033
  msgstr ""
9034
 
9035
+ #: languages/vue.php:2944
9036
  msgid "Title"
9037
  msgstr ""
9038
 
9040
  msgid "Color"
9041
  msgstr ""
9042
 
9043
+ #: languages/vue.php:2950
9044
  msgid "Size"
9045
  msgstr ""
9046
 
9047
+ #: languages/vue.php:2953
9048
  msgid "Border"
9049
  msgstr ""
9050
 
9051
+ #: languages/vue.php:2956
9052
  msgid "Author/Date"
9053
  msgstr ""
9054
 
9055
+ #: languages/vue.php:2959
9056
  msgid "Label"
9057
  msgstr ""
9058
 
9059
+ #: languages/vue.php:2962
9060
  msgid "Background"
9061
  msgstr ""
9062
 
9063
+ #: languages/vue.php:2974
9064
  msgid "Choose which content you would like displayed in the widget."
9065
  msgstr ""
9066
 
9067
+ #: languages/vue.php:2986
9068
  msgid "Comments"
9069
  msgstr ""
9070
 
9071
+ #: languages/vue.php:2992
9072
  msgid "Choose how many posts you’d like displayed in the widget."
9073
  msgstr ""
9074
 
9075
+ #: languages/vue.php:2995
9076
  msgid "Popular Posts data can be fetched correctly"
9077
  msgstr ""
9078
 
9079
+ #: languages/vue.php:2998
9080
  msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
9081
  msgstr ""
9082
 
9083
+ #: languages/vue.php:3001
9084
  msgid "Close"
9085
  msgstr ""
9086
 
9087
+ #: languages/vue.php:3005
9088
  msgid "Add Top 5 Posts from Google Analytics"
9089
  msgstr ""
9090
 
9091
+ #: languages/vue.php:3008
9092
  msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both MonsterInsights and Google Analytics settings."
9093
  msgstr ""
9094
 
9095
+ #: languages/vue.php:3011
9096
  msgid "Test Automated Posts"
9097
  msgstr ""
9098
 
9099
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9100
+ #: languages/vue.php:3015
9101
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9102
  msgstr ""
9103
 
9104
+ #: languages/vue.php:3019
9105
  msgid "Automated + Curated"
9106
  msgstr ""
9107
 
9108
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9109
+ #: languages/vue.php:3023
9110
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
9111
  msgstr ""
9112
 
9113
  #. Translators: Placeholder gets replaced with current license version.
9114
+ #: languages/vue.php:3027
9115
  msgid "Pro version is required."
9116
  msgstr ""
9117
 
9118
+ #: languages/vue.php:3030
9119
  msgid "Verifying Popular Posts data"
9120
  msgstr ""
9121
 
9122
+ #: languages/vue.php:3033
9123
  msgid "Select posts/search"
9124
  msgstr ""
9125
 
9126
+ #: languages/vue.php:3036
9127
  msgid "Oops! No posts found."
9128
  msgstr ""
9129
 
9130
+ #: languages/vue.php:3039
9131
  msgid "Search by post title"
9132
  msgstr ""
9133
 
9134
+ #: languages/vue.php:3042
9135
  msgid "Can't load posts."
9136
  msgstr ""
9137
 
9138
+ #: languages/vue.php:3045
9139
  msgid "SharedCount API Key"
9140
  msgstr ""
9141
 
9142
+ #: languages/vue.php:3048
9143
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9144
  msgstr ""
9145
 
9146
+ #: languages/vue.php:3051
9147
  msgid "Start Indexing"
9148
  msgstr ""
9149
 
9150
+ #: languages/vue.php:3054
9151
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9152
  msgstr ""
9153
 
9154
+ #: languages/vue.php:3057
9155
  msgid "Indexing completed, counts will update automatically every day."
9156
  msgstr ""
9157
 
9158
+ #: languages/vue.php:3061
9159
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9160
  msgstr ""
9161
 
9163
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9164
  msgstr ""
9165
 
9166
+ #: languages/vue.php:3069
9167
  msgid "Icon"
9168
  msgstr ""
9169
 
9170
  #. Translators: Minimum and maximum number that can be used.
9171
+ #: languages/vue.php:3073
9172
  msgid "Please enter a value between %1$s and %2$s"
9173
  msgstr ""
9174
 
9175
  #. Translators: The minimum set value.
9176
+ #: languages/vue.php:3077
9177
  msgid "Please enter a value higher than %s"
9178
  msgstr ""
9179
 
9180
  #. Translators: The maximum set value.
9181
+ #: languages/vue.php:3081
9182
  msgid "Please enter a value lower than %s"
9183
  msgstr ""
9184
 
9185
+ #: languages/vue.php:3084
9186
  msgid "Please enter a number"
9187
  msgstr ""
9188
 
9189
+ #: languages/vue.php:3087
9190
  msgid "Value has to be a round number"
9191
  msgstr ""
9192
 
9193
+ #: languages/vue.php:3090
9194
  msgid "Export PDF Report"
9195
  msgstr ""
9196
 
9197
+ #: languages/vue.php:3093
9198
  msgid "You can export PDF reports only in the PRO version."
9199
  msgstr ""
9200
 
9201
+ #: languages/vue.php:3096
9202
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
9203
  msgstr ""
9204
 
9205
+ #: languages/vue.php:3099
9206
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!"
9207
  msgstr ""
9208
 
9209
+ #: languages/vue.php:3102
9210
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
9211
  msgstr ""
9212
 
9213
  #. Translators: Makes text bold.
9214
+ #: languages/vue.php:3106
9215
  msgid "Use coupon code %1$sLITEUPGRADE%2$s"
9216
  msgstr ""
9217
 
9218
  #. Translators: Make text green.
9219
+ #: languages/vue.php:3110
9220
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9221
  msgstr ""
9222
 
9223
  #. Translators: Placeholder adds a line break.
9224
+ #: languages/vue.php:3114
9225
  msgid "You can customize your %sdate range only in the PRO version."
9226
  msgstr ""
9227
 
9228
+ #: languages/vue.php:3117
9229
  msgid "Help Us Improve"
9230
  msgstr ""
9231
 
9232
+ #: languages/vue.php:3120
9233
  msgid "Help us better understand our users and their website needs."
9234
  msgstr ""
9235
 
9236
  #. Translators: Adds a link to the documentation.
9237
+ #: languages/vue.php:3124
9238
  msgid "If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s"
9239
  msgstr ""
9240
 
9241
+ #: languages/vue.php:3127
9242
  msgid "Website profile"
9243
  msgstr ""
9244
 
9245
+ #: languages/vue.php:3130
9246
  msgid "Active profile"
9247
  msgstr ""
9248
 
9249
+ #: languages/vue.php:3133
9250
  msgid "Skip and Keep Connection"
9251
  msgstr ""
9252
 
9253
+ #: languages/vue.php:3136
9254
  msgid "This feature requires MonsterInsights Pro"
9255
  msgstr ""
9256
 
9257
+ #: languages/vue.php:3139
9258
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
9259
  msgstr ""
9260
 
9261
+ #: languages/vue.php:3142
9262
  msgid "Upgrade to Pro and Unlock Popular Products"
9263
  msgstr ""
9264
 
9265
+ #: languages/vue.php:3145
9266
  msgid "View all Pro features"
9267
  msgstr ""
9268
 
9269
+ #: languages/vue.php:3148
9270
  msgid "Days"
9271
  msgstr ""
9272
 
9273
  #. Translators: placeholders make text small.
9274
+ #: languages/vue.php:3152
9275
  msgid "7 days"
9276
  msgstr ""
9277
 
9278
+ #: languages/vue.php:3155
9279
  msgid "30 days"
9280
  msgstr ""
9281
 
9282
+ #: languages/vue.php:3158
9283
  msgid "Custom"
9284
  msgstr ""
9285
 
9286
+ #: languages/vue.php:3161
9287
  msgid "Only Show Posts from These Categories"
9288
  msgstr ""
9289
 
9290
+ #: languages/vue.php:3164
9291
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
9292
  msgstr ""
9293
 
9294
+ #: languages/vue.php:3167
9295
  msgid "Multiple Entries"
9296
  msgstr ""
9297
 
9298
+ #: languages/vue.php:3170
9299
  msgid "Total Number of Widgets to Show"
9300
  msgstr ""
9301
 
9302
+ #: languages/vue.php:3173
9303
  msgid "Choose how many widgets will be placed in a single Post."
9304
  msgstr ""
9305
 
9306
+ #: languages/vue.php:3176
9307
  msgid "Minimum Distance Between Widgets"
9308
  msgstr ""
9309
 
9310
+ #: languages/vue.php:3179
9311
  msgid "Choose the distance between widgets."
9312
  msgstr ""
9313
 
9314
+ #: languages/vue.php:3182
9315
  msgid "Minimum Word Count to Display Multiple Widgets"
9316
  msgstr ""
9317
 
9318
+ #: languages/vue.php:3185
9319
  msgid "Choose the minimum word count for a Post to have multiple entries."
9320
  msgstr ""
9321
 
9322
+ #: languages/vue.php:3188
9323
  msgid "Pro version is required"
9324
  msgstr ""
9325
 
9326
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9327
+ #: languages/vue.php:3192
9328
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
9329
  msgstr ""
9330
 
9331
+ #: languages/vue.php:3195
9332
  msgid "Unlock with %s"
9333
  msgstr ""
9334
 
9335
+ #: languages/vue.php:3198
9336
  msgid "Automatic Placement"
9337
  msgstr ""
9338
 
9339
+ #: languages/vue.php:3201
9340
  msgid "Display using Gutenberg Blocks"
9341
  msgstr ""
9342
 
9343
+ #: languages/vue.php:3204
9344
  msgid "Embed Options"
9345
  msgstr ""
9346
 
9347
+ #: languages/vue.php:3207
9348
  msgid "All Embed Options can be used in conjunction with one another."
9349
  msgstr ""
9350
 
9351
+ #: languages/vue.php:3210
9352
  msgid "Using the Gutenberg Block"
9353
  msgstr ""
9354
 
9355
+ #: languages/vue.php:3213
9356
  msgid "Using Automatic Embed"
9357
  msgstr ""
9358
 
9359
+ #: languages/vue.php:3216
9360
  msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
9361
  msgstr ""
9362
 
9363
+ #: languages/vue.php:3219
9364
  msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
9365
  msgstr ""
9366
 
9367
+ #: languages/vue.php:3222
9368
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9369
  msgstr ""
9370
 
9371
+ #: languages/vue.php:3225
9372
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9373
  msgstr ""
9374
 
9375
+ #: languages/vue.php:3228
9376
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9377
  msgstr ""
9378
 
9379
+ #: languages/vue.php:3231
9380
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9381
  msgstr ""
9382
 
9383
+ #: languages/vue.php:3234
9384
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9385
  msgstr ""
9386
 
9387
+ #: languages/vue.php:3237
9388
  msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
9389
  msgstr ""
9390
 
9391
+ #: languages/vue.php:3240
9392
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - MonsterInsights widget and drag it into the desired Sidebar on the right."
9393
  msgstr ""
9394
 
9395
+ #: languages/vue.php:3243
9396
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9397
  msgstr ""
9398
 
9399
+ #: languages/vue.php:3246
9400
  msgid "Display using a Shortcode"
9401
  msgstr ""
9402
 
9403
+ #: languages/vue.php:3249
9404
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9405
  msgstr ""
9406
 
9407
+ #: languages/vue.php:3252
9408
  msgid "Copy Shortcode"
9409
  msgstr ""
9410
 
9411
+ #: languages/vue.php:3255
9412
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9413
  msgstr ""
9414
 
9415
+ #: languages/vue.php:3258
9416
  msgid "Enable Automatic Placement"
9417
  msgstr ""
9418
 
9419
+ #: languages/vue.php:3261
9420
  msgid "Display in a Sidebar"
9421
  msgstr ""
9422
 
9423
+ #: languages/vue.php:3264
9424
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9425
  msgstr ""
9426
 
9427
+ #: languages/vue.php:3267
9428
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9429
  msgstr ""
9430
 
9431
+ #: languages/vue.php:3270
9432
  msgid "Display Method"
9433
  msgstr ""
9434
 
9435
+ #: languages/vue.php:3273
9436
  msgid "There are two ways to manual include the widget in your posts."
9437
  msgstr ""
9438
 
9439
+ #: languages/vue.php:3276
9440
  msgid "Using the Shortcode"
9441
  msgstr ""
9442
 
9443
+ #: languages/vue.php:3279
9444
  msgid "Learn how to insert the widget using Gutenberg blocks."
9445
  msgstr ""
9446
 
9447
+ #: languages/vue.php:3282
9448
  msgid "Learn how to insert the widget using out Shortcode."
9449
  msgstr ""
9450
 
9451
+ #: languages/vue.php:3285
9452
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9453
  msgstr ""
9454
 
9455
+ #: languages/vue.php:3288
9456
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
9457
  msgstr ""
9458
 
9459
+ #: languages/vue.php:3291
9460
  msgid "Shortcode"
9461
  msgstr ""
9462
 
9463
+ #: languages/vue.php:3294
9464
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9465
  msgstr ""
9466
 
9467
+ #: languages/vue.php:3297
9468
  msgid "Facebook Instant Articleasdasdasds"
9469
  msgstr ""
9470
 
9471
+ #: languages/vue.php:3300
9472
  msgid "Media"
9473
  msgstr ""
9474
 
9475
+ #: languages/vue.php:3303
9476
  msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
9477
  msgstr ""
9478
 
9479
+ #: languages/vue.php:3306
9480
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
9481
  msgstr ""
9482
 
9483
+ #: languages/vue.php:3309
9484
  msgid "Top Affilliate Links"
9485
  msgstr ""
9486
 
9487
+ #: languages/vue.php:3312
9488
  msgid "Scroll Depth"
9489
  msgstr ""
9490
 
9491
+ #: languages/vue.php:3315
9492
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
9493
  msgstr ""
9494
 
9495
+ #: languages/vue.php:3318
9496
  msgid "10+ eCommerce Integrations"
9497
  msgstr ""
9498
 
9499
+ #: languages/vue.php:3321
9500
  msgid "Average Order Value"
9501
  msgstr ""
9502
 
9503
+ #: languages/vue.php:3324
9504
  msgid "Total Revenue"
9505
  msgstr ""
9506
 
9507
+ #: languages/vue.php:3327
9508
  msgid "Number of Transactions"
9509
  msgstr ""
9510
 
9511
+ #: languages/vue.php:3330
9512
  msgid "Increase Engagement and Unlock New Insights About Your Site."
9513
  msgstr ""
9514
 
9515
+ #: languages/vue.php:3333
9516
  msgid "User ID Tracking"
9517
  msgstr ""
9518
 
9519
+ #: languages/vue.php:3336
9520
  msgid "Post Types"
9521
  msgstr ""
9522
 
9523
+ #: languages/vue.php:3339
9524
  msgid "Tag Tracking"
9525
  msgstr ""
9526
 
9527
+ #: languages/vue.php:3342
9528
  msgid "Categories"
9529
  msgstr ""
9530
 
9531
+ #: languages/vue.php:3345
9532
  msgid "SEO Scores"
9533
  msgstr ""
9534
 
9535
+ #: languages/vue.php:3348
9536
  msgid "Publish Times"
9537
  msgstr ""
9538
 
9539
+ #: languages/vue.php:3351
9540
  msgid "Focus Keywords"
9541
  msgstr ""
9542
 
9543
+ #: languages/vue.php:3354
9544
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
9545
  msgstr ""
9546
 
9547
+ #: languages/vue.php:3357
9548
  msgid "Conversion Counts"
9549
  msgstr ""
9550
 
9551
+ #: languages/vue.php:3360
9552
  msgid "Impression Counts"
9553
  msgstr ""
9554
 
9555
+ #: languages/vue.php:3363
9556
  msgid "Conversion Rates"
9557
  msgstr ""
9558
 
9559
+ #: languages/vue.php:3366
9560
  msgid "See Exactly How Visitors Find Your Website From Google."
9561
  msgstr ""
9562
 
9563
+ #: languages/vue.php:3369
9564
  msgid "Top Google Search Terms"
9565
  msgstr ""
9566
 
9567
+ #: languages/vue.php:3372
9568
  msgid "Number of Clicks"
9569
  msgstr ""
9570
 
9571
+ #: languages/vue.php:3375
9572
  msgid "Click-through Ratio"
9573
  msgstr ""
9574
 
9575
+ #: languages/vue.php:3378
9576
  msgid "Average Results Position"
9577
  msgstr ""
9578
 
9579
+ #: languages/vue.php:3381
9580
  msgid "Realtime Report"
9581
  msgstr ""
9582
 
9583
+ #: languages/vue.php:3384
9584
  msgid "See Who And What is Happening on Your Website in Realtime."
9585
  msgstr ""
9586
 
9587
+ #: languages/vue.php:3387
9588
  msgid "Top Page Views"
9589
  msgstr ""
9590
 
9591
+ #: languages/vue.php:3390
9592
  msgid "Current Active Users"
9593
  msgstr ""
9594
 
9595
+ #: languages/vue.php:3393
9596
  msgid "Top Referral Sources"
9597
  msgstr ""
9598
 
9599
+ #: languages/vue.php:3396
9600
  msgid "Top Countries"
9601
  msgstr ""
9602
 
9603
+ #: languages/vue.php:3399
9604
  msgid "Top Cities"
9605
  msgstr ""
9606
 
9607
+ #: languages/vue.php:3402
9608
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
9609
  msgstr ""
9610
 
9611
+ #: languages/vue.php:3405
9612
  msgid "Overall Site Speed Score"
9613
  msgstr ""
9614
 
9615
+ #: languages/vue.php:3408
9616
  msgid "Server Response Times"
9617
  msgstr ""
9618
 
9619
+ #: languages/vue.php:3411
9620
  msgid "Mobile and Desktop Scores"
9621
  msgstr ""
9622
 
9623
+ #: languages/vue.php:3414
9624
  msgid "First Contentful Paint"
9625
  msgstr ""
9626
 
9627
+ #: languages/vue.php:3417
9628
  msgid "Automatic Recommendations"
9629
  msgstr ""
9630
 
9631
+ #: languages/vue.php:3420
9632
  msgid "Total Blocking Time"
9633
  msgstr ""
9634
 
9635
+ #: languages/vue.php:3423
9636
  msgid "On-Demand Audits"
9637
  msgstr ""
9638
 
9639
+ #: languages/vue.php:3426
9640
  msgid "Time to Interactive"
9641
  msgstr ""
9642
 
9643
+ #: languages/vue.php:3429
9644
  msgid "2021 Year in Review"
9645
  msgstr ""
9646
 
9647
+ #: languages/vue.php:3432
9648
  msgid "Realtime"
9649
  msgstr ""
9650
 
9651
  #. Translators: Placeholders are used for making text bold and adding a link.
9652
+ #: languages/vue.php:3436
9653
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9654
  msgstr ""
9655
 
9656
+ #: languages/vue.php:3439
9657
  msgid "Featured"
9658
  msgstr ""
9659
 
9660
+ #: languages/vue.php:3442
9661
  msgid "Traffic"
9662
  msgstr ""
9663
 
9664
+ #: languages/vue.php:3445
9665
  msgid "Revenue"
9666
  msgstr ""
9667
 
9668
+ #: languages/vue.php:3448
9669
  msgid "Guides & Resources"
9670
  msgstr ""
9671
 
9672
+ #: languages/vue.php:3451
9673
  msgid "Upgrade and Unlock"
9674
  msgstr ""
9675
 
9676
+ #: languages/vue.php:3454
9677
  msgid "What’s in the %1$s?"
9678
  msgstr ""
9679
 
9680
+ #: languages/vue.php:3457
9681
  msgid "%1$sPlus%2$s, upgrading to Pro will unlock %1$sall%2$s advanced reports, tracking, and integrations. %3$sLearn more about Pro%4$s"
9682
  msgstr ""
9683
 
9684
+ #: languages/vue.php:3460
9685
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9686
  msgstr ""
9687
 
9688
+ #: languages/vue.php:3463
9689
  msgid "Your 2021 Analytics Report"
9690
  msgstr ""
9691
 
9692
+ #: languages/vue.php:3469
9693
  msgid "January 1, 2021 - December 31, 2021"
9694
  msgstr ""
9695
 
9696
+ #: languages/vue.php:3472
9697
  msgid "A Tip for 2022"
9698
  msgstr ""
9699
 
9700
+ #: languages/vue.php:3475
9701
  msgid "A Tip For 2022"
9702
  msgstr ""
9703
 
9704
+ #: languages/vue.php:3478
9705
  msgid "Here's to an amazing 2022!"
9706
  msgstr ""
9707
 
9708
+ #: languages/vue.php:3481
9709
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9710
  msgstr ""
9711
 
9712
+ #: languages/vue.php:3484
9713
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9714
  msgstr ""
9715
 
9716
+ #: languages/vue.php:3487
9717
  msgid "Copyright MonsterInsights, 2022"
9718
  msgstr ""
9719
 
9720
  #. Translators: Number of minutes spent on site.
9721
+ #: languages/vue.php:3491
9722
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9723
  msgstr ""
9724
 
9725
+ #: languages/vue.php:3494
9726
  msgid "RafflePress"
9727
  msgstr ""
9728
 
9729
+ #: languages/vue.php:3497
9730
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9731
  msgstr ""
9732
 
9733
+ #: languages/vue.php:3500
9734
  msgid "Constant Contact"
9735
  msgstr ""
9736
 
9737
+ #: languages/vue.php:3503
9738
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9739
  msgstr ""
9740
 
9741
+ #: languages/vue.php:3506
9742
  msgid "SEMRUSH"
9743
  msgstr ""
9744
 
9745
+ #: languages/vue.php:3509
9746
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9747
  msgstr ""
9748
 
9749
+ #: languages/vue.php:3512
9750
  msgid "Engagement Tools"
9751
  msgstr ""
9752
 
9753
+ #: languages/vue.php:3515
9754
  msgid "WPForms"
9755
  msgstr ""
9756
 
9757
+ #: languages/vue.php:3518
9758
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9759
  msgstr ""
9760
 
9761
+ #: languages/vue.php:3521
9762
  msgid "OptinMonster"
9763
  msgstr ""
9764
 
9765
+ #: languages/vue.php:3524
9766
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9767
  msgstr ""
9768
 
9769
+ #: languages/vue.php:3527
9770
  msgid "Smash Balloon - Facebook"
9771
  msgstr ""
9772
 
9773
+ #: languages/vue.php:3530
9774
  msgid "Smash Balloon - Instagram"
9775
  msgstr ""
9776
 
9777
+ #: languages/vue.php:3533
9778
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9779
  msgstr ""
9780
 
9781
+ #: languages/vue.php:3536
9782
  msgid "Popular Posts by MonsterInsights"
9783
  msgstr ""
9784
 
9785
+ #: languages/vue.php:3539
9786
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9787
  msgstr ""
9788
 
9789
+ #: languages/vue.php:3542
9790
  msgid "Popular Products by MonsterInsights"
9791
  msgstr ""
9792
 
9793
+ #: languages/vue.php:3545
9794
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9795
  msgstr ""
9796
 
9797
+ #: languages/vue.php:3548
9798
  msgid "Revenue Tools"
9799
  msgstr ""
9800
 
9801
+ #: languages/vue.php:3551
9802
  msgid "SeedProd"
9803
  msgstr ""
9804
 
9805
+ #: languages/vue.php:3554
9806
  msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
9807
  msgstr ""
9808
 
9809
+ #: languages/vue.php:3557
9810
  msgid "Featured Tools"
9811
  msgstr ""
9812
 
9813
+ #: languages/vue.php:3560
9814
  msgid "Easy Affiliate"
9815
  msgstr ""
9816
 
9817
+ #: languages/vue.php:3563
9818
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
9819
  msgstr ""
9820
 
9821
+ #: languages/vue.php:3566
9822
  msgid "SearchWP"
9823
  msgstr ""
9824
 
9825
+ #: languages/vue.php:3569
9826
  msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
9827
  msgstr ""
9828
 
9829
+ #: languages/vue.php:3572
9830
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9831
  msgstr ""
9832
 
9833
+ #: languages/vue.php:3575
9834
  msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
9835
  msgstr ""
9836
 
9837
+ #: languages/vue.php:3578
9838
  msgid "Thirsty Affiliates"
9839
  msgstr ""
9840
 
9841
+ #: languages/vue.php:3581
9842
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9843
  msgstr ""
9844
 
9845
+ #: languages/vue.php:3584
9846
  msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
9847
  msgstr ""
9848
 
9849
+ #: languages/vue.php:3587
9850
  msgid "Advanced Coupons"
9851
  msgstr ""
9852
 
9853
+ #: languages/vue.php:3590
9854
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9855
  msgstr ""
9856
 
9857
+ #: languages/vue.php:3593
9858
  msgid "PrettyLinks"
9859
  msgstr ""
9860
 
9861
+ #: languages/vue.php:3596
9862
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9863
  msgstr ""
9864
 
9865
+ #: languages/vue.php:3599
9866
  msgid "Install Now"
9867
  msgstr ""
9868
 
9869
+ #: languages/vue.php:3602
9870
  msgid "Online Marketing Guides & Resources"
9871
  msgstr ""
9872
 
9873
+ #: languages/vue.php:3605
9874
  msgid "MonsterInsights Pro"
9875
  msgstr ""
9876
 
9877
+ #: languages/vue.php:3608
9878
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9879
  msgstr ""
9880
 
9881
+ #: languages/vue.php:3611
9882
  msgid "Traffic Tools"
9883
  msgstr ""
9884
 
9885
+ #: languages/vue.php:3614
9886
  msgid "All in One SEO (AIOSEO)"
9887
  msgstr ""
9888
 
9889
+ #: languages/vue.php:3617
9890
  msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
9891
  msgstr ""
9892
 
9893
+ #: languages/vue.php:3620
9894
  msgid "PushEngage"
9895
  msgstr ""
9896
 
9897
+ #: languages/vue.php:3623
9898
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9899
  msgstr ""
9900
 
9901
+ #: languages/vue.php:3626
9902
  msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9903
  msgstr ""
9904
 
9905
+ #: languages/vue.php:3629
9906
  msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
9907
  msgstr ""
9908
 
9909
+ #: languages/vue.php:3632
9910
  msgid "Media Tracking"
9911
  msgstr ""
9912
 
9913
+ #: languages/vue.php:3635
9914
  msgid "Get Started"
9915
  msgstr ""
9916
 
9917
+ #: languages/vue.php:3638
9918
  msgid "Awesome! Tracking and Analytics are All Setup!"
9919
  msgstr ""
9920
 
9921
+ #: languages/vue.php:3641
9922
  msgid "MonsterInsights is connected to Google Analytics and data is being collected."
9923
  msgstr ""
9924
 
9925
+ #: languages/vue.php:3644
9926
  msgid "Complete Setup without Upgrading"
9927
  msgstr ""
9928
 
9929
+ #: languages/vue.php:3647
9930
  msgid "Success"
9931
  msgstr ""
9932
 
9933
+ #: languages/vue.php:3650
9934
  msgid "Connected to Google Analytics"
9935
  msgstr ""
9936
 
9937
+ #: languages/vue.php:3653
9938
  msgid "Tracking Code Installed"
9939
  msgstr ""
9940
 
9941
+ #: languages/vue.php:3656
9942
  msgid "Data Being Collected"
9943
  msgstr ""
9944
 
9945
  #. Translators: Add link to retrieve license from account area.
9946
+ #: languages/vue.php:3660
9947
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO!"
9948
  msgstr ""
9949
 
9950
+ #: languages/vue.php:3663
9951
  msgid "Verify License Key"
9952
  msgstr ""
9953
 
9954
+ #: languages/vue.php:3666
9955
  msgid "Upgrade to Unlock These Features"
9956
  msgstr ""
9957
 
9958
+ #: languages/vue.php:3669
9959
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9960
  msgstr ""
9961
 
9962
+ #: languages/vue.php:3672
9963
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9964
  msgstr ""
9965
 
9966
+ #: languages/vue.php:3675
9967
  msgid "Verifying License..."
9968
  msgstr ""
9969
 
9970
+ #: languages/vue.php:3678
9971
  msgid "Privacy Compliance Addon"
9972
  msgstr ""
9973
 
9974
+ #: languages/vue.php:3681
9975
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9976
  msgstr ""
9977
 
9978
+ #: languages/vue.php:3684
9979
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9980
  msgstr ""
9981
 
9982
+ #: languages/vue.php:3687
9983
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9984
  msgstr ""
9985
 
9986
+ #: languages/vue.php:3690
9987
  msgid "20+ Advanced Tracking"
9988
  msgstr ""
9989
 
9990
+ #: languages/vue.php:3693
9991
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9992
  msgstr ""
9993
 
9994
+ #: languages/vue.php:3696
9995
  msgid "Advanced Growth Tools"
9996
  msgstr ""
9997
 
9998
+ #: languages/vue.php:3699
9999
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
10000
  msgstr ""
10001
 
10002
+ #: languages/vue.php:3702
10003
  msgid "Track how your users interact with videos on your website."
10004
  msgstr ""
10005
 
10006
+ #: languages/vue.php:3705
10007
  msgid "Error Processing"
10008
  msgstr ""
10009
 
10010
+ #: languages/vue.php:3708
10011
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
10012
  msgstr ""
10013
 
10014
+ #: languages/vue.php:3711
10015
  msgid "Which website features would you like to enable?"
10016
  msgstr ""
10017
 
10018
+ #: languages/vue.php:3714
10019
  msgid "We’ve already selected our recommended features based on your site. "
10020
  msgstr ""
10021
 
10022
+ #: languages/vue.php:3717
10023
  msgid "Continue"
10024
  msgstr ""
10025
 
10026
+ #: languages/vue.php:3720
10027
  msgid "Standard Analytics & Reports"
10028
  msgstr ""
10029
 
10030
+ #: languages/vue.php:3723
10031
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
10032
  msgstr ""
10033
 
10034
+ #: languages/vue.php:3726
10035
  msgid "Helps you see what links your users are clicking on your site."
10036
  msgstr ""
10037
 
10038
+ #: languages/vue.php:3729
10039
  msgid "All In One SEO Toolkit"
10040
  msgstr ""
10041
 
10042
+ #: languages/vue.php:3732
10043
  msgid "The best WordPress SEO plugin that works with MonsterInsights to boost your rankings."
10044
  msgstr ""
10045
 
10046
+ #: languages/vue.php:3735
10047
  msgid "Smart Form Builder by WPForms"
10048
  msgstr ""
10049
 
10050
+ #: languages/vue.php:3738
10051
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
10052
  msgstr ""
10053
 
10054
+ #: languages/vue.php:3741
10055
  msgid "The following plugins will be installed: "
10056
  msgstr ""
10057
 
10058
+ #: languages/vue.php:3744
10059
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10060
  msgstr ""
10061
 
10062
+ #: languages/vue.php:3747
10063
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10064
  msgstr ""
10065
 
10066
+ #: languages/vue.php:3750
10067
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
10068
  msgstr ""
10069
 
10070
+ #: languages/vue.php:3753
10071
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
10072
  msgstr ""
10073
 
10074
+ #: languages/vue.php:3756
10075
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
10076
  msgstr ""
10077
 
10078
+ #: languages/vue.php:3759
10079
  msgid "MonsterInsights makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
10080
  msgstr ""
10081
 
10082
+ #: languages/vue.php:3762
10083
  msgid "Expired"
10084
  msgstr ""
10085
 
10086
+ #: languages/vue.php:3765
10087
  msgid "WP Simple Pay"
10088
  msgstr ""
10089
 
10090
+ #: languages/vue.php:3771
10091
  msgid "License Expired"
10092
  msgstr ""
10093
 
10094
+ #: languages/vue.php:3774
10095
  msgid "Your MonsterInsights license key has expired."
10096
  msgstr ""
10097
 
10098
+ #: languages/vue.php:3777
10099
  msgid "Renew today to ensure Google Analytics continues to track properly."
10100
  msgstr ""
10101
 
10102
+ #: languages/vue.php:3780
10103
  msgid "Click here."
10104
  msgstr ""
10105
 
10106
  #. Translators: Adds a link to the license renewal.
10107
+ #: languages/vue.php:3784
10108
  msgid "To ensure tracking works properly, reactivate your license"
10109
  msgstr ""
10110
 
10111
+ #: languages/vue.php:3787
10112
  msgid "Reactivate License"
10113
  msgstr ""
10114
 
10115
+ #: languages/vue.php:3790
10116
  msgid "View All Reports"
10117
  msgstr ""
10118
 
10119
+ #: languages/vue.php:3793
10120
  msgid "Oops! There was an error processing request. Please try again later."
10121
  msgstr ""
10122
 
10123
  #. Translators: tag to make text italic starts, tag end.
10124
+ #: languages/vue.php:3797
10125
  msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
10126
  msgstr ""
10127
 
10128
+ #: languages/vue.php:3800
10129
  msgid "UserFeedback lets you easily collect feedback from your website in real time. You can use this important data to increase your traffic, sales, newsletter signups, engagement, and more."
10130
  msgstr ""
10131
 
10132
+ #: languages/vue.php:3803
10133
  msgid "Understand exactly why visitors left your website, what convinced them to make a purchase, why they signed up for a newsletter, and more with real verbatim feedback"
10134
  msgstr ""
10135
 
10136
+ #: languages/vue.php:3806
10137
  msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
10138
  msgstr ""
10139
 
10140
+ #: languages/vue.php:3809
10141
  msgid "Customize targeting rules to get specific feedback on certain pages or products"
10142
  msgstr ""
10143
 
10144
+ #: languages/vue.php:3812
10145
  msgid "Easily analyze your responses and export data"
10146
  msgstr ""
10147
 
10148
+ #: languages/vue.php:3815
10149
  msgid "Install & Activate UserFeedback"
10150
  msgstr ""
10151
 
10152
+ #: languages/vue.php:3818
10153
  msgid "Install UserFeedback by clicking the button below."
10154
  msgstr ""
10155
 
10156
+ #: languages/vue.php:3821
10157
  msgid "Install UserFeedback"
10158
  msgstr ""
10159
 
10160
+ #: languages/vue.php:3824
10161
  msgid "Set Up UserFeedback"
10162
  msgstr ""
10163
 
10164
+ #: languages/vue.php:3827
10165
  msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
10166
  msgstr ""
10167
 
10168
+ #: languages/vue.php:3830
10169
  msgid "Start Setup"
10170
  msgstr ""
10171
 
10172
+ #: languages/vue.php:3833
10173
  msgid "Installing UserFeedback"
10174
  msgstr ""
10175
 
10176
+ #: languages/vue.php:3836
10177
  msgid "Activating UserFeedback"
10178
  msgstr ""
10179
 
10180
+ #: languages/vue.php:3839
10181
  msgid "Installed & Active"
10182
  msgstr ""
10183
 
10184
+ #: languages/vue.php:3842
10185
  msgid "Oops! Something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
10186
  msgstr ""
10187
 
10188
+ #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10189
  #: languages/vue.php:3846
10190
  msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
10191
  msgstr ""
10192
 
10193
  #. Translators: Support link tag starts with url and support link tag ends.
10194
+ #: languages/vue.php:3850
10195
  msgid "Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10196
  msgstr ""
10197
 
10198
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10199
+ #: languages/vue.php:3854
10200
  msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
10201
  msgstr ""
10202
 
10203
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10204
+ #: languages/vue.php:3858
10205
  msgid "Oops! We can't verify deauthentication. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10206
  msgstr ""
10207
 
10208
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10209
+ #: languages/vue.php:3862
10210
  msgid "Can't load authentication details. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10211
  msgstr ""
10212
 
10213
  #. Translators: Support page link tag starts and support page link tag ends.
10214
+ #: languages/vue.php:3866
10215
  msgid "Oops! There was an error loading your site details. Please refresh the page and try again. If the issue persists, please contact our support team."
10216
  msgstr ""
10217
 
10218
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10219
+ #: languages/vue.php:3870
10220
  msgid "Can't save settings. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10221
  msgstr ""
10222
 
10223
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10224
+ #: languages/vue.php:3874
10225
  msgid "Oops! We can't authenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10226
  msgstr ""
10227
 
10228
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10229
+ #: languages/vue.php:3878
10230
  msgid "Oops! We can't reauthenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team"
10231
  msgstr ""
10232
 
10233
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10234
+ #: languages/vue.php:3882
10235
  msgid "Oops! We can't verify credentials. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10236
  msgstr ""
10237
 
10238
  #. Translators: Error status and error text.
10239
+ #: languages/vue.php:3886
10240
  msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
10241
  msgstr ""
10242
 
10243
  #. Translators: Error status and error text.
10244
+ #: languages/vue.php:3890
10245
  msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
10246
  msgstr ""
10247
 
10248
+ #: languages/vue.php:3893
10249
  msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
10250
  msgstr ""
10251
 
10252
  #. Translators: Error status and error text.
10253
+ #: languages/vue.php:3897
10254
  msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
10255
  msgstr ""
10256
 
10257
  #. Translators: Error status and error text.
10258
+ #: languages/vue.php:3901
10259
  msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
10260
  msgstr ""
10261
 
10262
  #. Translators: Error status and error text.
10263
+ #: languages/vue.php:3905
10264
  msgid "Oops! Can't install addon. Error: %1$s, %2$s"
10265
  msgstr ""
10266
 
10267
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10268
+ #: languages/vue.php:3909
10269
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10270
  msgstr ""
10271
 
10272
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10273
+ #: languages/vue.php:3913
10274
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10275
  msgstr ""
10276
 
10277
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10278
+ #: languages/vue.php:3917
10279
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10280
  msgstr ""
10281
 
10282
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10283
+ #: languages/vue.php:3921
10284
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s."
10285
  msgstr ""
10286
 
10287
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10288
+ #: languages/vue.php:3925
10289
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10290
  msgstr ""
10291
 
10292
+ #: languages/vue.php:3928
10293
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists, please %1$scontact our support team%2$s."
10294
  msgstr ""
10295
 
10296
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10297
+ #: languages/vue.php:3932
10298
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10299
  msgstr ""
10300
 
10301
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10302
+ #: languages/vue.php:3936
10303
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10304
  msgstr ""
10305
 
10306
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10307
+ #: languages/vue.php:3940
10308
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10309
  msgstr ""
10310
 
10311
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10312
+ #: languages/vue.php:3944
10313
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10314
  msgstr ""
10315
 
10316
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10317
+ #: languages/vue.php:3948
10318
  msgid "Can't load report data. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10319
  msgstr ""
10320
 
10321
  #. Translators: Support link tag starts with url and support link tag ends.
10322
+ #: languages/vue.php:3952
10323
  msgid "Oops! Can't load posts. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10324
  msgstr ""
10325
 
10326
+ #: languages/vue.php:3955
10327
  msgid "Website Badge"
10328
  msgstr ""
10329
 
10330
+ #: languages/vue.php:3958
10331
  msgid "Automatic Display"
10332
  msgstr ""
10333
 
10334
+ #: languages/vue.php:3961
10335
  msgid "Automatically Display Website Badge in Website Footer"
10336
  msgstr ""
10337
 
10338
+ #: languages/vue.php:3964
10339
  msgid "Enabling will add the chosen badge in your website’s footer."
10340
  msgstr ""
10341
 
10342
+ #: languages/vue.php:3967
10343
  msgid "Enable Automatic Display"
10344
  msgstr ""
10345
 
10346
+ #: languages/vue.php:3970
10347
  msgid "Appearance"
10348
  msgstr ""
10349
 
10350
+ #: languages/vue.php:3973
10351
  msgid "Choose your badge style."
10352
  msgstr ""
10353
 
10354
+ #: languages/vue.php:3976
10355
  msgid "Position"
10356
  msgstr ""
10357
 
10358
+ #: languages/vue.php:3979
10359
  msgid "Select the position of the badge in your website’s footer."
10360
  msgstr ""
10361
 
10362
+ #: languages/vue.php:3982
10363
  msgid "Manual Display"
10364
  msgstr ""
10365
 
10366
+ #: languages/vue.php:3985
10367
  msgid "Copy"
10368
  msgstr ""
10369
 
10370
+ #: languages/vue.php:3988
10371
  msgid "Light"
10372
  msgstr ""
10373
 
10374
+ #: languages/vue.php:3991
10375
  msgid "Dark"
10376
  msgstr ""
10377
 
10378
+ #: languages/vue.php:3994
10379
  msgid "Left"
10380
  msgstr ""
10381
 
10382
+ #: languages/vue.php:3997
10383
  msgid "Center"
10384
  msgstr ""
10385
 
10386
+ #: languages/vue.php:4000
10387
  msgid "Right"
10388
  msgstr ""
10389
 
10390
+ #: languages/vue.php:4003
10391
  msgid "Show MonsterInsights Badge"
10392
  msgstr ""
10393
 
10394
+ #: languages/vue.php:4006
10395
  msgid "Build trust with website visitors by automatically placing a MonsterInsights badge in your website’s footer."
10396
  msgstr ""
10397
 
10398
+ #: languages/vue.php:4009
10399
  msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX or GT-XXXXX where the X's are numbers."
10400
  msgstr ""
10401
 
10402
+ #: languages/vue.php:4012
10403
  msgid "Conversion Tools"
10404
  msgstr ""
10405
 
10406
+ #: languages/vue.php:4015
10407
  msgid "Get the #1 conversion optimization plugin to convert your growing website traffic into subscribers, leads and sales."
10408
  msgstr ""
10409
 
10410
+ #: languages/vue.php:4018
10411
  msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX where the X's are numbers or GT-YYYYY where the Y's are combination of numbers and letters."
10412
  msgstr ""
10413
 
10414
+ #: languages/vue.php:4021
10415
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10416
  msgstr ""
10417
 
10418
+ #: languages/vue.php:4024
10419
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers or GT-YYYYY where the Y's are combination of numbers and letters."
10420
  msgstr ""
10421
 
10422
+ #: languages/vue.php:4027
10423
  msgid "Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10424
  msgstr ""
10425
 
10426
+ #: languages/vue.php:4030
10427
+ msgid "Media Report"
10428
+ msgstr ""
10429
+
10430
+ #: languages/vue.php:4033
10431
+ msgid "Easily See Which Videos Are Most Popular."
10432
+ msgstr ""
10433
+
10434
+ #: languages/vue.php:4036
10435
+ msgid "Videos Plays, Average Duration, and Completions"
10436
+ msgstr ""
10437
+
10438
+ #: languages/vue.php:4039
10439
+ msgid "Works with YouTube, Vimeo, and HTML 5 Videos"
10440
+ msgstr ""
10441
+
10442
+ #: languages/vue.php:4042
10443
+ msgid "Compare stats over time"
10444
+ msgstr ""
10445
+
10446
+ #: languages/vue.php:4045
10447
+ msgid "Video Plays"
10448
+ msgstr ""
10449
+
10450
+ #: languages/vue.php:4048
10451
+ msgid "Video %s Plays"
10452
+ msgstr ""
10453
+
10454
+ #: languages/vue.php:4051
10455
+ msgid "No video plays tracked during this time period."
10456
+ msgstr ""
10457
+
10458
+ #. Translators: Make the text bold and add the start and end dates.
10459
+ #: languages/vue.php:4055
10460
+ msgid "%1$sCustom dates:%2$s %3$s - %4$s"
10461
+ msgstr ""
10462
+
10463
+ #: languages/vue.php:4058
10464
+ msgid "Custom Date Range"
10465
+ msgstr ""
10466
+
10467
+ #: languages/vue.php:4061
10468
+ msgid "Set Custom Date Range"
10469
+ msgstr ""
10470
+
10471
+ #: languages/vue.php:4064
10472
+ msgid "Hide Details"
10473
+ msgstr ""
10474
+
10475
+ #: languages/vue.php:4067
10476
+ msgid "Show Details"
10477
+ msgstr ""
10478
+
10479
  #: lite/includes/admin/connect.php:42
10480
  msgid "Oops! You are not allowed to install plugins. Please contact your site administrator."
10481
  msgstr ""
languages/vue.php CHANGED
@@ -13,22 +13,22 @@ $generated_i18n_strings = array(
13
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:18
14
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
15
 
16
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:346
17
  __( 'Today', 'google-analytics-for-wordpress' ),
18
 
19
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:99
20
  __( 'Yesterday', 'google-analytics-for-wordpress' ),
21
 
22
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:358
23
  __( 'Last Week', 'google-analytics-for-wordpress' ),
24
 
25
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:364
26
  __( 'Last Month', 'google-analytics-for-wordpress' ),
27
 
28
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:370
29
  __( 'Last 7 days', 'google-analytics-for-wordpress' ),
30
 
31
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:376
32
  __( 'Last 30 days', 'google-analytics-for-wordpress' ),
33
 
34
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:46
@@ -242,10 +242,11 @@ $generated_i18n_strings = array(
242
  // Reference: src/modules/frontend/monsterinsights-frontend.vue:38
243
  __( 'Insights', 'google-analytics-for-wordpress' ),
244
 
245
- // Reference: src/modules/reports/routes/index.js:25
 
 
246
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
247
 
248
- // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:43
249
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:133
250
  __( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
251
 
@@ -270,20 +271,19 @@ $generated_i18n_strings = array(
270
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:140
271
  __( 'See All Features', 'google-analytics-for-wordpress' ),
272
 
273
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:141
274
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
275
 
276
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:142
277
  __( 'per year', 'google-analytics-for-wordpress' ),
278
 
279
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:80
280
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:143
281
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
282
 
283
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:144
284
  __( 'Testimonials', 'google-analytics-for-wordpress' ),
285
 
286
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:148
287
  __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
288
 
289
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:149
@@ -332,18 +332,15 @@ $generated_i18n_strings = array(
332
  __( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
333
 
334
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:34
335
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:190
336
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
337
 
338
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:30
339
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:191
340
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
341
 
342
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:33
343
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:192
344
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
345
 
346
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:193
347
  __( 'Google Optimize', 'google-analytics-for-wordpress' ),
348
 
349
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:194
@@ -352,10 +349,10 @@ $generated_i18n_strings = array(
352
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:195
353
  __( 'WooCommerce', 'google-analytics-for-wordpress' ),
354
 
355
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:196
356
  __( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
357
 
358
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:197
359
  __( 'MemberPress', 'google-analytics-for-wordpress' ),
360
 
361
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:198
@@ -395,13 +392,14 @@ $generated_i18n_strings = array(
395
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
396
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
397
 
398
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:132
399
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
400
 
401
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:252
402
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
403
 
404
  // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:90
 
405
  __( 'Ok', 'google-analytics-for-wordpress' ),
406
 
407
  // Reference: src/components/TheQuickLinks.vue:31
@@ -424,14 +422,12 @@ $generated_i18n_strings = array(
424
  __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
425
 
426
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
427
- // Reference: src/modules/widget/components/WidgetFooter.vue:20
428
  __( 'Install', 'google-analytics-for-wordpress' ),
429
 
430
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
431
- // Reference: src/modules/widget/components/WidgetFooter.vue:21
432
  __( 'Activate', 'google-analytics-for-wordpress' ),
433
 
434
- // Reference: src/modules/widget/components/WidgetFooter.vue:22
435
  __( 'Learn More', 'google-analytics-for-wordpress' ),
436
 
437
  // Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
@@ -493,13 +489,13 @@ $generated_i18n_strings = array(
493
  // Reference: src/modules/settings/routes/site.js:112
494
  __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
495
 
496
- // Reference: src/modules/settings/routes/site.js:134
497
  __( 'About Us', 'google-analytics-for-wordpress' ),
498
 
499
- // Reference: src/modules/settings/routes/site.js:142
500
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
501
 
502
- // Reference: src/modules/settings/routes/site.js:151
503
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
504
 
505
  // Reference: src/modules/settings/routes/site.js:172
@@ -517,23 +513,22 @@ $generated_i18n_strings = array(
517
  // Reference: src/modules/settings/routes/site.js:209
518
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-for-wordpress' ),
519
 
520
- // Reference: src/modules/settings/routes/site.js:39
521
  __( 'General', 'google-analytics-for-wordpress' ),
522
 
523
- // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:19
524
- // Reference: src/modules/settings/routes/site.js:47
525
  __( 'Engagement', 'google-analytics-for-wordpress' ),
526
 
527
- // Reference: src/modules/settings/routes/site.js:55
528
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
529
 
530
- // Reference: src/modules/settings/routes/site.js:63
531
  __( 'Publisher', 'google-analytics-for-wordpress' ),
532
 
533
- // Reference: src/modules/settings/routes/site.js:71
534
  __( 'Conversions', 'google-analytics-for-wordpress' ),
535
 
536
- // Reference: src/modules/settings/routes/site.js:79
537
  __( 'Advanced', 'google-analytics-for-wordpress' ),
538
 
539
  // Reference: src/modules/settings/routes/site.js:96
@@ -554,7 +549,8 @@ $generated_i18n_strings = array(
554
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
555
  __( 'MonsterInsights makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-for-wordpress' ),
556
 
557
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:66
 
558
  __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
559
 
560
  // Reference: src/modules/reports/components/ReportNoAuth.vue:30
@@ -563,23 +559,23 @@ $generated_i18n_strings = array(
563
  // Reference: src/modules/widget/store/index.js:77
564
  __( 'Overview', 'google-analytics-for-wordpress' ),
565
 
566
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:45
567
  __( 'Publishers', 'google-analytics-for-wordpress' ),
568
 
569
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:47
570
  __( 'Search Console', 'google-analytics-for-wordpress' ),
571
 
 
572
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:22
573
  __( 'Dimensions', 'google-analytics-for-wordpress' ),
574
 
575
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
576
  __( 'Forms', 'google-analytics-for-wordpress' ),
577
 
578
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
579
  __( 'Real-Time', 'google-analytics-for-wordpress' ),
580
 
581
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:51
582
- // Reference: src/modules/reports/components/reports/monsterinsights-SiteSpeed-Lite.vue:23
583
  __( 'Site Speed', 'google-analytics-for-wordpress' ),
584
 
585
  // Reference: src/modules/reports/routes/index.js:94
@@ -592,36 +588,35 @@ $generated_i18n_strings = array(
592
  // Reference: src/modules/reports/api/index.js:29
593
  __( 'Error loading report data', 'google-analytics-for-wordpress' ),
594
 
595
- // Reference: src/modules/reports/routes/index.js:33
596
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
597
 
598
- // Reference: src/modules/reports/routes/index.js:41
599
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
600
 
601
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportSearchConsole-Lite.vue:26
602
- // Reference: src/modules/reports/routes/index.js:49
603
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
604
 
605
- // Reference: src/modules/reports/routes/index.js:57
606
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
607
 
608
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportForms-Lite.vue:25
609
- // Reference: src/modules/reports/routes/index.js:65
610
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
611
 
612
- // Reference: src/modules/reports/routes/index.js:73
 
613
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
614
 
615
- // Reference: src/modules/reports/routes/index.js:81
616
  __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
617
 
618
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:271
619
  __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
620
 
621
  // Reference: src/modules/widget/store/index.js:104
622
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
623
 
624
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:267
625
  __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
626
 
627
  // Reference: src/modules/widget/store/index.js:112
@@ -640,36 +635,42 @@ $generated_i18n_strings = array(
640
  __( 'This list shows the percentage of carts that never went through the checkout process.', 'google-analytics-for-wordpress' ),
641
 
642
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:279
 
643
  __( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
644
 
645
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:291
 
646
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
647
 
648
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:273
 
649
  __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
650
 
651
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:287
 
652
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
653
 
654
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:274
 
655
  __( 'Device Breakdown', 'google-analytics-for-wordpress' ),
656
 
657
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:288
 
658
  __( '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' ),
659
 
660
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:252
661
  __( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
662
 
663
  // Reference: src/modules/widget/store/index.js:42
664
  __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
665
 
666
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:254
667
  __( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
668
 
669
  // Reference: src/modules/widget/store/index.js:49
670
  __( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
671
 
672
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:256
673
  __( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
674
 
675
  // Reference: src/modules/widget/store/index.js:57
@@ -681,19 +682,19 @@ $generated_i18n_strings = array(
681
  // Reference: src/modules/widget/store/index.js:64
682
  __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
683
 
684
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:255
685
  __( 'Top Download Links', 'google-analytics-for-wordpress' ),
686
 
687
  // Reference: src/modules/widget/store/index.js:71
688
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
689
 
690
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:269
691
  __( 'Top Products', 'google-analytics-for-wordpress' ),
692
 
693
  // Reference: src/modules/widget/store/index.js:84
694
  __( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
695
 
696
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:268
697
  __( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
698
 
699
  // Reference: src/modules/widget/store/index.js:91
@@ -832,7 +833,7 @@ $generated_i18n_strings = array(
832
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
833
  __( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
834
 
835
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:153
836
  __( 'Advanced Reports', 'google-analytics-for-wordpress' ),
837
 
838
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
@@ -853,10 +854,10 @@ $generated_i18n_strings = array(
853
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:118
854
  __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-for-wordpress' ),
855
 
856
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:72
857
  __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
858
 
859
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:71
860
  __( 'Email Summaries', 'google-analytics-for-wordpress' ),
861
 
862
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
@@ -889,7 +890,7 @@ $generated_i18n_strings = array(
889
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:150
890
  __( 'Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks.', 'google-analytics-for-wordpress' ),
891
 
892
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:116
893
  __( 'Not Available', 'google-analytics-for-wordpress' ),
894
 
895
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:157
@@ -949,7 +950,7 @@ $generated_i18n_strings = array(
949
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
950
  __( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
951
 
952
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:164
953
  __( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
954
 
955
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
@@ -964,7 +965,6 @@ $generated_i18n_strings = array(
964
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
965
  __( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
966
 
967
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:54
968
  // Reference: src/modules/wizard-onboarding/components/inputs/monsterinsights-OnboardingLicense-Lite.vue:27
969
  __( 'License Key', 'google-analytics-for-wordpress' ),
970
 
@@ -972,28 +972,28 @@ $generated_i18n_strings = array(
972
  /* Translators: Add link to retrieve license key from account. */
973
  __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
974
 
975
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:57
976
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
977
 
978
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:58
979
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
980
 
981
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:59
982
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
983
 
984
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:60
985
  __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
986
 
987
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:62
988
  __( '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' ),
989
 
990
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:63
991
  __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
992
 
993
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:64
994
  __( 'Setup Wizard', 'google-analytics-for-wordpress' ),
995
 
996
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:65
997
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
998
 
999
  // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:31
@@ -1032,7 +1032,7 @@ $generated_i18n_strings = array(
1032
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:121
1033
  __( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
1034
 
1035
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:206
1036
  __( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
1037
 
1038
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:123
@@ -1254,7 +1254,9 @@ $generated_i18n_strings = array(
1254
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:42
1255
  __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
1256
 
1257
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:38
 
 
1258
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1259
 
1260
  // Reference: src/modules/reports/store/actions.js:149
@@ -1282,7 +1284,7 @@ $generated_i18n_strings = array(
1282
  // Reference: src/modules/reports/store/actions.js:220
1283
  __( 'View Addons', 'google-analytics-for-wordpress' ),
1284
 
1285
- // Reference: src/modules/notifications/components/Notification.vue:37
1286
  __( 'Dismiss', 'google-analytics-for-wordpress' ),
1287
 
1288
  // Reference: src/modules/reports/store/actions.js:228
@@ -1326,19 +1328,19 @@ $generated_i18n_strings = array(
1326
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:32
1327
  __( 'Your Website', 'google-analytics-for-wordpress' ),
1328
 
1329
- // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:33
1330
  __( 'Sessions', 'google-analytics-for-wordpress' ),
1331
 
1332
- // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:34
1333
  __( 'Pageviews', 'google-analytics-for-wordpress' ),
1334
 
1335
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:35
1336
  __( 'Avg. Duration', 'google-analytics-for-wordpress' ),
1337
 
1338
- // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:36
1339
  __( 'Bounce Rate', 'google-analytics-for-wordpress' ),
1340
 
1341
- // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:37
1342
  __( 'Total Users', 'google-analytics-for-wordpress' ),
1343
 
1344
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:51
@@ -1502,7 +1504,8 @@ $generated_i18n_strings = array(
1502
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
1503
 
1504
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:269
1505
- /* Translators: Placeholder adds a line break. */
 
1506
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
1507
 
1508
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:282
@@ -1571,7 +1574,7 @@ $generated_i18n_strings = array(
1571
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275
1572
  __( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
1573
 
1574
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:76
1575
  __( 'Demographics', 'google-analytics-for-wordpress' ),
1576
 
1577
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:332
@@ -1598,7 +1601,8 @@ $generated_i18n_strings = array(
1598
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:339
1599
  __( 'Average Age', 'google-analytics-for-wordpress' ),
1600
 
1601
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120
 
1602
  __( 'Behavior', 'google-analytics-for-wordpress' ),
1603
 
1604
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:341
@@ -1823,7 +1827,7 @@ $generated_i18n_strings = array(
1823
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:60
1824
  __( 'There is no need to refresh the browser (doing so won\'t have any effect).', 'google-analytics-for-wordpress' ),
1825
 
1826
- // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:316
1827
  __( 'Pageviews Per Minute', 'google-analytics-for-wordpress' ),
1828
 
1829
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:64
@@ -1899,7 +1903,6 @@ $generated_i18n_strings = array(
1899
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:32
1900
  __( 'Banner Ads', 'google-analytics-for-wordpress' ),
1901
 
1902
- // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:35
1903
  // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAmp-Lite.vue:22
1904
  __( 'Google AMP', 'google-analytics-for-wordpress' ),
1905
 
@@ -1947,7 +1950,7 @@ $generated_i18n_strings = array(
1947
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:75
1948
  __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
1949
 
1950
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:119
1951
  __( 'Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.', 'google-analytics-for-wordpress' ),
1952
 
1953
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:77
@@ -2003,7 +2006,7 @@ $generated_i18n_strings = array(
2003
  /* Translators: Error status and error text. */
2004
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2005
 
2006
- // Reference: src/modules/wizard-onboarding/api/index.js:22
2007
  __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
2008
 
2009
  // Reference: src/modules/auth/api/index.js:232
@@ -2155,25 +2158,25 @@ $generated_i18n_strings = array(
2155
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:141
2156
  __( 'Or manually enter UA code (limited functionality)', 'google-analytics-for-wordpress' ),
2157
 
2158
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:142
2159
  __( 'Dual Tracking Profile', 'google-analytics-for-wordpress' ),
2160
 
2161
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:144
2162
  __( 'The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2163
 
2164
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:94
2165
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2166
 
2167
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:150
2168
  __( 'The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2169
 
2170
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:120
2171
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2172
 
2173
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:155
2174
  __( 'Measurement Protocol API Secret', 'google-analytics-for-wordpress' ),
2175
 
2176
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:157
2177
  __( 'The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.', 'google-analytics-for-wordpress' ),
2178
 
2179
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:169
@@ -2182,7 +2185,7 @@ $generated_i18n_strings = array(
2182
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:169
2183
  __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
2184
 
2185
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:225
2186
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
2187
 
2188
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:279
@@ -2197,7 +2200,7 @@ $generated_i18n_strings = array(
2197
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:330
2198
  __( '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' ),
2199
 
2200
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:130
2201
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
2202
 
2203
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:131
@@ -2209,19 +2212,19 @@ $generated_i18n_strings = array(
2209
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:134
2210
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
2211
 
2212
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:135
2213
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
2214
 
2215
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:136
2216
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
2217
 
2218
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:137
2219
  __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
2220
 
2221
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:87
2222
  __( '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' ),
2223
 
2224
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:139
2225
  __( 'Manually enter your GA4 Measurement ID', 'google-analytics-for-wordpress' ),
2226
 
2227
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:77
@@ -2345,6 +2348,7 @@ $generated_i18n_strings = array(
2345
  // Reference: src/modules/widget/components/WidgetTips.vue:73
2346
  __( 'Pro Tip:', 'google-analytics-for-wordpress' ),
2347
 
 
2348
  // Reference: src/modules/reports/components/monsterinsights-ReportsPagination.vue:29
2349
  __( 'Show', 'google-analytics-for-wordpress' ),
2350
 
@@ -2366,20 +2370,19 @@ $generated_i18n_strings = array(
2366
  // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2367
  __( 'You can re-enable the MonsterInsights widget at any time using the "Screen Options" menu on the top right of this page', 'google-analytics-for-wordpress' ),
2368
 
2369
- // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:30
2370
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPdfReports-Lite.vue:16
2371
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
2372
 
2373
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:41
2374
  __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
2375
 
2376
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:30
2377
  __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
2378
 
2379
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:42
2380
  __( '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' ),
2381
 
2382
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:45
2383
  /* Translators: Add links to documentation. */
2384
  __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2385
 
@@ -2398,17 +2401,17 @@ $generated_i18n_strings = array(
2398
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2399
  __( 'Unlock PRO Features Now', 'google-analytics-for-wordpress' ),
2400
 
2401
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:40
2402
  __( 'Paste your license key here', 'google-analytics-for-wordpress' ),
2403
 
2404
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:41
2405
  __( 'Verify', 'google-analytics-for-wordpress' ),
2406
 
2407
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:43
2408
  /* Translators: Add link to retrieve license from account area. */
2409
  __( 'Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
2410
 
2411
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:73
2412
  __( 'There was an error unlocking MonsterInsights PRO please try again or install manually.', 'google-analytics-for-wordpress' ),
2413
 
2414
  // Reference: src/modules/wizard-onboarding/api/index.js:18
@@ -2563,7 +2566,7 @@ $generated_i18n_strings = array(
2563
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
2564
  __( 'MonsterInsights uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don\'t have to write any code.', 'google-analytics-for-wordpress' ),
2565
 
2566
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
2567
  __( 'Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
2568
 
2569
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
@@ -2762,19 +2765,19 @@ $generated_i18n_strings = array(
2762
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:95
2763
  __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
2764
 
2765
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:119
2766
  __( 'Choose Theme', 'google-analytics-for-wordpress' ),
2767
 
2768
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
2769
  __( 'Widget Styling', 'google-analytics-for-wordpress' ),
2770
 
2771
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
2772
  __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
2773
 
2774
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
2775
  __( 'Sort By', 'google-analytics-for-wordpress' ),
2776
 
2777
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124
2778
  __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
2779
 
2780
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:118
@@ -2786,40 +2789,40 @@ $generated_i18n_strings = array(
2786
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:120
2787
  __( 'Title your widget and set its display preferences.', 'google-analytics-for-wordpress' ),
2788
 
2789
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
2790
  __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
2791
 
2792
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:130
2793
  __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
2794
 
2795
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:132
2796
  /* Translators: Placeholders make the text bold. */
2797
  __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
2798
 
2799
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
2800
  /* Translators: Placeholders make the text bold. */
2801
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
2802
 
2803
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:136
2804
  __( 'Loading Themes', 'google-analytics-for-wordpress' ),
2805
 
2806
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:143
2807
  /* Translators: placeholders make text small. */
2808
  __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
2809
 
2810
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:148
2811
  /* Translators: placeholders make text small. */
2812
  __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
2813
 
2814
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:155
2815
  /* Translators: placeholders make text small. */
2816
  __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
2817
 
2818
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:160
2819
  /* Translators: placeholders make text small. */
2820
  __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
2821
 
2822
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:165
2823
  /* Translators: placeholders make text small. */
2824
  __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
2825
 
@@ -2835,7 +2838,6 @@ $generated_i18n_strings = array(
2835
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:128
2836
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2837
 
2838
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:135
2839
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:180
2840
  __( 'Customize Design', 'google-analytics-for-wordpress' ),
2841
 
@@ -2928,8 +2930,8 @@ $generated_i18n_strings = array(
2928
  /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2929
  __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
2930
 
 
2931
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:67
2932
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:92
2933
  __( 'Theme Preview', 'google-analytics-for-wordpress' ),
2934
 
2935
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:93
@@ -2938,30 +2940,24 @@ $generated_i18n_strings = array(
2938
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:94
2939
  __( 'Narrow', 'google-analytics-for-wordpress' ),
2940
 
2941
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:72
2942
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:181
2943
  __( 'Title', 'google-analytics-for-wordpress' ),
2944
 
2945
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:70
2946
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:182
2947
  __( 'Color', 'google-analytics-for-wordpress' ),
2948
 
2949
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:71
2950
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:183
2951
  __( 'Size', 'google-analytics-for-wordpress' ),
2952
 
2953
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:75
2954
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:184
2955
  __( 'Border', 'google-analytics-for-wordpress' ),
2956
 
2957
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:185
2958
  __( 'Author/Date', 'google-analytics-for-wordpress' ),
2959
 
2960
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:73
2961
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:186
2962
  __( 'Label', 'google-analytics-for-wordpress' ),
2963
 
2964
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:74
2965
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:187
2966
  __( 'Background', 'google-analytics-for-wordpress' ),
2967
 
@@ -3004,6 +3000,7 @@ $generated_i18n_strings = array(
3004
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
3005
  __( 'Close', 'google-analytics-for-wordpress' ),
3006
 
 
3007
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
3008
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
3009
 
@@ -3017,6 +3014,7 @@ $generated_i18n_strings = array(
3017
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
3018
  __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-for-wordpress' ),
3019
 
 
3020
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:60
3021
  __( 'Automated + Curated', 'google-analytics-for-wordpress' ),
3022
 
@@ -3058,12 +3056,15 @@ $generated_i18n_strings = array(
3058
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:41
3059
  __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
3060
 
 
3061
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:68
3062
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-for-wordpress' ),
3063
 
 
3064
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:69
3065
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-for-wordpress' ),
3066
 
 
3067
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:76
3068
  __( 'Icon', 'google-analytics-for-wordpress' ),
3069
 
@@ -3295,7 +3296,7 @@ $generated_i18n_strings = array(
3295
  // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:22
3296
  __( 'Facebook Instant Articleasdasdasds', 'google-analytics-for-wordpress' ),
3297
 
3298
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:22
3299
  __( 'Media', 'google-analytics-for-wordpress' ),
3300
 
3301
  // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:23
@@ -3424,10 +3425,10 @@ $generated_i18n_strings = array(
3424
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:332
3425
  __( 'Time to Interactive', 'google-analytics-for-wordpress' ),
3426
 
3427
- // Reference: src/modules/reports/routes/index.js:95
3428
  __( '2021 Year in Review', 'google-analytics-for-wordpress' ),
3429
 
3430
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:50
3431
  __( 'Realtime', 'google-analytics-for-wordpress' ),
3432
 
3433
  // Reference: src/components/TheFloatingBar-Lite.vue:29
@@ -3742,10 +3743,10 @@ $generated_i18n_strings = array(
3742
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:110
3743
  __( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3744
 
3745
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:100
3746
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3747
 
3748
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:87
3749
  __( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3750
 
3751
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:140
@@ -3841,12 +3842,10 @@ $generated_i18n_strings = array(
3841
  __( 'Oops! Something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
3842
 
3843
  // Reference: src/modules/popular-posts/api/index.js:44
3844
- // Reference: src/modules/settings/api/index.js:81
3845
- /* Translators: Error status and error text, Support link tag starts with url and support link tag ends. */
3846
  __( 'Can\'t save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance.', 'google-analytics-for-wordpress' ),
3847
 
3848
  // Reference: src/modules/popular-posts/api/index.js:49
3849
- // Reference: src/modules/settings/api/index.js:86
3850
  /* Translators: Support link tag starts with url and support link tag ends. */
3851
  __( 'Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team.', 'google-analytics-for-wordpress' ),
3852
 
@@ -4025,6 +4024,46 @@ $generated_i18n_strings = array(
4025
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers or GT-YYYYY where the Y\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
4026
 
4027
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:154
4028
- __( 'Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4029
  );
4030
  /* THIS IS THE END OF THE GENERATED FILE */
13
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:18
14
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
15
 
16
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:355
17
  __( 'Today', 'google-analytics-for-wordpress' ),
18
 
19
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:361
20
  __( 'Yesterday', 'google-analytics-for-wordpress' ),
21
 
22
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:367
23
  __( 'Last Week', 'google-analytics-for-wordpress' ),
24
 
25
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:373
26
  __( 'Last Month', 'google-analytics-for-wordpress' ),
27
 
28
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:379
29
  __( 'Last 7 days', 'google-analytics-for-wordpress' ),
30
 
31
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:50
32
  __( 'Last 30 days', 'google-analytics-for-wordpress' ),
33
 
34
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:46
242
  // Reference: src/modules/frontend/monsterinsights-frontend.vue:38
243
  __( 'Insights', 'google-analytics-for-wordpress' ),
244
 
245
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:263
246
+ // Reference: src/modules/reports/routes/index.js:26
247
+ // Reference: src/modules/widget/store/index.js:14
248
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
249
 
 
250
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:133
251
  __( 'Welcome to MonsterInsights', 'google-analytics-for-wordpress' ),
252
 
271
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:140
272
  __( 'See All Features', 'google-analytics-for-wordpress' ),
273
 
274
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:53
275
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
276
 
277
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:142
278
  __( 'per year', 'google-analytics-for-wordpress' ),
279
 
280
+ // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:24
 
281
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
282
 
283
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:144
284
  __( 'Testimonials', 'google-analytics-for-wordpress' ),
285
 
286
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:62
287
  __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
288
 
289
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:149
332
  __( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
333
 
334
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:34
 
335
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
336
 
337
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:35
 
338
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
339
 
340
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:278
 
341
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
342
 
343
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:33
344
  __( 'Google Optimize', 'google-analytics-for-wordpress' ),
345
 
346
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:194
349
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:195
350
  __( 'WooCommerce', 'google-analytics-for-wordpress' ),
351
 
352
+ // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:265
353
  __( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
354
 
355
+ // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:276
356
  __( 'MemberPress', 'google-analytics-for-wordpress' ),
357
 
358
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:198
392
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
393
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
394
 
395
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
396
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
397
 
398
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:178
399
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
400
 
401
  // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:90
402
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:232
403
  __( 'Ok', 'google-analytics-for-wordpress' ),
404
 
405
  // Reference: src/components/TheQuickLinks.vue:31
422
  __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
423
 
424
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:42
 
425
  __( 'Install', 'google-analytics-for-wordpress' ),
426
 
427
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
 
428
  __( 'Activate', 'google-analytics-for-wordpress' ),
429
 
430
+ // Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
431
  __( 'Learn More', 'google-analytics-for-wordpress' ),
432
 
433
  // Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
489
  // Reference: src/modules/settings/routes/site.js:112
490
  __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
491
 
492
+ // Reference: src/modules/settings/routes/network.js:35
493
  __( 'About Us', 'google-analytics-for-wordpress' ),
494
 
495
+ // Reference: src/modules/settings/routes/network.js:43
496
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
497
 
498
+ // Reference: src/modules/settings/routes/network.js:52
499
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
500
 
501
  // Reference: src/modules/settings/routes/site.js:172
513
  // Reference: src/modules/settings/routes/site.js:209
514
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-for-wordpress' ),
515
 
516
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:75
517
  __( 'General', 'google-analytics-for-wordpress' ),
518
 
519
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:76
 
520
  __( 'Engagement', 'google-analytics-for-wordpress' ),
521
 
522
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:77
523
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
524
 
525
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:78
526
  __( 'Publisher', 'google-analytics-for-wordpress' ),
527
 
528
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:79
529
  __( 'Conversions', 'google-analytics-for-wordpress' ),
530
 
531
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:80
532
  __( 'Advanced', 'google-analytics-for-wordpress' ),
533
 
534
  // Reference: src/modules/settings/routes/site.js:96
549
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
550
  __( 'MonsterInsights makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-for-wordpress' ),
551
 
552
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:29
553
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:107
554
  __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
555
 
556
  // Reference: src/modules/reports/components/ReportNoAuth.vue:30
559
  // Reference: src/modules/widget/store/index.js:77
560
  __( 'Overview', 'google-analytics-for-wordpress' ),
561
 
562
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
563
  __( 'Publishers', 'google-analytics-for-wordpress' ),
564
 
565
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:50
566
  __( 'Search Console', 'google-analytics-for-wordpress' ),
567
 
568
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:51
569
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:22
570
  __( 'Dimensions', 'google-analytics-for-wordpress' ),
571
 
572
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:52
573
  __( 'Forms', 'google-analytics-for-wordpress' ),
574
 
575
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
576
  __( 'Real-Time', 'google-analytics-for-wordpress' ),
577
 
578
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:54
 
579
  __( 'Site Speed', 'google-analytics-for-wordpress' ),
580
 
581
  // Reference: src/modules/reports/routes/index.js:94
588
  // Reference: src/modules/reports/api/index.js:29
589
  __( 'Error loading report data', 'google-analytics-for-wordpress' ),
590
 
591
+ // Reference: src/modules/reports/routes/index.js:34
592
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
593
 
594
+ // Reference: src/modules/reports/routes/index.js:42
595
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
596
 
597
+ // Reference: src/modules/reports/routes/index.js:50
 
598
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
599
 
600
+ // Reference: src/modules/reports/routes/index.js:58
601
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
602
 
603
+ // Reference: src/modules/reports/routes/index.js:66
 
604
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
605
 
606
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:51
607
+ // Reference: src/modules/reports/routes/index.js:74
608
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
609
 
610
+ // Reference: src/modules/reports/routes/index.js:82
611
  __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
612
 
613
+ // Reference: src/modules/widget/store/index.js:103
614
  __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
615
 
616
  // Reference: src/modules/widget/store/index.js:104
617
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
618
 
619
+ // Reference: src/modules/widget/store/index.js:111
620
  __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
621
 
622
  // Reference: src/modules/widget/store/index.js:112
635
  __( 'This list shows the percentage of carts that never went through the checkout process.', 'google-analytics-for-wordpress' ),
636
 
637
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:279
638
+ // Reference: src/modules/widget/store/index.js:20
639
  __( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
640
 
641
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:291
642
+ // Reference: src/modules/widget/store/index.js:21
643
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
644
 
645
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:273
646
+ // Reference: src/modules/widget/store/index.js:27
647
  __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
648
 
649
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:287
650
+ // Reference: src/modules/widget/store/index.js:28
651
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
652
 
653
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:274
654
+ // Reference: src/modules/widget/store/index.js:34
655
  __( 'Device Breakdown', 'google-analytics-for-wordpress' ),
656
 
657
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:288
658
+ // Reference: src/modules/widget/store/index.js:35
659
  __( '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' ),
660
 
661
+ // Reference: src/modules/widget/store/index.js:41
662
  __( 'Top Landing Pages', 'google-analytics-for-wordpress' ),
663
 
664
  // Reference: src/modules/widget/store/index.js:42
665
  __( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-for-wordpress' ),
666
 
667
+ // Reference: src/modules/widget/store/index.js:48
668
  __( 'Top Exit Pages', 'google-analytics-for-wordpress' ),
669
 
670
  // Reference: src/modules/widget/store/index.js:49
671
  __( 'This list shows the top pages users exit your website from.', 'google-analytics-for-wordpress' ),
672
 
673
+ // Reference: src/modules/widget/store/index.js:56
674
  __( 'Top Outbound Links', 'google-analytics-for-wordpress' ),
675
 
676
  // Reference: src/modules/widget/store/index.js:57
682
  // Reference: src/modules/widget/store/index.js:64
683
  __( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-for-wordpress' ),
684
 
685
+ // Reference: src/modules/widget/store/index.js:70
686
  __( 'Top Download Links', 'google-analytics-for-wordpress' ),
687
 
688
  // Reference: src/modules/widget/store/index.js:71
689
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
690
 
691
+ // Reference: src/modules/widget/store/index.js:83
692
  __( 'Top Products', 'google-analytics-for-wordpress' ),
693
 
694
  // Reference: src/modules/widget/store/index.js:84
695
  __( 'This list shows the top selling products on your website.', 'google-analytics-for-wordpress' ),
696
 
697
+ // Reference: src/modules/widget/store/index.js:90
698
  __( 'Top Conversion Sources', 'google-analytics-for-wordpress' ),
699
 
700
  // Reference: src/modules/widget/store/index.js:91
833
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:107
834
  __( 'Overview Reports for the last 30 days.', 'google-analytics-for-wordpress' ),
835
 
836
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:108
837
  __( 'Advanced Reports', 'google-analytics-for-wordpress' ),
838
 
839
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:109
854
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:118
855
  __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-for-wordpress' ),
856
 
857
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121
858
  __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
859
 
860
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:128
861
  __( 'Email Summaries', 'google-analytics-for-wordpress' ),
862
 
863
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
890
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:150
891
  __( 'Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks.', 'google-analytics-for-wordpress' ),
892
 
893
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:156
894
  __( 'Not Available', 'google-analytics-for-wordpress' ),
895
 
896
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:157
950
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:84
951
  __( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-for-wordpress' ),
952
 
953
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:87
954
  __( 'eCommerce Tracking', 'google-analytics-for-wordpress' ),
955
 
956
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:91
965
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:99
966
  __( 'One-click Form Events Tracking', 'google-analytics-for-wordpress' ),
967
 
 
968
  // Reference: src/modules/wizard-onboarding/components/inputs/monsterinsights-OnboardingLicense-Lite.vue:27
969
  __( 'License Key', 'google-analytics-for-wordpress' ),
970
 
972
  /* Translators: Add link to retrieve license key from account. */
973
  __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
974
 
975
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:101
976
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
977
 
978
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:83
979
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
980
 
981
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:84
982
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
983
 
984
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:37
985
  __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
986
 
987
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
988
  __( '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' ),
989
 
990
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
991
  __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
992
 
993
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:105
994
  __( 'Setup Wizard', 'google-analytics-for-wordpress' ),
995
 
996
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:106
997
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
998
 
999
  // Reference: src/modules/about/components/monsterinsights-AboutTabAboutUs.vue:31
1032
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:121
1033
  __( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
1034
 
1035
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:122
1036
  __( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
1037
 
1038
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:123
1254
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:42
1255
  __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
1256
 
1257
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:383
1258
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:56
1259
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:143
1260
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1261
 
1262
  // Reference: src/modules/reports/store/actions.js:149
1284
  // Reference: src/modules/reports/store/actions.js:220
1285
  __( 'View Addons', 'google-analytics-for-wordpress' ),
1286
 
1287
+ // Reference: src/modules/seo/components/aioseo.vue:256
1288
  __( 'Dismiss', 'google-analytics-for-wordpress' ),
1289
 
1290
  // Reference: src/modules/reports/store/actions.js:228
1328
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:32
1329
  __( 'Your Website', 'google-analytics-for-wordpress' ),
1330
 
1331
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:264
1332
  __( 'Sessions', 'google-analytics-for-wordpress' ),
1333
 
1334
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:267
1335
  __( 'Pageviews', 'google-analytics-for-wordpress' ),
1336
 
1337
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:35
1338
  __( 'Avg. Duration', 'google-analytics-for-wordpress' ),
1339
 
1340
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:271
1341
  __( 'Bounce Rate', 'google-analytics-for-wordpress' ),
1342
 
1343
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:272
1344
  __( 'Total Users', 'google-analytics-for-wordpress' ),
1345
 
1346
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:51
1504
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
1505
 
1506
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:269
1507
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:63
1508
+ /* Translators: Number of unique pageviews. */
1509
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
1510
 
1511
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:282
1574
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275
1575
  __( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
1576
 
1577
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:331
1578
  __( 'Demographics', 'google-analytics-for-wordpress' ),
1579
 
1580
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:332
1601
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:339
1602
  __( 'Average Age', 'google-analytics-for-wordpress' ),
1603
 
1604
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:113
1605
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:340
1606
  __( 'Behavior', 'google-analytics-for-wordpress' ),
1607
 
1608
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:341
1827
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:60
1828
  __( 'There is no need to refresh the browser (doing so won\'t have any effect).', 'google-analytics-for-wordpress' ),
1829
 
1830
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:61
1831
  __( 'Pageviews Per Minute', 'google-analytics-for-wordpress' ),
1832
 
1833
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:64
1903
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:32
1904
  __( 'Banner Ads', 'google-analytics-for-wordpress' ),
1905
 
 
1906
  // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAmp-Lite.vue:22
1907
  __( 'Google AMP', 'google-analytics-for-wordpress' ),
1908
 
1950
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:75
1951
  __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
1952
 
1953
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:76
1954
  __( 'Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.', 'google-analytics-for-wordpress' ),
1955
 
1956
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:77
2006
  /* Translators: Error status and error text. */
2007
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2008
 
2009
+ // Reference: src/modules/auth/api/index.js:129
2010
  __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
2011
 
2012
  // Reference: src/modules/auth/api/index.js:232
2158
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:141
2159
  __( 'Or manually enter UA code (limited functionality)', 'google-analytics-for-wordpress' ),
2160
 
2161
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:97
2162
  __( 'Dual Tracking Profile', 'google-analytics-for-wordpress' ),
2163
 
2164
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:99
2165
  __( 'The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2166
 
2167
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:103
2168
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2169
 
2170
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:105
2171
  __( 'The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2172
 
2173
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:120
2174
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-for-wordpress' ),
2175
 
2176
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:110
2177
  __( 'Measurement Protocol API Secret', 'google-analytics-for-wordpress' ),
2178
 
2179
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:112
2180
  __( 'The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.', 'google-analytics-for-wordpress' ),
2181
 
2182
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:169
2185
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:169
2186
  __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
2187
 
2188
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:149
2189
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
2190
 
2191
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:279
2200
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:330
2201
  __( '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' ),
2202
 
2203
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
2204
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
2205
 
2206
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:131
2212
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:134
2213
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
2214
 
2215
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:83
2216
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
2217
 
2218
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:84
2219
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
2220
 
2221
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:86
2222
  __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
2223
 
2224
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:87
2225
  __( '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' ),
2226
 
2227
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:95
2228
  __( 'Manually enter your GA4 Measurement ID', 'google-analytics-for-wordpress' ),
2229
 
2230
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:77
2348
  // Reference: src/modules/widget/components/WidgetTips.vue:73
2349
  __( 'Pro Tip:', 'google-analytics-for-wordpress' ),
2350
 
2351
+ // Reference: src/modules/reports/components/ReportTableBox.vue:69
2352
  // Reference: src/modules/reports/components/monsterinsights-ReportsPagination.vue:29
2353
  __( 'Show', 'google-analytics-for-wordpress' ),
2354
 
2370
  // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2371
  __( 'You can re-enable the MonsterInsights widget at any time using the "Screen Options" menu on the top right of this page', 'google-analytics-for-wordpress' ),
2372
 
2373
+ // Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:39
 
2374
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
2375
 
2376
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
2377
  __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
2378
 
2379
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:30
2380
  __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
2381
 
2382
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:31
2383
  __( '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' ),
2384
 
2385
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:33
2386
  /* Translators: Add links to documentation. */
2387
  __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2388
 
2401
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2402
  __( 'Unlock PRO Features Now', 'google-analytics-for-wordpress' ),
2403
 
2404
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:151
2405
  __( 'Paste your license key here', 'google-analytics-for-wordpress' ),
2406
 
2407
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:152
2408
  __( 'Verify', 'google-analytics-for-wordpress' ),
2409
 
2410
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:43
2411
  /* Translators: Add link to retrieve license from account area. */
2412
  __( 'Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
2413
 
2414
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:223
2415
  __( 'There was an error unlocking MonsterInsights PRO please try again or install manually.', 'google-analytics-for-wordpress' ),
2416
 
2417
  // Reference: src/modules/wizard-onboarding/api/index.js:18
2566
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
2567
  __( 'MonsterInsights uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don\'t have to write any code.', 'google-analytics-for-wordpress' ),
2568
 
2569
+ // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:94
2570
  __( 'Enhanced Link Attribution', 'google-analytics-for-wordpress' ),
2571
 
2572
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
2765
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:95
2766
  __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
2767
 
2768
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:112
2769
  __( 'Choose Theme', 'google-analytics-for-wordpress' ),
2770
 
2771
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:114
2772
  __( 'Widget Styling', 'google-analytics-for-wordpress' ),
2773
 
2774
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:115
2775
  __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
2776
 
2777
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:116
2778
  __( 'Sort By', 'google-analytics-for-wordpress' ),
2779
 
2780
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:117
2781
  __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
2782
 
2783
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:118
2789
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:120
2790
  __( 'Title your widget and set its display preferences.', 'google-analytics-for-wordpress' ),
2791
 
2792
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:121
2793
  __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
2794
 
2795
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:122
2796
  __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
2797
 
2798
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:124
2799
  /* Translators: Placeholders make the text bold. */
2800
  __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
2801
 
2802
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:126
2803
  /* Translators: Placeholders make the text bold. */
2804
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
2805
 
2806
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:127
2807
  __( 'Loading Themes', 'google-analytics-for-wordpress' ),
2808
 
2809
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:132
2810
  /* Translators: placeholders make text small. */
2811
  __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
2812
 
2813
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:137
2814
  /* Translators: placeholders make text small. */
2815
  __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
2816
 
2817
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:144
2818
  /* Translators: placeholders make text small. */
2819
  __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
2820
 
2821
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:149
2822
  /* Translators: placeholders make text small. */
2823
  __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
2824
 
2825
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:154
2826
  /* Translators: placeholders make text small. */
2827
  __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
2828
 
2838
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:128
2839
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2840
 
 
2841
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:180
2842
  __( 'Customize Design', 'google-analytics-for-wordpress' ),
2843
 
2930
  /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2931
  __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
2932
 
2933
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:127
2934
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:67
 
2935
  __( 'Theme Preview', 'google-analytics-for-wordpress' ),
2936
 
2937
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:93
2940
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:94
2941
  __( 'Narrow', 'google-analytics-for-wordpress' ),
2942
 
 
2943
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:181
2944
  __( 'Title', 'google-analytics-for-wordpress' ),
2945
 
 
2946
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:182
2947
  __( 'Color', 'google-analytics-for-wordpress' ),
2948
 
 
2949
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:183
2950
  __( 'Size', 'google-analytics-for-wordpress' ),
2951
 
 
2952
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:184
2953
  __( 'Border', 'google-analytics-for-wordpress' ),
2954
 
2955
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:185
2956
  __( 'Author/Date', 'google-analytics-for-wordpress' ),
2957
 
 
2958
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:186
2959
  __( 'Label', 'google-analytics-for-wordpress' ),
2960
 
 
2961
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:187
2962
  __( 'Background', 'google-analytics-for-wordpress' ),
2963
 
3000
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
3001
  __( 'Close', 'google-analytics-for-wordpress' ),
3002
 
3003
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:31
3004
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
3005
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
3006
 
3014
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
3015
  __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-for-wordpress' ),
3016
 
3017
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:33
3018
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:60
3019
  __( 'Automated + Curated', 'google-analytics-for-wordpress' ),
3020
 
3056
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:41
3057
  __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
3058
 
3059
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:128
3060
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:68
3061
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-for-wordpress' ),
3062
 
3063
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:129
3064
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:69
3065
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-for-wordpress' ),
3066
 
3067
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:136
3068
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:76
3069
  __( 'Icon', 'google-analytics-for-wordpress' ),
3070
 
3296
  // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputFbia-Lite.vue:22
3297
  __( 'Facebook Instant Articleasdasdasds', 'google-analytics-for-wordpress' ),
3298
 
3299
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:55
3300
  __( 'Media', 'google-analytics-for-wordpress' ),
3301
 
3302
  // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputMedia-Lite.vue:23
3425
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:332
3426
  __( 'Time to Interactive', 'google-analytics-for-wordpress' ),
3427
 
3428
+ // Reference: src/modules/reports/routes/index.js:104
3429
  __( '2021 Year in Review', 'google-analytics-for-wordpress' ),
3430
 
3431
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:53
3432
  __( 'Realtime', 'google-analytics-for-wordpress' ),
3433
 
3434
  // Reference: src/components/TheFloatingBar-Lite.vue:29
3743
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:110
3744
  __( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3745
 
3746
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:109
3747
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3748
 
3749
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:96
3750
  __( 'Warning: If you use a manual GA4 Measurement ID, you won\'t be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
3751
 
3752
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:140
3842
  __( 'Oops! Something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
3843
 
3844
  // Reference: src/modules/popular-posts/api/index.js:44
3845
+ /* Translators: Error status, error text, Support link tag starts with url and support link tag ends. */
 
3846
  __( 'Can\'t save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance.', 'google-analytics-for-wordpress' ),
3847
 
3848
  // Reference: src/modules/popular-posts/api/index.js:49
 
3849
  /* Translators: Support link tag starts with url and support link tag ends. */
3850
  __( 'Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team.', 'google-analytics-for-wordpress' ),
3851
 
4024
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers or GT-YYYYY where the Y\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
4025
 
4026
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:154
4027
+ __( 'Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-for-wordpress' ),
4028
+
4029
+ // Reference: src/modules/reports/routes/index.js:90
4030
+ __( 'Media Report', 'google-analytics-for-wordpress' ),
4031
+
4032
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:337
4033
+ __( 'Easily See Which Videos Are Most Popular.', 'google-analytics-for-wordpress' ),
4034
+
4035
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:339
4036
+ __( 'Videos Plays, Average Duration, and Completions', 'google-analytics-for-wordpress' ),
4037
+
4038
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:340
4039
+ __( 'Works with YouTube, Vimeo, and HTML 5 Videos', 'google-analytics-for-wordpress' ),
4040
+
4041
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:341
4042
+ __( 'Compare stats over time', 'google-analytics-for-wordpress' ),
4043
+
4044
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportMedia-Lite.vue:48
4045
+ __( 'Video Plays', 'google-analytics-for-wordpress' ),
4046
+
4047
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportMedia-Lite.vue:49
4048
+ __( 'Video %s Plays', 'google-analytics-for-wordpress' ),
4049
+
4050
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportMedia-Lite.vue:50
4051
+ __( 'No video plays tracked during this time period.', 'google-analytics-for-wordpress' ),
4052
+
4053
+ // Reference: src/modules/reports/components/monsterinsights-ReportsDatePicker.vue:114
4054
+ /* Translators: Make the text bold and add the start and end dates. */
4055
+ __( '%1$sCustom dates:%2$s %3$s - %4$s', 'google-analytics-for-wordpress' ),
4056
+
4057
+ // Reference: src/modules/reports/components/monsterinsights-ReportsDatePicker.vue:117
4058
+ __( 'Custom Date Range', 'google-analytics-for-wordpress' ),
4059
+
4060
+ // Reference: src/modules/reports/components/monsterinsights-ReportsDatePicker.vue:117
4061
+ __( 'Set Custom Date Range', 'google-analytics-for-wordpress' ),
4062
+
4063
+ // Reference: src/modules/reports/components/monsterinsights-ReportsDatePicker.vue:120
4064
+ __( 'Hide Details', 'google-analytics-for-wordpress' ),
4065
+
4066
+ // Reference: src/modules/reports/components/monsterinsights-ReportsDatePicker.vue:120
4067
+ __( 'Show Details', 'google-analytics-for-wordpress' )
4068
  );
4069
  /* THIS IS THE END OF THE GENERATED FILE */
lite/assets/vue/css/chunk-common.css CHANGED
@@ -1 +1 @@
1
- strong[data-v-e05413a0]{display:block}[data-v-2561b4b1]{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-eafd9de2]{display:block}.monsterinsights-reset-default[data-v-eafd9de2]{margin-left:5px}.monsterinsights-dark[data-v-cd6875ca]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#338eef;color:#fff;font-size:16px;line-height:140%;padding:16px 32px 16px 58px;text-align:left;position:relative;margin:-20px -10px 20px}.monsterinsights-admin-page .monsterinsights-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;left:32px;top: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:16px;position:absolute;right:15px;top:calc(50% - 5px);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}.monsterinsights-container[data-v-d3e6e3ce]: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.monsterinsights-quick-links-open,.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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAABQCAMAAAC9OtKiAAAC91BMVEUAAABvS7ttSbluSrpvS7tuSrpvS7tvS7tvSrtsSLdsTLFvS7tuSrluSrpvS7tvS7ttSblvS7tpRrRvS7tvS7tvS7tvS7tvS7tgP6lhP6pvS7tvS7s0OkZvS7tvS7tvS7s5P0xnRbJsSLc2PElvS7s5P0w5P0w5P0w6P05vS7tvS7thP6lfPqc5P0wvMUFgPqg5P0xfPqcrMDk5P0xfPqcrMDlXRolqR7U5P0xfPqeUeM+ljdTT6O////9vS7t9XcI5P0xfPqfqTmQjIyOSdc1/X8OiitOkjNQyMjKYftCGZ8d4VcDsYndxTbxkQqyLbcmagdFmRLChh9N2U7+DZMZ6WMFzUL1yTr2fhdKQc80ewYX/iTrY6/GXe9CPcsx7W8H9/v6BYcUrMDqNb8uIasmdhNGcgtGVec9uSrrv9/lsSbb4/P1pRrTz+fvQ5u2Ia8fn8vfg7/SOcsqEZsTb7PJzVLY+Q1OsotugoqJESFrk8PXS5u/O4+pTT3FUXWkvLi/V4+ihsbr8+vvr9PjAw+XG2eDA09r0sbyZmZlKSmRMVGE9NV9BSFUxNETk5PTO3uzK2evEzejM4OeljNS3ydGLccJ/YcB5WruJlqDyiprweoxteINganVbZHCcRVMoKCrx8/n98PLRzeu2teClktbNzc2Xf8u0w8r0usO2t7jkvqBwYZx1folncX1LO3rdS2Dq6uq8vuO+sOGxqd2x4duY3M3ausWtvsSF18KDbrfgqbWYp7FeP6OEj5hYPpV5hpBhWoToboHtZnrLSFxzOkXs7Pf84eTW2ODY09e6zdXb1s6vwMjdtb52Vb2ss7Vs0LKKebLkxa2kqqx7aKtHyZ1pWJZkWopROonndYfoWGzrVmzQWWtFPGr5llRSUlI/Pz88MjQ4KCouJSbX39/l2tvAwb6XyL2Sf7x+Ybv0pbHfl6ZbuJfihZbig5RnqpHss4mrlomIiIjNaXfTY3PHWGiDV2bxnWTSkGRiYmKmQ1NTQVBENkBUODwEKmHaAAAAOnRSTlMA7wscTEHV+/QT/tyvt5+JXjYE4cmWVij05W9nWoV8dkA6LxGlJerYxMGofEnhx8ChkXZrJOnf0JN2dWY7XQAACrdJREFUWMOdmGVgWlcUgEnSxaVpI+187dxdHo/DI+WRAcECgbAREgKBuGuTZsvqXTvptnbd1s7bbpW5u7u7u7vrj51773s8LMuW7weFW/hy7rn3XHmqydm1MD1V8275qumSkwaZ5Umt6fsCzJiushQAsssSGsszsTVz1vSMGVngFwH2iGuckQ0ekwdmTk9ZCGb7eTaA/JiE7gng9NtEmD2tMHOywGZUq40WyMyQmmYVAmg5LiROL0wMyMnVqdXqWjfkZTDjwQAujuNMWhFKpqOcDSaOUyPVZsjLIS37AjYhLlTCvP8sSi/IYW+KwaLnOANxGsxQgvncgxoRUautiY5a0ZQTahfIK2dfhRr8da2axumGQlWZbNRrtRhmJosgH4qmUu4lT8VMKgirKWGAvdJA5ChBqoQMaZIeNJXyYPAAlKar0gG8+HOjmuEHwNFihLSIE8qwMrPBAtlTKTPB2wswu2wX8HCESqY8rx4gKCkDWgIUzTsIwBwi4f47aeCvDJsB0kgqaTIZTdhthpcaRfwGWAJcwA37TKHE/taqK70eYArsuYRJr/QbCQBAjR/9zinWEJpCMr8NvW4XMxgkZS0nIUpR1pBEmKZSIlmYsmqiqLTXUYOdTCJ91wW9UpQ2LcXkl+aTG3aZsmZC0c7WGjmk+oLW1mYAaB2wEYlIQjR5o0kAKP+3Xs8ozQMIRMcEQ60O69En0bwee+oy2fychJfmNO3gmZMMetlBWYDU6yNcpFIts9naLvmI+RnJpUwnlxkImXumUhYBZtxuwKExKuPcZNVZobndqiNYHa0iK8lQSM9WJBt+sIlOgJLUpdgniwy18jgPoAmtA+u6/KSjtui6Ieo5byjISbigIJVyJgTUiWzWIbl9XDxBLWKLywAUplLOgBppTJRMfo4xojABf5JSm3o9KgY37TTOnLpqSZmry/VzyZhwWOIa6mGvlBsiADFGOILktObquVR4/fIb9v9mmDlJLeKg2LnY0nbQn6qvOOuRxd39Z597w5AxMVyROierymzA2Oo4BlvNScJuvEzDaGjx8Z03GGKVopRTNxSnVOZBU1QZYYs5xw1RoSzt5nn+BruiDElRTrZoloAd5zZHsVOlkbuiQRNHCzrPvkpx6tkrQHpKZQFgBitpturYPKo7S5PIYnSODiXOqsl2i0Lg2PpjbEIjAY1J9PBIgjMIs1Mri8CvjuMKTQraiHJU7vsF2+5fhOw8fr9J9ltbnPFGzONkYZ5jJCnctlKIcsAx81MVuSlOGR3rpBFCruS4bSOCsHrHhRO33TZx4cWrBWH/Y5KLnK4b0QJfoklNG1V2bl4kCON3jfG8z+cjnyc2CsKB85OKvIZUj3GyIM9YvuGiizYsv5wql60SVt816uvu6OjuQWV3Sz8/MSIclpDSDLJuRPfEoUThhiqJL0+nxvFlfHcDmigtGk2Hb+lGYf/9EoucRplyuB99oEqmourxsXFh41pfWxsKGR2ktnrGLhEOmJ9Q5DTA1HOyYeuDVW9t2vQzKive2C6sWtrf0OHjZdo0hIVrx4UjE4q8WlEu1CTy9PsnI+9vqqh4SBC2+Bo6eIUGzeUb3qxa3vPEoLB3fJE3KcqeJGXDeycTLt1U8bBwH9/Rxseg0VxUgWz1XSgcGKvMB7ui9GmS+J0YT1uw4A9hcGlPQz+v4NNcXkF4feHYSFyYpWBUlJ1tScp3aZALFvwlbOfbFvMx9EvKn1YM3yOcGHeH4BTl2d2Ki1Xm41KQC9YIE/0Nvlhlj9TxO6++5kXhsNjrJvQqynN4JcytxHn9u9SICMLa7hY+FhzLj39848HlWK6jq4X5scouRbmE70cRY8NFy7f+8J5svFRYxbf0xCmxR9cMn8HKdWNMMovToE9R3oTdkZ1f4ARnvWbKS3gyJW++/ZZOSblYc/2KqzUU/mJh96gx2wNaRXlVJ2a9TSodVP5NRoZymrCDx34/d8opp7wsOVtokEy5PaosT3P3gjl6CmwKL6FJYtIHq6rewhAlJUbZzd98CuF2qR5JkIlRpmdagpzFIhm9ASeA7Uo65RYubmlZ/iaWzAfM+OEmYZzv4W+hyuckZTTINv4SOZeFEMIdXi7yWtwqTR7oPYeX+AZnyHUPf4DChx+6Thgc80lRfvvsMp4//YVrv5eD7OBHhP2k5dcWwXOIrDyPHgxEEGXn6Q+gE63Xkdc/hadw+/mK5PK24RXDn7xz6qmnXruQjWX3E8L+7FqcZya7bT0r8ujaboOuUdn5dUWUX7DE+S0rPiUj3nn+i7+dSjidX0ykWORHSjPSTg4FYmyRM+cQL3Pr60z4wNNbhNVrl654lpf4lSqfxLR3aFo6V7FUzpqtxX6Sk2ed5DJ5r6L/itpRPspjt955562P4XFjpXDh8PCY3PydFCWy0HeXcADLJInOgAcx0DNjNYQ1Z9xYiW88S/hEzrW/JKweXsrLfERzyVOWjkhTqMCJ41GJpyawSan0WB7R2O2k6/bOeOHZ5KSxSNgYDZKOOHabMHqJtFzmZPmJJ8IFozt5F0TOEg0YpsFlv+mcmAhvqqOHjBFhRyefzH3CYO4+7ExQy5ReECWlwQmmXpKBaj2etA1DVy4599wlVw41cRJ3DAo71iYKxy4WBp8X0zJQua+TavDvKxUZdkM9nVEk0rAxwskozlVPxRvPH0cjBlNA7o0hWemxqKNOM1j6jJXoNLCCSnTieejiLTHC7YKw8jOigWI8EkSYklWkjMFkAbA4zZbeRCVD/+ogHmHumTh/2bLzJ+4ZFwTh/iYD+aKlFKdQk6yskbddfSXefqqD9R6AmurUShyk+1EaZU3jK45cdIbrM1W7Ais/rEitXJFdXecZw8RlUK74KdC/9OrbIyMjKxctWtPYeKa1uXW9ujISyFKVOllHMcqAvEcawWQIRyJ1RruiTI0lwCGbiREArGE75wJVAZ05dg4xRffIPnAGmwzVGP8USo/IIZGVa+5ubXdYdXg9FLNUJSY1rR0kpOyRxq6uCAqnVJrNHGFb42s6wjockBJVni2qDILZz9XZw7XVBgPxTa7U671BW8hkcpnJI6qugdy77yVOjFJvKVKl0cjC0v0yBo+7pkYrii6CyVVjpjidbrfHAjFgz9c3Q7N155qd1mZHMADlqqwutlTQ6vWboGCP0vws8FgsMDkWC2pLSov23HXmvhDk1rW363Rvn+kAaM61FJJjZT1WiXzX08OueOCy1Gtl6hEn7DZvXraHvNVGcaflsI3QE/TrEDKJ8JHFbGydC81gcentvXpZWQyiKyBqFczkYVCaW6sgBlwuzx7sQJ5nca3T6e49U0chK9ERYLW2y/2xACrzzfIY6P1JyhC2chRXWjpbHPPBXb/+lcYz70bjnFnYcghGOxfA6nCcUNDe3tp6SE5WSBnZJKVNuehDmfwgFZPf2ti4Zue9c06igc/RHXVUayv+gWNnzdU52g8tA/9USoa7ULk7FM84vBE5mn08dBfVPg6Hbs6hKtW8udY56Rl5Tu9/UdZnYavC7kwZ5Yg5+cfSvBwyE+PO9AQG+jjvgCO3L0nZN2DN7eJsA+vM2fFPH+Yf13i4fMKiqvT459aOdt2Ao7lZpxuoQZxU6SFvn7Hq2sGxXudonVuu+h/MmosrgM6B2dDpgECVQMAmq4O+WCd9vPoPhumB3HmlMigAAAAASUVORK5CYII=)}.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-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade{background:#704cbc}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade:hover{background:#509fe2}.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:Roboto;src:url(../fonts/Roboto-Regular.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Roboto;src:url(../fonts/Roboto-Bold.woff2) format("woff2");font-weight:700;font-style:normal}@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"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-download:before{content:"\0046"}@media (max-width:782px){.monsterinsights-notices-area{margin-left:10px;margin-right:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-left:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-left-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-left-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-left-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-left-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-left-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-right:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:right}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-left:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-left:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-left:0;color:#fff}.monsterinsights-notice .monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights-notice .monsterinsights-button-error{background-color:#e64949!important;border:0!important;font-size:13px;padding:8px 20px!important}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-icon{margin-right:15px;margin-top:4px}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-icon svg{width:36px;height:32px}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner{background-color:#ffebeb!important}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner h2{font-size:14px;color:#e64949;margin:0;padding:0}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner .monsterinsights-notice-content{color:#e64949}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner a.monsterinsights-button-error{margin-top:17px}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-left:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-left-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-left-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-left-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;left:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.monsterinsights_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.monsterinsights_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.monsterinsights_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{right:auto;left:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-notifications-display{background:#fff;border-left:3px solid #509fe2;padding:20px;border-radius:3px 0 0 3px;margin-bottom:50px;position:relative}.monsterinsights-settings-content .monsterinsights-notifications-display{margin-top:20px;margin-bottom:20px}.monsterinsights-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.monsterinsights-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.monsterinsights-notifications-display .monsterinsights-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator{padding-top:10px}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator a{position:relative}.monsterinsights-notifications-display .monsterinsights-notification-inner{margin-left:25px}.monsterinsights-notifications-display .monsterinsights-button{margin-right:15px}.monsterinsights-notifications-display .monsterinsights-notification-navigation{position:absolute;right:0;top:100%}.monsterinsights-notifications-display .monsterinsights-notification-navigation button{background:#fff;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notification-navigation button:focus,.monsterinsights-notifications-display .monsterinsights-notification-navigation button:hover{color:#509fe2}.monsterinsights-notifications-display .monsterinsights-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);font-size:10px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous{margin-right:2px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous .monstericon-arrow{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.monsterinsights-notifications-display .monsterinsights-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;right:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;left:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.monsterinsights-report .monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;left:20px}.monsterinsights-admin-page.monsterinsights-path-about-us .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-addons .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-import-export .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-url-builder .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-notificationsv3-container{margin-right:0}.monsterinsights-admin-page .monsterinsights-notificationsv3-container{display:inline-block;margin-right:20px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number{position:absolute;top:-11px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-greater-than-10{right:-13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-less-than-10{right:-10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:absolute;top:21px;right:15px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:-2px;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-notificationsv3-inbox-number{cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{width:440px;position:fixed;top:32px;right:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px);transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar.monsterinsights-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title svg{margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:hover{color:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:focus{outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close{margin-left:12px;vertical-align:bottom}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:active svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:focus svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;right:inherit;min-width:24px;height:24px;line-height:24px;margin-right:8px;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-dismissed-number{margin-right:8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{margin-bottom:46px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{width:54px;float:left;text-align:center;padding-top:24px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{float:none;margin:0 auto}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{float:left;width:354px;padding-top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{width:260px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{width:65%}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:hover{background:#d3d7de}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:hover{color:#a9b1c3}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-left:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip[x-placement^=left]{padding-right:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:right}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{left:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{right:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-right:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px;white-space:pre}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0;background:rgba(0,0,0,0)}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}.monsterinsights-upload-media-wrapper .monsterinsights-dark{display:block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media-label{margin-bottom:0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;left:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media{color:#fff;text-decoration:underline;margin-left:auto;cursor:pointer;padding:0 10px 10px 0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media:hover{text-decoration:none}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media:hover .monsterinsights-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media img{max-width:100%;display:inline-block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-input{width:73%;margin-right:2%;float:left;position:relative}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button{width:25%;float:left;font-size:15px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:active,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:focus,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:hover{outline:none}.monsterinsights-email-summaries-settings a{color:#509fe2!important}.monsterinsights-email-summaries-settings a:focus,.monsterinsights-email-summaries-settings a:hover{color:#393f4c!important}.monsterinsights-email-summaries-settings .monsterinsights-dark{display:block}.monsterinsights-email-summaries-settings .inline-field .monsterinsights-button:first-child{margin-left:0}.monsterinsights-email-summaries-settings .monsterinsights-settings-input-repeater{margin-bottom:18px}.monsterinsights-email-summaries-settings .monsterinsights-button.monsterinsights-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.monsterinsights-accordion .monsterinsights-accordion{padding:0;border:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.monsterinsights-accordion .monsterinsights-accordion div:last-child .monsterinsights-accordion-item-details{border-radius:5px}.monsterinsights-accordion .monsterinsights-accordion dd{margin-left:0;margin-bottom:0}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{cursor:pointer;outline:none}.monsterinsights-accordion .monsterinsights-accordion-item-details-inner,.monsterinsights-accordion .monsterinsights-accordion-item-trigger{padding:0 20px 30px}.monsterinsights-accordion .monsterinsights-accordion-item.is-active .monsterinsights-accordion-item-title{border-bottom:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-right:1.25rem}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text .title{padding-left:15px}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{width:100%;text-align:left;background-color:rgba(0,0,0,0);border:none}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon{display:block;position:absolute;top:0;right:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-right:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(45deg);-ms-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(225deg);-ms-transform:translateY(2px) rotate(225deg);transform:translateY(2px) rotate(225deg)}.monsterinsights-accordion .monsterinsights-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.monsterinsights-accordion .monsterinsights-accordion-item-details p,.monsterinsights-accordion .monsterinsights-accordion-item-details ul{font-size:1.2em;line-height:1.8}.monsterinsights-accordion .monsterinsights-accordion-item-enter-active,.monsterinsights-accordion .monsterinsights-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-enter,.monsterinsights-accordion .monsterinsights-accordion-item-leave-to{height:0!important}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff;min-height:85px}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:left;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{left:20px;right:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-right:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 50%;padding-left:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{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-gray{background:#8ea4b4;border-color:#738ea1;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:hover{background-color:#596771;border-color:#738ea1}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray.monsterinsights-button-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-small{font-size:13px;line-height:20px;padding:5px 10px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-left:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.wp-admin .monsterinsights-swal{margin-left:160px}.auto-fold .wp-admin .monsterinsights-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .wp-admin .monsterinsights-swal{margin-left:160px}.folded .wp-admin .monsterinsights-swal{margin-left:36px}}.monsterinsights-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}.monsterinsights-float-right{float:right}.monsterinsights-loading-spinner-inline{text-align:center;margin:25px}.monsterinsights-loading-spinner-inline .monsterinsights-loading-spinner-inline-loader-holder{display:inline-block}.monsterinsights-semrush-cta{background:#fff;border-left:3px solid #338eef;padding:20px 26px;border-radius:3px 0 0 3px;position:relative}.monsterinsights-semrush-cta br{display:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-close{position:absolute;top:12px;right:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.monsterinsights-semrush-cta .monsterinsights-button{background:#338eef;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.monsterinsights-semrush-cta .monsterinsights-button:active,.monsterinsights-semrush-cta .monsterinsights-button:focus,.monsterinsights-semrush-cta .monsterinsights-button:hover{background:#3088e6;outline:none}.monsterinsights-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}
1
+ strong[data-v-1c1718a8]{display:block}[data-v-8d2cb686]{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-3253c54f]{display:block}.monsterinsights-reset-default[data-v-3253c54f]{margin-left:5px}.monsterinsights-dark[data-v-3b6b71fa]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#338eef;color:#fff;font-size:16px;line-height:140%;padding:16px 32px 16px 58px;text-align:left;position:relative;margin:-20px -10px 20px}.monsterinsights-admin-page .monsterinsights-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;left:32px;top: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:16px;position:absolute;right:15px;top:calc(50% - 5px);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}.monsterinsights-container[data-v-18fdf54c]: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.monsterinsights-quick-links-open,.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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAABQCAMAAAC9OtKiAAAC91BMVEUAAABvS7ttSbluSrpvS7tuSrpvS7tvS7tvSrtsSLdsTLFvS7tuSrluSrpvS7tvS7ttSblvS7tpRrRvS7tvS7tvS7tvS7tvS7tgP6lhP6pvS7tvS7s0OkZvS7tvS7tvS7s5P0xnRbJsSLc2PElvS7s5P0w5P0w5P0w6P05vS7tvS7thP6lfPqc5P0wvMUFgPqg5P0xfPqcrMDk5P0xfPqcrMDlXRolqR7U5P0xfPqeUeM+ljdTT6O////9vS7t9XcI5P0xfPqfqTmQjIyOSdc1/X8OiitOkjNQyMjKYftCGZ8d4VcDsYndxTbxkQqyLbcmagdFmRLChh9N2U7+DZMZ6WMFzUL1yTr2fhdKQc80ewYX/iTrY6/GXe9CPcsx7W8H9/v6BYcUrMDqNb8uIasmdhNGcgtGVec9uSrrv9/lsSbb4/P1pRrTz+fvQ5u2Ia8fn8vfg7/SOcsqEZsTb7PJzVLY+Q1OsotugoqJESFrk8PXS5u/O4+pTT3FUXWkvLi/V4+ihsbr8+vvr9PjAw+XG2eDA09r0sbyZmZlKSmRMVGE9NV9BSFUxNETk5PTO3uzK2evEzejM4OeljNS3ydGLccJ/YcB5WruJlqDyiprweoxteINganVbZHCcRVMoKCrx8/n98PLRzeu2teClktbNzc2Xf8u0w8r0usO2t7jkvqBwYZx1folncX1LO3rdS2Dq6uq8vuO+sOGxqd2x4duY3M3ausWtvsSF18KDbrfgqbWYp7FeP6OEj5hYPpV5hpBhWoToboHtZnrLSFxzOkXs7Pf84eTW2ODY09e6zdXb1s6vwMjdtb52Vb2ss7Vs0LKKebLkxa2kqqx7aKtHyZ1pWJZkWopROonndYfoWGzrVmzQWWtFPGr5llRSUlI/Pz88MjQ4KCouJSbX39/l2tvAwb6XyL2Sf7x+Ybv0pbHfl6ZbuJfihZbig5RnqpHss4mrlomIiIjNaXfTY3PHWGiDV2bxnWTSkGRiYmKmQ1NTQVBENkBUODwEKmHaAAAAOnRSTlMA7wscTEHV+/QT/tyvt5+JXjYE4cmWVij05W9nWoV8dkA6LxGlJerYxMGofEnhx8ChkXZrJOnf0JN2dWY7XQAACrdJREFUWMOdmGVgWlcUgEnSxaVpI+187dxdHo/DI+WRAcECgbAREgKBuGuTZsvqXTvptnbd1s7bbpW5u7u7u7vrj51773s8LMuW7weFW/hy7rn3XHmqydm1MD1V8275qumSkwaZ5Umt6fsCzJiushQAsssSGsszsTVz1vSMGVngFwH2iGuckQ0ekwdmTk9ZCGb7eTaA/JiE7gng9NtEmD2tMHOywGZUq40WyMyQmmYVAmg5LiROL0wMyMnVqdXqWjfkZTDjwQAujuNMWhFKpqOcDSaOUyPVZsjLIS37AjYhLlTCvP8sSi/IYW+KwaLnOANxGsxQgvncgxoRUautiY5a0ZQTahfIK2dfhRr8da2axumGQlWZbNRrtRhmJosgH4qmUu4lT8VMKgirKWGAvdJA5ChBqoQMaZIeNJXyYPAAlKar0gG8+HOjmuEHwNFihLSIE8qwMrPBAtlTKTPB2wswu2wX8HCESqY8rx4gKCkDWgIUzTsIwBwi4f47aeCvDJsB0kgqaTIZTdhthpcaRfwGWAJcwA37TKHE/taqK70eYArsuYRJr/QbCQBAjR/9zinWEJpCMr8NvW4XMxgkZS0nIUpR1pBEmKZSIlmYsmqiqLTXUYOdTCJ91wW9UpQ2LcXkl+aTG3aZsmZC0c7WGjmk+oLW1mYAaB2wEYlIQjR5o0kAKP+3Xs8ozQMIRMcEQ60O69En0bwee+oy2fychJfmNO3gmZMMetlBWYDU6yNcpFIts9naLvmI+RnJpUwnlxkImXumUhYBZtxuwKExKuPcZNVZobndqiNYHa0iK8lQSM9WJBt+sIlOgJLUpdgniwy18jgPoAmtA+u6/KSjtui6Ieo5byjISbigIJVyJgTUiWzWIbl9XDxBLWKLywAUplLOgBppTJRMfo4xojABf5JSm3o9KgY37TTOnLpqSZmry/VzyZhwWOIa6mGvlBsiADFGOILktObquVR4/fIb9v9mmDlJLeKg2LnY0nbQn6qvOOuRxd39Z597w5AxMVyROierymzA2Oo4BlvNScJuvEzDaGjx8Z03GGKVopRTNxSnVOZBU1QZYYs5xw1RoSzt5nn+BruiDElRTrZoloAd5zZHsVOlkbuiQRNHCzrPvkpx6tkrQHpKZQFgBitpturYPKo7S5PIYnSODiXOqsl2i0Lg2PpjbEIjAY1J9PBIgjMIs1Mri8CvjuMKTQraiHJU7vsF2+5fhOw8fr9J9ltbnPFGzONkYZ5jJCnctlKIcsAx81MVuSlOGR3rpBFCruS4bSOCsHrHhRO33TZx4cWrBWH/Y5KLnK4b0QJfoklNG1V2bl4kCON3jfG8z+cjnyc2CsKB85OKvIZUj3GyIM9YvuGiizYsv5wql60SVt816uvu6OjuQWV3Sz8/MSIclpDSDLJuRPfEoUThhiqJL0+nxvFlfHcDmigtGk2Hb+lGYf/9EoucRplyuB99oEqmourxsXFh41pfWxsKGR2ktnrGLhEOmJ9Q5DTA1HOyYeuDVW9t2vQzKive2C6sWtrf0OHjZdo0hIVrx4UjE4q8WlEu1CTy9PsnI+9vqqh4SBC2+Bo6eIUGzeUb3qxa3vPEoLB3fJE3KcqeJGXDeycTLt1U8bBwH9/Rxseg0VxUgWz1XSgcGKvMB7ui9GmS+J0YT1uw4A9hcGlPQz+v4NNcXkF4feHYSFyYpWBUlJ1tScp3aZALFvwlbOfbFvMx9EvKn1YM3yOcGHeH4BTl2d2Ki1Xm41KQC9YIE/0Nvlhlj9TxO6++5kXhsNjrJvQqynN4JcytxHn9u9SICMLa7hY+FhzLj39848HlWK6jq4X5scouRbmE70cRY8NFy7f+8J5svFRYxbf0xCmxR9cMn8HKdWNMMovToE9R3oTdkZ1f4ARnvWbKS3gyJW++/ZZOSblYc/2KqzUU/mJh96gx2wNaRXlVJ2a9TSodVP5NRoZymrCDx34/d8opp7wsOVtokEy5PaosT3P3gjl6CmwKL6FJYtIHq6rewhAlJUbZzd98CuF2qR5JkIlRpmdagpzFIhm9ASeA7Uo65RYubmlZ/iaWzAfM+OEmYZzv4W+hyuckZTTINv4SOZeFEMIdXi7yWtwqTR7oPYeX+AZnyHUPf4DChx+6Thgc80lRfvvsMp4//YVrv5eD7OBHhP2k5dcWwXOIrDyPHgxEEGXn6Q+gE63Xkdc/hadw+/mK5PK24RXDn7xz6qmnXruQjWX3E8L+7FqcZya7bT0r8ujaboOuUdn5dUWUX7DE+S0rPiUj3nn+i7+dSjidX0ykWORHSjPSTg4FYmyRM+cQL3Pr60z4wNNbhNVrl654lpf4lSqfxLR3aFo6V7FUzpqtxX6Sk2ed5DJ5r6L/itpRPspjt955562P4XFjpXDh8PCY3PydFCWy0HeXcADLJInOgAcx0DNjNYQ1Z9xYiW88S/hEzrW/JKweXsrLfERzyVOWjkhTqMCJ41GJpyawSan0WB7R2O2k6/bOeOHZ5KSxSNgYDZKOOHabMHqJtFzmZPmJJ8IFozt5F0TOEg0YpsFlv+mcmAhvqqOHjBFhRyefzH3CYO4+7ExQy5ReECWlwQmmXpKBaj2etA1DVy4599wlVw41cRJ3DAo71iYKxy4WBp8X0zJQua+TavDvKxUZdkM9nVEk0rAxwskozlVPxRvPH0cjBlNA7o0hWemxqKNOM1j6jJXoNLCCSnTieejiLTHC7YKw8jOigWI8EkSYklWkjMFkAbA4zZbeRCVD/+ogHmHumTh/2bLzJ+4ZFwTh/iYD+aKlFKdQk6yskbddfSXefqqD9R6AmurUShyk+1EaZU3jK45cdIbrM1W7Ais/rEitXJFdXecZw8RlUK74KdC/9OrbIyMjKxctWtPYeKa1uXW9ujISyFKVOllHMcqAvEcawWQIRyJ1RruiTI0lwCGbiREArGE75wJVAZ05dg4xRffIPnAGmwzVGP8USo/IIZGVa+5ubXdYdXg9FLNUJSY1rR0kpOyRxq6uCAqnVJrNHGFb42s6wjockBJVni2qDILZz9XZw7XVBgPxTa7U671BW8hkcpnJI6qugdy77yVOjFJvKVKl0cjC0v0yBo+7pkYrii6CyVVjpjidbrfHAjFgz9c3Q7N155qd1mZHMADlqqwutlTQ6vWboGCP0vws8FgsMDkWC2pLSov23HXmvhDk1rW363Rvn+kAaM61FJJjZT1WiXzX08OueOCy1Gtl6hEn7DZvXraHvNVGcaflsI3QE/TrEDKJ8JHFbGydC81gcentvXpZWQyiKyBqFczkYVCaW6sgBlwuzx7sQJ5nca3T6e49U0chK9ERYLW2y/2xACrzzfIY6P1JyhC2chRXWjpbHPPBXb/+lcYz70bjnFnYcghGOxfA6nCcUNDe3tp6SE5WSBnZJKVNuehDmfwgFZPf2ti4Zue9c06igc/RHXVUayv+gWNnzdU52g8tA/9USoa7ULk7FM84vBE5mn08dBfVPg6Hbs6hKtW8udY56Rl5Tu9/UdZnYavC7kwZ5Yg5+cfSvBwyE+PO9AQG+jjvgCO3L0nZN2DN7eJsA+vM2fFPH+Yf13i4fMKiqvT459aOdt2Ao7lZpxuoQZxU6SFvn7Hq2sGxXudonVuu+h/MmosrgM6B2dDpgECVQMAmq4O+WCd9vPoPhumB3HmlMigAAAAASUVORK5CYII=)}.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-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade{background:#704cbc}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade:hover{background:#509fe2}.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:Roboto;src:url(../fonts/Roboto-Regular.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Roboto;src:url(../fonts/Roboto-Bold.woff2) format("woff2");font-weight:700;font-style:normal}@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"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-download:before{content:"\0046"}@media (max-width:782px){.monsterinsights-notices-area{margin-left:10px;margin-right:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-left:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-left-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-left-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-left-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-left-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-left-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-right:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:right}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-left:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-left:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-left:0;color:#fff}.monsterinsights-notice .monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights-notice .monsterinsights-button-error{background-color:#e64949!important;border:0!important;font-size:13px;padding:8px 20px!important}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-icon{margin-right:15px;margin-top:4px}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-icon svg{width:36px;height:32px}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner{background-color:#ffebeb!important}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner h2{font-size:14px;color:#e64949;margin:0;padding:0}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner .monsterinsights-notice-content{color:#e64949}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner a.monsterinsights-button-error{margin-top:17px}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-left:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-left-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-left-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-left-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;left:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.monsterinsights_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.monsterinsights_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.monsterinsights_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{right:auto;left:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-notifications-display{background:#fff;border-left:3px solid #509fe2;padding:20px;border-radius:3px 0 0 3px;margin-bottom:50px;position:relative}.monsterinsights-settings-content .monsterinsights-notifications-display{margin-top:20px;margin-bottom:20px}.monsterinsights-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.monsterinsights-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.monsterinsights-notifications-display .monsterinsights-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator{padding-top:10px}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator a{position:relative}.monsterinsights-notifications-display .monsterinsights-notification-inner{margin-left:25px}.monsterinsights-notifications-display .monsterinsights-button{margin-right:15px}.monsterinsights-notifications-display .monsterinsights-notification-navigation{position:absolute;right:0;top:100%}.monsterinsights-notifications-display .monsterinsights-notification-navigation button{background:#fff;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notification-navigation button:focus,.monsterinsights-notifications-display .monsterinsights-notification-navigation button:hover{color:#509fe2}.monsterinsights-notifications-display .monsterinsights-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);font-size:10px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous{margin-right:2px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous .monstericon-arrow{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.monsterinsights-notifications-display .monsterinsights-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;right:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;left:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.monsterinsights-report .monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;left:20px}.monsterinsights-admin-page.monsterinsights-path-about-us .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-addons .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-import-export .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-url-builder .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-notificationsv3-container{margin-right:0}.monsterinsights-admin-page .monsterinsights-notificationsv3-container{display:inline-block;margin-right:20px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number{position:absolute;top:-11px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-greater-than-10{right:-13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-less-than-10{right:-10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:absolute;top:21px;right:15px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:-2px;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-notificationsv3-inbox-number{cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{width:440px;position:fixed;top:32px;right:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px);transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar.monsterinsights-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title svg{margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:hover{color:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:focus{outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close{margin-left:12px;vertical-align:bottom}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:active svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:focus svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;right:inherit;min-width:24px;height:24px;line-height:24px;margin-right:8px;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-dismissed-number{margin-right:8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{margin-bottom:46px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{width:54px;float:left;text-align:center;padding-top:24px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{float:none;margin:0 auto}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{float:left;width:354px;padding-top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{width:260px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{width:65%}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:right}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-right:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:hover{background:#d3d7de}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:hover{color:#a9b1c3}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-left:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip[x-placement^=left]{padding-right:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:right}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{left:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{right:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-right:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px;white-space:pre}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0;background:rgba(0,0,0,0)}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}.monsterinsights-upload-media-wrapper .monsterinsights-dark{display:block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media-label{margin-bottom:0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;left:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media{color:#fff;text-decoration:underline;margin-left:auto;cursor:pointer;padding:0 10px 10px 0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media:hover{text-decoration:none}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media:hover .monsterinsights-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media img{max-width:100%;display:inline-block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-input{width:73%;margin-right:2%;float:left;position:relative}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button{width:25%;float:left;font-size:15px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:active,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:focus,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:hover{outline:none}.monsterinsights-email-summaries-settings a{color:#509fe2!important}.monsterinsights-email-summaries-settings a:focus,.monsterinsights-email-summaries-settings a:hover{color:#393f4c!important}.monsterinsights-email-summaries-settings .monsterinsights-dark{display:block}.monsterinsights-email-summaries-settings .inline-field .monsterinsights-button:first-child{margin-left:0}.monsterinsights-email-summaries-settings .monsterinsights-settings-input-repeater{margin-bottom:18px}.monsterinsights-email-summaries-settings .monsterinsights-button.monsterinsights-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.monsterinsights-accordion .monsterinsights-accordion{padding:0;border:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.monsterinsights-accordion .monsterinsights-accordion div:last-child .monsterinsights-accordion-item-details{border-radius:5px}.monsterinsights-accordion .monsterinsights-accordion dd{margin-left:0;margin-bottom:0}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{cursor:pointer;outline:none}.monsterinsights-accordion .monsterinsights-accordion-item-details-inner,.monsterinsights-accordion .monsterinsights-accordion-item-trigger{padding:0 20px 30px}.monsterinsights-accordion .monsterinsights-accordion-item.is-active .monsterinsights-accordion-item-title{border-bottom:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-right:1.25rem}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text .title{padding-left:15px}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{width:100%;text-align:left;background-color:rgba(0,0,0,0);border:none}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon{display:block;position:absolute;top:0;right:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-right:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(45deg);-ms-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(225deg);-ms-transform:translateY(2px) rotate(225deg);transform:translateY(2px) rotate(225deg)}.monsterinsights-accordion .monsterinsights-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.monsterinsights-accordion .monsterinsights-accordion-item-details p,.monsterinsights-accordion .monsterinsights-accordion-item-details ul{font-size:1.2em;line-height:1.8}.monsterinsights-accordion .monsterinsights-accordion-item-enter-active,.monsterinsights-accordion .monsterinsights-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-enter,.monsterinsights-accordion .monsterinsights-accordion-item-leave-to{height:0!important}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff;min-height:85px}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:left;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{left:20px;right:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-right:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 50%;padding-left:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{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-gray{background:#8ea4b4;border-color:#738ea1;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:hover{background-color:#596771;border-color:#738ea1}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray.monsterinsights-button-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-small{font-size:13px;line-height:20px;padding:5px 10px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-left:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.wp-admin .monsterinsights-swal{margin-left:160px}.auto-fold .wp-admin .monsterinsights-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .wp-admin .monsterinsights-swal{margin-left:160px}.folded .wp-admin .monsterinsights-swal{margin-left:36px}}.monsterinsights-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}.monsterinsights-float-right{float:right}.monsterinsights-loading-spinner-inline{text-align:center;margin:25px}.monsterinsights-loading-spinner-inline .monsterinsights-loading-spinner-inline-loader-holder{display:inline-block}.monsterinsights-semrush-cta{background:#fff;border-left:3px solid #338eef;padding:20px 26px;border-radius:3px 0 0 3px;position:relative}.monsterinsights-semrush-cta br{display:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-close{position:absolute;top:12px;right:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.monsterinsights-semrush-cta .monsterinsights-button{background:#338eef;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.monsterinsights-semrush-cta .monsterinsights-button:active,.monsterinsights-semrush-cta .monsterinsights-button:focus,.monsterinsights-semrush-cta .monsterinsights-button:hover{background:#3088e6;outline:none}.monsterinsights-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}
lite/assets/vue/css/chunk-common.rtl.css CHANGED
@@ -1 +1 @@
1
- strong[data-v-e05413a0]{display:block}[data-v-2561b4b1]{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-eafd9de2]{display:block}.monsterinsights-reset-default[data-v-eafd9de2]{margin-right:5px}.monsterinsights-dark[data-v-cd6875ca]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#338eef;color:#fff;font-size:16px;line-height:140%;padding:16px 58px 16px 32px;text-align:right;position:relative;margin:-20px -10px 20px}.monsterinsights-admin-page .monsterinsights-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;right:32px;top: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:16px;position:absolute;left:15px;top:calc(50% - 5px);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}.monsterinsights-container[data-v-d3e6e3ce]: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.monsterinsights-quick-links-open,.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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAABQCAMAAAC9OtKiAAAC91BMVEUAAABvS7ttSbluSrpvS7tuSrpvS7tvS7tvSrtsSLdsTLFvS7tuSrluSrpvS7tvS7ttSblvS7tpRrRvS7tvS7tvS7tvS7tvS7tgP6lhP6pvS7tvS7s0OkZvS7tvS7tvS7s5P0xnRbJsSLc2PElvS7s5P0w5P0w5P0w6P05vS7tvS7thP6lfPqc5P0wvMUFgPqg5P0xfPqcrMDk5P0xfPqcrMDlXRolqR7U5P0xfPqeUeM+ljdTT6O////9vS7t9XcI5P0xfPqfqTmQjIyOSdc1/X8OiitOkjNQyMjKYftCGZ8d4VcDsYndxTbxkQqyLbcmagdFmRLChh9N2U7+DZMZ6WMFzUL1yTr2fhdKQc80ewYX/iTrY6/GXe9CPcsx7W8H9/v6BYcUrMDqNb8uIasmdhNGcgtGVec9uSrrv9/lsSbb4/P1pRrTz+fvQ5u2Ia8fn8vfg7/SOcsqEZsTb7PJzVLY+Q1OsotugoqJESFrk8PXS5u/O4+pTT3FUXWkvLi/V4+ihsbr8+vvr9PjAw+XG2eDA09r0sbyZmZlKSmRMVGE9NV9BSFUxNETk5PTO3uzK2evEzejM4OeljNS3ydGLccJ/YcB5WruJlqDyiprweoxteINganVbZHCcRVMoKCrx8/n98PLRzeu2teClktbNzc2Xf8u0w8r0usO2t7jkvqBwYZx1folncX1LO3rdS2Dq6uq8vuO+sOGxqd2x4duY3M3ausWtvsSF18KDbrfgqbWYp7FeP6OEj5hYPpV5hpBhWoToboHtZnrLSFxzOkXs7Pf84eTW2ODY09e6zdXb1s6vwMjdtb52Vb2ss7Vs0LKKebLkxa2kqqx7aKtHyZ1pWJZkWopROonndYfoWGzrVmzQWWtFPGr5llRSUlI/Pz88MjQ4KCouJSbX39/l2tvAwb6XyL2Sf7x+Ybv0pbHfl6ZbuJfihZbig5RnqpHss4mrlomIiIjNaXfTY3PHWGiDV2bxnWTSkGRiYmKmQ1NTQVBENkBUODwEKmHaAAAAOnRSTlMA7wscTEHV+/QT/tyvt5+JXjYE4cmWVij05W9nWoV8dkA6LxGlJerYxMGofEnhx8ChkXZrJOnf0JN2dWY7XQAACrdJREFUWMOdmGVgWlcUgEnSxaVpI+187dxdHo/DI+WRAcECgbAREgKBuGuTZsvqXTvptnbd1s7bbpW5u7u7u7vrj51773s8LMuW7weFW/hy7rn3XHmqydm1MD1V8275qumSkwaZ5Umt6fsCzJiushQAsssSGsszsTVz1vSMGVngFwH2iGuckQ0ekwdmTk9ZCGb7eTaA/JiE7gng9NtEmD2tMHOywGZUq40WyMyQmmYVAmg5LiROL0wMyMnVqdXqWjfkZTDjwQAujuNMWhFKpqOcDSaOUyPVZsjLIS37AjYhLlTCvP8sSi/IYW+KwaLnOANxGsxQgvncgxoRUautiY5a0ZQTahfIK2dfhRr8da2axumGQlWZbNRrtRhmJosgH4qmUu4lT8VMKgirKWGAvdJA5ChBqoQMaZIeNJXyYPAAlKar0gG8+HOjmuEHwNFihLSIE8qwMrPBAtlTKTPB2wswu2wX8HCESqY8rx4gKCkDWgIUzTsIwBwi4f47aeCvDJsB0kgqaTIZTdhthpcaRfwGWAJcwA37TKHE/taqK70eYArsuYRJr/QbCQBAjR/9zinWEJpCMr8NvW4XMxgkZS0nIUpR1pBEmKZSIlmYsmqiqLTXUYOdTCJ91wW9UpQ2LcXkl+aTG3aZsmZC0c7WGjmk+oLW1mYAaB2wEYlIQjR5o0kAKP+3Xs8ozQMIRMcEQ60O69En0bwee+oy2fychJfmNO3gmZMMetlBWYDU6yNcpFIts9naLvmI+RnJpUwnlxkImXumUhYBZtxuwKExKuPcZNVZobndqiNYHa0iK8lQSM9WJBt+sIlOgJLUpdgniwy18jgPoAmtA+u6/KSjtui6Ieo5byjISbigIJVyJgTUiWzWIbl9XDxBLWKLywAUplLOgBppTJRMfo4xojABf5JSm3o9KgY37TTOnLpqSZmry/VzyZhwWOIa6mGvlBsiADFGOILktObquVR4/fIb9v9mmDlJLeKg2LnY0nbQn6qvOOuRxd39Z597w5AxMVyROierymzA2Oo4BlvNScJuvEzDaGjx8Z03GGKVopRTNxSnVOZBU1QZYYs5xw1RoSzt5nn+BruiDElRTrZoloAd5zZHsVOlkbuiQRNHCzrPvkpx6tkrQHpKZQFgBitpturYPKo7S5PIYnSODiXOqsl2i0Lg2PpjbEIjAY1J9PBIgjMIs1Mri8CvjuMKTQraiHJU7vsF2+5fhOw8fr9J9ltbnPFGzONkYZ5jJCnctlKIcsAx81MVuSlOGR3rpBFCruS4bSOCsHrHhRO33TZx4cWrBWH/Y5KLnK4b0QJfoklNG1V2bl4kCON3jfG8z+cjnyc2CsKB85OKvIZUj3GyIM9YvuGiizYsv5wql60SVt816uvu6OjuQWV3Sz8/MSIclpDSDLJuRPfEoUThhiqJL0+nxvFlfHcDmigtGk2Hb+lGYf/9EoucRplyuB99oEqmourxsXFh41pfWxsKGR2ktnrGLhEOmJ9Q5DTA1HOyYeuDVW9t2vQzKive2C6sWtrf0OHjZdo0hIVrx4UjE4q8WlEu1CTy9PsnI+9vqqh4SBC2+Bo6eIUGzeUb3qxa3vPEoLB3fJE3KcqeJGXDeycTLt1U8bBwH9/Rxseg0VxUgWz1XSgcGKvMB7ui9GmS+J0YT1uw4A9hcGlPQz+v4NNcXkF4feHYSFyYpWBUlJ1tScp3aZALFvwlbOfbFvMx9EvKn1YM3yOcGHeH4BTl2d2Ki1Xm41KQC9YIE/0Nvlhlj9TxO6++5kXhsNjrJvQqynN4JcytxHn9u9SICMLa7hY+FhzLj39848HlWK6jq4X5scouRbmE70cRY8NFy7f+8J5svFRYxbf0xCmxR9cMn8HKdWNMMovToE9R3oTdkZ1f4ARnvWbKS3gyJW++/ZZOSblYc/2KqzUU/mJh96gx2wNaRXlVJ2a9TSodVP5NRoZymrCDx34/d8opp7wsOVtokEy5PaosT3P3gjl6CmwKL6FJYtIHq6rewhAlJUbZzd98CuF2qR5JkIlRpmdagpzFIhm9ASeA7Uo65RYubmlZ/iaWzAfM+OEmYZzv4W+hyuckZTTINv4SOZeFEMIdXi7yWtwqTR7oPYeX+AZnyHUPf4DChx+6Thgc80lRfvvsMp4//YVrv5eD7OBHhP2k5dcWwXOIrDyPHgxEEGXn6Q+gE63Xkdc/hadw+/mK5PK24RXDn7xz6qmnXruQjWX3E8L+7FqcZya7bT0r8ujaboOuUdn5dUWUX7DE+S0rPiUj3nn+i7+dSjidX0ykWORHSjPSTg4FYmyRM+cQL3Pr60z4wNNbhNVrl654lpf4lSqfxLR3aFo6V7FUzpqtxX6Sk2ed5DJ5r6L/itpRPspjt955562P4XFjpXDh8PCY3PydFCWy0HeXcADLJInOgAcx0DNjNYQ1Z9xYiW88S/hEzrW/JKweXsrLfERzyVOWjkhTqMCJ41GJpyawSan0WB7R2O2k6/bOeOHZ5KSxSNgYDZKOOHabMHqJtFzmZPmJJ8IFozt5F0TOEg0YpsFlv+mcmAhvqqOHjBFhRyefzH3CYO4+7ExQy5ReECWlwQmmXpKBaj2etA1DVy4599wlVw41cRJ3DAo71iYKxy4WBp8X0zJQua+TavDvKxUZdkM9nVEk0rAxwskozlVPxRvPH0cjBlNA7o0hWemxqKNOM1j6jJXoNLCCSnTieejiLTHC7YKw8jOigWI8EkSYklWkjMFkAbA4zZbeRCVD/+ogHmHumTh/2bLzJ+4ZFwTh/iYD+aKlFKdQk6yskbddfSXefqqD9R6AmurUShyk+1EaZU3jK45cdIbrM1W7Ais/rEitXJFdXecZw8RlUK74KdC/9OrbIyMjKxctWtPYeKa1uXW9ujISyFKVOllHMcqAvEcawWQIRyJ1RruiTI0lwCGbiREArGE75wJVAZ05dg4xRffIPnAGmwzVGP8USo/IIZGVa+5ubXdYdXg9FLNUJSY1rR0kpOyRxq6uCAqnVJrNHGFb42s6wjockBJVni2qDILZz9XZw7XVBgPxTa7U671BW8hkcpnJI6qugdy77yVOjFJvKVKl0cjC0v0yBo+7pkYrii6CyVVjpjidbrfHAjFgz9c3Q7N155qd1mZHMADlqqwutlTQ6vWboGCP0vws8FgsMDkWC2pLSov23HXmvhDk1rW363Rvn+kAaM61FJJjZT1WiXzX08OueOCy1Gtl6hEn7DZvXraHvNVGcaflsI3QE/TrEDKJ8JHFbGydC81gcentvXpZWQyiKyBqFczkYVCaW6sgBlwuzx7sQJ5nca3T6e49U0chK9ERYLW2y/2xACrzzfIY6P1JyhC2chRXWjpbHPPBXb/+lcYz70bjnFnYcghGOxfA6nCcUNDe3tp6SE5WSBnZJKVNuehDmfwgFZPf2ti4Zue9c06igc/RHXVUayv+gWNnzdU52g8tA/9USoa7ULk7FM84vBE5mn08dBfVPg6Hbs6hKtW8udY56Rl5Tu9/UdZnYavC7kwZ5Yg5+cfSvBwyE+PO9AQG+jjvgCO3L0nZN2DN7eJsA+vM2fFPH+Yf13i4fMKiqvT459aOdt2Ao7lZpxuoQZxU6SFvn7Hq2sGxXudonVuu+h/MmosrgM6B2dDpgECVQMAmq4O+WCd9vPoPhumB3HmlMigAAAAASUVORK5CYII=)}.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-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade{background:#704cbc}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade:hover{background:#509fe2}.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:Roboto;src:url(../fonts/Roboto-Regular.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Roboto;src:url(../fonts/Roboto-Bold.woff2) format("woff2");font-weight:700;font-style:normal}@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"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-download:before{content:"\0046"}@media (max-width:782px){.monsterinsights-notices-area{margin-right:10px;margin-left:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-right:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-right-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-right-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-right-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-right-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-right-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-left:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:left}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-left:-20px;margin-right:auto}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-right:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-right:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-right:0;color:#fff}.monsterinsights-notice .monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights-notice .monsterinsights-button-error{background-color:#e64949!important;border:0!important;font-size:13px;padding:8px 20px!important}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-icon{margin-left:15px;margin-top:4px}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-icon svg{width:36px;height:32px}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner{background-color:#ffebeb!important}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner h2{font-size:14px;color:#e64949;margin:0;padding:0}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner .monsterinsights-notice-content{color:#e64949}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner a.monsterinsights-button-error{margin-top:17px}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:42px;left:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-right:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-right-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-right-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-right-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;right:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;left:auto;bottom:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;left:auto;bottom:auto;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;left:auto;bottom:auto;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;left:0;bottom:auto;right:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;left:auto;bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.monsterinsights_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;right:-.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:0 4em 4em 0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;right:.9375em;-webkit-transform-origin:100% 2em;-ms-transform-origin:100% 2em;transform-origin:100% 2em;border-radius:4em 0 0 4em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.monsterinsights_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;left:0;bottom:0;right:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;right:0;top:0}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.monsterinsights_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-right:5px;border-radius:50%;border:3px solid #999;border-left-color:rgba(0,0,0,0);-webkit-box-shadow:-1px 1px 1px #fff;box-shadow:-1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_page .swal2-popup .swal2-close{position:absolute;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:100% 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;right:-2.0635em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:0 7.5em 7.5em 0}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;right:1.875em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:100% 3.75em;-ms-transform-origin:100% 3.75em;transform-origin:100% 3.75em;border-radius:7.5em 0 0 7.5em}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;right:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;right:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:1}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;right:.875em;width:1.5625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;left:.5em;width:2.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{left:auto;right:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@media print{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-notifications-display{background:#fff;border-right:3px solid #509fe2;padding:20px;border-radius:0 3px 3px 0;margin-bottom:50px;position:relative}.monsterinsights-settings-content .monsterinsights-notifications-display{margin-top:20px;margin-bottom:20px}.monsterinsights-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.monsterinsights-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.monsterinsights-notifications-display .monsterinsights-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator{padding-top:10px}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator a{position:relative}.monsterinsights-notifications-display .monsterinsights-notification-inner{margin-right:25px}.monsterinsights-notifications-display .monsterinsights-button{margin-left:15px}.monsterinsights-notifications-display .monsterinsights-notification-navigation{position:absolute;left:0;top:100%}.monsterinsights-notifications-display .monsterinsights-notification-navigation button{background:#fff;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notification-navigation button:focus,.monsterinsights-notifications-display .monsterinsights-notification-navigation button:hover{color:#509fe2}.monsterinsights-notifications-display .monsterinsights-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);font-size:10px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous{margin-left:2px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous .monstericon-arrow{-webkit-transform:rotate(-270deg);-ms-transform:rotate(-270deg);transform:rotate(-270deg)}.monsterinsights-notifications-display .monsterinsights-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;left:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;right:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.monsterinsights-report .monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;right:20px}.monsterinsights-admin-page.monsterinsights-path-about-us .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-addons .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-import-export .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-url-builder .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-notificationsv3-container{margin-left:0}.monsterinsights-admin-page .monsterinsights-notificationsv3-container{display:inline-block;margin-left:20px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number{position:absolute;top:-11px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-greater-than-10{left:-13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-less-than-10{left:-10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:absolute;top:21px;left:15px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:-2px;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-notificationsv3-inbox-number{cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{width:440px;position:fixed;top:32px;left:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px);transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar.monsterinsights-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title svg{margin-left:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions{width:50%;text-align:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:hover{color:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:focus{outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close{margin-right:12px;vertical-align:bottom}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:active svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:focus svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;left:inherit;min-width:24px;height:24px;line-height:24px;margin-left:8px;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-dismissed-number{margin-left:8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{margin-bottom:46px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{width:54px;float:right;text-align:center;padding-top:24px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{float:none;margin:0 auto}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{float:right;width:354px;padding-top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{width:260px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{width:65%}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-left:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:hover{background:#d3d7de}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:hover{color:#a9b1c3}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 0;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;right:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;right:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-right:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip[x-placement^=left]{padding-left:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 0;border-top-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:left}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{right:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{left:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-left:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px;white-space:pre}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0;background:rgba(0,0,0,0)}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}.monsterinsights-upload-media-wrapper .monsterinsights-dark{display:block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media-label{margin-bottom:0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;right:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media{color:#fff;text-decoration:underline;margin-right:auto;cursor:pointer;padding:0 0 10px 10px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media:hover{text-decoration:none}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media:hover .monsterinsights-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media img{max-width:100%;display:inline-block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-input{width:73%;margin-left:2%;float:right;position:relative}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button{width:25%;float:right;font-size:15px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:active,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:focus,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:hover{outline:none}.monsterinsights-email-summaries-settings a{color:#509fe2!important}.monsterinsights-email-summaries-settings a:focus,.monsterinsights-email-summaries-settings a:hover{color:#393f4c!important}.monsterinsights-email-summaries-settings .monsterinsights-dark{display:block}.monsterinsights-email-summaries-settings .inline-field .monsterinsights-button:first-child{margin-right:0}.monsterinsights-email-summaries-settings .monsterinsights-settings-input-repeater{margin-bottom:18px}.monsterinsights-email-summaries-settings .monsterinsights-button.monsterinsights-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.monsterinsights-accordion .monsterinsights-accordion{padding:0;border:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.monsterinsights-accordion .monsterinsights-accordion div:last-child .monsterinsights-accordion-item-details{border-radius:5px}.monsterinsights-accordion .monsterinsights-accordion dd{margin-right:0;margin-bottom:0}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{cursor:pointer;outline:none}.monsterinsights-accordion .monsterinsights-accordion-item-details-inner,.monsterinsights-accordion .monsterinsights-accordion-item-trigger{padding:0 20px 30px}.monsterinsights-accordion .monsterinsights-accordion-item.is-active .monsterinsights-accordion-item-title{border-bottom:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-left:1.25rem}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text .title{padding-right:15px}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{width:100%;text-align:right;background-color:rgba(0,0,0,0);border:none}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon{display:block;position:absolute;top:0;left:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-left:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(-45deg);-ms-transform:translateY(-2px) rotate(-45deg);transform:translateY(-2px) rotate(-45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(-225deg);-ms-transform:translateY(2px) rotate(-225deg);transform:translateY(2px) rotate(-225deg)}.monsterinsights-accordion .monsterinsights-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.monsterinsights-accordion .monsterinsights-accordion-item-details p,.monsterinsights-accordion .monsterinsights-accordion-item-details ul{font-size:1.2em;line-height:1.8}.monsterinsights-accordion .monsterinsights-accordion-item-enter-active,.monsterinsights-accordion .monsterinsights-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-enter,.monsterinsights-accordion .monsterinsights-accordion-item-leave-to{height:0!important}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-right:0}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff;min-height:85px}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:right;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{right:20px;left:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-left:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:100% 50%;padding-right:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{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-gray{background:#8ea4b4;border-color:#738ea1;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:hover{background-color:#596771;border-color:#738ea1}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray.monsterinsights-button-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-small{font-size:13px;line-height:20px;padding:5px 10px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-right:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.wp-admin .monsterinsights-swal{margin-right:160px}.auto-fold .wp-admin .monsterinsights-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .wp-admin .monsterinsights-swal{margin-right:160px}.folded .wp-admin .monsterinsights-swal{margin-right:36px}}.monsterinsights-modal{position:fixed;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}.monsterinsights-float-right{float:left}.monsterinsights-loading-spinner-inline{text-align:center;margin:25px}.monsterinsights-loading-spinner-inline .monsterinsights-loading-spinner-inline-loader-holder{display:inline-block}.monsterinsights-semrush-cta{background:#fff;border-right:3px solid #338eef;padding:20px 26px;border-radius:0 3px 3px 0;position:relative}.monsterinsights-semrush-cta br{display:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-close{position:absolute;top:12px;left:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.monsterinsights-semrush-cta .monsterinsights-button{background:#338eef;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.monsterinsights-semrush-cta .monsterinsights-button:active,.monsterinsights-semrush-cta .monsterinsights-button:focus,.monsterinsights-semrush-cta .monsterinsights-button:hover{background:#3088e6;outline:none}.monsterinsights-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}
1
+ strong[data-v-1c1718a8]{display:block}[data-v-8d2cb686]{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-3253c54f]{display:block}.monsterinsights-reset-default[data-v-3253c54f]{margin-right:5px}.monsterinsights-dark[data-v-3b6b71fa]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#338eef;color:#fff;font-size:16px;line-height:140%;padding:16px 58px 16px 32px;text-align:right;position:relative;margin:-20px -10px 20px}.monsterinsights-admin-page .monsterinsights-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;right:32px;top: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:16px;position:absolute;left:15px;top:calc(50% - 5px);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}.monsterinsights-container[data-v-18fdf54c]: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.monsterinsights-quick-links-open,.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(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAABQCAMAAAC9OtKiAAAC91BMVEUAAABvS7ttSbluSrpvS7tuSrpvS7tvS7tvSrtsSLdsTLFvS7tuSrluSrpvS7tvS7ttSblvS7tpRrRvS7tvS7tvS7tvS7tvS7tgP6lhP6pvS7tvS7s0OkZvS7tvS7tvS7s5P0xnRbJsSLc2PElvS7s5P0w5P0w5P0w6P05vS7tvS7thP6lfPqc5P0wvMUFgPqg5P0xfPqcrMDk5P0xfPqcrMDlXRolqR7U5P0xfPqeUeM+ljdTT6O////9vS7t9XcI5P0xfPqfqTmQjIyOSdc1/X8OiitOkjNQyMjKYftCGZ8d4VcDsYndxTbxkQqyLbcmagdFmRLChh9N2U7+DZMZ6WMFzUL1yTr2fhdKQc80ewYX/iTrY6/GXe9CPcsx7W8H9/v6BYcUrMDqNb8uIasmdhNGcgtGVec9uSrrv9/lsSbb4/P1pRrTz+fvQ5u2Ia8fn8vfg7/SOcsqEZsTb7PJzVLY+Q1OsotugoqJESFrk8PXS5u/O4+pTT3FUXWkvLi/V4+ihsbr8+vvr9PjAw+XG2eDA09r0sbyZmZlKSmRMVGE9NV9BSFUxNETk5PTO3uzK2evEzejM4OeljNS3ydGLccJ/YcB5WruJlqDyiprweoxteINganVbZHCcRVMoKCrx8/n98PLRzeu2teClktbNzc2Xf8u0w8r0usO2t7jkvqBwYZx1folncX1LO3rdS2Dq6uq8vuO+sOGxqd2x4duY3M3ausWtvsSF18KDbrfgqbWYp7FeP6OEj5hYPpV5hpBhWoToboHtZnrLSFxzOkXs7Pf84eTW2ODY09e6zdXb1s6vwMjdtb52Vb2ss7Vs0LKKebLkxa2kqqx7aKtHyZ1pWJZkWopROonndYfoWGzrVmzQWWtFPGr5llRSUlI/Pz88MjQ4KCouJSbX39/l2tvAwb6XyL2Sf7x+Ybv0pbHfl6ZbuJfihZbig5RnqpHss4mrlomIiIjNaXfTY3PHWGiDV2bxnWTSkGRiYmKmQ1NTQVBENkBUODwEKmHaAAAAOnRSTlMA7wscTEHV+/QT/tyvt5+JXjYE4cmWVij05W9nWoV8dkA6LxGlJerYxMGofEnhx8ChkXZrJOnf0JN2dWY7XQAACrdJREFUWMOdmGVgWlcUgEnSxaVpI+187dxdHo/DI+WRAcECgbAREgKBuGuTZsvqXTvptnbd1s7bbpW5u7u7u7vrj51773s8LMuW7weFW/hy7rn3XHmqydm1MD1V8275qumSkwaZ5Umt6fsCzJiushQAsssSGsszsTVz1vSMGVngFwH2iGuckQ0ekwdmTk9ZCGb7eTaA/JiE7gng9NtEmD2tMHOywGZUq40WyMyQmmYVAmg5LiROL0wMyMnVqdXqWjfkZTDjwQAujuNMWhFKpqOcDSaOUyPVZsjLIS37AjYhLlTCvP8sSi/IYW+KwaLnOANxGsxQgvncgxoRUautiY5a0ZQTahfIK2dfhRr8da2axumGQlWZbNRrtRhmJosgH4qmUu4lT8VMKgirKWGAvdJA5ChBqoQMaZIeNJXyYPAAlKar0gG8+HOjmuEHwNFihLSIE8qwMrPBAtlTKTPB2wswu2wX8HCESqY8rx4gKCkDWgIUzTsIwBwi4f47aeCvDJsB0kgqaTIZTdhthpcaRfwGWAJcwA37TKHE/taqK70eYArsuYRJr/QbCQBAjR/9zinWEJpCMr8NvW4XMxgkZS0nIUpR1pBEmKZSIlmYsmqiqLTXUYOdTCJ91wW9UpQ2LcXkl+aTG3aZsmZC0c7WGjmk+oLW1mYAaB2wEYlIQjR5o0kAKP+3Xs8ozQMIRMcEQ60O69En0bwee+oy2fychJfmNO3gmZMMetlBWYDU6yNcpFIts9naLvmI+RnJpUwnlxkImXumUhYBZtxuwKExKuPcZNVZobndqiNYHa0iK8lQSM9WJBt+sIlOgJLUpdgniwy18jgPoAmtA+u6/KSjtui6Ieo5byjISbigIJVyJgTUiWzWIbl9XDxBLWKLywAUplLOgBppTJRMfo4xojABf5JSm3o9KgY37TTOnLpqSZmry/VzyZhwWOIa6mGvlBsiADFGOILktObquVR4/fIb9v9mmDlJLeKg2LnY0nbQn6qvOOuRxd39Z597w5AxMVyROierymzA2Oo4BlvNScJuvEzDaGjx8Z03GGKVopRTNxSnVOZBU1QZYYs5xw1RoSzt5nn+BruiDElRTrZoloAd5zZHsVOlkbuiQRNHCzrPvkpx6tkrQHpKZQFgBitpturYPKo7S5PIYnSODiXOqsl2i0Lg2PpjbEIjAY1J9PBIgjMIs1Mri8CvjuMKTQraiHJU7vsF2+5fhOw8fr9J9ltbnPFGzONkYZ5jJCnctlKIcsAx81MVuSlOGR3rpBFCruS4bSOCsHrHhRO33TZx4cWrBWH/Y5KLnK4b0QJfoklNG1V2bl4kCON3jfG8z+cjnyc2CsKB85OKvIZUj3GyIM9YvuGiizYsv5wql60SVt816uvu6OjuQWV3Sz8/MSIclpDSDLJuRPfEoUThhiqJL0+nxvFlfHcDmigtGk2Hb+lGYf/9EoucRplyuB99oEqmourxsXFh41pfWxsKGR2ktnrGLhEOmJ9Q5DTA1HOyYeuDVW9t2vQzKive2C6sWtrf0OHjZdo0hIVrx4UjE4q8WlEu1CTy9PsnI+9vqqh4SBC2+Bo6eIUGzeUb3qxa3vPEoLB3fJE3KcqeJGXDeycTLt1U8bBwH9/Rxseg0VxUgWz1XSgcGKvMB7ui9GmS+J0YT1uw4A9hcGlPQz+v4NNcXkF4feHYSFyYpWBUlJ1tScp3aZALFvwlbOfbFvMx9EvKn1YM3yOcGHeH4BTl2d2Ki1Xm41KQC9YIE/0Nvlhlj9TxO6++5kXhsNjrJvQqynN4JcytxHn9u9SICMLa7hY+FhzLj39848HlWK6jq4X5scouRbmE70cRY8NFy7f+8J5svFRYxbf0xCmxR9cMn8HKdWNMMovToE9R3oTdkZ1f4ARnvWbKS3gyJW++/ZZOSblYc/2KqzUU/mJh96gx2wNaRXlVJ2a9TSodVP5NRoZymrCDx34/d8opp7wsOVtokEy5PaosT3P3gjl6CmwKL6FJYtIHq6rewhAlJUbZzd98CuF2qR5JkIlRpmdagpzFIhm9ASeA7Uo65RYubmlZ/iaWzAfM+OEmYZzv4W+hyuckZTTINv4SOZeFEMIdXi7yWtwqTR7oPYeX+AZnyHUPf4DChx+6Thgc80lRfvvsMp4//YVrv5eD7OBHhP2k5dcWwXOIrDyPHgxEEGXn6Q+gE63Xkdc/hadw+/mK5PK24RXDn7xz6qmnXruQjWX3E8L+7FqcZya7bT0r8ujaboOuUdn5dUWUX7DE+S0rPiUj3nn+i7+dSjidX0ykWORHSjPSTg4FYmyRM+cQL3Pr60z4wNNbhNVrl654lpf4lSqfxLR3aFo6V7FUzpqtxX6Sk2ed5DJ5r6L/itpRPspjt955562P4XFjpXDh8PCY3PydFCWy0HeXcADLJInOgAcx0DNjNYQ1Z9xYiW88S/hEzrW/JKweXsrLfERzyVOWjkhTqMCJ41GJpyawSan0WB7R2O2k6/bOeOHZ5KSxSNgYDZKOOHabMHqJtFzmZPmJJ8IFozt5F0TOEg0YpsFlv+mcmAhvqqOHjBFhRyefzH3CYO4+7ExQy5ReECWlwQmmXpKBaj2etA1DVy4599wlVw41cRJ3DAo71iYKxy4WBp8X0zJQua+TavDvKxUZdkM9nVEk0rAxwskozlVPxRvPH0cjBlNA7o0hWemxqKNOM1j6jJXoNLCCSnTieejiLTHC7YKw8jOigWI8EkSYklWkjMFkAbA4zZbeRCVD/+ogHmHumTh/2bLzJ+4ZFwTh/iYD+aKlFKdQk6yskbddfSXefqqD9R6AmurUShyk+1EaZU3jK45cdIbrM1W7Ais/rEitXJFdXecZw8RlUK74KdC/9OrbIyMjKxctWtPYeKa1uXW9ujISyFKVOllHMcqAvEcawWQIRyJ1RruiTI0lwCGbiREArGE75wJVAZ05dg4xRffIPnAGmwzVGP8USo/IIZGVa+5ubXdYdXg9FLNUJSY1rR0kpOyRxq6uCAqnVJrNHGFb42s6wjockBJVni2qDILZz9XZw7XVBgPxTa7U671BW8hkcpnJI6qugdy77yVOjFJvKVKl0cjC0v0yBo+7pkYrii6CyVVjpjidbrfHAjFgz9c3Q7N155qd1mZHMADlqqwutlTQ6vWboGCP0vws8FgsMDkWC2pLSov23HXmvhDk1rW363Rvn+kAaM61FJJjZT1WiXzX08OueOCy1Gtl6hEn7DZvXraHvNVGcaflsI3QE/TrEDKJ8JHFbGydC81gcentvXpZWQyiKyBqFczkYVCaW6sgBlwuzx7sQJ5nca3T6e49U0chK9ERYLW2y/2xACrzzfIY6P1JyhC2chRXWjpbHPPBXb/+lcYz70bjnFnYcghGOxfA6nCcUNDe3tp6SE5WSBnZJKVNuehDmfwgFZPf2ti4Zue9c06igc/RHXVUayv+gWNnzdU52g8tA/9USoa7ULk7FM84vBE5mn08dBfVPg6Hbs6hKtW8udY56Rl5Tu9/UdZnYavC7kwZ5Yg5+cfSvBwyE+PO9AQG+jjvgCO3L0nZN2DN7eJsA+vM2fFPH+Yf13i4fMKiqvT459aOdt2Ao7lZpxuoQZxU6SFvn7Hq2sGxXudonVuu+h/MmosrgM6B2dDpgECVQMAmq4O+WCd9vPoPhumB3HmlMigAAAAASUVORK5CYII=)}.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-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade{background:#704cbc}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-quick-links-item-upgrade:hover{background:#509fe2}.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:Roboto;src:url(../fonts/Roboto-Regular.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Roboto;src:url(../fonts/Roboto-Bold.woff2) format("woff2");font-weight:700;font-style:normal}@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"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-download:before{content:"\0046"}@media (max-width:782px){.monsterinsights-notices-area{margin-right:10px;margin-left:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-right:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-right-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-right-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-right-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-right-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-right-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-left:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:left}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-left:-20px;margin-right:auto}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-right:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-right:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-right:0;color:#fff}.monsterinsights-notice .monsterinsights-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights-notice .monsterinsights-button-error{background-color:#e64949!important;border:0!important;font-size:13px;padding:8px 20px!important}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-icon{margin-left:15px;margin-top:4px}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-icon svg{width:36px;height:32px}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner{background-color:#ffebeb!important}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner h2{font-size:14px;color:#e64949;margin:0;padding:0}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner .monsterinsights-notice-content{color:#e64949}.monsterinsights-notice.monsterinsights-license_expired .monsterinsights-notice-inner a.monsterinsights-button-error{margin-top:17px}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:42px;left:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-right:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-right-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-right-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-right-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;right:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;left:auto;bottom:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;left:auto;bottom:auto;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;left:auto;bottom:auto;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;left:0;bottom:auto;right:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;left:auto;bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.monsterinsights_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;right:-.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:0 4em 4em 0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;right:.9375em;-webkit-transform-origin:100% 2em;-ms-transform-origin:100% 2em;transform-origin:100% 2em;border-radius:4em 0 0 4em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.monsterinsights_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.monsterinsights_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;left:0;bottom:0;right:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.monsterinsights_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.monsterinsights_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;right:0;top:0}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.monsterinsights_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-right:5px;border-radius:50%;border:3px solid #999;border-left-color:rgba(0,0,0,0);-webkit-box-shadow:-1px 1px 1px #fff;box-shadow:-1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_page .swal2-popup .swal2-close{position:absolute;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:100% 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.monsterinsights_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;right:-2.0635em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:0 7.5em 7.5em 0}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;right:1.875em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:100% 3.75em;-ms-transform-origin:100% 3.75em;transform-origin:100% 3.75em;border-radius:7.5em 0 0 7.5em}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;right:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;right:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:1}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;right:.875em;width:1.5625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;left:.5em;width:2.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{left:auto;right:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@media print{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-notifications-display{background:#fff;border-right:3px solid #509fe2;padding:20px;border-radius:0 3px 3px 0;margin-bottom:50px;position:relative}.monsterinsights-settings-content .monsterinsights-notifications-display{margin-top:20px;margin-bottom:20px}.monsterinsights-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.monsterinsights-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.monsterinsights-notifications-display .monsterinsights-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator{padding-top:10px}.monsterinsights-notifications-display .monsterinsights-notification .monsterinsights-notifications-indicator a{position:relative}.monsterinsights-notifications-display .monsterinsights-notification-inner{margin-right:25px}.monsterinsights-notifications-display .monsterinsights-button{margin-left:15px}.monsterinsights-notifications-display .monsterinsights-notification-navigation{position:absolute;left:0;top:100%}.monsterinsights-notifications-display .monsterinsights-notification-navigation button{background:#fff;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notification-navigation button:focus,.monsterinsights-notifications-display .monsterinsights-notification-navigation button:hover{color:#509fe2}.monsterinsights-notifications-display .monsterinsights-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);font-size:10px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous{margin-left:2px}.monsterinsights-notifications-display .monsterinsights-notification-navigation button.monsterinsights-notification-previous .monstericon-arrow{-webkit-transform:rotate(-270deg);-ms-transform:rotate(-270deg);transform:rotate(-270deg)}.monsterinsights-notifications-display .monsterinsights-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;left:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;right:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.monsterinsights-report .monsterinsights-notifications-display .monsterinsights-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;right:20px}.monsterinsights-admin-page.monsterinsights-path-about-us .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-addons .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-import-export .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-path-tools-url-builder .monsterinsights-notificationsv3-container,.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-notificationsv3-container{margin-left:0}.monsterinsights-admin-page .monsterinsights-notificationsv3-container{display:inline-block;margin-left:20px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number{position:absolute;top:-11px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-greater-than-10{left:-13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-number.number-less-than-10{left:-10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button{position:absolute;top:21px;left:15px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:-2px;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-inbox-button .monsterinsights-notificationsv3-inbox-number{cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{width:440px;position:fixed;top:32px;left:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px);transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar.monsterinsights-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title svg{margin-left:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions{width:50%;text-align:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button{display:inline-block}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:hover{color:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-button:focus{outline:none}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close{margin-right:12px;vertical-align:bottom}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:active svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:focus svg path,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-top .monsterinsights-notificationsv3-sidebar-header-top-actions .monsterinsights-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count{width:50%}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;left:inherit;min-width:24px;height:24px;line-height:24px;margin-left:8px;padding:0 8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count .monsterinsights-notificationsv3-dismissed-number{margin-left:8px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-header-bottom .monsterinsights-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications{margin-bottom:46px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{width:54px;float:right;text-align:center;padding-top:24px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-icon{float:none;margin:0 auto}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{float:right;width:354px;padding-top:20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details{width:260px}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title h5{width:65%}}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:left}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-left:10px}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions .monsterinsights-button:hover{background:#d3d7de}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:active,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:focus,.monsterinsights-admin-page .monsterinsights-notificationsv3-container .monsterinsights-notificationsv3-sidebar .monsterinsights-notificationsv3-sidebar-notifications .monsterinsights-notificationsv3-single-notification .monsterinsights-notificationsv3-notification-details .monsterinsights-notificationsv3-notification-actions span:hover{color:#a9b1c3}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 0;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;right:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;right:calc(50% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-right:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip[x-placement^=left]{padding-left:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 0;border-top-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:left}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{right:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{left:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-left:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px;white-space:pre}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0;background:rgba(0,0,0,0)}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}.monsterinsights-upload-media-wrapper .monsterinsights-dark{display:block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media-label{margin-bottom:0}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;right:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media{color:#fff;text-decoration:underline;margin-right:auto;cursor:pointer;padding:0 0 10px 10px}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media .monsterinsights-uploaded-media-overlay .monsterinsights-remove-uploaded-media:hover{text-decoration:none}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media:hover .monsterinsights-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-upload-media-wrapper .monsterinsights-uploaded-media img{max-width:100%;display:inline-block}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-input{width:73%;margin-left:2%;float:right;position:relative}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button{width:25%;float:right;font-size:15px}.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:active,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:focus,.monsterinsights-upload-media-wrapper .monsterinsights-upload-media .monsterinsights-upload-media-button:hover{outline:none}.monsterinsights-email-summaries-settings a{color:#509fe2!important}.monsterinsights-email-summaries-settings a:focus,.monsterinsights-email-summaries-settings a:hover{color:#393f4c!important}.monsterinsights-email-summaries-settings .monsterinsights-dark{display:block}.monsterinsights-email-summaries-settings .inline-field .monsterinsights-button:first-child{margin-right:0}.monsterinsights-email-summaries-settings .monsterinsights-settings-input-repeater{margin-bottom:18px}.monsterinsights-email-summaries-settings .monsterinsights-button.monsterinsights-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.monsterinsights-accordion .monsterinsights-accordion{padding:0;border:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.monsterinsights-accordion .monsterinsights-accordion div:last-child .monsterinsights-accordion-item-details{border-radius:5px}.monsterinsights-accordion .monsterinsights-accordion dd{margin-right:0;margin-bottom:0}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{cursor:pointer;outline:none}.monsterinsights-accordion .monsterinsights-accordion-item-details-inner,.monsterinsights-accordion .monsterinsights-accordion-item-trigger{padding:0 20px 30px}.monsterinsights-accordion .monsterinsights-accordion-item.is-active .monsterinsights-accordion-item-title{border-bottom:1px solid #e0e0e0}.monsterinsights-accordion .monsterinsights-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-left:1.25rem}.monsterinsights-accordion .monsterinsights-accordion-item-title h4.monsterinsights-accordion-item-title-text .title{padding-right:15px}.monsterinsights-accordion .monsterinsights-accordion-item-trigger{width:100%;text-align:right;background-color:rgba(0,0,0,0);border:none}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon{display:block;position:absolute;top:0;left:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-left:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(-45deg);-ms-transform:translateY(-2px) rotate(-45deg);transform:translateY(-2px) rotate(-45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(-225deg);-ms-transform:translateY(2px) rotate(-225deg);transform:translateY(2px) rotate(-225deg)}.monsterinsights-accordion .monsterinsights-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.monsterinsights-accordion .monsterinsights-accordion-item-details p,.monsterinsights-accordion .monsterinsights-accordion-item-details ul{font-size:1.2em;line-height:1.8}.monsterinsights-accordion .monsterinsights-accordion-item-enter-active,.monsterinsights-accordion .monsterinsights-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.monsterinsights-accordion .monsterinsights-accordion-item-enter,.monsterinsights-accordion .monsterinsights-accordion-item-leave-to{height:0!important}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-right:0}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff;min-height:85px}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:right;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{right:20px;left:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-left:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:100% 50%;padding-right:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{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-gray{background:#8ea4b4;border-color:#738ea1;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray:hover{background-color:#596771;border-color:#738ea1}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-gray.monsterinsights-button-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-small{font-size:13px;line-height:20px;padding:5px 10px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-right:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.wp-admin .monsterinsights-swal{margin-right:160px}.auto-fold .wp-admin .monsterinsights-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .wp-admin .monsterinsights-swal{margin-right:160px}.folded .wp-admin .monsterinsights-swal{margin-right:36px}}.monsterinsights-modal{position:fixed;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}.monsterinsights-float-right{float:left}.monsterinsights-loading-spinner-inline{text-align:center;margin:25px}.monsterinsights-loading-spinner-inline .monsterinsights-loading-spinner-inline-loader-holder{display:inline-block}.monsterinsights-semrush-cta{background:#fff;border-right:3px solid #338eef;padding:20px 26px;border-radius:0 3px 3px 0;position:relative}.monsterinsights-semrush-cta br{display:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-close{position:absolute;top:12px;left:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.monsterinsights-semrush-cta .monsterinsights-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.monsterinsights-semrush-cta .monsterinsights-button{background:#338eef;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.monsterinsights-semrush-cta .monsterinsights-button:active,.monsterinsights-semrush-cta .monsterinsights-button:focus,.monsterinsights-semrush-cta .monsterinsights-button:hover{background:#3088e6;outline:none}.monsterinsights-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}
lite/assets/vue/css/reports.css CHANGED
@@ -1,3 +1,5 @@
 
 
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-report-site-speed .monsterinsights-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.monsterinsights-report-site-speed .monsterinsights-report-top h2.monsterinsights-report-top-title{margin-top:10px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report{margin-right:16px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit{background-color:#3990ec;height:39px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit:hover{background-color:rgba(57,144,236,.8)}.monsterinsights-report-site-speed .monsterinsights-choose-device-button{margin-left:15px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-site-speed-container{max-width:1010px}.monsterinsights-report-site-speed .monsterinsights-site-speed-device,.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:338px;margin-right:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon{margin-bottom:40px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon .desktop{width:80px}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(-55deg);-ms-transform:scaleX(-1) rotate(-55deg);transform:scaleX(-1) rotate(-55deg);overflow:visible}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__container{display:inline-block;position:relative}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:662px}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex{text-align:center}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex.monsterinsights-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat p{color:#828282}.monsterinsights-report-site-speed .monsterinsights-how-to-improve h2.title{font-size:22px;color:#393f4c}div.monsterinsights-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-left:10px;padding-right:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-report-top{margin-bottom:25px}}.monsterinsights_page.monsterinsights-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-details,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-pdf-score{display:block!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-title,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border:none!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-trigger-icon,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-notificationsv3-container,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-progress-circle{display:none}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page{width:1120px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button:first-child{border-right:0}@media (max-width:782px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:1px solid #d6e2ed}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart{width:50%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart:first-child{margin:0 25px 0 0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box{margin-left:20px;margin-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box:first-child{margin-left:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex.monsterinsights-interests-scroll-report .monsterinsights-table-box{width:100%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart:first-child{margin:0 25px 0 0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top{margin-top:14px}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top{margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin:0 0 25px}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-bottom:0}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button{background-color:#eceff5;color:#444;border-color:#d6e2ed}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:hover{background-color:#fff}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button[disabled=disabled]{cursor:not-allowed}body.monsterinsights-reporting-page .monsterinsights-report-realtime .monsterinsights-export-pdf-report{margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:right}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-left:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{background:#8ea4b4;border-radius:3px;color:#fff;border:solid #708c9f;border-width:1px 1px 2px;position:relative;text-align:left;font-size:14px;font-weight:400;line-height:1.1;padding:10px 20px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:hover{background:#3a93dd;cursor:pointer}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{max-width:100%;width:100%;padding:12px 20px 8px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:top;display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:after{width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;right:20px}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #d6e2ed;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0;top:100%}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown.monsterinsights-p-0{padding:0;max-width:auto;border:0}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button{display:block;width:100%;margin-bottom:5px;text-align:left;background-color:#fff;color:#444;border:none}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button.monsterinsights-interval-active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:hover{background-color:#eceff4;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button i{margin-right:10px}body.monsterinsights-reporting-page .monsterinsights-datepicker,body.monsterinsights-reporting-page .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{max-width:100%;width:100%}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#509fe2;border-color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#eceff4;padding:14px 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-left:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:100%;font-weight:700;text-align:left;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-right:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-right:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-left:1px solid #d6e2ed;padding:17px 20px 15px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;right:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-left:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-right:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:left}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:right}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px;margin-top:15px}.monsterinsights-reports-infobox-compare{clear:right;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-right:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-right:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-right:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-right:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;left:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:right}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;right:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-left:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-left:0;margin-top:0}.monsterinsights-table-box h3{margin-left:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute;top:20px;right:20px}@media (max-width:991px){.monsterinsights-table-box{margin-left:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px 0 -10px -8px}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}.monsterinsights-table-box-pagination{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-right:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-right:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:left;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-left:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-right:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-left:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-right:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;right:20px;top:20px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-top{pointer-events:none;-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-blur .upsell-blur{background:#fff;width:100%;min-height:100vh}.monsterinsights-blur .upsell-blur img{max-width:100%}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.monsterinsights-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content__features{margin-bottom:46px;-webkit-box-flex:1;-ms-flex:1;flex:1}.monsterinsights-upsell-content__img{width:278px;background-position:100% 100%;background-repeat:no-repeat;background-size:contain}.monsterinsights-upsell-content__img.upsell-publisher{background-image:url(../img/bg-publisher@2x.png)}.monsterinsights-upsell-content__img.upsell-queries{background-image:url(../img/bg-queries@2x.png)}.monsterinsights-upsell-content__img.upsell-forms{background-image:url(../img/bg-forms@2x.png)}.monsterinsights-upsell-content__img.upsell-realtime{background-image:url(../img/bg-realtime@2x.png)}.monsterinsights-upsell-content__img.upsell-ecommerce{background-image:url(../img/bg-ecommerce@2x.png)}.monsterinsights-upsell-content__img.upsell-dimensions{background-image:url(../img/bg-dimensions@2x.png);background-position:50%}.monsterinsights-upsell-content__img.upsell-sitespeed{background-image:url(../img/bg-sitespeed@2x.png)}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:26px 40px;display:-webkit-box;display:-ms-flexbox;display:flex;gap:16px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:left;color:#23262e;font-size:20px;line-height:100%;margin:0}.monsterinsights-upsell-overlay h4{font-size:16px;line-height:140%;color:#444}.monsterinsights-upsell-overlay p{margin:24px 0;font-size:15px;line-height:140%;color:#444}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #e2e4e9;padding:32px 0 0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-left:20px;padding-right:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content h3{font-size:23px;line-height:120%}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:16px auto 24px;display:grid;grid-gap:10px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-1{grid-template-columns:1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#393f4c;font-size:13px;padding-left:24px;position:relative;line-height:17px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;width:16px;height:17px;background:url(../img/bullet.svg) no-repeat 50%;left:0;display:inline-block;top:-1px;content:""}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:700;font-size:18px;line-height:140%;background:#338eef;border:1px solid #1177e3;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;padding:12px 24px;position:relative}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after{content:"";width:13px;height:15px;margin-left:12px;background:url(../img/icon-lock.svg) no-repeat 50%}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-right:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-left:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}.monsterinsights-admin-page .monsterinsights-lite-datepicker{text-align:center;padding:12px 12px 27px}.monsterinsights-admin-page .monsterinsights-lite-datepicker p{color:#444;font-size:15px;line-height:1.5;font-weight:700}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text{color:#509fe2;display:inline-block;width:auto}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:hover{color:#3a93dd}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text i{margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown{min-width:250px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button{background:rgba(0,0,0,0);color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:hover{color:#3a93dd}body.monsterinsights-reporting-page .monsterinsights-notice-error.monsterinsights-license_expired{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-actions{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a{display:inline-block}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert{text-align:left;padding-right:39px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}
1
+ .flatpickr-calendar{background:rgba(0,0,0,0);opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,.08);box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,.08)}.flatpickr-calendar.inline,.flatpickr-calendar.open{opacity:1;max-height:640px;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99999}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1);animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px)}.flatpickr-calendar.static.open{z-index:999;display:block}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none!important;box-shadow:none!important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-calendar .hasTime .dayContainer,.flatpickr-calendar .hasWeeks .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:after,.flatpickr-calendar:before{position:absolute;display:block;pointer-events:none;border:solid rgba(0,0,0,0);content:"";height:0;width:0;left:22px}.flatpickr-calendar.rightMost:after,.flatpickr-calendar.rightMost:before{left:auto;right:22px}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:after,.flatpickr-calendar.arrowTop:before{bottom:100%}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}.flatpickr-calendar.arrowBottom:after,.flatpickr-calendar.arrowBottom:before{top:100%}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-months .flatpickr-month{background:rgba(0,0,0,0);color:rgba(0,0,0,.9);fill:rgba(0,0,0,.9);height:34px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flatpickr-months .flatpickr-next-month,.flatpickr-months .flatpickr-prev-month{text-decoration:none;cursor:pointer;position:absolute;top:0;height:34px;padding:10px;z-index:3;color:rgba(0,0,0,.9);fill:rgba(0,0,0,.9)}.flatpickr-months .flatpickr-next-month.flatpickr-disabled,.flatpickr-months .flatpickr-prev-month.flatpickr-disabled{display:none}.flatpickr-months .flatpickr-next-month i,.flatpickr-months .flatpickr-prev-month i{position:relative}.flatpickr-months .flatpickr-next-month.flatpickr-prev-month,.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month{left:0}.flatpickr-months .flatpickr-next-month.flatpickr-next-month,.flatpickr-months .flatpickr-prev-month.flatpickr-next-month{right:0}.flatpickr-months .flatpickr-next-month:hover,.flatpickr-months .flatpickr-prev-month:hover{color:#959ea9}.flatpickr-months .flatpickr-next-month:hover svg,.flatpickr-months .flatpickr-prev-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-next-month svg,.flatpickr-months .flatpickr-prev-month svg{width:14px;height:14px}.flatpickr-months .flatpickr-next-month svg path,.flatpickr-months .flatpickr-prev-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit}.numInputWrapper{position:relative;height:auto}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper input::-webkit-inner-spin-button,.numInputWrapper input::-webkit-outer-spin-button{margin:0;-webkit-appearance:none}.numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,.15);-webkit-box-sizing:border-box;box-sizing:border-box}.numInputWrapper span:hover{background:rgba(0,0,0,.1)}.numInputWrapper span:active{background:rgba(0,0,0,.2)}.numInputWrapper span:after{display:block;content:"";position:absolute}.numInputWrapper span.arrowUp{top:0;border-bottom:0}.numInputWrapper span.arrowUp:after{border-left:4px solid rgba(0,0,0,0);border-right:4px solid rgba(0,0,0,0);border-bottom:4px solid rgba(57,57,57,.6);top:26%}.numInputWrapper span.arrowDown{top:50%}.numInputWrapper span.arrowDown:after{border-left:4px solid rgba(0,0,0,0);border-right:4px solid rgba(0,0,0,0);border-top:4px solid rgba(57,57,57,.6);top:40%}.numInputWrapper span svg{width:inherit;height:auto}.numInputWrapper span svg path{fill:rgba(0,0,0,.5)}.numInputWrapper:hover{background:rgba(0,0,0,.05)}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:7.48px 0 0;line-height:1;height:34px;display:inline-block;text-align:center;-webkit-transform:translateZ(0);transform:translateZ(0)}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,.05)}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch\0;display:inline-block}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,.9)}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,.9)}.flatpickr-current-month input.cur-year{background:rgba(0,0,0,0);-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,.5);background:rgba(0,0,0,0);pointer-events:none}.flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist;background:rgba(0,0,0,0);border:none;border-radius:0;box-sizing:border-box;color:inherit;cursor:pointer;font-size:inherit;font-family:inherit;font-weight:300;height:auto;line-height:inherit;margin:-1px 0 0;outline:none;padding:0 0 0 .5ch;position:relative;vertical-align:initial;-webkit-box-sizing:border-box;-webkit-appearance:menulist;-moz-appearance:menulist;width:auto}.flatpickr-current-month .flatpickr-monthDropdown-months:active,.flatpickr-current-month .flatpickr-monthDropdown-months:focus{outline:none}.flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,.05)}.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:rgba(0,0,0,0);outline:none;padding:0}.flatpickr-weekdays{background:rgba(0,0,0,0);text-align:center;overflow:hidden;width:100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px}.flatpickr-weekdays,.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-weekdays .flatpickr-weekdaycontainer,span.flatpickr-weekday{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{cursor:default;font-size:90%;background:rgba(0,0,0,0);color:rgba(0,0,0,.54);line-height:1;margin:0;text-align:center;display:block;font-weight:bolder}.dayContainer,.flatpickr-weeks{padding:1px 0 0}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px}.flatpickr-days:focus{outline:0}.dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}.dayContainer+.dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}.flatpickr-day{background:none;border:1px solid rgba(0,0,0,0);border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center}.flatpickr-day.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day.nextMonthDay:focus,.flatpickr-day.nextMonthDay:hover,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.today.inRange,.flatpickr-day:focus,.flatpickr-day:hover{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}.flatpickr-day.today{border-color:#959ea9}.flatpickr-day.today:focus,.flatpickr-day.today:hover{border-color:#959ea9;background:#959ea9;color:#fff}.flatpickr-day.endRange,.flatpickr-day.endRange.inRange,.flatpickr-day.endRange.nextMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.endRange:focus,.flatpickr-day.endRange:hover,.flatpickr-day.selected,.flatpickr-day.selected.inRange,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.selected:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange,.flatpickr-day.startRange.inRange,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.startRange:focus,.flatpickr-day.startRange:hover{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}.flatpickr-day.endRange.startRange,.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange{border-radius:50px 0 0 50px}.flatpickr-day.endRange.endRange,.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange{border-radius:0 50px 50px 0}.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 0 #569ff7}.flatpickr-day.endRange.startRange.endRange,.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.nextMonthDay,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.prevMonthDay{color:rgba(57,57,57,.3);background:rgba(0,0,0,0);border-color:rgba(0,0,0,0);cursor:default}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,.1)}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{float:left}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,.3);background:rgba(0,0,0,0);cursor:default;border:none}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;overflow:hidden}.flatpickr-innerContainer,.flatpickr-rContainer{-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-rContainer{display:inline-block;padding:0}.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{background:rgba(0,0,0,0);-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.flatpickr-time input.flatpickr-hour{font-weight:700}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-am-pm,.flatpickr-time .flatpickr-time-separator{height:inherit;float:left;line-height:inherit;color:#393939;font-weight:700;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}.flatpickr-time .flatpickr-am-pm:focus,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time input:hover{background:#eee}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fpFadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}
2
+
3
  /*!
4
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
5
+ */.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:0 -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:0 -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:0 -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:0 -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:0 -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:0 -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:0 -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:0 -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:0 -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:0 -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:0 -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:0 -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:0 -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:0 -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:0 -480px}.monsterinsights-report-year-in-review{margin-left:auto;margin-right:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:0 0;margin-bottom:90px}.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review.monsterinsights-yir-report-calculating-row{width:100%;margin-top:20px}}.monsterinsights-report-year-in-review a,.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5,.monsterinsights-report-year-in-review p,.monsterinsights-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review h1,.monsterinsights-report-year-in-review h2,.monsterinsights-report-year-in-review h3,.monsterinsights-report-year-in-review h4,.monsterinsights-report-year-in-review h5{font-weight:900}.monsterinsights-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.monsterinsights-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer,.monsterinsights-report-year-in-review .monsterinsights-yir-header,.monsterinsights-report-year-in-review section{padding:0 30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-text-right{text-align:right}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/charlie.png);background-repeat:no-repeat;background-position:100% 100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header{padding-left:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/charlie2x.png);background-position:right top 60px;background-size:173px 207px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-title{font-size:26px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-yir-summary{font-size:12px;max-width:230px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-right:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link{width:inherit}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-top-header.monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 25px 14px 90px;position:relative;display:inline-block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-title{font-size:32px}}.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-top-header .monsterinsights-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header{margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-header div{width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-report-subtitle{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder{position:relative}.monsterinsights-report-year-in-review .monsterinsights-reports-visitorbymonth-chart .monsterinsights-reports-visitorbymonth-chart-content .monsterinsights-reports-bar-chart-holder .monsterinsights-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box.monsterinsights-year-in-review-table-box-blur-report .monsterinsights-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title{display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle{display:inline-block;float:right}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0;text-transform:capitalize}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list{padding-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item{padding:9px 30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:active,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:focus,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{bottom:-40px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip span{font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip .monsterinsights-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:block;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder .monsterinsights-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{position:relative;left:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{margin:10px 0 0}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{margin-right:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-right:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip a,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip h3,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{width:90px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-size:12px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper{margin-top:15px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:left}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-details{font-size:14px;line-height:20px;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success{background:#1ec185}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:hover{opacity:.8;background:#10ad73}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions img,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors img{margin-bottom:15px;max-height:28px}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-size:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{display:block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{margin:0 auto}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag.monsterinsights-flag-zz{display:none}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{margin-top:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:10px;line-height:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:block;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{margin-top:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:50%;position:relative}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-right:0;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:55%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:30%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-products-sold,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-revenue{padding:75px 0}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:24px;line-height:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:45%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:70%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning img,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular img{margin-bottom:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-revenue-by-month{margin-bottom:50px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:0 0;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:0;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-size:14px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{padding:0 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.chris{background-image:url(../img/chris.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.syed{background-image:url(../img/syed.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{width:100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content{text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-size:18px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{text-align:center;padding-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:active,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:hover{background:#123c68}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-left:0;margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:calc(50% - 60px);float:left;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:100%;margin:30px 0;min-height:300px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top{padding-top:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image{width:104px;float:left;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image .monsterinsights-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:hover{background:rgba(51,142,239,.5)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{padding-top:100px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-size:18px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:block;margin-left:0;padding-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{min-height:350px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{padding:8px 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.monsterinsights-report-site-speed .monsterinsights-report-top h2.monsterinsights-report-top-title{margin-top:10px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report{margin-right:16px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit{background-color:#3990ec;height:39px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit:hover{background-color:rgba(57,144,236,.8)}.monsterinsights-report-site-speed .monsterinsights-choose-device-button{margin-left:15px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-site-speed-container{max-width:1010px}.monsterinsights-report-site-speed .monsterinsights-site-speed-device,.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:338px;margin-right:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon{margin-bottom:40px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon .desktop{width:80px}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(-55deg);-ms-transform:scaleX(-1) rotate(-55deg);transform:scaleX(-1) rotate(-55deg);overflow:visible}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__container{display:inline-block;position:relative}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:662px}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex{text-align:center}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex.monsterinsights-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat p{color:#828282}.monsterinsights-report-site-speed .monsterinsights-how-to-improve h2.title{font-size:22px;color:#393f4c}div.monsterinsights-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-left:10px;padding-right:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-report-top{margin-bottom:25px}}.monsterinsights_page.monsterinsights-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-details,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-pdf-score{display:block!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-title,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border:none!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-trigger-icon,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-notificationsv3-container,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-progress-circle{display:none}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page{width:1120px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button:first-child{border-right:0}@media (max-width:782px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:1px solid #d6e2ed}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart{width:50%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart:first-child{margin:0 25px 0 0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box{margin-left:20px;margin-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box:first-child{margin-left:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex.monsterinsights-interests-scroll-report .monsterinsights-table-box{width:100%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart:first-child{margin:0 25px 0 0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top{margin-top:14px}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top{margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin:0 0 25px}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-bottom:0}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button{background-color:#eceff5;color:#444;border-color:#d6e2ed}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:hover{background-color:#fff}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button[disabled=disabled]{cursor:not-allowed}body.monsterinsights-reporting-page .monsterinsights-report-realtime .monsterinsights-export-pdf-report{margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-right:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:right}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-left:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{background:#8ea4b4;border-radius:3px;color:#fff;border:solid #708c9f;border-width:1px 1px 2px;position:relative;text-align:left;font-size:14px;font-weight:400;line-height:1.1;padding:10px 20px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:hover{background:#3a93dd;cursor:pointer}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{max-width:100%;width:100%;padding:12px 20px 8px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:top;display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:after{width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;right:20px}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #d6e2ed;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0;top:100%}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown.monsterinsights-p-0{padding:0;max-width:auto;border:0}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button{display:block;width:100%;margin-bottom:5px;text-align:left;background-color:#fff;color:#444;border:none}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button.monsterinsights-interval-active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:hover{background-color:#eceff4;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button i{margin-right:10px}body.monsterinsights-reporting-page .monsterinsights-datepicker,body.monsterinsights-reporting-page .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{max-width:100%;width:100%}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#509fe2;border-color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#eceff4;padding:14px 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-left:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:100%;font-weight:700;text-align:left;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-right:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-right:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-left:1px solid #d6e2ed;padding:17px 20px 15px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;right:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-left:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-left:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-right:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:left}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:right}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px;margin-top:15px}.monsterinsights-reports-infobox-compare{clear:right;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-right:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-right:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-right:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-right:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;left:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;left:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:right}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;right:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-left:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-left:0;margin-top:0}.monsterinsights-table-box h3{margin-left:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute;top:20px;right:20px}@media (max-width:991px){.monsterinsights-table-box{margin-left:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px 0 -10px -8px}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}.monsterinsights-table-box-pagination{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-right:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-right:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:left;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-left:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-right:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-left:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-right:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;right:20px;top:20px}.monsterinsights-report-box-icon-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-report-box-icon-heading h3{color:#509fe2;margin-left:15px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-top{pointer-events:none;-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-blur .upsell-blur{background:#fff;width:100%;min-height:100vh}.monsterinsights-blur .upsell-blur img{max-width:100%}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.monsterinsights-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content__features{margin-bottom:46px;-webkit-box-flex:1;-ms-flex:1;flex:1}.monsterinsights-upsell-content__img{width:278px;background-position:100% 100%;background-repeat:no-repeat;background-size:contain}.monsterinsights-upsell-content__img.upsell-publisher{background-image:url(../img/bg-publisher@2x.png)}.monsterinsights-upsell-content__img.upsell-queries{background-image:url(../img/bg-queries@2x.png)}.monsterinsights-upsell-content__img.upsell-forms{background-image:url(../img/bg-forms@2x.png)}.monsterinsights-upsell-content__img.upsell-realtime{background-image:url(../img/bg-realtime@2x.png)}.monsterinsights-upsell-content__img.upsell-ecommerce{background-image:url(../img/bg-ecommerce@2x.png)}.monsterinsights-upsell-content__img.upsell-dimensions{background-image:url(../img/bg-dimensions@2x.png);background-position:50%}.monsterinsights-upsell-content__img.upsell-sitespeed{background-image:url(../img/bg-sitespeed@2x.png)}.monsterinsights-upsell-content__img.upsell-media{background-image:url(../img/bg-media-upsell.svg);background-position:100%}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:26px 40px;display:-webkit-box;display:-ms-flexbox;display:flex;gap:16px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:left;color:#23262e;font-size:20px;line-height:100%;margin:0}.monsterinsights-upsell-overlay h4{font-size:16px;line-height:140%;color:#444}.monsterinsights-upsell-overlay p{margin:24px 0;font-size:15px;line-height:140%;color:#444}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #e2e4e9;padding:32px 0 0 40px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-left:20px;padding-right:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content h3{font-size:23px;line-height:120%}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:16px auto 24px;display:grid;grid-gap:10px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-1{grid-template-columns:1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#393f4c;font-size:13px;padding-left:24px;position:relative;line-height:17px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;width:16px;height:17px;background:url(../img/bullet.svg) no-repeat 50%;left:0;display:inline-block;top:-1px;content:""}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:700;font-size:18px;line-height:140%;background:#338eef;border:1px solid #1177e3;-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:4px;padding:12px 24px;position:relative}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after{content:"";width:13px;height:15px;margin-left:12px;background:url(../img/icon-lock.svg) no-repeat 50%}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-right:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-left:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}.monsterinsights-admin-page .monsterinsights-lite-datepicker{text-align:center;padding:12px 12px 27px}.monsterinsights-admin-page .monsterinsights-lite-datepicker p{color:#444;font-size:15px;line-height:1.5;font-weight:700}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text{color:#509fe2;display:inline-block;width:auto}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:hover{color:#3a93dd}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text i{margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown{min-width:250px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button{background:rgba(0,0,0,0);color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:hover{color:#3a93dd}body.monsterinsights-reporting-page .monsterinsights-notice-error.monsterinsights-license_expired{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-actions{display:none!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a{display:inline-block}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert{text-align:left;padding-right:39px}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}
lite/assets/vue/css/reports.rtl.css CHANGED
@@ -1,3 +1,5 @@
 
 
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 .monsterin
1
+ .flatpickr-calendar{background:rgba(0,0,0,0);opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:rtl;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:-1px 0 0 #e6e6e6,1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,.08);box-shadow:-1px 0 0 #e6e6e6,1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,.08)}.flatpickr-calendar.inline,.flatpickr-calendar.open{opacity:1;max-height:640px;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99999}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1);animation:fpFadeInDown .3s cubic-bezier(.23,1,.32,1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px)}.flatpickr-calendar.static.open{z-index:999;display:block}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none!important;box-shadow:none!important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:2px 0 0 #e6e6e6,-5px 0 0 #e6e6e6;box-shadow:2px 0 0 #e6e6e6,-5px 0 0 #e6e6e6}.flatpickr-calendar .hasTime .dayContainer,.flatpickr-calendar .hasWeeks .dayContainer{border-bottom:0;border-bottom-left-radius:0;border-bottom-right-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-right:0}.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:after,.flatpickr-calendar:before{position:absolute;display:block;pointer-events:none;border:solid rgba(0,0,0,0);content:"";height:0;width:0;right:22px}.flatpickr-calendar.rightMost:after,.flatpickr-calendar.rightMost:before{right:auto;left:22px}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:after,.flatpickr-calendar.arrowTop:before{bottom:100%}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}.flatpickr-calendar.arrowBottom:after,.flatpickr-calendar.arrowBottom:before{top:100%}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-months .flatpickr-month{background:rgba(0,0,0,0);color:rgba(0,0,0,.9);fill:rgba(0,0,0,.9);height:34px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flatpickr-months .flatpickr-next-month,.flatpickr-months .flatpickr-prev-month{text-decoration:none;cursor:pointer;position:absolute;top:0;height:34px;padding:10px;z-index:3;color:rgba(0,0,0,.9);fill:rgba(0,0,0,.9)}.flatpickr-months .flatpickr-next-month.flatpickr-disabled,.flatpickr-months .flatpickr-prev-month.flatpickr-disabled{display:none}.flatpickr-months .flatpickr-next-month i,.flatpickr-months .flatpickr-prev-month i{position:relative}.flatpickr-months .flatpickr-next-month.flatpickr-prev-month,.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month{right:0}.flatpickr-months .flatpickr-next-month.flatpickr-next-month,.flatpickr-months .flatpickr-prev-month.flatpickr-next-month{left:0}.flatpickr-months .flatpickr-next-month:hover,.flatpickr-months .flatpickr-prev-month:hover{color:#959ea9}.flatpickr-months .flatpickr-next-month:hover svg,.flatpickr-months .flatpickr-prev-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-next-month svg,.flatpickr-months .flatpickr-prev-month svg{width:14px;height:14px}.flatpickr-months .flatpickr-next-month svg path,.flatpickr-months .flatpickr-prev-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit}.numInputWrapper{position:relative;height:auto}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper input::-webkit-inner-spin-button,.numInputWrapper input::-webkit-outer-spin-button{margin:0;-webkit-appearance:none}.numInputWrapper span{position:absolute;left:0;width:14px;padding:0 2px 0 4px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,.15);-webkit-box-sizing:border-box;box-sizing:border-box}.numInputWrapper span:hover{background:rgba(0,0,0,.1)}.numInputWrapper span:active{background:rgba(0,0,0,.2)}.numInputWrapper span:after{display:block;content:"";position:absolute}.numInputWrapper span.arrowUp{top:0;border-bottom:0}.numInputWrapper span.arrowUp:after{border-right:4px solid rgba(0,0,0,0);border-left:4px solid rgba(0,0,0,0);border-bottom:4px solid rgba(57,57,57,.6);top:26%}.numInputWrapper span.arrowDown{top:50%}.numInputWrapper span.arrowDown:after{border-right:4px solid rgba(0,0,0,0);border-left:4px solid rgba(0,0,0,0);border-top:4px solid rgba(57,57,57,.6);top:40%}.numInputWrapper span svg{width:inherit;height:auto}.numInputWrapper span svg path{fill:rgba(0,0,0,.5)}.numInputWrapper:hover{background:rgba(0,0,0,.05)}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;right:12.5%;padding:7.48px 0 0;line-height:1;height:34px;display:inline-block;text-align:center;-webkit-transform:translateZ(0);transform:translateZ(0)}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-right:.5ch;padding:0}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,.05)}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch\0;display:inline-block}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,.9)}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,.9)}.flatpickr-current-month input.cur-year{background:rgba(0,0,0,0);-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 .5ch 0 0;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,.5);background:rgba(0,0,0,0);pointer-events:none}.flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist;background:rgba(0,0,0,0);border:none;border-radius:0;box-sizing:border-box;color:inherit;cursor:pointer;font-size:inherit;font-family:inherit;font-weight:300;height:auto;line-height:inherit;margin:-1px 0 0;outline:none;padding:0 .5ch 0 0;position:relative;vertical-align:initial;-webkit-box-sizing:border-box;-webkit-appearance:menulist;-moz-appearance:menulist;width:auto}.flatpickr-current-month .flatpickr-monthDropdown-months:active,.flatpickr-current-month .flatpickr-monthDropdown-months:focus{outline:none}.flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,.05)}.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:rgba(0,0,0,0);outline:none;padding:0}.flatpickr-weekdays{background:rgba(0,0,0,0);text-align:center;overflow:hidden;width:100%;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px}.flatpickr-weekdays,.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-weekdays .flatpickr-weekdaycontainer,span.flatpickr-weekday{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{cursor:default;font-size:90%;background:rgba(0,0,0,0);color:rgba(0,0,0,.54);line-height:1;margin:0;text-align:center;display:block;font-weight:bolder}.dayContainer,.flatpickr-weeks{padding:1px 0 0}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px}.flatpickr-days:focus{outline:0}.dayContainer{padding:0;outline:0;text-align:right;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translateZ(0);transform:translateZ(0);opacity:1}.dayContainer+.dayContainer{-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}.flatpickr-day{background:none;border:1px solid rgba(0,0,0,0);border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center}.flatpickr-day.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day.nextMonthDay:focus,.flatpickr-day.nextMonthDay:hover,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.today.inRange,.flatpickr-day:focus,.flatpickr-day:hover{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}.flatpickr-day.today{border-color:#959ea9}.flatpickr-day.today:focus,.flatpickr-day.today:hover{border-color:#959ea9;background:#959ea9;color:#fff}.flatpickr-day.endRange,.flatpickr-day.endRange.inRange,.flatpickr-day.endRange.nextMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.endRange:focus,.flatpickr-day.endRange:hover,.flatpickr-day.selected,.flatpickr-day.selected.inRange,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.selected:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange,.flatpickr-day.startRange.inRange,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.startRange:focus,.flatpickr-day.startRange:hover{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}.flatpickr-day.endRange.startRange,.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange{border-radius:0 50px 50px 0}.flatpickr-day.endRange.endRange,.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange{border-radius:50px 0 0 50px}.flatpickr-day.endRange.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.selected.startRange+.endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange+.endRange:not(:nth-child(7n+1)){-webkit-box-shadow:10px 0 0 #569ff7;box-shadow:10px 0 0 #569ff7}.flatpickr-day.endRange.startRange.endRange,.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:5px 0 0 #e6e6e6,-5px 0 0 #e6e6e6;box-shadow:5px 0 0 #e6e6e6,-5px 0 0 #e6e6e6}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.nextMonthDay,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.prevMonthDay{color:rgba(57,57,57,.3);background:rgba(0,0,0,0);border-color:rgba(0,0,0,0);cursor:default}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,.1)}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:5px 0 0 #569ff7,-5px 0 0 #569ff7;box-shadow:5px 0 0 #569ff7,-5px 0 0 #569ff7}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{float:right}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,.3);background:rgba(0,0,0,0);cursor:default;border:none}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;overflow:hidden}.flatpickr-innerContainer,.flatpickr-rContainer{-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-rContainer{display:inline-block;padding:0}.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:right}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{background:rgba(0,0,0,0);-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.flatpickr-time input.flatpickr-hour{font-weight:700}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-am-pm,.flatpickr-time .flatpickr-time-separator{height:inherit;float:right;line-height:inherit;color:#393939;font-weight:700;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}.flatpickr-time .flatpickr-am-pm:focus,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time input:hover{background:#eee}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes fpFadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translateZ(0);transform:translateZ(0)}}
2
+
3
  /*!
4
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)