Google Analytics for WordPress by MonsterInsights - Version 8.3.3

Version Description

Download this release

Release Info

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

Code changes from version 8.3.2 to 8.3.3

googleanalytics.php CHANGED
@@ -6,7 +6,7 @@
6
  * Author: MonsterInsights
7
  * Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
- * Version: 8.3.2
10
  * Requires at least: 4.8.0
11
  * Requires PHP: 5.5
12
  *
@@ -69,7 +69,7 @@ final class MonsterInsights_Lite {
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
- public $version = '8.3.2';
73
 
74
  /**
75
  * Plugin file.
6
  * Author: MonsterInsights
7
  * Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
+ * Version: 8.3.3
10
  * Requires at least: 4.8.0
11
  * Requires PHP: 5.5
12
  *
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
+ public $version = '8.3.3';
73
 
74
  /**
75
  * Plugin file.
includes/admin/notification-event-runner.php CHANGED
@@ -117,6 +117,8 @@ class MonsterInsights_Notification_Event_Runner {
117
  $notifications = $this->get_registered_notifications();
118
  $last_runs = $this->get_notifications_last_run();
119
 
 
 
120
  // Loop through registered notifications.
121
  foreach ( $notifications as $notification ) {
122
  /**¬
@@ -134,14 +136,19 @@ class MonsterInsights_Notification_Event_Runner {
134
  if ( $time_since < $time_now ) {
135
  // Interval passed since it ran so let's add this one.
136
 
 
137
  $added_notification = $notification->add_notification();
138
 
139
- if ($added_notification) {
140
- // Update the last run date as right now.
141
- $this->update_last_run($notification->notification_id);
142
- // Let's not add multiple notifications at the same time.
143
- break;
144
- }
 
 
 
 
145
  }
146
  }
147
  }
117
  $notifications = $this->get_registered_notifications();
118
  $last_runs = $this->get_notifications_last_run();
119
 
120
+ $current_runs = 0;
121
+
122
  // Loop through registered notifications.
123
  foreach ( $notifications as $notification ) {
124
  /**¬
136
  if ( $time_since < $time_now ) {
137
  // Interval passed since it ran so let's add this one.
138
 
139
+ $current_runs ++;
140
  $added_notification = $notification->add_notification();
141
 
142
+ // Update the last run date as right now.
143
+ $this->update_last_run($notification->notification_id);
144
+
145
+ // Avoid adding multiple notifications at the same time, and
146
+ // also avoid running more than 5 notifications that returned
147
+ // no data, otherwise this request would take too long
148
+ if ( $added_notification || $current_runs > 5 ) {
149
+ // Let's not add multiple notifications at the same time.
150
+ break;
151
+ }
152
  }
153
  }
154
  }
includes/admin/notification-event.php CHANGED
@@ -195,21 +195,28 @@ class MonsterInsights_Notification_Event {
195
  * @since 7.12.3
196
  */
197
  public function add_notification() {
198
- $notification = array();
199
- $notification['id'] = $this->notification_id . '_' . date( 'Ymd' ); // Make sure we never add the same notification on the same day.
200
- $notification['icon'] = $this->notification_icon;
201
- $notification['title'] = '';
202
- $notification['content'] = '';
203
- $notification['type'] = $this->notification_type;
204
- $notification['btns'] = array();
205
- $notification['start'] = $this->notification_active_from;
206
- $notification['end'] = $this->notification_active_for;
207
- $notification['category'] = $this->notification_category;
208
- $notification['priority'] = $this->notification_priority;
209
- $notification_data = $this->prepare_notification_data( $notification );
 
 
 
 
 
 
 
210
 
211
  if ( is_array( $notification_data ) && ! empty( $notification_data ) ) {
212
- return MonsterInsights()->notifications->add( $notification_data );
213
  }
214
 
215
  return false;
195
  * @since 7.12.3
196
  */
197
  public function add_notification() {
198
+ $notifications = MonsterInsights()->notifications;
199
+
200
+ $notification = array();
201
+ $notification['id'] = $this->notification_id . '_' . date( 'Ymd' ); // Make sure we never add the same notification on the same day.
202
+ $notification['icon'] = $this->notification_icon;
203
+ $notification['title'] = '';
204
+ $notification['content'] = '';
205
+ $notification['type'] = $this->notification_type;
206
+ $notification['btns'] = array();
207
+ $notification['start'] = $this->notification_active_from;
208
+ $notification['end'] = $this->notification_active_for;
209
+ $notification['category'] = $this->notification_category;
210
+ $notification['priority'] = $this->notification_priority;
211
+
212
+ if ( $notifications->is_dismissed( $notification ) ) {
213
+ return false;
214
+ }
215
+
216
+ $notification_data = $this->prepare_notification_data( $notification );
217
 
218
  if ( is_array( $notification_data ) && ! empty( $notification_data ) ) {
219
+ return $notifications->add( $notification_data );
220
  }
221
 
222
  return false;
includes/admin/notifications.php CHANGED
@@ -332,7 +332,17 @@ class MonsterInsights_Notifications {
332
  public function get_active_notifications() {
333
  $notifications = $this->get();
334
 
335
- return isset( $notifications['active'] ) ? $notifications['active'] : array();
 
 
 
 
 
 
 
 
 
 
336
  }
337
 
338
  /**
@@ -360,6 +370,29 @@ class MonsterInsights_Notifications {
360
  return count( $this->get_active_notifications() );
361
  }
362
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
363
  /**
364
  * Add a manual notification event.
365
  *
@@ -370,18 +403,12 @@ class MonsterInsights_Notifications {
370
  */
371
  public function add( $notification ) {
372
 
373
- if ( empty( $notification['id'] ) ) {
374
  return false;
375
  }
376
 
377
  $option = $this->get_option();
378
 
379
- foreach ( $option['dismissed'] as $item ) {
380
- if ( $item['id'] === $notification['id'] ) {
381
- return false;
382
- }
383
- }
384
-
385
  $current_notifications = $option['events'];
386
 
387
  foreach ( $current_notifications as $item ) {
@@ -390,11 +417,6 @@ class MonsterInsights_Notifications {
390
  }
391
  }
392
 
393
- // Show maximum 5 notifications to user, except if new one has priority 1
394
- if (sizeof( $current_notifications ) >= 5 && $notification['priority'] != 1) {
395
- return false;
396
- }
397
-
398
  $notification = $this->verify( array( $notification ) );
399
 
400
  $notifications = array_merge( $notification, $current_notifications );
332
  public function get_active_notifications() {
333
  $notifications = $this->get();
334
 
335
+ // Show only 5 active notifications plus any that has a priority of 1
336
+ $all_active = isset( $notifications['active'] ) ? $notifications['active'] : array();
337
+ $displayed = array();
338
+
339
+ foreach ( $all_active as $notification ) {
340
+ if ( $notification['priority'] === 1 || count( $displayed ) < 5 ) {
341
+ $displayed[] = $notification;
342
+ }
343
+ }
344
+
345
+ return $displayed;
346
  }
347
 
348
  /**
370
  return count( $this->get_active_notifications() );
371
  }
372
 
373
+ /**
374
+ * Check if a notification has been dismissed before
375
+ *
376
+ * @param $notification
377
+ *
378
+ * @return bool
379
+ */
380
+ public function is_dismissed( $notification ) {
381
+ if ( empty( $notification['id'] ) ) {
382
+ return true;
383
+ }
384
+
385
+ $option = $this->get_option();
386
+
387
+ foreach ( $option['dismissed'] as $item ) {
388
+ if ( $item['id'] === $notification['id'] ) {
389
+ return true;
390
+ }
391
+ }
392
+
393
+ return false;
394
+ }
395
+
396
  /**
397
  * Add a manual notification event.
398
  *
403
  */
404
  public function add( $notification ) {
405
 
406
+ if ( empty( $notification['id'] ) || $this->is_dismissed( $notification ) ) {
407
  return false;
408
  }
409
 
410
  $option = $this->get_option();
411
 
 
 
 
 
 
 
412
  $current_notifications = $option['events'];
413
 
414
  foreach ( $current_notifications as $item ) {
417
  }
418
  }
419
 
 
 
 
 
 
420
  $notification = $this->verify( array( $notification ) );
421
 
422
  $notifications = array_merge( $notification, $current_notifications );
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.3.2\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-01-25T21:29:48+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
@@ -119,14 +119,14 @@ msgstr ""
119
  #: includes/admin/admin.php:126
120
  #: includes/admin/em-admin.php:18
121
  #: includes/admin/em-admin.php:21
122
- #: languages/vue.php:245
123
  msgid "Insights"
124
  msgstr ""
125
 
126
  #: includes/admin/admin.php:34
127
  #: includes/admin/admin.php:42
128
  #: includes/admin/admin.php:222
129
- #: languages/vue.php:511
130
  msgid "Settings"
131
  msgstr ""
132
 
@@ -142,7 +142,7 @@ msgstr ""
142
 
143
  #: includes/admin/admin.php:39
144
  #: includes/admin/admin.php:130
145
- #: languages/vue.php:1975
146
  msgid "Reports"
147
  msgstr ""
148
 
@@ -152,7 +152,7 @@ msgstr ""
152
 
153
  #: includes/admin/admin.php:51
154
  #: languages/gutenberg.php:83
155
- #: languages/vue.php:872
156
  msgid "Popular Posts"
157
  msgstr ""
158
 
@@ -186,7 +186,7 @@ msgstr ""
186
 
187
  #: includes/admin/admin.php:71
188
  #: includes/admin/admin.php:146
189
- #: languages/vue.php:493
190
  msgid "About Us"
191
  msgstr ""
192
 
@@ -205,7 +205,7 @@ msgstr ""
205
  #: includes/admin/admin.php:76
206
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
207
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
208
- #: languages/vue.php:1396
209
  msgid "Upgrade to Pro"
210
  msgstr ""
211
 
@@ -233,7 +233,7 @@ msgstr ""
233
 
234
  #: includes/admin/admin.php:212
235
  #: includes/admin/admin.php:215
236
- #: languages/vue.php:896
237
  msgid "Support"
238
  msgstr ""
239
 
@@ -245,7 +245,7 @@ msgstr ""
245
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
246
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
247
  #: includes/admin/reports/abstract-report.php:418
248
- #: languages/vue.php:1393
249
  msgid "Get MonsterInsights Pro"
250
  msgstr ""
251
 
@@ -255,12 +255,12 @@ msgid "Please rate %1$sMonsterInsights%2$s on %3$s %4$sWordPress.org%5$s to help
255
  msgstr ""
256
 
257
  #: includes/admin/admin.php:324
258
- #: languages/vue.php:478
259
  msgid "Please Setup Website Analytics to See Audience Insights"
260
  msgstr ""
261
 
262
  #: includes/admin/admin.php:325
263
- #: languages/vue.php:484
264
  msgid "Connect MonsterInsights and Setup Website Analytics"
265
  msgstr ""
266
 
@@ -275,12 +275,12 @@ msgstr ""
275
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
276
  #: includes/admin/notifications/notification-returning-visitors.php:43
277
  #: includes/admin/notifications/notification-traffic-dropping.php:43
278
- #: languages/vue.php:431
279
  msgid "Learn More"
280
  msgstr ""
281
 
282
  #: includes/admin/admin.php:329
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,17 +291,17 @@ msgstr ""
291
 
292
  #. Translators: Adds a link to the license renewal.
293
  #: includes/admin/admin.php:350
294
- #: languages/vue.php:701
295
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
296
  msgstr ""
297
 
298
  #: includes/admin/admin.php:352
299
- #: languages/vue.php:704
300
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
301
  msgstr ""
302
 
303
  #: includes/admin/admin.php:354
304
- #: languages/vue.php:707
305
  msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
306
  msgstr ""
307
 
@@ -505,7 +505,7 @@ msgid "View 2021 Year in Review report!"
505
  msgstr ""
506
 
507
  #: includes/admin/common.php:951
508
- #: languages/vue.php:3458
509
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
510
  msgstr ""
511
 
@@ -526,7 +526,7 @@ msgstr ""
526
 
527
  #: includes/admin/exclude-page-metabox.php:102
528
  #: languages/gutenberg.php:149
529
- #: languages/vue.php:2368
530
  msgid "Upgrade"
531
  msgstr ""
532
 
@@ -553,7 +553,7 @@ msgstr ""
553
  msgid "Dismiss this notice"
554
  msgstr ""
555
 
556
- #: includes/admin/notification-event.php:249
557
  #: includes/admin/routes.php:870
558
  #: includes/admin/routes.php:1204
559
  msgid "You don't have permission to view MonsterInsights reports."
@@ -720,7 +720,7 @@ msgstr ""
720
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
721
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
722
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
723
- #: languages/vue.php:1251
724
  #: lite/includes/admin/helpers.php:83
725
  msgid "Upgrade to MonsterInsights Pro"
726
  msgstr ""
@@ -756,7 +756,7 @@ msgstr ""
756
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
757
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
758
  #: includes/admin/reports/abstract-report.php:415
759
- #: languages/vue.php:282
760
  msgid "Upgrade Now"
761
  msgstr ""
762
 
@@ -933,7 +933,7 @@ msgid "Please ask your webmaster to enable this addon."
933
  msgstr ""
934
 
935
  #: includes/admin/reports/overview.php:34
936
- #: languages/vue.php:561
937
  msgid "Overview"
938
  msgstr ""
939
 
@@ -1426,7 +1426,7 @@ msgid "Question"
1426
  msgstr ""
1427
 
1428
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1429
- #: languages/vue.php:517
1430
  msgid "General"
1431
  msgstr ""
1432
 
@@ -4826,7 +4826,7 @@ msgid "Theme"
4826
  msgstr ""
4827
 
4828
  #: languages/gutenberg.php:77
4829
- #: languages/vue.php:502
4830
  msgid "Inline Popular Posts"
4831
  msgstr ""
4832
 
@@ -4863,7 +4863,7 @@ msgid "Comment Color"
4863
  msgstr ""
4864
 
4865
  #: languages/gutenberg.php:107
4866
- #: languages/vue.php:2958
4867
  msgid "Wide-Layout Options"
4868
  msgstr ""
4869
 
@@ -4872,12 +4872,12 @@ msgid "Choose Layout"
4872
  msgstr ""
4873
 
4874
  #: languages/gutenberg.php:113
4875
- #: languages/vue.php:2961
4876
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4877
  msgstr ""
4878
 
4879
  #: languages/gutenberg.php:116
4880
- #: languages/vue.php:2982
4881
  msgid "Post Count"
4882
  msgstr ""
4883
 
@@ -4886,7 +4886,7 @@ msgid "Number of posts displayed."
4886
  msgstr ""
4887
 
4888
  #: languages/gutenberg.php:122
4889
- #: languages/vue.php:2964
4890
  msgid "Display Options"
4891
  msgstr ""
4892
 
@@ -4899,7 +4899,7 @@ msgid "Display Widget Title"
4899
  msgstr ""
4900
 
4901
  #: languages/gutenberg.php:131
4902
- #: languages/vue.php:2781
4903
  msgid "Widget Title"
4904
  msgstr ""
4905
 
@@ -4908,17 +4908,17 @@ msgid "Only Show Posts From These Categories"
4908
  msgstr ""
4909
 
4910
  #: languages/gutenberg.php:137
4911
- #: languages/vue.php:2970
4912
  msgid "Display Author"
4913
  msgstr ""
4914
 
4915
  #: languages/gutenberg.php:140
4916
- #: languages/vue.php:2973
4917
  msgid "Display Date"
4918
  msgstr ""
4919
 
4920
  #: languages/gutenberg.php:143
4921
- #: languages/vue.php:2976
4922
  msgid "Display Comments"
4923
  msgstr ""
4924
 
@@ -5139,7 +5139,7 @@ msgid "Goal: "
5139
  msgstr ""
5140
 
5141
  #: languages/gutenberg.php:324
5142
- #: languages/vue.php:851
5143
  msgid "Headline Analyzer"
5144
  msgstr ""
5145
 
@@ -5159,4651 +5159,4651 @@ msgstr ""
5159
  msgid "2"
5160
  msgstr ""
5161
 
5162
- #: languages/vue.php:12
5163
  msgid "Error"
5164
  msgstr ""
5165
 
5166
- #: languages/vue.php:15
5167
  msgid "Please try again."
5168
  msgstr ""
5169
 
5170
- #: languages/vue.php:18
5171
  msgid "Today"
5172
  msgstr ""
5173
 
5174
- #: languages/vue.php:21
5175
  msgid "Yesterday"
5176
  msgstr ""
5177
 
5178
- #: languages/vue.php:24
5179
  msgid "Last Week"
5180
  msgstr ""
5181
 
5182
- #: languages/vue.php:27
5183
  msgid "Last Month"
5184
  msgstr ""
5185
 
5186
- #: languages/vue.php:30
5187
  msgid "Last 7 days"
5188
  msgstr ""
5189
 
5190
- #: languages/vue.php:33
5191
  msgid "Last 30 days"
5192
  msgstr ""
5193
 
5194
- #: languages/vue.php:36
5195
  msgid "Loading settings"
5196
  msgstr ""
5197
 
5198
- #: languages/vue.php:39
5199
  msgid "Loading new report data"
5200
  msgstr ""
5201
 
5202
- #: languages/vue.php:43
5203
  msgid "Please wait..."
5204
  msgstr ""
5205
 
5206
  #. Translators: Adds an arrow icon.
5207
- #: languages/vue.php:47
5208
  msgid "Continue %s"
5209
  msgstr ""
5210
 
5211
- #: languages/vue.php:50
5212
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5213
  msgstr ""
5214
 
5215
- #: languages/vue.php:53
5216
  msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5217
  msgstr ""
5218
 
5219
- #: languages/vue.php:56
5220
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5221
  msgstr ""
5222
 
5223
- #: languages/vue.php:59
5224
  msgid "Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions."
5225
  msgstr ""
5226
 
5227
- #: languages/vue.php:62
5228
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5229
  msgstr ""
5230
 
5231
- #: languages/vue.php:65
5232
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5233
  msgstr ""
5234
 
5235
- #: languages/vue.php:68
5236
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5237
  msgstr ""
5238
 
5239
- #: languages/vue.php:71
5240
  msgid "Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
5241
  msgstr ""
5242
 
5243
- #: languages/vue.php:74
5244
  msgid "Unlock the Forms Report and Improve Conversions"
5245
  msgstr ""
5246
 
5247
- #: languages/vue.php:77
5248
  msgid "Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data."
5249
  msgstr ""
5250
 
5251
- #: languages/vue.php:80
5252
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5253
  msgstr ""
5254
 
5255
- #: languages/vue.php:83
5256
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5257
  msgstr ""
5258
 
5259
- #: languages/vue.php:86
5260
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5261
  msgstr ""
5262
 
5263
- #: languages/vue.php:89
5264
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it."
5265
  msgstr ""
5266
 
5267
- #: languages/vue.php:92
5268
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5269
  msgstr ""
5270
 
5271
- #: languages/vue.php:95
5272
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5273
  msgstr ""
5274
 
5275
- #: languages/vue.php:98
5276
  msgid "Loading Settings"
5277
  msgstr ""
5278
 
5279
- #: languages/vue.php:101
5280
  msgid "Saving Changes..."
5281
  msgstr ""
5282
 
5283
- #: languages/vue.php:104
5284
  msgid "Settings Updated"
5285
  msgstr ""
5286
 
5287
  #. Translators: Adds a link to the settings panel.
5288
- #: languages/vue.php:108
5289
  msgid "You need to %1$sconnect MonsterInsights%2$s first"
5290
  msgstr ""
5291
 
5292
- #: languages/vue.php:111
5293
  msgid "Could Not Save Changes"
5294
  msgstr ""
5295
 
5296
- #: languages/vue.php:114
5297
  msgid "Refreshing Report"
5298
  msgstr ""
5299
 
5300
- #: languages/vue.php:117
5301
  msgid "Loading new report data..."
5302
  msgstr ""
5303
 
5304
- #: languages/vue.php:120
5305
  msgid "See Your Top Landing Pages to Improve Engagement"
5306
  msgstr ""
5307
 
5308
- #: languages/vue.php:123
5309
  msgid "See Your Top Exit Pages to Reduce Abandonment"
5310
  msgstr ""
5311
 
5312
- #: languages/vue.php:126
5313
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
5314
  msgstr ""
5315
 
5316
- #: languages/vue.php:129
5317
  msgid "See Your Top Affiliate Links and Focus on What's Working"
5318
  msgstr ""
5319
 
5320
- #: languages/vue.php:132
5321
  msgid "See Your Top Downloads and Improve Conversions"
5322
  msgstr ""
5323
 
5324
- #: languages/vue.php:135
5325
  msgid "See Audience Demographic Report ( Age / Gender / Interests )"
5326
  msgstr ""
5327
 
5328
- #: languages/vue.php:138
5329
  msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5330
  msgstr ""
5331
 
5332
- #: languages/vue.php:141
5333
  msgid "See Your Conversion Rate to Improve Your Funnel"
5334
  msgstr ""
5335
 
5336
- #: languages/vue.php:144
5337
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
5338
  msgstr ""
5339
 
5340
- #: languages/vue.php:147
5341
  msgid "See The Total Revenue to Track Growth"
5342
  msgstr ""
5343
 
5344
- #: languages/vue.php:150
5345
  msgid "See Average Order Value to Find Offer Opportunities"
5346
  msgstr ""
5347
 
5348
- #: languages/vue.php:153
5349
  msgid "See Your Top Products to See Individual Performance"
5350
  msgstr ""
5351
 
5352
- #: languages/vue.php:156
5353
  msgid "See Your Top Conversion Sources and Focus on What's Working"
5354
  msgstr ""
5355
 
5356
- #: languages/vue.php:159
5357
  msgid "See The Time it Takes for Customers to Purchase"
5358
  msgstr ""
5359
 
5360
- #: languages/vue.php:162
5361
  msgid "See How Many Sessions are Needed for a Purchase"
5362
  msgstr ""
5363
 
5364
- #: languages/vue.php:165
5365
  msgid "See Which Authors Generate the Most Traffic"
5366
  msgstr ""
5367
 
5368
- #: languages/vue.php:168
5369
  msgid "See Which Post Types Perform Better"
5370
  msgstr ""
5371
 
5372
- #: languages/vue.php:171
5373
  msgid "See Which Categories are the Most Popular"
5374
  msgstr ""
5375
 
5376
- #: languages/vue.php:174
5377
  msgid "See Your Blog's Most Popular SEO Scores"
5378
  msgstr ""
5379
 
5380
- #: languages/vue.php:177
5381
  msgid "See Which Focus Keyword is Performing Better in Search Engines"
5382
  msgstr ""
5383
 
5384
- #: languages/vue.php:180
5385
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
5386
  msgstr ""
5387
 
5388
- #: languages/vue.php:183
5389
  msgid "See Your Top Converting Forms and Optimize"
5390
  msgstr ""
5391
 
5392
- #: languages/vue.php:186
5393
  msgid "See Your Forms Impressions Count to Find the Best Placement"
5394
  msgstr ""
5395
 
5396
- #: languages/vue.php:189
5397
  msgid "See Your Top Google Search Terms and Optimize Content"
5398
  msgstr ""
5399
 
5400
- #: languages/vue.php:192
5401
  msgid "See The Number of Clicks and Track Interests"
5402
  msgstr ""
5403
 
5404
- #: languages/vue.php:195
5405
  msgid "See The Click-Through-Ratio and Improve SEO"
5406
  msgstr ""
5407
 
5408
- #: languages/vue.php:198
5409
  msgid "See The Average Results Position and Focus on what works"
5410
  msgstr ""
5411
 
5412
- #: languages/vue.php:201
5413
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
5414
  msgstr ""
5415
 
5416
- #: languages/vue.php:204
5417
  msgid "See Your Top Pages Immediately After Making Changes"
5418
  msgstr ""
5419
 
5420
- #: languages/vue.php:207
5421
  msgid "See Your Top Referral Sources and Adapt Faster"
5422
  msgstr ""
5423
 
5424
- #: languages/vue.php:210
5425
  msgid "See Your Traffic Demographics"
5426
  msgstr ""
5427
 
5428
- #: languages/vue.php:213
5429
  msgid "Get Fresh Report Data Every 60 Seconds"
5430
  msgstr ""
5431
 
5432
- #: languages/vue.php:216
5433
  msgid "See Your Homepage's Overall Performance Score"
5434
  msgstr ""
5435
 
5436
- #: languages/vue.php:219
5437
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
5438
  msgstr ""
5439
 
5440
- #: languages/vue.php:222
5441
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
5442
  msgstr ""
5443
 
5444
- #: languages/vue.php:225
5445
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
5446
  msgstr ""
5447
 
5448
  #. Translators: Number of visitors.
5449
- #: languages/vue.php:229
5450
  msgid "See how %s visitors found your site!"
5451
  msgstr ""
5452
 
5453
  #. Translators: Number of visitors.
5454
- #: languages/vue.php:233
5455
  msgid "Your website was visited by %s users in the last 30 days."
5456
  msgstr ""
5457
 
5458
- #: languages/vue.php:236
5459
  msgid "See the full analytics report!"
5460
  msgstr ""
5461
 
5462
- #: languages/vue.php:239
5463
  msgid "Congratulations! "
5464
  msgstr ""
5465
 
5466
- #: languages/vue.php:242
5467
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5468
  msgstr ""
5469
 
5470
- #: languages/vue.php:249
5471
  msgid "Overview Report"
5472
  msgstr ""
5473
 
5474
- #: languages/vue.php:252
5475
  #: lite/includes/admin/welcome.php:56
5476
  #: lite/includes/admin/welcome.php:57
5477
  msgid "Welcome to MonsterInsights"
5478
  msgstr ""
5479
 
5480
- #: languages/vue.php:255
5481
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5482
  msgstr ""
5483
 
5484
- #: languages/vue.php:258
5485
  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."
5486
  msgstr ""
5487
 
5488
- #: languages/vue.php:261
5489
  msgid "Launch the Wizard!"
5490
  msgstr ""
5491
 
5492
- #: languages/vue.php:264
5493
  msgid "Read the Full Guide"
5494
  msgstr ""
5495
 
5496
- #: languages/vue.php:267
5497
  msgid "MonsterInsights Features & Addons"
5498
  msgstr ""
5499
 
5500
- #: languages/vue.php:270
5501
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5502
  msgstr ""
5503
 
5504
- #: languages/vue.php:273
5505
  msgid "See All Features"
5506
  msgstr ""
5507
 
5508
- #: languages/vue.php:276
5509
  msgid "Upgrade to PRO"
5510
  msgstr ""
5511
 
5512
- #: languages/vue.php:279
5513
  msgid "per year"
5514
  msgstr ""
5515
 
5516
- #: languages/vue.php:285
5517
  msgid "Testimonials"
5518
  msgstr ""
5519
 
5520
- #: languages/vue.php:288
5521
  msgid "Universal Tracking"
5522
  msgstr ""
5523
 
5524
- #: languages/vue.php:291
5525
  msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5526
  msgstr ""
5527
 
5528
- #: languages/vue.php:294
5529
  msgid "Google Analytics Dashboard"
5530
  msgstr ""
5531
 
5532
- #: languages/vue.php:297
5533
  msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
5534
  msgstr ""
5535
 
5536
- #: languages/vue.php:300
5537
  msgid "Real-time Stats"
5538
  msgstr ""
5539
 
5540
- #: languages/vue.php:303
5541
  msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
5542
  msgstr ""
5543
 
5544
- #: languages/vue.php:306
5545
  msgid "Enhanced Ecommerce Tracking"
5546
  msgstr ""
5547
 
5548
- #: languages/vue.php:309
5549
  msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
5550
  msgstr ""
5551
 
5552
- #: languages/vue.php:312
5553
  msgid "Page Level Analytics"
5554
  msgstr ""
5555
 
5556
- #: languages/vue.php:315
5557
  msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5558
  msgstr ""
5559
 
5560
- #: languages/vue.php:318
5561
  msgid "Affiliate Link & Ads Tracking"
5562
  msgstr ""
5563
 
5564
- #: languages/vue.php:321
5565
  msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5566
  msgstr ""
5567
 
5568
- #: languages/vue.php:324
5569
  msgid "EU Compliance (GDPR Friendly)"
5570
  msgstr ""
5571
 
5572
- #: languages/vue.php:327
5573
  msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5574
  msgstr ""
5575
 
5576
- #: languages/vue.php:330
5577
  msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
5578
  msgstr ""
5579
 
5580
- #: languages/vue.php:333
5581
  msgid "Ecommerce Report"
5582
  msgstr ""
5583
 
5584
- #: languages/vue.php:336
5585
  msgid "Form Conversions"
5586
  msgstr ""
5587
 
5588
- #: languages/vue.php:339
5589
  msgid "Custom Dimensions"
5590
  msgstr ""
5591
 
5592
- #: languages/vue.php:342
5593
  msgid "Author Tracking"
5594
  msgstr ""
5595
 
5596
- #: languages/vue.php:345
5597
  msgid "Google Optimize"
5598
  msgstr ""
5599
 
5600
- #: languages/vue.php:348
5601
  msgid "Category / Tags Tracking"
5602
  msgstr ""
5603
 
5604
- #: languages/vue.php:351
5605
  msgid "WooCommerce"
5606
  msgstr ""
5607
 
5608
- #: languages/vue.php:354
5609
  msgid "Easy Digital Downloads"
5610
  msgstr ""
5611
 
5612
- #: languages/vue.php:357
5613
  msgid "MemberPress"
5614
  msgstr ""
5615
 
5616
- #: languages/vue.php:360
5617
  msgid "LifterLMS"
5618
  msgstr ""
5619
 
5620
  #. Translators: Current PHP version and recommended PHP version.
5621
- #: languages/vue.php:364
5622
  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."
5623
  msgstr ""
5624
 
5625
  #. Translators: Current WordPress version.
5626
- #: languages/vue.php:368
5627
  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."
5628
  msgstr ""
5629
 
5630
- #: languages/vue.php:371
5631
  msgid "Yikes! PHP Update Required"
5632
  msgstr ""
5633
 
5634
  #. Translators: Current PHP version and recommended PHP version.
5635
- #: languages/vue.php:375
5636
  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."
5637
  msgstr ""
5638
 
5639
- #: languages/vue.php:378
5640
  msgid "Learn more about updating PHP"
5641
  msgstr ""
5642
 
5643
- #: languages/vue.php:381
5644
  msgid "Yikes! WordPress Update Required"
5645
  msgstr ""
5646
 
5647
  #. Translators: Current WordPress version.
5648
- #: languages/vue.php:385
5649
  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."
5650
  msgstr ""
5651
 
5652
- #: languages/vue.php:388
5653
  msgid "Learn more about updating WordPress"
5654
  msgstr ""
5655
 
5656
- #: languages/vue.php:391
5657
  msgid "MonsterInsights encountered an error loading your report data"
5658
  msgstr ""
5659
 
5660
- #: languages/vue.php:394
5661
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5662
  msgstr ""
5663
 
5664
- #: languages/vue.php:397
5665
  msgid "Reconnect MonsterInsights"
5666
  msgstr ""
5667
 
5668
- #: languages/vue.php:400
5669
  msgid "Re-Authenticating"
5670
  msgstr ""
5671
 
5672
- #: languages/vue.php:403
5673
  msgid "Ok"
5674
  msgstr ""
5675
 
5676
- #: languages/vue.php:406
5677
  msgid "See Quick Links"
5678
  msgstr ""
5679
 
5680
- #: languages/vue.php:409
5681
  msgid "Suggest a Feature"
5682
  msgstr ""
5683
 
5684
- #: languages/vue.php:412
5685
  msgid "Join Our Community"
5686
  msgstr ""
5687
 
5688
- #: languages/vue.php:415
5689
  msgid "Support & Docs"
5690
  msgstr ""
5691
 
5692
- #: languages/vue.php:418
5693
  msgid "Upgrade to Pro &#187;"
5694
  msgstr ""
5695
 
5696
  #. Translators: Placeholder is replaced with WPForms.
5697
- #: languages/vue.php:422
5698
  msgid "Recommended Plugin: %s"
5699
  msgstr ""
5700
 
5701
- #: languages/vue.php:425
5702
  msgid "Install"
5703
  msgstr ""
5704
 
5705
- #: languages/vue.php:428
5706
  msgid "Activate"
5707
  msgstr ""
5708
 
5709
- #: languages/vue.php:434
5710
  msgid "Powered by MonsterInsights"
5711
  msgstr ""
5712
 
5713
- #: languages/vue.php:437
5714
  #: lite/includes/admin/wp-site-health.php:253
5715
  msgid "View Reports"
5716
  msgstr ""
5717
 
5718
- #: languages/vue.php:440
5719
  msgid "Congratulations!"
5720
  msgstr ""
5721
 
5722
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5723
- #: languages/vue.php:444
5724
  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."
5725
  msgstr ""
5726
 
5727
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5728
- #: languages/vue.php:448
5729
  msgid "Onboarding Wizard"
5730
  msgstr ""
5731
 
5732
- #: languages/vue.php:451
5733
  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."
5734
  msgstr ""
5735
 
5736
- #: languages/vue.php:454
5737
  msgid "Save Changes"
5738
  msgstr ""
5739
 
5740
- #: languages/vue.php:457
5741
  msgid "Inbox"
5742
  msgstr ""
5743
 
5744
- #: languages/vue.php:460
5745
  msgid "Back to Inbox"
5746
  msgstr ""
5747
 
5748
- #: languages/vue.php:463
5749
  msgid "View Dismissed"
5750
  msgstr ""
5751
 
5752
- #: languages/vue.php:466
5753
  msgid "Notifications"
5754
  msgstr ""
5755
 
5756
- #: languages/vue.php:469
5757
  msgid "Dismiss All"
5758
  msgstr ""
5759
 
5760
- #: languages/vue.php:472
5761
  msgid "Dismissed"
5762
  msgstr ""
5763
 
5764
- #: languages/vue.php:475
5765
  msgid "No Notifications"
5766
  msgstr ""
5767
 
5768
- #: languages/vue.php:487
5769
  msgid "Import Export"
5770
  msgstr ""
5771
 
5772
- #: languages/vue.php:490
5773
  msgid "PrettyLinks Integration"
5774
  msgstr ""
5775
 
5776
- #: languages/vue.php:496
5777
  msgid "Getting Started"
5778
  msgstr ""
5779
 
5780
- #: languages/vue.php:499
5781
  msgid "Lite vs Pro"
5782
  msgstr ""
5783
 
5784
- #: languages/vue.php:505
5785
  msgid "Popular Posts Widget"
5786
  msgstr ""
5787
 
5788
- #: languages/vue.php:508
5789
  msgid "Popular Products"
5790
  msgstr ""
5791
 
5792
- #: languages/vue.php:514
5793
  msgid "Sub menu item for WooCommerce Analytics"
5794
  msgstr ""
5795
 
5796
- #: languages/vue.php:520
5797
  msgid "Engagement"
5798
  msgstr ""
5799
 
5800
- #: languages/vue.php:525
5801
  #: lite/includes/admin/reports/report-ecommerce.php:22
5802
  msgid "eCommerce"
5803
  msgstr ""
5804
 
5805
- #: languages/vue.php:528
5806
  msgid "Publisher"
5807
  msgstr ""
5808
 
5809
- #: languages/vue.php:531
5810
  msgid "Conversions"
5811
  msgstr ""
5812
 
5813
- #: languages/vue.php:534
5814
  msgid "Advanced"
5815
  msgstr ""
5816
 
5817
- #: languages/vue.php:537
5818
  msgid "URL Builder"
5819
  msgstr ""
5820
 
5821
- #: languages/vue.php:540
5822
  msgid "MonsterInsights Addons"
5823
  msgstr ""
5824
 
5825
- #: languages/vue.php:543
5826
  msgid "Search Addons"
5827
  msgstr ""
5828
 
5829
- #: languages/vue.php:546
5830
  msgid "Exit Setup"
5831
  msgstr ""
5832
 
5833
- #: languages/vue.php:549
5834
  msgid "You must connect with MonsterInsights before you can view reports."
5835
  msgstr ""
5836
 
5837
- #: languages/vue.php:552
5838
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5839
  msgstr ""
5840
 
5841
- #: languages/vue.php:555
5842
  msgid "Launch Setup Wizard"
5843
  msgstr ""
5844
 
5845
- #: languages/vue.php:558
5846
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
5847
  msgstr ""
5848
 
5849
- #: languages/vue.php:564
5850
  #: lite/includes/admin/reports/report-publisher.php:22
5851
  msgid "Publishers"
5852
  msgstr ""
5853
 
5854
- #: languages/vue.php:567
5855
  #: lite/includes/admin/reports/report-queries.php:22
5856
  msgid "Search Console"
5857
  msgstr ""
5858
 
5859
- #: languages/vue.php:570
5860
  #: lite/includes/admin/reports/report-dimensions.php:22
5861
  msgid "Dimensions"
5862
  msgstr ""
5863
 
5864
- #: languages/vue.php:573
5865
  #: lite/includes/admin/reports/report-forms.php:22
5866
  msgid "Forms"
5867
  msgstr ""
5868
 
5869
- #: languages/vue.php:576
5870
  msgid "Real-Time"
5871
  msgstr ""
5872
 
5873
- #: languages/vue.php:579
5874
  msgid "Site Speed"
5875
  msgstr ""
5876
 
5877
- #: languages/vue.php:582
5878
  msgid "2020 Year in Review"
5879
  msgstr ""
5880
 
5881
  #. Translators: Error status and error text.
5882
- #: languages/vue.php:586
5883
  msgid "Can't load report data. Error: %1$s, %2$s"
5884
  msgstr ""
5885
 
5886
- #: languages/vue.php:589
5887
  msgid "Error loading report data"
5888
  msgstr ""
5889
 
5890
- #: languages/vue.php:592
5891
  msgid "Publishers Report"
5892
  msgstr ""
5893
 
5894
- #: languages/vue.php:595
5895
  msgid "eCommerce Report"
5896
  msgstr ""
5897
 
5898
- #: languages/vue.php:598
5899
  msgid "Search Console Report"
5900
  msgstr ""
5901
 
5902
- #: languages/vue.php:601
5903
  msgid "Dimensions Report"
5904
  msgstr ""
5905
 
5906
- #: languages/vue.php:604
5907
  msgid "Forms Report"
5908
  msgstr ""
5909
 
5910
- #: languages/vue.php:607
5911
  msgid "Real-Time Report"
5912
  msgstr ""
5913
 
5914
- #: languages/vue.php:610
5915
  msgid "Site Speed Report"
5916
  msgstr ""
5917
 
5918
- #: languages/vue.php:613
5919
  msgid "Time to Purchase"
5920
  msgstr ""
5921
 
5922
- #: languages/vue.php:616
5923
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5924
  msgstr ""
5925
 
5926
- #: languages/vue.php:619
5927
  msgid "Sessions to Purchase"
5928
  msgstr ""
5929
 
5930
- #: languages/vue.php:622
5931
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5932
  msgstr ""
5933
 
5934
- #: languages/vue.php:625
5935
  msgid "New Customers"
5936
  msgstr ""
5937
 
5938
- #: languages/vue.php:628
5939
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5940
  msgstr ""
5941
 
5942
- #: languages/vue.php:631
5943
  msgid "Abandoned Checkouts"
5944
  msgstr ""
5945
 
5946
- #: languages/vue.php:634
5947
  msgid "This list shows the percentage of carts that never went through the checkout process."
5948
  msgstr ""
5949
 
5950
- #: languages/vue.php:637
5951
  msgid "Top Posts/Pages"
5952
  msgstr ""
5953
 
5954
- #: languages/vue.php:640
5955
  msgid "This list shows the most viewed posts and pages on your website."
5956
  msgstr ""
5957
 
5958
- #: languages/vue.php:643
5959
  msgid "New vs. Returning Visitors"
5960
  msgstr ""
5961
 
5962
- #: languages/vue.php:646
5963
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5964
  msgstr ""
5965
 
5966
- #: languages/vue.php:649
5967
  msgid "Device Breakdown"
5968
  msgstr ""
5969
 
5970
- #: languages/vue.php:652
5971
  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."
5972
  msgstr ""
5973
 
5974
- #: languages/vue.php:655
5975
  msgid "Top Landing Pages"
5976
  msgstr ""
5977
 
5978
- #: languages/vue.php:658
5979
  msgid "This list shows the top pages users first land on when visiting your website."
5980
  msgstr ""
5981
 
5982
- #: languages/vue.php:661
5983
  msgid "Top Exit Pages"
5984
  msgstr ""
5985
 
5986
- #: languages/vue.php:664
5987
  msgid "This list shows the top pages users exit your website from."
5988
  msgstr ""
5989
 
5990
- #: languages/vue.php:667
5991
  msgid "Top Outbound Links"
5992
  msgstr ""
5993
 
5994
- #: languages/vue.php:670
5995
  msgid "This list shows the top links clicked on your website that go to another website."
5996
  msgstr ""
5997
 
5998
- #: languages/vue.php:673
5999
  msgid "Top Affiliate Links"
6000
  msgstr ""
6001
 
6002
- #: languages/vue.php:676
6003
  msgid "This list shows the top affiliate links your visitors clicked on."
6004
  msgstr ""
6005
 
6006
- #: languages/vue.php:679
6007
  msgid "Top Download Links"
6008
  msgstr ""
6009
 
6010
- #: languages/vue.php:682
6011
  msgid "This list shows the download links your visitors clicked the most."
6012
  msgstr ""
6013
 
6014
- #: languages/vue.php:685
6015
  msgid "Top Products"
6016
  msgstr ""
6017
 
6018
- #: languages/vue.php:688
6019
  msgid "This list shows the top selling products on your website."
6020
  msgstr ""
6021
 
6022
- #: languages/vue.php:691
6023
  msgid "Top Conversion Sources"
6024
  msgstr ""
6025
 
6026
- #: languages/vue.php:694
6027
  msgid "This list shows the top referral websites in terms of product revenue."
6028
  msgstr ""
6029
 
6030
- #: languages/vue.php:697
6031
  msgid "Total Add/Remove"
6032
  msgstr ""
6033
 
6034
  #. Translators: Adds a link to documentation.
6035
- #: languages/vue.php:711
6036
  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"
6037
  msgstr ""
6038
 
6039
  #. Translators: Adds link to activate/install plugin and documentation.
6040
- #: languages/vue.php:715
6041
  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"
6042
  msgstr ""
6043
 
6044
  #. Translators: Adds a link to documentation.
6045
- #: languages/vue.php:719
6046
  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"
6047
  msgstr ""
6048
 
6049
  #. Translators: Adds link to activate/install plugin and documentation.
6050
- #: languages/vue.php:723
6051
  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"
6052
  msgstr ""
6053
 
6054
- #: languages/vue.php:726
6055
  msgid "GDPR Guide"
6056
  msgstr ""
6057
 
6058
- #: languages/vue.php:729
6059
  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. "
6060
  msgstr ""
6061
 
6062
- #: languages/vue.php:732
6063
  msgid "How to Install and Activate MonsterInsights Addons"
6064
  msgstr ""
6065
 
6066
- #: languages/vue.php:735
6067
  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."
6068
  msgstr ""
6069
 
6070
- #: languages/vue.php:738
6071
  msgid "Enabling eCommerce Tracking and Reports"
6072
  msgstr ""
6073
 
6074
- #: languages/vue.php:741
6075
  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."
6076
  msgstr ""
6077
 
6078
- #: languages/vue.php:744
6079
  msgid "Read Documentation"
6080
  msgstr ""
6081
 
6082
- #: languages/vue.php:747
6083
  msgid "Getting Started with MonsterInsights"
6084
  msgstr ""
6085
 
6086
- #: languages/vue.php:750
6087
  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."
6088
  msgstr ""
6089
 
6090
- #: languages/vue.php:753
6091
  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."
6092
  msgstr ""
6093
 
6094
- #: languages/vue.php:756
6095
  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!."
6096
  msgstr ""
6097
 
6098
- #: languages/vue.php:759
6099
  msgid "Launch the wizard!"
6100
  msgstr ""
6101
 
6102
- #: languages/vue.php:762
6103
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6104
  msgstr ""
6105
 
6106
  #. Translators: Makes text bold.
6107
- #: languages/vue.php:766
6108
  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."
6109
  msgstr ""
6110
 
6111
- #: languages/vue.php:769
6112
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
6113
  msgstr ""
6114
 
6115
- #: languages/vue.php:772
6116
  msgid "See your website analytics reports inside the WordPress dashboard"
6117
  msgstr ""
6118
 
6119
- #: languages/vue.php:775
6120
  msgid "Get real-time stats right inside WordPress"
6121
  msgstr ""
6122
 
6123
- #: languages/vue.php:778
6124
  msgid "1-click Google Analytics Enhanced eCommerce tracking"
6125
  msgstr ""
6126
 
6127
- #: languages/vue.php:781
6128
  msgid "Get detailed stats for each post and page."
6129
  msgstr ""
6130
 
6131
- #: languages/vue.php:784
6132
  msgid "Automatically track clicks on your affiliate links and ads."
6133
  msgstr ""
6134
 
6135
- #: languages/vue.php:787
6136
  msgid "Make Google Analytics GDPR compliant automatically"
6137
  msgstr ""
6138
 
6139
- #: languages/vue.php:790
6140
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6141
  msgstr ""
6142
 
6143
- #: languages/vue.php:793
6144
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6145
  msgstr ""
6146
 
6147
- #: languages/vue.php:796
6148
  msgid "More advanced features"
6149
  msgstr ""
6150
 
6151
- #: languages/vue.php:799
6152
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6153
  msgstr ""
6154
 
6155
  #. Translators: Makes text green.
6156
- #: languages/vue.php:803
6157
  msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6158
  msgstr ""
6159
 
6160
- #: languages/vue.php:806
6161
  msgid "How to Connect to Google Analytics"
6162
  msgstr ""
6163
 
6164
- #: languages/vue.php:809
6165
  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."
6166
  msgstr ""
6167
 
6168
- #: languages/vue.php:812
6169
  msgid "Guide and Checklist for Advanced Insights"
6170
  msgstr ""
6171
 
6172
- #: languages/vue.php:815
6173
  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."
6174
  msgstr ""
6175
 
6176
- #: languages/vue.php:818
6177
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6178
  msgstr ""
6179
 
6180
- #: languages/vue.php:821
6181
  msgid "WordPress Admin Area Reports"
6182
  msgstr ""
6183
 
6184
- #: languages/vue.php:824
6185
  msgid "Standard Reports"
6186
  msgstr ""
6187
 
6188
- #: languages/vue.php:827
6189
  msgid "Overview Reports for the last 30 days."
6190
  msgstr ""
6191
 
6192
- #: languages/vue.php:830
6193
  msgid "Advanced Reports"
6194
  msgstr ""
6195
 
6196
- #: languages/vue.php:833
6197
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6198
  msgstr ""
6199
 
6200
- #: languages/vue.php:836
6201
  msgid "Dashboard Widget"
6202
  msgstr ""
6203
 
6204
- #: languages/vue.php:839
6205
  msgid "Basic Widget"
6206
  msgstr ""
6207
 
6208
- #: languages/vue.php:842
6209
  msgid "Overview Report Synopsis"
6210
  msgstr ""
6211
 
6212
- #: languages/vue.php:845
6213
  msgid "Advanced Dashboard Widget"
6214
  msgstr ""
6215
 
6216
- #: languages/vue.php:848
6217
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6218
  msgstr ""
6219
 
6220
- #: languages/vue.php:854
6221
  msgid "Email Summaries"
6222
  msgstr ""
6223
 
6224
- #: languages/vue.php:857
6225
  msgid "Included"
6226
  msgstr ""
6227
 
6228
- #: languages/vue.php:860
6229
  msgid "Get weekly traffic reports directly in your inbox."
6230
  msgstr ""
6231
 
6232
- #: languages/vue.php:863
6233
  msgid "Publisher Reports"
6234
  msgstr ""
6235
 
6236
- #: languages/vue.php:866
6237
  msgid "Advanced Publisher Reports & Tracking"
6238
  msgstr ""
6239
 
6240
- #: languages/vue.php:869
6241
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6242
  msgstr ""
6243
 
6244
- #: languages/vue.php:875
6245
  msgid "Basic Options"
6246
  msgstr ""
6247
 
6248
- #: languages/vue.php:878
6249
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6250
  msgstr ""
6251
 
6252
- #: languages/vue.php:881
6253
  msgid "Dynamic Popular Posts & Popular Products"
6254
  msgstr ""
6255
 
6256
- #: languages/vue.php:884
6257
  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."
6258
  msgstr ""
6259
 
6260
- #: languages/vue.php:887
6261
  msgid "Not Available"
6262
  msgstr ""
6263
 
6264
- #: languages/vue.php:890
6265
  msgid "Complete Custom Dimensions Tracking"
6266
  msgstr ""
6267
 
6268
- #: languages/vue.php:893
6269
  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"
6270
  msgstr ""
6271
 
6272
- #: languages/vue.php:899
6273
  msgid "Limited Support"
6274
  msgstr ""
6275
 
6276
- #: languages/vue.php:902
6277
  msgid "Priority Support"
6278
  msgstr ""
6279
 
6280
- #: languages/vue.php:905
6281
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
6282
  msgstr ""
6283
 
6284
- #: languages/vue.php:908
6285
  msgid "Feature"
6286
  msgstr ""
6287
 
6288
- #: languages/vue.php:911
6289
  msgid "Lite"
6290
  msgstr ""
6291
 
6292
- #: languages/vue.php:914
6293
  msgid "Pro"
6294
  msgstr ""
6295
 
6296
- #: languages/vue.php:917
6297
  msgid "Custom Google Analytics Link Tracking"
6298
  msgstr ""
6299
 
6300
- #: languages/vue.php:920
6301
  msgid "Standard Tracking"
6302
  msgstr ""
6303
 
6304
- #: languages/vue.php:923
6305
  msgid "Advanced Tracking"
6306
  msgstr ""
6307
 
6308
- #: languages/vue.php:926
6309
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6310
  msgstr ""
6311
 
6312
- #: languages/vue.php:929
6313
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6314
  msgstr ""
6315
 
6316
- #: languages/vue.php:932
6317
  msgid "No-Code-Needed Tracking Features"
6318
  msgstr ""
6319
 
6320
- #: languages/vue.php:935
6321
  msgid "Basic Tracking Options"
6322
  msgstr ""
6323
 
6324
- #: languages/vue.php:938
6325
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6326
  msgstr ""
6327
 
6328
- #: languages/vue.php:941
6329
  msgid "Advanced Tracking Options"
6330
  msgstr ""
6331
 
6332
- #: languages/vue.php:944
6333
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6334
  msgstr ""
6335
 
6336
- #: languages/vue.php:947
6337
  msgid "eCommerce Tracking"
6338
  msgstr ""
6339
 
6340
- #: languages/vue.php:950
6341
  msgid "One-click Complete eCommerce tracking"
6342
  msgstr ""
6343
 
6344
- #: languages/vue.php:953
6345
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6346
  msgstr ""
6347
 
6348
- #: languages/vue.php:956
6349
  msgid "Forms Tracking"
6350
  msgstr ""
6351
 
6352
- #: languages/vue.php:959
6353
  msgid "One-click Form Events Tracking"
6354
  msgstr ""
6355
 
6356
- #: languages/vue.php:962
6357
  msgid "License Key"
6358
  msgstr ""
6359
 
6360
  #. Translators: Add link to retrieve license key from account.
6361
- #: languages/vue.php:966
6362
  msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6363
  msgstr ""
6364
 
6365
- #: languages/vue.php:969
6366
  msgid "Google Authentication"
6367
  msgstr ""
6368
 
6369
- #: languages/vue.php:972
6370
  msgid "Connect Google Analytics + WordPress"
6371
  msgstr ""
6372
 
6373
- #: languages/vue.php:975
6374
  msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
6375
  msgstr ""
6376
 
6377
- #: languages/vue.php:978
6378
  msgid "Miscellaneous"
6379
  msgstr ""
6380
 
6381
- #: languages/vue.php:981
6382
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6383
  msgstr ""
6384
 
6385
- #: languages/vue.php:984
6386
  msgid "Hide Announcements"
6387
  msgstr ""
6388
 
6389
- #: languages/vue.php:987
6390
  msgid "Setup Wizard"
6391
  msgstr ""
6392
 
6393
- #: languages/vue.php:990
6394
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6395
  msgstr ""
6396
 
6397
- #: languages/vue.php:993
6398
  msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
6399
  msgstr ""
6400
 
6401
- #: languages/vue.php:996
6402
  msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
6403
  msgstr ""
6404
 
6405
- #: languages/vue.php:999
6406
  msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
6407
  msgstr ""
6408
 
6409
- #: languages/vue.php:1002
6410
  msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
6411
  msgstr ""
6412
 
6413
- #: languages/vue.php:1005
6414
  msgid "Yup, we know a thing or two about building awesome products that customers love."
6415
  msgstr ""
6416
 
6417
- #: languages/vue.php:1008
6418
  msgid "The MonsterInsights Team"
6419
  msgstr ""
6420
 
6421
- #: languages/vue.php:1011
6422
  msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
6423
  msgstr ""
6424
 
6425
- #: languages/vue.php:1014
6426
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
6427
  msgstr ""
6428
 
6429
- #: languages/vue.php:1017
6430
  msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
6431
  msgstr ""
6432
 
6433
- #: languages/vue.php:1020
6434
  msgid "Over 200,000 websites use Pretty Links!"
6435
  msgstr ""
6436
 
6437
- #: languages/vue.php:1023
6438
  msgid "Install Pretty Links"
6439
  msgstr ""
6440
 
6441
- #: languages/vue.php:1026
6442
  msgid "Pretty Links Installed & Activated"
6443
  msgstr ""
6444
 
6445
- #: languages/vue.php:1029
6446
  msgid "Download Pretty Links"
6447
  msgstr ""
6448
 
6449
- #: languages/vue.php:1032
6450
  msgid "Install Pretty Links from the WordPress.org plugin repository."
6451
  msgstr ""
6452
 
6453
- #: languages/vue.php:1035
6454
  msgid "Activate Pretty Links"
6455
  msgstr ""
6456
 
6457
- #: languages/vue.php:1038
6458
  msgid "Activating Pretty Links..."
6459
  msgstr ""
6460
 
6461
- #: languages/vue.php:1041
6462
  msgid "Create New Pretty Link"
6463
  msgstr ""
6464
 
6465
- #: languages/vue.php:1044
6466
  msgid "Create a New Pretty Link"
6467
  msgstr ""
6468
 
6469
- #: languages/vue.php:1047
6470
  msgid "Grab your campaign link and paste it into the Target URL field."
6471
  msgstr ""
6472
 
6473
- #: languages/vue.php:1050
6474
  msgid "Custom Campaign Parameters"
6475
  msgstr ""
6476
 
6477
- #: languages/vue.php:1053
6478
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
6479
  msgstr ""
6480
 
6481
- #: languages/vue.php:1056
6482
  msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content."
6483
  msgstr ""
6484
 
6485
  #. Translators: Marks the field as required.
6486
- #: languages/vue.php:1060
6487
  msgid "Website URL %s"
6488
  msgstr ""
6489
 
6490
  #. Translators: Display the current website url in italic.
6491
- #: languages/vue.php:1064
6492
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
6493
  msgstr ""
6494
 
6495
  #. Translators: Marks the field as required.
6496
- #: languages/vue.php:1068
6497
  msgid "Campaign Source %s"
6498
  msgstr ""
6499
 
6500
  #. Translators: Make the text italic.
6501
- #: languages/vue.php:1072
6502
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
6503
  msgstr ""
6504
 
6505
  #. Translators: Make the text italic.
6506
- #: languages/vue.php:1076
6507
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
6508
  msgstr ""
6509
 
6510
  #. Translators: Make the text italic.
6511
- #: languages/vue.php:1080
6512
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
6513
  msgstr ""
6514
 
6515
- #: languages/vue.php:1083
6516
  msgid "Enter the paid keyword"
6517
  msgstr ""
6518
 
6519
- #: languages/vue.php:1086
6520
  msgid "Enter something to differentiate ads"
6521
  msgstr ""
6522
 
6523
- #: languages/vue.php:1089
6524
  msgid "Use Fragment"
6525
  msgstr ""
6526
 
6527
  #. Translators: Make the text bold.
6528
- #: languages/vue.php:1093
6529
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
6530
  msgstr ""
6531
 
6532
- #: languages/vue.php:1096
6533
  msgid "URL to use"
6534
  msgstr ""
6535
 
6536
- #: languages/vue.php:1099
6537
  msgid "(Updates automatically)"
6538
  msgstr ""
6539
 
6540
- #: languages/vue.php:1102
6541
  msgid "Copy to Clipboard"
6542
  msgstr ""
6543
 
6544
- #: languages/vue.php:1105
6545
  msgid "Copy to Pretty Links"
6546
  msgstr ""
6547
 
6548
- #: languages/vue.php:1108
6549
  msgid "Make your campaign links prettier!"
6550
  msgstr ""
6551
 
6552
- #: languages/vue.php:1111
6553
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
6554
  msgstr ""
6555
 
6556
- #: languages/vue.php:1114
6557
  msgid "More Information & Examples"
6558
  msgstr ""
6559
 
6560
- #: languages/vue.php:1117
6561
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
6562
  msgstr ""
6563
 
6564
- #: languages/vue.php:1120
6565
  msgid "Campaign Source"
6566
  msgstr ""
6567
 
6568
- #: languages/vue.php:1123
6569
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
6570
  msgstr ""
6571
 
6572
- #: languages/vue.php:1126
6573
  msgid "Campaign Medium"
6574
  msgstr ""
6575
 
6576
- #: languages/vue.php:1129
6577
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
6578
  msgstr ""
6579
 
6580
- #: languages/vue.php:1132
6581
  msgid "Campaign Name"
6582
  msgstr ""
6583
 
6584
- #: languages/vue.php:1135
6585
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
6586
  msgstr ""
6587
 
6588
- #: languages/vue.php:1138
6589
  msgid "Campaign Term"
6590
  msgstr ""
6591
 
6592
- #: languages/vue.php:1141
6593
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
6594
  msgstr ""
6595
 
6596
- #: languages/vue.php:1144
6597
  msgid "Campaign Content"
6598
  msgstr ""
6599
 
6600
- #: languages/vue.php:1147
6601
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
6602
  msgstr ""
6603
 
6604
  #. Translators: Example.
6605
- #: languages/vue.php:1151
6606
  msgid "Example: %s"
6607
  msgstr ""
6608
 
6609
  #. Translators: Examples.
6610
- #: languages/vue.php:1155
6611
  msgid "Examples: %s"
6612
  msgstr ""
6613
 
6614
- #: languages/vue.php:1158
6615
  msgid "About Campaigns"
6616
  msgstr ""
6617
 
6618
- #: languages/vue.php:1161
6619
  msgid "About Custom Campaigns"
6620
  msgstr ""
6621
 
6622
- #: languages/vue.php:1164
6623
  msgid "Best Practices for Creating Custom Campaigns"
6624
  msgstr ""
6625
 
6626
- #: languages/vue.php:1167
6627
  msgid "About the Referral Traffic Report"
6628
  msgstr ""
6629
 
6630
- #: languages/vue.php:1170
6631
  msgid "About Traffic Source Dimensions"
6632
  msgstr ""
6633
 
6634
- #: languages/vue.php:1173
6635
  msgid "AdWords Auto-Tagging"
6636
  msgstr ""
6637
 
6638
- #: languages/vue.php:1176
6639
  msgid "Additional Information"
6640
  msgstr ""
6641
 
6642
- #: languages/vue.php:1179
6643
  msgid "Import/Export"
6644
  msgstr ""
6645
 
6646
- #: languages/vue.php:1182
6647
  msgid "Import"
6648
  msgstr ""
6649
 
6650
- #: languages/vue.php:1185
6651
  msgid "Import settings from another MonsterInsights website."
6652
  msgstr ""
6653
 
6654
- #: languages/vue.php:1188
6655
  msgid "Export"
6656
  msgstr ""
6657
 
6658
- #: languages/vue.php:1191
6659
  msgid "Export settings to import into another MonsterInsights install."
6660
  msgstr ""
6661
 
6662
- #: languages/vue.php:1194
6663
  msgid "Import Settings"
6664
  msgstr ""
6665
 
6666
- #: languages/vue.php:1197
6667
  msgid "Export Settings"
6668
  msgstr ""
6669
 
6670
- #: languages/vue.php:1200
6671
  msgid "Please choose a file to import"
6672
  msgstr ""
6673
 
6674
- #: languages/vue.php:1203
6675
  msgid "Click Choose file below to select the settings export file from another site."
6676
  msgstr ""
6677
 
6678
- #: languages/vue.php:1206
6679
  msgid "Use the button below to export a file with your MonsterInsights settings."
6680
  msgstr ""
6681
 
6682
- #: languages/vue.php:1209
6683
  msgid "Uploading file..."
6684
  msgstr ""
6685
 
6686
- #: languages/vue.php:1212
6687
  msgid "File imported"
6688
  msgstr ""
6689
 
6690
- #: languages/vue.php:1215
6691
  msgid "Settings successfully updated!"
6692
  msgstr ""
6693
 
6694
- #: languages/vue.php:1218
6695
  msgid "Error importing settings"
6696
  msgstr ""
6697
 
6698
- #: languages/vue.php:1221
6699
  msgid "Please choose a .json file generated by a MonsterInsights settings export."
6700
  msgstr ""
6701
 
6702
- #: languages/vue.php:1224
6703
  msgid "MonsterInsights Recommends WPForms"
6704
  msgstr ""
6705
 
6706
- #: languages/vue.php:1227
6707
  msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
6708
  msgstr ""
6709
 
6710
- #: languages/vue.php:1230
6711
  msgid "Used on over 4,000,000 websites!"
6712
  msgstr ""
6713
 
6714
- #: languages/vue.php:1233
6715
  msgid "WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!"
6716
  msgstr ""
6717
 
6718
- #: languages/vue.php:1236
6719
  msgid "Skip this Step"
6720
  msgstr ""
6721
 
6722
- #: languages/vue.php:1239
6723
  msgid "Continue & Install WPForms"
6724
  msgstr ""
6725
 
6726
- #: languages/vue.php:1242
6727
  msgid "Installing..."
6728
  msgstr ""
6729
 
6730
- #: languages/vue.php:1245
6731
  msgid "Show in widget mode"
6732
  msgstr ""
6733
 
6734
- #: languages/vue.php:1248
6735
  msgid "Show in full-width mode"
6736
  msgstr ""
6737
 
6738
- #: languages/vue.php:1254
6739
  msgid "Installing Addon"
6740
  msgstr ""
6741
 
6742
- #: languages/vue.php:1257
6743
  msgid "Activating Addon"
6744
  msgstr ""
6745
 
6746
- #: languages/vue.php:1260
6747
  msgid "Addon Activated"
6748
  msgstr ""
6749
 
6750
- #: languages/vue.php:1263
6751
  msgid "Loading report data"
6752
  msgstr ""
6753
 
6754
- #: languages/vue.php:1266
6755
  msgid "Please activate manually"
6756
  msgstr ""
6757
 
6758
  #. Translators: Adds the error status and status text.
6759
- #: languages/vue.php:1270
6760
  msgid "Error: %1$s, %2$s"
6761
  msgstr ""
6762
 
6763
- #: languages/vue.php:1273
6764
  msgid "Error Activating Addon"
6765
  msgstr ""
6766
 
6767
- #: languages/vue.php:1276
6768
  #: lite/includes/admin/wp-site-health.php:372
6769
  #: lite/includes/admin/wp-site-health.php:398
6770
  #: lite/includes/admin/wp-site-health.php:425
6771
  msgid "View Addons"
6772
  msgstr ""
6773
 
6774
- #: languages/vue.php:1279
6775
  msgid "Dismiss"
6776
  msgstr ""
6777
 
6778
- #: languages/vue.php:1282
6779
  msgid "Redirecting"
6780
  msgstr ""
6781
 
6782
- #: languages/vue.php:1285
6783
  msgid "Please wait"
6784
  msgstr ""
6785
 
6786
- #: languages/vue.php:1288
6787
  msgid "activate"
6788
  msgstr ""
6789
 
6790
- #: languages/vue.php:1291
6791
  msgid "install"
6792
  msgstr ""
6793
 
6794
- #: languages/vue.php:1294
6795
  msgid "Visit addons page"
6796
  msgstr ""
6797
 
6798
- #: languages/vue.php:1297
6799
  msgid "Report Unavailable"
6800
  msgstr ""
6801
 
6802
  #. Translators: Install/Activate the addon.
6803
- #: languages/vue.php:1301
6804
  msgid "%s Addon"
6805
  msgstr ""
6806
 
6807
- #: languages/vue.php:1304
6808
  msgid "Go Back To Reports"
6809
  msgstr ""
6810
 
6811
- #: languages/vue.php:1307
6812
  msgid "Enable Enhanced eCommerce"
6813
  msgstr ""
6814
 
6815
  #. Translators: Placeholders are used for making text bold and adding a link.
6816
- #: languages/vue.php:1311
6817
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6818
  msgstr ""
6819
 
6820
- #: languages/vue.php:1314
6821
  msgid "Last 30 Days Insights for:"
6822
  msgstr ""
6823
 
6824
- #: languages/vue.php:1317
6825
  msgid "Your Website"
6826
  msgstr ""
6827
 
6828
- #: languages/vue.php:1320
6829
  msgid "Sessions"
6830
  msgstr ""
6831
 
6832
- #: languages/vue.php:1323
6833
  msgid "Pageviews"
6834
  msgstr ""
6835
 
6836
- #: languages/vue.php:1326
6837
  msgid "Avg. Duration"
6838
  msgstr ""
6839
 
6840
- #: languages/vue.php:1329
6841
  msgid "Bounce Rate"
6842
  msgstr ""
6843
 
6844
- #: languages/vue.php:1332
6845
  msgid "Total Users"
6846
  msgstr ""
6847
 
6848
- #: languages/vue.php:1335
6849
  msgid "More data is available"
6850
  msgstr ""
6851
 
6852
- #: languages/vue.php:1338
6853
  msgid "Want to see page-specific stats?"
6854
  msgstr ""
6855
 
6856
- #: languages/vue.php:1341
6857
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6858
  msgstr ""
6859
 
6860
- #: languages/vue.php:1344
6861
  msgid "No addons found."
6862
  msgstr ""
6863
 
6864
- #: languages/vue.php:1347
6865
  msgid "Refresh Addons"
6866
  msgstr ""
6867
 
6868
- #: languages/vue.php:1350
6869
  msgid "Refreshing Addons"
6870
  msgstr ""
6871
 
6872
  #. Translators: Make text green.
6873
- #: languages/vue.php:1354
6874
  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!"
6875
  msgstr ""
6876
 
6877
- #: languages/vue.php:1357
6878
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
6879
  msgstr ""
6880
 
6881
- #: languages/vue.php:1360
6882
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
6883
  msgstr ""
6884
 
6885
- #: languages/vue.php:1363
6886
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
6887
  msgstr ""
6888
 
6889
- #: languages/vue.php:1366
6890
  msgid "See All Your Important Store Metrics in One Place"
6891
  msgstr ""
6892
 
6893
- #: languages/vue.php:1369
6894
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
6895
  msgstr ""
6896
 
6897
- #: languages/vue.php:1372
6898
  msgid "ONE-CLICK INTEGRATIONS"
6899
  msgstr ""
6900
 
6901
- #: languages/vue.php:1375
6902
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
6903
  msgstr ""
6904
 
6905
- #: languages/vue.php:1378
6906
  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."
6907
  msgstr ""
6908
 
6909
- #: languages/vue.php:1381
6910
  msgid "Affiliate Tracking"
6911
  msgstr ""
6912
 
6913
- #: languages/vue.php:1384
6914
  msgid "Automatically Track Affiliate Sales"
6915
  msgstr ""
6916
 
6917
- #: languages/vue.php:1387
6918
  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."
6919
  msgstr ""
6920
 
6921
- #: languages/vue.php:1390
6922
  msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
6923
  msgstr ""
6924
 
6925
- #: languages/vue.php:1399
6926
  msgid "Cart Funnel"
6927
  msgstr ""
6928
 
6929
- #: languages/vue.php:1402
6930
  msgid "Customer Insights"
6931
  msgstr ""
6932
 
6933
- #: languages/vue.php:1405
6934
  msgid "Campaign Measurement"
6935
  msgstr ""
6936
 
6937
- #: languages/vue.php:1408
6938
  msgid "Customer Profiles"
6939
  msgstr ""
6940
 
6941
- #: languages/vue.php:1411
6942
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6943
  msgstr ""
6944
 
6945
- #: languages/vue.php:1414
6946
  msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
6947
  msgstr ""
6948
 
6949
- #: languages/vue.php:1417
6950
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
6951
  msgstr ""
6952
 
6953
- #: languages/vue.php:1420
6954
  msgid "Track all-new metrics!"
6955
  msgstr ""
6956
 
6957
- #: languages/vue.php:1423
6958
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6959
  msgstr ""
6960
 
6961
- #: languages/vue.php:1426
6962
  msgid "FEATURES"
6963
  msgstr ""
6964
 
6965
- #: languages/vue.php:1429
6966
  msgid "Get The Unique Metrics Neccessary for Growth"
6967
  msgstr ""
6968
 
6969
- #: languages/vue.php:1432
6970
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6971
  msgstr ""
6972
 
6973
- #: languages/vue.php:1435
6974
  msgid "Get Answers to the important questions %1$syou should know."
6975
  msgstr ""
6976
 
6977
- #: languages/vue.php:1438
6978
  msgid "Did the login/registration step of the checkout put users off?"
6979
  msgstr ""
6980
 
6981
- #: languages/vue.php:1441
6982
  msgid "Which ad campaign is driving the most revenue?"
6983
  msgstr ""
6984
 
6985
- #: languages/vue.php:1444
6986
  msgid "Who is my typical customer?"
6987
  msgstr ""
6988
 
6989
- #: languages/vue.php:1447
6990
  msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
6991
  msgstr ""
6992
 
6993
  #. Translators: placeholders make text small.
6994
- #: languages/vue.php:1452
6995
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
6996
  msgstr ""
6997
 
6998
  #. Translators: placeholders make text small.
6999
- #: languages/vue.php:1457
7000
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
7001
  msgstr ""
7002
 
7003
  #. Translators: placeholders make text small.
7004
- #: languages/vue.php:1462
7005
  msgid "None %1$s- Manually update everything.%2$s"
7006
  msgstr ""
7007
 
7008
- #: languages/vue.php:1466
7009
  msgid "Automatic Updates"
7010
  msgstr ""
7011
 
7012
- #: languages/vue.php:1469
7013
  msgid "Awesome, You're All Set!"
7014
  msgstr ""
7015
 
7016
- #: languages/vue.php:1472
7017
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
7018
  msgstr ""
7019
 
7020
  #. Translators: Make text bold.
7021
- #: languages/vue.php:1476
7022
  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."
7023
  msgstr ""
7024
 
7025
  #. Translators: Link to our blog.
7026
- #: languages/vue.php:1480
7027
  msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
7028
  msgstr ""
7029
 
7030
- #: languages/vue.php:1483
7031
  msgid "Finish Setup & Exit Wizard"
7032
  msgstr ""
7033
 
7034
- #: languages/vue.php:1486
7035
  msgid "Checking your website..."
7036
  msgstr ""
7037
 
7038
- #: languages/vue.php:1489
7039
  msgid "See All Reports"
7040
  msgstr ""
7041
 
7042
- #: languages/vue.php:1492
7043
  msgid "Go to the Analytics Dashboard"
7044
  msgstr ""
7045
 
7046
  #. Translators: Placeholder adds a line break.
7047
- #: languages/vue.php:1496
7048
  msgid "Unique %s Sessions"
7049
  msgstr ""
7050
 
7051
- #. Translators: Number of unique pageviews.
7052
- #: languages/vue.php:1500
7053
  msgid "Unique %s Pageviews"
7054
  msgstr ""
7055
 
7056
- #: languages/vue.php:1503
7057
  msgid "A session is the browsing session of a single user to your site."
7058
  msgstr ""
7059
 
7060
- #: languages/vue.php:1506
7061
  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."
7062
  msgstr ""
7063
 
7064
- #: languages/vue.php:1509
7065
  msgid "Total duration of all sessions (in seconds) / number of sessions."
7066
  msgstr ""
7067
 
7068
- #: languages/vue.php:1512
7069
  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."
7070
  msgstr ""
7071
 
7072
- #: languages/vue.php:1515
7073
  msgid "The number of distinct tracked users"
7074
  msgstr ""
7075
 
7076
- #: languages/vue.php:1518
7077
  msgid "Avg. Session Duration"
7078
  msgstr ""
7079
 
7080
- #: languages/vue.php:1521
7081
  msgid "Still Calculating..."
7082
  msgstr ""
7083
 
7084
- #: languages/vue.php:1524
7085
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7086
  msgstr ""
7087
 
7088
- #: languages/vue.php:1527
7089
  msgid "Back to Overview Report"
7090
  msgstr ""
7091
 
7092
- #: languages/vue.php:1530
7093
  msgid "Your 2020 Analytics Report"
7094
  msgstr ""
7095
 
7096
- #: languages/vue.php:1533
7097
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7098
  msgstr ""
7099
 
7100
- #: languages/vue.php:1536
7101
  msgid "Audience"
7102
  msgstr ""
7103
 
7104
- #: languages/vue.php:1539
7105
  msgid "Congrats"
7106
  msgstr ""
7107
 
7108
- #: languages/vue.php:1542
7109
  msgid "Your website was quite popular this year! "
7110
  msgstr ""
7111
 
7112
- #: languages/vue.php:1545
7113
  msgid "You had "
7114
  msgstr ""
7115
 
7116
- #: languages/vue.php:1548
7117
  msgid " visitors!"
7118
  msgstr ""
7119
 
7120
- #: languages/vue.php:1551
7121
  msgid " visitors"
7122
  msgstr ""
7123
 
7124
- #: languages/vue.php:1554
7125
  msgid "Total Visitors"
7126
  msgstr ""
7127
 
7128
- #: languages/vue.php:1557
7129
  msgid "Total Sessions"
7130
  msgstr ""
7131
 
7132
- #: languages/vue.php:1560
7133
  msgid "Visitors by Month"
7134
  msgstr ""
7135
 
7136
- #: languages/vue.php:1563
7137
  msgid "January 1, 2020 - December 31, 2020"
7138
  msgstr ""
7139
 
7140
- #: languages/vue.php:1566
7141
  msgid "A Tip for 2021"
7142
  msgstr ""
7143
 
7144
- #: languages/vue.php:1569
7145
  msgid "Demographics"
7146
  msgstr ""
7147
 
7148
- #: languages/vue.php:1572
7149
  msgid "#1"
7150
  msgstr ""
7151
 
7152
- #: languages/vue.php:1575
7153
  msgid "You Top 5 Countries"
7154
  msgstr ""
7155
 
7156
- #: languages/vue.php:1578
7157
  msgid "Let’s get to know your visitors a little better, shall we?"
7158
  msgstr ""
7159
 
7160
- #: languages/vue.php:1581
7161
  msgid "Gender"
7162
  msgstr ""
7163
 
7164
- #: languages/vue.php:1584
7165
  msgid "Female"
7166
  msgstr ""
7167
 
7168
- #: languages/vue.php:1587
7169
  msgid "Women"
7170
  msgstr ""
7171
 
7172
- #: languages/vue.php:1590
7173
  msgid "Male"
7174
  msgstr ""
7175
 
7176
- #: languages/vue.php:1593
7177
  msgid "Average Age"
7178
  msgstr ""
7179
 
7180
- #: languages/vue.php:1596
7181
  msgid "Behavior"
7182
  msgstr ""
7183
 
7184
- #: languages/vue.php:1599
7185
  msgid "Your Top 5 Pages"
7186
  msgstr ""
7187
 
7188
- #: languages/vue.php:1602
7189
  msgid "Time Spent on Site"
7190
  msgstr ""
7191
 
7192
- #: languages/vue.php:1605
7193
  msgid "minutes"
7194
  msgstr ""
7195
 
7196
- #: languages/vue.php:1608
7197
  msgid "Device Type"
7198
  msgstr ""
7199
 
7200
- #: languages/vue.php:1611
7201
  msgid "A Tip For 2021"
7202
  msgstr ""
7203
 
7204
- #: languages/vue.php:1614
7205
  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."
7206
  msgstr ""
7207
 
7208
- #: languages/vue.php:1617
7209
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
7210
  msgstr ""
7211
 
7212
- #: languages/vue.php:1620
7213
  msgid "So, where did all of these visitors come from?"
7214
  msgstr ""
7215
 
7216
- #: languages/vue.php:1623
7217
  msgid "Clicks"
7218
  msgstr ""
7219
 
7220
- #: languages/vue.php:1626
7221
  msgid "Your Top 5 Keywords"
7222
  msgstr ""
7223
 
7224
- #: languages/vue.php:1629
7225
  msgid "What keywords visitors searched for to find your site"
7226
  msgstr ""
7227
 
7228
- #: languages/vue.php:1632
7229
  msgid "Your Top 5 Referrals"
7230
  msgstr ""
7231
 
7232
- #: languages/vue.php:1635
7233
  msgid "The websites that link back to your website"
7234
  msgstr ""
7235
 
7236
- #: languages/vue.php:1638
7237
  msgid "Opportunity"
7238
  msgstr ""
7239
 
7240
- #: languages/vue.php:1641
7241
  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."
7242
  msgstr ""
7243
 
7244
- #: languages/vue.php:1644
7245
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
7246
  msgstr ""
7247
 
7248
- #: languages/vue.php:1647
7249
  msgid "Thank you for using MonsterInsights!"
7250
  msgstr ""
7251
 
7252
- #: languages/vue.php:1650
7253
  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."
7254
  msgstr ""
7255
 
7256
- #: languages/vue.php:1653
7257
  msgid "Here's to an amazing 2021!"
7258
  msgstr ""
7259
 
7260
- #: languages/vue.php:1656
7261
  msgid "Enjoying MonsterInsights"
7262
  msgstr ""
7263
 
7264
- #: languages/vue.php:1659
7265
  msgid "Leave a five star review!"
7266
  msgstr ""
7267
 
7268
- #: languages/vue.php:1662
7269
  msgid "Syed Balkhi"
7270
  msgstr ""
7271
 
7272
- #: languages/vue.php:1665
7273
  msgid "Chris Christoff"
7274
  msgstr ""
7275
 
7276
- #: languages/vue.php:1668
7277
  msgid "Write Review"
7278
  msgstr ""
7279
 
7280
- #: languages/vue.php:1671
7281
  msgid "Did you know over 10 million websites use our plugins?"
7282
  msgstr ""
7283
 
7284
- #: languages/vue.php:1674
7285
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7286
  msgstr ""
7287
 
7288
- #: languages/vue.php:1677
7289
  msgid "Join our Communities!"
7290
  msgstr ""
7291
 
7292
- #: languages/vue.php:1680
7293
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7294
  msgstr ""
7295
 
7296
- #: languages/vue.php:1683
7297
  msgid "Facebook Group"
7298
  msgstr ""
7299
 
7300
- #: languages/vue.php:1686
7301
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7302
  msgstr ""
7303
 
7304
- #: languages/vue.php:1689
7305
  msgid "Join Now...It’s Free!"
7306
  msgstr ""
7307
 
7308
- #: languages/vue.php:1692
7309
  msgid "WordPress Tutorials by WPBeginner"
7310
  msgstr ""
7311
 
7312
- #: languages/vue.php:1695
7313
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7314
  msgstr ""
7315
 
7316
- #: languages/vue.php:1698
7317
  msgid "Visit WPBeginner"
7318
  msgstr ""
7319
 
7320
- #: languages/vue.php:1701
7321
  msgid "Follow Us!"
7322
  msgstr ""
7323
 
7324
- #: languages/vue.php:1704
7325
  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."
7326
  msgstr ""
7327
 
7328
- #: languages/vue.php:1707
7329
  msgid "Copyright MonsterInsights, 2021"
7330
  msgstr ""
7331
 
7332
- #: languages/vue.php:1710
7333
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
7334
  msgstr ""
7335
 
7336
- #: languages/vue.php:1713
7337
  msgid "January"
7338
  msgstr ""
7339
 
7340
- #: languages/vue.php:1716
7341
  msgid "February"
7342
  msgstr ""
7343
 
7344
- #: languages/vue.php:1719
7345
  msgid "March"
7346
  msgstr ""
7347
 
7348
- #: languages/vue.php:1722
7349
  msgid "April"
7350
  msgstr ""
7351
 
7352
- #: languages/vue.php:1725
7353
  msgid "May"
7354
  msgstr ""
7355
 
7356
- #: languages/vue.php:1728
7357
  msgid "June"
7358
  msgstr ""
7359
 
7360
- #: languages/vue.php:1731
7361
  msgid "July"
7362
  msgstr ""
7363
 
7364
- #: languages/vue.php:1734
7365
  msgid "August"
7366
  msgstr ""
7367
 
7368
- #: languages/vue.php:1737
7369
  msgid "September"
7370
  msgstr ""
7371
 
7372
- #: languages/vue.php:1740
7373
  msgid "October"
7374
  msgstr ""
7375
 
7376
- #: languages/vue.php:1743
7377
  msgid "November"
7378
  msgstr ""
7379
 
7380
- #: languages/vue.php:1746
7381
  msgid "December"
7382
  msgstr ""
7383
 
7384
  #. Translators: Number of visitors.
7385
- #: languages/vue.php:1750
7386
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7387
  msgstr ""
7388
 
7389
- #: languages/vue.php:1753
7390
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7391
  msgstr ""
7392
 
7393
  #. Translators: Number of visitors.
7394
- #: languages/vue.php:1757
7395
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7396
  msgstr ""
7397
 
7398
  #. Translators: Number of visitors.
7399
- #: languages/vue.php:1761
7400
  msgid "%s Visitors"
7401
  msgstr ""
7402
 
7403
  #. Translators: Percent and Number of visitors.
7404
- #: languages/vue.php:1765
7405
  msgid "%1$s&#37 of your visitors were %2$s"
7406
  msgstr ""
7407
 
7408
  #. Translators: Number of visitors and their age.
7409
- #: languages/vue.php:1769
7410
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7411
  msgstr ""
7412
 
7413
- #: languages/vue.php:1772
7414
  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>"
7415
  msgstr ""
7416
 
7417
  #. Translators: Number of minutes spent on site.
7418
- #: languages/vue.php:1776
7419
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7420
  msgstr ""
7421
 
7422
  #. Translators: Name of device type.
7423
- #: languages/vue.php:1780
7424
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7425
  msgstr ""
7426
 
7427
  #. Translators: Number of visitors and device percentage.
7428
- #: languages/vue.php:1784
7429
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7430
  msgstr ""
7431
 
7432
- #: languages/vue.php:1787
7433
  msgid "Desktop"
7434
  msgstr ""
7435
 
7436
- #: languages/vue.php:1790
7437
  msgid "Tablet"
7438
  msgstr ""
7439
 
7440
- #: languages/vue.php:1793
7441
  msgid "Mobile"
7442
  msgstr ""
7443
 
7444
- #: languages/vue.php:1796
7445
  msgid "Right Now"
7446
  msgstr ""
7447
 
7448
- #: languages/vue.php:1799
7449
  msgid "Active users on site"
7450
  msgstr ""
7451
 
7452
- #: languages/vue.php:1802
7453
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
7454
  msgstr ""
7455
 
7456
- #: languages/vue.php:1805
7457
  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."
7458
  msgstr ""
7459
 
7460
- #: languages/vue.php:1808
7461
  msgid "The real-time report automatically updates approximately every 60 seconds."
7462
  msgstr ""
7463
 
7464
  #. Translators: Number of seconds that have passed since the report was refreshed.
7465
- #: languages/vue.php:1812
7466
  msgid "The real-time report was last updated %s seconds ago."
7467
  msgstr ""
7468
 
7469
- #: languages/vue.php:1815
7470
  msgid "The latest data will be automatically shown on this page when it becomes available."
7471
  msgstr ""
7472
 
7473
- #: languages/vue.php:1818
7474
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
7475
  msgstr ""
7476
 
7477
- #: languages/vue.php:1821
7478
  msgid "Pageviews Per Minute"
7479
  msgstr ""
7480
 
7481
- #: languages/vue.php:1824
7482
  msgid "Top Pages"
7483
  msgstr ""
7484
 
7485
- #: languages/vue.php:1827
7486
  msgid "No pageviews currently."
7487
  msgstr ""
7488
 
7489
- #: languages/vue.php:1830
7490
  msgid "Page"
7491
  msgstr ""
7492
 
7493
- #: languages/vue.php:1833
7494
  msgid "Pageview Count"
7495
  msgstr ""
7496
 
7497
- #: languages/vue.php:1836
7498
  msgid "Percent of Total"
7499
  msgstr ""
7500
 
7501
- #: languages/vue.php:1839
7502
  msgid "This is the number of active users currently on your site."
7503
  msgstr ""
7504
 
7505
- #: languages/vue.php:1842
7506
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
7507
  msgstr ""
7508
 
7509
- #: languages/vue.php:1845
7510
  msgid "This list shows the top pages users are currently viewing on your site."
7511
  msgstr ""
7512
 
7513
- #: languages/vue.php:1848
7514
  msgid "View All Real-Time Pageviews"
7515
  msgstr ""
7516
 
7517
- #: languages/vue.php:1851
7518
  msgid "View All Real-Time Traffic Sources"
7519
  msgstr ""
7520
 
7521
- #: languages/vue.php:1854
7522
  msgid "View All Real-Time Traffic by Country"
7523
  msgstr ""
7524
 
7525
- #: languages/vue.php:1857
7526
  msgid "View All Real-Time Traffic by City"
7527
  msgstr ""
7528
 
7529
- #: languages/vue.php:1860
7530
  msgid "Show Overview Reports"
7531
  msgstr ""
7532
 
7533
- #: languages/vue.php:1863
7534
  msgid "Show Publishers Reports"
7535
  msgstr ""
7536
 
7537
- #: languages/vue.php:1866
7538
  msgid "Show eCommerce Reports"
7539
  msgstr ""
7540
 
7541
- #: languages/vue.php:1869
7542
  msgid "Settings Menu"
7543
  msgstr ""
7544
 
7545
- #: languages/vue.php:1872
7546
  msgid "Available in PRO version"
7547
  msgstr ""
7548
 
7549
- #: languages/vue.php:1875
7550
  msgid "Thank you for being a loyal MonsterInsights Lite user."
7551
  msgstr ""
7552
 
7553
- #: languages/vue.php:1878
7554
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
7555
  msgstr ""
7556
 
7557
  #. Translators: Gets replaced with the coupon code.
7558
- #: languages/vue.php:1882
7559
  msgid "Use coupon code %s to get 50%% off."
7560
  msgstr ""
7561
 
7562
- #: languages/vue.php:1885
7563
  msgid "Dashboard widget"
7564
  msgstr ""
7565
 
7566
- #: languages/vue.php:1888
7567
  msgid "Affiliate Links"
7568
  msgstr ""
7569
 
7570
- #: languages/vue.php:1891
7571
  msgid "Enhanced Ecommerce"
7572
  msgstr ""
7573
 
7574
- #: languages/vue.php:1894
7575
  msgid "Banner Ads"
7576
  msgstr ""
7577
 
7578
- #: languages/vue.php:1897
7579
  msgid "Google AMP"
7580
  msgstr ""
7581
 
7582
- #: languages/vue.php:1900
7583
  msgid "SEO Score Tracking"
7584
  msgstr ""
7585
 
7586
- #: languages/vue.php:1903
7587
  msgid "Activating..."
7588
  msgstr ""
7589
 
7590
- #: languages/vue.php:1907
7591
  msgid "Deactivating..."
7592
  msgstr ""
7593
 
7594
- #: languages/vue.php:1911
7595
  msgid "Deactivate"
7596
  msgstr ""
7597
 
7598
  #. Translators: The status of the addon (installed/active/inactive).
7599
- #: languages/vue.php:1915
7600
  msgid "Status: %s"
7601
  msgstr ""
7602
 
7603
- #: languages/vue.php:1918
7604
  msgid "Not Installed"
7605
  msgstr ""
7606
 
7607
- #: languages/vue.php:1921
7608
  msgid "Network Active"
7609
  msgstr ""
7610
 
7611
- #: languages/vue.php:1924
7612
  msgid "Active"
7613
  msgstr ""
7614
 
7615
- #: languages/vue.php:1927
7616
  msgid "Inactive"
7617
  msgstr ""
7618
 
7619
  #. Translators: Adds a link to the general settings tab.
7620
- #: languages/vue.php:1931
7621
  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."
7622
  msgstr ""
7623
 
7624
- #: languages/vue.php:1934
7625
  msgid "Export PDF Reports"
7626
  msgstr ""
7627
 
7628
- #: languages/vue.php:1937
7629
  msgid "Permissions"
7630
  msgstr ""
7631
 
7632
- #: languages/vue.php:1940
7633
  msgid "Allow These User Roles to See Reports"
7634
  msgstr ""
7635
 
7636
- #: languages/vue.php:1943
7637
  msgid "Users that have at least one of these roles will be able to view the reports."
7638
  msgstr ""
7639
 
7640
- #: languages/vue.php:1947
7641
  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."
7642
  msgstr ""
7643
 
7644
- #: languages/vue.php:1950
7645
  msgid "Allow These User Roles to Save Settings"
7646
  msgstr ""
7647
 
7648
- #: languages/vue.php:1953
7649
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
7650
  msgstr ""
7651
 
7652
- #: languages/vue.php:1956
7653
  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."
7654
  msgstr ""
7655
 
7656
- #: languages/vue.php:1959
7657
  msgid "Exclude These User Roles From Tracking"
7658
  msgstr ""
7659
 
7660
- #: languages/vue.php:1962
7661
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
7662
  msgstr ""
7663
 
7664
- #: languages/vue.php:1965
7665
  msgid "Performance"
7666
  msgstr ""
7667
 
7668
- #: languages/vue.php:1968
7669
  msgid "Custom code"
7670
  msgstr ""
7671
 
7672
  #. Translators: Adds a link to the Google reference.
7673
- #: languages/vue.php:1972
7674
  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."
7675
  msgstr ""
7676
 
7677
- #: languages/vue.php:1978
7678
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
7679
  msgstr ""
7680
 
7681
- #: languages/vue.php:1981
7682
  msgid "Hide Admin Bar Reports"
7683
  msgstr ""
7684
 
7685
  #. Translators: placeholders make text small.
7686
- #: languages/vue.php:1985
7687
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
7688
  msgstr ""
7689
 
7690
  #. Translators: placeholders make text small.
7691
- #: languages/vue.php:1989
7692
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
7693
  msgstr ""
7694
 
7695
  #. Translators: placeholders make text small.
7696
- #: languages/vue.php:1993
7697
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
7698
  msgstr ""
7699
 
7700
- #: languages/vue.php:1996
7701
  msgid "View notifications"
7702
  msgstr ""
7703
 
7704
  #. Translators: Error status and error text.
7705
- #: languages/vue.php:2000
7706
  msgid "Can't load settings. Error: %1$s, %2$s"
7707
  msgstr ""
7708
 
7709
- #: languages/vue.php:2003
7710
  msgid "You appear to be offline."
7711
  msgstr ""
7712
 
7713
  #. Translators: Error status and error text.
7714
- #: languages/vue.php:2008
7715
  msgid "Can't save settings. Error: %1$s, %2$s"
7716
  msgstr ""
7717
 
7718
- #: languages/vue.php:2011
7719
  msgid "Network error encountered. Settings not saved."
7720
  msgstr ""
7721
 
7722
  #. Translators: Error status and error text.
7723
- #: languages/vue.php:2015
7724
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
7725
  msgstr ""
7726
 
7727
  #. Translators: Error status and error text.
7728
- #: languages/vue.php:2019
7729
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7730
  msgstr ""
7731
 
7732
  #. Translators: Error status and error text.
7733
- #: languages/vue.php:2023
7734
  msgid "Can't load license details. Error: %1$s, %2$s"
7735
  msgstr ""
7736
 
7737
- #: languages/vue.php:2026
7738
  msgid "Error loading license details"
7739
  msgstr ""
7740
 
7741
  #. Translators: Error status and error text.
7742
- #: languages/vue.php:2030
7743
  msgid "Can't verify the license. Error: %1$s, %2$s"
7744
  msgstr ""
7745
 
7746
  #. Translators: Error status and error text.
7747
- #: languages/vue.php:2034
7748
  msgid "Can't validate the license. Error: %1$s, %2$s"
7749
  msgstr ""
7750
 
7751
  #. Translators: Error status and error text.
7752
- #: languages/vue.php:2038
7753
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7754
  msgstr ""
7755
 
7756
  #. Translators: Error status and error text.
7757
- #: languages/vue.php:2042
7758
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7759
  msgstr ""
7760
 
7761
- #: languages/vue.php:2045
7762
  msgid "You appear to be offline. Settings not saved."
7763
  msgstr ""
7764
 
7765
  #. Translators: Error status and error text.
7766
- #: languages/vue.php:2049
7767
  msgid "Can't authenticate. Error: %1$s, %2$s"
7768
  msgstr ""
7769
 
7770
  #. Translators: Error status and error text.
7771
- #: languages/vue.php:2053
7772
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7773
  msgstr ""
7774
 
7775
  #. Translators: Error status and error text.
7776
- #: languages/vue.php:2057
7777
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7778
  msgstr ""
7779
 
7780
- #: languages/vue.php:2060
7781
  msgid "Proceed"
7782
  msgstr ""
7783
 
7784
- #: languages/vue.php:2063
7785
  msgid "Connection Information"
7786
  msgstr ""
7787
 
7788
- #: languages/vue.php:2066
7789
  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."
7790
  msgstr ""
7791
 
7792
- #: languages/vue.php:2069
7793
  msgid "Hostname"
7794
  msgstr ""
7795
 
7796
- #: languages/vue.php:2072
7797
  msgid "FTP Username"
7798
  msgstr ""
7799
 
7800
- #: languages/vue.php:2075
7801
  msgid "FTP Password"
7802
  msgstr ""
7803
 
7804
- #: languages/vue.php:2078
7805
  msgid "This password will not be stored on the server."
7806
  msgstr ""
7807
 
7808
- #: languages/vue.php:2081
7809
  msgid "Connection Type"
7810
  msgstr ""
7811
 
7812
- #: languages/vue.php:2084
7813
  msgid "Cancel"
7814
  msgstr ""
7815
 
7816
- #: languages/vue.php:2087
7817
  msgid "You appear to be offline. WPForms not installed."
7818
  msgstr ""
7819
 
7820
  #. Translators: Error status and error text.
7821
- #: languages/vue.php:2091
7822
  msgid "Can't activate addon. Error: %1$s, %2$s"
7823
  msgstr ""
7824
 
7825
- #: languages/vue.php:2094
7826
  msgid "You appear to be offline. Addon not activated."
7827
  msgstr ""
7828
 
7829
  #. Translators: Error status and error text.
7830
- #: languages/vue.php:2098
7831
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7832
  msgstr ""
7833
 
7834
- #: languages/vue.php:2101
7835
  msgid "You appear to be offline. Addon not deactivated."
7836
  msgstr ""
7837
 
7838
  #. Translators: Error status and error text.
7839
- #: languages/vue.php:2105
7840
  msgid "Can't install plugin. Error: %1$s, %2$s"
7841
  msgstr ""
7842
 
7843
- #: languages/vue.php:2108
7844
  msgid "You appear to be offline. Plugin not installed."
7845
  msgstr ""
7846
 
7847
  #. Translators: Error status and error text.
7848
- #: languages/vue.php:2112
7849
  msgid "Can't install addon. Error: %1$s, %2$s"
7850
  msgstr ""
7851
 
7852
- #: languages/vue.php:2115
7853
  msgid "You appear to be offline. Addon not installed."
7854
  msgstr ""
7855
 
7856
  #. Translators: Error status and error text.
7857
- #: languages/vue.php:2119
7858
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7859
  msgstr ""
7860
 
7861
  #. Translators: Example path (/go/).
7862
- #: languages/vue.php:2123
7863
  msgid "Path (example: %s)"
7864
  msgstr ""
7865
 
7866
- #: languages/vue.php:2126
7867
  msgid "Path has to start with a / and have no spaces"
7868
  msgstr ""
7869
 
7870
  #. Translators: Example label (aff).
7871
- #: languages/vue.php:2130
7872
  msgid "Label (example: %s)"
7873
  msgstr ""
7874
 
7875
- #: languages/vue.php:2133
7876
  msgid "Label can't contain any spaces"
7877
  msgstr ""
7878
 
7879
  #. Translators: Add links to documentation.
7880
- #: languages/vue.php:2137
7881
  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."
7882
  msgstr ""
7883
 
7884
- #: languages/vue.php:2140
7885
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
7886
  msgstr ""
7887
 
7888
- #: languages/vue.php:2143
7889
  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."
7890
  msgstr ""
7891
 
7892
- #: languages/vue.php:2146
7893
  msgid "Disable the Headline Analyzer"
7894
  msgstr ""
7895
 
7896
- #: languages/vue.php:2149
7897
  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."
7898
  msgstr ""
7899
 
7900
- #: languages/vue.php:2152
7901
  msgid "Or manually enter UA code (limited functionality)"
7902
  msgstr ""
7903
 
7904
- #: languages/vue.php:2155
7905
  msgid "Dual Tracking Profile"
7906
  msgstr ""
7907
 
7908
- #: languages/vue.php:2158
7909
  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."
7910
  msgstr ""
7911
 
7912
- #: languages/vue.php:2161
7913
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7914
  msgstr ""
7915
 
7916
- #: languages/vue.php:2164
7917
  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."
7918
  msgstr ""
7919
 
7920
- #: languages/vue.php:2167
7921
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7922
  msgstr ""
7923
 
7924
- #: languages/vue.php:2170
7925
  msgid "Measurement Protocol API Secret"
7926
  msgstr ""
7927
 
7928
- #: languages/vue.php:2173
7929
  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."
7930
  msgstr ""
7931
 
7932
- #: languages/vue.php:2176
7933
  msgid "Force Deauthenticate"
7934
  msgstr ""
7935
 
7936
- #: languages/vue.php:2179
7937
  msgid "Disconnect MonsterInsights"
7938
  msgstr ""
7939
 
7940
- #: languages/vue.php:2182
7941
  msgid "Authenticating"
7942
  msgstr ""
7943
 
7944
- #: languages/vue.php:2185
7945
  msgid "Verifying Credentials"
7946
  msgstr ""
7947
 
7948
- #: languages/vue.php:2188
7949
  msgid "Your site is connected to MonsterInsights!"
7950
  msgstr ""
7951
 
7952
- #: languages/vue.php:2191
7953
  msgid "Deauthenticating"
7954
  msgstr ""
7955
 
7956
- #: languages/vue.php:2194
7957
  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."
7958
  msgstr ""
7959
 
7960
- #: languages/vue.php:2197
7961
  msgid "Connect MonsterInsights"
7962
  msgstr ""
7963
 
7964
- #: languages/vue.php:2200
7965
  msgid "Verify Credentials"
7966
  msgstr ""
7967
 
7968
- #: languages/vue.php:2203
7969
  msgid "Website Profile"
7970
  msgstr ""
7971
 
7972
- #: languages/vue.php:2206
7973
  msgid "Active Profile"
7974
  msgstr ""
7975
 
7976
- #: languages/vue.php:2209
7977
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7978
  msgstr ""
7979
 
7980
- #: languages/vue.php:2212
7981
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7982
  msgstr ""
7983
 
7984
- #: languages/vue.php:2216
7985
  msgid "Manually enter your UA code"
7986
  msgstr ""
7987
 
7988
- #: languages/vue.php:2220
7989
  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."
7990
  msgstr ""
7991
 
7992
- #: languages/vue.php:2223
7993
  msgid "Manually enter your GA4 Measurement ID"
7994
  msgstr ""
7995
 
7996
- #: languages/vue.php:2226
7997
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
7998
  msgstr ""
7999
 
8000
- #: languages/vue.php:2229
8001
  msgid "Anonymize IP Addresses"
8002
  msgstr ""
8003
 
8004
- #: languages/vue.php:2232
8005
  msgid "Link Attribution"
8006
  msgstr ""
8007
 
8008
- #: languages/vue.php:2235
8009
  msgid "Enable Enhanced Link Attribution"
8010
  msgstr ""
8011
 
8012
- #: languages/vue.php:2238
8013
  msgid "Enable Anchor Tracking"
8014
  msgstr ""
8015
 
8016
- #: languages/vue.php:2241
8017
  msgid "Enable allowAnchor"
8018
  msgstr ""
8019
 
8020
- #: languages/vue.php:2244
8021
  msgid "Enable allowLinker"
8022
  msgstr ""
8023
 
8024
- #: languages/vue.php:2247
8025
  msgid "Enable Tag Links in RSS"
8026
  msgstr ""
8027
 
8028
- #: languages/vue.php:2250
8029
  msgid "File Downloads"
8030
  msgstr ""
8031
 
8032
- #: languages/vue.php:2253
8033
  msgid "Extensions of Files to Track as Downloads"
8034
  msgstr ""
8035
 
8036
- #: languages/vue.php:2256
8037
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
8038
  msgstr ""
8039
 
8040
  #. Translators: Add links to the documentation.
8041
- #: languages/vue.php:2260
8042
  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."
8043
  msgstr ""
8044
 
8045
  #. Translators: Adds a link to the documentation.
8046
- #: languages/vue.php:2264
8047
  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."
8048
  msgstr ""
8049
 
8050
  #. Translators: Adds a link to the documentation.
8051
- #: languages/vue.php:2268
8052
  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."
8053
  msgstr ""
8054
 
8055
- #: languages/vue.php:2271
8056
  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."
8057
  msgstr ""
8058
 
8059
  #. Translators: Adds a link to the documentation.
8060
- #: languages/vue.php:2275
8061
  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."
8062
  msgstr ""
8063
 
8064
  #. Translators: Adds a link to the documentation.
8065
- #: languages/vue.php:2279
8066
  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."
8067
  msgstr ""
8068
 
8069
  #. Translators: Adds a link to the documentation.
8070
- #: languages/vue.php:2283
8071
  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."
8072
  msgstr ""
8073
 
8074
- #: languages/vue.php:2286
8075
  msgid "Add domain"
8076
  msgstr ""
8077
 
8078
  #. Translators: Example domain.
8079
- #: languages/vue.php:2290
8080
  msgid "Domain (example: %s)"
8081
  msgstr ""
8082
 
8083
  #. Translators: Current site domain to be avoided.
8084
- #: languages/vue.php:2294
8085
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8086
  msgstr ""
8087
 
8088
- #: languages/vue.php:2297
8089
  msgid "Cross Domain Tracking"
8090
  msgstr ""
8091
 
8092
  #. Translators: Adds a link to the documentation.
8093
- #: languages/vue.php:2301
8094
  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."
8095
  msgstr ""
8096
 
8097
  #. Translators: Number of days.
8098
- #: languages/vue.php:2305
8099
  msgid "vs. Previous Day"
8100
  msgstr ""
8101
 
8102
- #: languages/vue.php:2308
8103
  msgid "No change"
8104
  msgstr ""
8105
 
8106
- #: languages/vue.php:2311
8107
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
8108
  msgstr ""
8109
 
8110
- #: languages/vue.php:2314
8111
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
8112
  msgstr ""
8113
 
8114
- #: languages/vue.php:2317
8115
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8116
  msgstr ""
8117
 
8118
- #: languages/vue.php:2320
8119
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
8120
  msgstr ""
8121
 
8122
- #: languages/vue.php:2323
8123
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
8124
  msgstr ""
8125
 
8126
- #: languages/vue.php:2326
8127
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
8128
  msgstr ""
8129
 
8130
- #: languages/vue.php:2329
8131
  msgid "Unlock search console report to see your top performing keywords in Google."
8132
  msgstr ""
8133
 
8134
- #: languages/vue.php:2332
8135
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
8136
  msgstr ""
8137
 
8138
- #: languages/vue.php:2335
8139
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
8140
  msgstr ""
8141
 
8142
- #: languages/vue.php:2338
8143
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
8144
  msgstr ""
8145
 
8146
- #: languages/vue.php:2341
8147
  msgid "Upgrade to Pro »"
8148
  msgstr ""
8149
 
8150
- #: languages/vue.php:2344
8151
  msgid "Pro Tip:"
8152
  msgstr ""
8153
 
8154
- #: languages/vue.php:2347
8155
  msgid "Show"
8156
  msgstr ""
8157
 
8158
- #: languages/vue.php:2350
8159
  msgid "Hide dashboard widget"
8160
  msgstr ""
8161
 
8162
- #: languages/vue.php:2353
8163
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
8164
  msgstr ""
8165
 
8166
- #: languages/vue.php:2356
8167
  msgid "Yes, hide it!"
8168
  msgstr ""
8169
 
8170
- #: languages/vue.php:2359
8171
  msgid "No, cancel!"
8172
  msgstr ""
8173
 
8174
- #: languages/vue.php:2362
8175
  msgid "MonsterInsights Widget Hidden"
8176
  msgstr ""
8177
 
8178
- #: languages/vue.php:2365
8179
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
8180
  msgstr ""
8181
 
8182
- #: languages/vue.php:2371
8183
  msgid "Usage Tracking"
8184
  msgstr ""
8185
 
8186
- #: languages/vue.php:2374
8187
  msgid "Allow Usage Tracking"
8188
  msgstr ""
8189
 
8190
- #: languages/vue.php:2377
8191
  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."
8192
  msgstr ""
8193
 
8194
  #. Translators: Add links to documentation.
8195
- #: languages/vue.php:2381
8196
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8197
  msgstr ""
8198
 
8199
  #. Translators: Make text green and add smiley face.
8200
- #: languages/vue.php:2385
8201
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8202
  msgstr ""
8203
 
8204
  #. Translators: Add link to upgrade.
8205
- #: languages/vue.php:2389
8206
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8207
  msgstr ""
8208
 
8209
  #. Translators: Make text green.
8210
- #: languages/vue.php:2393
8211
  msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8212
  msgstr ""
8213
 
8214
- #: languages/vue.php:2396
8215
  msgid "Unlock PRO Features Now"
8216
  msgstr ""
8217
 
8218
- #: languages/vue.php:2399
8219
  msgid "Paste your license key here"
8220
  msgstr ""
8221
 
8222
- #: languages/vue.php:2402
8223
  msgid "Verify"
8224
  msgstr ""
8225
 
8226
  #. Translators: Add link to retrieve license from account area.
8227
- #: languages/vue.php:2406
8228
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8229
  msgstr ""
8230
 
8231
- #: languages/vue.php:2409
8232
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8233
  msgstr ""
8234
 
8235
  #. Translators: Error status and error text.
8236
- #: languages/vue.php:2413
8237
  msgid "Can't load errors. Error: %1$s, %2$s"
8238
  msgstr ""
8239
 
8240
- #: languages/vue.php:2416
8241
  msgid "No options available"
8242
  msgstr ""
8243
 
8244
- #: languages/vue.php:2419
8245
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
8246
  msgstr ""
8247
 
8248
- #: languages/vue.php:2422
8249
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
8250
  msgstr ""
8251
 
8252
- #: languages/vue.php:2425
8253
  msgid "1,938"
8254
  msgstr ""
8255
 
8256
- #: languages/vue.php:2428
8257
  msgid "2+ Million Active Installs"
8258
  msgstr ""
8259
 
8260
- #: languages/vue.php:2431
8261
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
8262
  msgstr ""
8263
 
8264
- #: languages/vue.php:2434
8265
  msgid "Set up the proper SEO foundations in less than 10 minutes."
8266
  msgstr ""
8267
 
8268
- #: languages/vue.php:2437
8269
  msgid "SEO Audit Checklist"
8270
  msgstr ""
8271
 
8272
- #: languages/vue.php:2440
8273
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8274
  msgstr ""
8275
 
8276
- #: languages/vue.php:2443
8277
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8278
  msgstr ""
8279
 
8280
- #: languages/vue.php:2446
8281
  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."
8282
  msgstr ""
8283
 
8284
- #: languages/vue.php:2449
8285
  msgid "Get AIOSEO for WordPress"
8286
  msgstr ""
8287
 
8288
- #: languages/vue.php:2452
8289
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8290
  msgstr ""
8291
 
8292
- #: languages/vue.php:2455
8293
  msgid "Try it out today, for free."
8294
  msgstr ""
8295
 
8296
- #: languages/vue.php:2458
8297
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8298
  msgstr ""
8299
 
8300
- #: languages/vue.php:2461
8301
  msgid "Activate and Install the Plugin with just one click!"
8302
  msgstr ""
8303
 
8304
- #: languages/vue.php:2464
8305
  msgid "Installing AIOSEO..."
8306
  msgstr ""
8307
 
8308
- #: languages/vue.php:2467
8309
  msgid "Congrats! All-in-One SEO Installed."
8310
  msgstr ""
8311
 
8312
- #: languages/vue.php:2470
8313
  msgid "Switch to AIOSEO"
8314
  msgstr ""
8315
 
8316
- #: languages/vue.php:2473
8317
  msgid "Installation Failed. Please refresh and try again."
8318
  msgstr ""
8319
 
8320
- #: languages/vue.php:2476
8321
  msgid "Activating AIOSEO..."
8322
  msgstr ""
8323
 
8324
- #: languages/vue.php:2479
8325
  msgid "Activate AIOSEO"
8326
  msgstr ""
8327
 
8328
- #: languages/vue.php:2482
8329
  msgid "Activation Failed. Please refresh and try again."
8330
  msgstr ""
8331
 
8332
  #. Translators: The name of the field that is throwing a validation error.
8333
- #: languages/vue.php:2486
8334
  msgid "%s can't be empty."
8335
  msgstr ""
8336
 
8337
- #: languages/vue.php:2489
8338
  msgid "Duplicate values are not allowed."
8339
  msgstr ""
8340
 
8341
- #: languages/vue.php:2492
8342
  msgid "You can add maximum 5 items."
8343
  msgstr ""
8344
 
8345
- #: languages/vue.php:2495
8346
  msgid "At least 0 item required."
8347
  msgstr ""
8348
 
8349
- #: languages/vue.php:2498
8350
  msgid "Add Another Link Path"
8351
  msgstr ""
8352
 
8353
- #: languages/vue.php:2501
8354
  msgid "Remove row"
8355
  msgstr ""
8356
 
8357
- #: languages/vue.php:2504
8358
  msgid "New"
8359
  msgstr ""
8360
 
8361
- #: languages/vue.php:2507
8362
  msgid "Returning"
8363
  msgstr ""
8364
 
8365
- #: languages/vue.php:2510
8366
  msgid "Top 10 Countries"
8367
  msgstr ""
8368
 
8369
- #: languages/vue.php:2513
8370
  msgid "View Countries Report"
8371
  msgstr ""
8372
 
8373
- #: languages/vue.php:2516
8374
  msgid "Top 10 Referrals"
8375
  msgstr ""
8376
 
8377
- #: languages/vue.php:2519
8378
  msgid "View All Referral Sources"
8379
  msgstr ""
8380
 
8381
- #: languages/vue.php:2522
8382
  msgid "View Full Posts/Pages Report"
8383
  msgstr ""
8384
 
8385
- #: languages/vue.php:2525
8386
  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."
8387
  msgstr ""
8388
 
8389
- #: languages/vue.php:2528
8390
  msgid "This list shows the top countries your website visitors are from."
8391
  msgstr ""
8392
 
8393
- #: languages/vue.php:2531
8394
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8395
  msgstr ""
8396
 
8397
- #: languages/vue.php:2534
8398
  msgid "Export PDF Overview Report"
8399
  msgstr ""
8400
 
8401
- #: languages/vue.php:2537
8402
  msgid "Reset to default"
8403
  msgstr ""
8404
 
8405
- #: languages/vue.php:2540
8406
  msgid "The value entered does not match the required format"
8407
  msgstr ""
8408
 
8409
- #: languages/vue.php:2543
8410
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8411
  msgstr ""
8412
 
8413
- #: languages/vue.php:2546
8414
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8415
  msgstr ""
8416
 
8417
- #: languages/vue.php:2549
8418
  msgid "Recommended Settings"
8419
  msgstr ""
8420
 
8421
- #: languages/vue.php:2552
8422
  msgid "MonsterInsights recommends the following settings based on your configuration."
8423
  msgstr ""
8424
 
8425
- #: languages/vue.php:2555
8426
  msgid "Events Tracking"
8427
  msgstr ""
8428
 
8429
- #: languages/vue.php:2558
8430
  msgid "Must have for all click tracking on site."
8431
  msgstr ""
8432
 
8433
- #: languages/vue.php:2561
8434
  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."
8435
  msgstr ""
8436
 
8437
- #: languages/vue.php:2564
8438
  msgid "Enhanced Link Attribution"
8439
  msgstr ""
8440
 
8441
- #: languages/vue.php:2567
8442
  msgid "Improves the accuracy of your In-Page Analytics."
8443
  msgstr ""
8444
 
8445
- #: languages/vue.php:2570
8446
  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."
8447
  msgstr ""
8448
 
8449
- #: languages/vue.php:2573
8450
  msgid "Install Updates Automatically"
8451
  msgstr ""
8452
 
8453
- #: languages/vue.php:2576
8454
  msgid "Get the latest features, bug fixes, and security updates as they are released."
8455
  msgstr ""
8456
 
8457
- #: languages/vue.php:2579
8458
  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."
8459
  msgstr ""
8460
 
8461
- #: languages/vue.php:2582
8462
  msgid "File Download Tracking"
8463
  msgstr ""
8464
 
8465
- #: languages/vue.php:2585
8466
  msgid "Helps you see file downloads data."
8467
  msgstr ""
8468
 
8469
- #: languages/vue.php:2588
8470
  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."
8471
  msgstr ""
8472
 
8473
- #: languages/vue.php:2591
8474
  msgid "Helps you increase affiliate revenue."
8475
  msgstr ""
8476
 
8477
- #: languages/vue.php:2594
8478
  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."
8479
  msgstr ""
8480
 
8481
- #: languages/vue.php:2597
8482
  msgid "Affiliate Link Tracking"
8483
  msgstr ""
8484
 
8485
- #: languages/vue.php:2600
8486
  msgid "Who Can See Reports"
8487
  msgstr ""
8488
 
8489
- #: languages/vue.php:2603
8490
  msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
8491
  msgstr ""
8492
 
8493
- #: languages/vue.php:2606
8494
  msgid "Save and continue"
8495
  msgstr ""
8496
 
8497
- #: languages/vue.php:2609
8498
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
8499
  msgstr ""
8500
 
8501
- #: languages/vue.php:2612
8502
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
8503
  msgstr ""
8504
 
8505
- #: languages/vue.php:2615
8506
  msgid "+ Add Role"
8507
  msgstr ""
8508
 
8509
- #: languages/vue.php:2618
8510
  msgid "Connect MonsterInsights to Your Website"
8511
  msgstr ""
8512
 
8513
- #: languages/vue.php:2621
8514
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
8515
  msgstr ""
8516
 
8517
- #: languages/vue.php:2624
8518
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
8519
  msgstr ""
8520
 
8521
- #: languages/vue.php:2627
8522
  msgid "Save and Continue"
8523
  msgstr ""
8524
 
8525
- #: languages/vue.php:2630
8526
  msgid "UA code can't be empty"
8527
  msgstr ""
8528
 
8529
- #: languages/vue.php:2633
8530
  msgid "Saving UA code..."
8531
  msgstr ""
8532
 
8533
- #: languages/vue.php:2636
8534
  msgid "Allow usage tracking"
8535
  msgstr ""
8536
 
8537
- #: languages/vue.php:2639
8538
  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."
8539
  msgstr ""
8540
 
8541
- #: languages/vue.php:2642
8542
  msgid "Install All-in-One SEO"
8543
  msgstr ""
8544
 
8545
- #: languages/vue.php:2645
8546
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8547
  msgstr ""
8548
 
8549
- #: languages/vue.php:2648
8550
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8551
  msgstr ""
8552
 
8553
- #: languages/vue.php:2651
8554
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8555
  msgstr ""
8556
 
8557
- #: languages/vue.php:2654
8558
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8559
  msgstr ""
8560
 
8561
- #: languages/vue.php:2657
8562
  msgid "Local SEO"
8563
  msgstr ""
8564
 
8565
- #: languages/vue.php:2660
8566
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8567
  msgstr ""
8568
 
8569
- #: languages/vue.php:2663
8570
  msgid "WooCommerce SEO"
8571
  msgstr ""
8572
 
8573
- #: languages/vue.php:2666
8574
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8575
  msgstr ""
8576
 
8577
- #: languages/vue.php:2669
8578
  msgid "SEO Custom User Roles"
8579
  msgstr ""
8580
 
8581
- #: languages/vue.php:2672
8582
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8583
  msgstr ""
8584
 
8585
- #: languages/vue.php:2675
8586
  msgid "Google News Sitemap"
8587
  msgstr ""
8588
 
8589
- #: languages/vue.php:2678
8590
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8591
  msgstr ""
8592
 
8593
- #: languages/vue.php:2681
8594
  msgid "Smart XML Sitemaps"
8595
  msgstr ""
8596
 
8597
- #: languages/vue.php:2684
8598
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8599
  msgstr ""
8600
 
8601
- #: languages/vue.php:2687
8602
  msgid "Social Media Integration"
8603
  msgstr ""
8604
 
8605
- #: languages/vue.php:2690
8606
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8607
  msgstr ""
8608
 
8609
- #: languages/vue.php:2693
8610
  msgid "TruSEO On-Page Analysis"
8611
  msgstr ""
8612
 
8613
- #: languages/vue.php:2696
8614
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8615
  msgstr ""
8616
 
8617
- #: languages/vue.php:2699
8618
  msgid "& Many More!"
8619
  msgstr ""
8620
 
8621
- #: languages/vue.php:2702
8622
  msgid "Installing. Please wait.."
8623
  msgstr ""
8624
 
8625
- #: languages/vue.php:2705
8626
  msgid "Install All-in-One-SEO"
8627
  msgstr ""
8628
 
8629
- #: languages/vue.php:2708
8630
  msgid "Welcome to MonsterInsights!"
8631
  msgstr ""
8632
 
8633
- #: languages/vue.php:2711
8634
  msgid "Let's get you set up."
8635
  msgstr ""
8636
 
8637
- #: languages/vue.php:2714
8638
  msgid "Which category best describes your website?"
8639
  msgstr ""
8640
 
8641
- #: languages/vue.php:2717
8642
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
8643
  msgstr ""
8644
 
8645
- #: languages/vue.php:2720
8646
  msgid "Business Website"
8647
  msgstr ""
8648
 
8649
  #. Translators: Make text bold.
8650
- #: languages/vue.php:2724
8651
  msgid "Publisher %1$s(Blog)%2$s"
8652
  msgstr ""
8653
 
8654
- #: languages/vue.php:2727
8655
  msgid "Ecommerce"
8656
  msgstr ""
8657
 
8658
- #: languages/vue.php:2730
8659
  msgid "Caching"
8660
  msgstr ""
8661
 
8662
- #: languages/vue.php:2733
8663
  msgid "Enable Data Caching"
8664
  msgstr ""
8665
 
8666
- #: languages/vue.php:2736
8667
  msgid "Refresh Cache Every"
8668
  msgstr ""
8669
 
8670
- #: languages/vue.php:2739
8671
  msgid "Choose how often to refresh the cache."
8672
  msgstr ""
8673
 
8674
- #: languages/vue.php:2742
8675
  msgid "Enable Ajaxify"
8676
  msgstr ""
8677
 
8678
- #: languages/vue.php:2745
8679
  msgid "Ajaxify Widget"
8680
  msgstr ""
8681
 
8682
- #: languages/vue.php:2748
8683
  msgid "Use to bypass page caching."
8684
  msgstr ""
8685
 
8686
- #: languages/vue.php:2751
8687
  msgid "Empty Cache"
8688
  msgstr ""
8689
 
8690
- #: languages/vue.php:2754
8691
  msgid "Click to manually wipe the cache right now."
8692
  msgstr ""
8693
 
8694
- #: languages/vue.php:2757
8695
  msgid "Popular posts cache emptied"
8696
  msgstr ""
8697
 
8698
- #: languages/vue.php:2760
8699
  msgid "Error emptying the popular posts cache. Please try again."
8700
  msgstr ""
8701
 
8702
- #: languages/vue.php:2763
8703
  msgid "Choose Theme"
8704
  msgstr ""
8705
 
8706
- #: languages/vue.php:2766
8707
  msgid "Widget Styling"
8708
  msgstr ""
8709
 
8710
- #: languages/vue.php:2769
8711
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
8712
  msgstr ""
8713
 
8714
- #: languages/vue.php:2772
8715
  msgid "Sort By"
8716
  msgstr ""
8717
 
8718
- #: languages/vue.php:2775
8719
  msgid "Choose how you'd like the widget to determine your popular posts."
8720
  msgstr ""
8721
 
8722
- #: languages/vue.php:2778
8723
  msgid "Display Title"
8724
  msgstr ""
8725
 
8726
- #: languages/vue.php:2784
8727
  msgid "Title your widget and set its display preferences."
8728
  msgstr ""
8729
 
8730
- #: languages/vue.php:2787
8731
  msgid "Include in Post Types"
8732
  msgstr ""
8733
 
8734
- #: languages/vue.php:2790
8735
  msgid "Exclude from specific posts"
8736
  msgstr ""
8737
 
8738
  #. Translators: Placeholders make the text bold.
8739
- #: languages/vue.php:2794
8740
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
8741
  msgstr ""
8742
 
8743
  #. Translators: Placeholders make the text bold.
8744
- #: languages/vue.php:2798
8745
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
8746
  msgstr ""
8747
 
8748
- #: languages/vue.php:2801
8749
  msgid "Loading Themes"
8750
  msgstr ""
8751
 
8752
  #. Translators: placeholders make text small.
8753
- #: languages/vue.php:2805
8754
  msgid "Default Styles %1$s- As seen above.%2$s"
8755
  msgstr ""
8756
 
8757
  #. Translators: placeholders make text small.
8758
- #: languages/vue.php:2809
8759
  msgid "No Styles %1$s- Use your own CSS.%2$s"
8760
  msgstr ""
8761
 
8762
  #. Translators: placeholders make text small.
8763
- #: languages/vue.php:2813
8764
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
8765
  msgstr ""
8766
 
8767
  #. Translators: placeholders make text small.
8768
- #: languages/vue.php:2817
8769
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
8770
  msgstr ""
8771
 
8772
  #. Translators: placeholders make text small.
8773
- #: languages/vue.php:2821
8774
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
8775
  msgstr ""
8776
 
8777
- #: languages/vue.php:2824
8778
  msgid "Placement"
8779
  msgstr ""
8780
 
8781
- #: languages/vue.php:2827
8782
  msgid "Choose how you'd like to place the widget."
8783
  msgstr ""
8784
 
8785
- #: languages/vue.php:2830
8786
  msgid "Insert After"
8787
  msgstr ""
8788
 
8789
- #: languages/vue.php:2833
8790
  msgid "Choose where in the post body the widget will be placed."
8791
  msgstr ""
8792
 
8793
- #: languages/vue.php:2836
8794
  msgid "Customize Design"
8795
  msgstr ""
8796
 
8797
- #: languages/vue.php:2839
8798
  msgid "words"
8799
  msgstr ""
8800
 
8801
- #: languages/vue.php:2842
8802
  msgid "Please select at least one post to display."
8803
  msgstr ""
8804
 
8805
  #. Translators: placeholders make text small.
8806
- #: languages/vue.php:2846
8807
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
8808
  msgstr ""
8809
 
8810
  #. Translators: placeholders make text small.
8811
- #: languages/vue.php:2850
8812
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
8813
  msgstr ""
8814
 
8815
- #: languages/vue.php:2853
8816
  msgid "Facebook Instant Articles"
8817
  msgstr ""
8818
 
8819
- #: languages/vue.php:2856
8820
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8821
  msgstr ""
8822
 
8823
- #: languages/vue.php:2859
8824
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8825
  msgstr ""
8826
 
8827
- #: languages/vue.php:2862
8828
  msgid "Ads Tracking"
8829
  msgstr ""
8830
 
8831
- #: languages/vue.php:2865
8832
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8833
  msgstr ""
8834
 
8835
- #: languages/vue.php:2868
8836
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8837
  msgstr ""
8838
 
8839
- #: languages/vue.php:2871
8840
  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."
8841
  msgstr ""
8842
 
8843
- #: languages/vue.php:2874
8844
  msgid "Jack Brown"
8845
  msgstr ""
8846
 
8847
- #: languages/vue.php:2877
8848
  msgid "PJB Internet Marketing"
8849
  msgstr ""
8850
 
8851
- #: languages/vue.php:2880
8852
  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."
8853
  msgstr ""
8854
 
8855
- #: languages/vue.php:2883
8856
  msgid "Joel Steinmann"
8857
  msgstr ""
8858
 
8859
- #: languages/vue.php:2886
8860
  msgid "CEO, Solergo"
8861
  msgstr ""
8862
 
8863
- #: languages/vue.php:2889
8864
  msgid "Recommended Addons"
8865
  msgstr ""
8866
 
8867
- #: languages/vue.php:2892
8868
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
8869
  msgstr ""
8870
 
8871
- #: languages/vue.php:2895
8872
  msgid "Other Addons"
8873
  msgstr ""
8874
 
8875
- #: languages/vue.php:2898
8876
  msgid "View all MonsterInsights addons"
8877
  msgstr ""
8878
 
8879
- #: languages/vue.php:2901
8880
  msgid "Scroll Tracking"
8881
  msgstr ""
8882
 
8883
- #: languages/vue.php:2904
8884
  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."
8885
  msgstr ""
8886
 
8887
- #: languages/vue.php:2907
8888
  msgid ""
8889
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
8890
  " and other privacy regulations."
8891
  msgstr ""
8892
 
8893
- #: languages/vue.php:2911
8894
  msgid "EU Compliance"
8895
  msgstr ""
8896
 
8897
- #: languages/vue.php:2914
8898
  msgid "Compatibility mode"
8899
  msgstr ""
8900
 
8901
- #: languages/vue.php:2917
8902
  msgid "Enable _gtagTracker Compatibility"
8903
  msgstr ""
8904
 
8905
  #. Translators: Placeholder gets replaced with default GA js function.
8906
- #: languages/vue.php:2921
8907
  msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
8908
  msgstr ""
8909
 
8910
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
8911
- #: languages/vue.php:2925
8912
  msgid "%1$sPage %3$s%2$s of %4$s"
8913
  msgstr ""
8914
 
8915
- #: languages/vue.php:2928
8916
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
8917
  msgid "Theme Preview"
8918
  msgstr ""
8919
 
8920
- #: languages/vue.php:2931
8921
  msgid "Wide"
8922
  msgstr ""
8923
 
8924
- #: languages/vue.php:2934
8925
  msgid "Narrow"
8926
  msgstr ""
8927
 
8928
- #: languages/vue.php:2937
8929
  msgid "Title"
8930
  msgstr ""
8931
 
8932
- #: languages/vue.php:2940
8933
  msgid "Color"
8934
  msgstr ""
8935
 
8936
- #: languages/vue.php:2943
8937
  msgid "Size"
8938
  msgstr ""
8939
 
8940
- #: languages/vue.php:2946
8941
  msgid "Border"
8942
  msgstr ""
8943
 
8944
- #: languages/vue.php:2949
8945
  msgid "Author/Date"
8946
  msgstr ""
8947
 
8948
- #: languages/vue.php:2952
8949
  msgid "Label"
8950
  msgstr ""
8951
 
8952
- #: languages/vue.php:2955
8953
  msgid "Background"
8954
  msgstr ""
8955
 
8956
- #: languages/vue.php:2967
8957
  msgid "Choose which content you would like displayed in the widget."
8958
  msgstr ""
8959
 
8960
- #: languages/vue.php:2979
8961
  msgid "Comments"
8962
  msgstr ""
8963
 
8964
- #: languages/vue.php:2985
8965
  msgid "Choose how many posts you’d like displayed in the widget."
8966
  msgstr ""
8967
 
8968
- #: languages/vue.php:2988
8969
  msgid "Popular Posts data can be fetched correctly"
8970
  msgstr ""
8971
 
8972
- #: languages/vue.php:2991
8973
  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."
8974
  msgstr ""
8975
 
8976
- #: languages/vue.php:2994
8977
  msgid "Close"
8978
  msgstr ""
8979
 
8980
- #: languages/vue.php:2997
8981
  msgid "Add Top 5 Posts from Google Analytics"
8982
  msgstr ""
8983
 
8984
- #: languages/vue.php:3000
8985
  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."
8986
  msgstr ""
8987
 
8988
- #: languages/vue.php:3003
8989
  msgid "Test Automated Posts"
8990
  msgstr ""
8991
 
8992
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8993
- #: languages/vue.php:3007
8994
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8995
  msgstr ""
8996
 
8997
- #: languages/vue.php:3010
8998
  msgid "Automated + Curated"
8999
  msgstr ""
9000
 
9001
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9002
- #: languages/vue.php:3014
9003
  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."
9004
  msgstr ""
9005
 
9006
  #. Translators: Placeholder gets replaced with current license version.
9007
- #: languages/vue.php:3018
9008
  msgid "Pro version is required."
9009
  msgstr ""
9010
 
9011
- #: languages/vue.php:3021
9012
  msgid "Verifying Popular Posts data"
9013
  msgstr ""
9014
 
9015
- #: languages/vue.php:3024
9016
  msgid "Select posts/search"
9017
  msgstr ""
9018
 
9019
- #: languages/vue.php:3027
9020
  msgid "Oops! No posts found."
9021
  msgstr ""
9022
 
9023
- #: languages/vue.php:3030
9024
  msgid "Search by post title"
9025
  msgstr ""
9026
 
9027
- #: languages/vue.php:3033
9028
  msgid "Can't load posts."
9029
  msgstr ""
9030
 
9031
- #: languages/vue.php:3036
9032
  msgid "SharedCount API Key"
9033
  msgstr ""
9034
 
9035
- #: languages/vue.php:3039
9036
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9037
  msgstr ""
9038
 
9039
- #: languages/vue.php:3042
9040
  msgid "Start Indexing"
9041
  msgstr ""
9042
 
9043
- #: languages/vue.php:3045
9044
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9045
  msgstr ""
9046
 
9047
- #: languages/vue.php:3048
9048
  msgid "Indexing completed, counts will update automatically every day."
9049
  msgstr ""
9050
 
9051
- #: languages/vue.php:3052
9052
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9053
  msgstr ""
9054
 
9055
- #: languages/vue.php:3056
9056
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9057
  msgstr ""
9058
 
9059
- #: languages/vue.php:3060
9060
  msgid "Icon"
9061
  msgstr ""
9062
 
9063
  #. Translators: Minimum and maximum number that can be used.
9064
- #: languages/vue.php:3064
9065
  msgid "Please enter a value between %1$s and %2$s"
9066
  msgstr ""
9067
 
9068
  #. Translators: The minimum set value.
9069
- #: languages/vue.php:3068
9070
  msgid "Please enter a value higher than %s"
9071
  msgstr ""
9072
 
9073
  #. Translators: The maximum set value.
9074
- #: languages/vue.php:3072
9075
  msgid "Please enter a value lower than %s"
9076
  msgstr ""
9077
 
9078
- #: languages/vue.php:3075
9079
  msgid "Please enter a number"
9080
  msgstr ""
9081
 
9082
- #: languages/vue.php:3078
9083
  msgid "Value has to be a round number"
9084
  msgstr ""
9085
 
9086
- #: languages/vue.php:3081
9087
  msgid "Export PDF Report"
9088
  msgstr ""
9089
 
9090
- #: languages/vue.php:3084
9091
  msgid "You can export PDF reports only in the PRO version."
9092
  msgstr ""
9093
 
9094
- #: languages/vue.php:3087
9095
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
9096
  msgstr ""
9097
 
9098
- #: languages/vue.php:3090
9099
  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!"
9100
  msgstr ""
9101
 
9102
- #: languages/vue.php:3093
9103
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
9104
  msgstr ""
9105
 
9106
  #. Translators: Makes text bold.
9107
- #: languages/vue.php:3097
9108
  msgid "Use coupon code %1$sLITEUPGRADE%2$s"
9109
  msgstr ""
9110
 
9111
  #. Translators: Make text green.
9112
- #: languages/vue.php:3101
9113
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9114
  msgstr ""
9115
 
9116
  #. Translators: Placeholder adds a line break.
9117
- #: languages/vue.php:3105
9118
  msgid "You can customize your %sdate range only in the PRO version."
9119
  msgstr ""
9120
 
9121
- #: languages/vue.php:3108
9122
  msgid "Help Us Improve"
9123
  msgstr ""
9124
 
9125
- #: languages/vue.php:3111
9126
  msgid "Help us better understand our users and their website needs."
9127
  msgstr ""
9128
 
9129
  #. Translators: Adds a link to the documentation.
9130
- #: languages/vue.php:3115
9131
  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"
9132
  msgstr ""
9133
 
9134
- #: languages/vue.php:3118
9135
  msgid "Website profile"
9136
  msgstr ""
9137
 
9138
- #: languages/vue.php:3121
9139
  msgid "Active profile"
9140
  msgstr ""
9141
 
9142
- #: languages/vue.php:3124
9143
  msgid "Skip and Keep Connection"
9144
  msgstr ""
9145
 
9146
- #: languages/vue.php:3127
9147
  msgid "This feature requires MonsterInsights Pro"
9148
  msgstr ""
9149
 
9150
- #: languages/vue.php:3130
9151
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
9152
  msgstr ""
9153
 
9154
- #: languages/vue.php:3133
9155
  msgid "Upgrade to Pro and Unlock Popular Products"
9156
  msgstr ""
9157
 
9158
- #: languages/vue.php:3136
9159
  msgid "View all Pro features"
9160
  msgstr ""
9161
 
9162
- #: languages/vue.php:3139
9163
  msgid "Days"
9164
  msgstr ""
9165
 
9166
  #. Translators: placeholders make text small.
9167
- #: languages/vue.php:3143
9168
  msgid "7 days"
9169
  msgstr ""
9170
 
9171
- #: languages/vue.php:3146
9172
  msgid "30 days"
9173
  msgstr ""
9174
 
9175
- #: languages/vue.php:3149
9176
  msgid "Custom"
9177
  msgstr ""
9178
 
9179
- #: languages/vue.php:3152
9180
  msgid "Only Show Posts from These Categories"
9181
  msgstr ""
9182
 
9183
- #: languages/vue.php:3155
9184
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
9185
  msgstr ""
9186
 
9187
- #: languages/vue.php:3158
9188
  msgid "Multiple Entries"
9189
  msgstr ""
9190
 
9191
- #: languages/vue.php:3161
9192
  msgid "Total Number of Widgets to Show"
9193
  msgstr ""
9194
 
9195
- #: languages/vue.php:3164
9196
  msgid "Choose how many widgets will be placed in a single Post."
9197
  msgstr ""
9198
 
9199
- #: languages/vue.php:3167
9200
  msgid "Minimum Distance Between Widgets"
9201
  msgstr ""
9202
 
9203
- #: languages/vue.php:3170
9204
  msgid "Choose the distance between widgets."
9205
  msgstr ""
9206
 
9207
- #: languages/vue.php:3173
9208
  msgid "Minimum Word Count to Display Multiple Widgets"
9209
  msgstr ""
9210
 
9211
- #: languages/vue.php:3176
9212
  msgid "Choose the minimum word count for a Post to have multiple entries."
9213
  msgstr ""
9214
 
9215
- #: languages/vue.php:3179
9216
  msgid "Pro version is required"
9217
  msgstr ""
9218
 
9219
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9220
- #: languages/vue.php:3183
9221
  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)."
9222
  msgstr ""
9223
 
9224
- #: languages/vue.php:3186
9225
  msgid "Unlock with %s"
9226
  msgstr ""
9227
 
9228
- #: languages/vue.php:3189
9229
  msgid "Automatic Placement"
9230
  msgstr ""
9231
 
9232
- #: languages/vue.php:3192
9233
  msgid "Display using Gutenberg Blocks"
9234
  msgstr ""
9235
 
9236
- #: languages/vue.php:3195
9237
  msgid "Embed Options"
9238
  msgstr ""
9239
 
9240
- #: languages/vue.php:3198
9241
  msgid "All Embed Options can be used in conjunction with one another."
9242
  msgstr ""
9243
 
9244
- #: languages/vue.php:3201
9245
  msgid "Using the Gutenberg Block"
9246
  msgstr ""
9247
 
9248
- #: languages/vue.php:3204
9249
  msgid "Using Automatic Embed"
9250
  msgstr ""
9251
 
9252
- #: languages/vue.php:3207
9253
  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."
9254
  msgstr ""
9255
 
9256
- #: languages/vue.php:3210
9257
  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."
9258
  msgstr ""
9259
 
9260
- #: languages/vue.php:3213
9261
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9262
  msgstr ""
9263
 
9264
- #: languages/vue.php:3216
9265
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9266
  msgstr ""
9267
 
9268
- #: languages/vue.php:3219
9269
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9270
  msgstr ""
9271
 
9272
- #: languages/vue.php:3222
9273
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9274
  msgstr ""
9275
 
9276
- #: languages/vue.php:3225
9277
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9278
  msgstr ""
9279
 
9280
- #: languages/vue.php:3228
9281
  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."
9282
  msgstr ""
9283
 
9284
- #: languages/vue.php:3231
9285
  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."
9286
  msgstr ""
9287
 
9288
- #: languages/vue.php:3234
9289
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9290
  msgstr ""
9291
 
9292
- #: languages/vue.php:3237
9293
  msgid "Display using a Shortcode"
9294
  msgstr ""
9295
 
9296
- #: languages/vue.php:3240
9297
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9298
  msgstr ""
9299
 
9300
- #: languages/vue.php:3243
9301
  msgid "Copy Shortcode"
9302
  msgstr ""
9303
 
9304
- #: languages/vue.php:3246
9305
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9306
  msgstr ""
9307
 
9308
- #: languages/vue.php:3249
9309
  msgid "Enable Automatic Placement"
9310
  msgstr ""
9311
 
9312
- #: languages/vue.php:3252
9313
  msgid "Display in a Sidebar"
9314
  msgstr ""
9315
 
9316
- #: languages/vue.php:3255
9317
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9318
  msgstr ""
9319
 
9320
- #: languages/vue.php:3258
9321
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9322
  msgstr ""
9323
 
9324
- #: languages/vue.php:3261
9325
  msgid "Display Method"
9326
  msgstr ""
9327
 
9328
- #: languages/vue.php:3264
9329
  msgid "There are two ways to manual include the widget in your posts."
9330
  msgstr ""
9331
 
9332
- #: languages/vue.php:3267
9333
  msgid "Using the Shortcode"
9334
  msgstr ""
9335
 
9336
- #: languages/vue.php:3270
9337
  msgid "Learn how to insert the widget using Gutenberg blocks."
9338
  msgstr ""
9339
 
9340
- #: languages/vue.php:3273
9341
  msgid "Learn how to insert the widget using out Shortcode."
9342
  msgstr ""
9343
 
9344
- #: languages/vue.php:3276
9345
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9346
  msgstr ""
9347
 
9348
- #: languages/vue.php:3279
9349
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
9350
  msgstr ""
9351
 
9352
- #: languages/vue.php:3282
9353
  msgid "Shortcode"
9354
  msgstr ""
9355
 
9356
- #: languages/vue.php:3285
9357
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9358
  msgstr ""
9359
 
9360
- #: languages/vue.php:3288
9361
  msgid "Facebook Instant Articleasdasdasds"
9362
  msgstr ""
9363
 
9364
- #: languages/vue.php:3291
9365
  msgid "Media"
9366
  msgstr ""
9367
 
9368
- #: languages/vue.php:3294
9369
  msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
9370
  msgstr ""
9371
 
9372
- #: languages/vue.php:3297
9373
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
9374
  msgstr ""
9375
 
9376
- #: languages/vue.php:3300
9377
  msgid "Top Affilliate Links"
9378
  msgstr ""
9379
 
9380
- #: languages/vue.php:3303
9381
  msgid "Scroll Depth"
9382
  msgstr ""
9383
 
9384
- #: languages/vue.php:3306
9385
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
9386
  msgstr ""
9387
 
9388
- #: languages/vue.php:3309
9389
  msgid "10+ eCommerce Integrations"
9390
  msgstr ""
9391
 
9392
- #: languages/vue.php:3312
9393
  msgid "Average Order Value"
9394
  msgstr ""
9395
 
9396
- #: languages/vue.php:3315
9397
  msgid "Total Revenue"
9398
  msgstr ""
9399
 
9400
- #: languages/vue.php:3318
9401
  msgid "Number of Transactions"
9402
  msgstr ""
9403
 
9404
- #: languages/vue.php:3321
9405
  msgid "Increase Engagement and Unlock New Insights About Your Site."
9406
  msgstr ""
9407
 
9408
- #: languages/vue.php:3324
9409
  msgid "User ID Tracking"
9410
  msgstr ""
9411
 
9412
- #: languages/vue.php:3327
9413
  msgid "Post Types"
9414
  msgstr ""
9415
 
9416
- #: languages/vue.php:3330
9417
  msgid "Tag Tracking"
9418
  msgstr ""
9419
 
9420
- #: languages/vue.php:3333
9421
  msgid "Categories"
9422
  msgstr ""
9423
 
9424
- #: languages/vue.php:3336
9425
  msgid "SEO Scores"
9426
  msgstr ""
9427
 
9428
- #: languages/vue.php:3339
9429
  msgid "Publish Times"
9430
  msgstr ""
9431
 
9432
- #: languages/vue.php:3342
9433
  msgid "Focus Keywords"
9434
  msgstr ""
9435
 
9436
- #: languages/vue.php:3345
9437
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
9438
  msgstr ""
9439
 
9440
- #: languages/vue.php:3348
9441
  msgid "Conversion Counts"
9442
  msgstr ""
9443
 
9444
- #: languages/vue.php:3351
9445
  msgid "Impression Counts"
9446
  msgstr ""
9447
 
9448
- #: languages/vue.php:3354
9449
  msgid "Conversion Rates"
9450
  msgstr ""
9451
 
9452
- #: languages/vue.php:3357
9453
  msgid "See Exactly How Visitors Find Your Website From Google."
9454
  msgstr ""
9455
 
9456
- #: languages/vue.php:3360
9457
  msgid "Top Google Search Terms"
9458
  msgstr ""
9459
 
9460
- #: languages/vue.php:3363
9461
  msgid "Number of Clicks"
9462
  msgstr ""
9463
 
9464
- #: languages/vue.php:3366
9465
  msgid "Click-through Ratio"
9466
  msgstr ""
9467
 
9468
- #: languages/vue.php:3369
9469
  msgid "Average Results Position"
9470
  msgstr ""
9471
 
9472
- #: languages/vue.php:3372
9473
  msgid "Realtime Report"
9474
  msgstr ""
9475
 
9476
- #: languages/vue.php:3375
9477
  msgid "See Who And What is Happening on Your Website in Realtime."
9478
  msgstr ""
9479
 
9480
- #: languages/vue.php:3378
9481
  msgid "Top Page Views"
9482
  msgstr ""
9483
 
9484
- #: languages/vue.php:3381
9485
  msgid "Current Active Users"
9486
  msgstr ""
9487
 
9488
- #: languages/vue.php:3384
9489
  msgid "Top Referral Sources"
9490
  msgstr ""
9491
 
9492
- #: languages/vue.php:3387
9493
  msgid "Top Countries"
9494
  msgstr ""
9495
 
9496
- #: languages/vue.php:3390
9497
  msgid "Top Cities"
9498
  msgstr ""
9499
 
9500
- #: languages/vue.php:3393
9501
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
9502
  msgstr ""
9503
 
9504
- #: languages/vue.php:3396
9505
  msgid "Overall Site Speed Score"
9506
  msgstr ""
9507
 
9508
- #: languages/vue.php:3399
9509
  msgid "Server Response Times"
9510
  msgstr ""
9511
 
9512
- #: languages/vue.php:3402
9513
  msgid "Mobile and Desktop Scores"
9514
  msgstr ""
9515
 
9516
- #: languages/vue.php:3405
9517
  msgid "First Contentful Paint"
9518
  msgstr ""
9519
 
9520
- #: languages/vue.php:3408
9521
  msgid "Automatic Recommendations"
9522
  msgstr ""
9523
 
9524
- #: languages/vue.php:3411
9525
  msgid "Total Blocking Time"
9526
  msgstr ""
9527
 
9528
- #: languages/vue.php:3414
9529
  msgid "On-Demand Audits"
9530
  msgstr ""
9531
 
9532
- #: languages/vue.php:3417
9533
  msgid "Time to Interactive"
9534
  msgstr ""
9535
 
9536
- #: languages/vue.php:3421
9537
  msgid "2021 Year in Review"
9538
  msgstr ""
9539
 
9540
- #: languages/vue.php:3424
9541
  msgid "Realtime"
9542
  msgstr ""
9543
 
9544
  #. Translators: Placeholders are used for making text bold and adding a link.
9545
- #: languages/vue.php:3428
9546
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9547
  msgstr ""
9548
 
9549
- #: languages/vue.php:3431
9550
  msgid "Featured"
9551
  msgstr ""
9552
 
9553
- #: languages/vue.php:3434
9554
  msgid "Traffic"
9555
  msgstr ""
9556
 
9557
- #: languages/vue.php:3437
9558
  msgid "Revenue"
9559
  msgstr ""
9560
 
9561
- #: languages/vue.php:3440
9562
  msgid "Guides & Resources"
9563
  msgstr ""
9564
 
9565
- #: languages/vue.php:3443
9566
  msgid "Upgrade and Unlock"
9567
  msgstr ""
9568
 
9569
- #: languages/vue.php:3446
9570
  msgid "What’s in the %1$s?"
9571
  msgstr ""
9572
 
9573
- #: languages/vue.php:3449
9574
  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"
9575
  msgstr ""
9576
 
9577
- #: languages/vue.php:3452
9578
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9579
  msgstr ""
9580
 
9581
- #: languages/vue.php:3455
9582
  msgid "Your 2021 Analytics Report"
9583
  msgstr ""
9584
 
9585
- #: languages/vue.php:3461
9586
  msgid "January 1, 2021 - December 31, 2021"
9587
  msgstr ""
9588
 
9589
- #: languages/vue.php:3464
9590
  msgid "A Tip for 2022"
9591
  msgstr ""
9592
 
9593
- #: languages/vue.php:3467
9594
  msgid "A Tip For 2022"
9595
  msgstr ""
9596
 
9597
- #: languages/vue.php:3470
9598
  msgid "Here's to an amazing 2022!"
9599
  msgstr ""
9600
 
9601
- #: languages/vue.php:3473
9602
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9603
  msgstr ""
9604
 
9605
- #: languages/vue.php:3476
9606
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9607
  msgstr ""
9608
 
9609
- #: languages/vue.php:3479
9610
  msgid "Copyright MonsterInsights, 2022"
9611
  msgstr ""
9612
 
9613
  #. Translators: Number of minutes spent on site.
9614
- #: languages/vue.php:3483
9615
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9616
  msgstr ""
9617
 
9618
- #: languages/vue.php:3486
9619
  msgid "RafflePress"
9620
  msgstr ""
9621
 
9622
- #: languages/vue.php:3489
9623
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9624
  msgstr ""
9625
 
9626
- #: languages/vue.php:3492
9627
  msgid "Constant Contact"
9628
  msgstr ""
9629
 
9630
- #: languages/vue.php:3495
9631
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9632
  msgstr ""
9633
 
9634
- #: languages/vue.php:3498
9635
  msgid "SEMRUSH"
9636
  msgstr ""
9637
 
9638
- #: languages/vue.php:3501
9639
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9640
  msgstr ""
9641
 
9642
- #: languages/vue.php:3504
9643
  msgid "Engagement Tools"
9644
  msgstr ""
9645
 
9646
- #: languages/vue.php:3507
9647
  msgid "WPForms"
9648
  msgstr ""
9649
 
9650
- #: languages/vue.php:3510
9651
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9652
  msgstr ""
9653
 
9654
- #: languages/vue.php:3513
9655
  msgid "OptinMonster"
9656
  msgstr ""
9657
 
9658
- #: languages/vue.php:3516
9659
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9660
  msgstr ""
9661
 
9662
- #: languages/vue.php:3519
9663
  msgid "Smash Balloon - Facebook"
9664
  msgstr ""
9665
 
9666
- #: languages/vue.php:3522
9667
  msgid "Smash Balloon - Instagram"
9668
  msgstr ""
9669
 
9670
- #: languages/vue.php:3525
9671
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9672
  msgstr ""
9673
 
9674
- #: languages/vue.php:3528
9675
  msgid "Popular Posts by MonsterInsights"
9676
  msgstr ""
9677
 
9678
- #: languages/vue.php:3531
9679
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9680
  msgstr ""
9681
 
9682
- #: languages/vue.php:3534
9683
  msgid "Popular Products by MonsterInsights"
9684
  msgstr ""
9685
 
9686
- #: languages/vue.php:3537
9687
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9688
  msgstr ""
9689
 
9690
- #: languages/vue.php:3540
9691
  msgid "Revenue Tools"
9692
  msgstr ""
9693
 
9694
- #: languages/vue.php:3543
9695
  msgid "SeedProd"
9696
  msgstr ""
9697
 
9698
- #: languages/vue.php:3546
9699
  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."
9700
  msgstr ""
9701
 
9702
- #: languages/vue.php:3549
9703
  msgid "Featured Tools"
9704
  msgstr ""
9705
 
9706
- #: languages/vue.php:3552
9707
  msgid "Easy Affiliate"
9708
  msgstr ""
9709
 
9710
- #: languages/vue.php:3555
9711
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
9712
  msgstr ""
9713
 
9714
- #: languages/vue.php:3558
9715
  msgid "SearchWP"
9716
  msgstr ""
9717
 
9718
- #: languages/vue.php:3561
9719
  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."
9720
  msgstr ""
9721
 
9722
- #: languages/vue.php:3564
9723
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9724
  msgstr ""
9725
 
9726
- #: languages/vue.php:3567
9727
  msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
9728
  msgstr ""
9729
 
9730
- #: languages/vue.php:3570
9731
  msgid "Thirsty Affiliates"
9732
  msgstr ""
9733
 
9734
- #: languages/vue.php:3573
9735
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9736
  msgstr ""
9737
 
9738
- #: languages/vue.php:3576
9739
  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."
9740
  msgstr ""
9741
 
9742
- #: languages/vue.php:3579
9743
  msgid "Advanced Coupons"
9744
  msgstr ""
9745
 
9746
- #: languages/vue.php:3582
9747
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9748
  msgstr ""
9749
 
9750
- #: languages/vue.php:3585
9751
  msgid "PrettyLinks"
9752
  msgstr ""
9753
 
9754
- #: languages/vue.php:3588
9755
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9756
  msgstr ""
9757
 
9758
- #: languages/vue.php:3591
9759
  msgid "Install Now"
9760
  msgstr ""
9761
 
9762
- #: languages/vue.php:3594
9763
  msgid "Online Marketing Guides & Resources"
9764
  msgstr ""
9765
 
9766
- #: languages/vue.php:3597
9767
  msgid "MonsterInsights Pro"
9768
  msgstr ""
9769
 
9770
- #: languages/vue.php:3600
9771
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9772
  msgstr ""
9773
 
9774
- #: languages/vue.php:3603
9775
  msgid "Traffic Tools"
9776
  msgstr ""
9777
 
9778
- #: languages/vue.php:3606
9779
  msgid "All in One SEO (AIOSEO)"
9780
  msgstr ""
9781
 
9782
- #: languages/vue.php:3609
9783
  msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
9784
  msgstr ""
9785
 
9786
- #: languages/vue.php:3612
9787
  msgid "PushEngage"
9788
  msgstr ""
9789
 
9790
- #: languages/vue.php:3615
9791
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9792
  msgstr ""
9793
 
9794
- #: languages/vue.php:3618
9795
  msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9796
  msgstr ""
9797
 
9798
- #: languages/vue.php:3621
9799
  msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
9800
  msgstr ""
9801
 
9802
- #: languages/vue.php:3624
9803
  msgid "Media Tracking"
9804
  msgstr ""
9805
 
9806
- #: languages/vue.php:3627
9807
  msgid "Get Started"
9808
  msgstr ""
9809
 
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.3.3\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-02-09T15:49:52+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
119
  #: includes/admin/admin.php:126
120
  #: includes/admin/em-admin.php:18
121
  #: includes/admin/em-admin.php:21
122
+ #: languages/vue.php:248
123
  msgid "Insights"
124
  msgstr ""
125
 
126
  #: includes/admin/admin.php:34
127
  #: includes/admin/admin.php:42
128
  #: includes/admin/admin.php:222
129
+ #: languages/vue.php:523
130
  msgid "Settings"
131
  msgstr ""
132
 
142
 
143
  #: includes/admin/admin.php:39
144
  #: includes/admin/admin.php:130
145
+ #: languages/vue.php:1981
146
  msgid "Reports"
147
  msgstr ""
148
 
152
 
153
  #: includes/admin/admin.php:51
154
  #: languages/gutenberg.php:83
155
+ #: languages/vue.php:885
156
  msgid "Popular Posts"
157
  msgstr ""
158
 
186
 
187
  #: includes/admin/admin.php:71
188
  #: includes/admin/admin.php:146
189
+ #: languages/vue.php:502
190
  msgid "About Us"
191
  msgstr ""
192
 
205
  #: includes/admin/admin.php:76
206
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
207
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
208
+ #: languages/vue.php:1409
209
  msgid "Upgrade to Pro"
210
  msgstr ""
211
 
233
 
234
  #: includes/admin/admin.php:212
235
  #: includes/admin/admin.php:215
236
+ #: languages/vue.php:909
237
  msgid "Support"
238
  msgstr ""
239
 
245
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
246
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
247
  #: includes/admin/reports/abstract-report.php:418
248
+ #: languages/vue.php:1406
249
  msgid "Get MonsterInsights Pro"
250
  msgstr ""
251
 
255
  msgstr ""
256
 
257
  #: includes/admin/admin.php:324
258
+ #: languages/vue.php:487
259
  msgid "Please Setup Website Analytics to See Audience Insights"
260
  msgstr ""
261
 
262
  #: includes/admin/admin.php:325
263
+ #: languages/vue.php:493
264
  msgid "Connect MonsterInsights and Setup Website Analytics"
265
  msgstr ""
266
 
275
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
276
  #: includes/admin/notifications/notification-returning-visitors.php:43
277
  #: includes/admin/notifications/notification-traffic-dropping.php:43
278
+ #: languages/vue.php:440
279
  msgid "Learn More"
280
  msgstr ""
281
 
282
  #: includes/admin/admin.php:329
283
+ #: languages/vue.php:490
284
  msgid "MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 3 million website owners use MonsterInsights to see the stats that matter and grow their business."
285
  msgstr ""
286
 
291
 
292
  #. Translators: Adds a link to the license renewal.
293
  #: includes/admin/admin.php:350
294
+ #: languages/vue.php:713
295
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
296
  msgstr ""
297
 
298
  #: includes/admin/admin.php:352
299
+ #: languages/vue.php:716
300
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
301
  msgstr ""
302
 
303
  #: includes/admin/admin.php:354
304
+ #: languages/vue.php:719
305
  msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
306
  msgstr ""
307
 
505
  msgstr ""
506
 
507
  #: includes/admin/common.php:951
508
+ #: languages/vue.php:3465
509
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
510
  msgstr ""
511
 
526
 
527
  #: includes/admin/exclude-page-metabox.php:102
528
  #: languages/gutenberg.php:149
529
+ #: languages/vue.php:2375
530
  msgid "Upgrade"
531
  msgstr ""
532
 
553
  msgid "Dismiss this notice"
554
  msgstr ""
555
 
556
+ #: includes/admin/notification-event.php:256
557
  #: includes/admin/routes.php:870
558
  #: includes/admin/routes.php:1204
559
  msgid "You don't have permission to view MonsterInsights reports."
720
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
721
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
722
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
723
+ #: languages/vue.php:1264
724
  #: lite/includes/admin/helpers.php:83
725
  msgid "Upgrade to MonsterInsights Pro"
726
  msgstr ""
756
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
757
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
758
  #: includes/admin/reports/abstract-report.php:415
759
+ #: languages/vue.php:286
760
  msgid "Upgrade Now"
761
  msgstr ""
762
 
933
  msgstr ""
934
 
935
  #: includes/admin/reports/overview.php:34
936
+ #: languages/vue.php:571
937
  msgid "Overview"
938
  msgstr ""
939
 
1426
  msgstr ""
1427
 
1428
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1429
+ #: languages/vue.php:529
1430
  msgid "General"
1431
  msgstr ""
1432
 
4826
  msgstr ""
4827
 
4828
  #: languages/gutenberg.php:77
4829
+ #: languages/vue.php:512
4830
  msgid "Inline Popular Posts"
4831
  msgstr ""
4832
 
4863
  msgstr ""
4864
 
4865
  #: languages/gutenberg.php:107
4866
+ #: languages/vue.php:2969
4867
  msgid "Wide-Layout Options"
4868
  msgstr ""
4869
 
4872
  msgstr ""
4873
 
4874
  #: languages/gutenberg.php:113
4875
+ #: languages/vue.php:2972
4876
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4877
  msgstr ""
4878
 
4879
  #: languages/gutenberg.php:116
4880
+ #: languages/vue.php:2993
4881
  msgid "Post Count"
4882
  msgstr ""
4883
 
4886
  msgstr ""
4887
 
4888
  #: languages/gutenberg.php:122
4889
+ #: languages/vue.php:2975
4890
  msgid "Display Options"
4891
  msgstr ""
4892
 
4899
  msgstr ""
4900
 
4901
  #: languages/gutenberg.php:131
4902
+ #: languages/vue.php:2791
4903
  msgid "Widget Title"
4904
  msgstr ""
4905
 
4908
  msgstr ""
4909
 
4910
  #: languages/gutenberg.php:137
4911
+ #: languages/vue.php:2981
4912
  msgid "Display Author"
4913
  msgstr ""
4914
 
4915
  #: languages/gutenberg.php:140
4916
+ #: languages/vue.php:2984
4917
  msgid "Display Date"
4918
  msgstr ""
4919
 
4920
  #: languages/gutenberg.php:143
4921
+ #: languages/vue.php:2987
4922
  msgid "Display Comments"
4923
  msgstr ""
4924
 
5139
  msgstr ""
5140
 
5141
  #: languages/gutenberg.php:324
5142
+ #: languages/vue.php:864
5143
  msgid "Headline Analyzer"
5144
  msgstr ""
5145
 
5159
  msgid "2"
5160
  msgstr ""
5161
 
5162
+ #: languages/vue.php:14
5163
  msgid "Error"
5164
  msgstr ""
5165
 
5166
+ #: languages/vue.php:17
5167
  msgid "Please try again."
5168
  msgstr ""
5169
 
5170
+ #: languages/vue.php:20
5171
  msgid "Today"
5172
  msgstr ""
5173
 
5174
+ #: languages/vue.php:23
5175
  msgid "Yesterday"
5176
  msgstr ""
5177
 
5178
+ #: languages/vue.php:26
5179
  msgid "Last Week"
5180
  msgstr ""
5181
 
5182
+ #: languages/vue.php:29
5183
  msgid "Last Month"
5184
  msgstr ""
5185
 
5186
+ #: languages/vue.php:32
5187
  msgid "Last 7 days"
5188
  msgstr ""
5189
 
5190
+ #: languages/vue.php:36
5191
  msgid "Last 30 days"
5192
  msgstr ""
5193
 
5194
+ #: languages/vue.php:39
5195
  msgid "Loading settings"
5196
  msgstr ""
5197
 
5198
+ #: languages/vue.php:42
5199
  msgid "Loading new report data"
5200
  msgstr ""
5201
 
5202
+ #: languages/vue.php:46
5203
  msgid "Please wait..."
5204
  msgstr ""
5205
 
5206
  #. Translators: Adds an arrow icon.
5207
+ #: languages/vue.php:50
5208
  msgid "Continue %s"
5209
  msgstr ""
5210
 
5211
+ #: languages/vue.php:53
5212
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5213
  msgstr ""
5214
 
5215
+ #: languages/vue.php:56
5216
  msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5217
  msgstr ""
5218
 
5219
+ #: languages/vue.php:59
5220
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5221
  msgstr ""
5222
 
5223
+ #: languages/vue.php:62
5224
  msgid "Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions."
5225
  msgstr ""
5226
 
5227
+ #: languages/vue.php:65
5228
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5229
  msgstr ""
5230
 
5231
+ #: languages/vue.php:68
5232
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5233
  msgstr ""
5234
 
5235
+ #: languages/vue.php:71
5236
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5237
  msgstr ""
5238
 
5239
+ #: languages/vue.php:74
5240
  msgid "Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
5241
  msgstr ""
5242
 
5243
+ #: languages/vue.php:77
5244
  msgid "Unlock the Forms Report and Improve Conversions"
5245
  msgstr ""
5246
 
5247
+ #: languages/vue.php:80
5248
  msgid "Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data."
5249
  msgstr ""
5250
 
5251
+ #: languages/vue.php:83
5252
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5253
  msgstr ""
5254
 
5255
+ #: languages/vue.php:86
5256
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5257
  msgstr ""
5258
 
5259
+ #: languages/vue.php:89
5260
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5261
  msgstr ""
5262
 
5263
+ #: languages/vue.php:92
5264
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it."
5265
  msgstr ""
5266
 
5267
+ #: languages/vue.php:95
5268
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5269
  msgstr ""
5270
 
5271
+ #: languages/vue.php:98
5272
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5273
  msgstr ""
5274
 
5275
+ #: languages/vue.php:101
5276
  msgid "Loading Settings"
5277
  msgstr ""
5278
 
5279
+ #: languages/vue.php:104
5280
  msgid "Saving Changes..."
5281
  msgstr ""
5282
 
5283
+ #: languages/vue.php:107
5284
  msgid "Settings Updated"
5285
  msgstr ""
5286
 
5287
  #. Translators: Adds a link to the settings panel.
5288
+ #: languages/vue.php:111
5289
  msgid "You need to %1$sconnect MonsterInsights%2$s first"
5290
  msgstr ""
5291
 
5292
+ #: languages/vue.php:114
5293
  msgid "Could Not Save Changes"
5294
  msgstr ""
5295
 
5296
+ #: languages/vue.php:117
5297
  msgid "Refreshing Report"
5298
  msgstr ""
5299
 
5300
+ #: languages/vue.php:120
5301
  msgid "Loading new report data..."
5302
  msgstr ""
5303
 
5304
+ #: languages/vue.php:123
5305
  msgid "See Your Top Landing Pages to Improve Engagement"
5306
  msgstr ""
5307
 
5308
+ #: languages/vue.php:126
5309
  msgid "See Your Top Exit Pages to Reduce Abandonment"
5310
  msgstr ""
5311
 
5312
+ #: languages/vue.php:129
5313
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
5314
  msgstr ""
5315
 
5316
+ #: languages/vue.php:132
5317
  msgid "See Your Top Affiliate Links and Focus on What's Working"
5318
  msgstr ""
5319
 
5320
+ #: languages/vue.php:135
5321
  msgid "See Your Top Downloads and Improve Conversions"
5322
  msgstr ""
5323
 
5324
+ #: languages/vue.php:138
5325
  msgid "See Audience Demographic Report ( Age / Gender / Interests )"
5326
  msgstr ""
5327
 
5328
+ #: languages/vue.php:141
5329
  msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5330
  msgstr ""
5331
 
5332
+ #: languages/vue.php:144
5333
  msgid "See Your Conversion Rate to Improve Your Funnel"
5334
  msgstr ""
5335
 
5336
+ #: languages/vue.php:147
5337
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
5338
  msgstr ""
5339
 
5340
+ #: languages/vue.php:150
5341
  msgid "See The Total Revenue to Track Growth"
5342
  msgstr ""
5343
 
5344
+ #: languages/vue.php:153
5345
  msgid "See Average Order Value to Find Offer Opportunities"
5346
  msgstr ""
5347
 
5348
+ #: languages/vue.php:156
5349
  msgid "See Your Top Products to See Individual Performance"
5350
  msgstr ""
5351
 
5352
+ #: languages/vue.php:159
5353
  msgid "See Your Top Conversion Sources and Focus on What's Working"
5354
  msgstr ""
5355
 
5356
+ #: languages/vue.php:162
5357
  msgid "See The Time it Takes for Customers to Purchase"
5358
  msgstr ""
5359
 
5360
+ #: languages/vue.php:165
5361
  msgid "See How Many Sessions are Needed for a Purchase"
5362
  msgstr ""
5363
 
5364
+ #: languages/vue.php:168
5365
  msgid "See Which Authors Generate the Most Traffic"
5366
  msgstr ""
5367
 
5368
+ #: languages/vue.php:171
5369
  msgid "See Which Post Types Perform Better"
5370
  msgstr ""
5371
 
5372
+ #: languages/vue.php:174
5373
  msgid "See Which Categories are the Most Popular"
5374
  msgstr ""
5375
 
5376
+ #: languages/vue.php:177
5377
  msgid "See Your Blog's Most Popular SEO Scores"
5378
  msgstr ""
5379
 
5380
+ #: languages/vue.php:180
5381
  msgid "See Which Focus Keyword is Performing Better in Search Engines"
5382
  msgstr ""
5383
 
5384
+ #: languages/vue.php:183
5385
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
5386
  msgstr ""
5387
 
5388
+ #: languages/vue.php:186
5389
  msgid "See Your Top Converting Forms and Optimize"
5390
  msgstr ""
5391
 
5392
+ #: languages/vue.php:189
5393
  msgid "See Your Forms Impressions Count to Find the Best Placement"
5394
  msgstr ""
5395
 
5396
+ #: languages/vue.php:192
5397
  msgid "See Your Top Google Search Terms and Optimize Content"
5398
  msgstr ""
5399
 
5400
+ #: languages/vue.php:195
5401
  msgid "See The Number of Clicks and Track Interests"
5402
  msgstr ""
5403
 
5404
+ #: languages/vue.php:198
5405
  msgid "See The Click-Through-Ratio and Improve SEO"
5406
  msgstr ""
5407
 
5408
+ #: languages/vue.php:201
5409
  msgid "See The Average Results Position and Focus on what works"
5410
  msgstr ""
5411
 
5412
+ #: languages/vue.php:204
5413
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
5414
  msgstr ""
5415
 
5416
+ #: languages/vue.php:207
5417
  msgid "See Your Top Pages Immediately After Making Changes"
5418
  msgstr ""
5419
 
5420
+ #: languages/vue.php:210
5421
  msgid "See Your Top Referral Sources and Adapt Faster"
5422
  msgstr ""
5423
 
5424
+ #: languages/vue.php:213
5425
  msgid "See Your Traffic Demographics"
5426
  msgstr ""
5427
 
5428
+ #: languages/vue.php:216
5429
  msgid "Get Fresh Report Data Every 60 Seconds"
5430
  msgstr ""
5431
 
5432
+ #: languages/vue.php:219
5433
  msgid "See Your Homepage's Overall Performance Score"
5434
  msgstr ""
5435
 
5436
+ #: languages/vue.php:222
5437
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
5438
  msgstr ""
5439
 
5440
+ #: languages/vue.php:225
5441
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
5442
  msgstr ""
5443
 
5444
+ #: languages/vue.php:228
5445
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
5446
  msgstr ""
5447
 
5448
  #. Translators: Number of visitors.
5449
+ #: languages/vue.php:232
5450
  msgid "See how %s visitors found your site!"
5451
  msgstr ""
5452
 
5453
  #. Translators: Number of visitors.
5454
+ #: languages/vue.php:236
5455
  msgid "Your website was visited by %s users in the last 30 days."
5456
  msgstr ""
5457
 
5458
+ #: languages/vue.php:239
5459
  msgid "See the full analytics report!"
5460
  msgstr ""
5461
 
5462
+ #: languages/vue.php:242
5463
  msgid "Congratulations! "
5464
  msgstr ""
5465
 
5466
+ #: languages/vue.php:245
5467
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5468
  msgstr ""
5469
 
5470
+ #: languages/vue.php:252
5471
  msgid "Overview Report"
5472
  msgstr ""
5473
 
5474
+ #: languages/vue.php:255
5475
  #: lite/includes/admin/welcome.php:56
5476
  #: lite/includes/admin/welcome.php:57
5477
  msgid "Welcome to MonsterInsights"
5478
  msgstr ""
5479
 
5480
+ #: languages/vue.php:258
5481
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5482
  msgstr ""
5483
 
5484
+ #: languages/vue.php:261
5485
  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."
5486
  msgstr ""
5487
 
5488
+ #: languages/vue.php:264
5489
  msgid "Launch the Wizard!"
5490
  msgstr ""
5491
 
5492
+ #: languages/vue.php:267
5493
  msgid "Read the Full Guide"
5494
  msgstr ""
5495
 
5496
+ #: languages/vue.php:270
5497
  msgid "MonsterInsights Features & Addons"
5498
  msgstr ""
5499
 
5500
+ #: languages/vue.php:273
5501
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5502
  msgstr ""
5503
 
5504
+ #: languages/vue.php:276
5505
  msgid "See All Features"
5506
  msgstr ""
5507
 
5508
+ #: languages/vue.php:279
5509
  msgid "Upgrade to PRO"
5510
  msgstr ""
5511
 
5512
+ #: languages/vue.php:282
5513
  msgid "per year"
5514
  msgstr ""
5515
 
5516
+ #: languages/vue.php:289
5517
  msgid "Testimonials"
5518
  msgstr ""
5519
 
5520
+ #: languages/vue.php:293
5521
  msgid "Universal Tracking"
5522
  msgstr ""
5523
 
5524
+ #: languages/vue.php:296
5525
  msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5526
  msgstr ""
5527
 
5528
+ #: languages/vue.php:299
5529
  msgid "Google Analytics Dashboard"
5530
  msgstr ""
5531
 
5532
+ #: languages/vue.php:302
5533
  msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
5534
  msgstr ""
5535
 
5536
+ #: languages/vue.php:305
5537
  msgid "Real-time Stats"
5538
  msgstr ""
5539
 
5540
+ #: languages/vue.php:308
5541
  msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
5542
  msgstr ""
5543
 
5544
+ #: languages/vue.php:311
5545
  msgid "Enhanced Ecommerce Tracking"
5546
  msgstr ""
5547
 
5548
+ #: languages/vue.php:314
5549
  msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
5550
  msgstr ""
5551
 
5552
+ #: languages/vue.php:317
5553
  msgid "Page Level Analytics"
5554
  msgstr ""
5555
 
5556
+ #: languages/vue.php:320
5557
  msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5558
  msgstr ""
5559
 
5560
+ #: languages/vue.php:323
5561
  msgid "Affiliate Link & Ads Tracking"
5562
  msgstr ""
5563
 
5564
+ #: languages/vue.php:326
5565
  msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5566
  msgstr ""
5567
 
5568
+ #: languages/vue.php:329
5569
  msgid "EU Compliance (GDPR Friendly)"
5570
  msgstr ""
5571
 
5572
+ #: languages/vue.php:332
5573
  msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5574
  msgstr ""
5575
 
5576
+ #: languages/vue.php:335
5577
  msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
5578
  msgstr ""
5579
 
5580
+ #: languages/vue.php:338
5581
  msgid "Ecommerce Report"
5582
  msgstr ""
5583
 
5584
+ #: languages/vue.php:341
5585
  msgid "Form Conversions"
5586
  msgstr ""
5587
 
5588
+ #: languages/vue.php:345
5589
  msgid "Custom Dimensions"
5590
  msgstr ""
5591
 
5592
+ #: languages/vue.php:348
5593
  msgid "Author Tracking"
5594
  msgstr ""
5595
 
5596
+ #: languages/vue.php:351
5597
  msgid "Google Optimize"
5598
  msgstr ""
5599
 
5600
+ #: languages/vue.php:354
5601
  msgid "Category / Tags Tracking"
5602
  msgstr ""
5603
 
5604
+ #: languages/vue.php:357
5605
  msgid "WooCommerce"
5606
  msgstr ""
5607
 
5608
+ #: languages/vue.php:361
5609
  msgid "Easy Digital Downloads"
5610
  msgstr ""
5611
 
5612
+ #: languages/vue.php:365
5613
  msgid "MemberPress"
5614
  msgstr ""
5615
 
5616
+ #: languages/vue.php:368
5617
  msgid "LifterLMS"
5618
  msgstr ""
5619
 
5620
  #. Translators: Current PHP version and recommended PHP version.
5621
+ #: languages/vue.php:372
5622
  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."
5623
  msgstr ""
5624
 
5625
  #. Translators: Current WordPress version.
5626
+ #: languages/vue.php:376
5627
  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."
5628
  msgstr ""
5629
 
5630
+ #: languages/vue.php:379
5631
  msgid "Yikes! PHP Update Required"
5632
  msgstr ""
5633
 
5634
  #. Translators: Current PHP version and recommended PHP version.
5635
+ #: languages/vue.php:383
5636
  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."
5637
  msgstr ""
5638
 
5639
+ #: languages/vue.php:386
5640
  msgid "Learn more about updating PHP"
5641
  msgstr ""
5642
 
5643
+ #: languages/vue.php:389
5644
  msgid "Yikes! WordPress Update Required"
5645
  msgstr ""
5646
 
5647
  #. Translators: Current WordPress version.
5648
+ #: languages/vue.php:393
5649
  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."
5650
  msgstr ""
5651
 
5652
+ #: languages/vue.php:396
5653
  msgid "Learn more about updating WordPress"
5654
  msgstr ""
5655
 
5656
+ #: languages/vue.php:399
5657
  msgid "MonsterInsights encountered an error loading your report data"
5658
  msgstr ""
5659
 
5660
+ #: languages/vue.php:402
5661
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5662
  msgstr ""
5663
 
5664
+ #: languages/vue.php:405
5665
  msgid "Reconnect MonsterInsights"
5666
  msgstr ""
5667
 
5668
+ #: languages/vue.php:408
5669
  msgid "Re-Authenticating"
5670
  msgstr ""
5671
 
5672
+ #: languages/vue.php:412
5673
  msgid "Ok"
5674
  msgstr ""
5675
 
5676
+ #: languages/vue.php:415
5677
  msgid "See Quick Links"
5678
  msgstr ""
5679
 
5680
+ #: languages/vue.php:418
5681
  msgid "Suggest a Feature"
5682
  msgstr ""
5683
 
5684
+ #: languages/vue.php:421
5685
  msgid "Join Our Community"
5686
  msgstr ""
5687
 
5688
+ #: languages/vue.php:424
5689
  msgid "Support & Docs"
5690
  msgstr ""
5691
 
5692
+ #: languages/vue.php:427
5693
  msgid "Upgrade to Pro &#187;"
5694
  msgstr ""
5695
 
5696
  #. Translators: Placeholder is replaced with WPForms.
5697
+ #: languages/vue.php:431
5698
  msgid "Recommended Plugin: %s"
5699
  msgstr ""
5700
 
5701
+ #: languages/vue.php:434
5702
  msgid "Install"
5703
  msgstr ""
5704
 
5705
+ #: languages/vue.php:437
5706
  msgid "Activate"
5707
  msgstr ""
5708
 
5709
+ #: languages/vue.php:443
5710
  msgid "Powered by MonsterInsights"
5711
  msgstr ""
5712
 
5713
+ #: languages/vue.php:446
5714
  #: lite/includes/admin/wp-site-health.php:253
5715
  msgid "View Reports"
5716
  msgstr ""
5717
 
5718
+ #: languages/vue.php:449
5719
  msgid "Congratulations!"
5720
  msgstr ""
5721
 
5722
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5723
+ #: languages/vue.php:453
5724
  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."
5725
  msgstr ""
5726
 
5727
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5728
+ #: languages/vue.php:457
5729
  msgid "Onboarding Wizard"
5730
  msgstr ""
5731
 
5732
+ #: languages/vue.php:460
5733
  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."
5734
  msgstr ""
5735
 
5736
+ #: languages/vue.php:463
5737
  msgid "Save Changes"
5738
  msgstr ""
5739
 
5740
+ #: languages/vue.php:466
5741
  msgid "Inbox"
5742
  msgstr ""
5743
 
5744
+ #: languages/vue.php:469
5745
  msgid "Back to Inbox"
5746
  msgstr ""
5747
 
5748
+ #: languages/vue.php:472
5749
  msgid "View Dismissed"
5750
  msgstr ""
5751
 
5752
+ #: languages/vue.php:475
5753
  msgid "Notifications"
5754
  msgstr ""
5755
 
5756
+ #: languages/vue.php:478
5757
  msgid "Dismiss All"
5758
  msgstr ""
5759
 
5760
+ #: languages/vue.php:481
5761
  msgid "Dismissed"
5762
  msgstr ""
5763
 
5764
+ #: languages/vue.php:484
5765
  msgid "No Notifications"
5766
  msgstr ""
5767
 
5768
+ #: languages/vue.php:496
5769
  msgid "Import Export"
5770
  msgstr ""
5771
 
5772
+ #: languages/vue.php:499
5773
  msgid "PrettyLinks Integration"
5774
  msgstr ""
5775
 
5776
+ #: languages/vue.php:505
5777
  msgid "Getting Started"
5778
  msgstr ""
5779
 
5780
+ #: languages/vue.php:508
5781
  msgid "Lite vs Pro"
5782
  msgstr ""
5783
 
5784
+ #: languages/vue.php:516
5785
  msgid "Popular Posts Widget"
5786
  msgstr ""
5787
 
5788
+ #: languages/vue.php:520
5789
  msgid "Popular Products"
5790
  msgstr ""
5791
 
5792
+ #: languages/vue.php:526
5793
  msgid "Sub menu item for WooCommerce Analytics"
5794
  msgstr ""
5795
 
5796
+ #: languages/vue.php:532
5797
  msgid "Engagement"
5798
  msgstr ""
5799
 
5800
+ #: languages/vue.php:535
5801
  #: lite/includes/admin/reports/report-ecommerce.php:22
5802
  msgid "eCommerce"
5803
  msgstr ""
5804
 
5805
+ #: languages/vue.php:538
5806
  msgid "Publisher"
5807
  msgstr ""
5808
 
5809
+ #: languages/vue.php:541
5810
  msgid "Conversions"
5811
  msgstr ""
5812
 
5813
+ #: languages/vue.php:544
5814
  msgid "Advanced"
5815
  msgstr ""
5816
 
5817
+ #: languages/vue.php:547
5818
  msgid "URL Builder"
5819
  msgstr ""
5820
 
5821
+ #: languages/vue.php:550
5822
  msgid "MonsterInsights Addons"
5823
  msgstr ""
5824
 
5825
+ #: languages/vue.php:553
5826
  msgid "Search Addons"
5827
  msgstr ""
5828
 
5829
+ #: languages/vue.php:556
5830
  msgid "Exit Setup"
5831
  msgstr ""
5832
 
5833
+ #: languages/vue.php:559
5834
  msgid "You must connect with MonsterInsights before you can view reports."
5835
  msgstr ""
5836
 
5837
+ #: languages/vue.php:562
5838
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5839
  msgstr ""
5840
 
5841
+ #: languages/vue.php:565
5842
  msgid "Launch Setup Wizard"
5843
  msgstr ""
5844
 
5845
+ #: languages/vue.php:568
5846
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
5847
  msgstr ""
5848
 
5849
+ #: languages/vue.php:574
5850
  #: lite/includes/admin/reports/report-publisher.php:22
5851
  msgid "Publishers"
5852
  msgstr ""
5853
 
5854
+ #: languages/vue.php:577
5855
  #: lite/includes/admin/reports/report-queries.php:22
5856
  msgid "Search Console"
5857
  msgstr ""
5858
 
5859
+ #: languages/vue.php:581
5860
  #: lite/includes/admin/reports/report-dimensions.php:22
5861
  msgid "Dimensions"
5862
  msgstr ""
5863
 
5864
+ #: languages/vue.php:584
5865
  #: lite/includes/admin/reports/report-forms.php:22
5866
  msgid "Forms"
5867
  msgstr ""
5868
 
5869
+ #: languages/vue.php:587
5870
  msgid "Real-Time"
5871
  msgstr ""
5872
 
5873
+ #: languages/vue.php:590
5874
  msgid "Site Speed"
5875
  msgstr ""
5876
 
5877
+ #: languages/vue.php:593
5878
  msgid "2020 Year in Review"
5879
  msgstr ""
5880
 
5881
  #. Translators: Error status and error text.
5882
+ #: languages/vue.php:597
5883
  msgid "Can't load report data. Error: %1$s, %2$s"
5884
  msgstr ""
5885
 
5886
+ #: languages/vue.php:600
5887
  msgid "Error loading report data"
5888
  msgstr ""
5889
 
5890
+ #: languages/vue.php:603
5891
  msgid "Publishers Report"
5892
  msgstr ""
5893
 
5894
+ #: languages/vue.php:607
5895
  msgid "eCommerce Report"
5896
  msgstr ""
5897
 
5898
+ #: languages/vue.php:610
5899
  msgid "Search Console Report"
5900
  msgstr ""
5901
 
5902
+ #: languages/vue.php:613
5903
  msgid "Dimensions Report"
5904
  msgstr ""
5905
 
5906
+ #: languages/vue.php:616
5907
  msgid "Forms Report"
5908
  msgstr ""
5909
 
5910
+ #: languages/vue.php:619
5911
  msgid "Real-Time Report"
5912
  msgstr ""
5913
 
5914
+ #: languages/vue.php:622
5915
  msgid "Site Speed Report"
5916
  msgstr ""
5917
 
5918
+ #: languages/vue.php:625
5919
  msgid "Time to Purchase"
5920
  msgstr ""
5921
 
5922
+ #: languages/vue.php:628
5923
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5924
  msgstr ""
5925
 
5926
+ #: languages/vue.php:631
5927
  msgid "Sessions to Purchase"
5928
  msgstr ""
5929
 
5930
+ #: languages/vue.php:634
5931
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5932
  msgstr ""
5933
 
5934
+ #: languages/vue.php:637
5935
  msgid "New Customers"
5936
  msgstr ""
5937
 
5938
+ #: languages/vue.php:640
5939
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5940
  msgstr ""
5941
 
5942
+ #: languages/vue.php:643
5943
  msgid "Abandoned Checkouts"
5944
  msgstr ""
5945
 
5946
+ #: languages/vue.php:646
5947
  msgid "This list shows the percentage of carts that never went through the checkout process."
5948
  msgstr ""
5949
 
5950
+ #: languages/vue.php:649
5951
  msgid "Top Posts/Pages"
5952
  msgstr ""
5953
 
5954
+ #: languages/vue.php:652
5955
  msgid "This list shows the most viewed posts and pages on your website."
5956
  msgstr ""
5957
 
5958
+ #: languages/vue.php:655
5959
  msgid "New vs. Returning Visitors"
5960
  msgstr ""
5961
 
5962
+ #: languages/vue.php:658
5963
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5964
  msgstr ""
5965
 
5966
+ #: languages/vue.php:661
5967
  msgid "Device Breakdown"
5968
  msgstr ""
5969
 
5970
+ #: languages/vue.php:664
5971
  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."
5972
  msgstr ""
5973
 
5974
+ #: languages/vue.php:667
5975
  msgid "Top Landing Pages"
5976
  msgstr ""
5977
 
5978
+ #: languages/vue.php:670
5979
  msgid "This list shows the top pages users first land on when visiting your website."
5980
  msgstr ""
5981
 
5982
+ #: languages/vue.php:673
5983
  msgid "Top Exit Pages"
5984
  msgstr ""
5985
 
5986
+ #: languages/vue.php:676
5987
  msgid "This list shows the top pages users exit your website from."
5988
  msgstr ""
5989
 
5990
+ #: languages/vue.php:679
5991
  msgid "Top Outbound Links"
5992
  msgstr ""
5993
 
5994
+ #: languages/vue.php:682
5995
  msgid "This list shows the top links clicked on your website that go to another website."
5996
  msgstr ""
5997
 
5998
+ #: languages/vue.php:685
5999
  msgid "Top Affiliate Links"
6000
  msgstr ""
6001
 
6002
+ #: languages/vue.php:688
6003
  msgid "This list shows the top affiliate links your visitors clicked on."
6004
  msgstr ""
6005
 
6006
+ #: languages/vue.php:691
6007
  msgid "Top Download Links"
6008
  msgstr ""
6009
 
6010
+ #: languages/vue.php:694
6011
  msgid "This list shows the download links your visitors clicked the most."
6012
  msgstr ""
6013
 
6014
+ #: languages/vue.php:697
6015
  msgid "Top Products"
6016
  msgstr ""
6017
 
6018
+ #: languages/vue.php:700
6019
  msgid "This list shows the top selling products on your website."
6020
  msgstr ""
6021
 
6022
+ #: languages/vue.php:703
6023
  msgid "Top Conversion Sources"
6024
  msgstr ""
6025
 
6026
+ #: languages/vue.php:706
6027
  msgid "This list shows the top referral websites in terms of product revenue."
6028
  msgstr ""
6029
 
6030
+ #: languages/vue.php:709
6031
  msgid "Total Add/Remove"
6032
  msgstr ""
6033
 
6034
  #. Translators: Adds a link to documentation.
6035
+ #: languages/vue.php:723
6036
  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"
6037
  msgstr ""
6038
 
6039
  #. Translators: Adds link to activate/install plugin and documentation.
6040
+ #: languages/vue.php:727
6041
  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"
6042
  msgstr ""
6043
 
6044
  #. Translators: Adds a link to documentation.
6045
+ #: languages/vue.php:731
6046
  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"
6047
  msgstr ""
6048
 
6049
  #. Translators: Adds link to activate/install plugin and documentation.
6050
+ #: languages/vue.php:735
6051
  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"
6052
  msgstr ""
6053
 
6054
+ #: languages/vue.php:738
6055
  msgid "GDPR Guide"
6056
  msgstr ""
6057
 
6058
+ #: languages/vue.php:741
6059
  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. "
6060
  msgstr ""
6061
 
6062
+ #: languages/vue.php:744
6063
  msgid "How to Install and Activate MonsterInsights Addons"
6064
  msgstr ""
6065
 
6066
+ #: languages/vue.php:747
6067
  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."
6068
  msgstr ""
6069
 
6070
+ #: languages/vue.php:750
6071
  msgid "Enabling eCommerce Tracking and Reports"
6072
  msgstr ""
6073
 
6074
+ #: languages/vue.php:753
6075
  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."
6076
  msgstr ""
6077
 
6078
+ #: languages/vue.php:756
6079
  msgid "Read Documentation"
6080
  msgstr ""
6081
 
6082
+ #: languages/vue.php:759
6083
  msgid "Getting Started with MonsterInsights"
6084
  msgstr ""
6085
 
6086
+ #: languages/vue.php:762
6087
  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."
6088
  msgstr ""
6089
 
6090
+ #: languages/vue.php:765
6091
  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."
6092
  msgstr ""
6093
 
6094
+ #: languages/vue.php:768
6095
  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!."
6096
  msgstr ""
6097
 
6098
+ #: languages/vue.php:771
6099
  msgid "Launch the wizard!"
6100
  msgstr ""
6101
 
6102
+ #: languages/vue.php:774
6103
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6104
  msgstr ""
6105
 
6106
  #. Translators: Makes text bold.
6107
+ #: languages/vue.php:778
6108
  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."
6109
  msgstr ""
6110
 
6111
+ #: languages/vue.php:781
6112
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
6113
  msgstr ""
6114
 
6115
+ #: languages/vue.php:784
6116
  msgid "See your website analytics reports inside the WordPress dashboard"
6117
  msgstr ""
6118
 
6119
+ #: languages/vue.php:787
6120
  msgid "Get real-time stats right inside WordPress"
6121
  msgstr ""
6122
 
6123
+ #: languages/vue.php:790
6124
  msgid "1-click Google Analytics Enhanced eCommerce tracking"
6125
  msgstr ""
6126
 
6127
+ #: languages/vue.php:793
6128
  msgid "Get detailed stats for each post and page."
6129
  msgstr ""
6130
 
6131
+ #: languages/vue.php:796
6132
  msgid "Automatically track clicks on your affiliate links and ads."
6133
  msgstr ""
6134
 
6135
+ #: languages/vue.php:799
6136
  msgid "Make Google Analytics GDPR compliant automatically"
6137
  msgstr ""
6138
 
6139
+ #: languages/vue.php:802
6140
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6141
  msgstr ""
6142
 
6143
+ #: languages/vue.php:805
6144
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6145
  msgstr ""
6146
 
6147
+ #: languages/vue.php:808
6148
  msgid "More advanced features"
6149
  msgstr ""
6150
 
6151
+ #: languages/vue.php:811
6152
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6153
  msgstr ""
6154
 
6155
  #. Translators: Makes text green.
6156
+ #: languages/vue.php:815
6157
  msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6158
  msgstr ""
6159
 
6160
+ #: languages/vue.php:818
6161
  msgid "How to Connect to Google Analytics"
6162
  msgstr ""
6163
 
6164
+ #: languages/vue.php:821
6165
  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."
6166
  msgstr ""
6167
 
6168
+ #: languages/vue.php:824
6169
  msgid "Guide and Checklist for Advanced Insights"
6170
  msgstr ""
6171
 
6172
+ #: languages/vue.php:827
6173
  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."
6174
  msgstr ""
6175
 
6176
+ #: languages/vue.php:830
6177
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6178
  msgstr ""
6179
 
6180
+ #: languages/vue.php:833
6181
  msgid "WordPress Admin Area Reports"
6182
  msgstr ""
6183
 
6184
+ #: languages/vue.php:836
6185
  msgid "Standard Reports"
6186
  msgstr ""
6187
 
6188
+ #: languages/vue.php:839
6189
  msgid "Overview Reports for the last 30 days."
6190
  msgstr ""
6191
 
6192
+ #: languages/vue.php:842
6193
  msgid "Advanced Reports"
6194
  msgstr ""
6195
 
6196
+ #: languages/vue.php:845
6197
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6198
  msgstr ""
6199
 
6200
+ #: languages/vue.php:848
6201
  msgid "Dashboard Widget"
6202
  msgstr ""
6203
 
6204
+ #: languages/vue.php:851
6205
  msgid "Basic Widget"
6206
  msgstr ""
6207
 
6208
+ #: languages/vue.php:854
6209
  msgid "Overview Report Synopsis"
6210
  msgstr ""
6211
 
6212
+ #: languages/vue.php:857
6213
  msgid "Advanced Dashboard Widget"
6214
  msgstr ""
6215
 
6216
+ #: languages/vue.php:860
6217
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6218
  msgstr ""
6219
 
6220
+ #: languages/vue.php:867
6221
  msgid "Email Summaries"
6222
  msgstr ""
6223
 
6224
+ #: languages/vue.php:870
6225
  msgid "Included"
6226
  msgstr ""
6227
 
6228
+ #: languages/vue.php:873
6229
  msgid "Get weekly traffic reports directly in your inbox."
6230
  msgstr ""
6231
 
6232
+ #: languages/vue.php:876
6233
  msgid "Publisher Reports"
6234
  msgstr ""
6235
 
6236
+ #: languages/vue.php:879
6237
  msgid "Advanced Publisher Reports & Tracking"
6238
  msgstr ""
6239
 
6240
+ #: languages/vue.php:882
6241
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6242
  msgstr ""
6243
 
6244
+ #: languages/vue.php:888
6245
  msgid "Basic Options"
6246
  msgstr ""
6247
 
6248
+ #: languages/vue.php:891
6249
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6250
  msgstr ""
6251
 
6252
+ #: languages/vue.php:894
6253
  msgid "Dynamic Popular Posts & Popular Products"
6254
  msgstr ""
6255
 
6256
+ #: languages/vue.php:897
6257
  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."
6258
  msgstr ""
6259
 
6260
+ #: languages/vue.php:900
6261
  msgid "Not Available"
6262
  msgstr ""
6263
 
6264
+ #: languages/vue.php:903
6265
  msgid "Complete Custom Dimensions Tracking"
6266
  msgstr ""
6267
 
6268
+ #: languages/vue.php:906
6269
  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"
6270
  msgstr ""
6271
 
6272
+ #: languages/vue.php:912
6273
  msgid "Limited Support"
6274
  msgstr ""
6275
 
6276
+ #: languages/vue.php:915
6277
  msgid "Priority Support"
6278
  msgstr ""
6279
 
6280
+ #: languages/vue.php:918
6281
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
6282
  msgstr ""
6283
 
6284
+ #: languages/vue.php:921
6285
  msgid "Feature"
6286
  msgstr ""
6287
 
6288
+ #: languages/vue.php:924
6289
  msgid "Lite"
6290
  msgstr ""
6291
 
6292
+ #: languages/vue.php:927
6293
  msgid "Pro"
6294
  msgstr ""
6295
 
6296
+ #: languages/vue.php:930
6297
  msgid "Custom Google Analytics Link Tracking"
6298
  msgstr ""
6299
 
6300
+ #: languages/vue.php:933
6301
  msgid "Standard Tracking"
6302
  msgstr ""
6303
 
6304
+ #: languages/vue.php:936
6305
  msgid "Advanced Tracking"
6306
  msgstr ""
6307
 
6308
+ #: languages/vue.php:939
6309
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6310
  msgstr ""
6311
 
6312
+ #: languages/vue.php:942
6313
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6314
  msgstr ""
6315
 
6316
+ #: languages/vue.php:945
6317
  msgid "No-Code-Needed Tracking Features"
6318
  msgstr ""
6319
 
6320
+ #: languages/vue.php:948
6321
  msgid "Basic Tracking Options"
6322
  msgstr ""
6323
 
6324
+ #: languages/vue.php:951
6325
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6326
  msgstr ""
6327
 
6328
+ #: languages/vue.php:954
6329
  msgid "Advanced Tracking Options"
6330
  msgstr ""
6331
 
6332
+ #: languages/vue.php:957
6333
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6334
  msgstr ""
6335
 
6336
+ #: languages/vue.php:960
6337
  msgid "eCommerce Tracking"
6338
  msgstr ""
6339
 
6340
+ #: languages/vue.php:963
6341
  msgid "One-click Complete eCommerce tracking"
6342
  msgstr ""
6343
 
6344
+ #: languages/vue.php:966
6345
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6346
  msgstr ""
6347
 
6348
+ #: languages/vue.php:969
6349
  msgid "Forms Tracking"
6350
  msgstr ""
6351
 
6352
+ #: languages/vue.php:972
6353
  msgid "One-click Form Events Tracking"
6354
  msgstr ""
6355
 
6356
+ #: languages/vue.php:975
6357
  msgid "License Key"
6358
  msgstr ""
6359
 
6360
  #. Translators: Add link to retrieve license key from account.
6361
+ #: languages/vue.php:979
6362
  msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6363
  msgstr ""
6364
 
6365
+ #: languages/vue.php:982
6366
  msgid "Google Authentication"
6367
  msgstr ""
6368
 
6369
+ #: languages/vue.php:985
6370
  msgid "Connect Google Analytics + WordPress"
6371
  msgstr ""
6372
 
6373
+ #: languages/vue.php:988
6374
  msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
6375
  msgstr ""
6376
 
6377
+ #: languages/vue.php:991
6378
  msgid "Miscellaneous"
6379
  msgstr ""
6380
 
6381
+ #: languages/vue.php:994
6382
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6383
  msgstr ""
6384
 
6385
+ #: languages/vue.php:997
6386
  msgid "Hide Announcements"
6387
  msgstr ""
6388
 
6389
+ #: languages/vue.php:1000
6390
  msgid "Setup Wizard"
6391
  msgstr ""
6392
 
6393
+ #: languages/vue.php:1003
6394
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6395
  msgstr ""
6396
 
6397
+ #: languages/vue.php:1006
6398
  msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
6399
  msgstr ""
6400
 
6401
+ #: languages/vue.php:1009
6402
  msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
6403
  msgstr ""
6404
 
6405
+ #: languages/vue.php:1012
6406
  msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
6407
  msgstr ""
6408
 
6409
+ #: languages/vue.php:1015
6410
  msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
6411
  msgstr ""
6412
 
6413
+ #: languages/vue.php:1018
6414
  msgid "Yup, we know a thing or two about building awesome products that customers love."
6415
  msgstr ""
6416
 
6417
+ #: languages/vue.php:1021
6418
  msgid "The MonsterInsights Team"
6419
  msgstr ""
6420
 
6421
+ #: languages/vue.php:1024
6422
  msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
6423
  msgstr ""
6424
 
6425
+ #: languages/vue.php:1027
6426
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
6427
  msgstr ""
6428
 
6429
+ #: languages/vue.php:1030
6430
  msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
6431
  msgstr ""
6432
 
6433
+ #: languages/vue.php:1033
6434
  msgid "Over 200,000 websites use Pretty Links!"
6435
  msgstr ""
6436
 
6437
+ #: languages/vue.php:1036
6438
  msgid "Install Pretty Links"
6439
  msgstr ""
6440
 
6441
+ #: languages/vue.php:1039
6442
  msgid "Pretty Links Installed & Activated"
6443
  msgstr ""
6444
 
6445
+ #: languages/vue.php:1042
6446
  msgid "Download Pretty Links"
6447
  msgstr ""
6448
 
6449
+ #: languages/vue.php:1045
6450
  msgid "Install Pretty Links from the WordPress.org plugin repository."
6451
  msgstr ""
6452
 
6453
+ #: languages/vue.php:1048
6454
  msgid "Activate Pretty Links"
6455
  msgstr ""
6456
 
6457
+ #: languages/vue.php:1051
6458
  msgid "Activating Pretty Links..."
6459
  msgstr ""
6460
 
6461
+ #: languages/vue.php:1054
6462
  msgid "Create New Pretty Link"
6463
  msgstr ""
6464
 
6465
+ #: languages/vue.php:1057
6466
  msgid "Create a New Pretty Link"
6467
  msgstr ""
6468
 
6469
+ #: languages/vue.php:1060
6470
  msgid "Grab your campaign link and paste it into the Target URL field."
6471
  msgstr ""
6472
 
6473
+ #: languages/vue.php:1063
6474
  msgid "Custom Campaign Parameters"
6475
  msgstr ""
6476
 
6477
+ #: languages/vue.php:1066
6478
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
6479
  msgstr ""
6480
 
6481
+ #: languages/vue.php:1069
6482
  msgid "A custom campaign is any ad campaign not using the AdWords auto-tagging feature. When users click one of the custom links, the unique parameters are sent to your Analytics account, so you can identify the URLs that are the most effective in attracting users to your content."
6483
  msgstr ""
6484
 
6485
  #. Translators: Marks the field as required.
6486
+ #: languages/vue.php:1073
6487
  msgid "Website URL %s"
6488
  msgstr ""
6489
 
6490
  #. Translators: Display the current website url in italic.
6491
+ #: languages/vue.php:1077
6492
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
6493
  msgstr ""
6494
 
6495
  #. Translators: Marks the field as required.
6496
+ #: languages/vue.php:1081
6497
  msgid "Campaign Source %s"
6498
  msgstr ""
6499
 
6500
  #. Translators: Make the text italic.
6501
+ #: languages/vue.php:1085
6502
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
6503
  msgstr ""
6504
 
6505
  #. Translators: Make the text italic.
6506
+ #: languages/vue.php:1089
6507
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
6508
  msgstr ""
6509
 
6510
  #. Translators: Make the text italic.
6511
+ #: languages/vue.php:1093
6512
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
6513
  msgstr ""
6514
 
6515
+ #: languages/vue.php:1096
6516
  msgid "Enter the paid keyword"
6517
  msgstr ""
6518
 
6519
+ #: languages/vue.php:1099
6520
  msgid "Enter something to differentiate ads"
6521
  msgstr ""
6522
 
6523
+ #: languages/vue.php:1102
6524
  msgid "Use Fragment"
6525
  msgstr ""
6526
 
6527
  #. Translators: Make the text bold.
6528
+ #: languages/vue.php:1106
6529
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
6530
  msgstr ""
6531
 
6532
+ #: languages/vue.php:1109
6533
  msgid "URL to use"
6534
  msgstr ""
6535
 
6536
+ #: languages/vue.php:1112
6537
  msgid "(Updates automatically)"
6538
  msgstr ""
6539
 
6540
+ #: languages/vue.php:1115
6541
  msgid "Copy to Clipboard"
6542
  msgstr ""
6543
 
6544
+ #: languages/vue.php:1118
6545
  msgid "Copy to Pretty Links"
6546
  msgstr ""
6547
 
6548
+ #: languages/vue.php:1121
6549
  msgid "Make your campaign links prettier!"
6550
  msgstr ""
6551
 
6552
+ #: languages/vue.php:1124
6553
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
6554
  msgstr ""
6555
 
6556
+ #: languages/vue.php:1127
6557
  msgid "More Information & Examples"
6558
  msgstr ""
6559
 
6560
+ #: languages/vue.php:1130
6561
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
6562
  msgstr ""
6563
 
6564
+ #: languages/vue.php:1133
6565
  msgid "Campaign Source"
6566
  msgstr ""
6567
 
6568
+ #: languages/vue.php:1136
6569
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
6570
  msgstr ""
6571
 
6572
+ #: languages/vue.php:1139
6573
  msgid "Campaign Medium"
6574
  msgstr ""
6575
 
6576
+ #: languages/vue.php:1142
6577
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
6578
  msgstr ""
6579
 
6580
+ #: languages/vue.php:1145
6581
  msgid "Campaign Name"
6582
  msgstr ""
6583
 
6584
+ #: languages/vue.php:1148
6585
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
6586
  msgstr ""
6587
 
6588
+ #: languages/vue.php:1151
6589
  msgid "Campaign Term"
6590
  msgstr ""
6591
 
6592
+ #: languages/vue.php:1154
6593
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
6594
  msgstr ""
6595
 
6596
+ #: languages/vue.php:1157
6597
  msgid "Campaign Content"
6598
  msgstr ""
6599
 
6600
+ #: languages/vue.php:1160
6601
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
6602
  msgstr ""
6603
 
6604
  #. Translators: Example.
6605
+ #: languages/vue.php:1164
6606
  msgid "Example: %s"
6607
  msgstr ""
6608
 
6609
  #. Translators: Examples.
6610
+ #: languages/vue.php:1168
6611
  msgid "Examples: %s"
6612
  msgstr ""
6613
 
6614
+ #: languages/vue.php:1171
6615
  msgid "About Campaigns"
6616
  msgstr ""
6617
 
6618
+ #: languages/vue.php:1174
6619
  msgid "About Custom Campaigns"
6620
  msgstr ""
6621
 
6622
+ #: languages/vue.php:1177
6623
  msgid "Best Practices for Creating Custom Campaigns"
6624
  msgstr ""
6625
 
6626
+ #: languages/vue.php:1180
6627
  msgid "About the Referral Traffic Report"
6628
  msgstr ""
6629
 
6630
+ #: languages/vue.php:1183
6631
  msgid "About Traffic Source Dimensions"
6632
  msgstr ""
6633
 
6634
+ #: languages/vue.php:1186
6635
  msgid "AdWords Auto-Tagging"
6636
  msgstr ""
6637
 
6638
+ #: languages/vue.php:1189
6639
  msgid "Additional Information"
6640
  msgstr ""
6641
 
6642
+ #: languages/vue.php:1192
6643
  msgid "Import/Export"
6644
  msgstr ""
6645
 
6646
+ #: languages/vue.php:1195
6647
  msgid "Import"
6648
  msgstr ""
6649
 
6650
+ #: languages/vue.php:1198
6651
  msgid "Import settings from another MonsterInsights website."
6652
  msgstr ""
6653
 
6654
+ #: languages/vue.php:1201
6655
  msgid "Export"
6656
  msgstr ""
6657
 
6658
+ #: languages/vue.php:1204
6659
  msgid "Export settings to import into another MonsterInsights install."
6660
  msgstr ""
6661
 
6662
+ #: languages/vue.php:1207
6663
  msgid "Import Settings"
6664
  msgstr ""
6665
 
6666
+ #: languages/vue.php:1210
6667
  msgid "Export Settings"
6668
  msgstr ""
6669
 
6670
+ #: languages/vue.php:1213
6671
  msgid "Please choose a file to import"
6672
  msgstr ""
6673
 
6674
+ #: languages/vue.php:1216
6675
  msgid "Click Choose file below to select the settings export file from another site."
6676
  msgstr ""
6677
 
6678
+ #: languages/vue.php:1219
6679
  msgid "Use the button below to export a file with your MonsterInsights settings."
6680
  msgstr ""
6681
 
6682
+ #: languages/vue.php:1222
6683
  msgid "Uploading file..."
6684
  msgstr ""
6685
 
6686
+ #: languages/vue.php:1225
6687
  msgid "File imported"
6688
  msgstr ""
6689
 
6690
+ #: languages/vue.php:1228
6691
  msgid "Settings successfully updated!"
6692
  msgstr ""
6693
 
6694
+ #: languages/vue.php:1231
6695
  msgid "Error importing settings"
6696
  msgstr ""
6697
 
6698
+ #: languages/vue.php:1234
6699
  msgid "Please choose a .json file generated by a MonsterInsights settings export."
6700
  msgstr ""
6701
 
6702
+ #: languages/vue.php:1237
6703
  msgid "MonsterInsights Recommends WPForms"
6704
  msgstr ""
6705
 
6706
+ #: languages/vue.php:1240
6707
  msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
6708
  msgstr ""
6709
 
6710
+ #: languages/vue.php:1243
6711
  msgid "Used on over 4,000,000 websites!"
6712
  msgstr ""
6713
 
6714
+ #: languages/vue.php:1246
6715
  msgid "WPForms allow you to create beautiful contact forms, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!"
6716
  msgstr ""
6717
 
6718
+ #: languages/vue.php:1249
6719
  msgid "Skip this Step"
6720
  msgstr ""
6721
 
6722
+ #: languages/vue.php:1252
6723
  msgid "Continue & Install WPForms"
6724
  msgstr ""
6725
 
6726
+ #: languages/vue.php:1255
6727
  msgid "Installing..."
6728
  msgstr ""
6729
 
6730
+ #: languages/vue.php:1258
6731
  msgid "Show in widget mode"
6732
  msgstr ""
6733
 
6734
+ #: languages/vue.php:1261
6735
  msgid "Show in full-width mode"
6736
  msgstr ""
6737
 
6738
+ #: languages/vue.php:1267
6739
  msgid "Installing Addon"
6740
  msgstr ""
6741
 
6742
+ #: languages/vue.php:1270
6743
  msgid "Activating Addon"
6744
  msgstr ""
6745
 
6746
+ #: languages/vue.php:1273
6747
  msgid "Addon Activated"
6748
  msgstr ""
6749
 
6750
+ #: languages/vue.php:1276
6751
  msgid "Loading report data"
6752
  msgstr ""
6753
 
6754
+ #: languages/vue.php:1279
6755
  msgid "Please activate manually"
6756
  msgstr ""
6757
 
6758
  #. Translators: Adds the error status and status text.
6759
+ #: languages/vue.php:1283
6760
  msgid "Error: %1$s, %2$s"
6761
  msgstr ""
6762
 
6763
+ #: languages/vue.php:1286
6764
  msgid "Error Activating Addon"
6765
  msgstr ""
6766
 
6767
+ #: languages/vue.php:1289
6768
  #: lite/includes/admin/wp-site-health.php:372
6769
  #: lite/includes/admin/wp-site-health.php:398
6770
  #: lite/includes/admin/wp-site-health.php:425
6771
  msgid "View Addons"
6772
  msgstr ""
6773
 
6774
+ #: languages/vue.php:1292
6775
  msgid "Dismiss"
6776
  msgstr ""
6777
 
6778
+ #: languages/vue.php:1295
6779
  msgid "Redirecting"
6780
  msgstr ""
6781
 
6782
+ #: languages/vue.php:1298
6783
  msgid "Please wait"
6784
  msgstr ""
6785
 
6786
+ #: languages/vue.php:1301
6787
  msgid "activate"
6788
  msgstr ""
6789
 
6790
+ #: languages/vue.php:1304
6791
  msgid "install"
6792
  msgstr ""
6793
 
6794
+ #: languages/vue.php:1307
6795
  msgid "Visit addons page"
6796
  msgstr ""
6797
 
6798
+ #: languages/vue.php:1310
6799
  msgid "Report Unavailable"
6800
  msgstr ""
6801
 
6802
  #. Translators: Install/Activate the addon.
6803
+ #: languages/vue.php:1314
6804
  msgid "%s Addon"
6805
  msgstr ""
6806
 
6807
+ #: languages/vue.php:1317
6808
  msgid "Go Back To Reports"
6809
  msgstr ""
6810
 
6811
+ #: languages/vue.php:1320
6812
  msgid "Enable Enhanced eCommerce"
6813
  msgstr ""
6814
 
6815
  #. Translators: Placeholders are used for making text bold and adding a link.
6816
+ #: languages/vue.php:1324
6817
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6818
  msgstr ""
6819
 
6820
+ #: languages/vue.php:1327
6821
  msgid "Last 30 Days Insights for:"
6822
  msgstr ""
6823
 
6824
+ #: languages/vue.php:1330
6825
  msgid "Your Website"
6826
  msgstr ""
6827
 
6828
+ #: languages/vue.php:1333
6829
  msgid "Sessions"
6830
  msgstr ""
6831
 
6832
+ #: languages/vue.php:1336
6833
  msgid "Pageviews"
6834
  msgstr ""
6835
 
6836
+ #: languages/vue.php:1339
6837
  msgid "Avg. Duration"
6838
  msgstr ""
6839
 
6840
+ #: languages/vue.php:1342
6841
  msgid "Bounce Rate"
6842
  msgstr ""
6843
 
6844
+ #: languages/vue.php:1345
6845
  msgid "Total Users"
6846
  msgstr ""
6847
 
6848
+ #: languages/vue.php:1348
6849
  msgid "More data is available"
6850
  msgstr ""
6851
 
6852
+ #: languages/vue.php:1351
6853
  msgid "Want to see page-specific stats?"
6854
  msgstr ""
6855
 
6856
+ #: languages/vue.php:1354
6857
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6858
  msgstr ""
6859
 
6860
+ #: languages/vue.php:1357
6861
  msgid "No addons found."
6862
  msgstr ""
6863
 
6864
+ #: languages/vue.php:1360
6865
  msgid "Refresh Addons"
6866
  msgstr ""
6867
 
6868
+ #: languages/vue.php:1363
6869
  msgid "Refreshing Addons"
6870
  msgstr ""
6871
 
6872
  #. Translators: Make text green.
6873
+ #: languages/vue.php:1367
6874
  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!"
6875
  msgstr ""
6876
 
6877
+ #: languages/vue.php:1370
6878
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
6879
  msgstr ""
6880
 
6881
+ #: languages/vue.php:1373
6882
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
6883
  msgstr ""
6884
 
6885
+ #: languages/vue.php:1376
6886
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
6887
  msgstr ""
6888
 
6889
+ #: languages/vue.php:1379
6890
  msgid "See All Your Important Store Metrics in One Place"
6891
  msgstr ""
6892
 
6893
+ #: languages/vue.php:1382
6894
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
6895
  msgstr ""
6896
 
6897
+ #: languages/vue.php:1385
6898
  msgid "ONE-CLICK INTEGRATIONS"
6899
  msgstr ""
6900
 
6901
+ #: languages/vue.php:1388
6902
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
6903
  msgstr ""
6904
 
6905
+ #: languages/vue.php:1391
6906
  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."
6907
  msgstr ""
6908
 
6909
+ #: languages/vue.php:1394
6910
  msgid "Affiliate Tracking"
6911
  msgstr ""
6912
 
6913
+ #: languages/vue.php:1397
6914
  msgid "Automatically Track Affiliate Sales"
6915
  msgstr ""
6916
 
6917
+ #: languages/vue.php:1400
6918
  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."
6919
  msgstr ""
6920
 
6921
+ #: languages/vue.php:1403
6922
  msgid "Works with WooCommerce, MemberPress and Easy Digital Downloads."
6923
  msgstr ""
6924
 
6925
+ #: languages/vue.php:1412
6926
  msgid "Cart Funnel"
6927
  msgstr ""
6928
 
6929
+ #: languages/vue.php:1415
6930
  msgid "Customer Insights"
6931
  msgstr ""
6932
 
6933
+ #: languages/vue.php:1418
6934
  msgid "Campaign Measurement"
6935
  msgstr ""
6936
 
6937
+ #: languages/vue.php:1421
6938
  msgid "Customer Profiles"
6939
  msgstr ""
6940
 
6941
+ #: languages/vue.php:1424
6942
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6943
  msgstr ""
6944
 
6945
+ #: languages/vue.php:1427
6946
  msgid "Truly Understand Your%1$s Customers With %2$sMonsterInsights%3$s"
6947
  msgstr ""
6948
 
6949
+ #: languages/vue.php:1430
6950
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from MonsterInsights!"
6951
  msgstr ""
6952
 
6953
+ #: languages/vue.php:1433
6954
  msgid "Track all-new metrics!"
6955
  msgstr ""
6956
 
6957
+ #: languages/vue.php:1436
6958
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6959
  msgstr ""
6960
 
6961
+ #: languages/vue.php:1439
6962
  msgid "FEATURES"
6963
  msgstr ""
6964
 
6965
+ #: languages/vue.php:1442
6966
  msgid "Get The Unique Metrics Neccessary for Growth"
6967
  msgstr ""
6968
 
6969
+ #: languages/vue.php:1445
6970
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6971
  msgstr ""
6972
 
6973
+ #: languages/vue.php:1448
6974
  msgid "Get Answers to the important questions %1$syou should know."
6975
  msgstr ""
6976
 
6977
+ #: languages/vue.php:1451
6978
  msgid "Did the login/registration step of the checkout put users off?"
6979
  msgstr ""
6980
 
6981
+ #: languages/vue.php:1454
6982
  msgid "Which ad campaign is driving the most revenue?"
6983
  msgstr ""
6984
 
6985
+ #: languages/vue.php:1457
6986
  msgid "Who is my typical customer?"
6987
  msgstr ""
6988
 
6989
+ #: languages/vue.php:1460
6990
  msgid "Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s"
6991
  msgstr ""
6992
 
6993
  #. Translators: placeholders make text small.
6994
+ #: languages/vue.php:1464
6995
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
6996
  msgstr ""
6997
 
6998
  #. Translators: placeholders make text small.
6999
+ #: languages/vue.php:1468
7000
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
7001
  msgstr ""
7002
 
7003
  #. Translators: placeholders make text small.
7004
+ #: languages/vue.php:1472
7005
  msgid "None %1$s- Manually update everything.%2$s"
7006
  msgstr ""
7007
 
7008
+ #: languages/vue.php:1475
7009
  msgid "Automatic Updates"
7010
  msgstr ""
7011
 
7012
+ #: languages/vue.php:1478
7013
  msgid "Awesome, You're All Set!"
7014
  msgstr ""
7015
 
7016
+ #: languages/vue.php:1481
7017
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
7018
  msgstr ""
7019
 
7020
  #. Translators: Make text bold.
7021
+ #: languages/vue.php:1485
7022
  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."
7023
  msgstr ""
7024
 
7025
  #. Translators: Link to our blog.
7026
+ #: languages/vue.php:1489
7027
  msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
7028
  msgstr ""
7029
 
7030
+ #: languages/vue.php:1492
7031
  msgid "Finish Setup & Exit Wizard"
7032
  msgstr ""
7033
 
7034
+ #: languages/vue.php:1495
7035
  msgid "Checking your website..."
7036
  msgstr ""
7037
 
7038
+ #: languages/vue.php:1498
7039
  msgid "See All Reports"
7040
  msgstr ""
7041
 
7042
+ #: languages/vue.php:1501
7043
  msgid "Go to the Analytics Dashboard"
7044
  msgstr ""
7045
 
7046
  #. Translators: Placeholder adds a line break.
7047
+ #: languages/vue.php:1505
7048
  msgid "Unique %s Sessions"
7049
  msgstr ""
7050
 
7051
+ #. Translators: Placeholder adds a line break.
7052
+ #: languages/vue.php:1509
7053
  msgid "Unique %s Pageviews"
7054
  msgstr ""
7055
 
7056
+ #: languages/vue.php:1512
7057
  msgid "A session is the browsing session of a single user to your site."
7058
  msgstr ""
7059
 
7060
+ #: languages/vue.php:1515
7061
  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."
7062
  msgstr ""
7063
 
7064
+ #: languages/vue.php:1518
7065
  msgid "Total duration of all sessions (in seconds) / number of sessions."
7066
  msgstr ""
7067
 
7068
+ #: languages/vue.php:1521
7069
  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."
7070
  msgstr ""
7071
 
7072
+ #: languages/vue.php:1524
7073
  msgid "The number of distinct tracked users"
7074
  msgstr ""
7075
 
7076
+ #: languages/vue.php:1527
7077
  msgid "Avg. Session Duration"
7078
  msgstr ""
7079
 
7080
+ #: languages/vue.php:1530
7081
  msgid "Still Calculating..."
7082
  msgstr ""
7083
 
7084
+ #: languages/vue.php:1533
7085
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7086
  msgstr ""
7087
 
7088
+ #: languages/vue.php:1536
7089
  msgid "Back to Overview Report"
7090
  msgstr ""
7091
 
7092
+ #: languages/vue.php:1539
7093
  msgid "Your 2020 Analytics Report"
7094
  msgstr ""
7095
 
7096
+ #: languages/vue.php:1542
7097
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7098
  msgstr ""
7099
 
7100
+ #: languages/vue.php:1545
7101
  msgid "Audience"
7102
  msgstr ""
7103
 
7104
+ #: languages/vue.php:1548
7105
  msgid "Congrats"
7106
  msgstr ""
7107
 
7108
+ #: languages/vue.php:1551
7109
  msgid "Your website was quite popular this year! "
7110
  msgstr ""
7111
 
7112
+ #: languages/vue.php:1554
7113
  msgid "You had "
7114
  msgstr ""
7115
 
7116
+ #: languages/vue.php:1557
7117
  msgid " visitors!"
7118
  msgstr ""
7119
 
7120
+ #: languages/vue.php:1560
7121
  msgid " visitors"
7122
  msgstr ""
7123
 
7124
+ #: languages/vue.php:1563
7125
  msgid "Total Visitors"
7126
  msgstr ""
7127
 
7128
+ #: languages/vue.php:1566
7129
  msgid "Total Sessions"
7130
  msgstr ""
7131
 
7132
+ #: languages/vue.php:1569
7133
  msgid "Visitors by Month"
7134
  msgstr ""
7135
 
7136
+ #: languages/vue.php:1572
7137
  msgid "January 1, 2020 - December 31, 2020"
7138
  msgstr ""
7139
 
7140
+ #: languages/vue.php:1575
7141
  msgid "A Tip for 2021"
7142
  msgstr ""
7143
 
7144
+ #: languages/vue.php:1578
7145
  msgid "Demographics"
7146
  msgstr ""
7147
 
7148
+ #: languages/vue.php:1581
7149
  msgid "#1"
7150
  msgstr ""
7151
 
7152
+ #: languages/vue.php:1584
7153
  msgid "You Top 5 Countries"
7154
  msgstr ""
7155
 
7156
+ #: languages/vue.php:1587
7157
  msgid "Let’s get to know your visitors a little better, shall we?"
7158
  msgstr ""
7159
 
7160
+ #: languages/vue.php:1590
7161
  msgid "Gender"
7162
  msgstr ""
7163
 
7164
+ #: languages/vue.php:1593
7165
  msgid "Female"
7166
  msgstr ""
7167
 
7168
+ #: languages/vue.php:1596
7169
  msgid "Women"
7170
  msgstr ""
7171
 
7172
+ #: languages/vue.php:1599
7173
  msgid "Male"
7174
  msgstr ""
7175
 
7176
+ #: languages/vue.php:1602
7177
  msgid "Average Age"
7178
  msgstr ""
7179
 
7180
+ #: languages/vue.php:1605
7181
  msgid "Behavior"
7182
  msgstr ""
7183
 
7184
+ #: languages/vue.php:1608
7185
  msgid "Your Top 5 Pages"
7186
  msgstr ""
7187
 
7188
+ #: languages/vue.php:1611
7189
  msgid "Time Spent on Site"
7190
  msgstr ""
7191
 
7192
+ #: languages/vue.php:1614
7193
  msgid "minutes"
7194
  msgstr ""
7195
 
7196
+ #: languages/vue.php:1617
7197
  msgid "Device Type"
7198
  msgstr ""
7199
 
7200
+ #: languages/vue.php:1620
7201
  msgid "A Tip For 2021"
7202
  msgstr ""
7203
 
7204
+ #: languages/vue.php:1623
7205
  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."
7206
  msgstr ""
7207
 
7208
+ #: languages/vue.php:1626
7209
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
7210
  msgstr ""
7211
 
7212
+ #: languages/vue.php:1629
7213
  msgid "So, where did all of these visitors come from?"
7214
  msgstr ""
7215
 
7216
+ #: languages/vue.php:1632
7217
  msgid "Clicks"
7218
  msgstr ""
7219
 
7220
+ #: languages/vue.php:1635
7221
  msgid "Your Top 5 Keywords"
7222
  msgstr ""
7223
 
7224
+ #: languages/vue.php:1638
7225
  msgid "What keywords visitors searched for to find your site"
7226
  msgstr ""
7227
 
7228
+ #: languages/vue.php:1641
7229
  msgid "Your Top 5 Referrals"
7230
  msgstr ""
7231
 
7232
+ #: languages/vue.php:1644
7233
  msgid "The websites that link back to your website"
7234
  msgstr ""
7235
 
7236
+ #: languages/vue.php:1647
7237
  msgid "Opportunity"
7238
  msgstr ""
7239
 
7240
+ #: languages/vue.php:1650
7241
  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."
7242
  msgstr ""
7243
 
7244
+ #: languages/vue.php:1653
7245
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
7246
  msgstr ""
7247
 
7248
+ #: languages/vue.php:1656
7249
  msgid "Thank you for using MonsterInsights!"
7250
  msgstr ""
7251
 
7252
+ #: languages/vue.php:1659
7253
  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."
7254
  msgstr ""
7255
 
7256
+ #: languages/vue.php:1662
7257
  msgid "Here's to an amazing 2021!"
7258
  msgstr ""
7259
 
7260
+ #: languages/vue.php:1665
7261
  msgid "Enjoying MonsterInsights"
7262
  msgstr ""
7263
 
7264
+ #: languages/vue.php:1668
7265
  msgid "Leave a five star review!"
7266
  msgstr ""
7267
 
7268
+ #: languages/vue.php:1671
7269
  msgid "Syed Balkhi"
7270
  msgstr ""
7271
 
7272
+ #: languages/vue.php:1674
7273
  msgid "Chris Christoff"
7274
  msgstr ""
7275
 
7276
+ #: languages/vue.php:1677
7277
  msgid "Write Review"
7278
  msgstr ""
7279
 
7280
+ #: languages/vue.php:1680
7281
  msgid "Did you know over 10 million websites use our plugins?"
7282
  msgstr ""
7283
 
7284
+ #: languages/vue.php:1683
7285
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7286
  msgstr ""
7287
 
7288
+ #: languages/vue.php:1686
7289
  msgid "Join our Communities!"
7290
  msgstr ""
7291
 
7292
+ #: languages/vue.php:1689
7293
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7294
  msgstr ""
7295
 
7296
+ #: languages/vue.php:1692
7297
  msgid "Facebook Group"
7298
  msgstr ""
7299
 
7300
+ #: languages/vue.php:1695
7301
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7302
  msgstr ""
7303
 
7304
+ #: languages/vue.php:1698
7305
  msgid "Join Now...It’s Free!"
7306
  msgstr ""
7307
 
7308
+ #: languages/vue.php:1701
7309
  msgid "WordPress Tutorials by WPBeginner"
7310
  msgstr ""
7311
 
7312
+ #: languages/vue.php:1704
7313
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7314
  msgstr ""
7315
 
7316
+ #: languages/vue.php:1707
7317
  msgid "Visit WPBeginner"
7318
  msgstr ""
7319
 
7320
+ #: languages/vue.php:1710
7321
  msgid "Follow Us!"
7322
  msgstr ""
7323
 
7324
+ #: languages/vue.php:1713
7325
  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."
7326
  msgstr ""
7327
 
7328
+ #: languages/vue.php:1716
7329
  msgid "Copyright MonsterInsights, 2021"
7330
  msgstr ""
7331
 
7332
+ #: languages/vue.php:1719
7333
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
7334
  msgstr ""
7335
 
7336
+ #: languages/vue.php:1722
7337
  msgid "January"
7338
  msgstr ""
7339
 
7340
+ #: languages/vue.php:1725
7341
  msgid "February"
7342
  msgstr ""
7343
 
7344
+ #: languages/vue.php:1728
7345
  msgid "March"
7346
  msgstr ""
7347
 
7348
+ #: languages/vue.php:1731
7349
  msgid "April"
7350
  msgstr ""
7351
 
7352
+ #: languages/vue.php:1734
7353
  msgid "May"
7354
  msgstr ""
7355
 
7356
+ #: languages/vue.php:1737
7357
  msgid "June"
7358
  msgstr ""
7359
 
7360
+ #: languages/vue.php:1740
7361
  msgid "July"
7362
  msgstr ""
7363
 
7364
+ #: languages/vue.php:1743
7365
  msgid "August"
7366
  msgstr ""
7367
 
7368
+ #: languages/vue.php:1746
7369
  msgid "September"
7370
  msgstr ""
7371
 
7372
+ #: languages/vue.php:1749
7373
  msgid "October"
7374
  msgstr ""
7375
 
7376
+ #: languages/vue.php:1752
7377
  msgid "November"
7378
  msgstr ""
7379
 
7380
+ #: languages/vue.php:1755
7381
  msgid "December"
7382
  msgstr ""
7383
 
7384
  #. Translators: Number of visitors.
7385
+ #: languages/vue.php:1759
7386
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7387
  msgstr ""
7388
 
7389
+ #: languages/vue.php:1762
7390
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7391
  msgstr ""
7392
 
7393
  #. Translators: Number of visitors.
7394
+ #: languages/vue.php:1766
7395
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7396
  msgstr ""
7397
 
7398
  #. Translators: Number of visitors.
7399
+ #: languages/vue.php:1770
7400
  msgid "%s Visitors"
7401
  msgstr ""
7402
 
7403
  #. Translators: Percent and Number of visitors.
7404
+ #: languages/vue.php:1774
7405
  msgid "%1$s&#37 of your visitors were %2$s"
7406
  msgstr ""
7407
 
7408
  #. Translators: Number of visitors and their age.
7409
+ #: languages/vue.php:1778
7410
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7411
  msgstr ""
7412
 
7413
+ #: languages/vue.php:1781
7414
  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>"
7415
  msgstr ""
7416
 
7417
  #. Translators: Number of minutes spent on site.
7418
+ #: languages/vue.php:1785
7419
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7420
  msgstr ""
7421
 
7422
  #. Translators: Name of device type.
7423
+ #: languages/vue.php:1789
7424
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7425
  msgstr ""
7426
 
7427
  #. Translators: Number of visitors and device percentage.
7428
+ #: languages/vue.php:1793
7429
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7430
  msgstr ""
7431
 
7432
+ #: languages/vue.php:1796
7433
  msgid "Desktop"
7434
  msgstr ""
7435
 
7436
+ #: languages/vue.php:1799
7437
  msgid "Tablet"
7438
  msgstr ""
7439
 
7440
+ #: languages/vue.php:1802
7441
  msgid "Mobile"
7442
  msgstr ""
7443
 
7444
+ #: languages/vue.php:1805
7445
  msgid "Right Now"
7446
  msgstr ""
7447
 
7448
+ #: languages/vue.php:1808
7449
  msgid "Active users on site"
7450
  msgstr ""
7451
 
7452
+ #: languages/vue.php:1811
7453
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
7454
  msgstr ""
7455
 
7456
+ #: languages/vue.php:1814
7457
  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."
7458
  msgstr ""
7459
 
7460
+ #: languages/vue.php:1817
7461
  msgid "The real-time report automatically updates approximately every 60 seconds."
7462
  msgstr ""
7463
 
7464
  #. Translators: Number of seconds that have passed since the report was refreshed.
7465
+ #: languages/vue.php:1821
7466
  msgid "The real-time report was last updated %s seconds ago."
7467
  msgstr ""
7468
 
7469
+ #: languages/vue.php:1824
7470
  msgid "The latest data will be automatically shown on this page when it becomes available."
7471
  msgstr ""
7472
 
7473
+ #: languages/vue.php:1827
7474
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
7475
  msgstr ""
7476
 
7477
+ #: languages/vue.php:1830
7478
  msgid "Pageviews Per Minute"
7479
  msgstr ""
7480
 
7481
+ #: languages/vue.php:1833
7482
  msgid "Top Pages"
7483
  msgstr ""
7484
 
7485
+ #: languages/vue.php:1836
7486
  msgid "No pageviews currently."
7487
  msgstr ""
7488
 
7489
+ #: languages/vue.php:1839
7490
  msgid "Page"
7491
  msgstr ""
7492
 
7493
+ #: languages/vue.php:1842
7494
  msgid "Pageview Count"
7495
  msgstr ""
7496
 
7497
+ #: languages/vue.php:1845
7498
  msgid "Percent of Total"
7499
  msgstr ""
7500
 
7501
+ #: languages/vue.php:1848
7502
  msgid "This is the number of active users currently on your site."
7503
  msgstr ""
7504
 
7505
+ #: languages/vue.php:1851
7506
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
7507
  msgstr ""
7508
 
7509
+ #: languages/vue.php:1854
7510
  msgid "This list shows the top pages users are currently viewing on your site."
7511
  msgstr ""
7512
 
7513
+ #: languages/vue.php:1857
7514
  msgid "View All Real-Time Pageviews"
7515
  msgstr ""
7516
 
7517
+ #: languages/vue.php:1860
7518
  msgid "View All Real-Time Traffic Sources"
7519
  msgstr ""
7520
 
7521
+ #: languages/vue.php:1863
7522
  msgid "View All Real-Time Traffic by Country"
7523
  msgstr ""
7524
 
7525
+ #: languages/vue.php:1866
7526
  msgid "View All Real-Time Traffic by City"
7527
  msgstr ""
7528
 
7529
+ #: languages/vue.php:1869
7530
  msgid "Show Overview Reports"
7531
  msgstr ""
7532
 
7533
+ #: languages/vue.php:1872
7534
  msgid "Show Publishers Reports"
7535
  msgstr ""
7536
 
7537
+ #: languages/vue.php:1875
7538
  msgid "Show eCommerce Reports"
7539
  msgstr ""
7540
 
7541
+ #: languages/vue.php:1878
7542
  msgid "Settings Menu"
7543
  msgstr ""
7544
 
7545
+ #: languages/vue.php:1881
7546
  msgid "Available in PRO version"
7547
  msgstr ""
7548
 
7549
+ #: languages/vue.php:1884
7550
  msgid "Thank you for being a loyal MonsterInsights Lite user."
7551
  msgstr ""
7552
 
7553
+ #: languages/vue.php:1887
7554
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
7555
  msgstr ""
7556
 
7557
  #. Translators: Gets replaced with the coupon code.
7558
+ #: languages/vue.php:1891
7559
  msgid "Use coupon code %s to get 50%% off."
7560
  msgstr ""
7561
 
7562
+ #: languages/vue.php:1894
7563
  msgid "Dashboard widget"
7564
  msgstr ""
7565
 
7566
+ #: languages/vue.php:1897
7567
  msgid "Affiliate Links"
7568
  msgstr ""
7569
 
7570
+ #: languages/vue.php:1900
7571
  msgid "Enhanced Ecommerce"
7572
  msgstr ""
7573
 
7574
+ #: languages/vue.php:1903
7575
  msgid "Banner Ads"
7576
  msgstr ""
7577
 
7578
+ #: languages/vue.php:1906
7579
  msgid "Google AMP"
7580
  msgstr ""
7581
 
7582
+ #: languages/vue.php:1909
7583
  msgid "SEO Score Tracking"
7584
  msgstr ""
7585
 
7586
+ #: languages/vue.php:1912
7587
  msgid "Activating..."
7588
  msgstr ""
7589
 
7590
+ #: languages/vue.php:1915
7591
  msgid "Deactivating..."
7592
  msgstr ""
7593
 
7594
+ #: languages/vue.php:1918
7595
  msgid "Deactivate"
7596
  msgstr ""
7597
 
7598
  #. Translators: The status of the addon (installed/active/inactive).
7599
+ #: languages/vue.php:1922
7600
  msgid "Status: %s"
7601
  msgstr ""
7602
 
7603
+ #: languages/vue.php:1925
7604
  msgid "Not Installed"
7605
  msgstr ""
7606
 
7607
+ #: languages/vue.php:1928
7608
  msgid "Network Active"
7609
  msgstr ""
7610
 
7611
+ #: languages/vue.php:1931
7612
  msgid "Active"
7613
  msgstr ""
7614
 
7615
+ #: languages/vue.php:1934
7616
  msgid "Inactive"
7617
  msgstr ""
7618
 
7619
  #. Translators: Adds a link to the general settings tab.
7620
+ #: languages/vue.php:1938
7621
  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."
7622
  msgstr ""
7623
 
7624
+ #: languages/vue.php:1941
7625
  msgid "Export PDF Reports"
7626
  msgstr ""
7627
 
7628
+ #: languages/vue.php:1944
7629
  msgid "Permissions"
7630
  msgstr ""
7631
 
7632
+ #: languages/vue.php:1947
7633
  msgid "Allow These User Roles to See Reports"
7634
  msgstr ""
7635
 
7636
+ #: languages/vue.php:1950
7637
  msgid "Users that have at least one of these roles will be able to view the reports."
7638
  msgstr ""
7639
 
7640
+ #: languages/vue.php:1953
7641
  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."
7642
  msgstr ""
7643
 
7644
+ #: languages/vue.php:1956
7645
  msgid "Allow These User Roles to Save Settings"
7646
  msgstr ""
7647
 
7648
+ #: languages/vue.php:1959
7649
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
7650
  msgstr ""
7651
 
7652
+ #: languages/vue.php:1962
7653
  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."
7654
  msgstr ""
7655
 
7656
+ #: languages/vue.php:1965
7657
  msgid "Exclude These User Roles From Tracking"
7658
  msgstr ""
7659
 
7660
+ #: languages/vue.php:1968
7661
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
7662
  msgstr ""
7663
 
7664
+ #: languages/vue.php:1971
7665
  msgid "Performance"
7666
  msgstr ""
7667
 
7668
+ #: languages/vue.php:1974
7669
  msgid "Custom code"
7670
  msgstr ""
7671
 
7672
  #. Translators: Adds a link to the Google reference.
7673
+ #: languages/vue.php:1978
7674
  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."
7675
  msgstr ""
7676
 
7677
+ #: languages/vue.php:1984
7678
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
7679
  msgstr ""
7680
 
7681
+ #: languages/vue.php:1987
7682
  msgid "Hide Admin Bar Reports"
7683
  msgstr ""
7684
 
7685
  #. Translators: placeholders make text small.
7686
+ #: languages/vue.php:1991
7687
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
7688
  msgstr ""
7689
 
7690
  #. Translators: placeholders make text small.
7691
+ #: languages/vue.php:1995
7692
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
7693
  msgstr ""
7694
 
7695
  #. Translators: placeholders make text small.
7696
+ #: languages/vue.php:1999
7697
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
7698
  msgstr ""
7699
 
7700
+ #: languages/vue.php:2002
7701
  msgid "View notifications"
7702
  msgstr ""
7703
 
7704
  #. Translators: Error status and error text.
7705
+ #: languages/vue.php:2006
7706
  msgid "Can't load settings. Error: %1$s, %2$s"
7707
  msgstr ""
7708
 
7709
+ #: languages/vue.php:2009
7710
  msgid "You appear to be offline."
7711
  msgstr ""
7712
 
7713
  #. Translators: Error status and error text.
7714
+ #: languages/vue.php:2014
7715
  msgid "Can't save settings. Error: %1$s, %2$s"
7716
  msgstr ""
7717
 
7718
+ #: languages/vue.php:2018
7719
  msgid "Network error encountered. Settings not saved."
7720
  msgstr ""
7721
 
7722
  #. Translators: Error status and error text.
7723
+ #: languages/vue.php:2022
7724
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
7725
  msgstr ""
7726
 
7727
  #. Translators: Error status and error text.
7728
+ #: languages/vue.php:2026
7729
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7730
  msgstr ""
7731
 
7732
  #. Translators: Error status and error text.
7733
+ #: languages/vue.php:2030
7734
  msgid "Can't load license details. Error: %1$s, %2$s"
7735
  msgstr ""
7736
 
7737
+ #: languages/vue.php:2033
7738
  msgid "Error loading license details"
7739
  msgstr ""
7740
 
7741
  #. Translators: Error status and error text.
7742
+ #: languages/vue.php:2037
7743
  msgid "Can't verify the license. Error: %1$s, %2$s"
7744
  msgstr ""
7745
 
7746
  #. Translators: Error status and error text.
7747
+ #: languages/vue.php:2041
7748
  msgid "Can't validate the license. Error: %1$s, %2$s"
7749
  msgstr ""
7750
 
7751
  #. Translators: Error status and error text.
7752
+ #: languages/vue.php:2045
7753
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7754
  msgstr ""
7755
 
7756
  #. Translators: Error status and error text.
7757
+ #: languages/vue.php:2049
7758
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7759
  msgstr ""
7760
 
7761
+ #: languages/vue.php:2052
7762
  msgid "You appear to be offline. Settings not saved."
7763
  msgstr ""
7764
 
7765
  #. Translators: Error status and error text.
7766
+ #: languages/vue.php:2056
7767
  msgid "Can't authenticate. Error: %1$s, %2$s"
7768
  msgstr ""
7769
 
7770
  #. Translators: Error status and error text.
7771
+ #: languages/vue.php:2060
7772
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7773
  msgstr ""
7774
 
7775
  #. Translators: Error status and error text.
7776
+ #: languages/vue.php:2064
7777
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7778
  msgstr ""
7779
 
7780
+ #: languages/vue.php:2067
7781
  msgid "Proceed"
7782
  msgstr ""
7783
 
7784
+ #: languages/vue.php:2070
7785
  msgid "Connection Information"
7786
  msgstr ""
7787
 
7788
+ #: languages/vue.php:2073
7789
  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."
7790
  msgstr ""
7791
 
7792
+ #: languages/vue.php:2076
7793
  msgid "Hostname"
7794
  msgstr ""
7795
 
7796
+ #: languages/vue.php:2079
7797
  msgid "FTP Username"
7798
  msgstr ""
7799
 
7800
+ #: languages/vue.php:2082
7801
  msgid "FTP Password"
7802
  msgstr ""
7803
 
7804
+ #: languages/vue.php:2085
7805
  msgid "This password will not be stored on the server."
7806
  msgstr ""
7807
 
7808
+ #: languages/vue.php:2088
7809
  msgid "Connection Type"
7810
  msgstr ""
7811
 
7812
+ #: languages/vue.php:2091
7813
  msgid "Cancel"
7814
  msgstr ""
7815
 
7816
+ #: languages/vue.php:2094
7817
  msgid "You appear to be offline. WPForms not installed."
7818
  msgstr ""
7819
 
7820
  #. Translators: Error status and error text.
7821
+ #: languages/vue.php:2098
7822
  msgid "Can't activate addon. Error: %1$s, %2$s"
7823
  msgstr ""
7824
 
7825
+ #: languages/vue.php:2101
7826
  msgid "You appear to be offline. Addon not activated."
7827
  msgstr ""
7828
 
7829
  #. Translators: Error status and error text.
7830
+ #: languages/vue.php:2105
7831
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7832
  msgstr ""
7833
 
7834
+ #: languages/vue.php:2108
7835
  msgid "You appear to be offline. Addon not deactivated."
7836
  msgstr ""
7837
 
7838
  #. Translators: Error status and error text.
7839
+ #: languages/vue.php:2112
7840
  msgid "Can't install plugin. Error: %1$s, %2$s"
7841
  msgstr ""
7842
 
7843
+ #: languages/vue.php:2115
7844
  msgid "You appear to be offline. Plugin not installed."
7845
  msgstr ""
7846
 
7847
  #. Translators: Error status and error text.
7848
+ #: languages/vue.php:2119
7849
  msgid "Can't install addon. Error: %1$s, %2$s"
7850
  msgstr ""
7851
 
7852
+ #: languages/vue.php:2122
7853
  msgid "You appear to be offline. Addon not installed."
7854
  msgstr ""
7855
 
7856
  #. Translators: Error status and error text.
7857
+ #: languages/vue.php:2126
7858
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7859
  msgstr ""
7860
 
7861
  #. Translators: Example path (/go/).
7862
+ #: languages/vue.php:2130
7863
  msgid "Path (example: %s)"
7864
  msgstr ""
7865
 
7866
+ #: languages/vue.php:2133
7867
  msgid "Path has to start with a / and have no spaces"
7868
  msgstr ""
7869
 
7870
  #. Translators: Example label (aff).
7871
+ #: languages/vue.php:2137
7872
  msgid "Label (example: %s)"
7873
  msgstr ""
7874
 
7875
+ #: languages/vue.php:2140
7876
  msgid "Label can't contain any spaces"
7877
  msgstr ""
7878
 
7879
  #. Translators: Add links to documentation.
7880
+ #: languages/vue.php:2144
7881
  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."
7882
  msgstr ""
7883
 
7884
+ #: languages/vue.php:2147
7885
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
7886
  msgstr ""
7887
 
7888
+ #: languages/vue.php:2150
7889
  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."
7890
  msgstr ""
7891
 
7892
+ #: languages/vue.php:2153
7893
  msgid "Disable the Headline Analyzer"
7894
  msgstr ""
7895
 
7896
+ #: languages/vue.php:2156
7897
  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."
7898
  msgstr ""
7899
 
7900
+ #: languages/vue.php:2159
7901
  msgid "Or manually enter UA code (limited functionality)"
7902
  msgstr ""
7903
 
7904
+ #: languages/vue.php:2162
7905
  msgid "Dual Tracking Profile"
7906
  msgstr ""
7907
 
7908
+ #: languages/vue.php:2165
7909
  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."
7910
  msgstr ""
7911
 
7912
+ #: languages/vue.php:2168
7913
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7914
  msgstr ""
7915
 
7916
+ #: languages/vue.php:2171
7917
  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."
7918
  msgstr ""
7919
 
7920
+ #: languages/vue.php:2174
7921
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7922
  msgstr ""
7923
 
7924
+ #: languages/vue.php:2177
7925
  msgid "Measurement Protocol API Secret"
7926
  msgstr ""
7927
 
7928
+ #: languages/vue.php:2180
7929
  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."
7930
  msgstr ""
7931
 
7932
+ #: languages/vue.php:2183
7933
  msgid "Force Deauthenticate"
7934
  msgstr ""
7935
 
7936
+ #: languages/vue.php:2186
7937
  msgid "Disconnect MonsterInsights"
7938
  msgstr ""
7939
 
7940
+ #: languages/vue.php:2189
7941
  msgid "Authenticating"
7942
  msgstr ""
7943
 
7944
+ #: languages/vue.php:2192
7945
  msgid "Verifying Credentials"
7946
  msgstr ""
7947
 
7948
+ #: languages/vue.php:2195
7949
  msgid "Your site is connected to MonsterInsights!"
7950
  msgstr ""
7951
 
7952
+ #: languages/vue.php:2198
7953
  msgid "Deauthenticating"
7954
  msgstr ""
7955
 
7956
+ #: languages/vue.php:2201
7957
  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."
7958
  msgstr ""
7959
 
7960
+ #: languages/vue.php:2204
7961
  msgid "Connect MonsterInsights"
7962
  msgstr ""
7963
 
7964
+ #: languages/vue.php:2207
7965
  msgid "Verify Credentials"
7966
  msgstr ""
7967
 
7968
+ #: languages/vue.php:2210
7969
  msgid "Website Profile"
7970
  msgstr ""
7971
 
7972
+ #: languages/vue.php:2213
7973
  msgid "Active Profile"
7974
  msgstr ""
7975
 
7976
+ #: languages/vue.php:2216
7977
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7978
  msgstr ""
7979
 
7980
+ #: languages/vue.php:2219
7981
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7982
  msgstr ""
7983
 
7984
+ #: languages/vue.php:2223
7985
  msgid "Manually enter your UA code"
7986
  msgstr ""
7987
 
7988
+ #: languages/vue.php:2227
7989
  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."
7990
  msgstr ""
7991
 
7992
+ #: languages/vue.php:2230
7993
  msgid "Manually enter your GA4 Measurement ID"
7994
  msgstr ""
7995
 
7996
+ #: languages/vue.php:2233
7997
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
7998
  msgstr ""
7999
 
8000
+ #: languages/vue.php:2236
8001
  msgid "Anonymize IP Addresses"
8002
  msgstr ""
8003
 
8004
+ #: languages/vue.php:2239
8005
  msgid "Link Attribution"
8006
  msgstr ""
8007
 
8008
+ #: languages/vue.php:2242
8009
  msgid "Enable Enhanced Link Attribution"
8010
  msgstr ""
8011
 
8012
+ #: languages/vue.php:2245
8013
  msgid "Enable Anchor Tracking"
8014
  msgstr ""
8015
 
8016
+ #: languages/vue.php:2248
8017
  msgid "Enable allowAnchor"
8018
  msgstr ""
8019
 
8020
+ #: languages/vue.php:2251
8021
  msgid "Enable allowLinker"
8022
  msgstr ""
8023
 
8024
+ #: languages/vue.php:2254
8025
  msgid "Enable Tag Links in RSS"
8026
  msgstr ""
8027
 
8028
+ #: languages/vue.php:2257
8029
  msgid "File Downloads"
8030
  msgstr ""
8031
 
8032
+ #: languages/vue.php:2260
8033
  msgid "Extensions of Files to Track as Downloads"
8034
  msgstr ""
8035
 
8036
+ #: languages/vue.php:2263
8037
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
8038
  msgstr ""
8039
 
8040
  #. Translators: Add links to the documentation.
8041
+ #: languages/vue.php:2267
8042
  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."
8043
  msgstr ""
8044
 
8045
  #. Translators: Adds a link to the documentation.
8046
+ #: languages/vue.php:2271
8047
  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."
8048
  msgstr ""
8049
 
8050
  #. Translators: Adds a link to the documentation.
8051
+ #: languages/vue.php:2275
8052
  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."
8053
  msgstr ""
8054
 
8055
+ #: languages/vue.php:2278
8056
  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."
8057
  msgstr ""
8058
 
8059
  #. Translators: Adds a link to the documentation.
8060
+ #: languages/vue.php:2282
8061
  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."
8062
  msgstr ""
8063
 
8064
  #. Translators: Adds a link to the documentation.
8065
+ #: languages/vue.php:2286
8066
  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."
8067
  msgstr ""
8068
 
8069
  #. Translators: Adds a link to the documentation.
8070
+ #: languages/vue.php:2290
8071
  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."
8072
  msgstr ""
8073
 
8074
+ #: languages/vue.php:2293
8075
  msgid "Add domain"
8076
  msgstr ""
8077
 
8078
  #. Translators: Example domain.
8079
+ #: languages/vue.php:2297
8080
  msgid "Domain (example: %s)"
8081
  msgstr ""
8082
 
8083
  #. Translators: Current site domain to be avoided.
8084
+ #: languages/vue.php:2301
8085
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8086
  msgstr ""
8087
 
8088
+ #: languages/vue.php:2304
8089
  msgid "Cross Domain Tracking"
8090
  msgstr ""
8091
 
8092
  #. Translators: Adds a link to the documentation.
8093
+ #: languages/vue.php:2308
8094
  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."
8095
  msgstr ""
8096
 
8097
  #. Translators: Number of days.
8098
+ #: languages/vue.php:2312
8099
  msgid "vs. Previous Day"
8100
  msgstr ""
8101
 
8102
+ #: languages/vue.php:2315
8103
  msgid "No change"
8104
  msgstr ""
8105
 
8106
+ #: languages/vue.php:2318
8107
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
8108
  msgstr ""
8109
 
8110
+ #: languages/vue.php:2321
8111
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
8112
  msgstr ""
8113
 
8114
+ #: languages/vue.php:2324
8115
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
8116
  msgstr ""
8117
 
8118
+ #: languages/vue.php:2327
8119
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
8120
  msgstr ""
8121
 
8122
+ #: languages/vue.php:2330
8123
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
8124
  msgstr ""
8125
 
8126
+ #: languages/vue.php:2333
8127
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
8128
  msgstr ""
8129
 
8130
+ #: languages/vue.php:2336
8131
  msgid "Unlock search console report to see your top performing keywords in Google."
8132
  msgstr ""
8133
 
8134
+ #: languages/vue.php:2339
8135
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
8136
  msgstr ""
8137
 
8138
+ #: languages/vue.php:2342
8139
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
8140
  msgstr ""
8141
 
8142
+ #: languages/vue.php:2345
8143
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
8144
  msgstr ""
8145
 
8146
+ #: languages/vue.php:2348
8147
  msgid "Upgrade to Pro »"
8148
  msgstr ""
8149
 
8150
+ #: languages/vue.php:2351
8151
  msgid "Pro Tip:"
8152
  msgstr ""
8153
 
8154
+ #: languages/vue.php:2354
8155
  msgid "Show"
8156
  msgstr ""
8157
 
8158
+ #: languages/vue.php:2357
8159
  msgid "Hide dashboard widget"
8160
  msgstr ""
8161
 
8162
+ #: languages/vue.php:2360
8163
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
8164
  msgstr ""
8165
 
8166
+ #: languages/vue.php:2363
8167
  msgid "Yes, hide it!"
8168
  msgstr ""
8169
 
8170
+ #: languages/vue.php:2366
8171
  msgid "No, cancel!"
8172
  msgstr ""
8173
 
8174
+ #: languages/vue.php:2369
8175
  msgid "MonsterInsights Widget Hidden"
8176
  msgstr ""
8177
 
8178
+ #: languages/vue.php:2372
8179
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
8180
  msgstr ""
8181
 
8182
+ #: languages/vue.php:2379
8183
  msgid "Usage Tracking"
8184
  msgstr ""
8185
 
8186
+ #: languages/vue.php:2382
8187
  msgid "Allow Usage Tracking"
8188
  msgstr ""
8189
 
8190
+ #: languages/vue.php:2386
8191
  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."
8192
  msgstr ""
8193
 
8194
  #. Translators: Add links to documentation.
8195
+ #: languages/vue.php:2391
8196
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8197
  msgstr ""
8198
 
8199
  #. Translators: Make text green and add smiley face.
8200
+ #: languages/vue.php:2395
8201
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8202
  msgstr ""
8203
 
8204
  #. Translators: Add link to upgrade.
8205
+ #: languages/vue.php:2399
8206
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8207
  msgstr ""
8208
 
8209
  #. Translators: Make text green.
8210
+ #: languages/vue.php:2403
8211
  msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8212
  msgstr ""
8213
 
8214
+ #: languages/vue.php:2406
8215
  msgid "Unlock PRO Features Now"
8216
  msgstr ""
8217
 
8218
+ #: languages/vue.php:2409
8219
  msgid "Paste your license key here"
8220
  msgstr ""
8221
 
8222
+ #: languages/vue.php:2412
8223
  msgid "Verify"
8224
  msgstr ""
8225
 
8226
  #. Translators: Add link to retrieve license from account area.
8227
+ #: languages/vue.php:2416
8228
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8229
  msgstr ""
8230
 
8231
+ #: languages/vue.php:2419
8232
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8233
  msgstr ""
8234
 
8235
  #. Translators: Error status and error text.
8236
+ #: languages/vue.php:2423
8237
  msgid "Can't load errors. Error: %1$s, %2$s"
8238
  msgstr ""
8239
 
8240
+ #: languages/vue.php:2426
8241
  msgid "No options available"
8242
  msgstr ""
8243
 
8244
+ #: languages/vue.php:2429
8245
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
8246
  msgstr ""
8247
 
8248
+ #: languages/vue.php:2432
8249
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
8250
  msgstr ""
8251
 
8252
+ #: languages/vue.php:2435
8253
  msgid "1,938"
8254
  msgstr ""
8255
 
8256
+ #: languages/vue.php:2438
8257
  msgid "2+ Million Active Installs"
8258
  msgstr ""
8259
 
8260
+ #: languages/vue.php:2441
8261
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
8262
  msgstr ""
8263
 
8264
+ #: languages/vue.php:2444
8265
  msgid "Set up the proper SEO foundations in less than 10 minutes."
8266
  msgstr ""
8267
 
8268
+ #: languages/vue.php:2447
8269
  msgid "SEO Audit Checklist"
8270
  msgstr ""
8271
 
8272
+ #: languages/vue.php:2450
8273
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8274
  msgstr ""
8275
 
8276
+ #: languages/vue.php:2453
8277
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8278
  msgstr ""
8279
 
8280
+ #: languages/vue.php:2456
8281
  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."
8282
  msgstr ""
8283
 
8284
+ #: languages/vue.php:2459
8285
  msgid "Get AIOSEO for WordPress"
8286
  msgstr ""
8287
 
8288
+ #: languages/vue.php:2462
8289
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8290
  msgstr ""
8291
 
8292
+ #: languages/vue.php:2465
8293
  msgid "Try it out today, for free."
8294
  msgstr ""
8295
 
8296
+ #: languages/vue.php:2468
8297
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8298
  msgstr ""
8299
 
8300
+ #: languages/vue.php:2471
8301
  msgid "Activate and Install the Plugin with just one click!"
8302
  msgstr ""
8303
 
8304
+ #: languages/vue.php:2474
8305
  msgid "Installing AIOSEO..."
8306
  msgstr ""
8307
 
8308
+ #: languages/vue.php:2477
8309
  msgid "Congrats! All-in-One SEO Installed."
8310
  msgstr ""
8311
 
8312
+ #: languages/vue.php:2480
8313
  msgid "Switch to AIOSEO"
8314
  msgstr ""
8315
 
8316
+ #: languages/vue.php:2483
8317
  msgid "Installation Failed. Please refresh and try again."
8318
  msgstr ""
8319
 
8320
+ #: languages/vue.php:2486
8321
  msgid "Activating AIOSEO..."
8322
  msgstr ""
8323
 
8324
+ #: languages/vue.php:2489
8325
  msgid "Activate AIOSEO"
8326
  msgstr ""
8327
 
8328
+ #: languages/vue.php:2492
8329
  msgid "Activation Failed. Please refresh and try again."
8330
  msgstr ""
8331
 
8332
  #. Translators: The name of the field that is throwing a validation error.
8333
+ #: languages/vue.php:2496
8334
  msgid "%s can't be empty."
8335
  msgstr ""
8336
 
8337
+ #: languages/vue.php:2499
8338
  msgid "Duplicate values are not allowed."
8339
  msgstr ""
8340
 
8341
+ #: languages/vue.php:2502
8342
  msgid "You can add maximum 5 items."
8343
  msgstr ""
8344
 
8345
+ #: languages/vue.php:2505
8346
  msgid "At least 0 item required."
8347
  msgstr ""
8348
 
8349
+ #: languages/vue.php:2508
8350
  msgid "Add Another Link Path"
8351
  msgstr ""
8352
 
8353
+ #: languages/vue.php:2511
8354
  msgid "Remove row"
8355
  msgstr ""
8356
 
8357
+ #: languages/vue.php:2514
8358
  msgid "New"
8359
  msgstr ""
8360
 
8361
+ #: languages/vue.php:2517
8362
  msgid "Returning"
8363
  msgstr ""
8364
 
8365
+ #: languages/vue.php:2520
8366
  msgid "Top 10 Countries"
8367
  msgstr ""
8368
 
8369
+ #: languages/vue.php:2523
8370
  msgid "View Countries Report"
8371
  msgstr ""
8372
 
8373
+ #: languages/vue.php:2526
8374
  msgid "Top 10 Referrals"
8375
  msgstr ""
8376
 
8377
+ #: languages/vue.php:2529
8378
  msgid "View All Referral Sources"
8379
  msgstr ""
8380
 
8381
+ #: languages/vue.php:2532
8382
  msgid "View Full Posts/Pages Report"
8383
  msgstr ""
8384
 
8385
+ #: languages/vue.php:2535
8386
  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."
8387
  msgstr ""
8388
 
8389
+ #: languages/vue.php:2538
8390
  msgid "This list shows the top countries your website visitors are from."
8391
  msgstr ""
8392
 
8393
+ #: languages/vue.php:2541
8394
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8395
  msgstr ""
8396
 
8397
+ #: languages/vue.php:2544
8398
  msgid "Export PDF Overview Report"
8399
  msgstr ""
8400
 
8401
+ #: languages/vue.php:2547
8402
  msgid "Reset to default"
8403
  msgstr ""
8404
 
8405
+ #: languages/vue.php:2550
8406
  msgid "The value entered does not match the required format"
8407
  msgstr ""
8408
 
8409
+ #: languages/vue.php:2553
8410
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8411
  msgstr ""
8412
 
8413
+ #: languages/vue.php:2556
8414
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8415
  msgstr ""
8416
 
8417
+ #: languages/vue.php:2559
8418
  msgid "Recommended Settings"
8419
  msgstr ""
8420
 
8421
+ #: languages/vue.php:2562
8422
  msgid "MonsterInsights recommends the following settings based on your configuration."
8423
  msgstr ""
8424
 
8425
+ #: languages/vue.php:2565
8426
  msgid "Events Tracking"
8427
  msgstr ""
8428
 
8429
+ #: languages/vue.php:2568
8430
  msgid "Must have for all click tracking on site."
8431
  msgstr ""
8432
 
8433
+ #: languages/vue.php:2571
8434
  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."
8435
  msgstr ""
8436
 
8437
+ #: languages/vue.php:2574
8438
  msgid "Enhanced Link Attribution"
8439
  msgstr ""
8440
 
8441
+ #: languages/vue.php:2577
8442
  msgid "Improves the accuracy of your In-Page Analytics."
8443
  msgstr ""
8444
 
8445
+ #: languages/vue.php:2580
8446
  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."
8447
  msgstr ""
8448
 
8449
+ #: languages/vue.php:2583
8450
  msgid "Install Updates Automatically"
8451
  msgstr ""
8452
 
8453
+ #: languages/vue.php:2586
8454
  msgid "Get the latest features, bug fixes, and security updates as they are released."
8455
  msgstr ""
8456
 
8457
+ #: languages/vue.php:2589
8458
  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."
8459
  msgstr ""
8460
 
8461
+ #: languages/vue.php:2592
8462
  msgid "File Download Tracking"
8463
  msgstr ""
8464
 
8465
+ #: languages/vue.php:2595
8466
  msgid "Helps you see file downloads data."
8467
  msgstr ""
8468
 
8469
+ #: languages/vue.php:2598
8470
  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."
8471
  msgstr ""
8472
 
8473
+ #: languages/vue.php:2601
8474
  msgid "Helps you increase affiliate revenue."
8475
  msgstr ""
8476
 
8477
+ #: languages/vue.php:2604
8478
  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."
8479
  msgstr ""
8480
 
8481
+ #: languages/vue.php:2607
8482
  msgid "Affiliate Link Tracking"
8483
  msgstr ""
8484
 
8485
+ #: languages/vue.php:2610
8486
  msgid "Who Can See Reports"
8487
  msgstr ""
8488
 
8489
+ #: languages/vue.php:2613
8490
  msgid "These user roles will be able to access MonsterInsights' reports in the WordPress admin area."
8491
  msgstr ""
8492
 
8493
+ #: languages/vue.php:2616
8494
  msgid "Save and continue"
8495
  msgstr ""
8496
 
8497
+ #: languages/vue.php:2619
8498
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
8499
  msgstr ""
8500
 
8501
+ #: languages/vue.php:2622
8502
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
8503
  msgstr ""
8504
 
8505
+ #: languages/vue.php:2625
8506
  msgid "+ Add Role"
8507
  msgstr ""
8508
 
8509
+ #: languages/vue.php:2628
8510
  msgid "Connect MonsterInsights to Your Website"
8511
  msgstr ""
8512
 
8513
+ #: languages/vue.php:2631
8514
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
8515
  msgstr ""
8516
 
8517
+ #: languages/vue.php:2634
8518
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
8519
  msgstr ""
8520
 
8521
+ #: languages/vue.php:2637
8522
  msgid "Save and Continue"
8523
  msgstr ""
8524
 
8525
+ #: languages/vue.php:2640
8526
  msgid "UA code can't be empty"
8527
  msgstr ""
8528
 
8529
+ #: languages/vue.php:2643
8530
  msgid "Saving UA code..."
8531
  msgstr ""
8532
 
8533
+ #: languages/vue.php:2646
8534
  msgid "Allow usage tracking"
8535
  msgstr ""
8536
 
8537
+ #: languages/vue.php:2649
8538
  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."
8539
  msgstr ""
8540
 
8541
+ #: languages/vue.php:2652
8542
  msgid "Install All-in-One SEO"
8543
  msgstr ""
8544
 
8545
+ #: languages/vue.php:2655
8546
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8547
  msgstr ""
8548
 
8549
+ #: languages/vue.php:2658
8550
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8551
  msgstr ""
8552
 
8553
+ #: languages/vue.php:2661
8554
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8555
  msgstr ""
8556
 
8557
+ #: languages/vue.php:2664
8558
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8559
  msgstr ""
8560
 
8561
+ #: languages/vue.php:2667
8562
  msgid "Local SEO"
8563
  msgstr ""
8564
 
8565
+ #: languages/vue.php:2670
8566
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8567
  msgstr ""
8568
 
8569
+ #: languages/vue.php:2673
8570
  msgid "WooCommerce SEO"
8571
  msgstr ""
8572
 
8573
+ #: languages/vue.php:2676
8574
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8575
  msgstr ""
8576
 
8577
+ #: languages/vue.php:2679
8578
  msgid "SEO Custom User Roles"
8579
  msgstr ""
8580
 
8581
+ #: languages/vue.php:2682
8582
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8583
  msgstr ""
8584
 
8585
+ #: languages/vue.php:2685
8586
  msgid "Google News Sitemap"
8587
  msgstr ""
8588
 
8589
+ #: languages/vue.php:2688
8590
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8591
  msgstr ""
8592
 
8593
+ #: languages/vue.php:2691
8594
  msgid "Smart XML Sitemaps"
8595
  msgstr ""
8596
 
8597
+ #: languages/vue.php:2694
8598
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8599
  msgstr ""
8600
 
8601
+ #: languages/vue.php:2697
8602
  msgid "Social Media Integration"
8603
  msgstr ""
8604
 
8605
+ #: languages/vue.php:2700
8606
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8607
  msgstr ""
8608
 
8609
+ #: languages/vue.php:2703
8610
  msgid "TruSEO On-Page Analysis"
8611
  msgstr ""
8612
 
8613
+ #: languages/vue.php:2706
8614
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8615
  msgstr ""
8616
 
8617
+ #: languages/vue.php:2709
8618
  msgid "& Many More!"
8619
  msgstr ""
8620
 
8621
+ #: languages/vue.php:2712
8622
  msgid "Installing. Please wait.."
8623
  msgstr ""
8624
 
8625
+ #: languages/vue.php:2715
8626
  msgid "Install All-in-One-SEO"
8627
  msgstr ""
8628
 
8629
+ #: languages/vue.php:2718
8630
  msgid "Welcome to MonsterInsights!"
8631
  msgstr ""
8632
 
8633
+ #: languages/vue.php:2721
8634
  msgid "Let's get you set up."
8635
  msgstr ""
8636
 
8637
+ #: languages/vue.php:2724
8638
  msgid "Which category best describes your website?"
8639
  msgstr ""
8640
 
8641
+ #: languages/vue.php:2727
8642
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
8643
  msgstr ""
8644
 
8645
+ #: languages/vue.php:2730
8646
  msgid "Business Website"
8647
  msgstr ""
8648
 
8649
  #. Translators: Make text bold.
8650
+ #: languages/vue.php:2734
8651
  msgid "Publisher %1$s(Blog)%2$s"
8652
  msgstr ""
8653
 
8654
+ #: languages/vue.php:2737
8655
  msgid "Ecommerce"
8656
  msgstr ""
8657
 
8658
+ #: languages/vue.php:2740
8659
  msgid "Caching"
8660
  msgstr ""
8661
 
8662
+ #: languages/vue.php:2743
8663
  msgid "Enable Data Caching"
8664
  msgstr ""
8665
 
8666
+ #: languages/vue.php:2746
8667
  msgid "Refresh Cache Every"
8668
  msgstr ""
8669
 
8670
+ #: languages/vue.php:2749
8671
  msgid "Choose how often to refresh the cache."
8672
  msgstr ""
8673
 
8674
+ #: languages/vue.php:2752
8675
  msgid "Enable Ajaxify"
8676
  msgstr ""
8677
 
8678
+ #: languages/vue.php:2755
8679
  msgid "Ajaxify Widget"
8680
  msgstr ""
8681
 
8682
+ #: languages/vue.php:2758
8683
  msgid "Use to bypass page caching."
8684
  msgstr ""
8685
 
8686
+ #: languages/vue.php:2761
8687
  msgid "Empty Cache"
8688
  msgstr ""
8689
 
8690
+ #: languages/vue.php:2764
8691
  msgid "Click to manually wipe the cache right now."
8692
  msgstr ""
8693
 
8694
+ #: languages/vue.php:2767
8695
  msgid "Popular posts cache emptied"
8696
  msgstr ""
8697
 
8698
+ #: languages/vue.php:2770
8699
  msgid "Error emptying the popular posts cache. Please try again."
8700
  msgstr ""
8701
 
8702
+ #: languages/vue.php:2773
8703
  msgid "Choose Theme"
8704
  msgstr ""
8705
 
8706
+ #: languages/vue.php:2776
8707
  msgid "Widget Styling"
8708
  msgstr ""
8709
 
8710
+ #: languages/vue.php:2779
8711
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
8712
  msgstr ""
8713
 
8714
+ #: languages/vue.php:2782
8715
  msgid "Sort By"
8716
  msgstr ""
8717
 
8718
+ #: languages/vue.php:2785
8719
  msgid "Choose how you'd like the widget to determine your popular posts."
8720
  msgstr ""
8721
 
8722
+ #: languages/vue.php:2788
8723
  msgid "Display Title"
8724
  msgstr ""
8725
 
8726
+ #: languages/vue.php:2794
8727
  msgid "Title your widget and set its display preferences."
8728
  msgstr ""
8729
 
8730
+ #: languages/vue.php:2797
8731
  msgid "Include in Post Types"
8732
  msgstr ""
8733
 
8734
+ #: languages/vue.php:2800
8735
  msgid "Exclude from specific posts"
8736
  msgstr ""
8737
 
8738
  #. Translators: Placeholders make the text bold.
8739
+ #: languages/vue.php:2804
8740
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
8741
  msgstr ""
8742
 
8743
  #. Translators: Placeholders make the text bold.
8744
+ #: languages/vue.php:2808
8745
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
8746
  msgstr ""
8747
 
8748
+ #: languages/vue.php:2811
8749
  msgid "Loading Themes"
8750
  msgstr ""
8751
 
8752
  #. Translators: placeholders make text small.
8753
+ #: languages/vue.php:2815
8754
  msgid "Default Styles %1$s- As seen above.%2$s"
8755
  msgstr ""
8756
 
8757
  #. Translators: placeholders make text small.
8758
+ #: languages/vue.php:2819
8759
  msgid "No Styles %1$s- Use your own CSS.%2$s"
8760
  msgstr ""
8761
 
8762
  #. Translators: placeholders make text small.
8763
+ #: languages/vue.php:2823
8764
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
8765
  msgstr ""
8766
 
8767
  #. Translators: placeholders make text small.
8768
+ #: languages/vue.php:2827
8769
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
8770
  msgstr ""
8771
 
8772
  #. Translators: placeholders make text small.
8773
+ #: languages/vue.php:2831
8774
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
8775
  msgstr ""
8776
 
8777
+ #: languages/vue.php:2834
8778
  msgid "Placement"
8779
  msgstr ""
8780
 
8781
+ #: languages/vue.php:2837
8782
  msgid "Choose how you'd like to place the widget."
8783
  msgstr ""
8784
 
8785
+ #: languages/vue.php:2840
8786
  msgid "Insert After"
8787
  msgstr ""
8788
 
8789
+ #: languages/vue.php:2843
8790
  msgid "Choose where in the post body the widget will be placed."
8791
  msgstr ""
8792
 
8793
+ #: languages/vue.php:2847
8794
  msgid "Customize Design"
8795
  msgstr ""
8796
 
8797
+ #: languages/vue.php:2850
8798
  msgid "words"
8799
  msgstr ""
8800
 
8801
+ #: languages/vue.php:2853
8802
  msgid "Please select at least one post to display."
8803
  msgstr ""
8804
 
8805
  #. Translators: placeholders make text small.
8806
+ #: languages/vue.php:2857
8807
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
8808
  msgstr ""
8809
 
8810
  #. Translators: placeholders make text small.
8811
+ #: languages/vue.php:2861
8812
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
8813
  msgstr ""
8814
 
8815
+ #: languages/vue.php:2864
8816
  msgid "Facebook Instant Articles"
8817
  msgstr ""
8818
 
8819
+ #: languages/vue.php:2867
8820
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
8821
  msgstr ""
8822
 
8823
+ #: languages/vue.php:2870
8824
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
8825
  msgstr ""
8826
 
8827
+ #: languages/vue.php:2873
8828
  msgid "Ads Tracking"
8829
  msgstr ""
8830
 
8831
+ #: languages/vue.php:2876
8832
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8833
  msgstr ""
8834
 
8835
+ #: languages/vue.php:2879
8836
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8837
  msgstr ""
8838
 
8839
+ #: languages/vue.php:2882
8840
  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."
8841
  msgstr ""
8842
 
8843
+ #: languages/vue.php:2885
8844
  msgid "Jack Brown"
8845
  msgstr ""
8846
 
8847
+ #: languages/vue.php:2888
8848
  msgid "PJB Internet Marketing"
8849
  msgstr ""
8850
 
8851
+ #: languages/vue.php:2891
8852
  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."
8853
  msgstr ""
8854
 
8855
+ #: languages/vue.php:2894
8856
  msgid "Joel Steinmann"
8857
  msgstr ""
8858
 
8859
+ #: languages/vue.php:2897
8860
  msgid "CEO, Solergo"
8861
  msgstr ""
8862
 
8863
+ #: languages/vue.php:2900
8864
  msgid "Recommended Addons"
8865
  msgstr ""
8866
 
8867
+ #: languages/vue.php:2903
8868
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
8869
  msgstr ""
8870
 
8871
+ #: languages/vue.php:2906
8872
  msgid "Other Addons"
8873
  msgstr ""
8874
 
8875
+ #: languages/vue.php:2909
8876
  msgid "View all MonsterInsights addons"
8877
  msgstr ""
8878
 
8879
+ #: languages/vue.php:2912
8880
  msgid "Scroll Tracking"
8881
  msgstr ""
8882
 
8883
+ #: languages/vue.php:2915
8884
  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."
8885
  msgstr ""
8886
 
8887
+ #: languages/vue.php:2918
8888
  msgid ""
8889
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
8890
  " and other privacy regulations."
8891
  msgstr ""
8892
 
8893
+ #: languages/vue.php:2922
8894
  msgid "EU Compliance"
8895
  msgstr ""
8896
 
8897
+ #: languages/vue.php:2925
8898
  msgid "Compatibility mode"
8899
  msgstr ""
8900
 
8901
+ #: languages/vue.php:2928
8902
  msgid "Enable _gtagTracker Compatibility"
8903
  msgstr ""
8904
 
8905
  #. Translators: Placeholder gets replaced with default GA js function.
8906
+ #: languages/vue.php:2932
8907
  msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
8908
  msgstr ""
8909
 
8910
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
8911
+ #: languages/vue.php:2936
8912
  msgid "%1$sPage %3$s%2$s of %4$s"
8913
  msgstr ""
8914
 
8915
+ #: languages/vue.php:2939
8916
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
8917
  msgid "Theme Preview"
8918
  msgstr ""
8919
 
8920
+ #: languages/vue.php:2942
8921
  msgid "Wide"
8922
  msgstr ""
8923
 
8924
+ #: languages/vue.php:2945
8925
  msgid "Narrow"
8926
  msgstr ""
8927
 
8928
+ #: languages/vue.php:2948
8929
  msgid "Title"
8930
  msgstr ""
8931
 
8932
+ #: languages/vue.php:2951
8933
  msgid "Color"
8934
  msgstr ""
8935
 
8936
+ #: languages/vue.php:2954
8937
  msgid "Size"
8938
  msgstr ""
8939
 
8940
+ #: languages/vue.php:2957
8941
  msgid "Border"
8942
  msgstr ""
8943
 
8944
+ #: languages/vue.php:2960
8945
  msgid "Author/Date"
8946
  msgstr ""
8947
 
8948
+ #: languages/vue.php:2963
8949
  msgid "Label"
8950
  msgstr ""
8951
 
8952
+ #: languages/vue.php:2966
8953
  msgid "Background"
8954
  msgstr ""
8955
 
8956
+ #: languages/vue.php:2978
8957
  msgid "Choose which content you would like displayed in the widget."
8958
  msgstr ""
8959
 
8960
+ #: languages/vue.php:2990
8961
  msgid "Comments"
8962
  msgstr ""
8963
 
8964
+ #: languages/vue.php:2996
8965
  msgid "Choose how many posts you’d like displayed in the widget."
8966
  msgstr ""
8967
 
8968
+ #: languages/vue.php:2999
8969
  msgid "Popular Posts data can be fetched correctly"
8970
  msgstr ""
8971
 
8972
+ #: languages/vue.php:3002
8973
  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."
8974
  msgstr ""
8975
 
8976
+ #: languages/vue.php:3005
8977
  msgid "Close"
8978
  msgstr ""
8979
 
8980
+ #: languages/vue.php:3008
8981
  msgid "Add Top 5 Posts from Google Analytics"
8982
  msgstr ""
8983
 
8984
+ #: languages/vue.php:3011
8985
  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."
8986
  msgstr ""
8987
 
8988
+ #: languages/vue.php:3014
8989
  msgid "Test Automated Posts"
8990
  msgstr ""
8991
 
8992
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8993
+ #: languages/vue.php:3018
8994
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8995
  msgstr ""
8996
 
8997
+ #: languages/vue.php:3021
8998
  msgid "Automated + Curated"
8999
  msgstr ""
9000
 
9001
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9002
+ #: languages/vue.php:3025
9003
  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."
9004
  msgstr ""
9005
 
9006
  #. Translators: Placeholder gets replaced with current license version.
9007
+ #: languages/vue.php:3029
9008
  msgid "Pro version is required."
9009
  msgstr ""
9010
 
9011
+ #: languages/vue.php:3032
9012
  msgid "Verifying Popular Posts data"
9013
  msgstr ""
9014
 
9015
+ #: languages/vue.php:3035
9016
  msgid "Select posts/search"
9017
  msgstr ""
9018
 
9019
+ #: languages/vue.php:3038
9020
  msgid "Oops! No posts found."
9021
  msgstr ""
9022
 
9023
+ #: languages/vue.php:3041
9024
  msgid "Search by post title"
9025
  msgstr ""
9026
 
9027
+ #: languages/vue.php:3044
9028
  msgid "Can't load posts."
9029
  msgstr ""
9030
 
9031
+ #: languages/vue.php:3047
9032
  msgid "SharedCount API Key"
9033
  msgstr ""
9034
 
9035
+ #: languages/vue.php:3050
9036
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9037
  msgstr ""
9038
 
9039
+ #: languages/vue.php:3053
9040
  msgid "Start Indexing"
9041
  msgstr ""
9042
 
9043
+ #: languages/vue.php:3056
9044
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9045
  msgstr ""
9046
 
9047
+ #: languages/vue.php:3059
9048
  msgid "Indexing completed, counts will update automatically every day."
9049
  msgstr ""
9050
 
9051
+ #: languages/vue.php:3062
9052
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9053
  msgstr ""
9054
 
9055
+ #: languages/vue.php:3065
9056
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9057
  msgstr ""
9058
 
9059
+ #: languages/vue.php:3068
9060
  msgid "Icon"
9061
  msgstr ""
9062
 
9063
  #. Translators: Minimum and maximum number that can be used.
9064
+ #: languages/vue.php:3072
9065
  msgid "Please enter a value between %1$s and %2$s"
9066
  msgstr ""
9067
 
9068
  #. Translators: The minimum set value.
9069
+ #: languages/vue.php:3076
9070
  msgid "Please enter a value higher than %s"
9071
  msgstr ""
9072
 
9073
  #. Translators: The maximum set value.
9074
+ #: languages/vue.php:3080
9075
  msgid "Please enter a value lower than %s"
9076
  msgstr ""
9077
 
9078
+ #: languages/vue.php:3083
9079
  msgid "Please enter a number"
9080
  msgstr ""
9081
 
9082
+ #: languages/vue.php:3086
9083
  msgid "Value has to be a round number"
9084
  msgstr ""
9085
 
9086
+ #: languages/vue.php:3089
9087
  msgid "Export PDF Report"
9088
  msgstr ""
9089
 
9090
+ #: languages/vue.php:3092
9091
  msgid "You can export PDF reports only in the PRO version."
9092
  msgstr ""
9093
 
9094
+ #: languages/vue.php:3095
9095
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
9096
  msgstr ""
9097
 
9098
+ #: languages/vue.php:3098
9099
  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!"
9100
  msgstr ""
9101
 
9102
+ #: languages/vue.php:3101
9103
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
9104
  msgstr ""
9105
 
9106
  #. Translators: Makes text bold.
9107
+ #: languages/vue.php:3105
9108
  msgid "Use coupon code %1$sLITEUPGRADE%2$s"
9109
  msgstr ""
9110
 
9111
  #. Translators: Make text green.
9112
+ #: languages/vue.php:3109
9113
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9114
  msgstr ""
9115
 
9116
  #. Translators: Placeholder adds a line break.
9117
+ #: languages/vue.php:3113
9118
  msgid "You can customize your %sdate range only in the PRO version."
9119
  msgstr ""
9120
 
9121
+ #: languages/vue.php:3116
9122
  msgid "Help Us Improve"
9123
  msgstr ""
9124
 
9125
+ #: languages/vue.php:3119
9126
  msgid "Help us better understand our users and their website needs."
9127
  msgstr ""
9128
 
9129
  #. Translators: Adds a link to the documentation.
9130
+ #: languages/vue.php:3123
9131
  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"
9132
  msgstr ""
9133
 
9134
+ #: languages/vue.php:3126
9135
  msgid "Website profile"
9136
  msgstr ""
9137
 
9138
+ #: languages/vue.php:3129
9139
  msgid "Active profile"
9140
  msgstr ""
9141
 
9142
+ #: languages/vue.php:3132
9143
  msgid "Skip and Keep Connection"
9144
  msgstr ""
9145
 
9146
+ #: languages/vue.php:3135
9147
  msgid "This feature requires MonsterInsights Pro"
9148
  msgstr ""
9149
 
9150
+ #: languages/vue.php:3138
9151
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
9152
  msgstr ""
9153
 
9154
+ #: languages/vue.php:3141
9155
  msgid "Upgrade to Pro and Unlock Popular Products"
9156
  msgstr ""
9157
 
9158
+ #: languages/vue.php:3144
9159
  msgid "View all Pro features"
9160
  msgstr ""
9161
 
9162
+ #: languages/vue.php:3147
9163
  msgid "Days"
9164
  msgstr ""
9165
 
9166
  #. Translators: placeholders make text small.
9167
+ #: languages/vue.php:3151
9168
  msgid "7 days"
9169
  msgstr ""
9170
 
9171
+ #: languages/vue.php:3154
9172
  msgid "30 days"
9173
  msgstr ""
9174
 
9175
+ #: languages/vue.php:3157
9176
  msgid "Custom"
9177
  msgstr ""
9178
 
9179
+ #: languages/vue.php:3160
9180
  msgid "Only Show Posts from These Categories"
9181
  msgstr ""
9182
 
9183
+ #: languages/vue.php:3163
9184
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
9185
  msgstr ""
9186
 
9187
+ #: languages/vue.php:3166
9188
  msgid "Multiple Entries"
9189
  msgstr ""
9190
 
9191
+ #: languages/vue.php:3169
9192
  msgid "Total Number of Widgets to Show"
9193
  msgstr ""
9194
 
9195
+ #: languages/vue.php:3172
9196
  msgid "Choose how many widgets will be placed in a single Post."
9197
  msgstr ""
9198
 
9199
+ #: languages/vue.php:3175
9200
  msgid "Minimum Distance Between Widgets"
9201
  msgstr ""
9202
 
9203
+ #: languages/vue.php:3178
9204
  msgid "Choose the distance between widgets."
9205
  msgstr ""
9206
 
9207
+ #: languages/vue.php:3181
9208
  msgid "Minimum Word Count to Display Multiple Widgets"
9209
  msgstr ""
9210
 
9211
+ #: languages/vue.php:3184
9212
  msgid "Choose the minimum word count for a Post to have multiple entries."
9213
  msgstr ""
9214
 
9215
+ #: languages/vue.php:3187
9216
  msgid "Pro version is required"
9217
  msgstr ""
9218
 
9219
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9220
+ #: languages/vue.php:3191
9221
  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)."
9222
  msgstr ""
9223
 
9224
+ #: languages/vue.php:3194
9225
  msgid "Unlock with %s"
9226
  msgstr ""
9227
 
9228
+ #: languages/vue.php:3197
9229
  msgid "Automatic Placement"
9230
  msgstr ""
9231
 
9232
+ #: languages/vue.php:3200
9233
  msgid "Display using Gutenberg Blocks"
9234
  msgstr ""
9235
 
9236
+ #: languages/vue.php:3203
9237
  msgid "Embed Options"
9238
  msgstr ""
9239
 
9240
+ #: languages/vue.php:3206
9241
  msgid "All Embed Options can be used in conjunction with one another."
9242
  msgstr ""
9243
 
9244
+ #: languages/vue.php:3209
9245
  msgid "Using the Gutenberg Block"
9246
  msgstr ""
9247
 
9248
+ #: languages/vue.php:3212
9249
  msgid "Using Automatic Embed"
9250
  msgstr ""
9251
 
9252
+ #: languages/vue.php:3215
9253
  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."
9254
  msgstr ""
9255
 
9256
+ #: languages/vue.php:3218
9257
  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."
9258
  msgstr ""
9259
 
9260
+ #: languages/vue.php:3221
9261
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9262
  msgstr ""
9263
 
9264
+ #: languages/vue.php:3224
9265
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9266
  msgstr ""
9267
 
9268
+ #: languages/vue.php:3227
9269
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9270
  msgstr ""
9271
 
9272
+ #: languages/vue.php:3230
9273
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9274
  msgstr ""
9275
 
9276
+ #: languages/vue.php:3233
9277
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9278
  msgstr ""
9279
 
9280
+ #: languages/vue.php:3236
9281
  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."
9282
  msgstr ""
9283
 
9284
+ #: languages/vue.php:3239
9285
  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."
9286
  msgstr ""
9287
 
9288
+ #: languages/vue.php:3242
9289
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9290
  msgstr ""
9291
 
9292
+ #: languages/vue.php:3245
9293
  msgid "Display using a Shortcode"
9294
  msgstr ""
9295
 
9296
+ #: languages/vue.php:3248
9297
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9298
  msgstr ""
9299
 
9300
+ #: languages/vue.php:3251
9301
  msgid "Copy Shortcode"
9302
  msgstr ""
9303
 
9304
+ #: languages/vue.php:3254
9305
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9306
  msgstr ""
9307
 
9308
+ #: languages/vue.php:3257
9309
  msgid "Enable Automatic Placement"
9310
  msgstr ""
9311
 
9312
+ #: languages/vue.php:3260
9313
  msgid "Display in a Sidebar"
9314
  msgstr ""
9315
 
9316
+ #: languages/vue.php:3263
9317
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9318
  msgstr ""
9319
 
9320
+ #: languages/vue.php:3266
9321
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9322
  msgstr ""
9323
 
9324
+ #: languages/vue.php:3269
9325
  msgid "Display Method"
9326
  msgstr ""
9327
 
9328
+ #: languages/vue.php:3272
9329
  msgid "There are two ways to manual include the widget in your posts."
9330
  msgstr ""
9331
 
9332
+ #: languages/vue.php:3275
9333
  msgid "Using the Shortcode"
9334
  msgstr ""
9335
 
9336
+ #: languages/vue.php:3278
9337
  msgid "Learn how to insert the widget using Gutenberg blocks."
9338
  msgstr ""
9339
 
9340
+ #: languages/vue.php:3281
9341
  msgid "Learn how to insert the widget using out Shortcode."
9342
  msgstr ""
9343
 
9344
+ #: languages/vue.php:3284
9345
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9346
  msgstr ""
9347
 
9348
+ #: languages/vue.php:3287
9349
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
9350
  msgstr ""
9351
 
9352
+ #: languages/vue.php:3290
9353
  msgid "Shortcode"
9354
  msgstr ""
9355
 
9356
+ #: languages/vue.php:3293
9357
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9358
  msgstr ""
9359
 
9360
+ #: languages/vue.php:3296
9361
  msgid "Facebook Instant Articleasdasdasds"
9362
  msgstr ""
9363
 
9364
+ #: languages/vue.php:3299
9365
  msgid "Media"
9366
  msgstr ""
9367
 
9368
+ #: languages/vue.php:3302
9369
  msgid "Track how your users interact with videos on your website. Upgrade to MonsterInsights Pro."
9370
  msgstr ""
9371
 
9372
+ #: languages/vue.php:3305
9373
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
9374
  msgstr ""
9375
 
9376
+ #: languages/vue.php:3308
9377
  msgid "Top Affilliate Links"
9378
  msgstr ""
9379
 
9380
+ #: languages/vue.php:3311
9381
  msgid "Scroll Depth"
9382
  msgstr ""
9383
 
9384
+ #: languages/vue.php:3314
9385
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
9386
  msgstr ""
9387
 
9388
+ #: languages/vue.php:3317
9389
  msgid "10+ eCommerce Integrations"
9390
  msgstr ""
9391
 
9392
+ #: languages/vue.php:3320
9393
  msgid "Average Order Value"
9394
  msgstr ""
9395
 
9396
+ #: languages/vue.php:3323
9397
  msgid "Total Revenue"
9398
  msgstr ""
9399
 
9400
+ #: languages/vue.php:3326
9401
  msgid "Number of Transactions"
9402
  msgstr ""
9403
 
9404
+ #: languages/vue.php:3329
9405
  msgid "Increase Engagement and Unlock New Insights About Your Site."
9406
  msgstr ""
9407
 
9408
+ #: languages/vue.php:3332
9409
  msgid "User ID Tracking"
9410
  msgstr ""
9411
 
9412
+ #: languages/vue.php:3335
9413
  msgid "Post Types"
9414
  msgstr ""
9415
 
9416
+ #: languages/vue.php:3338
9417
  msgid "Tag Tracking"
9418
  msgstr ""
9419
 
9420
+ #: languages/vue.php:3341
9421
  msgid "Categories"
9422
  msgstr ""
9423
 
9424
+ #: languages/vue.php:3344
9425
  msgid "SEO Scores"
9426
  msgstr ""
9427
 
9428
+ #: languages/vue.php:3347
9429
  msgid "Publish Times"
9430
  msgstr ""
9431
 
9432
+ #: languages/vue.php:3350
9433
  msgid "Focus Keywords"
9434
  msgstr ""
9435
 
9436
+ #: languages/vue.php:3353
9437
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
9438
  msgstr ""
9439
 
9440
+ #: languages/vue.php:3356
9441
  msgid "Conversion Counts"
9442
  msgstr ""
9443
 
9444
+ #: languages/vue.php:3359
9445
  msgid "Impression Counts"
9446
  msgstr ""
9447
 
9448
+ #: languages/vue.php:3362
9449
  msgid "Conversion Rates"
9450
  msgstr ""
9451
 
9452
+ #: languages/vue.php:3365
9453
  msgid "See Exactly How Visitors Find Your Website From Google."
9454
  msgstr ""
9455
 
9456
+ #: languages/vue.php:3368
9457
  msgid "Top Google Search Terms"
9458
  msgstr ""
9459
 
9460
+ #: languages/vue.php:3371
9461
  msgid "Number of Clicks"
9462
  msgstr ""
9463
 
9464
+ #: languages/vue.php:3374
9465
  msgid "Click-through Ratio"
9466
  msgstr ""
9467
 
9468
+ #: languages/vue.php:3377
9469
  msgid "Average Results Position"
9470
  msgstr ""
9471
 
9472
+ #: languages/vue.php:3380
9473
  msgid "Realtime Report"
9474
  msgstr ""
9475
 
9476
+ #: languages/vue.php:3383
9477
  msgid "See Who And What is Happening on Your Website in Realtime."
9478
  msgstr ""
9479
 
9480
+ #: languages/vue.php:3386
9481
  msgid "Top Page Views"
9482
  msgstr ""
9483
 
9484
+ #: languages/vue.php:3389
9485
  msgid "Current Active Users"
9486
  msgstr ""
9487
 
9488
+ #: languages/vue.php:3392
9489
  msgid "Top Referral Sources"
9490
  msgstr ""
9491
 
9492
+ #: languages/vue.php:3395
9493
  msgid "Top Countries"
9494
  msgstr ""
9495
 
9496
+ #: languages/vue.php:3398
9497
  msgid "Top Cities"
9498
  msgstr ""
9499
 
9500
+ #: languages/vue.php:3401
9501
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
9502
  msgstr ""
9503
 
9504
+ #: languages/vue.php:3404
9505
  msgid "Overall Site Speed Score"
9506
  msgstr ""
9507
 
9508
+ #: languages/vue.php:3407
9509
  msgid "Server Response Times"
9510
  msgstr ""
9511
 
9512
+ #: languages/vue.php:3410
9513
  msgid "Mobile and Desktop Scores"
9514
  msgstr ""
9515
 
9516
+ #: languages/vue.php:3413
9517
  msgid "First Contentful Paint"
9518
  msgstr ""
9519
 
9520
+ #: languages/vue.php:3416
9521
  msgid "Automatic Recommendations"
9522
  msgstr ""
9523
 
9524
+ #: languages/vue.php:3419
9525
  msgid "Total Blocking Time"
9526
  msgstr ""
9527
 
9528
+ #: languages/vue.php:3422
9529
  msgid "On-Demand Audits"
9530
  msgstr ""
9531
 
9532
+ #: languages/vue.php:3425
9533
  msgid "Time to Interactive"
9534
  msgstr ""
9535
 
9536
+ #: languages/vue.php:3428
9537
  msgid "2021 Year in Review"
9538
  msgstr ""
9539
 
9540
+ #: languages/vue.php:3431
9541
  msgid "Realtime"
9542
  msgstr ""
9543
 
9544
  #. Translators: Placeholders are used for making text bold and adding a link.
9545
+ #: languages/vue.php:3435
9546
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9547
  msgstr ""
9548
 
9549
+ #: languages/vue.php:3438
9550
  msgid "Featured"
9551
  msgstr ""
9552
 
9553
+ #: languages/vue.php:3441
9554
  msgid "Traffic"
9555
  msgstr ""
9556
 
9557
+ #: languages/vue.php:3444
9558
  msgid "Revenue"
9559
  msgstr ""
9560
 
9561
+ #: languages/vue.php:3447
9562
  msgid "Guides & Resources"
9563
  msgstr ""
9564
 
9565
+ #: languages/vue.php:3450
9566
  msgid "Upgrade and Unlock"
9567
  msgstr ""
9568
 
9569
+ #: languages/vue.php:3453
9570
  msgid "What’s in the %1$s?"
9571
  msgstr ""
9572
 
9573
+ #: languages/vue.php:3456
9574
  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"
9575
  msgstr ""
9576
 
9577
+ #: languages/vue.php:3459
9578
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9579
  msgstr ""
9580
 
9581
+ #: languages/vue.php:3462
9582
  msgid "Your 2021 Analytics Report"
9583
  msgstr ""
9584
 
9585
+ #: languages/vue.php:3468
9586
  msgid "January 1, 2021 - December 31, 2021"
9587
  msgstr ""
9588
 
9589
+ #: languages/vue.php:3471
9590
  msgid "A Tip for 2022"
9591
  msgstr ""
9592
 
9593
+ #: languages/vue.php:3474
9594
  msgid "A Tip For 2022"
9595
  msgstr ""
9596
 
9597
+ #: languages/vue.php:3477
9598
  msgid "Here's to an amazing 2022!"
9599
  msgstr ""
9600
 
9601
+ #: languages/vue.php:3480
9602
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9603
  msgstr ""
9604
 
9605
+ #: languages/vue.php:3483
9606
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9607
  msgstr ""
9608
 
9609
+ #: languages/vue.php:3486
9610
  msgid "Copyright MonsterInsights, 2022"
9611
  msgstr ""
9612
 
9613
  #. Translators: Number of minutes spent on site.
9614
+ #: languages/vue.php:3490
9615
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9616
  msgstr ""
9617
 
9618
+ #: languages/vue.php:3493
9619
  msgid "RafflePress"
9620
  msgstr ""
9621
 
9622
+ #: languages/vue.php:3496
9623
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9624
  msgstr ""
9625
 
9626
+ #: languages/vue.php:3499
9627
  msgid "Constant Contact"
9628
  msgstr ""
9629
 
9630
+ #: languages/vue.php:3502
9631
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9632
  msgstr ""
9633
 
9634
+ #: languages/vue.php:3505
9635
  msgid "SEMRUSH"
9636
  msgstr ""
9637
 
9638
+ #: languages/vue.php:3508
9639
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9640
  msgstr ""
9641
 
9642
+ #: languages/vue.php:3511
9643
  msgid "Engagement Tools"
9644
  msgstr ""
9645
 
9646
+ #: languages/vue.php:3514
9647
  msgid "WPForms"
9648
  msgstr ""
9649
 
9650
+ #: languages/vue.php:3517
9651
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9652
  msgstr ""
9653
 
9654
+ #: languages/vue.php:3520
9655
  msgid "OptinMonster"
9656
  msgstr ""
9657
 
9658
+ #: languages/vue.php:3523
9659
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9660
  msgstr ""
9661
 
9662
+ #: languages/vue.php:3526
9663
  msgid "Smash Balloon - Facebook"
9664
  msgstr ""
9665
 
9666
+ #: languages/vue.php:3529
9667
  msgid "Smash Balloon - Instagram"
9668
  msgstr ""
9669
 
9670
+ #: languages/vue.php:3532
9671
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9672
  msgstr ""
9673
 
9674
+ #: languages/vue.php:3535
9675
  msgid "Popular Posts by MonsterInsights"
9676
  msgstr ""
9677
 
9678
+ #: languages/vue.php:3538
9679
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9680
  msgstr ""
9681
 
9682
+ #: languages/vue.php:3541
9683
  msgid "Popular Products by MonsterInsights"
9684
  msgstr ""
9685
 
9686
+ #: languages/vue.php:3544
9687
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9688
  msgstr ""
9689
 
9690
+ #: languages/vue.php:3547
9691
  msgid "Revenue Tools"
9692
  msgstr ""
9693
 
9694
+ #: languages/vue.php:3550
9695
  msgid "SeedProd"
9696
  msgstr ""
9697
 
9698
+ #: languages/vue.php:3553
9699
  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."
9700
  msgstr ""
9701
 
9702
+ #: languages/vue.php:3556
9703
  msgid "Featured Tools"
9704
  msgstr ""
9705
 
9706
+ #: languages/vue.php:3559
9707
  msgid "Easy Affiliate"
9708
  msgstr ""
9709
 
9710
+ #: languages/vue.php:3562
9711
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with MonsterInsights."
9712
  msgstr ""
9713
 
9714
+ #: languages/vue.php:3565
9715
  msgid "SearchWP"
9716
  msgstr ""
9717
 
9718
+ #: languages/vue.php:3568
9719
  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."
9720
  msgstr ""
9721
 
9722
+ #: languages/vue.php:3571
9723
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9724
  msgstr ""
9725
 
9726
+ #: languages/vue.php:3574
9727
  msgid "Create a membership website. Works automatically with MonsterInsights, no coding needed."
9728
  msgstr ""
9729
 
9730
+ #: languages/vue.php:3577
9731
  msgid "Thirsty Affiliates"
9732
  msgstr ""
9733
 
9734
+ #: languages/vue.php:3580
9735
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9736
  msgstr ""
9737
 
9738
+ #: languages/vue.php:3583
9739
  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."
9740
  msgstr ""
9741
 
9742
+ #: languages/vue.php:3586
9743
  msgid "Advanced Coupons"
9744
  msgstr ""
9745
 
9746
+ #: languages/vue.php:3589
9747
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9748
  msgstr ""
9749
 
9750
+ #: languages/vue.php:3592
9751
  msgid "PrettyLinks"
9752
  msgstr ""
9753
 
9754
+ #: languages/vue.php:3595
9755
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9756
  msgstr ""
9757
 
9758
+ #: languages/vue.php:3598
9759
  msgid "Install Now"
9760
  msgstr ""
9761
 
9762
+ #: languages/vue.php:3601
9763
  msgid "Online Marketing Guides & Resources"
9764
  msgstr ""
9765
 
9766
+ #: languages/vue.php:3604
9767
  msgid "MonsterInsights Pro"
9768
  msgstr ""
9769
 
9770
+ #: languages/vue.php:3607
9771
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9772
  msgstr ""
9773
 
9774
+ #: languages/vue.php:3610
9775
  msgid "Traffic Tools"
9776
  msgstr ""
9777
 
9778
+ #: languages/vue.php:3613
9779
  msgid "All in One SEO (AIOSEO)"
9780
  msgstr ""
9781
 
9782
+ #: languages/vue.php:3616
9783
  msgid "The best WordPress SEO plugin that works automatically with MonsterInsights."
9784
  msgstr ""
9785
 
9786
+ #: languages/vue.php:3619
9787
  msgid "PushEngage"
9788
  msgstr ""
9789
 
9790
+ #: languages/vue.php:3622
9791
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9792
  msgstr ""
9793
 
9794
+ #: languages/vue.php:3625
9795
  msgid "With MonsterInsights Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9796
  msgstr ""
9797
 
9798
+ #: languages/vue.php:3628
9799
  msgid "Works automatically with WooCommerce, MemberPress, and EasyDigitalDownloads."
9800
  msgstr ""
9801
 
9802
+ #: languages/vue.php:3631
9803
  msgid "Media Tracking"
9804
  msgstr ""
9805
 
9806
+ #: languages/vue.php:3634
9807
  msgid "Get Started"
9808
  msgstr ""
9809
 
languages/vue.php CHANGED
@@ -7,29 +7,32 @@ $generated_i18n_strings = array(
7
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:97
8
  __( '2', 'google-analytics-for-wordpress' ),
9
 
 
10
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:71
11
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:15
 
12
  __( 'Error', 'google-analytics-for-wordpress' ),
13
 
14
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:16
15
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
16
 
17
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:42
18
  __( 'Today', 'google-analytics-for-wordpress' ),
19
 
20
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:48
21
  __( 'Yesterday', 'google-analytics-for-wordpress' ),
22
 
23
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:54
24
  __( 'Last Week', 'google-analytics-for-wordpress' ),
25
 
26
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:60
27
  __( 'Last Month', 'google-analytics-for-wordpress' ),
28
 
29
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:66
30
  __( 'Last 7 days', 'google-analytics-for-wordpress' ),
31
 
32
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:72
 
33
  __( 'Last 30 days', 'google-analytics-for-wordpress' ),
34
 
35
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
@@ -38,8 +41,8 @@ $generated_i18n_strings = array(
38
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
39
  __( 'Loading new report data', 'google-analytics-for-wordpress' ),
40
 
41
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:53
42
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:55
 
43
  __( 'Please wait...', 'google-analytics-for-wordpress' ),
44
 
45
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
@@ -244,8 +247,8 @@ $generated_i18n_strings = array(
244
  // Reference: src/modules/frontend/monsterinsights-frontend.vue:36
245
  __( 'Insights', 'google-analytics-for-wordpress' ),
246
 
247
- // Reference: src/modules/reports/routes/index.js:25
248
  // Reference: src/modules/widget/store/index.js:14
 
249
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
250
 
251
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:125
@@ -272,18 +275,20 @@ $generated_i18n_strings = array(
272
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:132
273
  __( 'See All Features', 'google-analytics-for-wordpress' ),
274
 
275
- // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:48
276
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
277
 
278
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
279
  __( 'per year', 'google-analytics-for-wordpress' ),
280
 
 
281
  // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:80
282
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
283
 
284
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136
285
  __( 'Testimonials', 'google-analytics-for-wordpress' ),
286
 
 
287
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:140
288
  __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
289
 
@@ -332,13 +337,14 @@ $generated_i18n_strings = array(
332
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:181
333
  __( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
334
 
335
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:182
336
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
337
 
 
338
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:35
339
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
340
 
341
- // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:184
342
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
343
 
344
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:33
@@ -350,9 +356,11 @@ $generated_i18n_strings = array(
350
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:187
351
  __( 'WooCommerce', 'google-analytics-for-wordpress' ),
352
 
 
353
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:188
354
  __( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
355
 
 
356
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:189
357
  __( 'MemberPress', 'google-analytics-for-wordpress' ),
358
 
@@ -393,13 +401,14 @@ $generated_i18n_strings = array(
393
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
394
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
395
 
396
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:92
397
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
398
 
399
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:209
400
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
401
 
402
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:78
 
403
  __( 'Ok', 'google-analytics-for-wordpress' ),
404
 
405
  // Reference: src/components/TheQuickLinks.vue:31
@@ -421,13 +430,13 @@ $generated_i18n_strings = array(
421
  /* Translators: Placeholder is replaced with WPForms. */
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
@@ -483,27 +492,30 @@ $generated_i18n_strings = array(
483
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
484
  __( 'Connect MonsterInsights and Setup Website Analytics', 'google-analytics-for-wordpress' ),
485
 
486
- // Reference: src/modules/settings/routes/site.js:103
487
  __( 'Import Export', 'google-analytics-for-wordpress' ),
488
 
489
  // Reference: src/modules/settings/routes/site.js:111
490
  __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
491
 
492
- // Reference: src/modules/settings/routes/site.js:125
493
  __( 'About Us', 'google-analytics-for-wordpress' ),
494
 
495
- // Reference: src/modules/settings/routes/site.js:133
496
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
497
 
498
- // Reference: src/modules/settings/routes/site.js:142
499
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
500
 
 
501
  // Reference: src/modules/settings/routes/site.js:163
502
  __( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
503
 
 
504
  // Reference: src/modules/settings/routes/site.js:171
505
  __( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
506
 
 
507
  // Reference: src/modules/settings/routes/site.js:180
508
  __( 'Popular Products', 'google-analytics-for-wordpress' ),
509
 
@@ -513,27 +525,25 @@ $generated_i18n_strings = array(
513
  // Reference: src/modules/settings/routes/site.js:200
514
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-for-wordpress' ),
515
 
516
- // Reference: src/modules/settings/routes/site.js:38
517
  __( 'General', 'google-analytics-for-wordpress' ),
518
 
519
- // Reference: src/modules/settings/routes/site.js:46
520
  __( 'Engagement', 'google-analytics-for-wordpress' ),
521
 
522
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:45
523
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:22
524
- // Reference: src/modules/settings/routes/site.js:54
525
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
526
 
527
- // Reference: src/modules/settings/routes/site.js:62
528
  __( 'Publisher', 'google-analytics-for-wordpress' ),
529
 
530
- // Reference: src/modules/settings/routes/site.js:70
531
  __( 'Conversions', 'google-analytics-for-wordpress' ),
532
 
533
- // Reference: src/modules/settings/routes/site.js:78
534
  __( 'Advanced', 'google-analytics-for-wordpress' ),
535
 
536
- // Reference: src/modules/settings/routes/site.js:95
537
  __( 'URL Builder', 'google-analytics-for-wordpress' ),
538
 
539
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
@@ -557,7 +567,7 @@ $generated_i18n_strings = array(
557
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
558
  __( 'Please ask your webmaster to connect MonsterInsights to Google Analytics.', 'google-analytics-for-wordpress' ),
559
 
560
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:43
561
  __( 'Overview', 'google-analytics-for-wordpress' ),
562
 
563
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:44
@@ -567,6 +577,7 @@ $generated_i18n_strings = array(
567
  __( 'Search Console', 'google-analytics-for-wordpress' ),
568
 
569
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:47
 
570
  __( 'Dimensions', 'google-analytics-for-wordpress' ),
571
 
572
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
@@ -592,30 +603,31 @@ $generated_i18n_strings = array(
592
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
593
 
594
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:23
 
595
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
596
 
597
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportSearchConsole-Lite.vue:26
598
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
599
 
600
- // Reference: src/modules/reports/routes/index.js:57
601
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
602
 
603
- // Reference: src/modules/reports/routes/index.js:65
604
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
605
 
606
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:51
607
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
608
 
609
  // Reference: src/modules/reports/routes/index.js:81
610
  __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
611
 
612
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:132
613
  __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
614
 
615
  // Reference: src/modules/widget/store/index.js:104
616
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
617
 
618
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:127
619
  __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
620
 
621
  // Reference: src/modules/widget/store/index.js:112
@@ -847,10 +859,11 @@ $generated_i18n_strings = array(
847
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:118
848
  __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-for-wordpress' ),
849
 
 
850
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:70
851
  __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
852
 
853
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:57
854
  __( 'Email Summaries', 'google-analytics-for-wordpress' ),
855
 
856
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
@@ -974,13 +987,13 @@ $generated_i18n_strings = array(
974
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:97
975
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
976
 
977
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:51
978
  __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
979
 
980
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:53
981
  __( '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' ),
982
 
983
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:54
984
  __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
985
 
986
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:99
@@ -1238,7 +1251,7 @@ $generated_i18n_strings = array(
1238
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
1239
  __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
1240
 
1241
- // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
1242
  __( 'Installing...', 'google-analytics-for-wordpress' ),
1243
 
1244
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
@@ -1247,63 +1260,63 @@ $generated_i18n_strings = array(
1247
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1248
  __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
1249
 
1250
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:328
1251
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1252
 
1253
- // Reference: src/modules/reports/store/actions.js:132
1254
  __( 'Installing Addon', 'google-analytics-for-wordpress' ),
1255
 
1256
- // Reference: src/modules/reports/store/actions.js:155
1257
  __( 'Activating Addon', 'google-analytics-for-wordpress' ),
1258
 
1259
- // Reference: src/modules/reports/store/actions.js:170
1260
  __( 'Addon Activated', 'google-analytics-for-wordpress' ),
1261
 
1262
- // Reference: src/modules/reports/store/actions.js:171
1263
  __( 'Loading report data', 'google-analytics-for-wordpress' ),
1264
 
1265
- // Reference: src/modules/reports/store/actions.js:188
1266
  __( 'Please activate manually', 'google-analytics-for-wordpress' ),
1267
 
1268
- // Reference: src/modules/reports/store/actions.js:191
1269
  /* Translators: Adds the error status and status text. */
1270
  __( 'Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1271
 
1272
- // Reference: src/modules/reports/store/actions.js:197
1273
  __( 'Error Activating Addon', 'google-analytics-for-wordpress' ),
1274
 
1275
- // Reference: src/modules/reports/store/actions.js:203
1276
  __( 'View Addons', 'google-analytics-for-wordpress' ),
1277
 
1278
- // Reference: src/modules/reports/store/actions.js:204
1279
  __( 'Dismiss', 'google-analytics-for-wordpress' ),
1280
 
1281
- // Reference: src/modules/reports/store/actions.js:211
1282
  __( 'Redirecting', 'google-analytics-for-wordpress' ),
1283
 
1284
- // Reference: src/modules/reports/store/actions.js:212
1285
  __( 'Please wait', 'google-analytics-for-wordpress' ),
1286
 
1287
- // Reference: src/modules/reports/store/actions.js:52
1288
  __( 'activate', 'google-analytics-for-wordpress' ),
1289
 
1290
- // Reference: src/modules/reports/store/actions.js:52
1291
  __( 'install', 'google-analytics-for-wordpress' ),
1292
 
1293
- // Reference: src/modules/reports/store/actions.js:56
1294
  __( 'Visit addons page', 'google-analytics-for-wordpress' ),
1295
 
1296
- // Reference: src/modules/reports/store/actions.js:64
1297
  __( 'Report Unavailable', 'google-analytics-for-wordpress' ),
1298
 
1299
- // Reference: src/modules/reports/store/actions.js:71
1300
  /* Translators: Install/Activate the addon. */
1301
  __( '%s Addon', 'google-analytics-for-wordpress' ),
1302
 
1303
- // Reference: src/modules/reports/store/actions.js:90
1304
  __( 'Go Back To Reports', 'google-analytics-for-wordpress' ),
1305
 
1306
- // Reference: src/modules/reports/store/actions.js:91
1307
  __( 'Enable Enhanced eCommerce', 'google-analytics-for-wordpress' ),
1308
 
1309
  // Reference: src/components/TheFloatingBar-Lite.vue:29
@@ -1319,7 +1332,7 @@ $generated_i18n_strings = array(
1319
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:257
1320
  __( 'Sessions', 'google-analytics-for-wordpress' ),
1321
 
1322
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:300
1323
  __( 'Pageviews', 'google-analytics-for-wordpress' ),
1324
 
1325
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:33
@@ -1446,22 +1459,18 @@ $generated_i18n_strings = array(
1446
  // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:99
1447
  __( 'Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s', 'google-analytics-for-wordpress' ),
1448
 
1449
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:94
1450
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:81
1451
  /* Translators: placeholders make text small. */
1452
  __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
1453
 
1454
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:99
1455
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:86
1456
  /* Translators: placeholders make text small. */
1457
  __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
1458
 
1459
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:104
1460
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:91
1461
  /* Translators: placeholders make text small. */
1462
  __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
1463
 
1464
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:71
1465
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:98
1466
  __( 'Automatic Updates', 'google-analytics-for-wordpress' ),
1467
 
@@ -1495,8 +1504,8 @@ $generated_i18n_strings = array(
1495
  /* Translators: Placeholder adds a line break. */
1496
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
1497
 
1498
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:63
1499
- /* Translators: Number of unique pageviews. */
1500
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
1501
 
1502
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:275
@@ -1592,7 +1601,7 @@ $generated_i18n_strings = array(
1592
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:284
1593
  __( 'Average Age', 'google-analytics-for-wordpress' ),
1594
 
1595
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:285
1596
  __( 'Behavior', 'google-analytics-for-wordpress' ),
1597
 
1598
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:286
@@ -1783,13 +1792,13 @@ $generated_i18n_strings = array(
1783
  /* Translators: Number of visitors and device percentage. */
1784
  __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
1785
 
1786
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:505
1787
  __( 'Desktop', 'google-analytics-for-wordpress' ),
1788
 
1789
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:506
1790
  __( 'Tablet', 'google-analytics-for-wordpress' ),
1791
 
1792
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:507
1793
  __( 'Mobile', 'google-analytics-for-wordpress' ),
1794
 
1795
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:52
@@ -1884,7 +1893,7 @@ $generated_i18n_strings = array(
1884
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24
1885
  __( 'Dashboard widget', 'google-analytics-for-wordpress' ),
1886
 
1887
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:65
1888
  __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
1889
 
1890
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:27
@@ -1893,20 +1902,18 @@ $generated_i18n_strings = array(
1893
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
1894
  __( 'Banner Ads', 'google-analytics-for-wordpress' ),
1895
 
1896
- // Reference: src/modules/settings/components/input/tab-publisher/monsterinsights-SettingsInputAmp-Lite.vue:22
1897
  __( 'Google AMP', 'google-analytics-for-wordpress' ),
1898
 
1899
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:32
1900
  __( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
1901
 
1902
- // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:26
1903
  __( 'Activating...', 'google-analytics-for-wordpress' ),
1904
 
1905
- // Reference: src/modules/addons/components/AddonButton.vue:38
1906
  // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:103
1907
  __( 'Deactivating...', 'google-analytics-for-wordpress' ),
1908
 
1909
- // Reference: src/modules/addons/components/AddonButton.vue:46
1910
  // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:109
1911
  __( 'Deactivate', 'google-analytics-for-wordpress' ),
1912
 
@@ -1942,7 +1949,6 @@ $generated_i18n_strings = array(
1942
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:61
1943
  __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
1944
 
1945
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:62
1946
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
1947
  __( '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' ),
1948
 
@@ -1999,15 +2005,16 @@ $generated_i18n_strings = array(
1999
  /* Translators: Error status and error text. */
2000
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2001
 
2002
- // Reference: src/modules/wizard-onboarding/api/index.js:22
2003
  __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
2004
 
2005
- // Reference: src/modules/auth/api/index.js:232
2006
  // Reference: src/modules/popular-posts/api/index.js:43
 
2007
  /* Translators: Error status and error text. */
2008
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2009
 
2010
  // Reference: src/modules/popular-posts/api/index.js:47
 
2011
  __( 'Network error encountered. Settings not saved.', 'google-analytics-for-wordpress' ),
2012
 
2013
  // Reference: src/modules/license/api/index.js:118
@@ -2178,7 +2185,7 @@ $generated_i18n_strings = array(
2178
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:129
2179
  __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
2180
 
2181
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:182
2182
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
2183
 
2184
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:236
@@ -2193,7 +2200,7 @@ $generated_i18n_strings = array(
2193
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:287
2194
  __( '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' ),
2195
 
2196
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:90
2197
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
2198
 
2199
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:91
@@ -2205,10 +2212,10 @@ $generated_i18n_strings = array(
2205
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:94
2206
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
2207
 
2208
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:95
2209
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
2210
 
2211
- // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:96
2212
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
2213
 
2214
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:97
@@ -2364,19 +2371,22 @@ $generated_i18n_strings = array(
2364
  // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2365
  __( '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' ),
2366
 
2367
- // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:22
2368
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
2369
 
2370
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
 
2371
  __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
2372
 
2373
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:28
2374
  __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
2375
 
2376
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
 
2377
  __( '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' ),
2378
 
2379
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:43
 
2380
  /* Translators: Add links to documentation. */
2381
  __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2382
 
@@ -2421,10 +2431,10 @@ $generated_i18n_strings = array(
2421
  // Reference: src/modules/seo/components/yoast.vue:138
2422
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-for-wordpress' ),
2423
 
2424
- // Reference: src/modules/seo/components/yoast.vue:139
2425
  __( '1,938', 'google-analytics-for-wordpress' ),
2426
 
2427
- // Reference: src/modules/seo/components/yoast.vue:140
2428
  __( '2+ Million Active Installs', 'google-analytics-for-wordpress' ),
2429
 
2430
  // Reference: src/modules/seo/components/yoast.vue:143
@@ -2433,10 +2443,10 @@ $generated_i18n_strings = array(
2433
  // Reference: src/modules/seo/components/yoast.vue:144
2434
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-for-wordpress' ),
2435
 
2436
- // Reference: src/modules/seo/components/yoast.vue:145
2437
  __( 'SEO Audit Checklist', 'google-analytics-for-wordpress' ),
2438
 
2439
- // Reference: src/modules/seo/components/yoast.vue:146
2440
  __( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-for-wordpress' ),
2441
 
2442
  // Reference: src/modules/seo/components/yoast.vue:147
@@ -2448,37 +2458,37 @@ $generated_i18n_strings = array(
2448
  // Reference: src/modules/seo/components/yoast.vue:149
2449
  __( 'Get AIOSEO for WordPress', 'google-analytics-for-wordpress' ),
2450
 
2451
- // Reference: src/modules/seo/components/yoast.vue:152
2452
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-for-wordpress' ),
2453
 
2454
- // Reference: src/modules/seo/components/yoast.vue:153
2455
  __( 'Try it out today, for free.', 'google-analytics-for-wordpress' ),
2456
 
2457
- // Reference: src/modules/seo/components/yoast.vue:156
2458
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-for-wordpress' ),
2459
 
2460
- // Reference: src/modules/seo/components/yoast.vue:157
2461
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-for-wordpress' ),
2462
 
2463
  // Reference: src/modules/seo/components/yoast.vue:222
2464
  __( 'Installing AIOSEO...', 'google-analytics-for-wordpress' ),
2465
 
2466
- // Reference: src/modules/seo/components/yoast.vue:231
2467
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-for-wordpress' ),
2468
 
2469
  // Reference: src/modules/seo/components/yoast.vue:248
2470
  __( 'Switch to AIOSEO', 'google-analytics-for-wordpress' ),
2471
 
2472
- // Reference: src/modules/seo/components/yoast.vue:252
2473
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2474
 
2475
- // Reference: src/modules/seo/components/yoast.vue:259
2476
  __( 'Activating AIOSEO...', 'google-analytics-for-wordpress' ),
2477
 
2478
- // Reference: src/modules/seo/components/yoast.vue:266
2479
  __( 'Activate AIOSEO', 'google-analytics-for-wordpress' ),
2480
 
2481
- // Reference: src/modules/seo/components/yoast.vue:270
2482
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2483
 
2484
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:171
@@ -2533,7 +2543,7 @@ $generated_i18n_strings = array(
2533
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:285
2534
  __( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
2535
 
2536
- // Reference: src/modules/settings/components/input/SettingsInputText.vue:50
2537
  __( 'Reset to default', 'google-analytics-for-wordpress' ),
2538
 
2539
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:51
@@ -2623,7 +2633,7 @@ $generated_i18n_strings = array(
2623
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
2624
  __( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
2625
 
2626
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55
2627
  __( 'Save and Continue', 'google-analytics-for-wordpress' ),
2628
 
2629
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
@@ -2832,7 +2842,8 @@ $generated_i18n_strings = array(
2832
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2833
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2834
 
2835
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:136
 
2836
  __( 'Customize Design', 'google-analytics-for-wordpress' ),
2837
 
2838
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
@@ -2924,7 +2935,7 @@ $generated_i18n_strings = array(
2924
  /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2925
  __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
2926
 
2927
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:60
2928
  __( 'Theme Preview', 'google-analytics-for-wordpress' ),
2929
 
2930
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
@@ -2933,25 +2944,25 @@ $generated_i18n_strings = array(
2933
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
2934
  __( 'Narrow', 'google-analytics-for-wordpress' ),
2935
 
2936
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:137
2937
  __( 'Title', 'google-analytics-for-wordpress' ),
2938
 
2939
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:138
2940
  __( 'Color', 'google-analytics-for-wordpress' ),
2941
 
2942
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:139
2943
  __( 'Size', 'google-analytics-for-wordpress' ),
2944
 
2945
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:140
2946
  __( 'Border', 'google-analytics-for-wordpress' ),
2947
 
2948
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
2949
  __( 'Author/Date', 'google-analytics-for-wordpress' ),
2950
 
2951
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:142
2952
  __( 'Label', 'google-analytics-for-wordpress' ),
2953
 
2954
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:143
2955
  __( 'Background', 'google-analytics-for-wordpress' ),
2956
 
2957
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:144
@@ -3047,15 +3058,12 @@ $generated_i18n_strings = array(
3047
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
3048
  __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
3049
 
3050
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:100
3051
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47
3052
  __( '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' ),
3053
 
3054
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
3055
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:48
3056
  __( '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' ),
3057
 
3058
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
3059
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:55
3060
  __( 'Icon', 'google-analytics-for-wordpress' ),
3061
 
@@ -3417,7 +3425,6 @@ $generated_i18n_strings = array(
3417
  __( 'Time to Interactive', 'google-analytics-for-wordpress' ),
3418
 
3419
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:52
3420
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:263
3421
  __( '2021 Year in Review', 'google-analytics-for-wordpress' ),
3422
 
3423
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
7
  // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:97
8
  __( '2', 'google-analytics-for-wordpress' ),
9
 
10
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:154
11
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:71
12
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:124
13
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:150
14
  __( 'Error', 'google-analytics-for-wordpress' ),
15
 
16
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:151
17
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
18
 
19
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:223
20
  __( 'Today', 'google-analytics-for-wordpress' ),
21
 
22
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:229
23
  __( 'Yesterday', 'google-analytics-for-wordpress' ),
24
 
25
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:235
26
  __( 'Last Week', 'google-analytics-for-wordpress' ),
27
 
28
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:241
29
  __( 'Last Month', 'google-analytics-for-wordpress' ),
30
 
31
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:247
32
  __( 'Last 7 days', 'google-analytics-for-wordpress' ),
33
 
34
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:48
35
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:253
36
  __( 'Last 30 days', 'google-analytics-for-wordpress' ),
37
 
38
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
41
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
42
  __( 'Loading new report data', 'google-analytics-for-wordpress' ),
43
 
 
44
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:55
45
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:130
46
  __( 'Please wait...', 'google-analytics-for-wordpress' ),
47
 
48
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
247
  // Reference: src/modules/frontend/monsterinsights-frontend.vue:36
248
  __( 'Insights', 'google-analytics-for-wordpress' ),
249
 
 
250
  // Reference: src/modules/widget/store/index.js:14
251
+ // Reference: src/modules/widget/widget.vue:25
252
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
253
 
254
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:125
275
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:132
276
  __( 'See All Features', 'google-analytics-for-wordpress' ),
277
 
278
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:51
279
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
280
 
281
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
282
  __( 'per year', 'google-analytics-for-wordpress' ),
283
 
284
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:97
285
  // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:80
286
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
287
 
288
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136
289
  __( 'Testimonials', 'google-analytics-for-wordpress' ),
290
 
291
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:62
292
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:140
293
  __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
294
 
337
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:181
338
  __( 'Ecommerce Report', 'google-analytics-for-wordpress' ),
339
 
340
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:30
341
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
342
 
343
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:26
344
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:35
345
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
346
 
347
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:29
348
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
349
 
350
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:33
356
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:187
357
  __( 'WooCommerce', 'google-analytics-for-wordpress' ),
358
 
359
+ // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:254
360
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:188
361
  __( 'Easy Digital Downloads', 'google-analytics-for-wordpress' ),
362
 
363
+ // Reference: src/modules/growth-tools/monsterinsights-growth-tools.vue:265
364
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:189
365
  __( 'MemberPress', 'google-analytics-for-wordpress' ),
366
 
401
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
402
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-for-wordpress' ),
403
 
404
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:47
405
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
406
 
407
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:108
408
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
409
 
410
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:78
411
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:126
412
  __( 'Ok', 'google-analytics-for-wordpress' ),
413
 
414
  // Reference: src/components/TheQuickLinks.vue:31
430
  /* Translators: Placeholder is replaced with WPForms. */
431
  __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
432
 
433
+ // Reference: src/modules/widget/components/WidgetFooter.vue:20
434
  __( 'Install', 'google-analytics-for-wordpress' ),
435
 
436
+ // Reference: src/modules/widget/components/WidgetFooter.vue:21
437
  __( 'Activate', 'google-analytics-for-wordpress' ),
438
 
439
+ // Reference: src/modules/widget/components/WidgetFooter.vue:22
440
  __( 'Learn More', 'google-analytics-for-wordpress' ),
441
 
442
  // Reference: src/modules/frontend/components/FrontendPoweredBy.vue:12
492
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
493
  __( 'Connect MonsterInsights and Setup Website Analytics', 'google-analytics-for-wordpress' ),
494
 
495
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:14
496
  __( 'Import Export', 'google-analytics-for-wordpress' ),
497
 
498
  // Reference: src/modules/settings/routes/site.js:111
499
  __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
500
 
501
+ // Reference: src/modules/settings/routes/network.js:35
502
  __( 'About Us', 'google-analytics-for-wordpress' ),
503
 
504
+ // Reference: src/modules/settings/routes/network.js:43
505
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
506
 
507
+ // Reference: src/modules/settings/routes/network.js:52
508
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
509
 
510
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
511
  // Reference: src/modules/settings/routes/site.js:163
512
  __( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
513
 
514
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
515
  // Reference: src/modules/settings/routes/site.js:171
516
  __( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
517
 
518
+ // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
519
  // Reference: src/modules/settings/routes/site.js:180
520
  __( 'Popular Products', 'google-analytics-for-wordpress' ),
521
 
525
  // Reference: src/modules/settings/routes/site.js:200
526
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-for-wordpress' ),
527
 
528
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:75
529
  __( 'General', 'google-analytics-for-wordpress' ),
530
 
531
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:76
532
  __( 'Engagement', 'google-analytics-for-wordpress' ),
533
 
534
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:77
 
 
535
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
536
 
537
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:78
538
  __( 'Publisher', 'google-analytics-for-wordpress' ),
539
 
540
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:79
541
  __( 'Conversions', 'google-analytics-for-wordpress' ),
542
 
543
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabsNavigation.vue:80
544
  __( 'Advanced', 'google-analytics-for-wordpress' ),
545
 
546
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:15
547
  __( 'URL Builder', 'google-analytics-for-wordpress' ),
548
 
549
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
567
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
568
  __( 'Please ask your webmaster to connect MonsterInsights to Google Analytics.', 'google-analytics-for-wordpress' ),
569
 
570
+ // Reference: src/modules/widget/store/index.js:77
571
  __( 'Overview', 'google-analytics-for-wordpress' ),
572
 
573
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:44
577
  __( 'Search Console', 'google-analytics-for-wordpress' ),
578
 
579
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:47
580
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:22
581
  __( 'Dimensions', 'google-analytics-for-wordpress' ),
582
 
583
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
603
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
604
 
605
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:23
606
+ // Reference: src/modules/reports/routes/index.js:41
607
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
608
 
609
+ // Reference: src/modules/reports/routes/index.js:49
610
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
611
 
612
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportDimensions-Lite.vue:23
613
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
614
 
615
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportForms-Lite.vue:25
616
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
617
 
618
+ // Reference: src/modules/reports/routes/index.js:73
619
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
620
 
621
  // Reference: src/modules/reports/routes/index.js:81
622
  __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
623
 
624
+ // Reference: src/modules/widget/store/index.js:103
625
  __( 'Time to Purchase', 'google-analytics-for-wordpress' ),
626
 
627
  // Reference: src/modules/widget/store/index.js:104
628
  __( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-for-wordpress' ),
629
 
630
+ // Reference: src/modules/widget/store/index.js:111
631
  __( 'Sessions to Purchase', 'google-analytics-for-wordpress' ),
632
 
633
  // Reference: src/modules/widget/store/index.js:112
859
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:118
860
  __( 'Includes the complete Overview report, Publisher reports and 6 different eCommerce reports', 'google-analytics-for-wordpress' ),
861
 
862
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:121
863
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:70
864
  __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
865
 
866
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:128
867
  __( 'Email Summaries', 'google-analytics-for-wordpress' ),
868
 
869
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:130
987
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:97
988
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
989
 
990
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:35
991
  __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
992
 
993
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:37
994
  __( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-for-wordpress' ),
995
 
996
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:38
997
  __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
998
 
999
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:99
1251
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
1252
  __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
1253
 
1254
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:106
1255
  __( 'Installing...', 'google-analytics-for-wordpress' ),
1256
 
1257
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1260
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1261
  __( 'Show in full-width mode', 'google-analytics-for-wordpress' ),
1262
 
1263
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:34
1264
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1265
 
1266
+ // Reference: src/modules/reports/store/actions.js:133
1267
  __( 'Installing Addon', 'google-analytics-for-wordpress' ),
1268
 
1269
+ // Reference: src/modules/reports/store/actions.js:156
1270
  __( 'Activating Addon', 'google-analytics-for-wordpress' ),
1271
 
1272
+ // Reference: src/modules/reports/store/actions.js:171
1273
  __( 'Addon Activated', 'google-analytics-for-wordpress' ),
1274
 
1275
+ // Reference: src/modules/reports/store/actions.js:172
1276
  __( 'Loading report data', 'google-analytics-for-wordpress' ),
1277
 
1278
+ // Reference: src/modules/reports/store/actions.js:189
1279
  __( 'Please activate manually', 'google-analytics-for-wordpress' ),
1280
 
1281
+ // Reference: src/modules/reports/store/actions.js:192
1282
  /* Translators: Adds the error status and status text. */
1283
  __( 'Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1284
 
1285
+ // Reference: src/modules/reports/store/actions.js:198
1286
  __( 'Error Activating Addon', 'google-analytics-for-wordpress' ),
1287
 
1288
+ // Reference: src/modules/reports/store/actions.js:204
1289
  __( 'View Addons', 'google-analytics-for-wordpress' ),
1290
 
1291
+ // Reference: src/modules/seo/components/aioseo.vue:246
1292
  __( 'Dismiss', 'google-analytics-for-wordpress' ),
1293
 
1294
+ // Reference: src/modules/reports/store/actions.js:212
1295
  __( 'Redirecting', 'google-analytics-for-wordpress' ),
1296
 
1297
+ // Reference: src/modules/reports/store/actions.js:213
1298
  __( 'Please wait', 'google-analytics-for-wordpress' ),
1299
 
1300
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
1301
  __( 'activate', 'google-analytics-for-wordpress' ),
1302
 
1303
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
1304
  __( 'install', 'google-analytics-for-wordpress' ),
1305
 
1306
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:127
1307
  __( 'Visit addons page', 'google-analytics-for-wordpress' ),
1308
 
1309
+ // Reference: src/modules/reports/store/actions.js:65
1310
  __( 'Report Unavailable', 'google-analytics-for-wordpress' ),
1311
 
1312
+ // Reference: src/modules/reports/store/actions.js:72
1313
  /* Translators: Install/Activate the addon. */
1314
  __( '%s Addon', 'google-analytics-for-wordpress' ),
1315
 
1316
+ // Reference: src/modules/reports/store/actions.js:91
1317
  __( 'Go Back To Reports', 'google-analytics-for-wordpress' ),
1318
 
1319
+ // Reference: src/modules/reports/store/actions.js:92
1320
  __( 'Enable Enhanced eCommerce', 'google-analytics-for-wordpress' ),
1321
 
1322
  // Reference: src/components/TheFloatingBar-Lite.vue:29
1332
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:257
1333
  __( 'Sessions', 'google-analytics-for-wordpress' ),
1334
 
1335
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:260
1336
  __( 'Pageviews', 'google-analytics-for-wordpress' ),
1337
 
1338
  // Reference: src/modules/frontend/components/monsterinsights-FrontendStatsGeneral.vue:33
1459
  // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:99
1460
  __( 'Level-up Your eCommerce store with %1$sMonsterInsights + WooCommerce!%1$s', 'google-analytics-for-wordpress' ),
1461
 
 
1462
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:81
1463
  /* Translators: placeholders make text small. */
1464
  __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
1465
 
 
1466
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:86
1467
  /* Translators: placeholders make text small. */
1468
  __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
1469
 
 
1470
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:91
1471
  /* Translators: placeholders make text small. */
1472
  __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
1473
 
 
1474
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:98
1475
  __( 'Automatic Updates', 'google-analytics-for-wordpress' ),
1476
 
1504
  /* Translators: Placeholder adds a line break. */
1505
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
1506
 
1507
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:262
1508
+ /* Translators: Placeholder adds a line break. */
1509
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
1510
 
1511
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:275
1601
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:284
1602
  __( 'Average Age', 'google-analytics-for-wordpress' ),
1603
 
1604
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:101
1605
  __( 'Behavior', 'google-analytics-for-wordpress' ),
1606
 
1607
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:286
1792
  /* Translators: Number of visitors and device percentage. */
1793
  __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
1794
 
1795
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:198
1796
  __( 'Desktop', 'google-analytics-for-wordpress' ),
1797
 
1798
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:199
1799
  __( 'Tablet', 'google-analytics-for-wordpress' ),
1800
 
1801
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:200
1802
  __( 'Mobile', 'google-analytics-for-wordpress' ),
1803
 
1804
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:52
1893
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24
1894
  __( 'Dashboard widget', 'google-analytics-for-wordpress' ),
1895
 
1896
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:25
1897
  __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
1898
 
1899
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:27
1902
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
1903
  __( 'Banner Ads', 'google-analytics-for-wordpress' ),
1904
 
1905
+ // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:31
1906
  __( 'Google AMP', 'google-analytics-for-wordpress' ),
1907
 
1908
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:32
1909
  __( 'SEO Score Tracking', 'google-analytics-for-wordpress' ),
1910
 
1911
+ // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:100
1912
  __( 'Activating...', 'google-analytics-for-wordpress' ),
1913
 
 
1914
  // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:103
1915
  __( 'Deactivating...', 'google-analytics-for-wordpress' ),
1916
 
 
1917
  // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:109
1918
  __( 'Deactivate', 'google-analytics-for-wordpress' ),
1919
 
1949
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:61
1950
  __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
1951
 
 
1952
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
1953
  __( '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' ),
1954
 
2005
  /* Translators: Error status and error text. */
2006
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2007
 
2008
+ // Reference: src/modules/settings/api/index.js:27
2009
  __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
2010
 
 
2011
  // Reference: src/modules/popular-posts/api/index.js:43
2012
+ // Reference: src/modules/settings/api/index.js:77
2013
  /* Translators: Error status and error text. */
2014
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2015
 
2016
  // Reference: src/modules/popular-posts/api/index.js:47
2017
+ // Reference: src/modules/settings/api/index.js:81
2018
  __( 'Network error encountered. Settings not saved.', 'google-analytics-for-wordpress' ),
2019
 
2020
  // Reference: src/modules/license/api/index.js:118
2185
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:129
2186
  __( 'Disconnect MonsterInsights', 'google-analytics-for-wordpress' ),
2187
 
2188
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
2189
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
2190
 
2191
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:236
2200
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:287
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:46
2204
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
2205
 
2206
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:91
2212
  // Reference: src/modules/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:94
2213
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
2214
 
2215
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
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:51
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/settings/components/input/tab-general/monsterinsights-SettingsInputAuthenticate-Lite.vue:97
2371
  // Reference: src/modules/widget/components/settings/WidgetSettingsHide.vue:41
2372
  __( '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' ),
2373
 
2374
+ // Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:37
2375
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
2376
 
2377
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
2378
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:27
2379
  __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
2380
 
2381
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:28
2382
  __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
2383
 
2384
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
2385
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
2386
  __( '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' ),
2387
 
2388
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:43
2389
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:31
2390
  /* Translators: Add links to documentation. */
2391
  __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2392
 
2431
  // Reference: src/modules/seo/components/yoast.vue:138
2432
  __( 'Automatically migrate all of your SEO settings with just 1 click!', 'google-analytics-for-wordpress' ),
2433
 
2434
+ // Reference: src/modules/seo/components/aioseo.vue:155
2435
  __( '1,938', 'google-analytics-for-wordpress' ),
2436
 
2437
+ // Reference: src/modules/seo/components/aioseo.vue:156
2438
  __( '2+ Million Active Installs', 'google-analytics-for-wordpress' ),
2439
 
2440
  // Reference: src/modules/seo/components/yoast.vue:143
2443
  // Reference: src/modules/seo/components/yoast.vue:144
2444
  __( 'Set up the proper SEO foundations in less than 10 minutes.', 'google-analytics-for-wordpress' ),
2445
 
2446
+ // Reference: src/modules/seo/components/aioseo.vue:165
2447
  __( 'SEO Audit Checklist', 'google-analytics-for-wordpress' ),
2448
 
2449
+ // Reference: src/modules/seo/components/aioseo.vue:166
2450
  __( 'Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic.', 'google-analytics-for-wordpress' ),
2451
 
2452
  // Reference: src/modules/seo/components/yoast.vue:147
2458
  // Reference: src/modules/seo/components/yoast.vue:149
2459
  __( 'Get AIOSEO for WordPress', 'google-analytics-for-wordpress' ),
2460
 
2461
+ // Reference: src/modules/seo/components/aioseo.vue:180
2462
  __( 'Get the #1 Most Powerful WordPress SEO Plugin Today', 'google-analytics-for-wordpress' ),
2463
 
2464
+ // Reference: src/modules/seo/components/aioseo.vue:181
2465
  __( 'Try it out today, for free.', 'google-analytics-for-wordpress' ),
2466
 
2467
+ // Reference: src/modules/seo/components/aioseo.vue:184
2468
  __( 'Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings.', 'google-analytics-for-wordpress' ),
2469
 
2470
+ // Reference: src/modules/seo/components/aioseo.vue:185
2471
  __( 'Activate and Install the Plugin with just one click!', 'google-analytics-for-wordpress' ),
2472
 
2473
  // Reference: src/modules/seo/components/yoast.vue:222
2474
  __( 'Installing AIOSEO...', 'google-analytics-for-wordpress' ),
2475
 
2476
+ // Reference: src/modules/seo/components/aioseo.vue:240
2477
  __( 'Congrats! All-in-One SEO Installed.', 'google-analytics-for-wordpress' ),
2478
 
2479
  // Reference: src/modules/seo/components/yoast.vue:248
2480
  __( 'Switch to AIOSEO', 'google-analytics-for-wordpress' ),
2481
 
2482
+ // Reference: src/modules/seo/components/aioseo.vue:261
2483
  __( 'Installation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2484
 
2485
+ // Reference: src/modules/seo/components/aioseo.vue:268
2486
  __( 'Activating AIOSEO...', 'google-analytics-for-wordpress' ),
2487
 
2488
+ // Reference: src/modules/seo/components/aioseo.vue:275
2489
  __( 'Activate AIOSEO', 'google-analytics-for-wordpress' ),
2490
 
2491
+ // Reference: src/modules/seo/components/aioseo.vue:279
2492
  __( 'Activation Failed. Please refresh and try again.', 'google-analytics-for-wordpress' ),
2493
 
2494
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:171
2543
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:285
2544
  __( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
2545
 
2546
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56
2547
  __( 'Reset to default', 'google-analytics-for-wordpress' ),
2548
 
2549
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:51
2633
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
2634
  __( 'Whoops, something went wrong and we weren\'t able to connect to MonsterInsights. Please enter your Google UA code manually.', 'google-analytics-for-wordpress' ),
2635
 
2636
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
2637
  __( 'Save and Continue', 'google-analytics-for-wordpress' ),
2638
 
2639
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
2842
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2843
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2844
 
2845
+ // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
2846
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:109
2847
  __( 'Customize Design', 'google-analytics-for-wordpress' ),
2848
 
2849
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
2935
  /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2936
  __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
2937
 
2938
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:46
2939
  __( 'Theme Preview', 'google-analytics-for-wordpress' ),
2940
 
2941
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
2944
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
2945
  __( 'Narrow', 'google-analytics-for-wordpress' ),
2946
 
2947
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:51
2948
  __( 'Title', 'google-analytics-for-wordpress' ),
2949
 
2950
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:49
2951
  __( 'Color', 'google-analytics-for-wordpress' ),
2952
 
2953
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:50
2954
  __( 'Size', 'google-analytics-for-wordpress' ),
2955
 
2956
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:54
2957
  __( 'Border', 'google-analytics-for-wordpress' ),
2958
 
2959
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
2960
  __( 'Author/Date', 'google-analytics-for-wordpress' ),
2961
 
2962
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:52
2963
  __( 'Label', 'google-analytics-for-wordpress' ),
2964
 
2965
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:53
2966
  __( 'Background', 'google-analytics-for-wordpress' ),
2967
 
2968
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:144
3058
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
3059
  __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
3060
 
 
3061
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47
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:48
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:55
3068
  __( 'Icon', 'google-analytics-for-wordpress' ),
3069
 
3425
  __( 'Time to Interactive', 'google-analytics-for-wordpress' ),
3426
 
3427
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:52
 
3428
  __( '2021 Year in Review', 'google-analytics-for-wordpress' ),
3429
 
3430
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:49
lite/assets/vue/css/chunk-common.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-5bb5cf3a]{display:block}[data-v-5fb1a880]{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-21d6a57e]{display:block}.monsterinsights-reset-default[data-v-21d6a57e]{margin-left:5px}.monsterinsights-dark[data-v-09f7fe5e]{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-74359c84]: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: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}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
+ @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-54110c18]{display:block}.monsterinsights-reset-default[data-v-54110c18]{margin-left:5px}.monsterinsights-dark[data-v-7262cc05]{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-102a61b0]: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: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}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
- @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-5bb5cf3a]{display:block}[data-v-5fb1a880]{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-21d6a57e]{display:block}.monsterinsights-reset-default[data-v-21d6a57e]{margin-right:5px}.monsterinsights-dark[data-v-09f7fe5e]{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-74359c84]: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: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}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
+ @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-54110c18]{display:block}.monsterinsights-reset-default[data-v-54110c18]{margin-right:5px}.monsterinsights-dark[data-v-7262cc05]{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-102a61b0]: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: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}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,3 @@
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
3
- */.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:0 -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:0 -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:0 -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:0 -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:0 -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:0 -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:0 -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:0 -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:0 -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:0 -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:0 -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:0 -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:0 -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:0 -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:0 -480px}.monsterinsights-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%,.3803921568627451)}.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{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:11.5px 45px 11.5px 24px;position:relative}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after{content:"";width:13px;height:15px;background:url(../img/icon-lock.svg) no-repeat 50%;position:absolute;left:calc(100% - 37px);top:16px}.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}
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{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:11.5px 45px 11.5px 24px;position:relative}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after{content:"";width:13px;height:15px;background:url(../img/icon-lock.svg) no-repeat 50%;position:absolute;left:calc(100% - 37px);top:16px}.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}
lite/assets/vue/css/reports.rtl.css CHANGED
@@ -1,3 +1,3 @@
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
3
- */.monsterinsights-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.monsterinsights-flag.monsterinsights-flag-ad{background-position:-32px 0}.monsterinsights-flag.monsterinsights-flag-ae{background-position:-64px 0}.monsterinsights-flag.monsterinsights-flag-af{background-position:-96px 0}.monsterinsights-flag.monsterinsights-flag-ag{background-position:-128px 0}.monsterinsights-flag.monsterinsights-flag-ai{background-position:-160px 0}.monsterinsights-flag.monsterinsights-flag-al{background-position:-192px 0}.monsterinsights-flag.monsterinsights-flag-am{background-position:-224px 0}.monsterinsights-flag.monsterinsights-flag-an{background-position:-256px 0}.monsterinsights-flag.monsterinsights-flag-ao{background-position:-288px 0}.monsterinsights-flag.monsterinsights-flag-ar{background-position:-320px 0}.monsterinsights-flag.monsterinsights-flag-as{background-position:-352px 0}.monsterinsights-flag.monsterinsights-flag-at{background-position:-384px 0}.monsterinsights-flag.monsterinsights-flag-au{background-position:-416px 0}.monsterinsights-flag.monsterinsights-flag-aw{background-position:-448px 0}.monsterinsights-flag.monsterinsights-flag-ax{background-position:-480px 0}.monsterinsights-flag.monsterinsights-flag-az{background-position:100% -32px}.monsterinsights-flag.monsterinsights-flag-ba{background-position:-32px -32px}.monsterinsights-flag.monsterinsights-flag-bb{background-position:-64px -32px}.monsterinsights-flag.monsterinsights-flag-bd{background-position:-96px -32px}.monsterinsights-flag.monsterinsights-flag-be{background-position:-128px -32px}.monsterinsights-flag.monsterinsights-flag-bf{background-position:-160px -32px}.monsterinsights-flag.monsterinsights-flag-bg{background-position:-192px -32px}.monsterinsights-flag.monsterinsights-flag-bh{background-position:-224px -32px}.monsterinsights-flag.monsterinsights-flag-bi{background-position:-256px -32px}.monsterinsights-flag.monsterinsights-flag-bj{background-position:-288px -32px}.monsterinsights-flag.monsterinsights-flag-bl{background-position:-320px -32px}.monsterinsights-flag.monsterinsights-flag-bm{background-position:-352px -32px}.monsterinsights-flag.monsterinsights-flag-bn{background-position:-384px -32px}.monsterinsights-flag.monsterinsights-flag-bo{background-position:-416px -32px}.monsterinsights-flag.monsterinsights-flag-br{background-position:-448px -32px}.monsterinsights-flag.monsterinsights-flag-bs{background-position:-480px -32px}.monsterinsights-flag.monsterinsights-flag-bt{background-position:100% -64px}.monsterinsights-flag.monsterinsights-flag-bw{background-position:-32px -64px}.monsterinsights-flag.monsterinsights-flag-by{background-position:-64px -64px}.monsterinsights-flag.monsterinsights-flag-bz{background-position:-96px -64px}.monsterinsights-flag.monsterinsights-flag-ca{background-position:-128px -64px}.monsterinsights-flag.monsterinsights-flag-cd{background-position:-160px -64px}.monsterinsights-flag.monsterinsights-flag-cf{background-position:-192px -64px}.monsterinsights-flag.monsterinsights-flag-cg{background-position:-224px -64px}.monsterinsights-flag.monsterinsights-flag-ch{background-position:-256px -64px}.monsterinsights-flag.monsterinsights-flag-ci{background-position:-288px -64px}.monsterinsights-flag.monsterinsights-flag-ck{background-position:-320px -64px}.monsterinsights-flag.monsterinsights-flag-cl{background-position:-352px -64px}.monsterinsights-flag.monsterinsights-flag-cm{background-position:-384px -64px}.monsterinsights-flag.monsterinsights-flag-cn{background-position:-416px -64px}.monsterinsights-flag.monsterinsights-flag-co{background-position:-448px -64px}.monsterinsights-flag.monsterinsights-flag-cr{background-position:-480px -64px}.monsterinsights-flag.monsterinsights-flag-cu{background-position:100% -96px}.monsterinsights-flag.monsterinsights-flag-cv{background-position:-32px -96px}.monsterinsights-flag.monsterinsights-flag-cw{background-position:-64px -96px}.monsterinsights-flag.monsterinsights-flag-cy{background-position:-96px -96px}.monsterinsights-flag.monsterinsights-flag-cz{background-position:-128px -96px}.monsterinsights-flag.monsterinsights-flag-de{background-position:-160px -96px}.monsterinsights-flag.monsterinsights-flag-dj{background-position:-192px -96px}.monsterinsights-flag.monsterinsights-flag-dk{background-position:-224px -96px}.monsterinsights-flag.monsterinsights-flag-dm{background-position:-256px -96px}.monsterinsights-flag.monsterinsights-flag-do{background-position:-288px -96px}.monsterinsights-flag.monsterinsights-flag-dz{background-position:-320px -96px}.monsterinsights-flag.monsterinsights-flag-ec{background-position:-352px -96px}.monsterinsights-flag.monsterinsights-flag-ee{background-position:-384px -96px}.monsterinsights-flag.monsterinsights-flag-eg{background-position:-416px -96px}.monsterinsights-flag.monsterinsights-flag-eh{background-position:-448px -96px}.monsterinsights-flag.monsterinsights-flag-er{background-position:-480px -96px}.monsterinsights-flag.monsterinsights-flag-es{background-position:100% -128px}.monsterinsights-flag.monsterinsights-flag-et{background-position:-32px -128px}.monsterinsights-flag.monsterinsights-flag-eu{background-position:-64px -128px}.monsterinsights-flag.monsterinsights-flag-fi{background-position:-96px -128px}.monsterinsights-flag.monsterinsights-flag-fj{background-position:-128px -128px}.monsterinsights-flag.monsterinsights-flag-fk{background-position:-160px -128px}.monsterinsights-flag.monsterinsights-flag-fm{background-position:-192px -128px}.monsterinsights-flag.monsterinsights-flag-fo{background-position:-224px -128px}.monsterinsights-flag.monsterinsights-flag-fr{background-position:-256px -128px}.monsterinsights-flag.monsterinsights-flag-ga{background-position:-288px -128px}.monsterinsights-flag.monsterinsights-flag-gb{background-position:-320px -128px}.monsterinsights-flag.monsterinsights-flag-gd{background-position:-352px -128px}.monsterinsights-flag.monsterinsights-flag-ge{background-position:-384px -128px}.monsterinsights-flag.monsterinsights-flag-gg{background-position:-416px -128px}.monsterinsights-flag.monsterinsights-flag-gh{background-position:-448px -128px}.monsterinsights-flag.monsterinsights-flag-gi{background-position:-480px -128px}.monsterinsights-flag.monsterinsights-flag-gl{background-position:100% -160px}.monsterinsights-flag.monsterinsights-flag-gm{background-position:-32px -160px}.monsterinsights-flag.monsterinsights-flag-gn{background-position:-64px -160px}.monsterinsights-flag.monsterinsights-flag-gp{background-position:-96px -160px}.monsterinsights-flag.monsterinsights-flag-gq{background-position:-128px -160px}.monsterinsights-flag.monsterinsights-flag-gr{background-position:-160px -160px}.monsterinsights-flag.monsterinsights-flag-gs{background-position:-192px -160px}.monsterinsights-flag.monsterinsights-flag-gt{background-position:-224px -160px}.monsterinsights-flag.monsterinsights-flag-gu{background-position:-256px -160px}.monsterinsights-flag.monsterinsights-flag-gw{background-position:-288px -160px}.monsterinsights-flag.monsterinsights-flag-gy{background-position:-320px -160px}.monsterinsights-flag.monsterinsights-flag-hk{background-position:-352px -160px}.monsterinsights-flag.monsterinsights-flag-hn{background-position:-384px -160px}.monsterinsights-flag.monsterinsights-flag-hr{background-position:-416px -160px}.monsterinsights-flag.monsterinsights-flag-ht{background-position:-448px -160px}.monsterinsights-flag.monsterinsights-flag-hu{background-position:-480px -160px}.monsterinsights-flag.monsterinsights-flag-ic{background-position:100% -192px}.monsterinsights-flag.monsterinsights-flag-id{background-position:-32px -192px}.monsterinsights-flag.monsterinsights-flag-ie{background-position:-64px -192px}.monsterinsights-flag.monsterinsights-flag-il{background-position:-96px -192px}.monsterinsights-flag.monsterinsights-flag-im{background-position:-128px -192px}.monsterinsights-flag.monsterinsights-flag-in{background-position:-160px -192px}.monsterinsights-flag.monsterinsights-flag-iq{background-position:-192px -192px}.monsterinsights-flag.monsterinsights-flag-ir{background-position:-224px -192px}.monsterinsights-flag.monsterinsights-flag-is{background-position:-256px -192px}.monsterinsights-flag.monsterinsights-flag-it{background-position:-288px -192px}.monsterinsights-flag.monsterinsights-flag-je{background-position:-320px -192px}.monsterinsights-flag.monsterinsights-flag-jm{background-position:-352px -192px}.monsterinsights-flag.monsterinsights-flag-jo{background-position:-384px -192px}.monsterinsights-flag.monsterinsights-flag-jp{background-position:-416px -192px}.monsterinsights-flag.monsterinsights-flag-ke{background-position:-448px -192px}.monsterinsights-flag.monsterinsights-flag-kg{background-position:-480px -192px}.monsterinsights-flag.monsterinsights-flag-kh{background-position:100% -224px}.monsterinsights-flag.monsterinsights-flag-ki{background-position:-32px -224px}.monsterinsights-flag.monsterinsights-flag-km{background-position:-64px -224px}.monsterinsights-flag.monsterinsights-flag-kn{background-position:-96px -224px}.monsterinsights-flag.monsterinsights-flag-kp{background-position:-128px -224px}.monsterinsights-flag.monsterinsights-flag-kr{background-position:-160px -224px}.monsterinsights-flag.monsterinsights-flag-kw{background-position:-192px -224px}.monsterinsights-flag.monsterinsights-flag-ky{background-position:-224px -224px}.monsterinsights-flag.monsterinsights-flag-kz{background-position:-256px -224px}.monsterinsights-flag.monsterinsights-flag-la{background-position:-288px -224px}.monsterinsights-flag.monsterinsights-flag-lb{background-position:-320px -224px}.monsterinsights-flag.monsterinsights-flag-lc{background-position:-352px -224px}.monsterinsights-flag.monsterinsights-flag-li{background-position:-384px -224px}.monsterinsights-flag.monsterinsights-flag-lk{background-position:-416px -224px}.monsterinsights-flag.monsterinsights-flag-lr{background-position:-448px -224px}.monsterinsights-flag.monsterinsights-flag-ls{background-position:-480px -224px}.monsterinsights-flag.monsterinsights-flag-lt{background-position:100% -256px}.monsterinsights-flag.monsterinsights-flag-lu{background-position:-32px -256px}.monsterinsights-flag.monsterinsights-flag-lv{background-position:-64px -256px}.monsterinsights-flag.monsterinsights-flag-ly{background-position:-96px -256px}.monsterinsights-flag.monsterinsights-flag-ma{background-position:-128px -256px}.monsterinsights-flag.monsterinsights-flag-mc{background-position:-160px -256px}.monsterinsights-flag.monsterinsights-flag-md{background-position:-192px -256px}.monsterinsights-flag.monsterinsights-flag-me{background-position:-224px -256px}.monsterinsights-flag.monsterinsights-flag-mf{background-position:-256px -256px}.monsterinsights-flag.monsterinsights-flag-mg{background-position:-288px -256px}.monsterinsights-flag.monsterinsights-flag-mh{background-position:-320px -256px}.monsterinsights-flag.monsterinsights-flag-mk{background-position:-352px -256px}.monsterinsights-flag.monsterinsights-flag-ml{background-position:-384px -256px}.monsterinsights-flag.monsterinsights-flag-mm{background-position:-416px -256px}.monsterinsights-flag.monsterinsights-flag-mn{background-position:-448px -256px}.monsterinsights-flag.monsterinsights-flag-mo{background-position:-480px -256px}.monsterinsights-flag.monsterinsights-flag-mp{background-position:100% -288px}.monsterinsights-flag.monsterinsights-flag-mq{background-position:-32px -288px}.monsterinsights-flag.monsterinsights-flag-mr{background-position:-64px -288px}.monsterinsights-flag.monsterinsights-flag-ms{background-position:-96px -288px}.monsterinsights-flag.monsterinsights-flag-mt{background-position:-128px -288px}.monsterinsights-flag.monsterinsights-flag-mu{background-position:-160px -288px}.monsterinsights-flag.monsterinsights-flag-mv{background-position:-192px -288px}.monsterinsights-flag.monsterinsights-flag-mw{background-position:-224px -288px}.monsterinsights-flag.monsterinsights-flag-mx{background-position:-256px -288px}.monsterinsights-flag.monsterinsights-flag-my{background-position:-288px -288px}.monsterinsights-flag.monsterinsights-flag-mz{background-position:-320px -288px}.monsterinsights-flag.monsterinsights-flag-na{background-position:-352px -288px}.monsterinsights-flag.monsterinsights-flag-nc{background-position:-384px -288px}.monsterinsights-flag.monsterinsights-flag-ne{background-position:-416px -288px}.monsterinsights-flag.monsterinsights-flag-nf{background-position:-448px -288px}.monsterinsights-flag.monsterinsights-flag-ng{background-position:-480px -288px}.monsterinsights-flag.monsterinsights-flag-ni{background-position:100% -320px}.monsterinsights-flag.monsterinsights-flag-nl{background-position:-32px -320px}.monsterinsights-flag.monsterinsights-flag-no{background-position:-64px -320px}.monsterinsights-flag.monsterinsights-flag-np{background-position:-96px -320px}.monsterinsights-flag.monsterinsights-flag-nr{background-position:-128px -320px}.monsterinsights-flag.monsterinsights-flag-nu{background-position:-160px -320px}.monsterinsights-flag.monsterinsights-flag-nz{background-position:-192px -320px}.monsterinsights-flag.monsterinsights-flag-om{background-position:-224px -320px}.monsterinsights-flag.monsterinsights-flag-pa{background-position:-256px -320px}.monsterinsights-flag.monsterinsights-flag-pe{background-position:-288px -320px}.monsterinsights-flag.monsterinsights-flag-pf{background-position:-320px -320px}.monsterinsights-flag.monsterinsights-flag-pg{background-position:-352px -320px}.monsterinsights-flag.monsterinsights-flag-ph{background-position:-384px -320px}.monsterinsights-flag.monsterinsights-flag-pk{background-position:-416px -320px}.monsterinsights-flag.monsterinsights-flag-pl{background-position:-448px -320px}.monsterinsights-flag.monsterinsights-flag-pn{background-position:-480px -320px}.monsterinsights-flag.monsterinsights-flag-pr{background-position:100% -352px}.monsterinsights-flag.monsterinsights-flag-ps{background-position:-32px -352px}.monsterinsights-flag.monsterinsights-flag-pt{background-position:-64px -352px}.monsterinsights-flag.monsterinsights-flag-pw{background-position:-96px -352px}.monsterinsights-flag.monsterinsights-flag-py{background-position:-128px -352px}.monsterinsights-flag.monsterinsights-flag-qa{background-position:-160px -352px}.monsterinsights-flag.monsterinsights-flag-re{background-position:-192px -352px}.monsterinsights-flag.monsterinsights-flag-ro{background-position:-224px -352px}.monsterinsights-flag.monsterinsights-flag-rs{background-position:-256px -352px}.monsterinsights-flag.monsterinsights-flag-ru{background-position:-288px -352px}.monsterinsights-flag.monsterinsights-flag-rw{background-position:-320px -352px}.monsterinsights-flag.monsterinsights-flag-sa{background-position:-352px -352px}.monsterinsights-flag.monsterinsights-flag-sb{background-position:-384px -352px}.monsterinsights-flag.monsterinsights-flag-sc{background-position:-416px -352px}.monsterinsights-flag.monsterinsights-flag-sd{background-position:-448px -352px}.monsterinsights-flag.monsterinsights-flag-se{background-position:-480px -352px}.monsterinsights-flag.monsterinsights-flag-sg{background-position:100% -384px}.monsterinsights-flag.monsterinsights-flag-sh{background-position:-32px -384px}.monsterinsights-flag.monsterinsights-flag-si{background-position:-64px -384px}.monsterinsights-flag.monsterinsights-flag-sk{background-position:-96px -384px}.monsterinsights-flag.monsterinsights-flag-sl{background-position:-128px -384px}.monsterinsights-flag.monsterinsights-flag-sm{background-position:-160px -384px}.monsterinsights-flag.monsterinsights-flag-sn{background-position:-192px -384px}.monsterinsights-flag.monsterinsights-flag-so{background-position:-224px -384px}.monsterinsights-flag.monsterinsights-flag-sr{background-position:-256px -384px}.monsterinsights-flag.monsterinsights-flag-ss{background-position:-288px -384px}.monsterinsights-flag.monsterinsights-flag-st{background-position:-320px -384px}.monsterinsights-flag.monsterinsights-flag-sv{background-position:-352px -384px}.monsterinsights-flag.monsterinsights-flag-sy{background-position:-384px -384px}.monsterinsights-flag.monsterinsights-flag-sz{background-position:-416px -384px}.monsterinsights-flag.monsterinsights-flag-tc{background-position:-448px -384px}.monsterinsights-flag.monsterinsights-flag-td{background-position:-480px -384px}.monsterinsights-flag.monsterinsights-flag-tf{background-position:100% -416px}.monsterinsights-flag.monsterinsights-flag-tg{background-position:-32px -416px}.monsterinsights-flag.monsterinsights-flag-th{background-position:-64px -416px}.monsterinsights-flag.monsterinsights-flag-tj{background-position:-96px -416px}.monsterinsights-flag.monsterinsights-flag-tk{background-position:-128px -416px}.monsterinsights-flag.monsterinsights-flag-tl{background-position:-160px -416px}.monsterinsights-flag.monsterinsights-flag-tm{background-position:-192px -416px}.monsterinsights-flag.monsterinsights-flag-tn{background-position:-224px -416px}.monsterinsights-flag.monsterinsights-flag-to{background-position:-256px -416px}.monsterinsights-flag.monsterinsights-flag-tr{background-position:-288px -416px}.monsterinsights-flag.monsterinsights-flag-tt{background-position:-320px -416px}.monsterinsights-flag.monsterinsights-flag-tv{background-position:-352px -416px}.monsterinsights-flag.monsterinsights-flag-tw{background-position:-384px -416px}.monsterinsights-flag.monsterinsights-flag-tz{background-position:-416px -416px}.monsterinsights-flag.monsterinsights-flag-ua{background-position:-448px -416px}.monsterinsights-flag.monsterinsights-flag-ug{background-position:-480px -416px}.monsterinsights-flag.monsterinsights-flag-us{background-position:100% -448px}.monsterinsights-flag.monsterinsights-flag-uy{background-position:-32px -448px}.monsterinsights-flag.monsterinsights-flag-uz{background-position:-64px -448px}.monsterinsights-flag.monsterinsights-flag-va{background-position:-96px -448px}.monsterinsights-flag.monsterinsights-flag-vc{background-position:-128px -448px}.monsterinsights-flag.monsterinsights-flag-ve{background-position:-160px -448px}.monsterinsights-flag.monsterinsights-flag-vg{background-position:-192px -448px}.monsterinsights-flag.monsterinsights-flag-vi{background-position:-224px -448px}.monsterinsights-flag.monsterinsights-flag-vn{background-position:-256px -448px}.monsterinsights-flag.monsterinsights-flag-vu{background-position:-288px -448px}.monsterinsights-flag.monsterinsights-flag-wf{background-position:-320px -448px}.monsterinsights-flag.monsterinsights-flag-ws{background-position:-352px -448px}.monsterinsights-flag.monsterinsights-flag-ye{background-position:-384px -448px}.monsterinsights-flag.monsterinsights-flag-yt{background-position:-416px -448px}.monsterinsights-flag.monsterinsights-flag-za{background-position:-448px -448px}.monsterinsights-flag.monsterinsights-flag-zm{background-position:-480px -448px}.monsterinsights-flag.monsterinsights-flag-zw{background-position:100% -480px}.monsterinsights-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%,.3803921568627451)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box.monsterinsights-year-in-review-table-box-blur-report .monsterinsights-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title{display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-title .monsterinsights-report-title{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle{display:inline-block;float:left}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-header .monsterinsights-year-in-review-table-box-subtitle .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:left;color:#393f4c;margin:0;text-transform:capitalize}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list{padding-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item{padding:9px 30px}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:active,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:focus,.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-list .monsterinsights-table-list-item .monsterinsights-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;right:0;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer{bottom:-40px}}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip span{font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-year-in-review-table-box .monsterinsights-year-in-review-table-box-footer .monsterinsights-yir-tooltip .monsterinsights-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-left:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:inline-block;float:right}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder{display:block;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-reports-pie-chart-holder .monsterinsights-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-right:50px;padding-top:35px;float:right}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content{padding-right:0;padding-top:20px;float:none}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-title{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-report-subtitle{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{position:relative;right:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend{margin:10px 0 0}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{display:inline-block;margin-left:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li{margin-left:10px}}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-left:5px}.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-left:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-text,.monsterinsights-report-year-in-review .monsterinsights-reports-year-in-review-pie-chart .monsterinsights-yir-reports-pie-chart-content .monsterinsights-pie-chart-legend li .monsterinsights-pie-chart-legend-value{font-size:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip a,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip h3,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{float:right;width:144px;text-align:center}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon{width:90px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{float:right;width:calc(100% - 144px);padding-left:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content{padding-left:0;width:calc(100% - 90px)}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-title{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-summary{font-size:12px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper{margin-top:15px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:right}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-tip .monsterinsights-yir-tip-content .monsterinsights-yir-tip-content-link-wrapper .monsterinsights-yir-tip-content-link{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay{position:absolute;top:0;right:0;width:calc(100% - 25px);height:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-left:25px;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-details{font-size:14px;line-height:20px;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success{background:#1ec185}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay.monsterinsights-yir-success:hover{opacity:.8;background:#10ad73}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-upsell-overlay .monsterinsights-yir-upsell-content .monsterinsights-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience{padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{width:100%;margin-bottom:70px;padding-right:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors{margin-bottom:20px;padding-right:0;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions img,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors img{margin-bottom:15px;max-height:28px}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions h4,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors h4{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-sessions .monsterinsights-yir-number,.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-total-visitors-sessions .monsterinsights-yir-visitors .monsterinsights-yir-number{font-size:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-visitor-by-chart{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{display:block}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag{margin:0 auto}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-flag.monsterinsights-flag-zz{display:none}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-name{font-size:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-country .monsterinsights-yir-top-country-visitors{font-size:16px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-countries .monsterinsights-yir-top-countries-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-know-visitors{font-size:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info{margin-top:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-demographics .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:10px;line-height:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior{padding-top:30px;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data{display:block;margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{width:32px;height:32px;margin-right:-3px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary img{margin-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-left:10px;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-number{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-total-time-spent .monsterinsights-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-pages-summary .monsterinsights-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:50%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-pages-data .monsterinsights-yir-top-pages-graph{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-most-visitors-device{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info{margin-top:20px;text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info{width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info span,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info h2,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-age-info p,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-info .monsterinsights-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-grow-traffic-tip{margin-top:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:50%;position:relative}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords,.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{width:100%}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-left:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-keywords{padding-left:0;margin-bottom:60px}}.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-right:25px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-behavior .monsterinsights-yir-visitors-come-from .monsterinsights-yir-keywords-referrals .monsterinsights-yir-referrals{padding-right:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce{padding-top:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-title{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:55%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number{width:30%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-products-sold,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-revenue{padding:75px 0}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-title{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-number .monsterinsights-yir-amount{font-size:24px;line-height:40px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:45%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products{width:70%}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning img,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular img{margin-bottom:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning span,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular span{font-size:14px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-product-title,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-highest-earning .monsterinsights-yir-count,.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-data .monsterinsights-yir-products .monsterinsights-yir-most-popular .monsterinsights-yir-count{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-ecommerce .monsterinsights-yir-revenue-by-month{margin-bottom:50px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:100% 0;padding-bottom:85px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you{padding-top:0;padding-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-title{font-size:30px;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-summary{font-size:14px;line-height:16px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors{margin-bottom:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author{padding:0 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.chris{background-image:url(../img/chris.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-thumbnail.syed{background-image:url(../img/syed.png)}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-authors .monsterinsights-yir-author .monsterinsights-yir-name{font-size:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review{display:block}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{width:100%}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content{text-align:center}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span{font-size:12px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3{font-size:18px;line-height:24px}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{list-style:none;display:inline-block;margin-left:7px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li{margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button{text-align:center;padding-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:active,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:hover{background:#123c68}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-title{font-size:20px;line-height:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-summary{font-size:14px;line-height:14px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-top:20px;margin-right:-30px;margin-left:-30px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins{margin-right:0;margin-left:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:calc(50% - 60px);float:right;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon{width:100%;margin:30px 0;min-height:300px}}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top{padding-top:30px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image{width:104px;float:right;padding-right:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-image .monsterinsights-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text{width:calc(100% - 104px);float:right;padding-left:25px}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;right:0;width:100%}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status{float:left;line-height:32px;font-weight:900;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message .monsterinsights-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:active,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins .monsterinsights-addon .monsterinsights-addon-message.monsterinsights-addon-active .monsterinsights-button:hover{background:rgba(51,142,239,.5)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities{padding-top:100px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities h3{font-size:18px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities{display:block;margin-right:0;padding-bottom:0}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-right:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{margin-right:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community{min-height:350px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{position:absolute;bottom:15px;right:24px;width:80%;width:calc(100% - 48px)}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link{padding:8px 10px}}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links{margin:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li{float:right;margin-left:8px;margin-bottom:0}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:focus,.monsterinsights-report-year-in-review .monsterinsights-yir-join-communities .monsterinsights-yir-communities .monsterinsights-yir-community .monsterinsights-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-report-year-in-review .monsterinsights-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.monsterinsights-report-year-in-review .monsterinsights-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.monsterinsights-report-year-in-review .monsterinsights-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.monsterinsights-report-site-speed .monsterinsights-report-top h2.monsterinsights-report-top-title{margin-top:10px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report{margin-left:16px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit{background-color:#3990ec;height:39px}.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit:hover{background-color:rgba(57,144,236,.8)}.monsterinsights-report-site-speed .monsterinsights-choose-device-button{margin-right:15px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active .svg-icons{fill:#fff}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:45px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile svg{margin-right:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:54px;height:40px}.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop svg{margin-right:-6px;margin-top:-1px}.monsterinsights-report-site-speed .monsterinsights-site-speed-container{max-width:1010px}.monsterinsights-report-site-speed .monsterinsights-site-speed-device,.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:338px;margin-left:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator{width:100%;margin-bottom:25px}}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon{margin-bottom:40px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon .desktop{width:80px}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(55deg);-ms-transform:scaleX(-1) rotate(55deg);transform:scaleX(-1) rotate(55deg);overflow:visible}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__percent{position:absolute;top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__container{display:inline-block;position:relative}.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:662px}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats{width:100%}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex{text-align:center}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex.monsterinsights-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat{width:100%;margin-top:15px;margin-left:0}}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat p{color:#828282}.monsterinsights-report-site-speed .monsterinsights-how-to-improve h2.title{font-size:22px;color:#393f4c}div.monsterinsights-pdf-score{position:relative;margin:80px;right:-1px;top:1px}.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding-right:10px;padding-left:10px;width:auto}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container{padding:0}}@media (max-width:782px){.monsterinsights-reports-page .monsterinsights-report-top{margin-bottom:25px}}.monsterinsights_page.monsterinsights-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-details,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-pdf-score{display:block!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-title,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion .monsterinsights-accordion div:not(:last-child){border:none!important}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-trigger-icon,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-notificationsv3-container,.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-progress-circle{display:none}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page{width:1120px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button:first-child{border-left:0}@media (max-width:782px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:right}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-right:1px solid #d6e2ed}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;right:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart{width:50%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart:first-child{margin:0 0 0 25px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box{margin-right:20px;margin-top:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box:first-child{margin-right:0}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex.monsterinsights-interests-scroll-report .monsterinsights-table-box{width:100%}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart{width:calc(50% - 12.5px)}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart:first-child{margin:0 0 0 25px}.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px;margin-top:0}}.monsterinsights-report{padding:20px;position:relative}body.monsterinsights-reporting-page #wpbody-content{padding-bottom:0}body.monsterinsights-reporting-page #wpfooter{padding-top:0}body.monsterinsights-reporting-page #wpfooter:before{display:none}body.monsterinsights-reporting-page .monsterinsights-red{color:#d73638}body.monsterinsights-reporting-page .monsterinsights-green{color:#5cc0a5}body.monsterinsights-reporting-page .monsterinsights-report-top{margin-top:14px}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top{margin-bottom:25px}}body.monsterinsights-reporting-page .monsterinsights-report-top h2{margin:14px 0 28px;display:inline-block;color:#393f4c;font-size:24px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:none}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-report-top h2{display:block;margin:0 0 25px}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:left;margin-left:25px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-left:0;margin-bottom:0;text-align:center}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-export-pdf-report{float:none;margin-bottom:0}}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button{background-color:#eceff5;color:#444;border-color:#d6e2ed}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:hover{background-color:#fff}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button[disabled=disabled]{cursor:not-allowed}body.monsterinsights-reporting-page .monsterinsights-report-realtime .monsterinsights-export-pdf-report{margin-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle{width:100%;margin-left:0}body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.monsterinsights-reporting-page .monsterinsights-reports-datepicker{float:left}}body.monsterinsights-reporting-page .monsterinsights-datepicker{width:200px;background-color:#8ea4b4;font-weight:700;color:#fff;text-align:center;border-color:#708c9f;border-width:1px 1px 2px;border-radius:3px;height:40px;margin:0}body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder,body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder{color:#fff}body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder{color:#fff}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-datepicker{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;font-size:14px}}body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{width:calc(50% - 5px);margin-bottom:20px;margin-top:10px;margin-right:10px;font-weight:700}@media (min-width:783px){body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle{display:none}}body.monsterinsights-reporting-page .monsterinsights-info{color:#b6c9da;cursor:help;font-size:15px}body.monsterinsights-reporting-page .monsterinsights-report-row{margin-bottom:25px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-left:0;margin:0}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#fff}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#fff;color:#509fe2;font-weight:700}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{background:#8ea4b4;border-radius:3px;color:#fff;border:solid #708c9f;border-width:1px 1px 2px;position:relative;text-align:right;font-size:14px;font-weight:400;line-height:1.1;padding:10px 20px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:hover{background:#3a93dd;cursor:pointer}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info{max-width:100%;width:100%;padding:12px 20px 8px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-right:38px;margin-left:12px}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i{margin-right:10px;margin-left:10px;vertical-align:top;display:inline-block}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:after{width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;left:20px}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #d6e2ed;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;right:0;top:100%}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown.monsterinsights-p-0{padding:0;max-width:auto;border:0}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button{display:block;width:100%;margin-bottom:5px;text-align:right;background-color:#fff;color:#444;border:none}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button.monsterinsights-interval-active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:active,body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button:hover{background-color:#eceff4;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-intervals-dropdown button i{margin-left:10px}body.monsterinsights-reporting-page .monsterinsights-datepicker,body.monsterinsights-reporting-page .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container{max-width:100%;width:100%}}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .monsterinsights-hide{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar{width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#509fe2;border-color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#eceff4;padding:14px 28px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#444}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 5px 0 10px;min-height:25px}.monsterinsights-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 0 24px rgba(89,164,234,.33);box-shadow:0 0 24px rgba(89,164,234,.33)}#monsterinsights-chartjs-line-overview-tooltip{min-width:100px}.monsterinsights-reports-overview-datagraph-tooltip-title{color:#23282d;font-size:14px;font-weight:400;border-bottom:1px solid #d4e2ef;padding-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-number{color:#23282d;font-size:24px;font-weight:400;margin-top:5px;margin-bottom:5px}.monsterinsights-reports-overview-datagraph-tooltip-descriptor{color:#23282d;font-size:12px;font-weight:400;margin-bottom:10px}.monsterinsights-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:16px;font-weight:400}#monsterinsights-chartjs-bar-tooltip,.monsterinsights-line-chart-tooltip{opacity:1;position:absolute;margin-right:-55px}.monsterinsights-report-tabs-navigation{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-report-tabs-navigation button{border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#eceff4;color:#444;width:100%;font-weight:700;text-align:right;font-size:18px;padding:23px 20px 25px;cursor:pointer;margin:0;position:relative}@media (max-width:782px){.monsterinsights-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.monsterinsights-report-tabs-navigation button:first-child{border-left:1px solid #d6e2ed}.monsterinsights-report-tabs-navigation button:focus{z-index:10}.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{background:#fff;color:#509fe2;border-bottom:none;border-top:2px solid #3a93dd;padding-top:20px}@media (max-width:782px){.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button{padding-top:12px}}.monsterinsights-report-tabs-navigation button i{margin-left:10px;color:#8ba4b7}.monsterinsights-report-tabs{background:#fff;border:1px solid #d6e2ed;border-top:none}.monsterinsights-report-tabs .monsterinsights-report-tabs-content{padding:20px}.monsterinsights-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #d6e2ed}@media (max-width:782px){.monsterinsights-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:25%;background:#fff;border-right:1px solid #d6e2ed;padding:17px 20px 15px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info{position:absolute;left:20px;top:18px}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child{border-right:none}@media (max-width:782px){.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4){border-top:1px solid #d6e2ed}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3){border-right:none}}.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title{padding-left:18px;text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2}.monsterinsights-report-title{font-size:18px;color:#393f4c;font-weight:700;margin-top:0}.monsterinsights-reports-infobox-number{font-size:40px;font-weight:200;display:inline-block;line-height:1;margin-top:11px;float:right}@media (max-width:782px){.monsterinsights-reports-infobox-number{font-size:36px;float:none}}.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:left}@media (max-width:1280px){.monsterinsights-reports-infobox-compare,.monsterinsights-reports-infobox-prev{float:none;clear:both}}.monsterinsights-reports-infobox-prev{font-size:16px;margin-top:15px}.monsterinsights-reports-infobox-compare{clear:left;font-size:12px;color:#acbdc9}.monsterinsights-buttons-toggle{margin-left:25px}.monsterinsights-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.monsterinsights-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-pie-chart-legend-color{width:12px;height:12px;display:inline-block;margin-left:5px;border-radius:50%}.monsterinsights-pie-chart-legend-text{min-width:100px;margin-left:10px;display:inline-block;font-size:16px;color:#393f4c}.monsterinsights-pie-chart-legend-value{color:#393f4c;font-size:18px;font-weight:500}.monsterinsights-reports-pie-chart{width:50%;padding:20px;background:#fff;border:1px solid #d6e2ed;position:relative}.monsterinsights-reports-pie-chart:first-child{margin-left:25px}@media (max-width:991px){.monsterinsights-reports-pie-chart:first-child{margin:0 0 25px}}@media (max-width:991px){.monsterinsights-reports-pie-chart{width:100%}}.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder{position:relative}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart{margin:0 auto}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:absolute;right:250px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0}@media (max-width:782px){.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend{position:relative;right:auto;top:auto;-webkit-transform:none;-ms-transform:none;transform:none;margin-top:20px}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value{float:left}}.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip{position:absolute;pointer-events:none}.monsterinsights-reports-pie-chart .monsterinsights-info{position:absolute;top:20px;left:20px}.monsterinsights-table-box{border:1px solid #d6e2ed;background:#fff;width:100%;margin-right:20px;padding-top:18px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-table-box:first-child{margin-right:0;margin-top:0}.monsterinsights-table-box h3{margin-right:20px}.monsterinsights-table-box .monsterinsights-info{position:absolute;top:20px;left:20px}@media (max-width:991px){.monsterinsights-table-box{margin-right:0;margin-top:20px}}.monsterinsights-table-box-footer{background:#f9fbff;border-top:1px solid #d6e2ed;padding:20px}.monsterinsights-table-box-footer:after{display:table;clear:both;content:""}@media (max-width:782px){.monsterinsights-table-box-footer>.monsterinsights-button{width:100%;text-align:center}}.monsterinsights-table-list-item{padding:12px 20px;min-height:43px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex}table .monsterinsights-table-list-item{display:table-row}.monsterinsights-table-list-item:nth-child(odd){background-color:#f9fbff}.monsterinsights-table-list-item .monsterinsights-reports-list-text{color:#393f4c;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px}.monsterinsights-table-list-item .monsterinsights-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis}.monsterinsights-table-list-item .monsterinsights-reports-list-text img{display:inline-block;margin-left:10px;vertical-align:middle}.monsterinsights-table-list-item .monsterinsights-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-12px -8px -10px 0}.monsterinsights-table-list-item a{text-decoration:none;color:#393f4c}.monsterinsights-table-list-item a:focus,.monsterinsights-table-list-item a:hover{color:#777}.monsterinsights-table-list-item .monsterinsights-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.monsterinsights-table-list-item .monsterinsights-reports-list-number{color:#393f4c;font-size:15px;text-align:left;display:block;padding-right:5px}.monsterinsights-table-box-pagination{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.monsterinsights-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}.monsterinsights-table-box-pagination span{margin-left:20px;color:#8ba4b7}.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle{margin-left:0}.monsterinsights-table-box-list{height:100%}.monsterinsights-table-box-table .monsterinsights-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.monsterinsights-table-box-table .monsterinsights-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.monsterinsights-table-box-mobile .monsterinsights-table-box-table{overflow:auto}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-right:0;margin-right:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1{margin-right:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-right:20px;font-size:15px;color:#393f4c;padding-top:12px;padding-bottom:12px;border-top:none}.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th{display:none;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1{display:block;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content{padding-left:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;left:10px;top:50%;-webkit-transform:translateY(-50%) rotate(-180deg);-ms-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);color:#acbdc9;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading{min-width:125px}.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after{display:none}.monsterinsights-table-box-table table{width:100%;border-collapse:collapse}.monsterinsights-table-box-mobile .monsterinsights-table-box-table table{table-layout:fixed}.monsterinsights-table-box-table th{text-align:right;font-size:15px}.monsterinsights-table-box-table td,.monsterinsights-table-box-table th{border:none;padding:12px 10px;line-height:19px}.monsterinsights-table-box-table td:first-child,.monsterinsights-table-box-table th:first-child{padding-right:20px}.monsterinsights-table-box-table td:last-child,.monsterinsights-table-box-table th:last-child{padding-left:20px}.monsterinsights-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-report-2-columns .monsterinsights-table-box{width:calc(50% - 12.5px)}@media (max-width:991px){.monsterinsights-report-2-columns .monsterinsights-table-box{width:100%}}.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox{width:50%}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1){margin-right:0}.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3){margin-top:25px}.monsterinsights-report-flex .monsterinsights-report-box{width:calc(50% - 12.5px)}@media (max-width:782px){.monsterinsights-report-flex .monsterinsights-report-box{width:100%;margin-top:20px}.monsterinsights-report-flex .monsterinsights-report-box:first-child{margin-top:0}}.monsterinsights-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-arrow{width:12.5px;height:13px;display:inline-block;background-size:contain;background-repeat:no-repeat}.monsterinsights-arrow.monsterinsights-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.monsterinsights-arrow.monsterinsights-down.monsterinsights-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.monsterinsights-arrow.monsterinsights-up.monsterinsights-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.monsterinsights-reports-overview-datagraph-tooltip-trend{font-weight:700}.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow{margin-left:5px}.monsterinsights-report-box{background:#fff;border:1px solid #d6e2ed;padding:0 20px 20px;position:relative}.monsterinsights-report-box .monsterinsights-info{position:absolute;left:20px;top:20px}.monsterinsights-realtime-large{font-size:150px;text-align:center;line-height:1.5;color:#393f4c}.monsterinsights-realtime-active{text-align:center;width:100%;font-size:25px;line-height:1;margin-top:-50px;color:#393f4c}.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip{max-width:115px}#monsterinsights-chartjs-pie-age-tooltip{margin-right:23px;min-width:95px}.monsterinsights-blur .monsterinsights-report-top{pointer-events:none;-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.monsterinsights-blur .monsterinsights-report{min-height:850px}.monsterinsights-blur .upsell-blur{background:#fff;width:100%;min-height:100vh}.monsterinsights-blur .upsell-blur img{max-width:100%}.monsterinsights-reports-referral-icon{vertical-align:middle;margin-left:10px;margin-right:2px}.monsterinsights-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:0 0;background-color:#fff;background-size:452px}@media (max-width:991px){.monsterinsights-upsell-inline .monsterinsights-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px}.monsterinsights-upsell-content{max-width:750px}.monsterinsights-upsell-content__features{margin-bottom:46px;-webkit-box-flex:1;-ms-flex:1;flex:1}.monsterinsights-upsell-content__img{width:278px;background-position:0 100%;background-repeat:no-repeat;background-size:contain}.monsterinsights-upsell-content__img.upsell-publisher{background-image:url(../img/bg-publisher@2x.png)}.monsterinsights-upsell-content__img.upsell-queries{background-image:url(../img/bg-queries@2x.png)}.monsterinsights-upsell-content__img.upsell-forms{background-image:url(../img/bg-forms@2x.png)}.monsterinsights-upsell-content__img.upsell-realtime{background-image:url(../img/bg-realtime@2x.png)}.monsterinsights-upsell-content__img.upsell-ecommerce{background-image:url(../img/bg-ecommerce@2x.png)}.monsterinsights-upsell-content__img.upsell-dimensions{background-image:url(../img/bg-dimensions@2x.png);background-position:50%}.monsterinsights-upsell-content__img.upsell-sitespeed{background-image:url(../img/bg-sitespeed@2x.png)}.monsterinsights-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.monsterinsights-upsell-content .monsterinsights-light{color:#657086}.monsterinsights-upsell-content .monsterinsights-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.monsterinsights-upsell-content .monsterinsights-button{font-size:15px}}.monsterinsights-upsell-overlay{position:absolute;top:125px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:26px 40px;display:-webkit-box;display:-ms-flexbox;display:flex;gap:16px}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-top{padding:0 20px}}@media (max-width:782px){.monsterinsights-upsell-overlay{top:70px;width:calc(100% - 40px)}}.monsterinsights-upsell-overlay h3{text-align:right;color:#23262e;font-size:20px;line-height:100%;margin:0}.monsterinsights-upsell-overlay h4{font-size:16px;line-height:140%;color:#444}.monsterinsights-upsell-overlay p{margin:24px 0;font-size:15px;line-height:140%;color:#444}.monsterinsights-upsell-overlay .monsterinsights-upsell-content{border-top:1px solid #e2e4e9;padding:32px 40px 0 0}@media (max-width:782px){.monsterinsights-upsell-overlay .monsterinsights-upsell-content{padding-right:20px;padding-left:20px}}.monsterinsights-upsell-overlay .monsterinsights-upsell-content h3{font-size:23px;line-height:120%}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul{margin:16px auto 24px;display:grid;grid-gap:10px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-1{grid-template-columns:1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li{color:#393f4c;font-size:13px;padding-right:24px;position:relative;line-height:17px}.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before{position:absolute;width:16px;height:17px;background:url(../img/bullet.svg) no-repeat 50%;right:0;display:inline-block;top:-1px;content:""}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button{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:11.5px 24px 11.5px 45px;position:relative}.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after{content:"";width:13px;height:15px;background:url(../img/icon-lock.svg) no-repeat 50%;position:absolute;right:calc(100% - 37px);top:16px}.monsterinsights-upsell-overlay a{color:#393f4c}.monsterinsights-upsell-overlay a:hover{text-decoration:none}.monsterinsights-center,.monsterinsights-mobile-upsell{text-align:center}.monsterinsights-mobile-upsell .monsterinsights-notice{border-top:1px solid #d6e2ed;border-left:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-mobile-upsell .monsterinsights-notice-inner{margin-top:0}@media (min-width:783px){.monsterinsights-mobile-upsell{display:none}}.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button{margin-left:0}@media (max-width:782px){.monsterinsights-overview-upsell-desktop{display:none}}.monsterinsights-report-realtime .monsterinsights-table-box th:first-child{width:auto}.monsterinsights-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.monsterinsights-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.monsterinsights-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px}@media (max-width:991px){.monsterinsights-report-scroll:nth-child(2){width:100%;margin-right:0;margin-top:25px}}@media (max-width:782px){.monsterinsights-report-scroll{width:100%;margin-right:0}}.monsterinsights-report-scroll>h3{position:absolute;top:0}.monsterinsights-report-scroll .monsterinsights-realtime-active{margin:0 0 50px}.monsterinsights-report-scroll .monsterinsights-realtime-box-content{margin:25px 0}.monsterinsights-report-scroll .monsterinsights-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;right:50%;width:750px;max-width:100%;margin-right:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{right:0;margin-right:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-right:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate{text-align:center}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt{background:#509fe2;border-color:#2e7fbe;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus,.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-reports-list-has-overflow{cursor:pointer}.monsterinsights-admin-page .monsterinsights-lite-datepicker{text-align:center;padding:12px 12px 27px}.monsterinsights-admin-page .monsterinsights-lite-datepicker p{color:#444;font-size:15px;line-height:1.5;font-weight:700}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text{color:#509fe2;display:inline-block;width:auto}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:hover{color:#3a93dd}.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text i{margin-right:10px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown{min-width:250px}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button{background:rgba(0,0,0,0);color:#509fe2}body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:focus,body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:hover{color:#3a93dd}
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