Google Analytics for WordPress by MonsterInsights - Version 7.15.0

Version Description

= 7.0.0 =

This is a major release. Please back up your site before upgrading.

= 6.0.0 =

This is a major release. Please back up your site before upgrading.

Download this release

Release Info

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

Code changes from version 7.14.0 to 7.15.0

assets/js/frontend-gtag.js ADDED
@@ -0,0 +1,648 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Developer's Notice:
3
+ *
4
+ * Note: JS in this file (and this file itself) is not guaranteed backwards compatibility. JS can be added, changed or removed at any time without notice.
5
+ * For more information see the `Backwards Compatibility Guidelines for Developers` section of the README.md file.
6
+ */
7
+ /**
8
+ * Handles:
9
+ * - JS Events handling
10
+ *
11
+ * @since 7.15.0
12
+ */
13
+ var MonsterInsights = function () {
14
+ /* MonsterInsights JS events tracking works on all major browsers, including IE starting at IE 7, via polyfills for any major JS function used that
15
+ is not supported by at least 95% of the global and/or US browser marketshare. Currently, IE 7 & 8 which as of 2/14/17 have under 0.25% global marketshare, require
16
+ us to polyfill Array.prototype.lastIndexOf, and if they continue to drop, we might remove this polyfill at some point. In that case note that events tracking
17
+ for IE 7/8 will continue to work, with the exception of events tracking of downloads. */
18
+ var lastClicked = [];
19
+ var internalAsOutboundCategory = '';
20
+
21
+ this.setLastClicked = function ( valuesArray, fieldsArray, tracked ) {
22
+ valuesArray = typeof valuesArray !== 'undefined' ? valuesArray : [];
23
+ fieldsArray = typeof fieldsArray !== 'undefined' ? fieldsArray : [];
24
+ tracked = typeof tracked !== 'undefined' ? tracked : false;
25
+
26
+ lastClicked.valuesArray = valuesArray;
27
+ lastClicked.fieldsArray = fieldsArray;
28
+ };
29
+
30
+ this.getLastClicked = function () {
31
+ return lastClicked;
32
+ };
33
+
34
+ this.setInternalAsOutboundCategory = function ( category ) {
35
+ internalAsOutboundCategory = category;
36
+ };
37
+
38
+ this.getInternalAsOutboundCategory = function () {
39
+ return internalAsOutboundCategory;
40
+ };
41
+
42
+ this.sendEvent = function ( type, action, fieldsArray ) {
43
+ __gtagTrackerSend( type, action, fieldsArray, [] );
44
+ };
45
+
46
+ function __gtagTrackerIsDebug() {
47
+ if ( window.monsterinsights_debug_mode ) {
48
+ return true;
49
+ } else {
50
+ return false;
51
+ }
52
+ }
53
+
54
+ /**
55
+ * This attempts to be compatible with the gtag function.
56
+ *
57
+ * @see https://developers.google.com/analytics/devguides/collection/gtagjs
58
+ * @param type string Type of request, event, timing, config.
59
+ * @param action string Event action or UA for config.
60
+ * @param fieldsArray object The configuration object.
61
+ * @param valuesArray object The values for the log.
62
+ * @private
63
+ */
64
+ function __gtagTrackerSend( type, action, fieldsArray, valuesArray ) {
65
+ type = typeof type !== 'undefined' ? type : 'event';
66
+ action = typeof action !== 'undefined' ? action : '';
67
+ valuesArray = typeof valuesArray !== 'undefined' ? valuesArray : [];
68
+ fieldsArray = typeof fieldsArray !== 'undefined' ? fieldsArray : {};
69
+
70
+ __gtagTracker( type, action, fieldsArray );
71
+
72
+ lastClicked.valuesArray = valuesArray;
73
+ lastClicked.fieldsArray = fieldsArray;
74
+ lastClicked.fieldsArray.event_action = action;
75
+ lastClicked.tracked = true;
76
+ __gtagTrackerLog( 'Tracked: ' + valuesArray.type );
77
+ __gtagTrackerLog( lastClicked );
78
+ }
79
+
80
+ function __gtagTrackerNotSend( valuesArray ) {
81
+ valuesArray = typeof valuesArray !== 'undefined' ? valuesArray : [];
82
+
83
+ lastClicked.valuesArray = valuesArray;
84
+ lastClicked.fieldsArray = [];
85
+ lastClicked.tracked = false;
86
+ __gtagTrackerLog( 'Not Tracked: ' + valuesArray.exit );
87
+ __gtagTrackerLog( lastClicked );
88
+ }
89
+
90
+ function __gtagTrackerLog( message ) {
91
+ if ( __gtagTrackerIsDebug() ) {
92
+ console.dir( message );
93
+ }
94
+ }
95
+
96
+ function __gtagTrackerStringTrim( x ) {
97
+ return x.replace( /^\s+|\s+$/gm, '' );
98
+ }
99
+
100
+ function __gtagTrackerGetDomain() {
101
+ var i = 0, currentdomain = document.domain, p = currentdomain.split( '.' ), s = '_gd' + (
102
+ new Date()
103
+ ).getTime();
104
+ while ( i < ( p.length - 1 ) && document.cookie.indexOf( s + '=' + s ) == - 1 ) {
105
+ currentdomain = p.slice( - 1 - (
106
+ ++ i
107
+ ) ).join( '.' );
108
+ document.cookie = s + "=" + s + ";domain=" + currentdomain + ";";
109
+ }
110
+ document.cookie = s + "=;expires=Thu, 01 Jan 1970 00:00:01 GMT;domain=" + currentdomain + ";";
111
+ return currentdomain;
112
+ }
113
+
114
+ function __gtagTrackerGetExtension( extension ) {
115
+ extension = extension.toString();
116
+ extension = extension.substring( 0, (
117
+ extension.indexOf( "#" ) == - 1
118
+ ) ? extension.length : extension.indexOf( "#" ) ); /* Remove the anchor at the end, if there is one */
119
+ extension = extension.substring( 0, (
120
+ extension.indexOf( "?" ) == - 1
121
+ ) ? extension.length : extension.indexOf( "?" ) ); /* Remove the query after the file name, if there is one */
122
+ extension = extension.substring( extension.lastIndexOf( "/" ) + 1, extension.length ); /* Remove everything before the last slash in the path */
123
+ if ( extension.length > 0 && extension.indexOf( '.' ) !== - 1 ) { /* If there's a period left in the URL, then there's a extension. Else it is not a extension. */
124
+ extension = extension.substring( extension.indexOf( "." ) + 1 ); /* Remove everything but what's after the first period */
125
+ return extension;
126
+ } else {
127
+ return "";
128
+ }
129
+ }
130
+
131
+ function __gtagTrackerTrackedClick( event ) {
132
+ return event.which == 1 || event.which == 2 || event.metaKey || event.ctrlKey || event.shiftKey || event.altKey;
133
+ }
134
+
135
+ function __gtagTrackerGetDownloadExtensions() {
136
+ var download_extensions = [];
137
+ if ( typeof monsterinsights_frontend.download_extensions == 'string' ) {
138
+ download_extensions = monsterinsights_frontend.download_extensions.split( "," );
139
+ }
140
+ return download_extensions;
141
+ }
142
+
143
+ function __gtagTrackerGetInboundPaths() {
144
+ var inbound_paths = [];
145
+ if ( typeof monsterinsights_frontend.inbound_paths == 'string' ) {
146
+ inbound_paths = JSON.parse( monsterinsights_frontend.inbound_paths );
147
+ }
148
+
149
+ return inbound_paths;
150
+ }
151
+
152
+ function __gtagTrackerTrackedClickType( event ) {
153
+ if ( event.which == 1 ) {
154
+ return 'event.which=1';
155
+ } else if ( event.which == 2 ) {
156
+ return 'event.which=2';
157
+ } else if ( event.metaKey ) {
158
+ return 'metaKey';
159
+ } else if ( event.ctrlKey ) {
160
+ return 'ctrlKey';
161
+ } else if ( event.shiftKey ) {
162
+ return 'shiftKey';
163
+ } else if ( event.altKey ) {
164
+ return 'altKey';
165
+ } else {
166
+ return '';
167
+ }
168
+ }
169
+
170
+ function __gtagTrackerLinkType( el ) {
171
+ var download_extensions = __gtagTrackerGetDownloadExtensions();
172
+ var inbound_paths = __gtagTrackerGetInboundPaths();
173
+ var type = 'unknown';
174
+ var link = el.href;
175
+ var extension = __gtagTrackerGetExtension( el.href );
176
+ var currentdomain = __gtagTrackerGetDomain();
177
+ var hostname = el.hostname;
178
+ var protocol = el.protocol;
179
+ var pathname = el.pathname;
180
+ link = link.toString();
181
+ var index, len;
182
+ var category = el.getAttribute( "data-vars-ga-category" );
183
+
184
+ if ( category ) {
185
+ return category;
186
+ }
187
+
188
+ if ( link.match( /^javascript\:/i ) ) {
189
+ type = 'internal'; /* if it's a JS link, it's internal */
190
+ } else if ( protocol && protocol.length > 0 && (
191
+ __gtagTrackerStringTrim( protocol ) == 'tel' || __gtagTrackerStringTrim( protocol ) == 'tel:'
192
+ ) ) { /* If it's a telephone link */
193
+ type = "tel";
194
+ } else if ( protocol && protocol.length > 0 && (
195
+ __gtagTrackerStringTrim( protocol ) == 'mailto' || __gtagTrackerStringTrim( protocol ) == 'mailto:'
196
+ ) ) { /* If it's a email */
197
+ type = "mailto";
198
+ } else if ( hostname && currentdomain && hostname.length > 0 && currentdomain.length > 0 && !hostname.endsWith( '.' + currentdomain ) && hostname !== currentdomain ) { /* If it's a outbound */
199
+ type = "external";
200
+ } else if ( pathname && JSON.stringify( inbound_paths ) != "{}" && pathname.length > 0 ) { /* If it's an internal as outbound */
201
+ var inbound_paths_length = inbound_paths.length;
202
+ for ( var inbound_paths_index = 0; inbound_paths_index < inbound_paths_length; inbound_paths_index ++ ) {
203
+ if ( inbound_paths[inbound_paths_index].path && inbound_paths[inbound_paths_index].label && inbound_paths[inbound_paths_index].path.length > 0 && inbound_paths[inbound_paths_index].label.length > 0 && pathname.startsWith( inbound_paths[inbound_paths_index].path ) ) {
204
+ type = "internal-as-outbound";
205
+ internalAsOutboundCategory = "outbound-link-" + inbound_paths[inbound_paths_index].label;
206
+ break;
207
+ }
208
+ }
209
+ /* Enable window.monsterinsights_experimental_mode at your own risk. We might eventually remove it. Also you may/can/will burn through GA quota for your property quickly. */
210
+ } else if ( hostname && window.monsterinsights_experimental_mode && hostname.length > 0 && document.domain.length > 0 && hostname !== document.domain ) { /* If it's a cross-hostname link */
211
+ type = "cross-hostname";
212
+ }
213
+
214
+ if ( extension && (
215
+ type === 'unknown' || 'external' === type
216
+ ) && download_extensions.length > 0 && extension.length > 0 ) { /* If it's a download */
217
+ for ( index = 0, len = download_extensions.length; index < len; ++ index ) {
218
+ if ( download_extensions[index].length > 0 && (
219
+ link.endsWith( download_extensions[index] ) || download_extensions[index] == extension
220
+ ) ) {
221
+ type = "download";
222
+ break;
223
+ }
224
+ }
225
+ }
226
+
227
+ if ( type === 'unknown' ) {
228
+ type = 'internal';
229
+ }
230
+ return type;
231
+ }
232
+
233
+ function __gtagTrackerLinkTarget( el, event ) {
234
+
235
+ /* Is actual target set and not _(self|parent|top)? */
236
+ var target = (
237
+ el.target && !el.target.match( /^_(self|parent|top)$/i )
238
+ ) ? el.target : false;
239
+
240
+ /* Assume a target if Ctrl|shift|meta-click */
241
+ if ( event.ctrlKey || event.shiftKey || event.metaKey || event.which == 2 ) {
242
+ target = "_blank";
243
+ }
244
+ return target;
245
+ }
246
+
247
+ function __gtagTrackerGetTitle( el ) {
248
+ if ( el.getAttribute( "data-vars-ga-label" ) && el.getAttribute( "data-vars-ga-label" ).replace( /\n/ig, '' ) ) {
249
+ return el.getAttribute( "data-vars-ga-label" ).replace( /\n/ig, '' );
250
+ } else if ( el.title && el.title.replace( /\n/ig, '' ) ) {
251
+ return el.title.replace( /\n/ig, '' );
252
+ } else if ( el.innerText && el.innerText.replace( /\n/ig, '' ) ) {
253
+ return el.innerText.replace( /\n/ig, '' );
254
+ } else if ( el.getAttribute( 'aria-label' ) && el.getAttribute( 'aria-label' ).replace( /\n/ig, '' ) ) {
255
+ return el.getAttribute( 'aria-label' ).replace( /\n/ig, '' );
256
+ } else if ( el.alt && el.alt.replace( /\n/ig, '' ) ) {
257
+ return el.alt.replace( /\n/ig, '' );
258
+ } else if ( el.textContent && el.textContent.replace( /\n/ig, '' ) ) {
259
+ return el.textContent.replace( /\n/ig, '' );
260
+ } else {
261
+ return undefined;
262
+ }
263
+ }
264
+
265
+ function __gtagTrackerGetInnerTitle( el ) {
266
+ var children = el.children;
267
+ var count = 0;
268
+ var child;
269
+ var value;
270
+ for ( var i = 0; i < children.length; i ++ ) {
271
+ child = children[i];
272
+ value = __gtagTrackerGetTitle( child );
273
+ if ( value ) {
274
+ return value;
275
+ }
276
+ /* max search 100 elements to ensure performance */
277
+ if ( count == 99 ) {
278
+ return undefined;
279
+ }
280
+ count ++;
281
+ }
282
+ return undefined;
283
+ }
284
+
285
+ function __gtagTrackerClickEvent( event ) {
286
+ var el = event.srcElement || event.target;
287
+ var valuesArray = [];
288
+ var fieldsArray;
289
+
290
+ /* Start Values Array */
291
+ valuesArray.el = el;
292
+ valuesArray.click_type = __gtagTrackerTrackedClickType( event );
293
+
294
+ /* If GA is blocked or not loaded, or not main|middle|touch click then don't track */
295
+ if ( 'undefined' === typeof __gtagTracker || ! __gtagTrackerTrackedClick( event ) ) {
296
+ valuesArray.exit = 'loaded';
297
+ __gtagTrackerNotSend( valuesArray );
298
+ return;
299
+ }
300
+
301
+ /* Loop up the DOM tree through parent elements if clicked element is not a link (eg: an image inside a link) */
302
+ while ( el && (
303
+ typeof el.tagName == 'undefined' || el.tagName.toLowerCase() != 'a' || !el.href
304
+ ) ) {
305
+ el = el.parentNode;
306
+ }
307
+
308
+ /* if a link with valid href has been clicked */
309
+ if ( el && el.href && !el.hasAttribute( 'xlink:href' ) ) {
310
+ var link = el.href; /* What link are we tracking */
311
+ var extension = __gtagTrackerGetExtension( el.href ); /* What extension is this link */
312
+ var download_extensions = __gtagTrackerGetDownloadExtensions(); /* Let's get the extensions to track */
313
+ var inbound_paths = __gtagTrackerGetInboundPaths(); /* Let's get the internal paths to track */
314
+ var home_url = monsterinsights_frontend.home_url; /* Let's get the url to compare for external/internal use */
315
+ var currentdomain = __gtagTrackerGetDomain(); /* What domain are we on? */
316
+ var type = __gtagTrackerLinkType( el ); /* What type of link is this? */
317
+ var target = __gtagTrackerLinkTarget( el, event ); /* Is a new tab/window being opened? */
318
+ var action = el.getAttribute( "data-vars-ga-action" );
319
+ var label = el.getAttribute( "data-vars-ga-label" );
320
+
321
+ /* Element */
322
+ valuesArray.el = el; /* el is an a element so we can parse it */
323
+ valuesArray.el_href = el.href; /* "http://example.com:3000/pathname/?search=test#hash" */
324
+ valuesArray.el_protocol = el.protocol; /* "http:" */
325
+ valuesArray.el_hostname = el.hostname; /* "example.com" */
326
+ valuesArray.el_port = el.port; /* "3000" */
327
+ valuesArray.el_pathname = el.pathname; /* "/pathname/" */
328
+ valuesArray.el_search = el.search; /* "?search=test" */
329
+ valuesArray.el_hash = el.hash; /* "#hash" */
330
+ valuesArray.el_host = el.host; /* "example.com:3000" */
331
+
332
+ /* Settings */
333
+ valuesArray.debug_mode = __gtagTrackerIsDebug(); /* "example.com:3000" */
334
+ valuesArray.download_extensions = download_extensions; /* Let's get the extensions to track */
335
+ valuesArray.inbound_paths = inbound_paths; /* Let's get the internal paths to track */
336
+ valuesArray.home_url = home_url; /* Let's get the url to compare for external/internal use */
337
+
338
+ /* Parsed/Logic */
339
+ valuesArray.link = link; /* What link are we tracking */
340
+ valuesArray.extension = extension; /* What extension is this link */
341
+ valuesArray.type = type; /* What type of link is this */
342
+ valuesArray.target = target; /* Is a new tab/window being opened? */
343
+ valuesArray.title = __gtagTrackerGetTitle( el ); /* Try link title, then text content */
344
+
345
+ /* only find innerTitle if we need one */
346
+ if ( ! valuesArray.label && !valuesArray.title ) {
347
+ valuesArray.title = __gtagTrackerGetInnerTitle( el );
348
+ }
349
+
350
+ /* Let's track everything but internals (that aren't internal-as-externals) and javascript */
351
+ if ( type !== 'internal' && type !== 'javascript' ) {
352
+
353
+ var __gtagTrackerHitBackRun = false; /* Tracker has not yet run */
354
+
355
+ /* HitCallback to open link in same window after tracker */
356
+ var __gtagTrackerHitBack = function () {
357
+ /* Run the hitback only once */
358
+ if ( __gtagTrackerHitBackRun ) {
359
+ return;
360
+ }
361
+ __gtagTrackerHitBackRun = true;
362
+ window.location.href = link;
363
+ };
364
+
365
+ var __gtagTrackerNoRedirectExternal = function () {
366
+ valuesArray.exit = 'external';
367
+ __gtagTrackerNotSend( valuesArray );
368
+ };
369
+
370
+ var __gtagTrackerNoRedirectInboundAsExternal = function () {
371
+ valuesArray.exit = 'internal-as-outbound';
372
+ __gtagTrackerNotSend( valuesArray );
373
+ };
374
+ var __gtagTrackerNoRedirectCrossHostname = function () {
375
+ valuesArray.exit = 'cross-hostname';
376
+ __gtagTrackerNotSend( valuesArray );
377
+ };
378
+
379
+ if ( target || type == 'mailto' || type == 'tel' ) { /* If target opens a new window then just track */
380
+ if ( type == 'download' ) {
381
+ fieldsArray = {
382
+ event_category: 'download',
383
+ event_label: label || valuesArray.title,
384
+ };
385
+ } else if ( type == 'tel' ) {
386
+ fieldsArray = {
387
+ event_category: 'tel',
388
+ event_label: label || valuesArray.title.replace( 'tel:', '' ),
389
+ };
390
+ } else if ( type == 'mailto' ) {
391
+ console.log( label || valuesArray.title.replace( 'mailto:', '' ) );
392
+ fieldsArray = {
393
+ event_category: 'mailto',
394
+ event_label: label || valuesArray.title.replace( 'mailto:', '' ),
395
+ };
396
+ } else if ( type == 'internal-as-outbound' ) {
397
+ fieldsArray = {
398
+ event_category: internalAsOutboundCategory,
399
+ event_label: label || valuesArray.title,
400
+ };
401
+ } else if ( type == 'external' ) {
402
+ fieldsArray = {
403
+ event_category: 'outbound-link',
404
+ event_label: label || valuesArray.title,
405
+ };
406
+ } else if ( type == 'cross-hostname' ) {
407
+ fieldsArray = {
408
+ event_category: 'cross-hostname',
409
+ event_label: label || valuesArray.title,
410
+ };
411
+ }
412
+
413
+ if ( fieldsArray ) {
414
+ __gtagTrackerSend( 'event', action || link, fieldsArray, valuesArray );
415
+ } else {
416
+ if ( type && type != 'internal' ) {
417
+ fieldsArray = {
418
+ event_category: type,
419
+ event_label: label || valuesArray.title,
420
+ };
421
+
422
+ __gtagTrackerSend( 'event', action || link, fieldsArray, valuesArray );
423
+ } else {
424
+ valuesArray.exit = 'type';
425
+ __gtagTrackerNotSend( valuesArray );
426
+ }
427
+ }
428
+ } else {
429
+ /* Prevent standard click, track then open */
430
+ if ( type != 'cross-hostname' && type != 'external' && type != 'internal-as-outbound' ) {
431
+ if ( !event.defaultPrevented ) {
432
+ if ( event.preventDefault ) {
433
+ event.preventDefault();
434
+ } else {
435
+ event.returnValue = false;
436
+ }
437
+ }
438
+ }
439
+
440
+ if ( type == 'download' ) {
441
+ fieldsArray = {
442
+ event_category: 'download',
443
+ event_label: label || valuesArray.title,
444
+ event_callback: __gtagTrackerHitBack,
445
+ };
446
+
447
+ __gtagTrackerSend( 'event', action || link, fieldsArray, valuesArray );
448
+ } else if ( type == 'internal-as-outbound' ) {
449
+ window.onbeforeunload = function ( e ) {
450
+ if ( !event.defaultPrevented ) {
451
+ if ( event.preventDefault ) {
452
+ event.preventDefault();
453
+ } else {
454
+ event.returnValue = false;
455
+ }
456
+ }
457
+
458
+ fieldsArray = {
459
+ event_category: internalAsOutboundCategory,
460
+ event_label: label || valuesArray.title,
461
+ event_callback: __gtagTrackerHitBack,
462
+ };
463
+
464
+ if ( navigator.sendBeacon ) {
465
+ fieldsArray.transport = 'beacon';
466
+ }
467
+
468
+ __gtagTrackerSend( 'event', action || link, fieldsArray, valuesArray );
469
+ setTimeout( __gtagTrackerHitBack, 1000 );
470
+ };
471
+ } else if ( type == 'external' ) {
472
+ window.onbeforeunload = function ( e ) {
473
+ if ( !event.defaultPrevented ) {
474
+ if ( event.preventDefault ) {
475
+ event.preventDefault();
476
+ } else {
477
+ event.returnValue = false;
478
+ }
479
+ }
480
+
481
+ fieldsArray = {
482
+ event_category: 'outbound-link',
483
+ event_label: label || valuesArray.title,
484
+ event_callback: __gtagTrackerHitBack,
485
+ };
486
+
487
+ if ( navigator.sendBeacon ) {
488
+ fieldsArray.transport = 'beacon';
489
+ }
490
+
491
+ __gtagTrackerSend( 'event', action || link, fieldsArray, valuesArray );
492
+ setTimeout( __gtagTrackerHitBack, 1000 );
493
+ };
494
+ } else if ( type == 'cross-hostname' ) {
495
+ window.onbeforeunload = function ( e ) {
496
+ if ( !event.defaultPrevented ) {
497
+ if ( event.preventDefault ) {
498
+ event.preventDefault();
499
+ } else {
500
+ event.returnValue = false;
501
+ }
502
+ }
503
+
504
+ fieldsArray = {
505
+ event_category: 'cross-hostname',
506
+ event_label: label || valuesArray.title,
507
+ event_callback: __gtagTrackerHitBack,
508
+ };
509
+
510
+ if ( navigator.sendBeacon ) {
511
+ fieldsArray.transport = 'beacon';
512
+ }
513
+
514
+ __gtagTrackerSend( 'event', action || link, fieldsArray, valuesArray );
515
+ setTimeout( __gtagTrackerHitBack, 1000 );
516
+ };
517
+ } else {
518
+ if ( type && type !== 'internal' ) {
519
+ fieldsArray = {
520
+ event_category: type,
521
+ event_label: label || valuesArray.title,
522
+ event_callback: __gtagTrackerHitBack,
523
+ };
524
+
525
+ __gtagTrackerSend( 'event', action || link, fieldsArray, valuesArray );
526
+ } else {
527
+ valuesArray.exit = 'type';
528
+ __gtagTrackerNotSend( valuesArray );
529
+ }
530
+ }
531
+
532
+ if ( type != 'external' && type != 'cross-hostname' && type != 'internal-as-outbound' ) {
533
+ /* Run event_callback again if GA takes longer than 1 second */
534
+ setTimeout( __gtagTrackerHitBack, 1000 );
535
+ } else {
536
+ if ( type == 'external' ) {
537
+ setTimeout( __gtagTrackerNoRedirectExternal, 1100 );
538
+ } else if ( type == 'cross-hostname' ) {
539
+ setTimeout( __gtagTrackerNoRedirectCrossHostname, 1100 );
540
+ } else {
541
+ setTimeout( __gtagTrackerNoRedirectInboundAsExternal, 1100 );
542
+ }
543
+ }
544
+ }
545
+ } else {
546
+ valuesArray.exit = 'internal';
547
+ __gtagTrackerNotSend( valuesArray );
548
+ }
549
+ } else {
550
+ valuesArray.exit = 'notlink';
551
+ __gtagTrackerNotSend( valuesArray );
552
+ }
553
+ }
554
+
555
+ var prevHash = window.location.hash;
556
+
557
+ function __gtagTrackerHashChangeEvent() {
558
+ /* Todo: Ready this section for JS unit testing */
559
+ if ( monsterinsights_frontend.hash_tracking === "true" && prevHash != window.location.hash && monsterinsights_frontend.ua ) {
560
+ prevHash = window.location.hash;
561
+ __gtagTracker( 'config', monsterinsights_frontend.ua, {
562
+ page_path: location.pathname + location.search + location.hash,
563
+ } )
564
+ __gtagTrackerLog( "Hash change to: " + location.pathname + location.search + location.hash );
565
+ } else {
566
+ __gtagTrackerLog( "Hash change to (untracked): " + location.pathname + location.search + location.hash );
567
+ }
568
+ }
569
+
570
+ /* Attach the event to all clicks in the document after page has loaded */
571
+ var __gtagTrackerWindow = window;
572
+ if ( __gtagTrackerWindow.addEventListener ) {
573
+ __gtagTrackerWindow.addEventListener(
574
+ "load",
575
+ function () {
576
+ document.body.addEventListener(
577
+ "click",
578
+ __gtagTrackerClickEvent,
579
+ false
580
+ );
581
+ },
582
+ false
583
+ );
584
+ window.addEventListener( "hashchange", __gtagTrackerHashChangeEvent, false );
585
+ } else {
586
+ if ( __gtagTrackerWindow.attachEvent ) {
587
+ __gtagTrackerWindow.attachEvent(
588
+ "onload",
589
+ function () {
590
+ document.body.attachEvent( "onclick", __gtagTrackerClickEvent );
591
+ }
592
+ );
593
+ window.attachEvent( "onhashchange", __gtagTrackerHashChangeEvent );
594
+ }
595
+ }
596
+
597
+ if ( typeof String.prototype.endsWith !== 'function' ) {
598
+ String.prototype.endsWith = function ( suffix ) {
599
+ return this.indexOf( suffix, this.length - suffix.length ) !== - 1;
600
+ };
601
+ }
602
+ if ( typeof String.prototype.startsWith !== 'function' ) {
603
+ String.prototype.startsWith = function ( prefix ) {
604
+ return this.indexOf( prefix ) === 0;
605
+ };
606
+ }
607
+
608
+ if ( typeof Array.prototype.lastIndexOf !== 'function' ) {
609
+ Array.prototype.lastIndexOf = function ( searchElement /*, fromIndex*/ ) {
610
+ 'use strict';
611
+
612
+ if ( this === void 0 || this === null ) {
613
+ throw new TypeError();
614
+ }
615
+
616
+ var n, k,
617
+ t = Object( this ),
618
+ len = t.length >>> 0; /* jshint ignore:line */
619
+ if ( len === 0 ) {
620
+ return - 1;
621
+ }
622
+
623
+ n = len - 1;
624
+ if ( arguments.length > 1 ) {
625
+ n = Number( arguments[1] );
626
+ if ( n != n ) {
627
+ n = 0;
628
+ } else if ( n != 0 && n != (
629
+ 1 / 0
630
+ ) && n != - (
631
+ 1 / 0
632
+ ) ) { /* jshint ignore:line */
633
+ n = (
634
+ n > 0 || - 1
635
+ ) * Math.floor( Math.abs( n ) );
636
+ }
637
+ }
638
+
639
+ for ( k = n >= 0 ? Math.min( n, len - 1 ) : len - Math.abs( n ); k >= 0; k -- ) {
640
+ if ( k in t && t[k] === searchElement ) {
641
+ return k;
642
+ }
643
+ }
644
+ return - 1;
645
+ };
646
+ }
647
+ };
648
+ var MonsterInsightsObject = new MonsterInsights();
assets/js/frontend-gtag.min.js ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ;var MonsterInsights=function(){var e=[],a='';this.setLastClicked=function(t,n,i){t=typeof t!=='undefined'?t:[];n=typeof n!=='undefined'?n:[];i=typeof i!=='undefined'?i:!1;e.valuesArray=t;e.fieldsArray=n};this.getLastClicked=function(){return e};this.setInternalAsOutboundCategory=function(e){a=e};this.getInternalAsOutboundCategory=function(){return a};this.sendEvent=function(e,n,i){t(e,n,i,[])};function s(){if(window.monsterinsights_debug_mode){return!0}
2
+ else{return!1}};function t(t,n,a,r){t=typeof t!=='undefined'?t:'event';n=typeof n!=='undefined'?n:'';r=typeof r!=='undefined'?r:[];a=typeof a!=='undefined'?a:{};__gtagTracker(t,n,a);e.valuesArray=r;e.fieldsArray=a;e.fieldsArray.event_action=n;e.tracked=!0;i('Tracked: '+r.type);i(e)};function n(t){t=typeof t!=='undefined'?t:[];e.valuesArray=t;e.fieldsArray=[];e.tracked=!1;i('Not Tracked: '+t.exit);i(e)};function i(e){if(s()){console.dir(e)}};function o(e){return e.replace(/^\s+|\s+$/gm,'')};function f(){var n=0,e=document.domain,i=e.split('.'),t='_gd'+(new Date()).getTime();while(n<(i.length-1)&&document.cookie.indexOf(t+'='+t)==-1){e=i.slice(-1-(++n)).join('.');document.cookie=t+'='+t+';domain='+e+';'};document.cookie=t+'=;expires=Thu, 01 Jan 1970 00:00:01 GMT;domain='+e+';';return e};function u(e){e=e.toString();e=e.substring(0,(e.indexOf('#')==-1)?e.length:e.indexOf('#'));e=e.substring(0,(e.indexOf('?')==-1)?e.length:e.indexOf('?'));e=e.substring(e.lastIndexOf('/')+1,e.length);if(e.length>0&&e.indexOf('.')!==-1){e=e.substring(e.indexOf('.')+1);return e}
3
+ else{return''}};function p(e){return e.which==1||e.which==2||e.metaKey||e.ctrlKey||e.shiftKey||e.altKey};function c(){var e=[];if(typeof monsterinsights_frontend.download_extensions=='string'){e=monsterinsights_frontend.download_extensions.split(',')};return e};function d(){var e=[];if(typeof monsterinsights_frontend.inbound_paths=='string'){e=JSON.parse(monsterinsights_frontend.inbound_paths)};return e};function m(e){if(e.which==1){return'event.which=1'}
4
+ else if(e.which==2){return'event.which=2'}
5
+ else if(e.metaKey){return'metaKey'}
6
+ else if(e.ctrlKey){return'ctrlKey'}
7
+ else if(e.shiftKey){return'shiftKey'}
8
+ else if(e.altKey){return'altKey'}
9
+ else{return''}};function b(e){var h=c(),i=d(),t='unknown',g=e.href,p=u(e.href),v=f(),l=e.hostname,r=e.protocol,m=e.pathname;g=g.toString();var s,b,y=e.getAttribute('data-vars-ga-category');if(y){return y};if(g.match(/^javascript\:/i)){t='internal'}
10
+ else if(r&&r.length>0&&(o(r)=='tel'||o(r)=='tel:')){t='tel'}
11
+ else if(r&&r.length>0&&(o(r)=='mailto'||o(r)=='mailto:')){t='mailto'}
12
+ else if(l&&v&&l.length>0&&v.length>0&&!l.endsWith('.'+v)&&l!==v){t='external'}
13
+ else if(m&&JSON.stringify(i)!='{}'&&m.length>0){var w=i.length;for(var n=0;n<w;n++){if(i[n].path&&i[n].label&&i[n].path.length>0&&i[n].label.length>0&&m.startsWith(i[n].path)){t='internal-as-outbound';a='outbound-link-'+i[n].label;break}}}
14
+ else if(l&&window.monsterinsights_experimental_mode&&l.length>0&&document.domain.length>0&&l!==document.domain){t='cross-hostname'};if(p&&(t==='unknown'||'external'===t)&&h.length>0&&p.length>0){for(s=0,b=h.length;s<b;++s){if(h[s].length>0&&(g.endsWith(h[s])||h[s]==p)){t='download';break}}};if(t==='unknown'){t='internal'};return t};function y(e,t){var n=(e.target&&!e.target.match(/^_(self|parent|top)$/i))?e.target:!1;if(t.ctrlKey||t.shiftKey||t.metaKey||t.which==2){n='_blank'};return n};function h(e){if(e.getAttribute('data-vars-ga-label')&&e.getAttribute('data-vars-ga-label').replace(/\n/ig,'')){return e.getAttribute('data-vars-ga-label').replace(/\n/ig,'')}
15
+ else if(e.title&&e.title.replace(/\n/ig,'')){return e.title.replace(/\n/ig,'')}
16
+ else if(e.innerText&&e.innerText.replace(/\n/ig,'')){return e.innerText.replace(/\n/ig,'')}
17
+ else if(e.getAttribute('aria-label')&&e.getAttribute('aria-label').replace(/\n/ig,'')){return e.getAttribute('aria-label').replace(/\n/ig,'')}
18
+ else if(e.alt&&e.alt.replace(/\n/ig,'')){return e.alt.replace(/\n/ig,'')}
19
+ else if(e.textContent&&e.textContent.replace(/\n/ig,'')){return e.textContent.replace(/\n/ig,'')}
20
+ else{return undefined}};function w(e){var i=e.children,a=0,r,n;for(var t=0;t<i.length;t++){r=i[t];n=h(r);if(n){return n};if(a==99){return undefined};a++};return undefined};function g(i){var o=i.srcElement||i.target,e=[],l;e.el=o;e.click_type=m(i);if('undefined'===typeof __gtagTracker||!p(i)){e.exit='loaded';n(e);return}
21
+ while(o&&(typeof o.tagName=='undefined'||o.tagName.toLowerCase()!='a'||!o.href)){o=o.parentNode};if(o&&o.href&&!o.hasAttribute('xlink:href')){var x=o.href,D=u(o.href),C=c(),I=d(),M=monsterinsights_frontend.home_url,S=f(),r=b(o),T=y(o,i),k=o.getAttribute('data-vars-ga-action'),g=o.getAttribute('data-vars-ga-label');e.el=o;e.el_href=o.href;e.el_protocol=o.protocol;e.el_hostname=o.hostname;e.el_port=o.port;e.el_pathname=o.pathname;e.el_search=o.search;e.el_hash=o.hash;e.el_host=o.host;e.debug_mode=s();e.download_extensions=C;e.inbound_paths=I;e.home_url=M;e.link=x;e.extension=D;e.type=r;e.target=T;e.title=h(o);if(!e.label&&!e.title){e.title=w(o)};if(r!=='internal'&&r!=='javascript'){var A=!1,v=function(){if(A){return};A=!0;window.location.href=x},O=function(){e.exit='external';n(e)},K=function(){e.exit='internal-as-outbound';n(e)},E=function(){e.exit='cross-hostname';n(e)};if(T||r=='mailto'||r=='tel'){if(r=='download'){l={event_category:'download',event_label:g||e.title,}}
22
+ else if(r=='tel'){l={event_category:'tel',event_label:g||e.title.replace('tel:',''),}}
23
+ else if(r=='mailto'){console.log(g||e.title.replace('mailto:',''));l={event_category:'mailto',event_label:g||e.title.replace('mailto:',''),}}
24
+ else if(r=='internal-as-outbound'){l={event_category:a,event_label:g||e.title,}}
25
+ else if(r=='external'){l={event_category:'outbound-link',event_label:g||e.title,}}
26
+ else if(r=='cross-hostname'){l={event_category:'cross-hostname',event_label:g||e.title,}};if(l){t('event',k||x,l,e)}
27
+ else{if(r&&r!='internal'){l={event_category:r,event_label:g||e.title,};t('event',k||x,l,e)}
28
+ else{e.exit='type';n(e)}}}
29
+ else{if(r!='cross-hostname'&&r!='external'&&r!='internal-as-outbound'){if(!i.defaultPrevented){if(i.preventDefault){i.preventDefault()}
30
+ else{i.returnValue=!1}}};if(r=='download'){l={event_category:'download',event_label:g||e.title,event_callback:v,};t('event',k||x,l,e)}
31
+ else if(r=='internal-as-outbound'){window.onbeforeunload=function(n){if(!i.defaultPrevented){if(i.preventDefault){i.preventDefault()}
32
+ else{i.returnValue=!1}};l={event_category:a,event_label:g||e.title,event_callback:v,};if(navigator.sendBeacon){l.transport='beacon'};t('event',k||x,l,e);setTimeout(v,1000)}}
33
+ else if(r=='external'){window.onbeforeunload=function(n){if(!i.defaultPrevented){if(i.preventDefault){i.preventDefault()}
34
+ else{i.returnValue=!1}};l={event_category:'outbound-link',event_label:g||e.title,event_callback:v,};if(navigator.sendBeacon){l.transport='beacon'};t('event',k||x,l,e);setTimeout(v,1000)}}
35
+ else if(r=='cross-hostname'){window.onbeforeunload=function(n){if(!i.defaultPrevented){if(i.preventDefault){i.preventDefault()}
36
+ else{i.returnValue=!1}};l={event_category:'cross-hostname',event_label:g||e.title,event_callback:v,};if(navigator.sendBeacon){l.transport='beacon'};t('event',k||x,l,e);setTimeout(v,1000)}}
37
+ else{if(r&&r!=='internal'){l={event_category:r,event_label:g||e.title,event_callback:v,};t('event',k||x,l,e)}
38
+ else{e.exit='type';n(e)}};if(r!='external'&&r!='cross-hostname'&&r!='internal-as-outbound'){setTimeout(v,1000)}
39
+ else{if(r=='external'){setTimeout(O,1100)}
40
+ else if(r=='cross-hostname'){setTimeout(E,1100)}
41
+ else{setTimeout(K,1100)}}}}
42
+ else{e.exit='internal';n(e)}}
43
+ else{e.exit='notlink';n(e)}};var l=window.location.hash;function v(){if(monsterinsights_frontend.hash_tracking==='true'&&l!=window.location.hash&&monsterinsights_frontend.ua){l=window.location.hash;__gtagTracker('config',monsterinsights_frontend.ua,{page_path:location.pathname+location.search+location.hash,});i('Hash change to: '+location.pathname+location.search+location.hash)}
44
+ else{i('Hash change to (untracked): '+location.pathname+location.search+location.hash)}};var r=window;if(r.addEventListener){r.addEventListener('load',function(){document.body.addEventListener('click',g,!1)},!1);window.addEventListener('hashchange',v,!1)}
45
+ else{if(r.attachEvent){r.attachEvent('onload',function(){document.body.attachEvent('onclick',g)});window.attachEvent('onhashchange',v)}};if(typeof String.prototype.endsWith!=='function'){String.prototype.endsWith=function(e){return this.indexOf(e,this.length-e.length)!==-1}};if(typeof String.prototype.startsWith!=='function'){String.prototype.startsWith=function(e){return this.indexOf(e)===0}};if(typeof Array.prototype.lastIndexOf!=='function'){Array.prototype.lastIndexOf=function(e){'use strict';if(this===void 0||this===null){throw new TypeError()};var t,n,a=Object(this),i=a.length>>>0;if(i===0){return-1};t=i-1;if(arguments.length>1){t=Number(arguments[1]);if(t!=t){t=0}
46
+ else if(t!=0&&t!=(1/0)&&t!=-(1/0)){t=(t>0||-1)*Math.floor(Math.abs(t))}};for(n=t>=0?Math.min(t,i-1):i-Math.abs(t);n>=0;n--){if(n in a&&a[n]===e){return n}};return-1}}},MonsterInsightsObject=new MonsterInsights();
googleanalytics.php CHANGED
@@ -6,7 +6,7 @@
6
  * Author: MonsterInsights
7
  * Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
- * Version: 7.14.0
10
  * Requires at least: 3.8.0
11
  * Requires PHP: 5.2
12
  *
@@ -69,7 +69,7 @@ final class MonsterInsights_Lite {
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
- public $version = '7.14.0';
73
 
74
  /**
75
  * Plugin file.
@@ -170,6 +170,15 @@ final class MonsterInsights_Lite {
170
  */
171
  public $routes;
172
 
 
 
 
 
 
 
 
 
 
173
  /**
174
  * Primary class constructor.
175
  *
@@ -225,7 +234,7 @@ final class MonsterInsights_Lite {
225
 
226
  // This does the version to version background upgrade routines and initial install
227
  $mi_version = get_option( 'monsterinsights_current_version', '5.5.3' );
228
- if ( version_compare( $mi_version, '7.14.0', '<' ) ) {
229
  monsterinsights_lite_call_install_and_upgrade();
230
  }
231
 
@@ -561,6 +570,21 @@ final class MonsterInsights_Lite {
561
  require_once MONSTERINSIGHTS_PLUGIN_DIR . 'includes/frontend/seedprod.php';
562
  require_once MONSTERINSIGHTS_PLUGIN_DIR . 'includes/measurement-protocol.php';
563
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
564
  }
565
 
566
  /**
6
  * Author: MonsterInsights
7
  * Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
+ * Version: 7.15.0
10
  * Requires at least: 3.8.0
11
  * Requires PHP: 5.2
12
  *
69
  * @access public
70
  * @var string $version Plugin version.
71
  */
72
+ public $version = '7.15.0';
73
 
74
  /**
75
  * Plugin file.
170
  */
171
  public $routes;
172
 
173
+ /**
174
+ * The tracking mode used in the frontend.
175
+ *
176
+ * @since 7.15.0
177
+ * @accces public
178
+ * @var string
179
+ */
180
+ public $tracking_mode;
181
+
182
  /**
183
  * Primary class constructor.
184
  *
234
 
235
  // This does the version to version background upgrade routines and initial install
236
  $mi_version = get_option( 'monsterinsights_current_version', '5.5.3' );
237
+ if ( version_compare( $mi_version, '7.15.0', '<' ) ) {
238
  monsterinsights_lite_call_install_and_upgrade();
239
  }
240
 
570
  require_once MONSTERINSIGHTS_PLUGIN_DIR . 'includes/frontend/seedprod.php';
571
  require_once MONSTERINSIGHTS_PLUGIN_DIR . 'includes/measurement-protocol.php';
572
  }
573
+
574
+ /**
575
+ * Get the tracking mode for the frontend scripts.
576
+ *
577
+ * @return string
578
+ */
579
+ public function get_tracking_mode() {
580
+
581
+ if ( ! isset( $this->tracking_mode ) ) {
582
+ // This will already be set to 'analytics' to anybody already using the plugin before 7.15.0.
583
+ $this->tracking_mode = monsterinsights_get_option( 'tracking_mode', 'gtag' );
584
+ }
585
+
586
+ return $this->tracking_mode;
587
+ }
588
  }
589
 
590
  /**
includes/frontend/events/class-gtag-events.php ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Events JS class.
4
+ *
5
+ * @since 6.0.0
6
+ *
7
+ * @package MonsterInsights
8
+ * @subpackage Events
9
+ * @author Chris Christoff
10
+ */
11
+
12
+ // Exit if accessed directly
13
+ if ( ! defined( 'ABSPATH' ) ) {
14
+ exit;
15
+ }
16
+
17
+ class MonsterInsights_Gtag_Events {
18
+
19
+ /**
20
+ * Holds the name of the events type.
21
+ *
22
+ * @since 6.0.0
23
+ * @access public
24
+ *
25
+ * @var string $name Name of the events type.
26
+ */
27
+ public $name = 'js';
28
+
29
+ /**
30
+ * Version of the events class.
31
+ *
32
+ * @since 6.0.0
33
+ * @access public
34
+ *
35
+ * @var string $version Version of the events class.
36
+ */
37
+ public $version = '1.0.0';
38
+
39
+ /**
40
+ * Primary class constructor.
41
+ *
42
+ * @since 6.0.0
43
+ * @access public
44
+ */
45
+ public function __construct() {
46
+ add_action( 'wp_enqueue_scripts', array( $this, 'output_javascript' ), 9 );
47
+ }
48
+
49
+ /**
50
+ * Outputs the Javascript for JS tracking on the page.
51
+ *
52
+ * @since 6.0.0
53
+ * @access public
54
+ *
55
+ * @return string
56
+ */
57
+ public function output_javascript() {
58
+ // Affiliate Links
59
+ $inbound_paths = monsterinsights_get_option( 'affiliate_links', array() );
60
+ if ( ! is_array( $inbound_paths ) ) {
61
+ $inbound_paths = array();
62
+ } else {
63
+ foreach( $inbound_paths as $index => $pair ) {
64
+ // if empty pair, unset and continue
65
+ if ( empty( $pair['path'] ) ) {
66
+ unset( $inbound_paths[$index] );
67
+ continue;
68
+ }
69
+
70
+ // if path does not start with a /, start it with that
71
+ $path = ! empty( $pair['path'] ) ? $pair['path'] : 'aff';
72
+ $inbound_paths[$index]['path'] = trim( $path );
73
+
74
+ // js escape the link label
75
+ $label = ! empty( $pair['label'] ) ? $pair['label'] : 'aff';
76
+ $inbound_paths[$index]['label'] = esc_js( trim( $label ) );
77
+ }
78
+ }
79
+
80
+ $inbound_paths = wp_json_encode( $inbound_paths );
81
+
82
+ // Get download extensions to track
83
+ $download_extensions = monsterinsights_get_option( 'extensions_of_files', '' );
84
+ $download_extensions = explode( ',', str_replace( '.', '', $download_extensions ) );
85
+ if ( ! is_array( $download_extensions ) ) {
86
+ $download_extensions = array( $download_extensions );
87
+ }
88
+ $i = 0;
89
+ foreach( $download_extensions as $extension ){
90
+ $download_extensions[ $i ] = esc_js( trim( $extension ) );
91
+ $i++;
92
+ }
93
+
94
+ $download_extensions = implode( ",", $download_extensions );
95
+
96
+ $hash_tracking = monsterinsights_get_option( 'hash_tracking', false ) ? 'true' : 'false';
97
+
98
+ $suffix = ( defined( 'WP_DEBUG' ) && WP_DEBUG ) || ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
99
+ if ( ! file_exists( MONSTERINSIGHTS_PLUGIN_DIR . 'assets/js/frontend-gtag.min.js' ) ) {
100
+ $suffix = '';
101
+ }
102
+ wp_enqueue_script( 'monsterinsights-frontend-script', plugins_url( 'assets/js/frontend-gtag' . $suffix . '.js', MONSTERINSIGHTS_PLUGIN_FILE ), array(), monsterinsights_get_asset_version(), false );
103
+ wp_localize_script(
104
+ 'monsterinsights-frontend-script',
105
+ 'monsterinsights_frontend',
106
+ array(
107
+ 'js_events_tracking' => 'true',
108
+ 'download_extensions' => $download_extensions, /* Let's get the extensions to track */
109
+ 'inbound_paths' => $inbound_paths, /* Let's get the internal paths to track */
110
+ 'home_url' => home_url(), /* Let's get the url to compare for external/internal use */
111
+ 'hash_tracking' => $hash_tracking, /* Should hash track */
112
+ 'ua' => monsterinsights_get_ua(), /* UA code used for tracking */
113
+ )
114
+ );
115
+ }
116
+ }
includes/frontend/frontend.php CHANGED
@@ -10,7 +10,7 @@
10
 
11
  // Exit if accessed directly
12
  if ( ! defined( 'ABSPATH' ) ) {
13
- exit;
14
  }
15
 
16
 
@@ -21,31 +21,36 @@ if ( ! defined( 'ABSPATH' ) ) {
21
  * for the frontend_output() function to output. These are
22
  * generally dimensions and turned on GA features.
23
  *
 
24
  * @since 7.0.0
25
  * @access public
26
  *
27
- * @return array Array of the options to use.
28
  */
29
- function monsterinsights_tracking_script( ) {
30
- require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/class-tracking-abstract.php';
31
-
32
- $mode = is_preview() ? 'preview' : 'analytics';
33
-
34
- do_action( 'monsterinsights_tracking_before_' . $mode );
35
- do_action( 'monsterinsights_tracking_before', $mode );
36
- if ( $mode === 'preview' ) {
37
- require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-preview.php';
38
- $tracking = new MonsterInsights_Tracking_Preview();
39
- echo $tracking->frontend_output();
40
- } else {
41
- require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-analytics.php';
42
- $tracking = new MonsterInsights_Tracking_Analytics();
43
- echo $tracking->frontend_output();
44
- }
45
-
46
- do_action( 'monsterinsights_tracking_after_' . $mode );
47
- do_action( 'monsterinsights_tracking_after', $mode );
 
 
 
 
48
  }
 
49
  add_action( 'wp_head', 'monsterinsights_tracking_script', 6 );
50
  //add_action( 'login_head', 'monsterinsights_tracking_script', 6 );
51
 
@@ -56,51 +61,61 @@ add_action( 'wp_head', 'monsterinsights_tracking_script', 6 );
56
  * for the frontend_output() function to output. These are
57
  * generally dimensions and turned on GA features.
58
  *
 
59
  * @since 6.0.0
60
  * @access public
61
  *
62
- * @return array Array of the options to use.
63
  */
64
- function monsterinsights_events_tracking( ) {
65
- $track_user = monsterinsights_track_user();
66
-
67
- if ( $track_user ) {
68
- require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/events/class-analytics-events.php';
69
- new MonsterInsights_Analytics_Events();
70
- } else {
71
- // User is in the disabled group or events mode is off
72
- }
 
 
 
 
 
 
73
  }
 
74
  add_action( 'template_redirect', 'monsterinsights_events_tracking', 9 );
75
 
76
  /**
77
  * Add the UTM source parameters in the RSS feeds to track traffic.
78
  *
79
- * @since 6.0.0
80
- * @access public
81
- *
82
  * @param string $guid The link for the RSS feed.
83
  *
84
  * @return string The new link for the RSS feed.
 
 
 
85
  */
86
  function monsterinsights_rss_link_tagger( $guid ) {
87
- global $post;
88
-
89
- if ( monsterinsights_get_option( 'tag_links_in_rss', false ) ){
90
- if ( is_feed() ) {
91
- if ( monsterinsights_get_option( 'allow_anchor', false ) ) {
92
- $delimiter = '#';
93
- } else {
94
- $delimiter = '?';
95
- if ( strpos( $guid, $delimiter ) > 0 ) {
96
- $delimiter = '&amp;';
97
- }
98
- }
99
- return $guid . $delimiter . 'utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=' . urlencode( $post->post_name );
100
- }
101
- }
102
- return $guid;
 
 
103
  }
 
104
  add_filter( 'the_permalink_rss', 'monsterinsights_rss_link_tagger', 99 );
105
 
106
 
@@ -114,9 +129,9 @@ function monsterinsights_prevent_loading_frontend_reports() {
114
  /**
115
  * Add an admin bar menu item on the frontend.
116
  *
 
117
  * @since 7.5.0
118
  *
119
- * @return void
120
  */
121
  function monsterinsights_add_admin_bar_menu() {
122
  if ( monsterinsights_prevent_loading_frontend_reports() ) {
@@ -127,7 +142,8 @@ function monsterinsights_add_admin_bar_menu() {
127
 
128
  $args = array(
129
  'id' => 'monsterinsights_frontend_button',
130
- 'title' => '<span class="ab-icon dashicons-before dashicons-chart-bar"></span> Insights', // Maybe allow translation?
 
131
  'href' => '#',
132
  );
133
 
@@ -141,9 +157,9 @@ add_action( 'admin_bar_menu', 'monsterinsights_add_admin_bar_menu', 999 );
141
  /**
142
  * Load the scripts needed for the admin bar.
143
  *
 
144
  * @since 7.5.0
145
  *
146
- * @return void
147
  */
148
  function monsterinsights_frontend_admin_bar_scripts() {
149
  if ( monsterinsights_prevent_loading_frontend_reports() ) {
@@ -234,7 +250,8 @@ function monsterinsights_administrator_tracking_notice() {
234
  ?>
235
  <div class="monsterinsights-tracking-notice monsterinsights-tracking-notice-hide">
236
  <div class="monsterinsights-tracking-notice-icon">
237
- <img src="<?php echo esc_url( plugins_url( 'assets/images/mascot.png', MONSTERINSIGHTS_PLUGIN_FILE ) ); ?>" width="40" alt="MonsterInsights Mascot" />
 
238
  </div>
239
  <div class="monsterinsights-tracking-notice-text">
240
  <h3><?php esc_html_e( 'Tracking is Disabled for Administrators', 'google-analytics-for-wordpress' ); ?></h3>
@@ -254,91 +271,91 @@ function monsterinsights_administrator_tracking_notice() {
254
  <div class="monsterinsights-tracking-notice-close">&times;</div>
255
  </div>
256
  <style type="text/css">
257
- .monsterinsights-tracking-notice {
258
- position: fixed;
259
- bottom: 20px;
260
- right: 15px;
261
- font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
262
- background: #fff;
263
- box-shadow: 0 0 10px 0 #dedede;
264
- padding: 6px 5px;
265
- display: flex;
266
- align-items: center;
267
- justify-content: center;
268
- width: 380px;
269
- max-width: calc( 100% - 30px );
270
- border-radius: 6px;
271
- transition: bottom 700ms ease;
272
- z-index: 10000;
273
- }
274
 
275
- .monsterinsights-tracking-notice h3 {
276
- font-size: 13px;
277
- color: #222;
278
- font-weight: 700;
279
- margin: 0 0 8px;
280
- padding: 0;
281
- line-height: 1;
282
- border: none;
283
- }
284
 
285
- .monsterinsights-tracking-notice p {
286
- font-size: 13px;
287
- color: #7f7f7f;
288
- font-weight: 400;
289
- margin: 0;
290
- padding: 0;
291
- line-height: 1.2;
292
- border: none;
293
- }
294
 
295
- .monsterinsights-tracking-notice p a {
296
- color: #7f7f7f;
297
- font-size: 13px;
298
- line-height: 1.2;
299
- margin: 0;
300
- padding: 0;
301
- text-decoration: underline;
302
- font-weight: 400;
303
- }
304
 
305
- .monsterinsights-tracking-notice p a:hover {
306
- color: #7f7f7f;
307
- text-decoration: none;
308
- }
309
 
310
- .monsterinsights-tracking-notice-icon img {
311
- height: auto;
312
- display: block;
313
- margin: 0;
314
- }
315
 
316
- .monsterinsights-tracking-notice-icon {
317
- padding: 14px;
318
- background-color: #f2f6ff;
319
- border-radius: 6px;
320
- flex-grow: 0;
321
- flex-shrink: 0;
322
- margin-right: 12px;
323
- }
324
 
325
- .monsterinsights-tracking-notice-close {
326
- padding: 0;
327
- margin: 0 3px 0 0;
328
- border: none;
329
- box-shadow: none;
330
- border-radius: 0;
331
- color: #7f7f7f;
332
- background: transparent;
333
- line-height: 1;
334
- align-self: flex-start;
335
- cursor: pointer;
336
- font-weight: 400;
337
- }
338
 
339
- .monsterinsights-tracking-notice.monsterinsights-tracking-notice-hide {
340
- bottom: -200px;
341
- }
342
  </style>
343
  <?php
344
 
10
 
11
  // Exit if accessed directly
12
  if ( ! defined( 'ABSPATH' ) ) {
13
+ exit;
14
  }
15
 
16
 
21
  * for the frontend_output() function to output. These are
22
  * generally dimensions and turned on GA features.
23
  *
24
+ * @return array Array of the options to use.
25
  * @since 7.0.0
26
  * @access public
27
  *
 
28
  */
29
+ function monsterinsights_tracking_script() {
30
+ require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/class-tracking-abstract.php';
31
+
32
+ $mode = is_preview() ? 'preview' : MonsterInsights()->get_tracking_mode();
33
+
34
+ do_action( 'monsterinsights_tracking_before_' . $mode );
35
+ do_action( 'monsterinsights_tracking_before', $mode );
36
+ if ( 'preview' === $mode ) {
37
+ require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-preview.php';
38
+ $tracking = new MonsterInsights_Tracking_Preview();
39
+ echo $tracking->frontend_output();
40
+ } else if ( 'gtag' === $mode ) {
41
+ require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-gtag.php';
42
+ $tracking = new MonsterInsights_Tracking_Gtag();
43
+ echo $tracking->frontend_output();
44
+ } else {
45
+ require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-analytics.php';
46
+ $tracking = new MonsterInsights_Tracking_Analytics();
47
+ echo $tracking->frontend_output();
48
+ }
49
+
50
+ do_action( 'monsterinsights_tracking_after_' . $mode );
51
+ do_action( 'monsterinsights_tracking_after', $mode );
52
  }
53
+
54
  add_action( 'wp_head', 'monsterinsights_tracking_script', 6 );
55
  //add_action( 'login_head', 'monsterinsights_tracking_script', 6 );
56
 
61
  * for the frontend_output() function to output. These are
62
  * generally dimensions and turned on GA features.
63
  *
64
+ * @return array Array of the options to use.
65
  * @since 6.0.0
66
  * @access public
67
  *
 
68
  */
69
+ function monsterinsights_events_tracking() {
70
+ $track_user = monsterinsights_track_user();
71
+
72
+ if ( $track_user ) {
73
+ $tracking_mode = monsterinsights_get_option( 'tracking_mode', 'gtag' );
74
+ if ( 'analytics' === $tracking_mode ) {
75
+ require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/events/class-analytics-events.php';
76
+ new MonsterInsights_Analytics_Events();
77
+ } else {
78
+ require_once plugin_dir_path( MONSTERINSIGHTS_PLUGIN_FILE ) . 'includes/frontend/events/class-gtag-events.php';
79
+ new MonsterInsights_Gtag_Events();
80
+ }
81
+ } else {
82
+ // User is in the disabled group or events mode is off
83
+ }
84
  }
85
+
86
  add_action( 'template_redirect', 'monsterinsights_events_tracking', 9 );
87
 
88
  /**
89
  * Add the UTM source parameters in the RSS feeds to track traffic.
90
  *
 
 
 
91
  * @param string $guid The link for the RSS feed.
92
  *
93
  * @return string The new link for the RSS feed.
94
+ * @since 6.0.0
95
+ * @access public
96
+ *
97
  */
98
  function monsterinsights_rss_link_tagger( $guid ) {
99
+ global $post;
100
+
101
+ if ( monsterinsights_get_option( 'tag_links_in_rss', false ) ) {
102
+ if ( is_feed() ) {
103
+ if ( monsterinsights_get_option( 'allow_anchor', false ) ) {
104
+ $delimiter = '#';
105
+ } else {
106
+ $delimiter = '?';
107
+ if ( strpos( $guid, $delimiter ) > 0 ) {
108
+ $delimiter = '&amp;';
109
+ }
110
+ }
111
+
112
+ return $guid . $delimiter . 'utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=' . urlencode( $post->post_name );
113
+ }
114
+ }
115
+
116
+ return $guid;
117
  }
118
+
119
  add_filter( 'the_permalink_rss', 'monsterinsights_rss_link_tagger', 99 );
120
 
121
 
129
  /**
130
  * Add an admin bar menu item on the frontend.
131
  *
132
+ * @return void
133
  * @since 7.5.0
134
  *
 
135
  */
136
  function monsterinsights_add_admin_bar_menu() {
137
  if ( monsterinsights_prevent_loading_frontend_reports() ) {
142
 
143
  $args = array(
144
  'id' => 'monsterinsights_frontend_button',
145
+ 'title' => '<span class="ab-icon dashicons-before dashicons-chart-bar"></span> Insights',
146
+ // Maybe allow translation?
147
  'href' => '#',
148
  );
149
 
157
  /**
158
  * Load the scripts needed for the admin bar.
159
  *
160
+ * @return void
161
  * @since 7.5.0
162
  *
 
163
  */
164
  function monsterinsights_frontend_admin_bar_scripts() {
165
  if ( monsterinsights_prevent_loading_frontend_reports() ) {
250
  ?>
251
  <div class="monsterinsights-tracking-notice monsterinsights-tracking-notice-hide">
252
  <div class="monsterinsights-tracking-notice-icon">
253
+ <img src="<?php echo esc_url( plugins_url( 'assets/images/mascot.png', MONSTERINSIGHTS_PLUGIN_FILE ) ); ?>"
254
+ width="40" alt="MonsterInsights Mascot"/>
255
  </div>
256
  <div class="monsterinsights-tracking-notice-text">
257
  <h3><?php esc_html_e( 'Tracking is Disabled for Administrators', 'google-analytics-for-wordpress' ); ?></h3>
271
  <div class="monsterinsights-tracking-notice-close">&times;</div>
272
  </div>
273
  <style type="text/css">
274
+ .monsterinsights-tracking-notice {
275
+ position: fixed;
276
+ bottom: 20px;
277
+ right: 15px;
278
+ font-family: Arial, Helvetica, "Trebuchet MS", sans-serif;
279
+ background: #fff;
280
+ box-shadow: 0 0 10px 0 #dedede;
281
+ padding: 6px 5px;
282
+ display: flex;
283
+ align-items: center;
284
+ justify-content: center;
285
+ width: 380px;
286
+ max-width: calc(100% - 30px);
287
+ border-radius: 6px;
288
+ transition: bottom 700ms ease;
289
+ z-index: 10000;
290
+ }
291
 
292
+ .monsterinsights-tracking-notice h3 {
293
+ font-size: 13px;
294
+ color: #222;
295
+ font-weight: 700;
296
+ margin: 0 0 8px;
297
+ padding: 0;
298
+ line-height: 1;
299
+ border: none;
300
+ }
301
 
302
+ .monsterinsights-tracking-notice p {
303
+ font-size: 13px;
304
+ color: #7f7f7f;
305
+ font-weight: 400;
306
+ margin: 0;
307
+ padding: 0;
308
+ line-height: 1.2;
309
+ border: none;
310
+ }
311
 
312
+ .monsterinsights-tracking-notice p a {
313
+ color: #7f7f7f;
314
+ font-size: 13px;
315
+ line-height: 1.2;
316
+ margin: 0;
317
+ padding: 0;
318
+ text-decoration: underline;
319
+ font-weight: 400;
320
+ }
321
 
322
+ .monsterinsights-tracking-notice p a:hover {
323
+ color: #7f7f7f;
324
+ text-decoration: none;
325
+ }
326
 
327
+ .monsterinsights-tracking-notice-icon img {
328
+ height: auto;
329
+ display: block;
330
+ margin: 0;
331
+ }
332
 
333
+ .monsterinsights-tracking-notice-icon {
334
+ padding: 14px;
335
+ background-color: #f2f6ff;
336
+ border-radius: 6px;
337
+ flex-grow: 0;
338
+ flex-shrink: 0;
339
+ margin-right: 12px;
340
+ }
341
 
342
+ .monsterinsights-tracking-notice-close {
343
+ padding: 0;
344
+ margin: 0 3px 0 0;
345
+ border: none;
346
+ box-shadow: none;
347
+ border-radius: 0;
348
+ color: #7f7f7f;
349
+ background: transparent;
350
+ line-height: 1;
351
+ align-self: flex-start;
352
+ cursor: pointer;
353
+ font-weight: 400;
354
+ }
355
 
356
+ .monsterinsights-tracking-notice.monsterinsights-tracking-notice-hide {
357
+ bottom: -200px;
358
+ }
359
  </style>
360
  <?php
361
 
includes/frontend/tracking/class-tracking-gtag.php ADDED
@@ -0,0 +1,353 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Tracking gtag.js class.
4
+ *
5
+ * @since 7.15.0
6
+ *
7
+ * @package MonsterInsights
8
+ * @author Mircea Sandu
9
+ */
10
+
11
+ // Exit if accessed directly
12
+ if ( ! defined( 'ABSPATH' ) ) {
13
+ exit;
14
+ }
15
+
16
+ class MonsterInsights_Tracking_Gtag extends MonsterInsights_Tracking_Abstract {
17
+
18
+ /**
19
+ * Holds the name of the tracking type.
20
+ *
21
+ * @since 7.15.0
22
+ * @access public
23
+ *
24
+ * @var string $name Name of the tracking type.
25
+ */
26
+ public $name = 'gtag';
27
+
28
+ /**
29
+ * Version of the tracking class.
30
+ *
31
+ * @since 7.15.0
32
+ * @access public
33
+ *
34
+ * @var string $version Version of the tracking class.
35
+ */
36
+ public $version = '1.0.0';
37
+
38
+ /**
39
+ * Primary class constructor.
40
+ *
41
+ * @since 7.15.0
42
+ * @access public
43
+ */
44
+ public function __construct() {
45
+
46
+ }
47
+
48
+ /**
49
+ * Array of options that will be made persistent by setting them before the pageview.
50
+ *
51
+ * @see https://developers.google.com/analytics/devguides/collection/gtagjs/setting-values
52
+ * @return array Options for persistent values, like custom dimensions.
53
+ * @since 7.15.0
54
+ * @access public
55
+ */
56
+ public function frontend_tracking_options_persistent() {
57
+ $options = apply_filters( 'monsterinsights_frontend_tracking_options_persistent_gtag_before_pageview', array() );
58
+
59
+ return $options;
60
+ }
61
+
62
+ /**
63
+ * Get frontend tracking options for the gtag script.
64
+ *
65
+ * This function is used to return an array of parameters
66
+ * for the frontend_output() function to output. These are
67
+ * generally dimensions and turned on GA features.
68
+ *
69
+ * @return array Options for the gtag config.
70
+ * @since 7.15.0
71
+ * @access public
72
+ *
73
+ */
74
+ public function frontend_tracking_options() {
75
+ global $wp_query;
76
+ $options = array();
77
+
78
+ $ua_code = monsterinsights_get_ua_to_output();
79
+ if ( empty( $ua_code ) ) {
80
+ return $options;
81
+ }
82
+
83
+ // $track_user = monsterinsights_track_user();
84
+ //
85
+ // if ( ! $track_user ) {
86
+ // $options['create'] = "'create', '" . esc_js( $ua_code ) . "', '" . esc_js( 'auto' ) . "'";
87
+ // $options['forceSSL'] = "'set', 'forceSSL', true";
88
+ // $options['send'] = "'send','pageview'";
89
+ //
90
+ // return $options;
91
+ // }
92
+
93
+ $cross_domains = monsterinsights_get_option( 'cross_domains', array() );
94
+ $allow_anchor = monsterinsights_get_option( 'allow_anchor', false );
95
+
96
+ if ( $allow_anchor ) {
97
+ $options['allow_anchor'] = 'true';
98
+ }
99
+
100
+ if ( class_exists( 'MonsterInsights_AMP' ) ) {
101
+ $options['use_amp_client_id'] = 'true';
102
+ }
103
+
104
+
105
+ $options['forceSSL'] = 'true';
106
+
107
+ // Anonymous data.
108
+ if ( monsterinsights_get_option( 'anonymize_ips', false ) ) {
109
+ $options['anonymize_ip'] = 'true';
110
+ }
111
+
112
+ $options = apply_filters( 'monsterinsights_frontend_tracking_options_gtag_before_scripts', $options );
113
+
114
+ // Add Enhanced link attribution.
115
+ if ( monsterinsights_get_option( 'link_attribution', false ) ) {
116
+ $options['link_attribution'] = 'true';
117
+ }
118
+
119
+ // Add cross-domain tracking.
120
+ if ( is_array( $cross_domains ) && ! empty( $cross_domains ) ) {
121
+ $options['linker'] = array( $cross_domains );
122
+ }
123
+
124
+ $options = apply_filters( 'monsterinsights_frontend_tracking_options_gtag_before_pageview', $options );
125
+ $options = apply_filters( 'monsterinsights_frontend_tracking_options_before_pageview', $options, $this->name, $this->version );
126
+
127
+ if ( is_404() ) {
128
+ if ( monsterinsights_get_option( 'hash_tracking', false ) ) {
129
+ $options['page_path'] = "'/404.html?page=' + document.location.pathname + document.location.search + location.hash + '&from=' + document.referrer";
130
+ } else {
131
+ $options['page_path'] = "'/404.html?page=' + document.location.pathname + document.location.search + '&from=' + document.referrer";
132
+ }
133
+ } else if ( $wp_query->is_search ) {
134
+ $pushstr = "'/?s=";
135
+ if ( 0 === (int) $wp_query->found_posts ) {
136
+ $options['page_path'] = $pushstr . 'no-results:' . rawurlencode( $wp_query->query_vars['s'] ) . "&cat=no-results'";
137
+ } else if ( (int) $wp_query->found_posts === 1 ) {
138
+ $options['page_path'] = $pushstr . rawurlencode( $wp_query->query_vars['s'] ) . "&cat=1-result'";
139
+ } else if ( $wp_query->found_posts > 1 && $wp_query->found_posts < 6 ) {
140
+ $options['page_path'] = $pushstr . rawurlencode( $wp_query->query_vars['s'] ) . "&cat=2-5-results'";
141
+ } else {
142
+ $options['page_path'] = $pushstr . rawurlencode( $wp_query->query_vars['s'] ) . "&cat=plus-5-results'";
143
+ }
144
+ } else if ( monsterinsights_get_option( 'hash_tracking', false ) ) {
145
+ $options['page_path'] = 'location.pathname + location.search + location.hash';
146
+ }
147
+
148
+ $options = apply_filters( 'monsterinsights_frontend_tracking_options_gtag_end', $options );
149
+
150
+ return $options;
151
+ }
152
+
153
+ /**
154
+ * Get frontend output.
155
+ *
156
+ * This function is used to return the Javascript
157
+ * to output in the head of the page for the given
158
+ * tracking method.
159
+ *
160
+ * @return string Javascript to output.
161
+ * @since 7.15.0
162
+ * @access public
163
+ *
164
+ */
165
+ public function frontend_output() {
166
+ $options = $this->frontend_tracking_options();
167
+ $persistent = $this->frontend_tracking_options_persistent();
168
+ $ua = monsterinsights_get_ua();
169
+ $src = apply_filters( 'monsterinsights_frontend_output_gtag_src', '//www.googletagmanager.com/gtag/js?id=' . $ua );
170
+ $compat_mode = monsterinsights_get_option( 'gtagtracker_compatibility_mode', true );
171
+ $compat = $compat_mode ? 'window.gtag = __gtagTracker;' : '';
172
+ $track_user = monsterinsights_track_user();
173
+ $output = '';
174
+ $reason = '';
175
+ $attr_string = monsterinsights_get_frontend_analytics_script_atts();
176
+ ob_start();
177
+ ?>
178
+ <!-- This site uses the Google Analytics by MonsterInsights plugin v<?php echo MONSTERINSIGHTS_VERSION; ?> - Using Analytics tracking - https://www.monsterinsights.com/ -->
179
+ <?php if ( ! $track_user ) {
180
+ if ( empty( $ua ) ) {
181
+ $reason = __( 'Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel.', 'google-analytics-for-wordpress' );
182
+ $output .= '<!-- ' . esc_html( $reason ) . ' -->' . PHP_EOL;
183
+ } else if ( current_user_can( 'monsterinsights_save_settings' ) ) {
184
+ $reason = __( 'Note: MonsterInsights does not track you as a logged-in site administrator to prevent site owners from accidentally skewing their own Google Analytics data.' . PHP_EOL . 'If you are testing Google Analytics code, please do so either logged out or in the private browsing/incognito mode of your web browser.', 'google-analytics-for-wordpress' );
185
+ $output .= '<!-- ' . esc_html( $reason ) . ' -->' . PHP_EOL;
186
+ } else {
187
+ $reason = __( 'Note: The site owner has disabled Google Analytics tracking for your user role.', 'google-analytics-for-wordpress' );
188
+ $output .= '<!-- ' . esc_html( $reason ) . ' -->' . PHP_EOL;
189
+ }
190
+ echo $output;
191
+ } ?>
192
+ <?php if ( $ua ) { ?>
193
+ <script src="<?php echo esc_attr( $src ); ?>" <?php echo $attr_string; ?>></script>
194
+ <script<?php echo $attr_string; ?>>
195
+ var mi_version = '<?php echo MONSTERINSIGHTS_VERSION; ?>';
196
+ var mi_track_user = <?php echo( $track_user ? 'true' : 'false' ); ?>;
197
+ var mi_no_track_reason = <?php echo( $reason ? "'" . esc_js( $reason ) . "'" : "''" ); ?>;
198
+ <?php do_action( 'monsterinsights_tracking_gtag_frontend_output_after_mi_track_user' ); ?>
199
+
200
+ <?php if ( $this->should_do_optout() ) { ?>
201
+ var disableStr = 'ga-disable-<?php echo monsterinsights_get_ua(); ?>';
202
+
203
+ /* Function to detect opted out users */
204
+ function __gtagTrackerIsOptedOut() {
205
+ return document.cookie.indexOf( disableStr + '=true' ) > - 1;
206
+ }
207
+
208
+ /* Disable tracking if the opt-out cookie exists. */
209
+ if ( __gtagTrackerIsOptedOut() ) {
210
+ window[disableStr] = true;
211
+ }
212
+
213
+ /* Opt-out function */
214
+ function __gtagTrackerOptout() {
215
+ document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
216
+ window[disableStr] = true;
217
+ }
218
+
219
+ if ( 'undefined' === typeof gaOptout ) {
220
+ function gaOptout() {
221
+ __gtagTrackerOptout();
222
+ }
223
+ }
224
+ <?php } ?>
225
+ window.dataLayer = window.dataLayer || [];
226
+ if ( mi_track_user ) {
227
+ function __gtagTracker() {
228
+ dataLayer.push( arguments );
229
+ }
230
+ __gtagTracker( 'js', new Date() );
231
+ __gtagTracker( 'set', {
232
+ 'developer_id.dZGIzZG' : true,
233
+ <?php
234
+ if ( ! empty( $persistent ) ) {
235
+ foreach ( $persistent as $key => $value ) {
236
+ echo "'" . esc_js( $key ) . "' : '" . stripslashes( $value ) . "',";
237
+ }
238
+ }
239
+ ?>
240
+ });
241
+ __gtagTracker( 'config', '<?php echo esc_js( $ua ); ?>', {
242
+ <?php
243
+ foreach ( $options as $key => $value ) {
244
+ echo esc_js( $key ) . ':' . stripslashes( $value ) . ',';
245
+ }
246
+ ?>
247
+ } );
248
+ <?php echo esc_js( $compat ); ?>
249
+ <?php if ( apply_filters( 'monsterinsights_tracking_gtag_frontend_gatracker_compatibility', true ) ) { ?>
250
+ (
251
+ function () {
252
+ /* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */
253
+ /* ga and __gaTracker compatibility shim. */
254
+ var noopfn = function () {
255
+ return null;
256
+ };
257
+ var noopnullfn = function () {
258
+ return null;
259
+ };
260
+ var Tracker = function () {
261
+ return null;
262
+ };
263
+ var p = Tracker.prototype;
264
+ p.get = noopfn;
265
+ p.set = noopfn;
266
+ p.send = noopfn;
267
+ var __gaTracker = function () {
268
+ var len = arguments.length;
269
+ if ( len === 0 ) {
270
+ return;
271
+ }
272
+ var f = arguments[len - 1];
273
+ if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) {
274
+ if ( 'send' === arguments[0] ) {
275
+ if ( 'event' === arguments[1] ) {
276
+ __gtagTracker( 'event', arguments[3], {
277
+ 'event_category': arguments[2],
278
+ 'event_label': arguments[4],
279
+ 'value': 1
280
+ } );
281
+ return;
282
+ }
283
+ if ( 'undefined' !== typeof ( arguments[1].hitType ) ) {
284
+ var hitDetails = {};
285
+ var gagtag_map = {
286
+ 'eventCategory': 'event_category',
287
+ 'eventAction': 'event_action',
288
+ 'eventLabel': 'event_label',
289
+ 'eventValue': 'event_value',
290
+ 'nonInteraction': 'non_interaction',
291
+ 'timingCategory': 'event_category',
292
+ 'timingVar': 'name',
293
+ 'timingValue': 'value',
294
+ 'timingLabel': 'event_label',
295
+ };
296
+ var gaKey;
297
+ for ( gaKey in gagtag_map ) {
298
+ if ( 'undefined' !== typeof arguments[1][gaKey] ) {
299
+ hitDetails[gagtag_map[gaKey]] = arguments[1][gaKey];
300
+ }
301
+ }
302
+ var action = 'timing' === arguments[1].hitType ? 'timing_complete' : arguments[1].eventAction;
303
+ __gtagTracker( 'event', action, hitDetails );
304
+ }
305
+ }
306
+ return;
307
+ }
308
+ try {
309
+ f.hitCallback();
310
+ } catch ( ex ) {
311
+ }
312
+ };
313
+ __gaTracker.create = function () {
314
+ return new Tracker();
315
+ };
316
+ __gaTracker.getByName = noopnullfn;
317
+ __gaTracker.getAll = function () {
318
+ return [];
319
+ };
320
+ __gaTracker.remove = noopfn;
321
+ __gaTracker.loaded = true;
322
+ window['__gaTracker'] = __gaTracker;
323
+ }
324
+ )();
325
+ <?php } ?>
326
+ } else {
327
+ <?php if ( $this->should_do_optout() ) { ?>
328
+ console.log( "<?php echo esc_js( $reason );?>" );
329
+ ( function () {
330
+ function __gtagTracker() {
331
+ return null;
332
+ }
333
+ window['__gtagTracker'] = __gtagTracker;
334
+ window['gtag'] = __gtagTracker;
335
+ } )();
336
+ <?php } ?>
337
+ }
338
+ </script>
339
+ <?php } else { ?>
340
+ <!-- No UA code set -->
341
+ <?php } ?>
342
+ <!-- / Google Analytics by MonsterInsights -->
343
+ <?php
344
+ $output = ob_get_contents();
345
+ ob_end_clean();
346
+
347
+ return $output;
348
+ }
349
+
350
+ public function should_do_optout() {
351
+ return ! ( defined( 'MI_NO_TRACKING_OPTOUT' ) && MI_NO_TRACKING_OPTOUT );
352
+ }
353
+ }
includes/helpers.php CHANGED
@@ -1255,10 +1255,10 @@ function monsterinsights_is_code_installed_frontend() {
1255
 
1256
  $body = wp_remote_retrieve_body( $request );
1257
  $current_ua_code = monsterinsights_get_ua_to_output();
1258
- $ua_limit = 2;
1259
  // If the ads addon is installed another UA is added to the page.
1260
  if ( class_exists( 'MonsterInsights_Ads' ) ) {
1261
- $ua_limit = 3;
1262
  }
1263
  // Translators: The placeholders are for making the "We noticed you're using a caching plugin" text bold.
1264
  $cache_error = sprintf( esc_html__( '%1$sWe noticed you\'re using a caching plugin or caching from your hosting provider.%2$s Be sure to clear the cache to ensure the tracking appears on all pages and posts. %3$s(See this guide on how to clear cache)%4$s.', 'google-analytics-for-wordpress' ), '<b>', '</b>', ' <a href="https://www.wpbeginner.com/beginners-guide/how-to-clear-your-cache-in-wordpress/" target="_blank">', '</a>' );
@@ -1632,7 +1632,7 @@ function monsterinsights_get_frontend_analytics_script_atts() {
1632
  if ( ! empty( $attr_name ) ) {
1633
  $attr_string .= ' ' . sanitize_key( $attr_name ) . '="' . esc_attr( $attr_value ) . '"';
1634
  } else {
1635
- $attr_string .= ' ' . sanitize_key( $attr_value );
1636
  }
1637
  }
1638
  }
1255
 
1256
  $body = wp_remote_retrieve_body( $request );
1257
  $current_ua_code = monsterinsights_get_ua_to_output();
1258
+ $ua_limit = 'gtag' === MonsterInsights()->get_tracking_mode() ? 4 : 2;
1259
  // If the ads addon is installed another UA is added to the page.
1260
  if ( class_exists( 'MonsterInsights_Ads' ) ) {
1261
+ $ua_limit++;
1262
  }
1263
  // Translators: The placeholders are for making the "We noticed you're using a caching plugin" text bold.
1264
  $cache_error = sprintf( esc_html__( '%1$sWe noticed you\'re using a caching plugin or caching from your hosting provider.%2$s Be sure to clear the cache to ensure the tracking appears on all pages and posts. %3$s(See this guide on how to clear cache)%4$s.', 'google-analytics-for-wordpress' ), '<b>', '</b>', ' <a href="https://www.wpbeginner.com/beginners-guide/how-to-clear-your-cache-in-wordpress/" target="_blank">', '</a>' );
1632
  if ( ! empty( $attr_name ) ) {
1633
  $attr_string .= ' ' . sanitize_key( $attr_name ) . '="' . esc_attr( $attr_value ) . '"';
1634
  } else {
1635
+ $attr_string .= ' ' . esc_attr( $attr_value );
1636
  }
1637
  }
1638
  }
includes/install.php CHANGED
@@ -148,6 +148,10 @@ class MonsterInsights_Install {
148
  $this->v7140_upgrades();
149
  }
150
 
 
 
 
 
151
  // Do not use. See monsterinsights_after_install_routine comment below.
152
  do_action( 'monsterinsights_after_existing_upgrade_routine', $version );
153
  $version = get_option( 'monsterinsights_current_version', $version );
@@ -283,7 +287,8 @@ class MonsterInsights_Install {
283
  'save_settings' => array( 'administrator' ),
284
  'view_reports' => array( 'administrator', 'editor' ),
285
  'events_mode' => 'js',
286
- 'tracking_mode' => 'analytics',
 
287
  'email_summaries' => 'on',
288
  'summaries_html_template' => 'yes',
289
  'summaries_email_addresses' => $admin_email_array,
@@ -846,4 +851,14 @@ class MonsterInsights_Install {
846
  // Delete existing year in review report option.
847
  delete_option( 'monsterinsights_report_data_yearinreview' );
848
  }
 
 
 
 
 
 
 
 
 
 
849
  }
148
  $this->v7140_upgrades();
149
  }
150
 
151
+ if ( version_compare( $version, '7.15.0', '<' ) ) {
152
+ $this->v7150_upgrades();
153
+ }
154
+
155
  // Do not use. See monsterinsights_after_install_routine comment below.
156
  do_action( 'monsterinsights_after_existing_upgrade_routine', $version );
157
  $version = get_option( 'monsterinsights_current_version', $version );
287
  'save_settings' => array( 'administrator' ),
288
  'view_reports' => array( 'administrator', 'editor' ),
289
  'events_mode' => 'js',
290
+ 'tracking_mode' => 'gtag', // Default new users to gtag.
291
+ 'gtagtracker_compatibility_mode' => true,
292
  'email_summaries' => 'on',
293
  'summaries_html_template' => 'yes',
294
  'summaries_email_addresses' => $admin_email_array,
851
  // Delete existing year in review report option.
852
  delete_option( 'monsterinsights_report_data_yearinreview' );
853
  }
854
+
855
+ /**
856
+ * Upgrade routine for version 7.15.0
857
+ */
858
+ public function v7150_upgrades() {
859
+ // Enable gtag compatibility mode by default.
860
+ if ( empty( $this->new_settings['gtagtracker_compatibility_mode'] ) ) {
861
+ $this->new_settings['gtagtracker_compatibility_mode'] = true;
862
+ }
863
+ }
864
  }
includes/options.php CHANGED
@@ -394,17 +394,17 @@ function monsterinsights_export_settings() {
394
  return wp_json_encode( $settings );
395
  }
396
 
397
- /**
398
- * Always return 'analytics' when grabbing the tracking mode.
399
- *
400
- * @param string $value The value to override.
401
- *
402
- * @return string
403
- */
404
- function monsterinsights_force_tracking_mode( $value ) {
405
- return 'analytics';
406
- }
407
- add_filter( 'monsterinsights_get_option_tracking_mode', 'monsterinsights_force_tracking_mode' );
408
 
409
  /**
410
  * Always return 'js' when grabbing the events mode.
394
  return wp_json_encode( $settings );
395
  }
396
 
397
+ ///**
398
+ // * Always return 'analytics' when grabbing the tracking mode.
399
+ // *
400
+ // * @param string $value The value to override.
401
+ // *
402
+ // * @return string
403
+ // */
404
+ //function monsterinsights_force_tracking_mode( $value ) {
405
+ // return 'analytics';
406
+ //}
407
+ //add_filter( 'monsterinsights_get_option_tracking_mode', 'monsterinsights_force_tracking_mode' );
408
 
409
  /**
410
  * Always return 'js' when grabbing the events mode.
includes/popular-posts/class-popular-posts.php CHANGED
@@ -561,6 +561,10 @@ class MonsterInsights_Popular_Posts {
561
  */
562
  public static function get_instance() {
563
 
 
 
 
 
564
  $class = get_called_class();
565
 
566
  if ( ! isset( self::$instances[ $class ] ) ) {
561
  */
562
  public static function get_instance() {
563
 
564
+ if ( ! function_exists( 'get_called_class' ) ) {
565
+ return false;
566
+ }
567
+
568
  $class = get_called_class();
569
 
570
  if ( ! isset( self::$instances[ $class ] ) ) {
languages/google-analytics-for-wordpress.pot CHANGED
@@ -1,15 +1,15 @@
1
- # Copyright (C) 2020 MonsterInsights
2
  # This file is distributed under the same license as the Google Analytics for WordPress by MonsterInsights plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Google Analytics for WordPress by MonsterInsights 7.14.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-analytics-for-wordpress\n"
7
  "Last-Translator: MonsterInsights Team <support@monsterinsights.com>\n"
8
  "Language-Team: MonsterInsights Team <support@monsterinsights.com>\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: 2020-12-16T10:02:13+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.2.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
@@ -78,7 +78,7 @@ msgid "Theme:"
78
  msgstr ""
79
 
80
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
81
- #: languages/vue.php:2890
82
  msgid "Theme Preview"
83
  msgstr ""
84
 
@@ -155,7 +155,7 @@ msgid "MonsterInsights integrates your WordPress website with Google Analytics."
155
  msgstr ""
156
 
157
  #: lite/includes/admin/wp-site-health.php:253
158
- #: languages/vue.php:617
159
  msgid "View Reports"
160
  msgstr ""
161
 
@@ -232,7 +232,7 @@ msgstr ""
232
  #: lite/includes/admin/wp-site-health.php:372
233
  #: lite/includes/admin/wp-site-health.php:398
234
  #: lite/includes/admin/wp-site-health.php:425
235
- #: languages/vue.php:656
236
  msgid "View Addons"
237
  msgstr ""
238
 
@@ -365,7 +365,7 @@ msgid "%1$sBonus:%2$s You also get 50%% off discount for being a loyal MonsterIn
365
  msgstr ""
366
 
367
  #: lite/includes/admin/helpers.php:83
368
- #: languages/vue.php:781
369
  msgid "Upgrade to MonsterInsights Pro"
370
  msgstr ""
371
 
@@ -384,7 +384,7 @@ msgid "You are not allowed to install plugins"
384
  msgstr ""
385
 
386
  #: lite/includes/admin/reports/report-queries.php:22
387
- #: languages/vue.php:570
388
  msgid "Search Console"
389
  msgstr ""
390
 
@@ -402,42 +402,45 @@ msgid "Real Time"
402
  msgstr ""
403
 
404
  #: lite/includes/admin/reports/report-publisher.php:22
405
- #: languages/vue.php:567
406
  msgid "Publishers"
407
  msgstr ""
408
 
409
  #: lite/includes/admin/reports/report-dimensions.php:22
410
- #: languages/vue.php:573
411
  msgid "Dimensions"
412
  msgstr ""
413
 
414
  #: lite/includes/admin/reports/report-forms.php:22
415
- #: languages/vue.php:576
416
  msgid "Forms"
417
  msgstr ""
418
 
419
  #: lite/includes/admin/welcome.php:56
420
  #: lite/includes/admin/welcome.php:57
421
- #: languages/vue.php:180
422
  msgid "Welcome to MonsterInsights"
423
  msgstr ""
424
 
425
- #: includes/frontend/tracking/class-tracking-preview.php:77
426
- msgid "You are currently in a preview window. MonsterInsights doesn't track preview window traffic to avoid false visit reports."
427
- msgstr ""
428
-
429
  #: includes/frontend/tracking/class-tracking-analytics.php:208
430
  msgid "Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel."
431
  msgstr ""
432
 
 
433
  #: includes/frontend/tracking/class-tracking-analytics.php:211
434
  msgid "Note: MonsterInsights does not track you as a logged-in site administrator to prevent site owners from accidentally skewing their own Google Analytics data."
435
  msgstr ""
436
 
 
437
  #: includes/frontend/tracking/class-tracking-analytics.php:214
438
  msgid "Note: The site owner has disabled Google Analytics tracking for your user role."
439
  msgstr ""
440
 
 
 
 
 
441
  #: includes/frontend/tracking/class-tracking-analytics.php:301
442
  msgid "Not running function"
443
  msgstr ""
@@ -446,12 +449,12 @@ msgstr ""
446
  msgid "because you are not being tracked."
447
  msgstr ""
448
 
449
- #: includes/frontend/frontend.php:240
450
  msgid "Tracking is Disabled for Administrators"
451
  msgstr ""
452
 
453
  #. Translators: %s is the link to the article where more details about tracking are listed.
454
- #: includes/frontend/frontend.php:250
455
  msgid "To keep stats accurate, we do not load Google Analytics scripts for admin users. %1$sLearn More &raquo;%2$s"
456
  msgstr ""
457
 
@@ -3192,7 +3195,7 @@ msgstr ""
3192
  #: includes/admin/notifications/notification-bounce-rate.php:40
3193
  #: includes/admin/notifications/notification-headline-analyzer.php:30
3194
  #: includes/admin/notifications/notification-audience.php:43
3195
- #: languages/vue.php:349
3196
  msgid "Learn More"
3197
  msgstr ""
3198
 
@@ -3219,7 +3222,7 @@ msgid "View 2020 Year in Review report!"
3219
  msgstr ""
3220
 
3221
  #: includes/admin/common.php:940
3222
- #: languages/vue.php:2508
3223
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
3224
  msgstr ""
3225
 
@@ -3234,7 +3237,7 @@ msgstr ""
3234
  #: includes/admin/admin.php:34
3235
  #: includes/admin/admin.php:42
3236
  #: includes/admin/admin.php:188
3237
- #: languages/vue.php:2475
3238
  msgid "Settings"
3239
  msgstr ""
3240
 
@@ -3250,7 +3253,7 @@ msgstr ""
3250
 
3251
  #: includes/admin/admin.php:39
3252
  #: includes/admin/admin.php:98
3253
- #: languages/vue.php:1124
3254
  msgid "Reports"
3255
  msgstr ""
3256
 
@@ -3288,7 +3291,7 @@ msgstr ""
3288
 
3289
  #: includes/admin/admin.php:63
3290
  #: includes/admin/admin.php:106
3291
- #: languages/vue.php:425
3292
  msgid "About Us"
3293
  msgstr ""
3294
 
@@ -3321,7 +3324,7 @@ msgstr ""
3321
 
3322
  #: includes/admin/admin.php:178
3323
  #: includes/admin/admin.php:181
3324
- #: languages/vue.php:1568
3325
  msgid "Support"
3326
  msgstr ""
3327
 
@@ -3331,17 +3334,17 @@ msgid "Please rate %1$sMonsterInsights%2$s on %3$s %4$sWordPress.org%5$s to help
3331
  msgstr ""
3332
 
3333
  #: includes/admin/admin.php:284
3334
- #: languages/vue.php:367
3335
  msgid "Please Setup Website Analytics to See Audience Insights"
3336
  msgstr ""
3337
 
3338
  #: includes/admin/admin.php:285
3339
- #: languages/vue.php:373
3340
  msgid "Connect MonsterInsights and Setup Website Analytics"
3341
  msgstr ""
3342
 
3343
  #: includes/admin/admin.php:289
3344
- #: languages/vue.php:370
3345
  msgid "MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 2 million website owners use MonsterInsights to see the stats that matter and grow their business."
3346
  msgstr ""
3347
 
@@ -3352,17 +3355,17 @@ msgstr ""
3352
 
3353
  #. Translators: Adds a link to the license renewal.
3354
  #: includes/admin/admin.php:310
3355
- #: languages/vue.php:599
3356
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
3357
  msgstr ""
3358
 
3359
  #: includes/admin/admin.php:312
3360
- #: languages/vue.php:602
3361
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
3362
  msgstr ""
3363
 
3364
  #: includes/admin/admin.php:314
3365
- #: languages/vue.php:605
3366
  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."
3367
  msgstr ""
3368
 
@@ -3506,7 +3509,7 @@ msgstr ""
3506
  #. Translators: visitors notification title
3507
  #. Translators: Number of visitors.
3508
  #: includes/admin/notifications/notification-visitors.php:37
3509
- #: languages/vue.php:316
3510
  msgid "See how %s visitors found your site!"
3511
  msgstr ""
3512
 
@@ -3597,12 +3600,12 @@ msgid "By upgrading to MonsterInsights Pro you get access to additional reports
3597
  msgstr ""
3598
 
3599
  #: includes/admin/notifications/notification-upgrade-to-pro.php:34
3600
- #: languages/vue.php:2369
3601
  msgid "Upgrade to Pro"
3602
  msgstr ""
3603
 
3604
  #: includes/admin/reports/overview.php:34
3605
- #: languages/vue.php:536
3606
  msgid "Overview"
3607
  msgstr ""
3608
 
@@ -4889,7 +4892,7 @@ msgid "Theme"
4889
  msgstr ""
4890
 
4891
  #: languages/gutenberg.php:77
4892
- #: languages/vue.php:2464
4893
  msgid "Inline Popular Posts"
4894
  msgstr ""
4895
 
@@ -4926,7 +4929,7 @@ msgid "Comment Color"
4926
  msgstr ""
4927
 
4928
  #: languages/gutenberg.php:107
4929
- #: languages/vue.php:3007
4930
  msgid "Wide-Layout Options"
4931
  msgstr ""
4932
 
@@ -4935,12 +4938,12 @@ msgid "Choose Layout"
4935
  msgstr ""
4936
 
4937
  #: languages/gutenberg.php:113
4938
- #: languages/vue.php:3010
4939
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4940
  msgstr ""
4941
 
4942
  #: languages/gutenberg.php:116
4943
- #: languages/vue.php:3031
4944
  msgid "Post Count"
4945
  msgstr ""
4946
 
@@ -4949,7 +4952,7 @@ msgid "Number of posts displayed."
4949
  msgstr ""
4950
 
4951
  #: languages/gutenberg.php:122
4952
- #: languages/vue.php:3013
4953
  msgid "Display Options"
4954
  msgstr ""
4955
 
@@ -4962,7 +4965,7 @@ msgid "Display Widget Title"
4962
  msgstr ""
4963
 
4964
  #: languages/gutenberg.php:131
4965
- #: languages/vue.php:2656
4966
  msgid "Widget Title"
4967
  msgstr ""
4968
 
@@ -4971,17 +4974,17 @@ msgid "Only Show Posts From These Categories"
4971
  msgstr ""
4972
 
4973
  #: languages/gutenberg.php:137
4974
- #: languages/vue.php:3019
4975
  msgid "Display Author"
4976
  msgstr ""
4977
 
4978
  #: languages/gutenberg.php:140
4979
- #: languages/vue.php:3022
4980
  msgid "Display Date"
4981
  msgstr ""
4982
 
4983
  #: languages/gutenberg.php:143
4984
- #: languages/vue.php:3025
4985
  msgid "Display Comments"
4986
  msgstr ""
4987
 
@@ -5202,7 +5205,7 @@ msgid "Goal: "
5202
  msgstr ""
5203
 
5204
  #: languages/gutenberg.php:312
5205
- #: languages/vue.php:2719
5206
  msgid "Headline Analyzer"
5207
  msgstr ""
5208
 
@@ -5435,35 +5438,35 @@ msgstr ""
5435
  msgid "Get Fresh Reports Data Every 60 Seconds"
5436
  msgstr ""
5437
 
5438
- #: languages/vue.php:176
5439
  msgid "Overview Report"
5440
  msgstr ""
5441
 
5442
- #: languages/vue.php:183
5443
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5444
  msgstr ""
5445
 
5446
- #: languages/vue.php:186
5447
  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."
5448
  msgstr ""
5449
 
5450
- #: languages/vue.php:189
5451
  msgid "Launch the Wizard!"
5452
  msgstr ""
5453
 
5454
- #: languages/vue.php:192
5455
  msgid "Read the Full Guide"
5456
  msgstr ""
5457
 
5458
- #: languages/vue.php:195
5459
  msgid "MonsterInsights Features & Addons"
5460
  msgstr ""
5461
 
5462
- #: languages/vue.php:198
5463
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5464
  msgstr ""
5465
 
5466
- #: languages/vue.php:201
5467
  msgid "See All Features"
5468
  msgstr ""
5469
 
@@ -5547,182 +5550,182 @@ msgstr ""
5547
  msgid "Form Conversions"
5548
  msgstr ""
5549
 
5550
- #: languages/vue.php:267
5551
  msgid "Custom Dimensions"
5552
  msgstr ""
5553
 
5554
- #: languages/vue.php:270
5555
  msgid "Author Tracking"
5556
  msgstr ""
5557
 
5558
- #: languages/vue.php:273
5559
  msgid "Google Optimize"
5560
  msgstr ""
5561
 
5562
- #: languages/vue.php:276
5563
  msgid "Category / Tags Tracking"
5564
  msgstr ""
5565
 
5566
- #: languages/vue.php:279
5567
  msgid "WooCommerce"
5568
  msgstr ""
5569
 
5570
- #: languages/vue.php:282
5571
  msgid "Easy Digital Downloads"
5572
  msgstr ""
5573
 
5574
- #: languages/vue.php:285
5575
  msgid "MemberPress"
5576
  msgstr ""
5577
 
5578
- #: languages/vue.php:288
5579
  msgid "LifterLMS"
5580
  msgstr ""
5581
 
5582
  #. Translators: Current WordPress version.
5583
- #: languages/vue.php:292
5584
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5585
  msgstr ""
5586
 
5587
- #: languages/vue.php:295
5588
  msgid "Yikes! PHP Update Required"
5589
  msgstr ""
5590
 
5591
  #. Translators: Current PHP version and recommended PHP version.
5592
- #: languages/vue.php:299
5593
  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."
5594
  msgstr ""
5595
 
5596
- #: languages/vue.php:302
5597
  msgid "Learn more about updating PHP"
5598
  msgstr ""
5599
 
5600
- #: languages/vue.php:305
5601
  msgid "Yikes! WordPress Update Required"
5602
  msgstr ""
5603
 
5604
  #. Translators: Current WordPress version.
5605
- #: languages/vue.php:309
5606
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5607
  msgstr ""
5608
 
5609
- #: languages/vue.php:312
5610
  msgid "Learn more about updating WordPress"
5611
  msgstr ""
5612
 
5613
  #. Translators: Number of visitors.
5614
- #: languages/vue.php:320
5615
  msgid "Your website was visited by %s users in the last 30 days."
5616
  msgstr ""
5617
 
5618
- #: languages/vue.php:323
5619
  msgid "See the full analytics report!"
5620
  msgstr ""
5621
 
5622
- #: languages/vue.php:326
5623
  msgid "Congratulations! "
5624
  msgstr ""
5625
 
5626
- #: languages/vue.php:329
5627
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5628
  msgstr ""
5629
 
5630
  #. Translators: Error status and error text.
5631
- #: languages/vue.php:333
5632
  msgid "Can't load report data. Error: %1$s, %2$s"
5633
  msgstr ""
5634
 
5635
- #: languages/vue.php:336
5636
  msgid "Error loading report data"
5637
  msgstr ""
5638
 
5639
  #. Translators: Placeholder is replaced with WPForms.
5640
- #: languages/vue.php:340
5641
  msgid "Recommended Plugin: %s"
5642
  msgstr ""
5643
 
5644
- #: languages/vue.php:343
5645
  msgid "Install"
5646
  msgstr ""
5647
 
5648
- #: languages/vue.php:346
5649
  msgid "Activate"
5650
  msgstr ""
5651
 
5652
- #: languages/vue.php:352
5653
  msgid "See Quick Links"
5654
  msgstr ""
5655
 
5656
- #: languages/vue.php:355
5657
  msgid "Suggest a Feature"
5658
  msgstr ""
5659
 
5660
- #: languages/vue.php:358
5661
  msgid "Join Our Community"
5662
  msgstr ""
5663
 
5664
- #: languages/vue.php:361
5665
  msgid "Support & Docs"
5666
  msgstr ""
5667
 
5668
- #: languages/vue.php:364
5669
  msgid "Upgrade to Pro &#187;"
5670
  msgstr ""
5671
 
5672
- #: languages/vue.php:376
5673
  msgid "MonsterInsights encountered an error loading your report data"
5674
  msgstr ""
5675
 
5676
- #: languages/vue.php:379
5677
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5678
  msgstr ""
5679
 
5680
- #: languages/vue.php:382
5681
  msgid "Reconnect MonsterInsights"
5682
  msgstr ""
5683
 
5684
- #: languages/vue.php:385
5685
  msgid "Re-Authenticating"
5686
  msgstr ""
5687
 
5688
- #: languages/vue.php:388
5689
  msgid "Ok"
5690
  msgstr ""
5691
 
5692
  #. Translators: Number of days in interval.
5693
- #: languages/vue.php:392
5694
  msgid "Last %s days"
5695
  msgstr ""
5696
 
5697
- #: languages/vue.php:395
5698
  msgid "Powered by MonsterInsights"
5699
  msgstr ""
5700
 
5701
- #: languages/vue.php:398
5702
  msgid "Publishers Report"
5703
  msgstr ""
5704
 
5705
- #: languages/vue.php:401
5706
  msgid "eCommerce Report"
5707
  msgstr ""
5708
 
5709
- #: languages/vue.php:405
5710
  msgid "Search Console Report"
5711
  msgstr ""
5712
 
5713
- #: languages/vue.php:408
5714
  msgid "Dimensions Report"
5715
  msgstr ""
5716
 
5717
- #: languages/vue.php:412
5718
  msgid "Forms Report"
5719
  msgstr ""
5720
 
5721
- #: languages/vue.php:415
5722
  msgid "Real-Time Report"
5723
  msgstr ""
5724
 
5725
- #: languages/vue.php:420
5726
  msgid "2019 Year in Review"
5727
  msgstr ""
5728
 
@@ -5750,35 +5753,35 @@ msgstr ""
5750
  msgid "Advanced"
5751
  msgstr ""
5752
 
5753
- #: languages/vue.php:461
5754
  msgid "URL Builder"
5755
  msgstr ""
5756
 
5757
- #: languages/vue.php:464
5758
  msgid "Import Export"
5759
  msgstr ""
5760
 
5761
- #: languages/vue.php:467
5762
  msgid "Exit Setup"
5763
  msgstr ""
5764
 
5765
- #: languages/vue.php:470
5766
  msgid "Time to Purchase"
5767
  msgstr ""
5768
 
5769
- #: languages/vue.php:473
5770
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5771
  msgstr ""
5772
 
5773
- #: languages/vue.php:476
5774
  msgid "Sessions to Purchase"
5775
  msgstr ""
5776
 
5777
- #: languages/vue.php:479
5778
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5779
  msgstr ""
5780
 
5781
- #: languages/vue.php:483
5782
  msgid "Top Posts/Pages"
5783
  msgstr ""
5784
 
@@ -5786,3313 +5789,3338 @@ msgstr ""
5786
  msgid "This list shows the most viewed posts and pages on your website."
5787
  msgstr ""
5788
 
5789
- #: languages/vue.php:491
5790
  msgid "New vs. Returning Visitors"
5791
  msgstr ""
5792
 
5793
- #: languages/vue.php:495
5794
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5795
  msgstr ""
5796
 
5797
- #: languages/vue.php:499
5798
  msgid "Device Breakdown"
5799
  msgstr ""
5800
 
5801
- #: languages/vue.php:503
5802
  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."
5803
  msgstr ""
5804
 
5805
- #: languages/vue.php:506
5806
  msgid "Top Landing Pages"
5807
  msgstr ""
5808
 
5809
- #: languages/vue.php:509
5810
  msgid "This list shows the top pages users first land on when visiting your website."
5811
  msgstr ""
5812
 
5813
- #: languages/vue.php:512
5814
  msgid "Top Exit Pages"
5815
  msgstr ""
5816
 
5817
- #: languages/vue.php:515
5818
  msgid "This list shows the top pages users exit your website from."
5819
  msgstr ""
5820
 
5821
- #: languages/vue.php:518
5822
  msgid "Top Outbound Links"
5823
  msgstr ""
5824
 
5825
- #: languages/vue.php:521
5826
  msgid "This list shows the top links clicked on your website that go to another website."
5827
  msgstr ""
5828
 
5829
- #: languages/vue.php:524
5830
  msgid "Top Affiliate Links"
5831
  msgstr ""
5832
 
5833
- #: languages/vue.php:527
5834
  msgid "This list shows the top affiliate links your visitors clicked on."
5835
  msgstr ""
5836
 
5837
- #: languages/vue.php:530
5838
  msgid "Top Download Links"
5839
  msgstr ""
5840
 
5841
- #: languages/vue.php:533
5842
  msgid "This list shows the download links your visitors clicked the most."
5843
  msgstr ""
5844
 
5845
- #: languages/vue.php:539
5846
  msgid "Top Products"
5847
  msgstr ""
5848
 
5849
- #: languages/vue.php:542
5850
  msgid "This list shows the top selling products on your website."
5851
  msgstr ""
5852
 
5853
- #: languages/vue.php:545
5854
  msgid "Top Conversion Sources"
5855
  msgstr ""
5856
 
5857
- #: languages/vue.php:548
5858
  msgid "This list shows the top referral websites in terms of product revenue."
5859
  msgstr ""
5860
 
5861
- #: languages/vue.php:551
5862
  msgid "Total Add/Remove"
5863
  msgstr ""
5864
 
5865
- #: languages/vue.php:554
5866
  msgid "You must connect with MonsterInsights before you can view reports."
5867
  msgstr ""
5868
 
5869
- #: languages/vue.php:557
5870
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5871
  msgstr ""
5872
 
5873
- #: languages/vue.php:561
5874
  msgid "Launch Setup Wizard"
5875
  msgstr ""
5876
 
5877
- #: languages/vue.php:564
5878
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
5879
  msgstr ""
5880
 
5881
- #: languages/vue.php:579
5882
  msgid "Real-Time"
5883
  msgstr ""
5884
 
5885
  #. Translators: Adds a link to documentation.
5886
- #: languages/vue.php:583
5887
  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"
5888
  msgstr ""
5889
 
5890
  #. Translators: Adds link to activate/install plugin and documentation.
5891
- #: languages/vue.php:587
5892
  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"
5893
  msgstr ""
5894
 
5895
  #. Translators: Adds a link to documentation.
5896
- #: languages/vue.php:591
5897
  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"
5898
  msgstr ""
5899
 
5900
  #. Translators: Adds link to activate/install plugin and documentation.
5901
- #: languages/vue.php:595
5902
  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"
5903
  msgstr ""
5904
 
5905
- #: languages/vue.php:608
5906
  msgid "MonsterInsights Addons"
5907
  msgstr ""
5908
 
5909
- #: languages/vue.php:611
5910
  msgid "Search Addons"
5911
  msgstr ""
5912
 
5913
- #: languages/vue.php:614
5914
  msgid "Save Changes"
5915
  msgstr ""
5916
 
5917
- #: languages/vue.php:620
5918
  msgid "Congratulations!"
5919
  msgstr ""
5920
 
5921
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5922
- #: languages/vue.php:624
5923
  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."
5924
  msgstr ""
5925
 
5926
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5927
- #: languages/vue.php:628
5928
  msgid "Onboarding Wizard"
5929
  msgstr ""
5930
 
5931
- #: languages/vue.php:631
5932
  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."
5933
  msgstr ""
5934
 
5935
- #: languages/vue.php:634
5936
  msgid "Installing Addon"
5937
  msgstr ""
5938
 
5939
- #: languages/vue.php:637
5940
  msgid "Activating Addon"
5941
  msgstr ""
5942
 
5943
- #: languages/vue.php:640
5944
  msgid "Addon Activated"
5945
  msgstr ""
5946
 
5947
- #: languages/vue.php:643
5948
  msgid "Loading report data"
5949
  msgstr ""
5950
 
5951
- #: languages/vue.php:646
5952
  msgid "Please activate manually"
5953
  msgstr ""
5954
 
5955
  #. Translators: Adds the error status and status text.
5956
- #: languages/vue.php:650
5957
  msgid "Error: %1$s, %2$s"
5958
  msgstr ""
5959
 
5960
- #: languages/vue.php:653
5961
  msgid "Error Activating Addon"
5962
  msgstr ""
5963
 
5964
- #: languages/vue.php:659
5965
  msgid "Dismiss"
5966
  msgstr ""
5967
 
5968
- #: languages/vue.php:662
5969
  msgid "Redirecting"
5970
  msgstr ""
5971
 
5972
- #: languages/vue.php:665
5973
  msgid "Please wait"
5974
  msgstr ""
5975
 
5976
- #: languages/vue.php:668
5977
  msgid "activate"
5978
  msgstr ""
5979
 
5980
- #: languages/vue.php:671
5981
  msgid "install"
5982
  msgstr ""
5983
 
5984
- #: languages/vue.php:674
5985
  msgid "Visit addons page"
5986
  msgstr ""
5987
 
5988
- #: languages/vue.php:677
5989
  msgid "Report Unavailable"
5990
  msgstr ""
5991
 
5992
  #. Translators: Install/Activate the addon.
5993
- #: languages/vue.php:681
5994
  msgid "%s Addon"
5995
  msgstr ""
5996
 
5997
- #: languages/vue.php:684
5998
  msgid "Show in widget mode"
5999
  msgstr ""
6000
 
6001
- #: languages/vue.php:687
6002
  msgid "Show in full-width mode"
6003
  msgstr ""
6004
 
6005
- #: languages/vue.php:690
6006
  msgid "Show Overview Reports"
6007
  msgstr ""
6008
 
6009
- #: languages/vue.php:693
6010
  msgid "Show Publishers Reports"
6011
  msgstr ""
6012
 
6013
- #: languages/vue.php:696
6014
  msgid "Show eCommerce Reports"
6015
  msgstr ""
6016
 
6017
- #: languages/vue.php:699
6018
  msgid "Available in PRO version"
6019
  msgstr ""
6020
 
6021
- #: languages/vue.php:702
6022
  msgid "Last 30 Days Insights for:"
6023
  msgstr ""
6024
 
6025
- #: languages/vue.php:705
6026
  msgid "Your Website"
6027
  msgstr ""
6028
 
6029
- #: languages/vue.php:709
6030
  msgid "Sessions"
6031
  msgstr ""
6032
 
6033
- #: languages/vue.php:713
6034
  msgid "Pageviews"
6035
  msgstr ""
6036
 
6037
- #: languages/vue.php:716
6038
  msgid "Avg. Duration"
6039
  msgstr ""
6040
 
6041
- #: languages/vue.php:720
6042
  msgid "Bounce Rate"
6043
  msgstr ""
6044
 
6045
- #: languages/vue.php:723
6046
  msgid "More data is available"
6047
  msgstr ""
6048
 
6049
- #: languages/vue.php:726
6050
  msgid "Want to see page-specific stats?"
6051
  msgstr ""
6052
 
6053
- #: languages/vue.php:729
6054
  msgid "See All Reports"
6055
  msgstr ""
6056
 
6057
- #: languages/vue.php:732
6058
  msgid "Go to the Analytics Dashboard"
6059
  msgstr ""
6060
 
6061
- #: languages/vue.php:736
6062
  msgid "License Key"
6063
  msgstr ""
6064
 
6065
  #. Translators: Add link to retrieve license key from account.
6066
- #: languages/vue.php:740
6067
  msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6068
  msgstr ""
6069
 
6070
- #: languages/vue.php:744
6071
  msgid "Google Authentication"
6072
  msgstr ""
6073
 
6074
- #: languages/vue.php:748
6075
  msgid "Connect Google Analytics + WordPress"
6076
  msgstr ""
6077
 
6078
- #: languages/vue.php:752
6079
  msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
6080
  msgstr ""
6081
 
6082
- #: languages/vue.php:755
6083
  msgid "Miscellaneous"
6084
  msgstr ""
6085
 
6086
- #: languages/vue.php:758
6087
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6088
  msgstr ""
6089
 
6090
- #: languages/vue.php:761
6091
  msgid "Hide Announcements"
6092
  msgstr ""
6093
 
6094
- #: languages/vue.php:764
6095
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6096
  msgstr ""
6097
 
6098
- #: languages/vue.php:767
6099
  msgid "No addons found."
6100
  msgstr ""
6101
 
6102
- #: languages/vue.php:770
6103
  msgid "Refresh Addons"
6104
  msgstr ""
6105
 
6106
- #: languages/vue.php:773
6107
  msgid "Refreshing Addons"
6108
  msgstr ""
6109
 
6110
  #. Translators: Make text green.
6111
- #: languages/vue.php:777
6112
  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!"
6113
  msgstr ""
6114
 
6115
  #. Translators: placeholders make text small.
6116
- #: languages/vue.php:785
6117
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
6118
  msgstr ""
6119
 
6120
  #. Translators: placeholders make text small.
6121
- #: languages/vue.php:789
6122
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
6123
  msgstr ""
6124
 
6125
  #. Translators: placeholders make text small.
6126
- #: languages/vue.php:793
6127
  msgid "None %1$s- Manually update everything.%2$s"
6128
  msgstr ""
6129
 
6130
- #: languages/vue.php:796
6131
  msgid "Automatic Updates"
6132
  msgstr ""
6133
 
6134
- #: languages/vue.php:800
6135
  msgid "Setup Wizard"
6136
  msgstr ""
6137
 
6138
- #: languages/vue.php:804
6139
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6140
  msgstr ""
6141
 
6142
  #. Translators: Placeholder adds a line break.
6143
- #: languages/vue.php:808
6144
  msgid "Unique %s Sessions"
6145
  msgstr ""
6146
 
6147
  #. Translators: Number of unique pageviews.
6148
- #: languages/vue.php:813
6149
  msgid "Unique %s Pageviews"
6150
  msgstr ""
6151
 
6152
- #: languages/vue.php:816
6153
  msgid "A session is the browsing session of a single user to your site."
6154
  msgstr ""
6155
 
6156
- #: languages/vue.php:819
6157
  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."
6158
  msgstr ""
6159
 
6160
- #: languages/vue.php:822
6161
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6162
  msgstr ""
6163
 
6164
- #: languages/vue.php:825
6165
  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."
6166
  msgstr ""
6167
 
6168
- #: languages/vue.php:828
6169
  msgid "Avg. Session Duration"
6170
  msgstr ""
6171
 
6172
- #: languages/vue.php:831
6173
  msgid "Demographics"
6174
  msgstr ""
6175
 
6176
- #: languages/vue.php:834
6177
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
6178
  msgstr ""
6179
 
6180
- #: languages/vue.php:837
6181
  msgid "Anonymize IP Addresses"
6182
  msgstr ""
6183
 
6184
- #: languages/vue.php:840
6185
  msgid "Link Attribution"
6186
  msgstr ""
6187
 
6188
- #: languages/vue.php:843
6189
  msgid "Enable Enhanced Link Attribution"
6190
  msgstr ""
6191
 
6192
- #: languages/vue.php:846
6193
  msgid "Enable Anchor Tracking"
6194
  msgstr ""
6195
 
6196
- #: languages/vue.php:849
6197
  msgid "Enable allowAnchor"
6198
  msgstr ""
6199
 
6200
- #: languages/vue.php:852
6201
  msgid "Enable allowLinker"
6202
  msgstr ""
6203
 
6204
- #: languages/vue.php:855
6205
  msgid "Enable Tag Links in RSS"
6206
  msgstr ""
6207
 
6208
- #: languages/vue.php:858
6209
  msgid "File Downloads"
6210
  msgstr ""
6211
 
6212
- #: languages/vue.php:861
6213
  msgid "Extensions of Files to Track as Downloads"
6214
  msgstr ""
6215
 
6216
- #: languages/vue.php:864
6217
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
6218
  msgstr ""
6219
 
6220
  #. Translators: Add links to the documentation.
6221
- #: languages/vue.php:868
6222
  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."
6223
  msgstr ""
6224
 
6225
  #. Translators: Adds a link to the documentation.
6226
- #: languages/vue.php:872
6227
  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."
6228
  msgstr ""
6229
 
6230
  #. Translators: Adds a link to the documentation.
6231
- #: languages/vue.php:876
6232
  msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
6233
  msgstr ""
6234
 
6235
- #: languages/vue.php:879
6236
  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."
6237
  msgstr ""
6238
 
6239
  #. Translators: Adds a link to the documentation.
6240
- #: languages/vue.php:883
6241
  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."
6242
  msgstr ""
6243
 
6244
  #. Translators: Adds a link to the documentation.
6245
- #: languages/vue.php:887
6246
  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."
6247
  msgstr ""
6248
 
6249
  #. Translators: Adds a link to the documentation.
6250
- #: languages/vue.php:891
6251
  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."
6252
  msgstr ""
6253
 
6254
- #: languages/vue.php:894
6255
  msgid "Add domain"
6256
  msgstr ""
6257
 
6258
  #. Translators: Example domain.
6259
- #: languages/vue.php:898
6260
  msgid "Domain (example: %s)"
6261
  msgstr ""
6262
 
6263
  #. Translators: Current site domain to be avoided.
6264
- #: languages/vue.php:902
6265
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
6266
  msgstr ""
6267
 
6268
- #: languages/vue.php:905
6269
  msgid "Cross Domain Tracking"
6270
  msgstr ""
6271
 
6272
  #. Translators: Adds a link to the documentation.
6273
- #: languages/vue.php:909
6274
  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."
6275
  msgstr ""
6276
 
6277
- #: languages/vue.php:912
6278
  msgid "Right Now"
6279
  msgstr ""
6280
 
6281
- #: languages/vue.php:915
6282
  msgid "Active users on site"
6283
  msgstr ""
6284
 
6285
- #: languages/vue.php:918
6286
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
6287
  msgstr ""
6288
 
6289
- #: languages/vue.php:921
6290
  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."
6291
  msgstr ""
6292
 
6293
- #: languages/vue.php:924
6294
  msgid "The real-time report automatically updates approximately every 60 seconds."
6295
  msgstr ""
6296
 
6297
  #. Translators: Number of seconds that have passed since the report was refreshed.
6298
- #: languages/vue.php:928
6299
  msgid "The real-time report was last updated %s seconds ago."
6300
  msgstr ""
6301
 
6302
- #: languages/vue.php:931
6303
  msgid "The latest data will be automatically shown on this page when it becomes available."
6304
  msgstr ""
6305
 
6306
- #: languages/vue.php:934
6307
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
6308
  msgstr ""
6309
 
6310
- #: languages/vue.php:937
6311
  msgid "Pageviews Per Minute"
6312
  msgstr ""
6313
 
6314
- #: languages/vue.php:940
6315
  msgid "Top Pages"
6316
  msgstr ""
6317
 
6318
- #: languages/vue.php:943
6319
  msgid "No pageviews currently."
6320
  msgstr ""
6321
 
6322
- #: languages/vue.php:946
6323
  msgid "Page"
6324
  msgstr ""
6325
 
6326
- #: languages/vue.php:949
6327
  msgid "Pageview Count"
6328
  msgstr ""
6329
 
6330
- #: languages/vue.php:952
6331
  msgid "Percent of Total"
6332
  msgstr ""
6333
 
6334
- #: languages/vue.php:955
6335
  msgid "This is the number of active users currently on your site."
6336
  msgstr ""
6337
 
6338
- #: languages/vue.php:958
6339
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
6340
  msgstr ""
6341
 
6342
- #: languages/vue.php:961
6343
  msgid "This list shows the top pages users are currently viewing on your site."
6344
  msgstr ""
6345
 
6346
- #: languages/vue.php:964
6347
  msgid "View All Real-Time Pageviews"
6348
  msgstr ""
6349
 
6350
- #: languages/vue.php:967
6351
  msgid "View All Real-Time Traffic Sources"
6352
  msgstr ""
6353
 
6354
- #: languages/vue.php:970
6355
  msgid "View All Real-Time Traffic by Country"
6356
  msgstr ""
6357
 
6358
- #: languages/vue.php:973
6359
  msgid "View All Real-Time Traffic by City"
6360
  msgstr ""
6361
 
6362
- #: languages/vue.php:976
6363
  msgid "See All Your Important Store Metrics in One Place"
6364
  msgstr ""
6365
 
6366
- #: languages/vue.php:979
6367
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
6368
  msgstr ""
6369
 
6370
- #: languages/vue.php:982
6371
  msgid "ONE-CLICK INTEGRATIONS"
6372
  msgstr ""
6373
 
6374
- #: languages/vue.php:985
6375
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
6376
  msgstr ""
6377
 
6378
- #: languages/vue.php:988
6379
  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."
6380
  msgstr ""
6381
 
6382
- #: languages/vue.php:991
6383
  msgid "GDPR Guide"
6384
  msgstr ""
6385
 
6386
- #: languages/vue.php:994
6387
  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. "
6388
  msgstr ""
6389
 
6390
- #: languages/vue.php:997
6391
  msgid "How to Install and Activate MonsterInsights Addons"
6392
  msgstr ""
6393
 
6394
- #: languages/vue.php:1000
6395
  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."
6396
  msgstr ""
6397
 
6398
- #: languages/vue.php:1003
6399
  msgid "Enabling eCommerce Tracking and Reports"
6400
  msgstr ""
6401
 
6402
- #: languages/vue.php:1006
6403
  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."
6404
  msgstr ""
6405
 
6406
- #: languages/vue.php:1009
6407
  msgid "Read Documentation"
6408
  msgstr ""
6409
 
6410
- #: languages/vue.php:1012
6411
  msgid "Getting Started with MonsterInsights"
6412
  msgstr ""
6413
 
6414
- #: languages/vue.php:1015
6415
  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."
6416
  msgstr ""
6417
 
6418
- #: languages/vue.php:1018
6419
  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."
6420
  msgstr ""
6421
 
6422
- #: languages/vue.php:1021
6423
  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!."
6424
  msgstr ""
6425
 
6426
- #: languages/vue.php:1024
6427
  msgid "Launch the wizard!"
6428
  msgstr ""
6429
 
6430
- #: languages/vue.php:1027
6431
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6432
  msgstr ""
6433
 
6434
  #. Translators: Makes text bold.
6435
- #: languages/vue.php:1031
6436
  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."
6437
  msgstr ""
6438
 
6439
- #: languages/vue.php:1034
6440
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
6441
  msgstr ""
6442
 
6443
- #: languages/vue.php:1037
6444
  msgid "See your website analytics reports inside the WordPress dashboard"
6445
  msgstr ""
6446
 
6447
- #: languages/vue.php:1040
6448
  msgid "Get real-time stats right inside WordPress"
6449
  msgstr ""
6450
 
6451
- #: languages/vue.php:1043
6452
  msgid "1-click Google Analytics Enhanced eCommerce tracking"
6453
  msgstr ""
6454
 
6455
- #: languages/vue.php:1046
6456
  msgid "Get detailed stats for each post and page."
6457
  msgstr ""
6458
 
6459
- #: languages/vue.php:1049
6460
  msgid "Automatically track clicks on your affiliate links and ads."
6461
  msgstr ""
6462
 
6463
- #: languages/vue.php:1052
6464
  msgid "Make Google Analytics GDPR compliant automatically"
6465
  msgstr ""
6466
 
6467
- #: languages/vue.php:1055
6468
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6469
  msgstr ""
6470
 
6471
- #: languages/vue.php:1058
6472
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6473
  msgstr ""
6474
 
6475
- #: languages/vue.php:1061
6476
  msgid "More advanced features"
6477
  msgstr ""
6478
 
6479
- #: languages/vue.php:1064
6480
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6481
  msgstr ""
6482
 
6483
  #. Translators: Makes text green.
6484
- #: languages/vue.php:1068
6485
  msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6486
  msgstr ""
6487
 
6488
- #: languages/vue.php:1071
6489
  msgid "How to Connect to Google Analytics"
6490
  msgstr ""
6491
 
6492
- #: languages/vue.php:1074
6493
  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."
6494
  msgstr ""
6495
 
6496
- #: languages/vue.php:1077
6497
  msgid "Guide and Checklist for Advanced Insights"
6498
  msgstr ""
6499
 
6500
- #: languages/vue.php:1080
6501
  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."
6502
  msgstr ""
6503
 
6504
  #. Translators: Adds a link to the general settings tab.
6505
- #: languages/vue.php:1084
6506
  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."
6507
  msgstr ""
6508
 
6509
- #: languages/vue.php:1087
6510
  msgid "Permissions"
6511
  msgstr ""
6512
 
6513
- #: languages/vue.php:1090
6514
  msgid "Allow These User Roles to See Reports"
6515
  msgstr ""
6516
 
6517
- #: languages/vue.php:1093
6518
  msgid "Users that have at least one of these roles will be able to view the reports."
6519
  msgstr ""
6520
 
6521
- #: languages/vue.php:1096
6522
  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."
6523
  msgstr ""
6524
 
6525
- #: languages/vue.php:1099
6526
  msgid "Allow These User Roles to Save Settings"
6527
  msgstr ""
6528
 
6529
- #: languages/vue.php:1102
6530
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
6531
  msgstr ""
6532
 
6533
- #: languages/vue.php:1105
6534
  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."
6535
  msgstr ""
6536
 
6537
- #: languages/vue.php:1108
6538
  msgid "Exclude These User Roles From Tracking"
6539
  msgstr ""
6540
 
6541
- #: languages/vue.php:1111
6542
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
6543
  msgstr ""
6544
 
6545
- #: languages/vue.php:1114
6546
  msgid "Performance"
6547
  msgstr ""
6548
 
6549
- #: languages/vue.php:1117
6550
  msgid "Custom code"
6551
  msgstr ""
6552
 
6553
  #. Translators: Adds a link to the Google reference.
6554
- #: languages/vue.php:1121
6555
  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."
6556
  msgstr ""
6557
 
6558
- #: languages/vue.php:1127
6559
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
6560
  msgstr ""
6561
 
6562
- #: languages/vue.php:1130
6563
  msgid "Hide Admin Bar Reports"
6564
  msgstr ""
6565
 
6566
  #. Translators: placeholders make text small.
6567
- #: languages/vue.php:1134
6568
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
6569
  msgstr ""
6570
 
6571
  #. Translators: placeholders make text small.
6572
- #: languages/vue.php:1138
6573
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
6574
  msgstr ""
6575
 
6576
  #. Translators: placeholders make text small.
6577
- #: languages/vue.php:1142
6578
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
6579
  msgstr ""
6580
 
6581
- #: languages/vue.php:1145
6582
  msgid "New"
6583
  msgstr ""
6584
 
6585
- #: languages/vue.php:1148
6586
  msgid "Returning"
6587
  msgstr ""
6588
 
6589
- #: languages/vue.php:1151
6590
  msgid "Desktop"
6591
  msgstr ""
6592
 
6593
- #: languages/vue.php:1154
6594
  msgid "Tablet"
6595
  msgstr ""
6596
 
6597
- #: languages/vue.php:1157
6598
  msgid "Mobile"
6599
  msgstr ""
6600
 
6601
- #: languages/vue.php:1160
6602
  msgid "Top 10 Countries"
6603
  msgstr ""
6604
 
6605
- #: languages/vue.php:1163
6606
  msgid "View Countries Report"
6607
  msgstr ""
6608
 
6609
- #: languages/vue.php:1166
6610
  msgid "Top 10 Referrals"
6611
  msgstr ""
6612
 
6613
- #: languages/vue.php:1169
6614
  msgid "View All Referral Sources"
6615
  msgstr ""
6616
 
6617
- #: languages/vue.php:1172
6618
  msgid "View Full Posts/Pages Report"
6619
  msgstr ""
6620
 
6621
- #: languages/vue.php:1175
6622
  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."
6623
  msgstr ""
6624
 
6625
- #: languages/vue.php:1178
6626
  msgid "This list shows the top countries your website visitors are from."
6627
  msgstr ""
6628
 
6629
- #: languages/vue.php:1181
6630
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
6631
  msgstr ""
6632
 
6633
  #. Translators: Example path (/go/).
6634
- #: languages/vue.php:1185
6635
  msgid "Path (example: %s)"
6636
  msgstr ""
6637
 
6638
- #: languages/vue.php:1188
6639
  msgid "Path has to start with a / and have no spaces"
6640
  msgstr ""
6641
 
6642
  #. Translators: Example label (aff).
6643
- #: languages/vue.php:1192
6644
  msgid "Label (example: %s)"
6645
  msgstr ""
6646
 
6647
- #: languages/vue.php:1195
6648
  msgid "Label can't contain any spaces"
6649
  msgstr ""
6650
 
6651
- #: languages/vue.php:1198
6652
  msgid "Affiliate Links"
6653
  msgstr ""
6654
 
6655
  #. Translators: Add links to documentation.
6656
- #: languages/vue.php:1202
6657
  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."
6658
  msgstr ""
6659
 
6660
- #: languages/vue.php:1205
6661
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
6662
  msgstr ""
6663
 
6664
- #: languages/vue.php:1208
6665
  msgid "Still Calculating..."
6666
  msgstr ""
6667
 
6668
- #: languages/vue.php:1211
6669
  msgid "Your 2019 Year in Review is still calculating. Please check back later to see how your website performed last year."
6670
  msgstr ""
6671
 
6672
- #: languages/vue.php:1214
6673
  msgid "Back to Overview Report"
6674
  msgstr ""
6675
 
6676
- #: languages/vue.php:1217
6677
  msgid "Your 2019 Analytics Report"
6678
  msgstr ""
6679
 
6680
- #: languages/vue.php:1220
6681
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
6682
  msgstr ""
6683
 
6684
- #: languages/vue.php:1223
6685
  msgid "Audience"
6686
  msgstr ""
6687
 
6688
- #: languages/vue.php:1226
6689
  msgid "Congrats"
6690
  msgstr ""
6691
 
6692
- #: languages/vue.php:1229
6693
  msgid "Your website was quite popular this year! "
6694
  msgstr ""
6695
 
6696
- #: languages/vue.php:1232
6697
  msgid "You had "
6698
  msgstr ""
6699
 
6700
- #: languages/vue.php:1235
6701
  msgid " visitors!"
6702
  msgstr ""
6703
 
6704
- #: languages/vue.php:1238
6705
  msgid " visitors"
6706
  msgstr ""
6707
 
6708
- #: languages/vue.php:1241
6709
  msgid "Total Visitors"
6710
  msgstr ""
6711
 
6712
- #: languages/vue.php:1244
6713
  msgid "Total Sessions"
6714
  msgstr ""
6715
 
6716
- #: languages/vue.php:1247
6717
  msgid "Visitors by Month"
6718
  msgstr ""
6719
 
6720
- #: languages/vue.php:1250
6721
  msgid "January 1, 2019 - December 31, 2019"
6722
  msgstr ""
6723
 
6724
- #: languages/vue.php:1253
6725
  msgid "A Tip for 2020"
6726
  msgstr ""
6727
 
6728
- #: languages/vue.php:1256
6729
  msgid "See the top Traffic Sources and Top Pages for the Month of May in the Overview Report to replicate your success."
6730
  msgstr ""
6731
 
6732
- #: languages/vue.php:1259
6733
  msgid "#1"
6734
  msgstr ""
6735
 
6736
- #: languages/vue.php:1262
6737
  msgid "You Top 5 Countries"
6738
  msgstr ""
6739
 
6740
- #: languages/vue.php:1265
6741
  msgid "Let’s get to know your visitors a little better, shall we?"
6742
  msgstr ""
6743
 
6744
- #: languages/vue.php:1268
6745
  msgid "Gender"
6746
  msgstr ""
6747
 
6748
- #: languages/vue.php:1271
6749
  msgid "Female"
6750
  msgstr ""
6751
 
6752
- #: languages/vue.php:1274
6753
  msgid "Women"
6754
  msgstr ""
6755
 
6756
- #: languages/vue.php:1277
6757
  msgid "Male"
6758
  msgstr ""
6759
 
6760
- #: languages/vue.php:1280
6761
  msgid "Average Age"
6762
  msgstr ""
6763
 
6764
- #: languages/vue.php:1283
6765
  msgid "Behavior"
6766
  msgstr ""
6767
 
6768
- #: languages/vue.php:1286
6769
  msgid "Your Top 5 Pages"
6770
  msgstr ""
6771
 
6772
- #: languages/vue.php:1289
6773
  msgid "Time Spent on Site"
6774
  msgstr ""
6775
 
6776
- #: languages/vue.php:1292
6777
  msgid "minutes"
6778
  msgstr ""
6779
 
6780
- #: languages/vue.php:1295
6781
  msgid "Device Type"
6782
  msgstr ""
6783
 
6784
- #: languages/vue.php:1298
6785
  msgid "A Tip For 2020"
6786
  msgstr ""
6787
 
6788
- #: languages/vue.php:1301
6789
  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."
6790
  msgstr ""
6791
 
6792
- #: languages/vue.php:1304
6793
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
6794
  msgstr ""
6795
 
6796
- #: languages/vue.php:1307
6797
  msgid "So, where did all of these visitors come from?"
6798
  msgstr ""
6799
 
6800
- #: languages/vue.php:1310
6801
  msgid "Clicks"
6802
  msgstr ""
6803
 
6804
- #: languages/vue.php:1313
6805
  msgid "Your Top 5 Keywords"
6806
  msgstr ""
6807
 
6808
- #: languages/vue.php:1316
6809
  msgid "What keywords visitors searched for to find your site"
6810
  msgstr ""
6811
 
6812
- #: languages/vue.php:1319
6813
  msgid "Your Top 5 Referrals"
6814
  msgstr ""
6815
 
6816
- #: languages/vue.php:1322
6817
  msgid "The websites that link back to your website"
6818
  msgstr ""
6819
 
6820
- #: languages/vue.php:1325
6821
  msgid "Opportunity"
6822
  msgstr ""
6823
 
6824
- #: languages/vue.php:1328
6825
  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."
6826
  msgstr ""
6827
 
6828
- #: languages/vue.php:1331
6829
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
6830
  msgstr ""
6831
 
6832
- #: languages/vue.php:1334
6833
  msgid "Thank you for using MonsterInsights!"
6834
  msgstr ""
6835
 
6836
- #: languages/vue.php:1337
6837
  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."
6838
  msgstr ""
6839
 
6840
- #: languages/vue.php:1340
6841
  msgid "Here's to an amazing 2020!"
6842
  msgstr ""
6843
 
6844
- #: languages/vue.php:1343
6845
  msgid "Enjoying MonsterInsights"
6846
  msgstr ""
6847
 
6848
- #: languages/vue.php:1346
6849
  msgid "Leave a five star review!"
6850
  msgstr ""
6851
 
6852
- #: languages/vue.php:1349
6853
  msgid "Syed Balkhi"
6854
  msgstr ""
6855
 
6856
- #: languages/vue.php:1352
6857
  msgid "Chris Christoff"
6858
  msgstr ""
6859
 
6860
- #: languages/vue.php:1355
6861
  msgid "Write Review"
6862
  msgstr ""
6863
 
6864
- #: languages/vue.php:1358
6865
  msgid "Did you know over 10 million websites use our plugins?"
6866
  msgstr ""
6867
 
6868
- #: languages/vue.php:1361
6869
  msgid "Try our other popular WordPress plugins to grow your website in 2020."
6870
  msgstr ""
6871
 
6872
- #: languages/vue.php:1364
6873
  msgid "Join our Communities!"
6874
  msgstr ""
6875
 
6876
- #: languages/vue.php:1367
6877
  msgid "Become a WordPress expert in 2020. Join our amazing communities and take your website to the next level."
6878
  msgstr ""
6879
 
6880
- #: languages/vue.php:1370
6881
  msgid "Facebook Group"
6882
  msgstr ""
6883
 
6884
- #: languages/vue.php:1373
6885
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
6886
  msgstr ""
6887
 
6888
- #: languages/vue.php:1376
6889
  msgid "Join Now...It’s Free!"
6890
  msgstr ""
6891
 
6892
- #: languages/vue.php:1379
6893
  msgid "WordPress Tutorials by WPBeginner"
6894
  msgstr ""
6895
 
6896
- #: languages/vue.php:1382
6897
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
6898
  msgstr ""
6899
 
6900
- #: languages/vue.php:1385
6901
  msgid "Visit WPBeginner"
6902
  msgstr ""
6903
 
6904
- #: languages/vue.php:1388
6905
  msgid "Follow Us!"
6906
  msgstr ""
6907
 
6908
- #: languages/vue.php:1391
6909
  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."
6910
  msgstr ""
6911
 
6912
- #: languages/vue.php:1394
6913
  msgid "Copyright MonsterInsights, 2020"
6914
  msgstr ""
6915
 
6916
- #: languages/vue.php:1397
6917
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
6918
  msgstr ""
6919
 
6920
- #: languages/vue.php:1400
6921
  msgid "January"
6922
  msgstr ""
6923
 
6924
- #: languages/vue.php:1403
6925
  msgid "February"
6926
  msgstr ""
6927
 
6928
- #: languages/vue.php:1406
6929
  msgid "March"
6930
  msgstr ""
6931
 
6932
- #: languages/vue.php:1409
6933
  msgid "April"
6934
  msgstr ""
6935
 
6936
- #: languages/vue.php:1412
6937
  msgid "May"
6938
  msgstr ""
6939
 
6940
- #: languages/vue.php:1415
6941
  msgid "June"
6942
  msgstr ""
6943
 
6944
- #: languages/vue.php:1418
6945
  msgid "July"
6946
  msgstr ""
6947
 
6948
- #: languages/vue.php:1421
6949
  msgid "August"
6950
  msgstr ""
6951
 
6952
- #: languages/vue.php:1424
6953
  msgid "September"
6954
  msgstr ""
6955
 
6956
- #: languages/vue.php:1427
6957
  msgid "October"
6958
  msgstr ""
6959
 
6960
- #: languages/vue.php:1430
6961
  msgid "November"
6962
  msgstr ""
6963
 
6964
- #: languages/vue.php:1433
6965
  msgid "December"
6966
  msgstr ""
6967
 
6968
  #. Translators: Number of visitors.
6969
- #: languages/vue.php:1437
6970
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
6971
  msgstr ""
6972
 
6973
  #. Translators: Number of visitors.
6974
- #: languages/vue.php:1441
6975
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
6976
  msgstr ""
6977
 
6978
  #. Translators: Number of visitors.
6979
- #: languages/vue.php:1445
6980
  msgid "%s Visitors"
6981
  msgstr ""
6982
 
6983
  #. Translators: Percent and Number of visitors.
6984
- #: languages/vue.php:1449
6985
  msgid "%1$s&#37 of your visitors were %2$s"
6986
  msgstr ""
6987
 
6988
  #. Translators: Number of visitors and their age.
6989
- #: languages/vue.php:1453
6990
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
6991
  msgstr ""
6992
 
6993
  #. Translators: Number of visitors and number of pages.
6994
- #: languages/vue.php:1457
6995
  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>"
6996
  msgstr ""
6997
 
6998
  #. Translators: Number of minutes spent on site.
6999
- #: languages/vue.php:1461
7000
  msgid "Each visitor spent an average of %s minutes on your website in 2019."
7001
  msgstr ""
7002
 
7003
  #. Translators: Name of device type.
7004
- #: languages/vue.php:1465
7005
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7006
  msgstr ""
7007
 
7008
  #. Translators: Number of visitors and device percentage.
7009
- #: languages/vue.php:1469
7010
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7011
  msgstr ""
7012
 
7013
- #: languages/vue.php:1472
7014
  msgid "Import/Export"
7015
  msgstr ""
7016
 
7017
- #: languages/vue.php:1475
7018
  msgid "Import"
7019
  msgstr ""
7020
 
7021
- #: languages/vue.php:1478
7022
  msgid "Import settings from another ExactMetrics website."
7023
  msgstr ""
7024
 
7025
- #: languages/vue.php:1481
7026
  msgid "Export"
7027
  msgstr ""
7028
 
7029
- #: languages/vue.php:1484
7030
  msgid "Export settings to import into another ExactMetrics install."
7031
  msgstr ""
7032
 
7033
- #: languages/vue.php:1487
7034
  msgid "Import Settings"
7035
  msgstr ""
7036
 
7037
- #: languages/vue.php:1490
7038
  msgid "Export Settings"
7039
  msgstr ""
7040
 
7041
- #: languages/vue.php:1493
7042
  msgid "Please choose a file to import"
7043
  msgstr ""
7044
 
7045
- #: languages/vue.php:1496
7046
  msgid "Use the filepicker below to select the settings export file from another site."
7047
  msgstr ""
7048
 
7049
- #: languages/vue.php:1499
7050
  msgid "Use the button below to export a file with your MonsterInsights settings."
7051
  msgstr ""
7052
 
7053
- #: languages/vue.php:1502
7054
  msgid "Uploading file..."
7055
  msgstr ""
7056
 
7057
- #: languages/vue.php:1505
7058
  msgid "File imported"
7059
  msgstr ""
7060
 
7061
- #: languages/vue.php:1508
7062
  msgid "Settings successfully updated!"
7063
  msgstr ""
7064
 
7065
- #: languages/vue.php:1511
7066
  msgid "Error importing settings"
7067
  msgstr ""
7068
 
7069
- #: languages/vue.php:1514
7070
  msgid "Please choose a .json file generated by a MonsterInsights settings export."
7071
  msgstr ""
7072
 
7073
- #: languages/vue.php:1517
7074
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
7075
  msgstr ""
7076
 
7077
- #: languages/vue.php:1520
7078
  msgid "WordPress Admin Area Reports"
7079
  msgstr ""
7080
 
7081
- #: languages/vue.php:1523
7082
  msgid "Standard Reports"
7083
  msgstr ""
7084
 
7085
- #: languages/vue.php:1526
7086
  msgid "Overview Reports for the last 30 days."
7087
  msgstr ""
7088
 
7089
- #: languages/vue.php:1529
7090
  msgid "Advanced Reports"
7091
  msgstr ""
7092
 
7093
- #: languages/vue.php:1532
7094
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
7095
  msgstr ""
7096
 
7097
- #: languages/vue.php:1535
7098
  msgid "Dashboard Widget"
7099
  msgstr ""
7100
 
7101
- #: languages/vue.php:1538
7102
  msgid "Basic Widget"
7103
  msgstr ""
7104
 
7105
- #: languages/vue.php:1541
7106
  msgid "Overview Report Synopsis"
7107
  msgstr ""
7108
 
7109
- #: languages/vue.php:1544
7110
  msgid "Advanced Dashboard Widget"
7111
  msgstr ""
7112
 
7113
- #: languages/vue.php:1547
7114
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
7115
  msgstr ""
7116
 
7117
- #: languages/vue.php:1550
7118
  msgid "Publisher Reports"
7119
  msgstr ""
7120
 
7121
- #: languages/vue.php:1553
7122
  msgid "Advanced Publisher Reports & Tracking"
7123
  msgstr ""
7124
 
7125
- #: languages/vue.php:1556
7126
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
7127
  msgstr ""
7128
 
7129
- #: languages/vue.php:1559
7130
  msgid "Not Available"
7131
  msgstr ""
7132
 
7133
- #: languages/vue.php:1562
7134
  msgid "Complete Custom Dimensions Tracking"
7135
  msgstr ""
7136
 
7137
- #: languages/vue.php:1565
7138
  msgid "Track and measure by the Author, Post Type, Category, Tags, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
7139
  msgstr ""
7140
 
7141
- #: languages/vue.php:1571
7142
  msgid "Limited Support"
7143
  msgstr ""
7144
 
7145
- #: languages/vue.php:1574
7146
  msgid "Priority Support"
7147
  msgstr ""
7148
 
7149
- #: languages/vue.php:1577
7150
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
7151
  msgstr ""
7152
 
7153
- #: languages/vue.php:1580
7154
  msgid "Feature"
7155
  msgstr ""
7156
 
7157
- #: languages/vue.php:1583
7158
  msgid "Lite"
7159
  msgstr ""
7160
 
7161
- #: languages/vue.php:1586
7162
  msgid "Pro"
7163
  msgstr ""
7164
 
7165
- #: languages/vue.php:1589
7166
  msgid "Included"
7167
  msgstr ""
7168
 
7169
- #: languages/vue.php:1592
7170
  msgid "Custom Google Analytics Link Tracking"
7171
  msgstr ""
7172
 
7173
- #: languages/vue.php:1595
7174
  msgid "Standard Tracking"
7175
  msgstr ""
7176
 
7177
- #: languages/vue.php:1598
7178
  msgid "Advanced Tracking"
7179
  msgstr ""
7180
 
7181
- #: languages/vue.php:1601
7182
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
7183
  msgstr ""
7184
 
7185
- #: languages/vue.php:1604
7186
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
7187
  msgstr ""
7188
 
7189
- #: languages/vue.php:1607
7190
  msgid "No-Code-Needed Tracking Features"
7191
  msgstr ""
7192
 
7193
- #: languages/vue.php:1610
7194
  msgid "Basic Tracking Options"
7195
  msgstr ""
7196
 
7197
- #: languages/vue.php:1613
7198
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
7199
  msgstr ""
7200
 
7201
- #: languages/vue.php:1616
7202
  msgid "Advanced Tracking Options"
7203
  msgstr ""
7204
 
7205
- #: languages/vue.php:1619
7206
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
7207
  msgstr ""
7208
 
7209
- #: languages/vue.php:1622
7210
  msgid "eCommerce Tracking"
7211
  msgstr ""
7212
 
7213
- #: languages/vue.php:1625
7214
  msgid "One-click Complete eCommerce tracking"
7215
  msgstr ""
7216
 
7217
- #: languages/vue.php:1628
7218
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
7219
  msgstr ""
7220
 
7221
- #: languages/vue.php:1631
7222
  msgid "Forms Tracking"
7223
  msgstr ""
7224
 
7225
- #: languages/vue.php:1634
7226
  msgid "One-click Form Events Tracking"
7227
  msgstr ""
7228
 
7229
- #: languages/vue.php:1637
7230
  msgid "Custom Campaign Parameters"
7231
  msgstr ""
7232
 
7233
- #: languages/vue.php:1640
7234
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
7235
  msgstr ""
7236
 
7237
- #: languages/vue.php:1643
7238
  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."
7239
  msgstr ""
7240
 
7241
  #. Translators: Marks the field as required.
7242
- #: languages/vue.php:1647
7243
  msgid "Website URL %s"
7244
  msgstr ""
7245
 
7246
  #. Translators: Display the current website url in italic.
7247
- #: languages/vue.php:1651
7248
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
7249
  msgstr ""
7250
 
7251
  #. Translators: Marks the field as required.
7252
- #: languages/vue.php:1655
7253
  msgid "Campaign Source %s"
7254
  msgstr ""
7255
 
7256
  #. Translators: Make the text italic.
7257
- #: languages/vue.php:1659
7258
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
7259
  msgstr ""
7260
 
7261
  #. Translators: Make the text italic.
7262
- #: languages/vue.php:1663
7263
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
7264
  msgstr ""
7265
 
7266
  #. Translators: Make the text italic.
7267
- #: languages/vue.php:1667
7268
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
7269
  msgstr ""
7270
 
7271
- #: languages/vue.php:1670
7272
  msgid "Enter the paid keyword"
7273
  msgstr ""
7274
 
7275
- #: languages/vue.php:1673
7276
  msgid "Enter something to differentiate ads"
7277
  msgstr ""
7278
 
7279
- #: languages/vue.php:1676
7280
  msgid "Use Fragment"
7281
  msgstr ""
7282
 
7283
  #. Translators: Make the text bold.
7284
- #: languages/vue.php:1680
7285
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
7286
  msgstr ""
7287
 
7288
- #: languages/vue.php:1683
7289
  msgid "URL to use"
7290
  msgstr ""
7291
 
7292
- #: languages/vue.php:1686
7293
  msgid "(Updates automatically)"
7294
  msgstr ""
7295
 
7296
- #: languages/vue.php:1689
7297
  msgid "Copy to Clipboard"
7298
  msgstr ""
7299
 
7300
- #: languages/vue.php:1692
7301
  msgid "More Information & Examples"
7302
  msgstr ""
7303
 
7304
- #: languages/vue.php:1695
7305
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
7306
  msgstr ""
7307
 
7308
- #: languages/vue.php:1698
7309
  msgid "Campaign Source"
7310
  msgstr ""
7311
 
7312
- #: languages/vue.php:1701
7313
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
7314
  msgstr ""
7315
 
7316
- #: languages/vue.php:1704
7317
  msgid "Campaign Medium"
7318
  msgstr ""
7319
 
7320
- #: languages/vue.php:1707
7321
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
7322
  msgstr ""
7323
 
7324
- #: languages/vue.php:1710
7325
  msgid "Campaign Name"
7326
  msgstr ""
7327
 
7328
- #: languages/vue.php:1713
7329
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
7330
  msgstr ""
7331
 
7332
- #: languages/vue.php:1716
7333
  msgid "Campaign Term"
7334
  msgstr ""
7335
 
7336
- #: languages/vue.php:1719
7337
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
7338
  msgstr ""
7339
 
7340
- #: languages/vue.php:1722
7341
  msgid "Campaign Content"
7342
  msgstr ""
7343
 
7344
- #: languages/vue.php:1725
7345
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
7346
  msgstr ""
7347
 
7348
  #. Translators: Example.
7349
- #: languages/vue.php:1729
7350
  msgid "Example: %s"
7351
  msgstr ""
7352
 
7353
  #. Translators: Examples.
7354
- #: languages/vue.php:1733
7355
  msgid "Examples: %s"
7356
  msgstr ""
7357
 
7358
- #: languages/vue.php:1736
7359
  msgid "About Campaigns"
7360
  msgstr ""
7361
 
7362
- #: languages/vue.php:1739
7363
  msgid "About Custom Campaigns"
7364
  msgstr ""
7365
 
7366
- #: languages/vue.php:1742
7367
  msgid "Best Practices for Creating Custom Campaigns"
7368
  msgstr ""
7369
 
7370
- #: languages/vue.php:1745
7371
  msgid "About the Referral Traffic Report"
7372
  msgstr ""
7373
 
7374
- #: languages/vue.php:1748
7375
  msgid "About Traffic Source Dimensions"
7376
  msgstr ""
7377
 
7378
- #: languages/vue.php:1751
7379
  msgid "AdWords Auto-Tagging"
7380
  msgstr ""
7381
 
7382
- #: languages/vue.php:1754
7383
  msgid "Additional Information"
7384
  msgstr ""
7385
 
7386
- #: languages/vue.php:1757
7387
  msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visit, so you can analyze and optimize it for higher conversions."
7388
  msgstr ""
7389
 
7390
- #: languages/vue.php:1760
7391
  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."
7392
  msgstr ""
7393
 
7394
- #: languages/vue.php:1763
7395
  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\"."
7396
  msgstr ""
7397
 
7398
- #: languages/vue.php:1766
7399
  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."
7400
  msgstr ""
7401
 
7402
- #: languages/vue.php:1769
7403
  msgid "Yup, we know a thing or two about building awesome products that customers love."
7404
  msgstr ""
7405
 
7406
- #: languages/vue.php:1772
7407
  msgid "The MonsterInsights Team"
7408
  msgstr ""
7409
 
7410
- #: languages/vue.php:1775
7411
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
7412
  msgstr ""
7413
 
7414
- #: languages/vue.php:1778
7415
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
7416
  msgstr ""
7417
 
7418
- #: languages/vue.php:1781
7419
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
7420
  msgstr ""
7421
 
7422
- #: languages/vue.php:1784
7423
  msgid "Loading Settings"
7424
  msgstr ""
7425
 
7426
- #: languages/vue.php:1787
7427
  msgid "Saving Changes..."
7428
  msgstr ""
7429
 
7430
- #: languages/vue.php:1790
7431
  msgid "Settings Updated"
7432
  msgstr ""
7433
 
7434
  #. Translators: Adds a link to the settings panel.
7435
- #: languages/vue.php:1794
7436
  msgid "You need to %1$sconnect MonsterInsights%2$s first"
7437
  msgstr ""
7438
 
7439
- #: languages/vue.php:1797
7440
  msgid "Could Not Save Changes"
7441
  msgstr ""
7442
 
7443
  #. Translators: Error status and error text.
7444
- #: languages/vue.php:1801
7445
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7446
  msgstr ""
7447
 
7448
- #: languages/vue.php:1804
7449
  msgid "You appear to be offline."
7450
  msgstr ""
7451
 
7452
  #. Translators: Error status and error text.
7453
- #: languages/vue.php:1808
7454
  msgid "Can't save settings. Error: %1$s, %2$s"
7455
  msgstr ""
7456
 
7457
- #: languages/vue.php:1811
7458
  msgid "You appear to be offline. Settings not saved."
7459
  msgstr ""
7460
 
7461
  #. Translators: Error status and error text.
7462
- #: languages/vue.php:1815
7463
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7464
  msgstr ""
7465
 
7466
  #. Translators: Error status and error text.
7467
- #: languages/vue.php:1819
7468
  msgid "Can't authenticate. Error: %1$s, %2$s"
7469
  msgstr ""
7470
 
7471
  #. Translators: Error status and error text.
7472
- #: languages/vue.php:1823
7473
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7474
  msgstr ""
7475
 
7476
  #. Translators: Error status and error text.
7477
- #: languages/vue.php:1827
7478
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7479
  msgstr ""
7480
 
7481
- #: languages/vue.php:1830
7482
  msgid "You appear to be offline. WPForms not installed."
7483
  msgstr ""
7484
 
7485
  #. Translators: Error status and error text.
7486
- #: languages/vue.php:1834
7487
  msgid "Can't activate addon. Error: %1$s, %2$s"
7488
  msgstr ""
7489
 
7490
- #: languages/vue.php:1837
7491
  msgid "You appear to be offline. Addon not activated."
7492
  msgstr ""
7493
 
7494
  #. Translators: Error status and error text.
7495
- #: languages/vue.php:1841
7496
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7497
  msgstr ""
7498
 
7499
- #: languages/vue.php:1844
7500
  msgid "You appear to be offline. Addon not deactivated."
7501
  msgstr ""
7502
 
7503
  #. Translators: Error status and error text.
7504
- #: languages/vue.php:1848
7505
  msgid "Can't install plugin. Error: %1$s, %2$s"
7506
  msgstr ""
7507
 
7508
- #: languages/vue.php:1851
7509
  msgid "You appear to be offline. Plugin not installed."
7510
  msgstr ""
7511
 
7512
  #. Translators: Error status and error text.
7513
- #: languages/vue.php:1855
7514
  msgid "Can't install addon. Error: %1$s, %2$s"
7515
  msgstr ""
7516
 
7517
- #: languages/vue.php:1858
7518
  msgid "You appear to be offline. Addon not installed."
7519
  msgstr ""
7520
 
7521
  #. Translators: Error status and error text.
7522
- #: languages/vue.php:1862
7523
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7524
  msgstr ""
7525
 
7526
  #. Translators: Error status and error text.
7527
- #: languages/vue.php:1866
7528
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
7529
  msgstr ""
7530
 
7531
  #. Translators: Error status and error text.
7532
- #: languages/vue.php:1870
7533
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7534
  msgstr ""
7535
 
7536
  #. Translators: Error status and error text.
7537
- #: languages/vue.php:1874
7538
  msgid "Can't load license details. Error: %1$s, %2$s"
7539
  msgstr ""
7540
 
7541
- #: languages/vue.php:1877
7542
  msgid "Error loading license details"
7543
  msgstr ""
7544
 
7545
  #. Translators: Error status and error text.
7546
- #: languages/vue.php:1881
7547
  msgid "Can't verify the license. Error: %1$s, %2$s"
7548
  msgstr ""
7549
 
7550
  #. Translators: Error status and error text.
7551
- #: languages/vue.php:1885
7552
  msgid "Can't validate the license. Error: %1$s, %2$s"
7553
  msgstr ""
7554
 
7555
- #: languages/vue.php:1888
7556
  msgid "MonsterInsights Recommends WPForms"
7557
  msgstr ""
7558
 
7559
- #: languages/vue.php:1891
7560
  msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
7561
  msgstr ""
7562
 
7563
- #: languages/vue.php:1894
7564
  msgid "Used on over 1,000,000 websites!"
7565
  msgstr ""
7566
 
7567
- #: languages/vue.php:1897
7568
  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!"
7569
  msgstr ""
7570
 
7571
- #: languages/vue.php:1900
7572
  msgid "Skip this Step"
7573
  msgstr ""
7574
 
7575
- #: languages/vue.php:1903
7576
  msgid "Continue & Install WPForms"
7577
  msgstr ""
7578
 
7579
- #: languages/vue.php:1906
7580
  msgid "Installing..."
7581
  msgstr ""
7582
 
7583
- #: languages/vue.php:1909
7584
  msgid "Awesome, You're All Set!"
7585
  msgstr ""
7586
 
7587
- #: languages/vue.php:1912
7588
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
7589
  msgstr ""
7590
 
7591
  #. Translators: Make text bold.
7592
- #: languages/vue.php:1916
7593
  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."
7594
  msgstr ""
7595
 
7596
  #. Translators: Link to our blog.
7597
- #: languages/vue.php:1920
7598
  msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
7599
  msgstr ""
7600
 
7601
- #: languages/vue.php:1923
7602
  msgid "Finish Setup & Exit Wizard"
7603
  msgstr ""
7604
 
7605
- #: languages/vue.php:1926
7606
  msgid "Checking your website..."
7607
  msgstr ""
7608
 
7609
- #: languages/vue.php:1929
7610
  msgid "Recommended Addons"
7611
  msgstr ""
7612
 
7613
- #: languages/vue.php:1932
7614
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
7615
  msgstr ""
7616
 
7617
- #: languages/vue.php:1935
7618
  msgid "Other Addons"
7619
  msgstr ""
7620
 
7621
- #: languages/vue.php:1938
7622
  msgid "View all MonsterInsights addons"
7623
  msgstr ""
7624
 
7625
- #: languages/vue.php:1941
7626
  msgid "Save and continue"
7627
  msgstr ""
7628
 
7629
- #: languages/vue.php:1944
7630
  msgid "Connect MonsterInsights to Your Website"
7631
  msgstr ""
7632
 
7633
- #: languages/vue.php:1947
7634
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
7635
  msgstr ""
7636
 
7637
- #: languages/vue.php:1950
7638
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
7639
  msgstr ""
7640
 
7641
- #: languages/vue.php:1953
7642
  msgid "Manually enter your UA code"
7643
  msgstr ""
7644
 
7645
- #: languages/vue.php:1956
7646
  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."
7647
  msgstr ""
7648
 
7649
- #: languages/vue.php:1959
7650
  msgid "Save and Continue"
7651
  msgstr ""
7652
 
7653
- #: languages/vue.php:1962
7654
  msgid "UA code can't be empty"
7655
  msgstr ""
7656
 
7657
- #: languages/vue.php:1965
7658
  msgid "Saving UA code..."
7659
  msgstr ""
7660
 
7661
- #: languages/vue.php:1968
7662
  msgid "Hide dashboard widget"
7663
  msgstr ""
7664
 
7665
- #: languages/vue.php:1971
7666
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
7667
  msgstr ""
7668
 
7669
- #: languages/vue.php:1974
7670
  msgid "Yes, hide it!"
7671
  msgstr ""
7672
 
7673
- #: languages/vue.php:1977
7674
  msgid "No, cancel!"
7675
  msgstr ""
7676
 
7677
- #: languages/vue.php:1980
7678
  msgid "MonsterInsights Widget Hidden"
7679
  msgstr ""
7680
 
7681
- #: languages/vue.php:1983
7682
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
7683
  msgstr ""
7684
 
7685
- #: languages/vue.php:1986
7686
  msgid "Recommended Settings"
7687
  msgstr ""
7688
 
7689
- #: languages/vue.php:1989
7690
  msgid "MonsterInsights recommends the following settings based on your configuration."
7691
  msgstr ""
7692
 
7693
- #: languages/vue.php:1992
7694
  msgid "Events Tracking"
7695
  msgstr ""
7696
 
7697
- #: languages/vue.php:1995
7698
  msgid "Must have for all click tracking on site."
7699
  msgstr ""
7700
 
7701
- #: languages/vue.php:1998
7702
  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."
7703
  msgstr ""
7704
 
7705
- #: languages/vue.php:2001
7706
  msgid "Enhanced Link Attribution"
7707
  msgstr ""
7708
 
7709
- #: languages/vue.php:2004
7710
  msgid "Improves the accuracy of your In-Page Analytics."
7711
  msgstr ""
7712
 
7713
- #: languages/vue.php:2007
7714
  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."
7715
  msgstr ""
7716
 
7717
- #: languages/vue.php:2010
7718
  msgid "Install Updates Automatically"
7719
  msgstr ""
7720
 
7721
- #: languages/vue.php:2013
7722
  msgid "Get the latest features, bug fixes, and security updates as they are released."
7723
  msgstr ""
7724
 
7725
- #: languages/vue.php:2016
7726
  msgid "To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
7727
  msgstr ""
7728
 
7729
- #: languages/vue.php:2019
7730
  msgid "File Download Tracking"
7731
  msgstr ""
7732
 
7733
- #: languages/vue.php:2022
7734
  msgid "Helps you see file downloads data."
7735
  msgstr ""
7736
 
7737
- #: languages/vue.php:2025
7738
  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."
7739
  msgstr ""
7740
 
7741
- #: languages/vue.php:2028
7742
  msgid "Helps you increase affiliate revenue."
7743
  msgstr ""
7744
 
7745
- #: languages/vue.php:2031
7746
  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."
7747
  msgstr ""
7748
 
7749
- #: languages/vue.php:2034
7750
  msgid "Affiliate Link Tracking"
7751
  msgstr ""
7752
 
7753
- #: languages/vue.php:2037
7754
  msgid "Who Can See Reports"
7755
  msgstr ""
7756
 
7757
- #: languages/vue.php:2040
7758
  msgid "These user roles will be able to access MonsterInsights's reports in the WordPress admin area."
7759
  msgstr ""
7760
 
7761
- #: languages/vue.php:2043
7762
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
7763
  msgstr ""
7764
 
7765
- #: languages/vue.php:2046
7766
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
7767
  msgstr ""
7768
 
7769
- #: languages/vue.php:2049
7770
  msgid "Activating..."
7771
  msgstr ""
7772
 
7773
- #: languages/vue.php:2052
7774
  msgid "Deactivating..."
7775
  msgstr ""
7776
 
7777
- #: languages/vue.php:2055
7778
  msgid "Deactivate"
7779
  msgstr ""
7780
 
7781
  #. Translators: The status of the addon (installed/active/inactive).
7782
- #: languages/vue.php:2059
7783
  msgid "Status: %s"
7784
  msgstr ""
7785
 
7786
- #: languages/vue.php:2062
7787
  msgid "Not Installed"
7788
  msgstr ""
7789
 
7790
- #: languages/vue.php:2065
7791
  msgid "Network Active"
7792
  msgstr ""
7793
 
7794
- #: languages/vue.php:2068
7795
  msgid "Active"
7796
  msgstr ""
7797
 
7798
- #: languages/vue.php:2071
7799
  msgid "Inactive"
7800
  msgstr ""
7801
 
7802
- #: languages/vue.php:2074
7803
  msgid "Thank you for being a loyal MonsterInsights Lite user."
7804
  msgstr ""
7805
 
7806
- #: languages/vue.php:2077
7807
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
7808
  msgstr ""
7809
 
7810
  #. Translators: Gets replaced with the coupon code.
7811
- #: languages/vue.php:2081
7812
  msgid "Use coupon code %s to get 50%% off."
7813
  msgstr ""
7814
 
7815
- #: languages/vue.php:2084
7816
  msgid "Dashboard widget"
7817
  msgstr ""
7818
 
7819
- #: languages/vue.php:2087
7820
  msgid "Enhanced Ecommerce"
7821
  msgstr ""
7822
 
7823
- #: languages/vue.php:2090
7824
  msgid "Banner Ads"
7825
  msgstr ""
7826
 
7827
- #: languages/vue.php:2093
7828
  msgid "Google AMP"
7829
  msgstr ""
7830
 
7831
- #: languages/vue.php:2096
7832
  msgid "SEO Score Tracking"
7833
  msgstr ""
7834
 
7835
- #: languages/vue.php:2099
7836
  msgid "Welcome to MonsterInsights!"
7837
  msgstr ""
7838
 
7839
- #: languages/vue.php:2102
7840
  msgid "Let's get you set up."
7841
  msgstr ""
7842
 
7843
- #: languages/vue.php:2105
7844
  msgid "Which category best describes your website?"
7845
  msgstr ""
7846
 
7847
- #: languages/vue.php:2108
7848
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
7849
  msgstr ""
7850
 
7851
- #: languages/vue.php:2111
7852
  msgid "Business Website"
7853
  msgstr ""
7854
 
7855
  #. Translators: Make text bold.
7856
- #: languages/vue.php:2115
7857
  msgid "Publisher %1$s(Blog)%2$s"
7858
  msgstr ""
7859
 
7860
- #: languages/vue.php:2118
7861
  msgid "Ecommerce"
7862
  msgstr ""
7863
 
7864
- #: languages/vue.php:2121
7865
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
7866
  msgstr ""
7867
 
7868
- #: languages/vue.php:2124
7869
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
7870
  msgstr ""
7871
 
7872
- #: languages/vue.php:2127
7873
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
7874
  msgstr ""
7875
 
7876
- #: languages/vue.php:2130
7877
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
7878
  msgstr ""
7879
 
7880
- #: languages/vue.php:2133
7881
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
7882
  msgstr ""
7883
 
7884
- #: languages/vue.php:2136
7885
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
7886
  msgstr ""
7887
 
7888
- #: languages/vue.php:2139
7889
  msgid "Unlock search console report to see your top performing keywords in Google."
7890
  msgstr ""
7891
 
7892
- #: languages/vue.php:2142
7893
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
7894
  msgstr ""
7895
 
7896
- #: languages/vue.php:2145
7897
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
7898
  msgstr ""
7899
 
7900
- #: languages/vue.php:2148
7901
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
7902
  msgstr ""
7903
 
7904
- #: languages/vue.php:2151
7905
  msgid "Upgrade to Pro »"
7906
  msgstr ""
7907
 
7908
- #: languages/vue.php:2154
7909
  msgid "Pro Tip:"
7910
  msgstr ""
7911
 
7912
- #: languages/vue.php:2157
7913
  msgid "Reset to default"
7914
  msgstr ""
7915
 
7916
- #: languages/vue.php:2160
7917
  msgid "The value entered does not match the required format"
7918
  msgstr ""
7919
 
7920
- #: languages/vue.php:2163
7921
  msgid "Upgrade"
7922
  msgstr ""
7923
 
7924
- #: languages/vue.php:2166
7925
  msgid ""
7926
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
7927
  " and other privacy regulations."
7928
  msgstr ""
7929
 
7930
- #: languages/vue.php:2170
7931
  msgid "EU Compliance"
7932
  msgstr ""
7933
 
7934
- #: languages/vue.php:2173
7935
  msgid "Scroll Tracking"
7936
  msgstr ""
7937
 
7938
- #: languages/vue.php:2176
7939
  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."
7940
  msgstr ""
7941
 
7942
  #. Translators: Error status and error text.
7943
- #: languages/vue.php:2180
7944
  msgid "Can't load errors. Error: %1$s, %2$s"
7945
  msgstr ""
7946
 
7947
- #: languages/vue.php:2183
7948
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
7949
  msgstr ""
7950
 
7951
- #: languages/vue.php:2186
7952
  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!"
7953
  msgstr ""
7954
 
7955
- #: languages/vue.php:2189
7956
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
7957
  msgstr ""
7958
 
7959
  #. Translators: Makes text bold.
7960
- #: languages/vue.php:2193
7961
  msgid "Use coupon code %1$sLITEUPGRADE%2$s"
7962
  msgstr ""
7963
 
7964
- #: languages/vue.php:2196
7965
  msgid "Ads Tracking"
7966
  msgstr ""
7967
 
7968
- #: languages/vue.php:2199
7969
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
7970
  msgstr ""
7971
 
7972
- #: languages/vue.php:2202
7973
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
7974
  msgstr ""
7975
 
7976
- #: languages/vue.php:2205
7977
  msgid "Facebook Instant Articles"
7978
  msgstr ""
7979
 
7980
- #: languages/vue.php:2208
7981
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
7982
  msgstr ""
7983
 
7984
  #. Translators: Error status and error text.
7985
- #: languages/vue.php:2212
7986
  msgid "Can't load settings. Error: %1$s, %2$s"
7987
  msgstr ""
7988
 
7989
- #: languages/vue.php:2216
7990
  msgid "Network error encountered. Settings not saved."
7991
  msgstr ""
7992
 
7993
  #. Translators: Make text green.
7994
- #: languages/vue.php:2220
7995
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
7996
  msgstr ""
7997
 
7998
- #: languages/vue.php:2223
7999
  msgid "Usage Tracking"
8000
  msgstr ""
8001
 
8002
- #: languages/vue.php:2226
8003
  msgid "Allow Usage Tracking"
8004
  msgstr ""
8005
 
8006
- #: languages/vue.php:2229
8007
  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."
8008
  msgstr ""
8009
 
8010
  #. Translators: Add links to documentation.
8011
- #: languages/vue.php:2233
8012
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8013
  msgstr ""
8014
 
8015
- #: languages/vue.php:2236
8016
  msgid "Allow usage tracking"
8017
  msgstr ""
8018
 
8019
  #. Translators: Make text bold.
8020
- #: languages/vue.php:2240
8021
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy!"
8022
  msgstr ""
8023
 
8024
  #. Translators: Add link to upgrade.
8025
- #: languages/vue.php:2244
8026
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8027
  msgstr ""
8028
 
8029
  #. Translators: Make text green.
8030
- #: languages/vue.php:2248
8031
  msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8032
  msgstr ""
8033
 
8034
  #. Translators: Make text green and add smiley face.
8035
- #: languages/vue.php:2252
8036
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8037
  msgstr ""
8038
 
8039
- #: languages/vue.php:2255
8040
  msgid "Unlock PRO Features Now"
8041
  msgstr ""
8042
 
8043
- #: languages/vue.php:2258
8044
  msgid "Paste your license key here"
8045
  msgstr ""
8046
 
8047
- #: languages/vue.php:2261
8048
  msgid "Verify"
8049
  msgstr ""
8050
 
8051
  #. Translators: Add link to retrieve license from account area.
8052
- #: languages/vue.php:2265
8053
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8054
  msgstr ""
8055
 
8056
- #: languages/vue.php:2268
8057
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8058
  msgstr ""
8059
 
8060
  #. Translators: Number of days.
8061
- #: languages/vue.php:2272
8062
  msgid "vs. Previous Day"
8063
  msgstr ""
8064
 
8065
- #: languages/vue.php:2275
8066
  msgid "No change"
8067
  msgstr ""
8068
 
8069
- #: languages/vue.php:2278
8070
  msgid "Authenticating"
8071
  msgstr ""
8072
 
8073
- #: languages/vue.php:2281
8074
  msgid "Verifying Credentials"
8075
  msgstr ""
8076
 
8077
- #: languages/vue.php:2284
8078
  msgid "Your site is connected to MonsterInsights!"
8079
  msgstr ""
8080
 
8081
- #: languages/vue.php:2287
8082
  msgid "Deauthenticating"
8083
  msgstr ""
8084
 
8085
- #: languages/vue.php:2290
8086
  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."
8087
  msgstr ""
8088
 
8089
- #: languages/vue.php:2293
8090
  msgid "Connect MonsterInsights"
8091
  msgstr ""
8092
 
8093
- #: languages/vue.php:2296
8094
  msgid "Verify Credentials"
8095
  msgstr ""
8096
 
8097
- #: languages/vue.php:2299
8098
  msgid "Website Profile"
8099
  msgstr ""
8100
 
8101
- #: languages/vue.php:2302
8102
  msgid "Active Profile"
8103
  msgstr ""
8104
 
8105
- #: languages/vue.php:2305
8106
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
8107
  msgstr ""
8108
 
8109
- #: languages/vue.php:2308
8110
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
8111
  msgstr ""
8112
 
8113
- #: languages/vue.php:2311
8114
  msgid "Or manually enter UA code (limited functionality)"
8115
  msgstr ""
8116
 
8117
- #: languages/vue.php:2314
8118
  msgid "Force Deauthenticate"
8119
  msgstr ""
8120
 
8121
- #: languages/vue.php:2317
8122
  msgid "Disconnect MonsterInsights"
8123
  msgstr ""
8124
 
8125
- #: languages/vue.php:2320
8126
  msgid "Proceed"
8127
  msgstr ""
8128
 
8129
- #: languages/vue.php:2323
8130
  msgid "Connection Information"
8131
  msgstr ""
8132
 
8133
- #: languages/vue.php:2326
8134
  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."
8135
  msgstr ""
8136
 
8137
- #: languages/vue.php:2329
8138
  msgid "Hostname"
8139
  msgstr ""
8140
 
8141
- #: languages/vue.php:2332
8142
  msgid "FTP Username"
8143
  msgstr ""
8144
 
8145
- #: languages/vue.php:2335
8146
  msgid "FTP Password"
8147
  msgstr ""
8148
 
8149
- #: languages/vue.php:2338
8150
  msgid "This password will not be stored on the server."
8151
  msgstr ""
8152
 
8153
- #: languages/vue.php:2341
8154
  msgid "Connection Type"
8155
  msgstr ""
8156
 
8157
- #: languages/vue.php:2344
8158
  msgid "Cancel"
8159
  msgstr ""
8160
 
8161
- #: languages/vue.php:2347
8162
  msgid "Show"
8163
  msgstr ""
8164
 
8165
- #: languages/vue.php:2350
8166
  msgid "No options available"
8167
  msgstr ""
8168
 
8169
- #: languages/vue.php:2353
8170
  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."
8171
  msgstr ""
8172
 
8173
  #. Translators: The name of the field that is throwing a validation error.
8174
- #: languages/vue.php:2357
8175
  msgid "%s can't be empty."
8176
  msgstr ""
8177
 
8178
- #: languages/vue.php:2360
8179
  msgid "Duplicate values are not allowed."
8180
  msgstr ""
8181
 
8182
- #: languages/vue.php:2363
8183
  msgid "Add Another Link Path"
8184
  msgstr ""
8185
 
8186
- #: languages/vue.php:2366
8187
  msgid "Remove row"
8188
  msgstr ""
8189
 
8190
- #: languages/vue.php:2372
8191
  msgid "Help Us Improve"
8192
  msgstr ""
8193
 
8194
- #: languages/vue.php:2375
8195
  msgid "Help us better understand our users and their website needs."
8196
  msgstr ""
8197
 
8198
  #. Translators: Adds a link to the documentation.
8199
- #: languages/vue.php:2379
8200
  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"
8201
  msgstr ""
8202
 
8203
  #. Translators: Makes text bold.
8204
- #: languages/vue.php:2383
8205
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!"
8206
  msgstr ""
8207
 
8208
  #. Translators: Makes text green.
8209
- #: languages/vue.php:2387
8210
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
8211
  msgstr ""
8212
 
8213
- #: languages/vue.php:2390
8214
  msgid "Unlock All Features and Upgrade to Pro"
8215
  msgstr ""
8216
 
8217
- #: languages/vue.php:2393
8218
  msgid "Website profile"
8219
  msgstr ""
8220
 
8221
- #: languages/vue.php:2396
8222
  msgid "Active profile"
8223
  msgstr ""
8224
 
8225
- #: languages/vue.php:2399
8226
  msgid "Skip and Keep Connection"
8227
  msgstr ""
8228
 
8229
  #. Translators: Placeholders are used for making text bold and adding a link.
8230
- #: languages/vue.php:2403
8231
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
8232
  msgstr ""
8233
 
8234
- #: languages/vue.php:2406
8235
- msgid "Today"
8236
- msgstr ""
8237
-
8238
- #: languages/vue.php:2409
8239
- msgid "Yesterday"
8240
- msgstr ""
8241
-
8242
- #: languages/vue.php:2412
8243
- msgid "Last Week"
8244
- msgstr ""
8245
-
8246
- #: languages/vue.php:2415
8247
- msgid "Last Month"
8248
  msgstr ""
8249
 
8250
- #: languages/vue.php:2418
8251
- msgid "Last 7 days"
 
8252
  msgstr ""
8253
 
8254
- #: languages/vue.php:2421
8255
- msgid "Last 30 days"
 
8256
  msgstr ""
8257
 
8258
- #: languages/vue.php:2424
8259
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
8260
  msgstr ""
8261
 
8262
- #: languages/vue.php:2427
8263
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
8264
  msgstr ""
8265
 
8266
- #: languages/vue.php:2430
8267
  msgid "See Your Homepage's Overall Performance Score"
8268
  msgstr ""
8269
 
8270
- #: languages/vue.php:2433
8271
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
8272
  msgstr ""
8273
 
8274
- #: languages/vue.php:2436
8275
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
8276
  msgstr ""
8277
 
8278
- #: languages/vue.php:2439
8279
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
8280
  msgstr ""
8281
 
8282
- #. Translators: Current WordPress version.
8283
- #: languages/vue.php:2443
8284
- 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."
8285
  msgstr ""
8286
 
8287
- #. Translators: Current PHP version and recommended PHP version.
8288
- #: languages/vue.php:2447
8289
- 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."
8290
  msgstr ""
8291
 
8292
- #. Translators: Current WordPress version.
8293
- #: languages/vue.php:2451
8294
- 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."
 
 
 
 
 
 
 
 
 
 
 
8295
  msgstr ""
8296
 
8297
- #: languages/vue.php:2454
8298
  msgid "Site Speed Report"
8299
  msgstr ""
8300
 
8301
- #: languages/vue.php:2457
8302
  msgid "2020 Year in Review"
8303
  msgstr ""
8304
 
8305
- #: languages/vue.php:2460
8306
  msgid "PrettyLinks Integration"
8307
  msgstr ""
8308
 
8309
- #: languages/vue.php:2468
8310
  msgid "Popular Posts Widget"
8311
  msgstr ""
8312
 
8313
- #: languages/vue.php:2472
8314
  msgid "Popular Products"
8315
  msgstr ""
8316
 
8317
- #: languages/vue.php:2478
8318
  msgid "Inbox"
8319
  msgstr ""
8320
 
8321
- #: languages/vue.php:2481
8322
  msgid "Back to Inbox"
8323
  msgstr ""
8324
 
8325
- #: languages/vue.php:2484
8326
  msgid "View Dismissed"
8327
  msgstr ""
8328
 
8329
- #: languages/vue.php:2487
8330
  msgid "Notifications"
8331
  msgstr ""
8332
 
8333
- #: languages/vue.php:2490
8334
  msgid "Dismiss All"
8335
  msgstr ""
8336
 
8337
- #: languages/vue.php:2493
8338
  msgid "Dismissed"
8339
  msgstr ""
8340
 
8341
- #: languages/vue.php:2496
8342
  msgid "No Notifications"
8343
  msgstr ""
8344
 
8345
- #: languages/vue.php:2499
8346
- msgid "Export PDF Overview Report"
8347
  msgstr ""
8348
 
8349
- #: languages/vue.php:2502
8350
- msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
8351
  msgstr ""
8352
 
8353
- #: languages/vue.php:2505
8354
- msgid "Your 2020 Analytics Report"
8355
  msgstr ""
8356
 
8357
- #: languages/vue.php:2511
8358
- msgid "January 1, 2020 - December 31, 2020"
8359
  msgstr ""
8360
 
8361
- #: languages/vue.php:2514
8362
- msgid "A Tip for 2021"
8363
  msgstr ""
8364
 
8365
- #: languages/vue.php:2517
8366
- msgid "A Tip For 2021"
8367
  msgstr ""
8368
 
8369
- #: languages/vue.php:2520
8370
- msgid "Here's to an amazing 2021!"
8371
  msgstr ""
8372
 
8373
- #: languages/vue.php:2523
8374
- msgid "Try our other popular WordPress plugins to grow your website in 2021."
8375
  msgstr ""
8376
 
8377
- #: languages/vue.php:2526
8378
- msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
 
 
 
 
 
 
 
 
8379
  msgstr ""
8380
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8381
  #: languages/vue.php:2529
8382
- msgid "Copyright MonsterInsights, 2021"
8383
  msgstr ""
8384
 
8385
  #: languages/vue.php:2532
8386
- msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
8387
  msgstr ""
8388
 
8389
- #. Translators: Number of minutes spent on site.
8390
- #: languages/vue.php:2536
8391
- msgid "Each visitor spent an average of %s minutes on your website in 2020."
8392
  msgstr ""
8393
 
8394
- #: languages/vue.php:2539
8395
- msgid "Caching"
8396
  msgstr ""
8397
 
8398
- #: languages/vue.php:2542
8399
- msgid "Enable Data Caching"
8400
  msgstr ""
8401
 
8402
- #: languages/vue.php:2545
8403
- msgid "Refresh Cache Every"
8404
  msgstr ""
8405
 
8406
- #: languages/vue.php:2548
8407
- msgid "Choose how often to refresh the cache."
8408
  msgstr ""
8409
 
8410
  #: languages/vue.php:2551
8411
- msgid "Enable Ajaxify"
8412
  msgstr ""
8413
 
8414
  #: languages/vue.php:2554
8415
- msgid "Ajaxify Widget"
8416
  msgstr ""
8417
 
8418
  #: languages/vue.php:2557
8419
- msgid "Use to bypass page caching."
8420
  msgstr ""
8421
 
8422
  #: languages/vue.php:2560
8423
- msgid "Empty Cache"
8424
  msgstr ""
8425
 
8426
  #: languages/vue.php:2563
8427
- msgid "Click to manually wipe the cache right now."
8428
  msgstr ""
8429
 
8430
  #: languages/vue.php:2566
8431
- msgid "Popular posts cache emptied"
8432
  msgstr ""
8433
 
8434
  #: languages/vue.php:2569
8435
- msgid "Error emptying the popular posts cache. Please try again."
8436
  msgstr ""
8437
 
8438
  #: languages/vue.php:2572
8439
- msgid "Choose Theme"
8440
  msgstr ""
8441
 
8442
  #: languages/vue.php:2575
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8443
  msgid "Widget Styling"
8444
  msgstr ""
8445
 
8446
- #: languages/vue.php:2578
8447
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
8448
  msgstr ""
8449
 
8450
- #: languages/vue.php:2581
8451
  msgid "Sort By"
8452
  msgstr ""
8453
 
8454
- #: languages/vue.php:2584
8455
  msgid "Choose how you'd like the widget to determine your popular posts."
8456
  msgstr ""
8457
 
8458
- #: languages/vue.php:2587
8459
  msgid "Placement"
8460
  msgstr ""
8461
 
8462
- #: languages/vue.php:2590
8463
  msgid "Choose how you'd like to place the widget."
8464
  msgstr ""
8465
 
8466
- #: languages/vue.php:2593
8467
  msgid "Insert After"
8468
  msgstr ""
8469
 
8470
- #: languages/vue.php:2596
8471
  msgid "Choose where in the post body the widget will be placed."
8472
  msgstr ""
8473
 
8474
- #: languages/vue.php:2599
8475
  msgid "Include in Post Types"
8476
  msgstr ""
8477
 
8478
- #: languages/vue.php:2602
8479
  msgid "Exclude from specific posts"
8480
  msgstr ""
8481
 
8482
  #. Translators: Placeholders make the text bold.
8483
- #: languages/vue.php:2606
8484
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
8485
  msgstr ""
8486
 
8487
  #. Translators: Placeholders make the text bold.
8488
- #: languages/vue.php:2610
8489
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
8490
  msgstr ""
8491
 
8492
- #: languages/vue.php:2613
8493
  msgid "Customize Design"
8494
  msgstr ""
8495
 
8496
- #: languages/vue.php:2616
8497
  msgid "Loading Themes"
8498
  msgstr ""
8499
 
8500
- #: languages/vue.php:2619
8501
  msgid "words"
8502
  msgstr ""
8503
 
8504
- #: languages/vue.php:2622
8505
  msgid "Please select at least one post to display."
8506
  msgstr ""
8507
 
8508
  #. Translators: placeholders make text small.
8509
- #: languages/vue.php:2626
8510
  msgid "Default Styles %1$s- As seen above.%2$s"
8511
  msgstr ""
8512
 
8513
  #. Translators: placeholders make text small.
8514
- #: languages/vue.php:2630
8515
  msgid "No Styles %1$s- Use your own CSS.%2$s"
8516
  msgstr ""
8517
 
8518
  #. Translators: placeholders make text small.
8519
- #: languages/vue.php:2634
8520
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
8521
  msgstr ""
8522
 
8523
  #. Translators: placeholders make text small.
8524
- #: languages/vue.php:2638
8525
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
8526
  msgstr ""
8527
 
8528
  #. Translators: placeholders make text small.
8529
- #: languages/vue.php:2642
8530
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
8531
  msgstr ""
8532
 
8533
  #. Translators: placeholders make text small.
8534
- #: languages/vue.php:2646
8535
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
8536
  msgstr ""
8537
 
8538
  #. Translators: placeholders make text small.
8539
- #: languages/vue.php:2650
8540
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
8541
  msgstr ""
8542
 
8543
- #: languages/vue.php:2653
8544
  msgid "Display Title"
8545
  msgstr ""
8546
 
8547
- #: languages/vue.php:2659
8548
  msgid "Title your widget and set it’s display preferences."
8549
  msgstr ""
8550
 
8551
- #: languages/vue.php:2662
8552
- msgid "Go Back To Reports"
8553
- msgstr ""
8554
-
8555
- #: languages/vue.php:2665
8556
- msgid "Enable Enhanced eCommerce"
8557
- msgstr ""
8558
-
8559
- #: languages/vue.php:2669
8560
  msgid "Site Speed"
8561
  msgstr ""
8562
 
8563
- #: languages/vue.php:2672
8564
- 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"
8565
  msgstr ""
8566
 
8567
- #: languages/vue.php:2675
8568
- msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
8569
  msgstr ""
8570
 
8571
- #: languages/vue.php:2678
8572
- msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8573
  msgstr ""
8574
 
8575
- #: languages/vue.php:2681
8576
- msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
8577
  msgstr ""
8578
 
8579
- #: languages/vue.php:2684
8580
- msgid "Over 200,000 websites use Pretty Links!"
8581
  msgstr ""
8582
 
8583
- #: languages/vue.php:2687
8584
- msgid "Install Pretty Links"
8585
  msgstr ""
8586
 
8587
- #: languages/vue.php:2690
8588
- msgid "Pretty Links Installed & Activated"
8589
  msgstr ""
8590
 
8591
- #: languages/vue.php:2694
8592
- msgid "Download Pretty Links"
8593
  msgstr ""
8594
 
8595
- #: languages/vue.php:2697
8596
- msgid "Install Pretty Links from the WordPress.org plugin repository."
8597
  msgstr ""
8598
 
8599
- #: languages/vue.php:2700
8600
- msgid "Activate Pretty Links"
8601
  msgstr ""
8602
 
8603
- #: languages/vue.php:2703
8604
- msgid "Activating Pretty Links..."
8605
  msgstr ""
8606
 
8607
- #: languages/vue.php:2706
8608
- msgid "Create New Pretty Link"
8609
  msgstr ""
8610
 
8611
- #: languages/vue.php:2709
8612
- msgid "Create a New Pretty Link"
8613
  msgstr ""
8614
 
8615
- #: languages/vue.php:2712
8616
- msgid "Grab your campaign link and paste it into the Target URL field."
8617
  msgstr ""
8618
 
8619
- #. Translators: Adds a link to the documentation.
8620
- #: languages/vue.php:2716
8621
- 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."
8622
  msgstr ""
8623
 
8624
- #: languages/vue.php:2722
8625
- 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."
 
8626
  msgstr ""
8627
 
8628
- #: languages/vue.php:2725
8629
- msgid "Disable the Headline Analyzer"
8630
  msgstr ""
8631
 
8632
- #: languages/vue.php:2728
8633
- msgid "Email Summaries"
8634
  msgstr ""
8635
 
8636
- #: languages/vue.php:2731
8637
- msgid "Export PDF Reports"
8638
  msgstr ""
8639
 
8640
- #: languages/vue.php:2734
8641
  msgid "Export PDF Report"
8642
  msgstr ""
8643
 
8644
- #: languages/vue.php:2737
8645
  msgid "You can export PDF reports only in the PRO version."
8646
  msgstr ""
8647
 
8648
- #. Translators: Placeholder adds a line break.
8649
- #: languages/vue.php:2741
8650
- msgid "You can customize your %sdate range only in the PRO version."
8651
- msgstr ""
8652
-
8653
- #: languages/vue.php:2744
8654
- msgid "This feature requires MonsterInsights Pro"
8655
- msgstr ""
8656
-
8657
- #: languages/vue.php:2747
8658
- msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8659
- msgstr ""
8660
-
8661
- #: languages/vue.php:2750
8662
- msgid "Upgrade to Pro and Unlock Popular Products"
8663
  msgstr ""
8664
 
8665
- #: languages/vue.php:2753
8666
- msgid "View all Pro features"
8667
  msgstr ""
8668
 
8669
- #: languages/vue.php:2756
8670
- msgid "Select posts/search"
8671
  msgstr ""
8672
 
8673
- #: languages/vue.php:2759
8674
- msgid "Oops! No posts found."
8675
  msgstr ""
8676
 
8677
- #: languages/vue.php:2762
8678
- msgid "Search by post title"
8679
  msgstr ""
8680
 
8681
- #: languages/vue.php:2765
8682
- msgid "Can't load posts."
8683
  msgstr ""
8684
 
8685
- #: languages/vue.php:2768
8686
- msgid "SharedCount API Key"
 
8687
  msgstr ""
8688
 
8689
- #: languages/vue.php:2771
8690
- msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
8691
  msgstr ""
8692
 
 
8693
  #: languages/vue.php:2774
8694
- msgid "Start Indexing"
8695
  msgstr ""
8696
 
8697
- #: languages/vue.php:2777
8698
- msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
 
8699
  msgstr ""
8700
 
8701
- #: languages/vue.php:2780
8702
- msgid "Indexing completed, counts will update automatically every day."
8703
  msgstr ""
8704
 
8705
- #. Translators: Minimum and maximum number that can be used.
8706
  #: languages/vue.php:2784
8707
- msgid "Please enter a value between %1$s and %2$s"
8708
  msgstr ""
8709
 
8710
- #. Translators: The minimum set value.
8711
- #: languages/vue.php:2788
8712
- msgid "Please enter a value higher than %s"
8713
  msgstr ""
8714
 
8715
- #. Translators: The maximum set value.
8716
- #: languages/vue.php:2792
8717
- msgid "Please enter a value lower than %s"
8718
  msgstr ""
8719
 
8720
- #: languages/vue.php:2795
8721
- msgid "Please enter a number"
8722
  msgstr ""
8723
 
8724
- #: languages/vue.php:2798
8725
- msgid "Value has to be a round number"
8726
  msgstr ""
8727
 
8728
- #: languages/vue.php:2801
8729
- msgid "Add Top 5 Posts from Google Analytics"
8730
  msgstr ""
8731
 
8732
- #: languages/vue.php:2804
8733
- msgid "Pro version is required"
8734
  msgstr ""
8735
 
8736
- #: languages/vue.php:2807
8737
- msgid "Automated + Curated"
 
 
 
 
8738
  msgstr ""
8739
 
8740
- #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8741
  #: languages/vue.php:2811
8742
- 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)."
8743
  msgstr ""
8744
 
8745
  #: languages/vue.php:2814
8746
- msgid "Days"
8747
  msgstr ""
8748
 
8749
- #. Translators: placeholders make text small.
8750
- #: languages/vue.php:2818
8751
- msgid "7 days"
8752
  msgstr ""
8753
 
8754
- #: languages/vue.php:2821
8755
- msgid "30 days"
8756
  msgstr ""
8757
 
8758
- #: languages/vue.php:2824
8759
- msgid "Custom"
8760
  msgstr ""
8761
 
8762
- #: languages/vue.php:2827
8763
- msgid "Popular Posts data can be fetched correctly"
8764
  msgstr ""
8765
 
8766
- #: languages/vue.php:2830
8767
- 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."
8768
  msgstr ""
8769
 
8770
- #: languages/vue.php:2833
8771
- msgid "Close"
8772
  msgstr ""
8773
 
8774
- #: languages/vue.php:2836
8775
- 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. Please use the button below to confirm your configuration is correct."
8776
  msgstr ""
8777
 
8778
- #: languages/vue.php:2839
8779
- msgid "Test Automated Posts"
8780
  msgstr ""
8781
 
8782
- #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8783
- #: languages/vue.php:2843
8784
- msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8785
  msgstr ""
8786
 
8787
- #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8788
- #: languages/vue.php:2847
8789
- 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."
8790
  msgstr ""
8791
 
8792
- #. Translators: Placeholder gets replaced with current license version.
8793
  #: languages/vue.php:2851
8794
- msgid "Pro version is required. Your current license level is: %s"
8795
  msgstr ""
8796
 
8797
  #: languages/vue.php:2854
8798
- msgid "Verifying Popular Posts data"
8799
  msgstr ""
8800
 
8801
  #: languages/vue.php:2857
8802
- msgid "Used on over 3,000,000 websites!"
8803
  msgstr ""
8804
 
8805
  #: languages/vue.php:2860
8806
- msgid "+ Add Role"
8807
  msgstr ""
8808
 
8809
  #: languages/vue.php:2863
8810
- msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
8811
  msgstr ""
8812
 
8813
  #: languages/vue.php:2866
8814
- msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
8815
  msgstr ""
8816
 
8817
  #: languages/vue.php:2869
8818
- msgid "Color"
8819
  msgstr ""
8820
 
8821
  #: languages/vue.php:2872
8822
- msgid "Size"
8823
  msgstr ""
8824
 
8825
  #: languages/vue.php:2875
8826
- msgid "Title"
8827
  msgstr ""
8828
 
8829
- #: languages/vue.php:2878
8830
- msgid "Label"
 
8831
  msgstr ""
8832
 
8833
- #: languages/vue.php:2881
8834
- msgid "Background"
8835
  msgstr ""
8836
 
8837
- #: languages/vue.php:2884
8838
- msgid "Border"
8839
  msgstr ""
8840
 
8841
- #: languages/vue.php:2887
8842
- msgid "Icon"
8843
  msgstr ""
8844
 
8845
- #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
8846
- #: languages/vue.php:2894
8847
- msgid "%1$sPage %3$s%2$s of %4$s"
8848
  msgstr ""
8849
 
8850
- #: languages/vue.php:2897
8851
- msgid "Multiple Entries"
8852
  msgstr ""
8853
 
8854
- #: languages/vue.php:2900
8855
- msgid "Total Number of Widgets to Show"
8856
  msgstr ""
8857
 
8858
- #: languages/vue.php:2903
8859
- msgid "Choose how many widgets will be placed in a single Post."
 
8860
  msgstr ""
8861
 
8862
- #: languages/vue.php:2906
8863
- msgid "Minimum Distance Between Widgets"
 
8864
  msgstr ""
8865
 
 
8866
  #: languages/vue.php:2909
8867
- msgid "Choose the distance between widgets."
8868
  msgstr ""
8869
 
8870
  #: languages/vue.php:2912
8871
- msgid "Minimum Word Count to Display Multiple Widgets"
8872
  msgstr ""
8873
 
8874
  #: languages/vue.php:2915
8875
- msgid "Choose the minimum word count for a Post to have multiple entries."
8876
  msgstr ""
8877
 
8878
  #: languages/vue.php:2918
8879
- msgid "Only Show Posts from These Categories"
8880
  msgstr ""
8881
 
8882
- #: languages/vue.php:2921
8883
- msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
 
8884
  msgstr ""
8885
 
8886
- #: languages/vue.php:2924
8887
- msgid "Copy to Pretty Links"
8888
  msgstr ""
8889
 
8890
- #: languages/vue.php:2927
8891
- msgid "Make your campaign links prettier!"
8892
  msgstr ""
8893
 
8894
- #: languages/vue.php:2930
8895
- msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
 
8896
  msgstr ""
8897
 
8898
- #: languages/vue.php:2933
8899
- msgid "You can add maximum 5 items."
8900
  msgstr ""
8901
 
8902
- #: languages/vue.php:2936
8903
- msgid "At least 0 item required."
8904
  msgstr ""
8905
 
8906
- #: languages/vue.php:2939
8907
- msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8908
  msgstr ""
8909
 
8910
- #: languages/vue.php:2942
8911
- msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8912
  msgstr ""
8913
 
8914
- #: languages/vue.php:2945
8915
- msgid "Import settings from another MonsterInsights website."
8916
  msgstr ""
8917
 
8918
- #: languages/vue.php:2948
8919
- msgid "Export settings to import into another MonsterInsights install."
 
 
 
 
8920
  msgstr ""
8921
 
8922
- #: languages/vue.php:2951
8923
  msgid "Display Method"
8924
  msgstr ""
8925
 
8926
- #: languages/vue.php:2954
8927
  msgid "There are two ways to manual include the widget in your posts."
8928
  msgstr ""
8929
 
8930
- #: languages/vue.php:2958
8931
  msgid "Using the Gutenberg Block"
8932
  msgstr ""
8933
 
8934
- #: languages/vue.php:2961
8935
  msgid "Using the Shortcode"
8936
  msgstr ""
8937
 
8938
- #: languages/vue.php:2964
8939
  msgid "Learn how to insert the widget using Gutenberg blocks."
8940
  msgstr ""
8941
 
8942
- #: languages/vue.php:2967
8943
  msgid "Learn how to insert the widget using out Shortcode."
8944
  msgstr ""
8945
 
8946
- #: languages/vue.php:2970
8947
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
8948
  msgstr ""
8949
 
8950
- #: languages/vue.php:2974
8951
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
8952
  msgstr ""
8953
 
8954
- #: languages/vue.php:2977
8955
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
8956
  msgstr ""
8957
 
8958
- #: languages/vue.php:2981
8959
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
8960
  msgstr ""
8961
 
8962
- #: languages/vue.php:2984
8963
  msgid "Shortcode"
8964
  msgstr ""
8965
 
8966
- #: languages/vue.php:2988
8967
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
8968
  msgstr ""
8969
 
8970
- #: languages/vue.php:2992
8971
  msgid "Copy Shortcode"
8972
  msgstr ""
8973
 
8974
- #: languages/vue.php:2995
8975
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
8976
  msgstr ""
8977
 
8978
- #: languages/vue.php:2998
8979
- msgid "Wide"
8980
  msgstr ""
8981
 
8982
- #: languages/vue.php:3001
8983
- msgid "Narrow"
8984
  msgstr ""
8985
 
8986
- #: languages/vue.php:3004
8987
- msgid "Author/Date"
8988
  msgstr ""
8989
 
8990
- #: languages/vue.php:3016
8991
- msgid "Choose which content you would like displayed in the widget."
8992
  msgstr ""
8993
 
8994
- #: languages/vue.php:3028
8995
- msgid "Comments"
8996
  msgstr ""
8997
 
8998
  #: languages/vue.php:3034
8999
- msgid "Choose how many posts you’d like displayed in the widget."
9000
  msgstr ""
9001
 
9002
  #: languages/vue.php:3037
9003
- msgid "Unlock with %s"
9004
  msgstr ""
9005
 
9006
  #: languages/vue.php:3040
9007
- msgid "Automatic Placement"
9008
  msgstr ""
9009
 
9010
  #: languages/vue.php:3043
9011
- msgid "Display using Gutenberg Blocks"
9012
  msgstr ""
9013
 
9014
  #: languages/vue.php:3046
9015
- msgid "Embed Options"
9016
  msgstr ""
9017
 
9018
  #: languages/vue.php:3049
9019
- msgid "All Embed Options can be used in conjunction with one another."
9020
  msgstr ""
9021
 
9022
  #: languages/vue.php:3052
9023
- msgid "Using Automatic Embed"
9024
  msgstr ""
9025
 
9026
  #: languages/vue.php:3055
9027
- 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."
9028
  msgstr ""
9029
 
9030
  #: languages/vue.php:3058
9031
- 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."
9032
  msgstr ""
9033
 
9034
  #: languages/vue.php:3061
9035
- msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9036
  msgstr ""
9037
 
9038
  #: languages/vue.php:3064
9039
- msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9040
  msgstr ""
9041
 
9042
  #: languages/vue.php:3067
9043
- msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9044
  msgstr ""
9045
 
9046
  #: languages/vue.php:3070
9047
- 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."
9048
  msgstr ""
9049
 
9050
  #: languages/vue.php:3073
9051
- 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."
9052
  msgstr ""
9053
 
9054
  #: languages/vue.php:3076
9055
- msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9056
  msgstr ""
9057
 
9058
  #: languages/vue.php:3079
9059
- msgid "Display using a Shortcode"
9060
  msgstr ""
9061
 
9062
  #: languages/vue.php:3082
9063
- msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9064
  msgstr ""
9065
 
9066
  #: languages/vue.php:3085
9067
- msgid "Enable Automatic Placement"
9068
  msgstr ""
9069
 
9070
  #: languages/vue.php:3088
9071
- msgid "Display in a Sidebar"
9072
  msgstr ""
9073
 
9074
  #: languages/vue.php:3091
9075
- msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9076
  msgstr ""
9077
 
9078
  #: languages/vue.php:3094
9079
- msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9080
  msgstr ""
9081
 
9082
- #: languages/vue.php:3097
9083
- msgid "View notifications"
 
9084
  msgstr ""
9085
 
9086
- #: googleanalytics.php:275
9087
- #: googleanalytics.php:289
9088
  msgid "Cheatin&#8217; huh?"
9089
  msgstr ""
9090
 
9091
- #: googleanalytics.php:418
9092
  msgid "Sorry, but your version of WordPress does not meet MonsterInsights's required version of %1$s3.8%2$s to run properly. The plugin not been activated. %3$sClick here to return to the Dashboard%4$s."
9093
  msgstr ""
9094
 
9095
- #: googleanalytics.php:439
9096
  msgid "Please %1$suninstall%2$s the MonsterInsights Lite Plugin. Your Pro version of MonsterInsights may not work as expected until the Lite version is uninstalled."
9097
  msgstr ""
9098
 
1
+ # Copyright (C) 2021 MonsterInsights
2
  # This file is distributed under the same license as the Google Analytics for WordPress by MonsterInsights plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Google Analytics for WordPress by MonsterInsights 7.15.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-analytics-for-wordpress\n"
7
  "Last-Translator: MonsterInsights Team <support@monsterinsights.com>\n"
8
  "Language-Team: MonsterInsights Team <support@monsterinsights.com>\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: 2021-01-21T08:57:27+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.2.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
78
  msgstr ""
79
 
80
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
81
+ #: languages/vue.php:2836
82
  msgid "Theme Preview"
83
  msgstr ""
84
 
155
  msgstr ""
156
 
157
  #: lite/includes/admin/wp-site-health.php:253
158
+ #: languages/vue.php:612
159
  msgid "View Reports"
160
  msgstr ""
161
 
232
  #: lite/includes/admin/wp-site-health.php:372
233
  #: lite/includes/admin/wp-site-health.php:398
234
  #: lite/includes/admin/wp-site-health.php:425
235
+ #: languages/vue.php:651
236
  msgid "View Addons"
237
  msgstr ""
238
 
365
  msgstr ""
366
 
367
  #: lite/includes/admin/helpers.php:83
368
+ #: languages/vue.php:775
369
  msgid "Upgrade to MonsterInsights Pro"
370
  msgstr ""
371
 
384
  msgstr ""
385
 
386
  #: lite/includes/admin/reports/report-queries.php:22
387
+ #: languages/vue.php:565
388
  msgid "Search Console"
389
  msgstr ""
390
 
402
  msgstr ""
403
 
404
  #: lite/includes/admin/reports/report-publisher.php:22
405
+ #: languages/vue.php:562
406
  msgid "Publishers"
407
  msgstr ""
408
 
409
  #: lite/includes/admin/reports/report-dimensions.php:22
410
+ #: languages/vue.php:568
411
  msgid "Dimensions"
412
  msgstr ""
413
 
414
  #: lite/includes/admin/reports/report-forms.php:22
415
+ #: languages/vue.php:571
416
  msgid "Forms"
417
  msgstr ""
418
 
419
  #: lite/includes/admin/welcome.php:56
420
  #: lite/includes/admin/welcome.php:57
421
+ #: languages/vue.php:179
422
  msgid "Welcome to MonsterInsights"
423
  msgstr ""
424
 
425
+ #: includes/frontend/tracking/class-tracking-gtag.php:181
 
 
 
426
  #: includes/frontend/tracking/class-tracking-analytics.php:208
427
  msgid "Note: MonsterInsights is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the MonsterInsights settings panel."
428
  msgstr ""
429
 
430
+ #: includes/frontend/tracking/class-tracking-gtag.php:184
431
  #: includes/frontend/tracking/class-tracking-analytics.php:211
432
  msgid "Note: MonsterInsights does not track you as a logged-in site administrator to prevent site owners from accidentally skewing their own Google Analytics data."
433
  msgstr ""
434
 
435
+ #: includes/frontend/tracking/class-tracking-gtag.php:187
436
  #: includes/frontend/tracking/class-tracking-analytics.php:214
437
  msgid "Note: The site owner has disabled Google Analytics tracking for your user role."
438
  msgstr ""
439
 
440
+ #: includes/frontend/tracking/class-tracking-preview.php:77
441
+ msgid "You are currently in a preview window. MonsterInsights doesn't track preview window traffic to avoid false visit reports."
442
+ msgstr ""
443
+
444
  #: includes/frontend/tracking/class-tracking-analytics.php:301
445
  msgid "Not running function"
446
  msgstr ""
449
  msgid "because you are not being tracked."
450
  msgstr ""
451
 
452
+ #: includes/frontend/frontend.php:257
453
  msgid "Tracking is Disabled for Administrators"
454
  msgstr ""
455
 
456
  #. Translators: %s is the link to the article where more details about tracking are listed.
457
+ #: includes/frontend/frontend.php:267
458
  msgid "To keep stats accurate, we do not load Google Analytics scripts for admin users. %1$sLearn More &raquo;%2$s"
459
  msgstr ""
460
 
3195
  #: includes/admin/notifications/notification-bounce-rate.php:40
3196
  #: includes/admin/notifications/notification-headline-analyzer.php:30
3197
  #: includes/admin/notifications/notification-audience.php:43
3198
+ #: languages/vue.php:351
3199
  msgid "Learn More"
3200
  msgstr ""
3201
 
3222
  msgstr ""
3223
 
3224
  #: includes/admin/common.php:940
3225
+ #: languages/vue.php:2698
3226
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
3227
  msgstr ""
3228
 
3237
  #: includes/admin/admin.php:34
3238
  #: includes/admin/admin.php:42
3239
  #: includes/admin/admin.php:188
3240
+ #: languages/vue.php:2462
3241
  msgid "Settings"
3242
  msgstr ""
3243
 
3253
 
3254
  #: includes/admin/admin.php:39
3255
  #: includes/admin/admin.php:98
3256
+ #: languages/vue.php:1115
3257
  msgid "Reports"
3258
  msgstr ""
3259
 
3291
 
3292
  #: includes/admin/admin.php:63
3293
  #: includes/admin/admin.php:106
3294
+ #: languages/vue.php:426
3295
  msgid "About Us"
3296
  msgstr ""
3297
 
3324
 
3325
  #: includes/admin/admin.php:178
3326
  #: includes/admin/admin.php:181
3327
+ #: languages/vue.php:1559
3328
  msgid "Support"
3329
  msgstr ""
3330
 
3334
  msgstr ""
3335
 
3336
  #: includes/admin/admin.php:284
3337
+ #: languages/vue.php:369
3338
  msgid "Please Setup Website Analytics to See Audience Insights"
3339
  msgstr ""
3340
 
3341
  #: includes/admin/admin.php:285
3342
+ #: languages/vue.php:375
3343
  msgid "Connect MonsterInsights and Setup Website Analytics"
3344
  msgstr ""
3345
 
3346
  #: includes/admin/admin.php:289
3347
+ #: languages/vue.php:372
3348
  msgid "MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 2 million website owners use MonsterInsights to see the stats that matter and grow their business."
3349
  msgstr ""
3350
 
3355
 
3356
  #. Translators: Adds a link to the license renewal.
3357
  #: includes/admin/admin.php:310
3358
+ #: languages/vue.php:594
3359
  msgid "Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s"
3360
  msgstr ""
3361
 
3362
  #: includes/admin/admin.php:312
3363
+ #: languages/vue.php:597
3364
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
3365
  msgstr ""
3366
 
3367
  #: includes/admin/admin.php:314
3368
+ #: languages/vue.php:600
3369
  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."
3370
  msgstr ""
3371
 
3509
  #. Translators: visitors notification title
3510
  #. Translators: Number of visitors.
3511
  #: includes/admin/notifications/notification-visitors.php:37
3512
+ #: languages/vue.php:318
3513
  msgid "See how %s visitors found your site!"
3514
  msgstr ""
3515
 
3600
  msgstr ""
3601
 
3602
  #: includes/admin/notifications/notification-upgrade-to-pro.php:34
3603
+ #: languages/vue.php:2359
3604
  msgid "Upgrade to Pro"
3605
  msgstr ""
3606
 
3607
  #: includes/admin/reports/overview.php:34
3608
+ #: languages/vue.php:532
3609
  msgid "Overview"
3610
  msgstr ""
3611
 
4892
  msgstr ""
4893
 
4894
  #: languages/gutenberg.php:77
4895
+ #: languages/vue.php:2453
4896
  msgid "Inline Popular Posts"
4897
  msgstr ""
4898
 
4929
  msgstr ""
4930
 
4931
  #: languages/gutenberg.php:107
4932
+ #: languages/vue.php:2941
4933
  msgid "Wide-Layout Options"
4934
  msgstr ""
4935
 
4938
  msgstr ""
4939
 
4940
  #: languages/gutenberg.php:113
4941
+ #: languages/vue.php:2944
4942
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4943
  msgstr ""
4944
 
4945
  #: languages/gutenberg.php:116
4946
+ #: languages/vue.php:2965
4947
  msgid "Post Count"
4948
  msgstr ""
4949
 
4952
  msgstr ""
4953
 
4954
  #: languages/gutenberg.php:122
4955
+ #: languages/vue.php:2947
4956
  msgid "Display Options"
4957
  msgstr ""
4958
 
4965
  msgstr ""
4966
 
4967
  #: languages/gutenberg.php:131
4968
+ #: languages/vue.php:2671
4969
  msgid "Widget Title"
4970
  msgstr ""
4971
 
4974
  msgstr ""
4975
 
4976
  #: languages/gutenberg.php:137
4977
+ #: languages/vue.php:2953
4978
  msgid "Display Author"
4979
  msgstr ""
4980
 
4981
  #: languages/gutenberg.php:140
4982
+ #: languages/vue.php:2956
4983
  msgid "Display Date"
4984
  msgstr ""
4985
 
4986
  #: languages/gutenberg.php:143
4987
+ #: languages/vue.php:2959
4988
  msgid "Display Comments"
4989
  msgstr ""
4990
 
5205
  msgstr ""
5206
 
5207
  #: languages/gutenberg.php:312
5208
+ #: languages/vue.php:2578
5209
  msgid "Headline Analyzer"
5210
  msgstr ""
5211
 
5438
  msgid "Get Fresh Reports Data Every 60 Seconds"
5439
  msgstr ""
5440
 
5441
+ #: languages/vue.php:175
5442
  msgid "Overview Report"
5443
  msgstr ""
5444
 
5445
+ #: languages/vue.php:182
5446
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
5447
  msgstr ""
5448
 
5449
+ #: languages/vue.php:185
5450
  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."
5451
  msgstr ""
5452
 
5453
+ #: languages/vue.php:188
5454
  msgid "Launch the Wizard!"
5455
  msgstr ""
5456
 
5457
+ #: languages/vue.php:191
5458
  msgid "Read the Full Guide"
5459
  msgstr ""
5460
 
5461
+ #: languages/vue.php:194
5462
  msgid "MonsterInsights Features & Addons"
5463
  msgstr ""
5464
 
5465
+ #: languages/vue.php:197
5466
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
5467
  msgstr ""
5468
 
5469
+ #: languages/vue.php:200
5470
  msgid "See All Features"
5471
  msgstr ""
5472
 
5550
  msgid "Form Conversions"
5551
  msgstr ""
5552
 
5553
+ #: languages/vue.php:268
5554
  msgid "Custom Dimensions"
5555
  msgstr ""
5556
 
5557
+ #: languages/vue.php:271
5558
  msgid "Author Tracking"
5559
  msgstr ""
5560
 
5561
+ #: languages/vue.php:275
5562
  msgid "Google Optimize"
5563
  msgstr ""
5564
 
5565
+ #: languages/vue.php:278
5566
  msgid "Category / Tags Tracking"
5567
  msgstr ""
5568
 
5569
+ #: languages/vue.php:281
5570
  msgid "WooCommerce"
5571
  msgstr ""
5572
 
5573
+ #: languages/vue.php:284
5574
  msgid "Easy Digital Downloads"
5575
  msgstr ""
5576
 
5577
+ #: languages/vue.php:287
5578
  msgid "MemberPress"
5579
  msgstr ""
5580
 
5581
+ #: languages/vue.php:290
5582
  msgid "LifterLMS"
5583
  msgstr ""
5584
 
5585
  #. Translators: Current WordPress version.
5586
+ #: languages/vue.php:294
5587
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5588
  msgstr ""
5589
 
5590
+ #: languages/vue.php:297
5591
  msgid "Yikes! PHP Update Required"
5592
  msgstr ""
5593
 
5594
  #. Translators: Current PHP version and recommended PHP version.
5595
+ #: languages/vue.php:301
5596
  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."
5597
  msgstr ""
5598
 
5599
+ #: languages/vue.php:304
5600
  msgid "Learn more about updating PHP"
5601
  msgstr ""
5602
 
5603
+ #: languages/vue.php:307
5604
  msgid "Yikes! WordPress Update Required"
5605
  msgstr ""
5606
 
5607
  #. Translators: Current WordPress version.
5608
+ #: languages/vue.php:311
5609
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5610
  msgstr ""
5611
 
5612
+ #: languages/vue.php:314
5613
  msgid "Learn more about updating WordPress"
5614
  msgstr ""
5615
 
5616
  #. Translators: Number of visitors.
5617
+ #: languages/vue.php:322
5618
  msgid "Your website was visited by %s users in the last 30 days."
5619
  msgstr ""
5620
 
5621
+ #: languages/vue.php:325
5622
  msgid "See the full analytics report!"
5623
  msgstr ""
5624
 
5625
+ #: languages/vue.php:328
5626
  msgid "Congratulations! "
5627
  msgstr ""
5628
 
5629
+ #: languages/vue.php:331
5630
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
5631
  msgstr ""
5632
 
5633
  #. Translators: Error status and error text.
5634
+ #: languages/vue.php:335
5635
  msgid "Can't load report data. Error: %1$s, %2$s"
5636
  msgstr ""
5637
 
5638
+ #: languages/vue.php:338
5639
  msgid "Error loading report data"
5640
  msgstr ""
5641
 
5642
  #. Translators: Placeholder is replaced with WPForms.
5643
+ #: languages/vue.php:342
5644
  msgid "Recommended Plugin: %s"
5645
  msgstr ""
5646
 
5647
+ #: languages/vue.php:345
5648
  msgid "Install"
5649
  msgstr ""
5650
 
5651
+ #: languages/vue.php:348
5652
  msgid "Activate"
5653
  msgstr ""
5654
 
5655
+ #: languages/vue.php:354
5656
  msgid "See Quick Links"
5657
  msgstr ""
5658
 
5659
+ #: languages/vue.php:357
5660
  msgid "Suggest a Feature"
5661
  msgstr ""
5662
 
5663
+ #: languages/vue.php:360
5664
  msgid "Join Our Community"
5665
  msgstr ""
5666
 
5667
+ #: languages/vue.php:363
5668
  msgid "Support & Docs"
5669
  msgstr ""
5670
 
5671
+ #: languages/vue.php:366
5672
  msgid "Upgrade to Pro &#187;"
5673
  msgstr ""
5674
 
5675
+ #: languages/vue.php:378
5676
  msgid "MonsterInsights encountered an error loading your report data"
5677
  msgstr ""
5678
 
5679
+ #: languages/vue.php:381
5680
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5681
  msgstr ""
5682
 
5683
+ #: languages/vue.php:384
5684
  msgid "Reconnect MonsterInsights"
5685
  msgstr ""
5686
 
5687
+ #: languages/vue.php:387
5688
  msgid "Re-Authenticating"
5689
  msgstr ""
5690
 
5691
+ #: languages/vue.php:390
5692
  msgid "Ok"
5693
  msgstr ""
5694
 
5695
  #. Translators: Number of days in interval.
5696
+ #: languages/vue.php:394
5697
  msgid "Last %s days"
5698
  msgstr ""
5699
 
5700
+ #: languages/vue.php:397
5701
  msgid "Powered by MonsterInsights"
5702
  msgstr ""
5703
 
5704
+ #: languages/vue.php:400
5705
  msgid "Publishers Report"
5706
  msgstr ""
5707
 
5708
+ #: languages/vue.php:404
5709
  msgid "eCommerce Report"
5710
  msgstr ""
5711
 
5712
+ #: languages/vue.php:407
5713
  msgid "Search Console Report"
5714
  msgstr ""
5715
 
5716
+ #: languages/vue.php:410
5717
  msgid "Dimensions Report"
5718
  msgstr ""
5719
 
5720
+ #: languages/vue.php:413
5721
  msgid "Forms Report"
5722
  msgstr ""
5723
 
5724
+ #: languages/vue.php:417
5725
  msgid "Real-Time Report"
5726
  msgstr ""
5727
 
5728
+ #: languages/vue.php:422
5729
  msgid "2019 Year in Review"
5730
  msgstr ""
5731
 
5753
  msgid "Advanced"
5754
  msgstr ""
5755
 
5756
+ #: languages/vue.php:462
5757
  msgid "URL Builder"
5758
  msgstr ""
5759
 
5760
+ #: languages/vue.php:466
5761
  msgid "Import Export"
5762
  msgstr ""
5763
 
5764
+ #: languages/vue.php:469
5765
  msgid "Exit Setup"
5766
  msgstr ""
5767
 
5768
+ #: languages/vue.php:472
5769
  msgid "Time to Purchase"
5770
  msgstr ""
5771
 
5772
+ #: languages/vue.php:475
5773
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5774
  msgstr ""
5775
 
5776
+ #: languages/vue.php:478
5777
  msgid "Sessions to Purchase"
5778
  msgstr ""
5779
 
5780
+ #: languages/vue.php:481
5781
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5782
  msgstr ""
5783
 
5784
+ #: languages/vue.php:484
5785
  msgid "Top Posts/Pages"
5786
  msgstr ""
5787
 
5789
  msgid "This list shows the most viewed posts and pages on your website."
5790
  msgstr ""
5791
 
5792
+ #: languages/vue.php:490
5793
  msgid "New vs. Returning Visitors"
5794
  msgstr ""
5795
 
5796
+ #: languages/vue.php:493
5797
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5798
  msgstr ""
5799
 
5800
+ #: languages/vue.php:496
5801
  msgid "Device Breakdown"
5802
  msgstr ""
5803
 
5804
+ #: languages/vue.php:499
5805
  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."
5806
  msgstr ""
5807
 
5808
+ #: languages/vue.php:502
5809
  msgid "Top Landing Pages"
5810
  msgstr ""
5811
 
5812
+ #: languages/vue.php:505
5813
  msgid "This list shows the top pages users first land on when visiting your website."
5814
  msgstr ""
5815
 
5816
+ #: languages/vue.php:508
5817
  msgid "Top Exit Pages"
5818
  msgstr ""
5819
 
5820
+ #: languages/vue.php:511
5821
  msgid "This list shows the top pages users exit your website from."
5822
  msgstr ""
5823
 
5824
+ #: languages/vue.php:514
5825
  msgid "Top Outbound Links"
5826
  msgstr ""
5827
 
5828
+ #: languages/vue.php:517
5829
  msgid "This list shows the top links clicked on your website that go to another website."
5830
  msgstr ""
5831
 
5832
+ #: languages/vue.php:520
5833
  msgid "Top Affiliate Links"
5834
  msgstr ""
5835
 
5836
+ #: languages/vue.php:523
5837
  msgid "This list shows the top affiliate links your visitors clicked on."
5838
  msgstr ""
5839
 
5840
+ #: languages/vue.php:526
5841
  msgid "Top Download Links"
5842
  msgstr ""
5843
 
5844
+ #: languages/vue.php:529
5845
  msgid "This list shows the download links your visitors clicked the most."
5846
  msgstr ""
5847
 
5848
+ #: languages/vue.php:535
5849
  msgid "Top Products"
5850
  msgstr ""
5851
 
5852
+ #: languages/vue.php:538
5853
  msgid "This list shows the top selling products on your website."
5854
  msgstr ""
5855
 
5856
+ #: languages/vue.php:541
5857
  msgid "Top Conversion Sources"
5858
  msgstr ""
5859
 
5860
+ #: languages/vue.php:544
5861
  msgid "This list shows the top referral websites in terms of product revenue."
5862
  msgstr ""
5863
 
5864
+ #: languages/vue.php:547
5865
  msgid "Total Add/Remove"
5866
  msgstr ""
5867
 
5868
+ #: languages/vue.php:550
5869
  msgid "You must connect with MonsterInsights before you can view reports."
5870
  msgstr ""
5871
 
5872
+ #: languages/vue.php:553
5873
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5874
  msgstr ""
5875
 
5876
+ #: languages/vue.php:556
5877
  msgid "Launch Setup Wizard"
5878
  msgstr ""
5879
 
5880
+ #: languages/vue.php:559
5881
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
5882
  msgstr ""
5883
 
5884
+ #: languages/vue.php:574
5885
  msgid "Real-Time"
5886
  msgstr ""
5887
 
5888
  #. Translators: Adds a link to documentation.
5889
+ #: languages/vue.php:578
5890
  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"
5891
  msgstr ""
5892
 
5893
  #. Translators: Adds link to activate/install plugin and documentation.
5894
+ #: languages/vue.php:582
5895
  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"
5896
  msgstr ""
5897
 
5898
  #. Translators: Adds a link to documentation.
5899
+ #: languages/vue.php:586
5900
  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"
5901
  msgstr ""
5902
 
5903
  #. Translators: Adds link to activate/install plugin and documentation.
5904
+ #: languages/vue.php:590
5905
  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"
5906
  msgstr ""
5907
 
5908
+ #: languages/vue.php:603
5909
  msgid "MonsterInsights Addons"
5910
  msgstr ""
5911
 
5912
+ #: languages/vue.php:606
5913
  msgid "Search Addons"
5914
  msgstr ""
5915
 
5916
+ #: languages/vue.php:609
5917
  msgid "Save Changes"
5918
  msgstr ""
5919
 
5920
+ #: languages/vue.php:615
5921
  msgid "Congratulations!"
5922
  msgstr ""
5923
 
5924
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5925
+ #: languages/vue.php:619
5926
  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."
5927
  msgstr ""
5928
 
5929
  #. Translators: Add link to YouTube video and Onboarding Wizard.
5930
+ #: languages/vue.php:623
5931
  msgid "Onboarding Wizard"
5932
  msgstr ""
5933
 
5934
+ #: languages/vue.php:626
5935
  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."
5936
  msgstr ""
5937
 
5938
+ #: languages/vue.php:629
5939
  msgid "Installing Addon"
5940
  msgstr ""
5941
 
5942
+ #: languages/vue.php:632
5943
  msgid "Activating Addon"
5944
  msgstr ""
5945
 
5946
+ #: languages/vue.php:635
5947
  msgid "Addon Activated"
5948
  msgstr ""
5949
 
5950
+ #: languages/vue.php:638
5951
  msgid "Loading report data"
5952
  msgstr ""
5953
 
5954
+ #: languages/vue.php:641
5955
  msgid "Please activate manually"
5956
  msgstr ""
5957
 
5958
  #. Translators: Adds the error status and status text.
5959
+ #: languages/vue.php:645
5960
  msgid "Error: %1$s, %2$s"
5961
  msgstr ""
5962
 
5963
+ #: languages/vue.php:648
5964
  msgid "Error Activating Addon"
5965
  msgstr ""
5966
 
5967
+ #: languages/vue.php:654
5968
  msgid "Dismiss"
5969
  msgstr ""
5970
 
5971
+ #: languages/vue.php:657
5972
  msgid "Redirecting"
5973
  msgstr ""
5974
 
5975
+ #: languages/vue.php:660
5976
  msgid "Please wait"
5977
  msgstr ""
5978
 
5979
+ #: languages/vue.php:663
5980
  msgid "activate"
5981
  msgstr ""
5982
 
5983
+ #: languages/vue.php:666
5984
  msgid "install"
5985
  msgstr ""
5986
 
5987
+ #: languages/vue.php:669
5988
  msgid "Visit addons page"
5989
  msgstr ""
5990
 
5991
+ #: languages/vue.php:672
5992
  msgid "Report Unavailable"
5993
  msgstr ""
5994
 
5995
  #. Translators: Install/Activate the addon.
5996
+ #: languages/vue.php:676
5997
  msgid "%s Addon"
5998
  msgstr ""
5999
 
6000
+ #: languages/vue.php:679
6001
  msgid "Show in widget mode"
6002
  msgstr ""
6003
 
6004
+ #: languages/vue.php:682
6005
  msgid "Show in full-width mode"
6006
  msgstr ""
6007
 
6008
+ #: languages/vue.php:685
6009
  msgid "Show Overview Reports"
6010
  msgstr ""
6011
 
6012
+ #: languages/vue.php:688
6013
  msgid "Show Publishers Reports"
6014
  msgstr ""
6015
 
6016
+ #: languages/vue.php:691
6017
  msgid "Show eCommerce Reports"
6018
  msgstr ""
6019
 
6020
+ #: languages/vue.php:694
6021
  msgid "Available in PRO version"
6022
  msgstr ""
6023
 
6024
+ #: languages/vue.php:697
6025
  msgid "Last 30 Days Insights for:"
6026
  msgstr ""
6027
 
6028
+ #: languages/vue.php:700
6029
  msgid "Your Website"
6030
  msgstr ""
6031
 
6032
+ #: languages/vue.php:704
6033
  msgid "Sessions"
6034
  msgstr ""
6035
 
6036
+ #: languages/vue.php:708
6037
  msgid "Pageviews"
6038
  msgstr ""
6039
 
6040
+ #: languages/vue.php:711
6041
  msgid "Avg. Duration"
6042
  msgstr ""
6043
 
6044
+ #: languages/vue.php:715
6045
  msgid "Bounce Rate"
6046
  msgstr ""
6047
 
6048
+ #: languages/vue.php:718
6049
  msgid "More data is available"
6050
  msgstr ""
6051
 
6052
+ #: languages/vue.php:721
6053
  msgid "Want to see page-specific stats?"
6054
  msgstr ""
6055
 
6056
+ #: languages/vue.php:724
6057
  msgid "See All Reports"
6058
  msgstr ""
6059
 
6060
+ #: languages/vue.php:727
6061
  msgid "Go to the Analytics Dashboard"
6062
  msgstr ""
6063
 
6064
+ #: languages/vue.php:730
6065
  msgid "License Key"
6066
  msgstr ""
6067
 
6068
  #. Translators: Add link to retrieve license key from account.
6069
+ #: languages/vue.php:734
6070
  msgid "Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6071
  msgstr ""
6072
 
6073
+ #: languages/vue.php:737
6074
  msgid "Google Authentication"
6075
  msgstr ""
6076
 
6077
+ #: languages/vue.php:740
6078
  msgid "Connect Google Analytics + WordPress"
6079
  msgstr ""
6080
 
6081
+ #: languages/vue.php:743
6082
  msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
6083
  msgstr ""
6084
 
6085
+ #: languages/vue.php:747
6086
  msgid "Miscellaneous"
6087
  msgstr ""
6088
 
6089
+ #: languages/vue.php:751
6090
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6091
  msgstr ""
6092
 
6093
+ #: languages/vue.php:755
6094
  msgid "Hide Announcements"
6095
  msgstr ""
6096
 
6097
+ #: languages/vue.php:758
6098
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6099
  msgstr ""
6100
 
6101
+ #: languages/vue.php:761
6102
  msgid "No addons found."
6103
  msgstr ""
6104
 
6105
+ #: languages/vue.php:764
6106
  msgid "Refresh Addons"
6107
  msgstr ""
6108
 
6109
+ #: languages/vue.php:767
6110
  msgid "Refreshing Addons"
6111
  msgstr ""
6112
 
6113
  #. Translators: Make text green.
6114
+ #: languages/vue.php:771
6115
  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!"
6116
  msgstr ""
6117
 
6118
  #. Translators: placeholders make text small.
6119
+ #: languages/vue.php:779
6120
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
6121
  msgstr ""
6122
 
6123
  #. Translators: placeholders make text small.
6124
+ #: languages/vue.php:783
6125
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
6126
  msgstr ""
6127
 
6128
  #. Translators: placeholders make text small.
6129
+ #: languages/vue.php:787
6130
  msgid "None %1$s- Manually update everything.%2$s"
6131
  msgstr ""
6132
 
6133
+ #: languages/vue.php:790
6134
  msgid "Automatic Updates"
6135
  msgstr ""
6136
 
6137
+ #: languages/vue.php:793
6138
  msgid "Setup Wizard"
6139
  msgstr ""
6140
 
6141
+ #: languages/vue.php:796
6142
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6143
  msgstr ""
6144
 
6145
  #. Translators: Placeholder adds a line break.
6146
+ #: languages/vue.php:800
6147
  msgid "Unique %s Sessions"
6148
  msgstr ""
6149
 
6150
  #. Translators: Number of unique pageviews.
6151
+ #: languages/vue.php:804
6152
  msgid "Unique %s Pageviews"
6153
  msgstr ""
6154
 
6155
+ #: languages/vue.php:807
6156
  msgid "A session is the browsing session of a single user to your site."
6157
  msgstr ""
6158
 
6159
+ #: languages/vue.php:810
6160
  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."
6161
  msgstr ""
6162
 
6163
+ #: languages/vue.php:813
6164
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6165
  msgstr ""
6166
 
6167
+ #: languages/vue.php:816
6168
  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."
6169
  msgstr ""
6170
 
6171
+ #: languages/vue.php:819
6172
  msgid "Avg. Session Duration"
6173
  msgstr ""
6174
 
6175
+ #: languages/vue.php:822
6176
  msgid "Demographics"
6177
  msgstr ""
6178
 
6179
+ #: languages/vue.php:825
6180
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
6181
  msgstr ""
6182
 
6183
+ #: languages/vue.php:828
6184
  msgid "Anonymize IP Addresses"
6185
  msgstr ""
6186
 
6187
+ #: languages/vue.php:831
6188
  msgid "Link Attribution"
6189
  msgstr ""
6190
 
6191
+ #: languages/vue.php:834
6192
  msgid "Enable Enhanced Link Attribution"
6193
  msgstr ""
6194
 
6195
+ #: languages/vue.php:837
6196
  msgid "Enable Anchor Tracking"
6197
  msgstr ""
6198
 
6199
+ #: languages/vue.php:840
6200
  msgid "Enable allowAnchor"
6201
  msgstr ""
6202
 
6203
+ #: languages/vue.php:843
6204
  msgid "Enable allowLinker"
6205
  msgstr ""
6206
 
6207
+ #: languages/vue.php:846
6208
  msgid "Enable Tag Links in RSS"
6209
  msgstr ""
6210
 
6211
+ #: languages/vue.php:849
6212
  msgid "File Downloads"
6213
  msgstr ""
6214
 
6215
+ #: languages/vue.php:852
6216
  msgid "Extensions of Files to Track as Downloads"
6217
  msgstr ""
6218
 
6219
+ #: languages/vue.php:855
6220
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
6221
  msgstr ""
6222
 
6223
  #. Translators: Add links to the documentation.
6224
+ #: languages/vue.php:859
6225
  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."
6226
  msgstr ""
6227
 
6228
  #. Translators: Adds a link to the documentation.
6229
+ #: languages/vue.php:863
6230
  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."
6231
  msgstr ""
6232
 
6233
  #. Translators: Adds a link to the documentation.
6234
+ #: languages/vue.php:867
6235
  msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
6236
  msgstr ""
6237
 
6238
+ #: languages/vue.php:870
6239
  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."
6240
  msgstr ""
6241
 
6242
  #. Translators: Adds a link to the documentation.
6243
+ #: languages/vue.php:874
6244
  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."
6245
  msgstr ""
6246
 
6247
  #. Translators: Adds a link to the documentation.
6248
+ #: languages/vue.php:878
6249
  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."
6250
  msgstr ""
6251
 
6252
  #. Translators: Adds a link to the documentation.
6253
+ #: languages/vue.php:882
6254
  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."
6255
  msgstr ""
6256
 
6257
+ #: languages/vue.php:885
6258
  msgid "Add domain"
6259
  msgstr ""
6260
 
6261
  #. Translators: Example domain.
6262
+ #: languages/vue.php:889
6263
  msgid "Domain (example: %s)"
6264
  msgstr ""
6265
 
6266
  #. Translators: Current site domain to be avoided.
6267
+ #: languages/vue.php:893
6268
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
6269
  msgstr ""
6270
 
6271
+ #: languages/vue.php:896
6272
  msgid "Cross Domain Tracking"
6273
  msgstr ""
6274
 
6275
  #. Translators: Adds a link to the documentation.
6276
+ #: languages/vue.php:900
6277
  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."
6278
  msgstr ""
6279
 
6280
+ #: languages/vue.php:903
6281
  msgid "Right Now"
6282
  msgstr ""
6283
 
6284
+ #: languages/vue.php:906
6285
  msgid "Active users on site"
6286
  msgstr ""
6287
 
6288
+ #: languages/vue.php:909
6289
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
6290
  msgstr ""
6291
 
6292
+ #: languages/vue.php:912
6293
  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."
6294
  msgstr ""
6295
 
6296
+ #: languages/vue.php:915
6297
  msgid "The real-time report automatically updates approximately every 60 seconds."
6298
  msgstr ""
6299
 
6300
  #. Translators: Number of seconds that have passed since the report was refreshed.
6301
+ #: languages/vue.php:919
6302
  msgid "The real-time report was last updated %s seconds ago."
6303
  msgstr ""
6304
 
6305
+ #: languages/vue.php:922
6306
  msgid "The latest data will be automatically shown on this page when it becomes available."
6307
  msgstr ""
6308
 
6309
+ #: languages/vue.php:925
6310
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
6311
  msgstr ""
6312
 
6313
+ #: languages/vue.php:928
6314
  msgid "Pageviews Per Minute"
6315
  msgstr ""
6316
 
6317
+ #: languages/vue.php:931
6318
  msgid "Top Pages"
6319
  msgstr ""
6320
 
6321
+ #: languages/vue.php:934
6322
  msgid "No pageviews currently."
6323
  msgstr ""
6324
 
6325
+ #: languages/vue.php:937
6326
  msgid "Page"
6327
  msgstr ""
6328
 
6329
+ #: languages/vue.php:940
6330
  msgid "Pageview Count"
6331
  msgstr ""
6332
 
6333
+ #: languages/vue.php:943
6334
  msgid "Percent of Total"
6335
  msgstr ""
6336
 
6337
+ #: languages/vue.php:946
6338
  msgid "This is the number of active users currently on your site."
6339
  msgstr ""
6340
 
6341
+ #: languages/vue.php:949
6342
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
6343
  msgstr ""
6344
 
6345
+ #: languages/vue.php:952
6346
  msgid "This list shows the top pages users are currently viewing on your site."
6347
  msgstr ""
6348
 
6349
+ #: languages/vue.php:955
6350
  msgid "View All Real-Time Pageviews"
6351
  msgstr ""
6352
 
6353
+ #: languages/vue.php:958
6354
  msgid "View All Real-Time Traffic Sources"
6355
  msgstr ""
6356
 
6357
+ #: languages/vue.php:961
6358
  msgid "View All Real-Time Traffic by Country"
6359
  msgstr ""
6360
 
6361
+ #: languages/vue.php:964
6362
  msgid "View All Real-Time Traffic by City"
6363
  msgstr ""
6364
 
6365
+ #: languages/vue.php:967
6366
  msgid "See All Your Important Store Metrics in One Place"
6367
  msgstr ""
6368
 
6369
+ #: languages/vue.php:970
6370
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
6371
  msgstr ""
6372
 
6373
+ #: languages/vue.php:973
6374
  msgid "ONE-CLICK INTEGRATIONS"
6375
  msgstr ""
6376
 
6377
+ #: languages/vue.php:976
6378
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
6379
  msgstr ""
6380
 
6381
+ #: languages/vue.php:979
6382
  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."
6383
  msgstr ""
6384
 
6385
+ #: languages/vue.php:982
6386
  msgid "GDPR Guide"
6387
  msgstr ""
6388
 
6389
+ #: languages/vue.php:985
6390
  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. "
6391
  msgstr ""
6392
 
6393
+ #: languages/vue.php:988
6394
  msgid "How to Install and Activate MonsterInsights Addons"
6395
  msgstr ""
6396
 
6397
+ #: languages/vue.php:991
6398
  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."
6399
  msgstr ""
6400
 
6401
+ #: languages/vue.php:994
6402
  msgid "Enabling eCommerce Tracking and Reports"
6403
  msgstr ""
6404
 
6405
+ #: languages/vue.php:997
6406
  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."
6407
  msgstr ""
6408
 
6409
+ #: languages/vue.php:1000
6410
  msgid "Read Documentation"
6411
  msgstr ""
6412
 
6413
+ #: languages/vue.php:1003
6414
  msgid "Getting Started with MonsterInsights"
6415
  msgstr ""
6416
 
6417
+ #: languages/vue.php:1006
6418
  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."
6419
  msgstr ""
6420
 
6421
+ #: languages/vue.php:1009
6422
  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."
6423
  msgstr ""
6424
 
6425
+ #: languages/vue.php:1012
6426
  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!."
6427
  msgstr ""
6428
 
6429
+ #: languages/vue.php:1015
6430
  msgid "Launch the wizard!"
6431
  msgstr ""
6432
 
6433
+ #: languages/vue.php:1018
6434
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
6435
  msgstr ""
6436
 
6437
  #. Translators: Makes text bold.
6438
+ #: languages/vue.php:1022
6439
  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."
6440
  msgstr ""
6441
 
6442
+ #: languages/vue.php:1025
6443
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
6444
  msgstr ""
6445
 
6446
+ #: languages/vue.php:1028
6447
  msgid "See your website analytics reports inside the WordPress dashboard"
6448
  msgstr ""
6449
 
6450
+ #: languages/vue.php:1031
6451
  msgid "Get real-time stats right inside WordPress"
6452
  msgstr ""
6453
 
6454
+ #: languages/vue.php:1034
6455
  msgid "1-click Google Analytics Enhanced eCommerce tracking"
6456
  msgstr ""
6457
 
6458
+ #: languages/vue.php:1037
6459
  msgid "Get detailed stats for each post and page."
6460
  msgstr ""
6461
 
6462
+ #: languages/vue.php:1040
6463
  msgid "Automatically track clicks on your affiliate links and ads."
6464
  msgstr ""
6465
 
6466
+ #: languages/vue.php:1043
6467
  msgid "Make Google Analytics GDPR compliant automatically"
6468
  msgstr ""
6469
 
6470
+ #: languages/vue.php:1046
6471
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
6472
  msgstr ""
6473
 
6474
+ #: languages/vue.php:1049
6475
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
6476
  msgstr ""
6477
 
6478
+ #: languages/vue.php:1052
6479
  msgid "More advanced features"
6480
  msgstr ""
6481
 
6482
+ #: languages/vue.php:1055
6483
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
6484
  msgstr ""
6485
 
6486
  #. Translators: Makes text green.
6487
+ #: languages/vue.php:1059
6488
  msgid "Bonus: MonsterInsights Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6489
  msgstr ""
6490
 
6491
+ #: languages/vue.php:1062
6492
  msgid "How to Connect to Google Analytics"
6493
  msgstr ""
6494
 
6495
+ #: languages/vue.php:1065
6496
  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."
6497
  msgstr ""
6498
 
6499
+ #: languages/vue.php:1068
6500
  msgid "Guide and Checklist for Advanced Insights"
6501
  msgstr ""
6502
 
6503
+ #: languages/vue.php:1071
6504
  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."
6505
  msgstr ""
6506
 
6507
  #. Translators: Adds a link to the general settings tab.
6508
+ #: languages/vue.php:1075
6509
  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."
6510
  msgstr ""
6511
 
6512
+ #: languages/vue.php:1078
6513
  msgid "Permissions"
6514
  msgstr ""
6515
 
6516
+ #: languages/vue.php:1081
6517
  msgid "Allow These User Roles to See Reports"
6518
  msgstr ""
6519
 
6520
+ #: languages/vue.php:1084
6521
  msgid "Users that have at least one of these roles will be able to view the reports."
6522
  msgstr ""
6523
 
6524
+ #: languages/vue.php:1087
6525
  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."
6526
  msgstr ""
6527
 
6528
+ #: languages/vue.php:1090
6529
  msgid "Allow These User Roles to Save Settings"
6530
  msgstr ""
6531
 
6532
+ #: languages/vue.php:1093
6533
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
6534
  msgstr ""
6535
 
6536
+ #: languages/vue.php:1096
6537
  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."
6538
  msgstr ""
6539
 
6540
+ #: languages/vue.php:1099
6541
  msgid "Exclude These User Roles From Tracking"
6542
  msgstr ""
6543
 
6544
+ #: languages/vue.php:1102
6545
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
6546
  msgstr ""
6547
 
6548
+ #: languages/vue.php:1105
6549
  msgid "Performance"
6550
  msgstr ""
6551
 
6552
+ #: languages/vue.php:1108
6553
  msgid "Custom code"
6554
  msgstr ""
6555
 
6556
  #. Translators: Adds a link to the Google reference.
6557
+ #: languages/vue.php:1112
6558
  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."
6559
  msgstr ""
6560
 
6561
+ #: languages/vue.php:1118
6562
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
6563
  msgstr ""
6564
 
6565
+ #: languages/vue.php:1121
6566
  msgid "Hide Admin Bar Reports"
6567
  msgstr ""
6568
 
6569
  #. Translators: placeholders make text small.
6570
+ #: languages/vue.php:1125
6571
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
6572
  msgstr ""
6573
 
6574
  #. Translators: placeholders make text small.
6575
+ #: languages/vue.php:1129
6576
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
6577
  msgstr ""
6578
 
6579
  #. Translators: placeholders make text small.
6580
+ #: languages/vue.php:1133
6581
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
6582
  msgstr ""
6583
 
6584
+ #: languages/vue.php:1136
6585
  msgid "New"
6586
  msgstr ""
6587
 
6588
+ #: languages/vue.php:1139
6589
  msgid "Returning"
6590
  msgstr ""
6591
 
6592
+ #: languages/vue.php:1142
6593
  msgid "Desktop"
6594
  msgstr ""
6595
 
6596
+ #: languages/vue.php:1145
6597
  msgid "Tablet"
6598
  msgstr ""
6599
 
6600
+ #: languages/vue.php:1148
6601
  msgid "Mobile"
6602
  msgstr ""
6603
 
6604
+ #: languages/vue.php:1151
6605
  msgid "Top 10 Countries"
6606
  msgstr ""
6607
 
6608
+ #: languages/vue.php:1154
6609
  msgid "View Countries Report"
6610
  msgstr ""
6611
 
6612
+ #: languages/vue.php:1157
6613
  msgid "Top 10 Referrals"
6614
  msgstr ""
6615
 
6616
+ #: languages/vue.php:1160
6617
  msgid "View All Referral Sources"
6618
  msgstr ""
6619
 
6620
+ #: languages/vue.php:1163
6621
  msgid "View Full Posts/Pages Report"
6622
  msgstr ""
6623
 
6624
+ #: languages/vue.php:1166
6625
  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."
6626
  msgstr ""
6627
 
6628
+ #: languages/vue.php:1169
6629
  msgid "This list shows the top countries your website visitors are from."
6630
  msgstr ""
6631
 
6632
+ #: languages/vue.php:1172
6633
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
6634
  msgstr ""
6635
 
6636
  #. Translators: Example path (/go/).
6637
+ #: languages/vue.php:1176
6638
  msgid "Path (example: %s)"
6639
  msgstr ""
6640
 
6641
+ #: languages/vue.php:1179
6642
  msgid "Path has to start with a / and have no spaces"
6643
  msgstr ""
6644
 
6645
  #. Translators: Example label (aff).
6646
+ #: languages/vue.php:1183
6647
  msgid "Label (example: %s)"
6648
  msgstr ""
6649
 
6650
+ #: languages/vue.php:1186
6651
  msgid "Label can't contain any spaces"
6652
  msgstr ""
6653
 
6654
+ #: languages/vue.php:1189
6655
  msgid "Affiliate Links"
6656
  msgstr ""
6657
 
6658
  #. Translators: Add links to documentation.
6659
+ #: languages/vue.php:1193
6660
  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."
6661
  msgstr ""
6662
 
6663
+ #: languages/vue.php:1196
6664
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
6665
  msgstr ""
6666
 
6667
+ #: languages/vue.php:1199
6668
  msgid "Still Calculating..."
6669
  msgstr ""
6670
 
6671
+ #: languages/vue.php:1202
6672
  msgid "Your 2019 Year in Review is still calculating. Please check back later to see how your website performed last year."
6673
  msgstr ""
6674
 
6675
+ #: languages/vue.php:1205
6676
  msgid "Back to Overview Report"
6677
  msgstr ""
6678
 
6679
+ #: languages/vue.php:1208
6680
  msgid "Your 2019 Analytics Report"
6681
  msgstr ""
6682
 
6683
+ #: languages/vue.php:1211
6684
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
6685
  msgstr ""
6686
 
6687
+ #: languages/vue.php:1214
6688
  msgid "Audience"
6689
  msgstr ""
6690
 
6691
+ #: languages/vue.php:1217
6692
  msgid "Congrats"
6693
  msgstr ""
6694
 
6695
+ #: languages/vue.php:1220
6696
  msgid "Your website was quite popular this year! "
6697
  msgstr ""
6698
 
6699
+ #: languages/vue.php:1223
6700
  msgid "You had "
6701
  msgstr ""
6702
 
6703
+ #: languages/vue.php:1226
6704
  msgid " visitors!"
6705
  msgstr ""
6706
 
6707
+ #: languages/vue.php:1229
6708
  msgid " visitors"
6709
  msgstr ""
6710
 
6711
+ #: languages/vue.php:1232
6712
  msgid "Total Visitors"
6713
  msgstr ""
6714
 
6715
+ #: languages/vue.php:1235
6716
  msgid "Total Sessions"
6717
  msgstr ""
6718
 
6719
+ #: languages/vue.php:1238
6720
  msgid "Visitors by Month"
6721
  msgstr ""
6722
 
6723
+ #: languages/vue.php:1241
6724
  msgid "January 1, 2019 - December 31, 2019"
6725
  msgstr ""
6726
 
6727
+ #: languages/vue.php:1244
6728
  msgid "A Tip for 2020"
6729
  msgstr ""
6730
 
6731
+ #: languages/vue.php:1247
6732
  msgid "See the top Traffic Sources and Top Pages for the Month of May in the Overview Report to replicate your success."
6733
  msgstr ""
6734
 
6735
+ #: languages/vue.php:1250
6736
  msgid "#1"
6737
  msgstr ""
6738
 
6739
+ #: languages/vue.php:1253
6740
  msgid "You Top 5 Countries"
6741
  msgstr ""
6742
 
6743
+ #: languages/vue.php:1256
6744
  msgid "Let’s get to know your visitors a little better, shall we?"
6745
  msgstr ""
6746
 
6747
+ #: languages/vue.php:1259
6748
  msgid "Gender"
6749
  msgstr ""
6750
 
6751
+ #: languages/vue.php:1262
6752
  msgid "Female"
6753
  msgstr ""
6754
 
6755
+ #: languages/vue.php:1265
6756
  msgid "Women"
6757
  msgstr ""
6758
 
6759
+ #: languages/vue.php:1268
6760
  msgid "Male"
6761
  msgstr ""
6762
 
6763
+ #: languages/vue.php:1271
6764
  msgid "Average Age"
6765
  msgstr ""
6766
 
6767
+ #: languages/vue.php:1274
6768
  msgid "Behavior"
6769
  msgstr ""
6770
 
6771
+ #: languages/vue.php:1277
6772
  msgid "Your Top 5 Pages"
6773
  msgstr ""
6774
 
6775
+ #: languages/vue.php:1280
6776
  msgid "Time Spent on Site"
6777
  msgstr ""
6778
 
6779
+ #: languages/vue.php:1283
6780
  msgid "minutes"
6781
  msgstr ""
6782
 
6783
+ #: languages/vue.php:1286
6784
  msgid "Device Type"
6785
  msgstr ""
6786
 
6787
+ #: languages/vue.php:1289
6788
  msgid "A Tip For 2020"
6789
  msgstr ""
6790
 
6791
+ #: languages/vue.php:1292
6792
  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."
6793
  msgstr ""
6794
 
6795
+ #: languages/vue.php:1295
6796
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
6797
  msgstr ""
6798
 
6799
+ #: languages/vue.php:1298
6800
  msgid "So, where did all of these visitors come from?"
6801
  msgstr ""
6802
 
6803
+ #: languages/vue.php:1301
6804
  msgid "Clicks"
6805
  msgstr ""
6806
 
6807
+ #: languages/vue.php:1304
6808
  msgid "Your Top 5 Keywords"
6809
  msgstr ""
6810
 
6811
+ #: languages/vue.php:1307
6812
  msgid "What keywords visitors searched for to find your site"
6813
  msgstr ""
6814
 
6815
+ #: languages/vue.php:1310
6816
  msgid "Your Top 5 Referrals"
6817
  msgstr ""
6818
 
6819
+ #: languages/vue.php:1313
6820
  msgid "The websites that link back to your website"
6821
  msgstr ""
6822
 
6823
+ #: languages/vue.php:1316
6824
  msgid "Opportunity"
6825
  msgstr ""
6826
 
6827
+ #: languages/vue.php:1319
6828
  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."
6829
  msgstr ""
6830
 
6831
+ #: languages/vue.php:1322
6832
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
6833
  msgstr ""
6834
 
6835
+ #: languages/vue.php:1325
6836
  msgid "Thank you for using MonsterInsights!"
6837
  msgstr ""
6838
 
6839
+ #: languages/vue.php:1328
6840
  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."
6841
  msgstr ""
6842
 
6843
+ #: languages/vue.php:1331
6844
  msgid "Here's to an amazing 2020!"
6845
  msgstr ""
6846
 
6847
+ #: languages/vue.php:1334
6848
  msgid "Enjoying MonsterInsights"
6849
  msgstr ""
6850
 
6851
+ #: languages/vue.php:1337
6852
  msgid "Leave a five star review!"
6853
  msgstr ""
6854
 
6855
+ #: languages/vue.php:1340
6856
  msgid "Syed Balkhi"
6857
  msgstr ""
6858
 
6859
+ #: languages/vue.php:1343
6860
  msgid "Chris Christoff"
6861
  msgstr ""
6862
 
6863
+ #: languages/vue.php:1346
6864
  msgid "Write Review"
6865
  msgstr ""
6866
 
6867
+ #: languages/vue.php:1349
6868
  msgid "Did you know over 10 million websites use our plugins?"
6869
  msgstr ""
6870
 
6871
+ #: languages/vue.php:1352
6872
  msgid "Try our other popular WordPress plugins to grow your website in 2020."
6873
  msgstr ""
6874
 
6875
+ #: languages/vue.php:1355
6876
  msgid "Join our Communities!"
6877
  msgstr ""
6878
 
6879
+ #: languages/vue.php:1358
6880
  msgid "Become a WordPress expert in 2020. Join our amazing communities and take your website to the next level."
6881
  msgstr ""
6882
 
6883
+ #: languages/vue.php:1361
6884
  msgid "Facebook Group"
6885
  msgstr ""
6886
 
6887
+ #: languages/vue.php:1364
6888
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
6889
  msgstr ""
6890
 
6891
+ #: languages/vue.php:1367
6892
  msgid "Join Now...It’s Free!"
6893
  msgstr ""
6894
 
6895
+ #: languages/vue.php:1370
6896
  msgid "WordPress Tutorials by WPBeginner"
6897
  msgstr ""
6898
 
6899
+ #: languages/vue.php:1373
6900
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
6901
  msgstr ""
6902
 
6903
+ #: languages/vue.php:1376
6904
  msgid "Visit WPBeginner"
6905
  msgstr ""
6906
 
6907
+ #: languages/vue.php:1379
6908
  msgid "Follow Us!"
6909
  msgstr ""
6910
 
6911
+ #: languages/vue.php:1382
6912
  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."
6913
  msgstr ""
6914
 
6915
+ #: languages/vue.php:1385
6916
  msgid "Copyright MonsterInsights, 2020"
6917
  msgstr ""
6918
 
6919
+ #: languages/vue.php:1388
6920
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
6921
  msgstr ""
6922
 
6923
+ #: languages/vue.php:1391
6924
  msgid "January"
6925
  msgstr ""
6926
 
6927
+ #: languages/vue.php:1394
6928
  msgid "February"
6929
  msgstr ""
6930
 
6931
+ #: languages/vue.php:1397
6932
  msgid "March"
6933
  msgstr ""
6934
 
6935
+ #: languages/vue.php:1400
6936
  msgid "April"
6937
  msgstr ""
6938
 
6939
+ #: languages/vue.php:1403
6940
  msgid "May"
6941
  msgstr ""
6942
 
6943
+ #: languages/vue.php:1406
6944
  msgid "June"
6945
  msgstr ""
6946
 
6947
+ #: languages/vue.php:1409
6948
  msgid "July"
6949
  msgstr ""
6950
 
6951
+ #: languages/vue.php:1412
6952
  msgid "August"
6953
  msgstr ""
6954
 
6955
+ #: languages/vue.php:1415
6956
  msgid "September"
6957
  msgstr ""
6958
 
6959
+ #: languages/vue.php:1418
6960
  msgid "October"
6961
  msgstr ""
6962
 
6963
+ #: languages/vue.php:1421
6964
  msgid "November"
6965
  msgstr ""
6966
 
6967
+ #: languages/vue.php:1424
6968
  msgid "December"
6969
  msgstr ""
6970
 
6971
  #. Translators: Number of visitors.
6972
+ #: languages/vue.php:1428
6973
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
6974
  msgstr ""
6975
 
6976
  #. Translators: Number of visitors.
6977
+ #: languages/vue.php:1432
6978
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
6979
  msgstr ""
6980
 
6981
  #. Translators: Number of visitors.
6982
+ #: languages/vue.php:1436
6983
  msgid "%s Visitors"
6984
  msgstr ""
6985
 
6986
  #. Translators: Percent and Number of visitors.
6987
+ #: languages/vue.php:1440
6988
  msgid "%1$s&#37 of your visitors were %2$s"
6989
  msgstr ""
6990
 
6991
  #. Translators: Number of visitors and their age.
6992
+ #: languages/vue.php:1444
6993
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
6994
  msgstr ""
6995
 
6996
  #. Translators: Number of visitors and number of pages.
6997
+ #: languages/vue.php:1448
6998
  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>"
6999
  msgstr ""
7000
 
7001
  #. Translators: Number of minutes spent on site.
7002
+ #: languages/vue.php:1452
7003
  msgid "Each visitor spent an average of %s minutes on your website in 2019."
7004
  msgstr ""
7005
 
7006
  #. Translators: Name of device type.
7007
+ #: languages/vue.php:1456
7008
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7009
  msgstr ""
7010
 
7011
  #. Translators: Number of visitors and device percentage.
7012
+ #: languages/vue.php:1460
7013
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7014
  msgstr ""
7015
 
7016
+ #: languages/vue.php:1463
7017
  msgid "Import/Export"
7018
  msgstr ""
7019
 
7020
+ #: languages/vue.php:1466
7021
  msgid "Import"
7022
  msgstr ""
7023
 
7024
+ #: languages/vue.php:1469
7025
  msgid "Import settings from another ExactMetrics website."
7026
  msgstr ""
7027
 
7028
+ #: languages/vue.php:1472
7029
  msgid "Export"
7030
  msgstr ""
7031
 
7032
+ #: languages/vue.php:1475
7033
  msgid "Export settings to import into another ExactMetrics install."
7034
  msgstr ""
7035
 
7036
+ #: languages/vue.php:1478
7037
  msgid "Import Settings"
7038
  msgstr ""
7039
 
7040
+ #: languages/vue.php:1481
7041
  msgid "Export Settings"
7042
  msgstr ""
7043
 
7044
+ #: languages/vue.php:1484
7045
  msgid "Please choose a file to import"
7046
  msgstr ""
7047
 
7048
+ #: languages/vue.php:1487
7049
  msgid "Use the filepicker below to select the settings export file from another site."
7050
  msgstr ""
7051
 
7052
+ #: languages/vue.php:1490
7053
  msgid "Use the button below to export a file with your MonsterInsights settings."
7054
  msgstr ""
7055
 
7056
+ #: languages/vue.php:1493
7057
  msgid "Uploading file..."
7058
  msgstr ""
7059
 
7060
+ #: languages/vue.php:1496
7061
  msgid "File imported"
7062
  msgstr ""
7063
 
7064
+ #: languages/vue.php:1499
7065
  msgid "Settings successfully updated!"
7066
  msgstr ""
7067
 
7068
+ #: languages/vue.php:1502
7069
  msgid "Error importing settings"
7070
  msgstr ""
7071
 
7072
+ #: languages/vue.php:1505
7073
  msgid "Please choose a .json file generated by a MonsterInsights settings export."
7074
  msgstr ""
7075
 
7076
+ #: languages/vue.php:1508
7077
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
7078
  msgstr ""
7079
 
7080
+ #: languages/vue.php:1511
7081
  msgid "WordPress Admin Area Reports"
7082
  msgstr ""
7083
 
7084
+ #: languages/vue.php:1514
7085
  msgid "Standard Reports"
7086
  msgstr ""
7087
 
7088
+ #: languages/vue.php:1517
7089
  msgid "Overview Reports for the last 30 days."
7090
  msgstr ""
7091
 
7092
+ #: languages/vue.php:1520
7093
  msgid "Advanced Reports"
7094
  msgstr ""
7095
 
7096
+ #: languages/vue.php:1523
7097
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
7098
  msgstr ""
7099
 
7100
+ #: languages/vue.php:1526
7101
  msgid "Dashboard Widget"
7102
  msgstr ""
7103
 
7104
+ #: languages/vue.php:1529
7105
  msgid "Basic Widget"
7106
  msgstr ""
7107
 
7108
+ #: languages/vue.php:1532
7109
  msgid "Overview Report Synopsis"
7110
  msgstr ""
7111
 
7112
+ #: languages/vue.php:1535
7113
  msgid "Advanced Dashboard Widget"
7114
  msgstr ""
7115
 
7116
+ #: languages/vue.php:1538
7117
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
7118
  msgstr ""
7119
 
7120
+ #: languages/vue.php:1541
7121
  msgid "Publisher Reports"
7122
  msgstr ""
7123
 
7124
+ #: languages/vue.php:1544
7125
  msgid "Advanced Publisher Reports & Tracking"
7126
  msgstr ""
7127
 
7128
+ #: languages/vue.php:1547
7129
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
7130
  msgstr ""
7131
 
7132
+ #: languages/vue.php:1550
7133
  msgid "Not Available"
7134
  msgstr ""
7135
 
7136
+ #: languages/vue.php:1553
7137
  msgid "Complete Custom Dimensions Tracking"
7138
  msgstr ""
7139
 
7140
+ #: languages/vue.php:1556
7141
  msgid "Track and measure by the Author, Post Type, Category, Tags, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
7142
  msgstr ""
7143
 
7144
+ #: languages/vue.php:1562
7145
  msgid "Limited Support"
7146
  msgstr ""
7147
 
7148
+ #: languages/vue.php:1565
7149
  msgid "Priority Support"
7150
  msgstr ""
7151
 
7152
+ #: languages/vue.php:1568
7153
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
7154
  msgstr ""
7155
 
7156
+ #: languages/vue.php:1571
7157
  msgid "Feature"
7158
  msgstr ""
7159
 
7160
+ #: languages/vue.php:1574
7161
  msgid "Lite"
7162
  msgstr ""
7163
 
7164
+ #: languages/vue.php:1577
7165
  msgid "Pro"
7166
  msgstr ""
7167
 
7168
+ #: languages/vue.php:1580
7169
  msgid "Included"
7170
  msgstr ""
7171
 
7172
+ #: languages/vue.php:1583
7173
  msgid "Custom Google Analytics Link Tracking"
7174
  msgstr ""
7175
 
7176
+ #: languages/vue.php:1586
7177
  msgid "Standard Tracking"
7178
  msgstr ""
7179
 
7180
+ #: languages/vue.php:1589
7181
  msgid "Advanced Tracking"
7182
  msgstr ""
7183
 
7184
+ #: languages/vue.php:1592
7185
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
7186
  msgstr ""
7187
 
7188
+ #: languages/vue.php:1595
7189
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
7190
  msgstr ""
7191
 
7192
+ #: languages/vue.php:1598
7193
  msgid "No-Code-Needed Tracking Features"
7194
  msgstr ""
7195
 
7196
+ #: languages/vue.php:1601
7197
  msgid "Basic Tracking Options"
7198
  msgstr ""
7199
 
7200
+ #: languages/vue.php:1604
7201
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
7202
  msgstr ""
7203
 
7204
+ #: languages/vue.php:1607
7205
  msgid "Advanced Tracking Options"
7206
  msgstr ""
7207
 
7208
+ #: languages/vue.php:1610
7209
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
7210
  msgstr ""
7211
 
7212
+ #: languages/vue.php:1613
7213
  msgid "eCommerce Tracking"
7214
  msgstr ""
7215
 
7216
+ #: languages/vue.php:1616
7217
  msgid "One-click Complete eCommerce tracking"
7218
  msgstr ""
7219
 
7220
+ #: languages/vue.php:1619
7221
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
7222
  msgstr ""
7223
 
7224
+ #: languages/vue.php:1622
7225
  msgid "Forms Tracking"
7226
  msgstr ""
7227
 
7228
+ #: languages/vue.php:1625
7229
  msgid "One-click Form Events Tracking"
7230
  msgstr ""
7231
 
7232
+ #: languages/vue.php:1628
7233
  msgid "Custom Campaign Parameters"
7234
  msgstr ""
7235
 
7236
+ #: languages/vue.php:1631
7237
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
7238
  msgstr ""
7239
 
7240
+ #: languages/vue.php:1634
7241
  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."
7242
  msgstr ""
7243
 
7244
  #. Translators: Marks the field as required.
7245
+ #: languages/vue.php:1638
7246
  msgid "Website URL %s"
7247
  msgstr ""
7248
 
7249
  #. Translators: Display the current website url in italic.
7250
+ #: languages/vue.php:1642
7251
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
7252
  msgstr ""
7253
 
7254
  #. Translators: Marks the field as required.
7255
+ #: languages/vue.php:1646
7256
  msgid "Campaign Source %s"
7257
  msgstr ""
7258
 
7259
  #. Translators: Make the text italic.
7260
+ #: languages/vue.php:1650
7261
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
7262
  msgstr ""
7263
 
7264
  #. Translators: Make the text italic.
7265
+ #: languages/vue.php:1654
7266
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
7267
  msgstr ""
7268
 
7269
  #. Translators: Make the text italic.
7270
+ #: languages/vue.php:1658
7271
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
7272
  msgstr ""
7273
 
7274
+ #: languages/vue.php:1661
7275
  msgid "Enter the paid keyword"
7276
  msgstr ""
7277
 
7278
+ #: languages/vue.php:1664
7279
  msgid "Enter something to differentiate ads"
7280
  msgstr ""
7281
 
7282
+ #: languages/vue.php:1667
7283
  msgid "Use Fragment"
7284
  msgstr ""
7285
 
7286
  #. Translators: Make the text bold.
7287
+ #: languages/vue.php:1671
7288
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
7289
  msgstr ""
7290
 
7291
+ #: languages/vue.php:1674
7292
  msgid "URL to use"
7293
  msgstr ""
7294
 
7295
+ #: languages/vue.php:1677
7296
  msgid "(Updates automatically)"
7297
  msgstr ""
7298
 
7299
+ #: languages/vue.php:1680
7300
  msgid "Copy to Clipboard"
7301
  msgstr ""
7302
 
7303
+ #: languages/vue.php:1683
7304
  msgid "More Information & Examples"
7305
  msgstr ""
7306
 
7307
+ #: languages/vue.php:1686
7308
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
7309
  msgstr ""
7310
 
7311
+ #: languages/vue.php:1689
7312
  msgid "Campaign Source"
7313
  msgstr ""
7314
 
7315
+ #: languages/vue.php:1692
7316
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
7317
  msgstr ""
7318
 
7319
+ #: languages/vue.php:1695
7320
  msgid "Campaign Medium"
7321
  msgstr ""
7322
 
7323
+ #: languages/vue.php:1698
7324
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
7325
  msgstr ""
7326
 
7327
+ #: languages/vue.php:1701
7328
  msgid "Campaign Name"
7329
  msgstr ""
7330
 
7331
+ #: languages/vue.php:1704
7332
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
7333
  msgstr ""
7334
 
7335
+ #: languages/vue.php:1707
7336
  msgid "Campaign Term"
7337
  msgstr ""
7338
 
7339
+ #: languages/vue.php:1710
7340
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
7341
  msgstr ""
7342
 
7343
+ #: languages/vue.php:1713
7344
  msgid "Campaign Content"
7345
  msgstr ""
7346
 
7347
+ #: languages/vue.php:1716
7348
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
7349
  msgstr ""
7350
 
7351
  #. Translators: Example.
7352
+ #: languages/vue.php:1720
7353
  msgid "Example: %s"
7354
  msgstr ""
7355
 
7356
  #. Translators: Examples.
7357
+ #: languages/vue.php:1724
7358
  msgid "Examples: %s"
7359
  msgstr ""
7360
 
7361
+ #: languages/vue.php:1727
7362
  msgid "About Campaigns"
7363
  msgstr ""
7364
 
7365
+ #: languages/vue.php:1730
7366
  msgid "About Custom Campaigns"
7367
  msgstr ""
7368
 
7369
+ #: languages/vue.php:1733
7370
  msgid "Best Practices for Creating Custom Campaigns"
7371
  msgstr ""
7372
 
7373
+ #: languages/vue.php:1736
7374
  msgid "About the Referral Traffic Report"
7375
  msgstr ""
7376
 
7377
+ #: languages/vue.php:1739
7378
  msgid "About Traffic Source Dimensions"
7379
  msgstr ""
7380
 
7381
+ #: languages/vue.php:1742
7382
  msgid "AdWords Auto-Tagging"
7383
  msgstr ""
7384
 
7385
+ #: languages/vue.php:1745
7386
  msgid "Additional Information"
7387
  msgstr ""
7388
 
7389
+ #: languages/vue.php:1748
7390
  msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visit, so you can analyze and optimize it for higher conversions."
7391
  msgstr ""
7392
 
7393
+ #: languages/vue.php:1751
7394
  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."
7395
  msgstr ""
7396
 
7397
+ #: languages/vue.php:1754
7398
  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\"."
7399
  msgstr ""
7400
 
7401
+ #: languages/vue.php:1757
7402
  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."
7403
  msgstr ""
7404
 
7405
+ #: languages/vue.php:1760
7406
  msgid "Yup, we know a thing or two about building awesome products that customers love."
7407
  msgstr ""
7408
 
7409
+ #: languages/vue.php:1763
7410
  msgid "The MonsterInsights Team"
7411
  msgstr ""
7412
 
7413
+ #: languages/vue.php:1766
7414
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
7415
  msgstr ""
7416
 
7417
+ #: languages/vue.php:1769
7418
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
7419
  msgstr ""
7420
 
7421
+ #: languages/vue.php:1772
7422
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
7423
  msgstr ""
7424
 
7425
+ #: languages/vue.php:1775
7426
  msgid "Loading Settings"
7427
  msgstr ""
7428
 
7429
+ #: languages/vue.php:1778
7430
  msgid "Saving Changes..."
7431
  msgstr ""
7432
 
7433
+ #: languages/vue.php:1781
7434
  msgid "Settings Updated"
7435
  msgstr ""
7436
 
7437
  #. Translators: Adds a link to the settings panel.
7438
+ #: languages/vue.php:1785
7439
  msgid "You need to %1$sconnect MonsterInsights%2$s first"
7440
  msgstr ""
7441
 
7442
+ #: languages/vue.php:1788
7443
  msgid "Could Not Save Changes"
7444
  msgstr ""
7445
 
7446
  #. Translators: Error status and error text.
7447
+ #: languages/vue.php:1792
7448
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7449
  msgstr ""
7450
 
7451
+ #: languages/vue.php:1795
7452
  msgid "You appear to be offline."
7453
  msgstr ""
7454
 
7455
  #. Translators: Error status and error text.
7456
+ #: languages/vue.php:1799
7457
  msgid "Can't save settings. Error: %1$s, %2$s"
7458
  msgstr ""
7459
 
7460
+ #: languages/vue.php:1802
7461
  msgid "You appear to be offline. Settings not saved."
7462
  msgstr ""
7463
 
7464
  #. Translators: Error status and error text.
7465
+ #: languages/vue.php:1806
7466
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7467
  msgstr ""
7468
 
7469
  #. Translators: Error status and error text.
7470
+ #: languages/vue.php:1810
7471
  msgid "Can't authenticate. Error: %1$s, %2$s"
7472
  msgstr ""
7473
 
7474
  #. Translators: Error status and error text.
7475
+ #: languages/vue.php:1814
7476
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7477
  msgstr ""
7478
 
7479
  #. Translators: Error status and error text.
7480
+ #: languages/vue.php:1818
7481
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7482
  msgstr ""
7483
 
7484
+ #: languages/vue.php:1821
7485
  msgid "You appear to be offline. WPForms not installed."
7486
  msgstr ""
7487
 
7488
  #. Translators: Error status and error text.
7489
+ #: languages/vue.php:1825
7490
  msgid "Can't activate addon. Error: %1$s, %2$s"
7491
  msgstr ""
7492
 
7493
+ #: languages/vue.php:1828
7494
  msgid "You appear to be offline. Addon not activated."
7495
  msgstr ""
7496
 
7497
  #. Translators: Error status and error text.
7498
+ #: languages/vue.php:1832
7499
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7500
  msgstr ""
7501
 
7502
+ #: languages/vue.php:1835
7503
  msgid "You appear to be offline. Addon not deactivated."
7504
  msgstr ""
7505
 
7506
  #. Translators: Error status and error text.
7507
+ #: languages/vue.php:1839
7508
  msgid "Can't install plugin. Error: %1$s, %2$s"
7509
  msgstr ""
7510
 
7511
+ #: languages/vue.php:1842
7512
  msgid "You appear to be offline. Plugin not installed."
7513
  msgstr ""
7514
 
7515
  #. Translators: Error status and error text.
7516
+ #: languages/vue.php:1846
7517
  msgid "Can't install addon. Error: %1$s, %2$s"
7518
  msgstr ""
7519
 
7520
+ #: languages/vue.php:1849
7521
  msgid "You appear to be offline. Addon not installed."
7522
  msgstr ""
7523
 
7524
  #. Translators: Error status and error text.
7525
+ #: languages/vue.php:1853
7526
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7527
  msgstr ""
7528
 
7529
  #. Translators: Error status and error text.
7530
+ #: languages/vue.php:1857
7531
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
7532
  msgstr ""
7533
 
7534
  #. Translators: Error status and error text.
7535
+ #: languages/vue.php:1861
7536
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7537
  msgstr ""
7538
 
7539
  #. Translators: Error status and error text.
7540
+ #: languages/vue.php:1865
7541
  msgid "Can't load license details. Error: %1$s, %2$s"
7542
  msgstr ""
7543
 
7544
+ #: languages/vue.php:1868
7545
  msgid "Error loading license details"
7546
  msgstr ""
7547
 
7548
  #. Translators: Error status and error text.
7549
+ #: languages/vue.php:1872
7550
  msgid "Can't verify the license. Error: %1$s, %2$s"
7551
  msgstr ""
7552
 
7553
  #. Translators: Error status and error text.
7554
+ #: languages/vue.php:1876
7555
  msgid "Can't validate the license. Error: %1$s, %2$s"
7556
  msgstr ""
7557
 
7558
+ #: languages/vue.php:1879
7559
  msgid "MonsterInsights Recommends WPForms"
7560
  msgstr ""
7561
 
7562
+ #: languages/vue.php:1882
7563
  msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
7564
  msgstr ""
7565
 
7566
+ #: languages/vue.php:1885
7567
  msgid "Used on over 1,000,000 websites!"
7568
  msgstr ""
7569
 
7570
+ #: languages/vue.php:1888
7571
  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!"
7572
  msgstr ""
7573
 
7574
+ #: languages/vue.php:1891
7575
  msgid "Skip this Step"
7576
  msgstr ""
7577
 
7578
+ #: languages/vue.php:1894
7579
  msgid "Continue & Install WPForms"
7580
  msgstr ""
7581
 
7582
+ #: languages/vue.php:1897
7583
  msgid "Installing..."
7584
  msgstr ""
7585
 
7586
+ #: languages/vue.php:1900
7587
  msgid "Awesome, You're All Set!"
7588
  msgstr ""
7589
 
7590
+ #: languages/vue.php:1903
7591
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
7592
  msgstr ""
7593
 
7594
  #. Translators: Make text bold.
7595
+ #: languages/vue.php:1907
7596
  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."
7597
  msgstr ""
7598
 
7599
  #. Translators: Link to our blog.
7600
+ #: languages/vue.php:1911
7601
  msgid "%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business."
7602
  msgstr ""
7603
 
7604
+ #: languages/vue.php:1914
7605
  msgid "Finish Setup & Exit Wizard"
7606
  msgstr ""
7607
 
7608
+ #: languages/vue.php:1917
7609
  msgid "Checking your website..."
7610
  msgstr ""
7611
 
7612
+ #: languages/vue.php:1920
7613
  msgid "Recommended Addons"
7614
  msgstr ""
7615
 
7616
+ #: languages/vue.php:1923
7617
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
7618
  msgstr ""
7619
 
7620
+ #: languages/vue.php:1926
7621
  msgid "Other Addons"
7622
  msgstr ""
7623
 
7624
+ #: languages/vue.php:1929
7625
  msgid "View all MonsterInsights addons"
7626
  msgstr ""
7627
 
7628
+ #: languages/vue.php:1932
7629
  msgid "Save and continue"
7630
  msgstr ""
7631
 
7632
+ #: languages/vue.php:1935
7633
  msgid "Connect MonsterInsights to Your Website"
7634
  msgstr ""
7635
 
7636
+ #: languages/vue.php:1938
7637
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
7638
  msgstr ""
7639
 
7640
+ #: languages/vue.php:1941
7641
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
7642
  msgstr ""
7643
 
7644
+ #: languages/vue.php:1944
7645
  msgid "Manually enter your UA code"
7646
  msgstr ""
7647
 
7648
+ #: languages/vue.php:1947
7649
  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."
7650
  msgstr ""
7651
 
7652
+ #: languages/vue.php:1950
7653
  msgid "Save and Continue"
7654
  msgstr ""
7655
 
7656
+ #: languages/vue.php:1953
7657
  msgid "UA code can't be empty"
7658
  msgstr ""
7659
 
7660
+ #: languages/vue.php:1956
7661
  msgid "Saving UA code..."
7662
  msgstr ""
7663
 
7664
+ #: languages/vue.php:1959
7665
  msgid "Hide dashboard widget"
7666
  msgstr ""
7667
 
7668
+ #: languages/vue.php:1962
7669
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
7670
  msgstr ""
7671
 
7672
+ #: languages/vue.php:1965
7673
  msgid "Yes, hide it!"
7674
  msgstr ""
7675
 
7676
+ #: languages/vue.php:1968
7677
  msgid "No, cancel!"
7678
  msgstr ""
7679
 
7680
+ #: languages/vue.php:1971
7681
  msgid "MonsterInsights Widget Hidden"
7682
  msgstr ""
7683
 
7684
+ #: languages/vue.php:1974
7685
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
7686
  msgstr ""
7687
 
7688
+ #: languages/vue.php:1977
7689
  msgid "Recommended Settings"
7690
  msgstr ""
7691
 
7692
+ #: languages/vue.php:1980
7693
  msgid "MonsterInsights recommends the following settings based on your configuration."
7694
  msgstr ""
7695
 
7696
+ #: languages/vue.php:1983
7697
  msgid "Events Tracking"
7698
  msgstr ""
7699
 
7700
+ #: languages/vue.php:1986
7701
  msgid "Must have for all click tracking on site."
7702
  msgstr ""
7703
 
7704
+ #: languages/vue.php:1989
7705
  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."
7706
  msgstr ""
7707
 
7708
+ #: languages/vue.php:1992
7709
  msgid "Enhanced Link Attribution"
7710
  msgstr ""
7711
 
7712
+ #: languages/vue.php:1995
7713
  msgid "Improves the accuracy of your In-Page Analytics."
7714
  msgstr ""
7715
 
7716
+ #: languages/vue.php:1998
7717
  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."
7718
  msgstr ""
7719
 
7720
+ #: languages/vue.php:2001
7721
  msgid "Install Updates Automatically"
7722
  msgstr ""
7723
 
7724
+ #: languages/vue.php:2004
7725
  msgid "Get the latest features, bug fixes, and security updates as they are released."
7726
  msgstr ""
7727
 
7728
+ #: languages/vue.php:2007
7729
  msgid "To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
7730
  msgstr ""
7731
 
7732
+ #: languages/vue.php:2010
7733
  msgid "File Download Tracking"
7734
  msgstr ""
7735
 
7736
+ #: languages/vue.php:2013
7737
  msgid "Helps you see file downloads data."
7738
  msgstr ""
7739
 
7740
+ #: languages/vue.php:2016
7741
  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."
7742
  msgstr ""
7743
 
7744
+ #: languages/vue.php:2019
7745
  msgid "Helps you increase affiliate revenue."
7746
  msgstr ""
7747
 
7748
+ #: languages/vue.php:2022
7749
  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."
7750
  msgstr ""
7751
 
7752
+ #: languages/vue.php:2025
7753
  msgid "Affiliate Link Tracking"
7754
  msgstr ""
7755
 
7756
+ #: languages/vue.php:2028
7757
  msgid "Who Can See Reports"
7758
  msgstr ""
7759
 
7760
+ #: languages/vue.php:2031
7761
  msgid "These user roles will be able to access MonsterInsights's reports in the WordPress admin area."
7762
  msgstr ""
7763
 
7764
+ #: languages/vue.php:2034
7765
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
7766
  msgstr ""
7767
 
7768
+ #: languages/vue.php:2037
7769
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
7770
  msgstr ""
7771
 
7772
+ #: languages/vue.php:2040
7773
  msgid "Activating..."
7774
  msgstr ""
7775
 
7776
+ #: languages/vue.php:2043
7777
  msgid "Deactivating..."
7778
  msgstr ""
7779
 
7780
+ #: languages/vue.php:2046
7781
  msgid "Deactivate"
7782
  msgstr ""
7783
 
7784
  #. Translators: The status of the addon (installed/active/inactive).
7785
+ #: languages/vue.php:2050
7786
  msgid "Status: %s"
7787
  msgstr ""
7788
 
7789
+ #: languages/vue.php:2053
7790
  msgid "Not Installed"
7791
  msgstr ""
7792
 
7793
+ #: languages/vue.php:2056
7794
  msgid "Network Active"
7795
  msgstr ""
7796
 
7797
+ #: languages/vue.php:2059
7798
  msgid "Active"
7799
  msgstr ""
7800
 
7801
+ #: languages/vue.php:2062
7802
  msgid "Inactive"
7803
  msgstr ""
7804
 
7805
+ #: languages/vue.php:2065
7806
  msgid "Thank you for being a loyal MonsterInsights Lite user."
7807
  msgstr ""
7808
 
7809
+ #: languages/vue.php:2068
7810
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
7811
  msgstr ""
7812
 
7813
  #. Translators: Gets replaced with the coupon code.
7814
+ #: languages/vue.php:2072
7815
  msgid "Use coupon code %s to get 50%% off."
7816
  msgstr ""
7817
 
7818
+ #: languages/vue.php:2075
7819
  msgid "Dashboard widget"
7820
  msgstr ""
7821
 
7822
+ #: languages/vue.php:2078
7823
  msgid "Enhanced Ecommerce"
7824
  msgstr ""
7825
 
7826
+ #: languages/vue.php:2081
7827
  msgid "Banner Ads"
7828
  msgstr ""
7829
 
7830
+ #: languages/vue.php:2084
7831
  msgid "Google AMP"
7832
  msgstr ""
7833
 
7834
+ #: languages/vue.php:2087
7835
  msgid "SEO Score Tracking"
7836
  msgstr ""
7837
 
7838
+ #: languages/vue.php:2090
7839
  msgid "Welcome to MonsterInsights!"
7840
  msgstr ""
7841
 
7842
+ #: languages/vue.php:2093
7843
  msgid "Let's get you set up."
7844
  msgstr ""
7845
 
7846
+ #: languages/vue.php:2096
7847
  msgid "Which category best describes your website?"
7848
  msgstr ""
7849
 
7850
+ #: languages/vue.php:2099
7851
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
7852
  msgstr ""
7853
 
7854
+ #: languages/vue.php:2102
7855
  msgid "Business Website"
7856
  msgstr ""
7857
 
7858
  #. Translators: Make text bold.
7859
+ #: languages/vue.php:2106
7860
  msgid "Publisher %1$s(Blog)%2$s"
7861
  msgstr ""
7862
 
7863
+ #: languages/vue.php:2109
7864
  msgid "Ecommerce"
7865
  msgstr ""
7866
 
7867
+ #: languages/vue.php:2112
7868
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
7869
  msgstr ""
7870
 
7871
+ #: languages/vue.php:2115
7872
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
7873
  msgstr ""
7874
 
7875
+ #: languages/vue.php:2118
7876
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
7877
  msgstr ""
7878
 
7879
+ #: languages/vue.php:2121
7880
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
7881
  msgstr ""
7882
 
7883
+ #: languages/vue.php:2124
7884
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
7885
  msgstr ""
7886
 
7887
+ #: languages/vue.php:2127
7888
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
7889
  msgstr ""
7890
 
7891
+ #: languages/vue.php:2130
7892
  msgid "Unlock search console report to see your top performing keywords in Google."
7893
  msgstr ""
7894
 
7895
+ #: languages/vue.php:2133
7896
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
7897
  msgstr ""
7898
 
7899
+ #: languages/vue.php:2136
7900
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
7901
  msgstr ""
7902
 
7903
+ #: languages/vue.php:2139
7904
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
7905
  msgstr ""
7906
 
7907
+ #: languages/vue.php:2142
7908
  msgid "Upgrade to Pro »"
7909
  msgstr ""
7910
 
7911
+ #: languages/vue.php:2145
7912
  msgid "Pro Tip:"
7913
  msgstr ""
7914
 
7915
+ #: languages/vue.php:2148
7916
  msgid "Reset to default"
7917
  msgstr ""
7918
 
7919
+ #: languages/vue.php:2151
7920
  msgid "The value entered does not match the required format"
7921
  msgstr ""
7922
 
7923
+ #: languages/vue.php:2154
7924
  msgid "Upgrade"
7925
  msgstr ""
7926
 
7927
+ #: languages/vue.php:2157
7928
  msgid ""
7929
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
7930
  " and other privacy regulations."
7931
  msgstr ""
7932
 
7933
+ #: languages/vue.php:2161
7934
  msgid "EU Compliance"
7935
  msgstr ""
7936
 
7937
+ #: languages/vue.php:2164
7938
  msgid "Scroll Tracking"
7939
  msgstr ""
7940
 
7941
+ #: languages/vue.php:2167
7942
  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."
7943
  msgstr ""
7944
 
7945
  #. Translators: Error status and error text.
7946
+ #: languages/vue.php:2171
7947
  msgid "Can't load errors. Error: %1$s, %2$s"
7948
  msgstr ""
7949
 
7950
+ #: languages/vue.php:2174
7951
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
7952
  msgstr ""
7953
 
7954
+ #: languages/vue.php:2177
7955
  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!"
7956
  msgstr ""
7957
 
7958
+ #: languages/vue.php:2180
7959
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
7960
  msgstr ""
7961
 
7962
  #. Translators: Makes text bold.
7963
+ #: languages/vue.php:2184
7964
  msgid "Use coupon code %1$sLITEUPGRADE%2$s"
7965
  msgstr ""
7966
 
7967
+ #: languages/vue.php:2187
7968
  msgid "Ads Tracking"
7969
  msgstr ""
7970
 
7971
+ #: languages/vue.php:2190
7972
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
7973
  msgstr ""
7974
 
7975
+ #: languages/vue.php:2193
7976
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
7977
  msgstr ""
7978
 
7979
+ #: languages/vue.php:2196
7980
  msgid "Facebook Instant Articles"
7981
  msgstr ""
7982
 
7983
+ #: languages/vue.php:2199
7984
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
7985
  msgstr ""
7986
 
7987
  #. Translators: Error status and error text.
7988
+ #: languages/vue.php:2203
7989
  msgid "Can't load settings. Error: %1$s, %2$s"
7990
  msgstr ""
7991
 
7992
+ #: languages/vue.php:2206
7993
  msgid "Network error encountered. Settings not saved."
7994
  msgstr ""
7995
 
7996
  #. Translators: Make text green.
7997
+ #: languages/vue.php:2210
7998
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
7999
  msgstr ""
8000
 
8001
+ #: languages/vue.php:2213
8002
  msgid "Usage Tracking"
8003
  msgstr ""
8004
 
8005
+ #: languages/vue.php:2216
8006
  msgid "Allow Usage Tracking"
8007
  msgstr ""
8008
 
8009
+ #: languages/vue.php:2219
8010
  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."
8011
  msgstr ""
8012
 
8013
  #. Translators: Add links to documentation.
8014
+ #: languages/vue.php:2223
8015
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8016
  msgstr ""
8017
 
8018
+ #: languages/vue.php:2226
8019
  msgid "Allow usage tracking"
8020
  msgstr ""
8021
 
8022
  #. Translators: Make text bold.
8023
+ #: languages/vue.php:2230
8024
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy!"
8025
  msgstr ""
8026
 
8027
  #. Translators: Add link to upgrade.
8028
+ #: languages/vue.php:2234
8029
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
8030
  msgstr ""
8031
 
8032
  #. Translators: Make text green.
8033
+ #: languages/vue.php:2238
8034
  msgid "As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8035
  msgstr ""
8036
 
8037
  #. Translators: Make text green and add smiley face.
8038
+ #: languages/vue.php:2242
8039
  msgid "You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s"
8040
  msgstr ""
8041
 
8042
+ #: languages/vue.php:2245
8043
  msgid "Unlock PRO Features Now"
8044
  msgstr ""
8045
 
8046
+ #: languages/vue.php:2248
8047
  msgid "Paste your license key here"
8048
  msgstr ""
8049
 
8050
+ #: languages/vue.php:2251
8051
  msgid "Verify"
8052
  msgstr ""
8053
 
8054
  #. Translators: Add link to retrieve license from account area.
8055
+ #: languages/vue.php:2255
8056
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s."
8057
  msgstr ""
8058
 
8059
+ #: languages/vue.php:2258
8060
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
8061
  msgstr ""
8062
 
8063
  #. Translators: Number of days.
8064
+ #: languages/vue.php:2262
8065
  msgid "vs. Previous Day"
8066
  msgstr ""
8067
 
8068
+ #: languages/vue.php:2265
8069
  msgid "No change"
8070
  msgstr ""
8071
 
8072
+ #: languages/vue.php:2268
8073
  msgid "Authenticating"
8074
  msgstr ""
8075
 
8076
+ #: languages/vue.php:2271
8077
  msgid "Verifying Credentials"
8078
  msgstr ""
8079
 
8080
+ #: languages/vue.php:2274
8081
  msgid "Your site is connected to MonsterInsights!"
8082
  msgstr ""
8083
 
8084
+ #: languages/vue.php:2277
8085
  msgid "Deauthenticating"
8086
  msgstr ""
8087
 
8088
+ #: languages/vue.php:2280
8089
  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."
8090
  msgstr ""
8091
 
8092
+ #: languages/vue.php:2283
8093
  msgid "Connect MonsterInsights"
8094
  msgstr ""
8095
 
8096
+ #: languages/vue.php:2286
8097
  msgid "Verify Credentials"
8098
  msgstr ""
8099
 
8100
+ #: languages/vue.php:2289
8101
  msgid "Website Profile"
8102
  msgstr ""
8103
 
8104
+ #: languages/vue.php:2292
8105
  msgid "Active Profile"
8106
  msgstr ""
8107
 
8108
+ #: languages/vue.php:2295
8109
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
8110
  msgstr ""
8111
 
8112
+ #: languages/vue.php:2298
8113
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
8114
  msgstr ""
8115
 
8116
+ #: languages/vue.php:2301
8117
  msgid "Or manually enter UA code (limited functionality)"
8118
  msgstr ""
8119
 
8120
+ #: languages/vue.php:2304
8121
  msgid "Force Deauthenticate"
8122
  msgstr ""
8123
 
8124
+ #: languages/vue.php:2307
8125
  msgid "Disconnect MonsterInsights"
8126
  msgstr ""
8127
 
8128
+ #: languages/vue.php:2310
8129
  msgid "Proceed"
8130
  msgstr ""
8131
 
8132
+ #: languages/vue.php:2313
8133
  msgid "Connection Information"
8134
  msgstr ""
8135
 
8136
+ #: languages/vue.php:2316
8137
  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."
8138
  msgstr ""
8139
 
8140
+ #: languages/vue.php:2319
8141
  msgid "Hostname"
8142
  msgstr ""
8143
 
8144
+ #: languages/vue.php:2322
8145
  msgid "FTP Username"
8146
  msgstr ""
8147
 
8148
+ #: languages/vue.php:2325
8149
  msgid "FTP Password"
8150
  msgstr ""
8151
 
8152
+ #: languages/vue.php:2328
8153
  msgid "This password will not be stored on the server."
8154
  msgstr ""
8155
 
8156
+ #: languages/vue.php:2331
8157
  msgid "Connection Type"
8158
  msgstr ""
8159
 
8160
+ #: languages/vue.php:2334
8161
  msgid "Cancel"
8162
  msgstr ""
8163
 
8164
+ #: languages/vue.php:2337
8165
  msgid "Show"
8166
  msgstr ""
8167
 
8168
+ #: languages/vue.php:2340
8169
  msgid "No options available"
8170
  msgstr ""
8171
 
8172
+ #: languages/vue.php:2343
8173
  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."
8174
  msgstr ""
8175
 
8176
  #. Translators: The name of the field that is throwing a validation error.
8177
+ #: languages/vue.php:2347
8178
  msgid "%s can't be empty."
8179
  msgstr ""
8180
 
8181
+ #: languages/vue.php:2350
8182
  msgid "Duplicate values are not allowed."
8183
  msgstr ""
8184
 
8185
+ #: languages/vue.php:2353
8186
  msgid "Add Another Link Path"
8187
  msgstr ""
8188
 
8189
+ #: languages/vue.php:2356
8190
  msgid "Remove row"
8191
  msgstr ""
8192
 
8193
+ #: languages/vue.php:2362
8194
  msgid "Help Us Improve"
8195
  msgstr ""
8196
 
8197
+ #: languages/vue.php:2365
8198
  msgid "Help us better understand our users and their website needs."
8199
  msgstr ""
8200
 
8201
  #. Translators: Adds a link to the documentation.
8202
+ #: languages/vue.php:2369
8203
  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"
8204
  msgstr ""
8205
 
8206
  #. Translators: Makes text bold.
8207
+ #: languages/vue.php:2373
8208
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!"
8209
  msgstr ""
8210
 
8211
  #. Translators: Makes text green.
8212
+ #: languages/vue.php:2377
8213
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
8214
  msgstr ""
8215
 
8216
+ #: languages/vue.php:2380
8217
  msgid "Unlock All Features and Upgrade to Pro"
8218
  msgstr ""
8219
 
8220
+ #: languages/vue.php:2383
8221
  msgid "Website profile"
8222
  msgstr ""
8223
 
8224
+ #: languages/vue.php:2386
8225
  msgid "Active profile"
8226
  msgstr ""
8227
 
8228
+ #: languages/vue.php:2389
8229
  msgid "Skip and Keep Connection"
8230
  msgstr ""
8231
 
8232
  #. Translators: Placeholders are used for making text bold and adding a link.
8233
+ #: languages/vue.php:2393
8234
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
8235
  msgstr ""
8236
 
8237
+ #. Translators: Current WordPress version.
8238
+ #: languages/vue.php:2397
8239
+ 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."
 
 
 
 
 
 
 
 
 
 
 
8240
  msgstr ""
8241
 
8242
+ #. Translators: Current PHP version and recommended PHP version.
8243
+ #: languages/vue.php:2401
8244
+ 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."
8245
  msgstr ""
8246
 
8247
+ #. Translators: Current WordPress version.
8248
+ #: languages/vue.php:2405
8249
+ 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."
8250
  msgstr ""
8251
 
8252
+ #: languages/vue.php:2408
8253
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
8254
  msgstr ""
8255
 
8256
+ #: languages/vue.php:2411
8257
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
8258
  msgstr ""
8259
 
8260
+ #: languages/vue.php:2414
8261
  msgid "See Your Homepage's Overall Performance Score"
8262
  msgstr ""
8263
 
8264
+ #: languages/vue.php:2417
8265
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
8266
  msgstr ""
8267
 
8268
+ #: languages/vue.php:2420
8269
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
8270
  msgstr ""
8271
 
8272
+ #: languages/vue.php:2423
8273
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
8274
  msgstr ""
8275
 
8276
+ #: languages/vue.php:2426
8277
+ msgid "Today"
 
8278
  msgstr ""
8279
 
8280
+ #: languages/vue.php:2429
8281
+ msgid "Yesterday"
 
8282
  msgstr ""
8283
 
8284
+ #: languages/vue.php:2432
8285
+ msgid "Last Week"
8286
+ msgstr ""
8287
+
8288
+ #: languages/vue.php:2435
8289
+ msgid "Last Month"
8290
+ msgstr ""
8291
+
8292
+ #: languages/vue.php:2438
8293
+ msgid "Last 7 days"
8294
+ msgstr ""
8295
+
8296
+ #: languages/vue.php:2441
8297
+ msgid "Last 30 days"
8298
  msgstr ""
8299
 
8300
+ #: languages/vue.php:2444
8301
  msgid "Site Speed Report"
8302
  msgstr ""
8303
 
8304
+ #: languages/vue.php:2447
8305
  msgid "2020 Year in Review"
8306
  msgstr ""
8307
 
8308
+ #: languages/vue.php:2450
8309
  msgid "PrettyLinks Integration"
8310
  msgstr ""
8311
 
8312
+ #: languages/vue.php:2456
8313
  msgid "Popular Posts Widget"
8314
  msgstr ""
8315
 
8316
+ #: languages/vue.php:2459
8317
  msgid "Popular Products"
8318
  msgstr ""
8319
 
8320
+ #: languages/vue.php:2465
8321
  msgid "Inbox"
8322
  msgstr ""
8323
 
8324
+ #: languages/vue.php:2468
8325
  msgid "Back to Inbox"
8326
  msgstr ""
8327
 
8328
+ #: languages/vue.php:2471
8329
  msgid "View Dismissed"
8330
  msgstr ""
8331
 
8332
+ #: languages/vue.php:2474
8333
  msgid "Notifications"
8334
  msgstr ""
8335
 
8336
+ #: languages/vue.php:2477
8337
  msgid "Dismiss All"
8338
  msgstr ""
8339
 
8340
+ #: languages/vue.php:2480
8341
  msgid "Dismissed"
8342
  msgstr ""
8343
 
8344
+ #: languages/vue.php:2483
8345
  msgid "No Notifications"
8346
  msgstr ""
8347
 
8348
+ #: languages/vue.php:2486
8349
+ msgid "Go Back To Reports"
8350
  msgstr ""
8351
 
8352
+ #: languages/vue.php:2489
8353
+ msgid "Enable Enhanced eCommerce"
8354
  msgstr ""
8355
 
8356
+ #: languages/vue.php:2492
8357
+ msgid "Caching"
8358
  msgstr ""
8359
 
8360
+ #: languages/vue.php:2495
8361
+ msgid "Enable Data Caching"
8362
  msgstr ""
8363
 
8364
+ #: languages/vue.php:2498
8365
+ msgid "Refresh Cache Every"
8366
  msgstr ""
8367
 
8368
+ #: languages/vue.php:2501
8369
+ msgid "Choose how often to refresh the cache."
8370
  msgstr ""
8371
 
8372
+ #: languages/vue.php:2504
8373
+ msgid "Enable Ajaxify"
8374
  msgstr ""
8375
 
8376
+ #: languages/vue.php:2507
8377
+ msgid "Ajaxify Widget"
8378
  msgstr ""
8379
 
8380
+ #: languages/vue.php:2510
8381
+ msgid "Use to bypass page caching."
8382
+ msgstr ""
8383
+
8384
+ #: languages/vue.php:2513
8385
+ msgid "Empty Cache"
8386
+ msgstr ""
8387
+
8388
+ #: languages/vue.php:2516
8389
+ msgid "Click to manually wipe the cache right now."
8390
  msgstr ""
8391
 
8392
+ #: languages/vue.php:2519
8393
+ msgid "Popular posts cache emptied"
8394
+ msgstr ""
8395
+
8396
+ #: languages/vue.php:2522
8397
+ msgid "Error emptying the popular posts cache. Please try again."
8398
+ msgstr ""
8399
+
8400
+ #: languages/vue.php:2525
8401
+ msgid "Export PDF Overview Report"
8402
+ msgstr ""
8403
+
8404
+ #. Translators: Adds a link to the documentation.
8405
  #: languages/vue.php:2529
8406
+ 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."
8407
  msgstr ""
8408
 
8409
  #: languages/vue.php:2532
8410
+ msgid "Make your MonsterInsights campaign links prettier with Pretty Links!"
8411
  msgstr ""
8412
 
8413
+ #: languages/vue.php:2535
8414
+ msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
 
8415
  msgstr ""
8416
 
8417
+ #: languages/vue.php:2538
8418
+ msgid "Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!"
8419
  msgstr ""
8420
 
8421
+ #: languages/vue.php:2541
8422
+ msgid "Over 200,000 websites use Pretty Links!"
8423
  msgstr ""
8424
 
8425
+ #: languages/vue.php:2544
8426
+ msgid "Install Pretty Links"
8427
  msgstr ""
8428
 
8429
+ #: languages/vue.php:2547
8430
+ msgid "Pretty Links Installed & Activated"
8431
  msgstr ""
8432
 
8433
  #: languages/vue.php:2551
8434
+ msgid "Download Pretty Links"
8435
  msgstr ""
8436
 
8437
  #: languages/vue.php:2554
8438
+ msgid "Install Pretty Links from the WordPress.org plugin repository."
8439
  msgstr ""
8440
 
8441
  #: languages/vue.php:2557
8442
+ msgid "Activate Pretty Links"
8443
  msgstr ""
8444
 
8445
  #: languages/vue.php:2560
8446
+ msgid "Activating Pretty Links..."
8447
  msgstr ""
8448
 
8449
  #: languages/vue.php:2563
8450
+ msgid "Create New Pretty Link"
8451
  msgstr ""
8452
 
8453
  #: languages/vue.php:2566
8454
+ msgid "Create a New Pretty Link"
8455
  msgstr ""
8456
 
8457
  #: languages/vue.php:2569
8458
+ msgid "Grab your campaign link and paste it into the Target URL field."
8459
  msgstr ""
8460
 
8461
  #: languages/vue.php:2572
8462
+ msgid "Import settings from another MonsterInsights website."
8463
  msgstr ""
8464
 
8465
  #: languages/vue.php:2575
8466
+ msgid "Export settings to import into another MonsterInsights install."
8467
+ msgstr ""
8468
+
8469
+ #: languages/vue.php:2581
8470
+ 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."
8471
+ msgstr ""
8472
+
8473
+ #: languages/vue.php:2584
8474
+ msgid "Disable the Headline Analyzer"
8475
+ msgstr ""
8476
+
8477
+ #: languages/vue.php:2587
8478
+ msgid "Choose Theme"
8479
+ msgstr ""
8480
+
8481
+ #: languages/vue.php:2590
8482
  msgid "Widget Styling"
8483
  msgstr ""
8484
 
8485
+ #: languages/vue.php:2593
8486
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
8487
  msgstr ""
8488
 
8489
+ #: languages/vue.php:2596
8490
  msgid "Sort By"
8491
  msgstr ""
8492
 
8493
+ #: languages/vue.php:2599
8494
  msgid "Choose how you'd like the widget to determine your popular posts."
8495
  msgstr ""
8496
 
8497
+ #: languages/vue.php:2602
8498
  msgid "Placement"
8499
  msgstr ""
8500
 
8501
+ #: languages/vue.php:2605
8502
  msgid "Choose how you'd like to place the widget."
8503
  msgstr ""
8504
 
8505
+ #: languages/vue.php:2608
8506
  msgid "Insert After"
8507
  msgstr ""
8508
 
8509
+ #: languages/vue.php:2611
8510
  msgid "Choose where in the post body the widget will be placed."
8511
  msgstr ""
8512
 
8513
+ #: languages/vue.php:2614
8514
  msgid "Include in Post Types"
8515
  msgstr ""
8516
 
8517
+ #: languages/vue.php:2617
8518
  msgid "Exclude from specific posts"
8519
  msgstr ""
8520
 
8521
  #. Translators: Placeholders make the text bold.
8522
+ #: languages/vue.php:2621
8523
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
8524
  msgstr ""
8525
 
8526
  #. Translators: Placeholders make the text bold.
8527
+ #: languages/vue.php:2625
8528
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
8529
  msgstr ""
8530
 
8531
+ #: languages/vue.php:2628
8532
  msgid "Customize Design"
8533
  msgstr ""
8534
 
8535
+ #: languages/vue.php:2631
8536
  msgid "Loading Themes"
8537
  msgstr ""
8538
 
8539
+ #: languages/vue.php:2634
8540
  msgid "words"
8541
  msgstr ""
8542
 
8543
+ #: languages/vue.php:2637
8544
  msgid "Please select at least one post to display."
8545
  msgstr ""
8546
 
8547
  #. Translators: placeholders make text small.
8548
+ #: languages/vue.php:2641
8549
  msgid "Default Styles %1$s- As seen above.%2$s"
8550
  msgstr ""
8551
 
8552
  #. Translators: placeholders make text small.
8553
+ #: languages/vue.php:2645
8554
  msgid "No Styles %1$s- Use your own CSS.%2$s"
8555
  msgstr ""
8556
 
8557
  #. Translators: placeholders make text small.
8558
+ #: languages/vue.php:2649
8559
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
8560
  msgstr ""
8561
 
8562
  #. Translators: placeholders make text small.
8563
+ #: languages/vue.php:2653
8564
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
8565
  msgstr ""
8566
 
8567
  #. Translators: placeholders make text small.
8568
+ #: languages/vue.php:2657
8569
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
8570
  msgstr ""
8571
 
8572
  #. Translators: placeholders make text small.
8573
+ #: languages/vue.php:2661
8574
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
8575
  msgstr ""
8576
 
8577
  #. Translators: placeholders make text small.
8578
+ #: languages/vue.php:2665
8579
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
8580
  msgstr ""
8581
 
8582
+ #: languages/vue.php:2668
8583
  msgid "Display Title"
8584
  msgstr ""
8585
 
8586
+ #: languages/vue.php:2674
8587
  msgid "Title your widget and set it’s display preferences."
8588
  msgstr ""
8589
 
8590
+ #: languages/vue.php:2677
 
 
 
 
 
 
 
 
8591
  msgid "Site Speed"
8592
  msgstr ""
8593
 
8594
+ #: languages/vue.php:2680
8595
+ msgid "This feature requires MonsterInsights Pro"
8596
  msgstr ""
8597
 
8598
+ #: languages/vue.php:2683
8599
+ msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8600
  msgstr ""
8601
 
8602
+ #: languages/vue.php:2686
8603
+ msgid "Upgrade to Pro and Unlock Popular Products"
8604
  msgstr ""
8605
 
8606
+ #: languages/vue.php:2689
8607
+ msgid "View all Pro features"
8608
  msgstr ""
8609
 
8610
+ #: languages/vue.php:2692
8611
+ msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
8612
  msgstr ""
8613
 
8614
+ #: languages/vue.php:2695
8615
+ msgid "Your 2020 Analytics Report"
8616
  msgstr ""
8617
 
8618
+ #: languages/vue.php:2701
8619
+ msgid "January 1, 2020 - December 31, 2020"
8620
  msgstr ""
8621
 
8622
+ #: languages/vue.php:2704
8623
+ msgid "A Tip for 2021"
8624
  msgstr ""
8625
 
8626
+ #: languages/vue.php:2707
8627
+ msgid "A Tip For 2021"
8628
  msgstr ""
8629
 
8630
+ #: languages/vue.php:2710
8631
+ msgid "Here's to an amazing 2021!"
8632
  msgstr ""
8633
 
8634
+ #: languages/vue.php:2713
8635
+ msgid "Try our other popular WordPress plugins to grow your website in 2021."
8636
  msgstr ""
8637
 
8638
+ #: languages/vue.php:2716
8639
+ msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
8640
  msgstr ""
8641
 
8642
+ #: languages/vue.php:2719
8643
+ msgid "Copyright MonsterInsights, 2021"
8644
  msgstr ""
8645
 
8646
+ #: languages/vue.php:2722
8647
+ msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
8648
  msgstr ""
8649
 
8650
+ #. Translators: Number of minutes spent on site.
8651
+ #: languages/vue.php:2726
8652
+ msgid "Each visitor spent an average of %s minutes on your website in 2020."
8653
  msgstr ""
8654
 
8655
+ #. Translators: Placeholder adds a line break.
8656
+ #: languages/vue.php:2730
8657
+ msgid "You can customize your %sdate range only in the PRO version."
8658
  msgstr ""
8659
 
8660
+ #: languages/vue.php:2733
8661
+ msgid "You can add maximum 5 items."
8662
  msgstr ""
8663
 
8664
+ #: languages/vue.php:2736
8665
+ msgid "At least 0 item required."
8666
  msgstr ""
8667
 
8668
+ #: languages/vue.php:2739
8669
+ msgid "View notifications"
8670
  msgstr ""
8671
 
8672
+ #: languages/vue.php:2742
8673
  msgid "Export PDF Report"
8674
  msgstr ""
8675
 
8676
+ #: languages/vue.php:2745
8677
  msgid "You can export PDF reports only in the PRO version."
8678
  msgstr ""
8679
 
8680
+ #: languages/vue.php:2748
8681
+ msgid "Popular Posts data can be fetched correctly"
 
 
 
 
 
 
 
 
 
 
 
 
 
8682
  msgstr ""
8683
 
8684
+ #: languages/vue.php:2751
8685
+ 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."
8686
  msgstr ""
8687
 
8688
+ #: languages/vue.php:2754
8689
+ msgid "Close"
8690
  msgstr ""
8691
 
8692
+ #: languages/vue.php:2757
8693
+ msgid "Add Top 5 Posts from Google Analytics"
8694
  msgstr ""
8695
 
8696
+ #: languages/vue.php:2760
8697
+ 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. Please use the button below to confirm your configuration is correct."
8698
  msgstr ""
8699
 
8700
+ #: languages/vue.php:2763
8701
+ msgid "Test Automated Posts"
8702
  msgstr ""
8703
 
8704
+ #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8705
+ #: languages/vue.php:2767
8706
+ msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8707
  msgstr ""
8708
 
8709
+ #: languages/vue.php:2770
8710
+ msgid "Automated + Curated"
8711
  msgstr ""
8712
 
8713
+ #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8714
  #: languages/vue.php:2774
8715
+ 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."
8716
  msgstr ""
8717
 
8718
+ #. Translators: Placeholder gets replaced with current license version.
8719
+ #: languages/vue.php:2778
8720
+ msgid "Pro version is required. Your current license level is: %s"
8721
  msgstr ""
8722
 
8723
+ #: languages/vue.php:2781
8724
+ msgid "Verifying Popular Posts data"
8725
  msgstr ""
8726
 
 
8727
  #: languages/vue.php:2784
8728
+ msgid "Copy to Pretty Links"
8729
  msgstr ""
8730
 
8731
+ #: languages/vue.php:2787
8732
+ msgid "Make your campaign links prettier!"
 
8733
  msgstr ""
8734
 
8735
+ #: languages/vue.php:2790
8736
+ msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
 
8737
  msgstr ""
8738
 
8739
+ #: languages/vue.php:2793
8740
+ msgid "SharedCount API Key"
8741
  msgstr ""
8742
 
8743
+ #: languages/vue.php:2796
8744
+ msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
8745
  msgstr ""
8746
 
8747
+ #: languages/vue.php:2799
8748
+ msgid "Start Indexing"
8749
  msgstr ""
8750
 
8751
+ #: languages/vue.php:2802
8752
+ msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
8753
  msgstr ""
8754
 
8755
+ #: languages/vue.php:2805
8756
+ msgid "Indexing completed, counts will update automatically every day."
8757
+ msgstr ""
8758
+
8759
+ #: languages/vue.php:2808
8760
+ msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
8761
  msgstr ""
8762
 
 
8763
  #: languages/vue.php:2811
8764
+ msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
8765
  msgstr ""
8766
 
8767
  #: languages/vue.php:2814
8768
+ msgid "Color"
8769
  msgstr ""
8770
 
8771
+ #: languages/vue.php:2817
8772
+ msgid "Size"
 
8773
  msgstr ""
8774
 
8775
+ #: languages/vue.php:2820
8776
+ msgid "Title"
8777
  msgstr ""
8778
 
8779
+ #: languages/vue.php:2823
8780
+ msgid "Label"
8781
  msgstr ""
8782
 
8783
+ #: languages/vue.php:2826
8784
+ msgid "Background"
8785
  msgstr ""
8786
 
8787
+ #: languages/vue.php:2829
8788
+ msgid "Border"
8789
  msgstr ""
8790
 
8791
+ #: languages/vue.php:2832
8792
+ msgid "Icon"
8793
  msgstr ""
8794
 
8795
+ #: languages/vue.php:2839
8796
+ msgid "Multiple Entries"
8797
  msgstr ""
8798
 
8799
+ #: languages/vue.php:2842
8800
+ msgid "Total Number of Widgets to Show"
8801
  msgstr ""
8802
 
8803
+ #: languages/vue.php:2845
8804
+ msgid "Choose how many widgets will be placed in a single Post."
 
8805
  msgstr ""
8806
 
8807
+ #: languages/vue.php:2848
8808
+ msgid "Minimum Distance Between Widgets"
 
8809
  msgstr ""
8810
 
 
8811
  #: languages/vue.php:2851
8812
+ msgid "Choose the distance between widgets."
8813
  msgstr ""
8814
 
8815
  #: languages/vue.php:2854
8816
+ msgid "Minimum Word Count to Display Multiple Widgets"
8817
  msgstr ""
8818
 
8819
  #: languages/vue.php:2857
8820
+ msgid "Choose the minimum word count for a Post to have multiple entries."
8821
  msgstr ""
8822
 
8823
  #: languages/vue.php:2860
8824
+ msgid "Tracking Mode"
8825
  msgstr ""
8826
 
8827
  #: languages/vue.php:2863
8828
+ msgid "Use Global Site Tag (gtag.js)"
8829
  msgstr ""
8830
 
8831
  #: languages/vue.php:2866
8832
+ msgid "Upgrade to the gtag.js tracking code for the latest Google Analytics tracking features. This will be the default tracking option in a future release and analytics.js tracking will no longer be supported."
8833
  msgstr ""
8834
 
8835
  #: languages/vue.php:2869
8836
+ msgid "Email Summaries"
8837
  msgstr ""
8838
 
8839
  #: languages/vue.php:2872
8840
+ msgid "Export PDF Reports"
8841
  msgstr ""
8842
 
8843
  #: languages/vue.php:2875
8844
+ msgid "Pro version is required"
8845
  msgstr ""
8846
 
8847
+ #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8848
+ #: languages/vue.php:2879
8849
+ 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)."
8850
  msgstr ""
8851
 
8852
+ #: languages/vue.php:2882
8853
+ msgid "Only Show Posts from These Categories"
8854
  msgstr ""
8855
 
8856
+ #: languages/vue.php:2885
8857
+ msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8858
  msgstr ""
8859
 
8860
+ #: languages/vue.php:2888
8861
+ msgid "Select posts/search"
8862
  msgstr ""
8863
 
8864
+ #: languages/vue.php:2891
8865
+ msgid "Oops! No posts found."
 
8866
  msgstr ""
8867
 
8868
+ #: languages/vue.php:2894
8869
+ msgid "Search by post title"
8870
  msgstr ""
8871
 
8872
+ #: languages/vue.php:2897
8873
+ msgid "Can't load posts."
8874
  msgstr ""
8875
 
8876
+ #. Translators: Minimum and maximum number that can be used.
8877
+ #: languages/vue.php:2901
8878
+ msgid "Please enter a value between %1$s and %2$s"
8879
  msgstr ""
8880
 
8881
+ #. Translators: The minimum set value.
8882
+ #: languages/vue.php:2905
8883
+ msgid "Please enter a value higher than %s"
8884
  msgstr ""
8885
 
8886
+ #. Translators: The maximum set value.
8887
  #: languages/vue.php:2909
8888
+ msgid "Please enter a value lower than %s"
8889
  msgstr ""
8890
 
8891
  #: languages/vue.php:2912
8892
+ msgid "Please enter a number"
8893
  msgstr ""
8894
 
8895
  #: languages/vue.php:2915
8896
+ msgid "Value has to be a round number"
8897
  msgstr ""
8898
 
8899
  #: languages/vue.php:2918
8900
+ msgid "Days"
8901
  msgstr ""
8902
 
8903
+ #. Translators: placeholders make text small.
8904
+ #: languages/vue.php:2922
8905
+ msgid "7 days"
8906
  msgstr ""
8907
 
8908
+ #: languages/vue.php:2925
8909
+ msgid "30 days"
8910
  msgstr ""
8911
 
8912
+ #: languages/vue.php:2928
8913
+ msgid "Custom"
8914
  msgstr ""
8915
 
8916
+ #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
8917
+ #: languages/vue.php:2932
8918
+ msgid "%1$sPage %3$s%2$s of %4$s"
8919
  msgstr ""
8920
 
8921
+ #: languages/vue.php:2935
8922
+ 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"
8923
  msgstr ""
8924
 
8925
+ #: languages/vue.php:2938
8926
+ msgid "Author/Date"
8927
  msgstr ""
8928
 
8929
+ #: languages/vue.php:2950
8930
+ msgid "Choose which content you would like displayed in the widget."
8931
  msgstr ""
8932
 
8933
+ #: languages/vue.php:2962
8934
+ msgid "Comments"
8935
  msgstr ""
8936
 
8937
+ #: languages/vue.php:2968
8938
+ msgid "Choose how many posts you’d like displayed in the widget."
8939
  msgstr ""
8940
 
8941
+ #: languages/vue.php:2971
8942
+ msgid "Wide"
8943
+ msgstr ""
8944
+
8945
+ #: languages/vue.php:2974
8946
+ msgid "Narrow"
8947
  msgstr ""
8948
 
8949
+ #: languages/vue.php:2977
8950
  msgid "Display Method"
8951
  msgstr ""
8952
 
8953
+ #: languages/vue.php:2980
8954
  msgid "There are two ways to manual include the widget in your posts."
8955
  msgstr ""
8956
 
8957
+ #: languages/vue.php:2983
8958
  msgid "Using the Gutenberg Block"
8959
  msgstr ""
8960
 
8961
+ #: languages/vue.php:2986
8962
  msgid "Using the Shortcode"
8963
  msgstr ""
8964
 
8965
+ #: languages/vue.php:2989
8966
  msgid "Learn how to insert the widget using Gutenberg blocks."
8967
  msgstr ""
8968
 
8969
+ #: languages/vue.php:2992
8970
  msgid "Learn how to insert the widget using out Shortcode."
8971
  msgstr ""
8972
 
8973
+ #: languages/vue.php:2995
8974
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
8975
  msgstr ""
8976
 
8977
+ #: languages/vue.php:2998
8978
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
8979
  msgstr ""
8980
 
8981
+ #: languages/vue.php:3001
8982
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”."
8983
  msgstr ""
8984
 
8985
+ #: languages/vue.php:3004
8986
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
8987
  msgstr ""
8988
 
8989
+ #: languages/vue.php:3007
8990
  msgid "Shortcode"
8991
  msgstr ""
8992
 
8993
+ #: languages/vue.php:3010
8994
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
8995
  msgstr ""
8996
 
8997
+ #: languages/vue.php:3013
8998
  msgid "Copy Shortcode"
8999
  msgstr ""
9000
 
9001
+ #: languages/vue.php:3016
9002
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9003
  msgstr ""
9004
 
9005
+ #: languages/vue.php:3019
9006
+ msgid "Unlock with %s"
9007
  msgstr ""
9008
 
9009
+ #: languages/vue.php:3022
9010
+ msgid "Automatic Placement"
9011
  msgstr ""
9012
 
9013
+ #: languages/vue.php:3025
9014
+ msgid "Display using Gutenberg Blocks"
9015
  msgstr ""
9016
 
9017
+ #: languages/vue.php:3028
9018
+ msgid "Embed Options"
9019
  msgstr ""
9020
 
9021
+ #: languages/vue.php:3031
9022
+ msgid "All Embed Options can be used in conjunction with one another."
9023
  msgstr ""
9024
 
9025
  #: languages/vue.php:3034
9026
+ msgid "Using Automatic Embed"
9027
  msgstr ""
9028
 
9029
  #: languages/vue.php:3037
9030
+ 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."
9031
  msgstr ""
9032
 
9033
  #: languages/vue.php:3040
9034
+ 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."
9035
  msgstr ""
9036
 
9037
  #: languages/vue.php:3043
9038
+ msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9039
  msgstr ""
9040
 
9041
  #: languages/vue.php:3046
9042
+ msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9043
  msgstr ""
9044
 
9045
  #: languages/vue.php:3049
9046
+ msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9047
  msgstr ""
9048
 
9049
  #: languages/vue.php:3052
9050
+ 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."
9051
  msgstr ""
9052
 
9053
  #: languages/vue.php:3055
9054
+ 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."
9055
  msgstr ""
9056
 
9057
  #: languages/vue.php:3058
9058
+ msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9059
  msgstr ""
9060
 
9061
  #: languages/vue.php:3061
9062
+ msgid "Display using a Shortcode"
9063
  msgstr ""
9064
 
9065
  #: languages/vue.php:3064
9066
+ msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9067
  msgstr ""
9068
 
9069
  #: languages/vue.php:3067
9070
+ msgid "Enable Automatic Placement"
9071
  msgstr ""
9072
 
9073
  #: languages/vue.php:3070
9074
+ msgid "Display in a Sidebar"
9075
  msgstr ""
9076
 
9077
  #: languages/vue.php:3073
9078
+ msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9079
  msgstr ""
9080
 
9081
  #: languages/vue.php:3076
9082
+ msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9083
  msgstr ""
9084
 
9085
  #: languages/vue.php:3079
9086
+ msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9087
  msgstr ""
9088
 
9089
  #: languages/vue.php:3082
9090
+ msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9091
  msgstr ""
9092
 
9093
  #: languages/vue.php:3085
9094
+ msgid "Used on over 3,000,000 websites!"
9095
  msgstr ""
9096
 
9097
  #: languages/vue.php:3088
9098
+ msgid "+ Add Role"
9099
  msgstr ""
9100
 
9101
  #: languages/vue.php:3091
9102
+ msgid "Compatibility mode"
9103
  msgstr ""
9104
 
9105
  #: languages/vue.php:3094
9106
+ msgid "Enable _gtagTracker Compatibility"
9107
  msgstr ""
9108
 
9109
+ #. Translators: Placeholder gets replaced with default GA js function.
9110
+ #: languages/vue.php:3098
9111
+ msgid "This enables MonsterInsights to work with plugins that use %1$s and don't support %2$s"
9112
  msgstr ""
9113
 
9114
+ #: googleanalytics.php:284
9115
+ #: googleanalytics.php:298
9116
  msgid "Cheatin&#8217; huh?"
9117
  msgstr ""
9118
 
9119
+ #: googleanalytics.php:427
9120
  msgid "Sorry, but your version of WordPress does not meet MonsterInsights's required version of %1$s3.8%2$s to run properly. The plugin not been activated. %3$sClick here to return to the Dashboard%4$s."
9121
  msgstr ""
9122
 
9123
+ #: googleanalytics.php:448
9124
  msgid "Please %1$suninstall%2$s the MonsterInsights Lite Plugin. Your Pro version of MonsterInsights may not work as expected until the Lite version is uninstalled."
9125
  msgstr ""
9126
 
languages/vue.php CHANGED
@@ -11,10 +11,10 @@ $generated_i18n_strings = array(
11
  __( 'Loading settings', 'google-analytics-for-wordpress' ),
12
 
13
  // Reference: src/modules/widget/components/WidgetReportError.vue:25
14
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:124
15
  __( 'Error', 'google-analytics-for-wordpress' ),
16
 
17
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:16
18
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
19
 
20
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
@@ -27,46 +27,46 @@ $generated_i18n_strings = array(
27
  /* Translators: Adds an arrow icon. */
28
  __( 'Continue %s', 'google-analytics-for-wordpress' ),
29
 
30
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
31
  __( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-for-wordpress' ),
32
 
33
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:182
34
  __( 'Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
35
 
36
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
37
  __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-for-wordpress' ),
38
 
39
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
40
  __( 'Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
41
 
42
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
43
  __( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-for-wordpress' ),
44
 
45
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:190
46
  __( 'Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.', 'google-analytics-for-wordpress' ),
47
 
48
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:193
49
  __( 'Unlock the Dimensions Report and Track Your Own Custom Data', 'google-analytics-for-wordpress' ),
50
 
51
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
52
  __( 'Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
53
 
54
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
55
  __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-for-wordpress' ),
56
 
57
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198
58
  __( 'Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.', 'google-analytics-for-wordpress' ),
59
 
60
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
61
  __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-for-wordpress' ),
62
 
63
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
64
  __( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-for-wordpress' ),
65
 
66
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:205
67
  __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-for-wordpress' ),
68
 
69
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
70
  __( 'Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.', 'google-analytics-for-wordpress' ),
71
 
72
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:188
@@ -171,8 +171,7 @@ $generated_i18n_strings = array(
171
  // Reference: src/modules/frontend/monsterinsights-frontend.vue:36
172
  __( 'Insights', 'google-analytics-for-wordpress' ),
173
 
174
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:238
175
- // Reference: src/modules/widget/store/index.js:14
176
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
177
 
178
  // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:41
@@ -201,12 +200,13 @@ $generated_i18n_strings = array(
201
  __( 'See All Features', 'google-analytics-for-wordpress' ),
202
 
203
  // Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
 
204
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
205
 
206
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
207
  __( 'per year', 'google-analytics-for-wordpress' ),
208
 
209
- // Reference: src/modules/addons/monsterinsights-addons-Lite.vue:80
210
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
211
 
212
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136
@@ -264,12 +264,14 @@ $generated_i18n_strings = array(
264
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
265
 
266
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:35
 
267
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
268
 
269
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:184
270
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
271
 
272
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:33
 
273
  __( 'Google Optimize', 'google-analytics-for-wordpress' ),
274
 
275
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:186
@@ -345,7 +347,7 @@ $generated_i18n_strings = array(
345
  // Reference: src/modules/addons/store/actions.js:49
346
  __( 'Activate', 'google-analytics-for-wordpress' ),
347
 
348
- // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:26
349
  __( 'Learn More', 'google-analytics-for-wordpress' ),
350
 
351
  // Reference: src/components/TheQuickLinks.vue:31
@@ -398,20 +400,20 @@ $generated_i18n_strings = array(
398
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
399
 
400
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:23
 
401
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
402
 
403
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportSearchConsole-Lite.vue:26
404
  // Reference: src/modules/reports/routes/index.js:49
405
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
406
 
407
  // Reference: src/modules/reports/routes/index.js:57
408
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
409
 
410
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportForms-Lite.vue:25
411
  // Reference: src/modules/reports/routes/index.js:65
412
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
413
 
414
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:51
 
415
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
416
 
417
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
@@ -419,17 +421,15 @@ $generated_i18n_strings = array(
419
  // Reference: src/modules/reports/routes/index.js:85
420
  __( '2019 Year in Review', 'google-analytics-for-wordpress' ),
421
 
422
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:15
423
  // Reference: src/modules/settings/routes/network.js:35
424
  // Reference: src/modules/settings/routes/site.js:122
425
  __( 'About Us', 'google-analytics-for-wordpress' ),
426
 
427
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:16
428
  // Reference: src/modules/settings/routes/network.js:43
429
  // Reference: src/modules/settings/routes/site.js:130
430
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
431
 
432
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
433
  // Reference: src/modules/settings/routes/network.js:52
434
  // Reference: src/modules/settings/routes/site.js:139
435
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
@@ -458,9 +458,11 @@ $generated_i18n_strings = array(
458
  __( 'Advanced', 'google-analytics-for-wordpress' ),
459
 
460
  // Reference: src/modules/settings/routes/site.js:92
 
461
  __( 'URL Builder', 'google-analytics-for-wordpress' ),
462
 
463
  // Reference: src/modules/settings/routes/site.js:100
 
464
  __( 'Import Export', 'google-analytics-for-wordpress' ),
465
 
466
  // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
@@ -479,27 +481,21 @@ $generated_i18n_strings = array(
479
  __( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-for-wordpress' ),
480
 
481
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:253
482
- // Reference: src/modules/widget/store/index.js:20
483
  __( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
484
 
485
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:264
486
- // Reference: src/modules/widget/store/index.js:21
487
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
488
 
489
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:247
490
- // Reference: src/modules/widget/store/index.js:27
491
  __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
492
 
493
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:260
494
- // Reference: src/modules/widget/store/index.js:28
495
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
496
 
497
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:248
498
- // Reference: src/modules/widget/store/index.js:34
499
  __( 'Device Breakdown', 'google-analytics-for-wordpress' ),
500
 
501
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:261
502
- // Reference: src/modules/widget/store/index.js:35
503
  __( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-for-wordpress' ),
504
 
505
  // Reference: src/modules/widget/store/index.js:41
@@ -532,7 +528,7 @@ $generated_i18n_strings = array(
532
  // Reference: src/modules/widget/store/index.js:70
533
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
534
 
535
- // Reference: src/modules/widget/store/index.js:76
536
  __( 'Overview', 'google-analytics-for-wordpress' ),
537
 
538
  // Reference: src/modules/widget/store/index.js:82
@@ -556,8 +552,7 @@ $generated_i18n_strings = array(
556
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
557
  __( 'MonsterInsights makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-for-wordpress' ),
558
 
559
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:57
560
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:98
561
  __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
562
 
563
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
@@ -731,32 +726,31 @@ $generated_i18n_strings = array(
731
  // Reference: src/modules/widget/components/WidgetReportsLink.vue:18
732
  __( 'Go to the Analytics Dashboard', 'google-analytics-for-wordpress' ),
733
 
734
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:45
735
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:91
736
  __( 'License Key', 'google-analytics-for-wordpress' ),
737
 
738
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:47
739
  /* Translators: Add link to retrieve license key from account. */
740
  __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
741
 
742
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:48
743
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:92
744
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
745
 
746
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:49
747
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:93
748
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
749
 
750
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:50
751
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:94
752
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
753
 
 
754
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:51
755
  __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
756
 
 
757
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:53
758
  __( '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' ),
759
 
 
760
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:54
761
  __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
762
 
@@ -776,38 +770,35 @@ $generated_i18n_strings = array(
776
  /* Translators: Make text green. */
777
  __( '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!', 'google-analytics-for-wordpress' ),
778
 
779
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:328
780
- // Reference: src/modules/reports/components/upsells/ReportUpsellOverlay.vue:29
781
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
782
 
783
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:78
784
  /* Translators: placeholders make text small. */
785
  __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
786
 
787
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:83
788
  /* Translators: placeholders make text small. */
789
  __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
790
 
791
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:88
792
  /* Translators: placeholders make text small. */
793
  __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
794
 
795
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:95
796
  __( 'Automatic Updates', 'google-analytics-for-wordpress' ),
797
 
798
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:55
799
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:96
800
  __( 'Setup Wizard', 'google-analytics-for-wordpress' ),
801
 
802
- // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:56
803
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:97
804
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
805
 
806
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:241
807
  /* Translators: Placeholder adds a line break. */
808
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
809
 
810
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:244
811
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:63
812
  /* Translators: Number of unique pageviews. */
813
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
@@ -827,7 +818,7 @@ $generated_i18n_strings = array(
827
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:245
828
  __( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
829
 
830
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:59
831
  __( 'Demographics', 'google-analytics-for-wordpress' ),
832
 
833
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:60
@@ -1092,7 +1083,7 @@ $generated_i18n_strings = array(
1092
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:68
1093
  __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
1094
 
1095
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:69
1096
  __( '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' ),
1097
 
1098
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:70
@@ -1279,7 +1270,7 @@ $generated_i18n_strings = array(
1279
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:284
1280
  __( 'Average Age', 'google-analytics-for-wordpress' ),
1281
 
1282
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:106
1283
  __( 'Behavior', 'google-analytics-for-wordpress' ),
1284
 
1285
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:286
@@ -1555,7 +1546,7 @@ $generated_i18n_strings = array(
1555
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:126
1556
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-for-wordpress' ),
1557
 
1558
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:84
1559
  __( 'Not Available', 'google-analytics-for-wordpress' ),
1560
 
1561
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:133
@@ -1803,7 +1794,7 @@ $generated_i18n_strings = array(
1803
  // Reference: src/modules/wizard-onboarding/api/index.js:22
1804
  __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
1805
 
1806
- // Reference: src/modules/auth/api/index.js:146
1807
  /* Translators: Error status and error text. */
1808
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1809
 
@@ -1902,7 +1893,7 @@ $generated_i18n_strings = array(
1902
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
1903
  __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
1904
 
1905
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:106
1906
  __( 'Installing...', 'google-analytics-for-wordpress' ),
1907
 
1908
  // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:31
@@ -1937,7 +1928,7 @@ $generated_i18n_strings = array(
1937
  // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:48
1938
  __( 'View all MonsterInsights addons', 'google-analytics-for-wordpress' ),
1939
 
1940
- // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:49
1941
  __( 'Save and continue', 'google-analytics-for-wordpress' ),
1942
 
1943
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
@@ -2045,13 +2036,13 @@ $generated_i18n_strings = array(
2045
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
2046
  __( 'Enhanced Link Attribution is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
2047
 
2048
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:100
2049
  __( 'Activating...', 'google-analytics-for-wordpress' ),
2050
 
2051
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:103
2052
  __( 'Deactivating...', 'google-analytics-for-wordpress' ),
2053
 
2054
- // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:109
2055
  __( 'Deactivate', 'google-analytics-for-wordpress' ),
2056
 
2057
  // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:43
@@ -2153,20 +2144,20 @@ $generated_i18n_strings = array(
2153
  // Reference: src/modules/widget/components/WidgetTips.vue:70
2154
  __( 'Pro Tip:', 'google-analytics-for-wordpress' ),
2155
 
2156
- // Reference: src/modules/settings/components/input/SettingsInputText.vue:46
2157
  __( 'Reset to default', 'google-analytics-for-wordpress' ),
2158
 
2159
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:47
2160
  __( 'The value entered does not match the required format', 'google-analytics-for-wordpress' ),
2161
 
2162
- // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:24
2163
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
2164
 
2165
- // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:20
2166
  __( 'The EU Compliance addon allows you to improve compliance with GDPR
2167
  and other privacy regulations.', 'google-analytics-for-wordpress' ),
2168
 
2169
- // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:21
2170
  __( 'EU Compliance', 'google-analytics-for-wordpress' ),
2171
 
2172
  // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:18
@@ -2212,23 +2203,22 @@ $generated_i18n_strings = array(
2212
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2213
 
2214
  // Reference: src/modules/popular-posts/api/index.js:47
2215
- // Reference: src/modules/settings/api/index.js:77
2216
  __( 'Network error encountered. Settings not saved.', 'google-analytics-for-wordpress' ),
2217
 
2218
  // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
2219
  /* Translators: Make text green. */
2220
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-for-wordpress' ),
2221
 
2222
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
2223
  __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
2224
 
2225
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:28
2226
  __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
2227
 
2228
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
2229
  __( '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' ),
2230
 
2231
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:43
2232
  /* Translators: Add links to documentation. */
2233
  __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2234
 
@@ -2343,7 +2333,7 @@ $generated_i18n_strings = array(
2343
  // Reference: src/components/TheAppFTPForm.vue:99
2344
  __( 'Cancel', 'google-analytics-for-wordpress' ),
2345
 
2346
- // Reference: src/modules/reports/components/ReportTableBox.vue:65
2347
  __( 'Show', 'google-analytics-for-wordpress' ),
2348
 
2349
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
@@ -2402,28 +2392,22 @@ $generated_i18n_strings = array(
2402
  /* Translators: Placeholders are used for making text bold and adding a link. */
2403
  __( 'You\'re using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.', 'google-analytics-for-wordpress' ),
2404
 
2405
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:42
2406
- __( 'Today', 'google-analytics-for-wordpress' ),
2407
-
2408
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:48
2409
- __( 'Yesterday', 'google-analytics-for-wordpress' ),
2410
-
2411
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:54
2412
- __( 'Last Week', 'google-analytics-for-wordpress' ),
2413
-
2414
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:60
2415
- __( 'Last Month', 'google-analytics-for-wordpress' ),
2416
 
2417
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:66
2418
- __( 'Last 7 days', 'google-analytics-for-wordpress' ),
 
2419
 
2420
- // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:72
2421
- __( 'Last 30 days', 'google-analytics-for-wordpress' ),
 
2422
 
2423
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:209
2424
  __( 'Unlock the Site Speed Report and Improve the Performance of Your Site', 'google-analytics-for-wordpress' ),
2425
 
2426
- // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:210
2427
  __( 'See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking', 'google-analytics-for-wordpress' ),
2428
 
2429
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:318
@@ -2438,37 +2422,40 @@ $generated_i18n_strings = array(
2438
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:321
2439
  __( 'Learn How to Improve the Core Metrics that Google Uses to Rank Your Site', 'google-analytics-for-wordpress' ),
2440
 
2441
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:27
2442
- /* Translators: Current WordPress version. */
2443
- __( '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.', 'google-analytics-for-wordpress' ),
2444
 
2445
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:41
2446
- /* Translators: Current PHP version and recommended PHP version. */
2447
- __( '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.', 'google-analytics-for-wordpress' ),
2448
 
2449
- // Reference: src/plugins/monsterinsights-compatibility-plugin.js:55
2450
- /* Translators: Current WordPress version. */
2451
- __( '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.', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
2452
 
2453
  // Reference: src/modules/reports/routes/index.js:81
2454
  __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
2455
 
2456
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:263
2457
  __( '2020 Year in Review', 'google-analytics-for-wordpress' ),
2458
 
2459
  // Reference: src/modules/settings/routes/site.js:108
2460
  __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
2461
 
2462
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
2463
- // Reference: src/modules/settings/routes/site.js:154
2464
  __( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
2465
 
2466
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
2467
- // Reference: src/modules/settings/routes/site.js:162
2468
  __( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
2469
 
2470
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
2471
- // Reference: src/modules/settings/routes/site.js:171
2472
  __( 'Popular Products', 'google-analytics-for-wordpress' ),
2473
 
2474
  // Reference: src/modules/settings/routes/site.js:180
@@ -2495,45 +2482,11 @@ $generated_i18n_strings = array(
2495
  // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:81
2496
  __( 'No Notifications', 'google-analytics-for-wordpress' ),
2497
 
2498
- // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:265
2499
- __( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
2500
-
2501
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:260
2502
- __( 'Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
2503
-
2504
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:262
2505
- __( 'Your 2020 Analytics Report', 'google-analytics-for-wordpress' ),
2506
-
2507
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:264
2508
- __( 'See how your website performed this year and find tips along the way to help grow even more in 2021!', 'google-analytics-for-wordpress' ),
2509
-
2510
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:274
2511
- __( 'January 1, 2020 - December 31, 2020', 'google-analytics-for-wordpress' ),
2512
-
2513
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275
2514
- __( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
2515
-
2516
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:291
2517
- __( 'A Tip For 2021', 'google-analytics-for-wordpress' ),
2518
-
2519
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:308
2520
- __( 'Here\'s to an amazing 2021!', 'google-analytics-for-wordpress' ),
2521
-
2522
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:315
2523
- __( 'Try our other popular WordPress plugins to grow your website in 2021.', 'google-analytics-for-wordpress' ),
2524
-
2525
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:317
2526
- __( 'Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
2527
-
2528
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:326
2529
- __( 'Copyright MonsterInsights, 2021', 'google-analytics-for-wordpress' ),
2530
-
2531
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:373
2532
- __( 'See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success.', 'google-analytics-for-wordpress' ),
2533
 
2534
- // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:459
2535
- /* Translators: Number of minutes spent on site. */
2536
- __( 'Each visitor spent an average of %s minutes on your website in 2020.', 'google-analytics-for-wordpress' ),
2537
 
2538
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:45
2539
  __( 'Caching', 'google-analytics-for-wordpress' ),
@@ -2568,19 +2521,81 @@ $generated_i18n_strings = array(
2568
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92
2569
  __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
2570
 
2571
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2572
  __( 'Choose Theme', 'google-analytics-for-wordpress' ),
2573
 
2574
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107
2575
  __( 'Widget Styling', 'google-analytics-for-wordpress' ),
2576
 
2577
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:108
2578
  __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
2579
 
2580
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:109
2581
  __( 'Sort By', 'google-analytics-for-wordpress' ),
2582
 
2583
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:110
2584
  __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
2585
 
2586
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:111
@@ -2595,24 +2610,24 @@ $generated_i18n_strings = array(
2595
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2596
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2597
 
2598
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:115
2599
  __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
2600
 
2601
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:116
2602
  __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
2603
 
2604
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:118
2605
  /* Translators: Placeholders make the text bold. */
2606
  __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
2607
 
2608
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:120
2609
  /* Translators: Placeholders make the text bold. */
2610
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
2611
 
2612
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
2613
  __( 'Customize Design', 'google-analytics-for-wordpress' ),
2614
 
2615
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
2616
  __( 'Loading Themes', 'google-analytics-for-wordpress' ),
2617
 
2618
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
@@ -2621,23 +2636,23 @@ $generated_i18n_strings = array(
2621
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124
2622
  __( 'Please select at least one post to display.', 'google-analytics-for-wordpress' ),
2623
 
2624
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
2625
  /* Translators: placeholders make text small. */
2626
  __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
2627
 
2628
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
2629
  /* Translators: placeholders make text small. */
2630
  __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
2631
 
2632
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:141
2633
  /* Translators: placeholders make text small. */
2634
  __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
2635
 
2636
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:146
2637
  /* Translators: placeholders make text small. */
2638
  __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
2639
 
2640
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:151
2641
  /* Translators: placeholders make text small. */
2642
  __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
2643
 
@@ -2658,77 +2673,70 @@ $generated_i18n_strings = array(
2658
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108
2659
  __( 'Title your widget and set it’s display preferences.', 'google-analytics-for-wordpress' ),
2660
 
2661
- // Reference: src/modules/reports/store/actions.js:90
2662
- __( 'Go Back To Reports', 'google-analytics-for-wordpress' ),
2663
-
2664
- // Reference: src/modules/reports/store/actions.js:91
2665
- __( 'Enable Enhanced eCommerce', 'google-analytics-for-wordpress' ),
2666
-
2667
- // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:50
2668
  // Reference: src/modules/reports/components/reports/monsterinsights-SiteSpeed-Lite.vue:23
2669
  __( 'Site Speed', 'google-analytics-for-wordpress' ),
2670
 
2671
- // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:134
2672
- __( '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', 'google-analytics-for-wordpress' ),
2673
 
2674
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:83
2675
- __( 'Make your MonsterInsights campaign links prettier with Pretty Links!', 'google-analytics-for-wordpress' ),
2676
 
2677
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:84
2678
- __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links.', 'google-analytics-for-wordpress' ),
2679
 
2680
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:85
2681
- __( 'Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!', 'google-analytics-for-wordpress' ),
2682
 
2683
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:86
2684
- __( 'Over 200,000 websites use Pretty Links!', 'google-analytics-for-wordpress' ),
2685
 
2686
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:87
2687
- __( 'Install Pretty Links', 'google-analytics-for-wordpress' ),
2688
 
2689
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:88
2690
- __( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
2691
 
2692
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:89
2693
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:192
2694
- __( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
2695
 
2696
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:90
2697
- __( 'Install Pretty Links from the WordPress.org plugin repository.', 'google-analytics-for-wordpress' ),
2698
 
2699
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:91
2700
- __( 'Activate Pretty Links', 'google-analytics-for-wordpress' ),
2701
 
2702
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:92
2703
- __( 'Activating Pretty Links...', 'google-analytics-for-wordpress' ),
2704
 
2705
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:93
2706
- __( 'Create New Pretty Link', 'google-analytics-for-wordpress' ),
2707
 
2708
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:94
2709
- __( 'Create a New Pretty Link', 'google-analytics-for-wordpress' ),
2710
 
2711
- // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:95
2712
- __( 'Grab your campaign link and paste it into the Target URL field.', 'google-analytics-for-wordpress' ),
2713
 
2714
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:76
2715
- /* Translators: Adds a link to the documentation. */
2716
- __( '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.', 'google-analytics-for-wordpress' ),
2717
 
2718
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:67
2719
- __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
 
2720
 
2721
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:68
2722
- __( '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.', 'google-analytics-for-wordpress' ),
 
2723
 
2724
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:69
2725
- __( 'Disable the Headline Analyzer', 'google-analytics-for-wordpress' ),
2726
 
2727
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:64
2728
- __( 'Email Summaries', 'google-analytics-for-wordpress' ),
2729
 
2730
- // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:65
2731
- __( 'Export PDF Reports', 'google-analytics-for-wordpress' ),
2732
 
2733
  // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:42
2734
  __( 'Export PDF Report', 'google-analytics-for-wordpress' ),
@@ -2736,33 +2744,50 @@ $generated_i18n_strings = array(
2736
  // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:50
2737
  __( 'You can export PDF reports only in the PRO version.', 'google-analytics-for-wordpress' ),
2738
 
2739
- // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:50
2740
- /* Translators: Placeholder adds a line break. */
2741
- __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-for-wordpress' ),
2742
 
2743
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:19
2744
- __( 'This feature requires MonsterInsights Pro', 'google-analytics-for-wordpress' ),
2745
 
2746
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:20
2747
- __( 'By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more.', 'google-analytics-for-wordpress' ),
2748
 
2749
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:21
2750
- __( 'Upgrade to Pro and Unlock Popular Products', 'google-analytics-for-wordpress' ),
2751
 
2752
- // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:22
2753
- __( 'View all Pro features', 'google-analytics-for-wordpress' ),
2754
 
2755
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:45
2756
- __( 'Select posts/search', 'google-analytics-for-wordpress' ),
2757
 
2758
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:55
2759
- __( 'Oops! No posts found.', 'google-analytics-for-wordpress' ),
 
2760
 
2761
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:56
2762
- __( 'Search by post title', 'google-analytics-for-wordpress' ),
2763
 
2764
- // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
2765
- __( 'Can\'t load posts.', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2766
 
2767
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
2768
  __( 'SharedCount API Key', 'google-analytics-for-wordpress' ),
@@ -2779,90 +2804,10 @@ $generated_i18n_strings = array(
2779
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
2780
  __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
2781
 
2782
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:58
2783
- /* Translators: Minimum and maximum number that can be used. */
2784
- __( 'Please enter a value between %1$s and %2$s', 'google-analytics-for-wordpress' ),
2785
-
2786
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:60
2787
- /* Translators: The minimum set value. */
2788
- __( 'Please enter a value higher than %s', 'google-analytics-for-wordpress' ),
2789
-
2790
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:62
2791
- /* Translators: The maximum set value. */
2792
- __( 'Please enter a value lower than %s', 'google-analytics-for-wordpress' ),
2793
-
2794
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:63
2795
- __( 'Please enter a number', 'google-analytics-for-wordpress' ),
2796
-
2797
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:64
2798
- __( 'Value has to be a round number', 'google-analytics-for-wordpress' ),
2799
-
2800
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
2801
- __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
2802
-
2803
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:29
2804
- __( 'Pro version is required', 'google-analytics-for-wordpress' ),
2805
-
2806
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
2807
- __( 'Automated + Curated', 'google-analytics-for-wordpress' ),
2808
-
2809
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:32
2810
- /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
2811
- __( '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).', 'google-analytics-for-wordpress' ),
2812
-
2813
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:14
2814
- __( 'Days', 'google-analytics-for-wordpress' ),
2815
-
2816
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:19
2817
- /* Translators: placeholders make text small. */
2818
- __( '7 days', 'google-analytics-for-wordpress' ),
2819
-
2820
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:23
2821
- __( '30 days', 'google-analytics-for-wordpress' ),
2822
-
2823
- // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:28
2824
- __( 'Custom', 'google-analytics-for-wordpress' ),
2825
-
2826
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:107
2827
- __( 'Popular Posts data can be fetched correctly', 'google-analytics-for-wordpress' ),
2828
-
2829
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:108
2830
- __( '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.', 'google-analytics-for-wordpress' ),
2831
-
2832
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
2833
- __( 'Close', 'google-analytics-for-wordpress' ),
2834
-
2835
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
2836
- __( '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. Please use the button below to confirm your configuration is correct.', 'google-analytics-for-wordpress' ),
2837
-
2838
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:50
2839
- __( 'Test Automated Posts', 'google-analytics-for-wordpress' ),
2840
-
2841
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:52
2842
- /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2843
- __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-for-wordpress' ),
2844
-
2845
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
2846
- /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
2847
- __( '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.', 'google-analytics-for-wordpress' ),
2848
-
2849
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:57
2850
- /* Translators: Placeholder gets replaced with current license version. */
2851
- __( 'Pro version is required. Your current license level is: %s', 'google-analytics-for-wordpress' ),
2852
-
2853
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:95
2854
- __( 'Verifying Popular Posts data', 'google-analytics-for-wordpress' ),
2855
-
2856
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:42
2857
- __( 'Used on over 3,000,000 websites!', 'google-analytics-for-wordpress' ),
2858
-
2859
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
2860
- __( '+ Add Role', 'google-analytics-for-wordpress' ),
2861
-
2862
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47
2863
  __( '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' ),
2864
 
2865
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:48
2866
  __( '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' ),
2867
 
2868
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:138
@@ -2883,16 +2828,13 @@ $generated_i18n_strings = array(
2883
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:140
2884
  __( 'Border', 'google-analytics-for-wordpress' ),
2885
 
2886
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:55
2887
  __( 'Icon', 'google-analytics-for-wordpress' ),
2888
 
2889
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:46
 
2890
  __( 'Theme Preview', 'google-analytics-for-wordpress' ),
2891
 
2892
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePicker.vue:70
2893
- /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2894
- __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
2895
-
2896
  // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:21
2897
  __( 'Multiple Entries', 'google-analytics-for-wordpress' ),
2898
 
@@ -2914,91 +2856,83 @@ $generated_i18n_strings = array(
2914
  // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:27
2915
  __( 'Choose the minimum word count for a Post to have multiple entries.', 'google-analytics-for-wordpress' ),
2916
 
2917
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:24
2918
- __( 'Only Show Posts from These Categories', 'google-analytics-for-wordpress' ),
2919
-
2920
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:25
2921
- __( 'Choose from which categories posts will be displayed in the widget. All categories will be used if left empty.', 'google-analytics-for-wordpress' ),
2922
 
2923
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:189
2924
- __( 'Copy to Pretty Links', 'google-analytics-for-wordpress' ),
2925
 
2926
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:190
2927
- __( 'Make your campaign links prettier!', 'google-analytics-for-wordpress' ),
2928
 
2929
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:191
2930
- __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links.', 'google-analytics-for-wordpress' ),
2931
-
2932
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:54
2933
- __( 'You can add maximum 5 items.', 'google-analytics-for-wordpress' ),
2934
-
2935
- // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:58
2936
- __( 'At least 0 item required.', 'google-analytics-for-wordpress' ),
2937
 
2938
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPdfReports-Lite.vue:17
2939
- __( 'Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone.', 'google-analytics-for-wordpress' ),
2940
 
2941
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputEmailSummaries-Lite.vue:17
2942
- __( 'Our email summaries feature sends a weekly summary of the most important site analytics information.', 'google-analytics-for-wordpress' ),
2943
 
2944
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:44
2945
- __( 'Import settings from another MonsterInsights website.', 'google-analytics-for-wordpress' ),
 
2946
 
2947
- // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:46
2948
- __( 'Export settings to import into another MonsterInsights install.', 'google-analytics-for-wordpress' ),
2949
 
2950
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:75
2951
- __( 'Display Method', 'google-analytics-for-wordpress' ),
2952
 
2953
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:76
2954
- __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-for-wordpress' ),
2955
 
2956
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:77
2957
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105
2958
- __( 'Using the Gutenberg Block', 'google-analytics-for-wordpress' ),
2959
 
2960
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:78
2961
- __( 'Using the Shortcode', 'google-analytics-for-wordpress' ),
2962
 
2963
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
2964
- __( 'Learn how to insert the widget using Gutenberg blocks.', 'google-analytics-for-wordpress' ),
2965
 
2966
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:80
2967
- __( 'Learn how to insert the widget using out Shortcode.', 'google-analytics-for-wordpress' ),
 
2968
 
2969
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:81
2970
- __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-for-wordpress' ),
 
2971
 
2972
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83
2973
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
2974
- __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-for-wordpress' ),
2975
 
2976
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84
2977
- __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”.', 'google-analytics-for-wordpress' ),
2978
 
2979
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
2980
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
2981
- __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-for-wordpress' ),
2982
 
2983
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
2984
- __( 'Shortcode', 'google-analytics-for-wordpress' ),
2985
 
2986
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:88
2987
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
2988
- __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-for-wordpress' ),
2989
 
2990
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
2991
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
2992
- __( 'Copy Shortcode', 'google-analytics-for-wordpress' ),
2993
 
2994
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
2995
- __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode', 'google-analytics-for-wordpress' ),
2996
 
2997
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
2998
- __( 'Wide', 'google-analytics-for-wordpress' ),
 
2999
 
3000
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
3001
- __( 'Narrow', 'google-analytics-for-wordpress' ),
3002
 
3003
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
3004
  __( 'Author/Date', 'google-analytics-for-wordpress' ),
@@ -3033,6 +2967,54 @@ $generated_i18n_strings = array(
3033
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:153
3034
  __( 'Choose how many posts you’d like displayed in the widget.', 'google-analytics-for-wordpress' ),
3035
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3036
  // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:23
3037
  __( 'Unlock with %s', 'google-analytics-for-wordpress' ),
3038
 
@@ -3093,7 +3075,26 @@ $generated_i18n_strings = array(
3093
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
3094
  __( 'Watch Video - How to Add the Popular Posts widget using Widgets', 'google-analytics-for-wordpress' ),
3095
 
3096
- // Reference: src/modules/notifications/components/NotificationsIndicator.vue:19
3097
- __( 'View notifications', 'google-analytics-for-wordpress' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3098
  );
3099
  /* THIS IS THE END OF THE GENERATED FILE */
11
  __( 'Loading settings', 'google-analytics-for-wordpress' ),
12
 
13
  // Reference: src/modules/widget/components/WidgetReportError.vue:25
14
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:205
15
  __( 'Error', 'google-analytics-for-wordpress' ),
16
 
17
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:206
18
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
19
 
20
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
27
  /* Translators: Adds an arrow icon. */
28
  __( 'Continue %s', 'google-analytics-for-wordpress' ),
29
 
30
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:236
31
  __( 'Unlock the Publishers Report and Focus on the Content that Matters', 'google-analytics-for-wordpress' ),
32
 
33
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:237
34
  __( 'Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
35
 
36
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:248
37
  __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-for-wordpress' ),
38
 
39
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:249
40
  __( 'Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.', 'google-analytics-for-wordpress' ),
41
 
42
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:260
43
  __( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-for-wordpress' ),
44
 
45
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:261
46
  __( 'Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.', 'google-analytics-for-wordpress' ),
47
 
48
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:274
49
  __( 'Unlock the Dimensions Report and Track Your Own Custom Data', 'google-analytics-for-wordpress' ),
50
 
51
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:275
52
  __( 'Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-for-wordpress' ),
53
 
54
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:285
55
  __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-for-wordpress' ),
56
 
57
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:286
58
  __( 'Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.', 'google-analytics-for-wordpress' ),
59
 
60
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:294
61
  __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-for-wordpress' ),
62
 
63
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:295
64
  __( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-for-wordpress' ),
65
 
66
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:304
67
  __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-for-wordpress' ),
68
 
69
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:305
70
  __( 'Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.', 'google-analytics-for-wordpress' ),
71
 
72
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:188
171
  // Reference: src/modules/frontend/monsterinsights-frontend.vue:36
172
  __( 'Insights', 'google-analytics-for-wordpress' ),
173
 
174
+ // Reference: src/modules/reports/routes/index.js:25
 
175
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
176
 
177
  // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:41
200
  __( 'See All Features', 'google-analytics-for-wordpress' ),
201
 
202
  // Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
203
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:133
204
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
205
 
206
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:134
207
  __( 'per year', 'google-analytics-for-wordpress' ),
208
 
209
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:135
210
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
211
 
212
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:136
264
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
265
 
266
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:35
267
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:183
268
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
269
 
270
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:184
271
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
272
 
273
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabConversions-Lite.vue:33
274
+ // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:185
275
  __( 'Google Optimize', 'google-analytics-for-wordpress' ),
276
 
277
  // Reference: src/modules/wizard-onboarding/monsterinsights-welcome-Lite.vue:186
347
  // Reference: src/modules/addons/store/actions.js:49
348
  __( 'Activate', 'google-analytics-for-wordpress' ),
349
 
350
+ // Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
351
  __( 'Learn More', 'google-analytics-for-wordpress' ),
352
 
353
  // Reference: src/components/TheQuickLinks.vue:31
400
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
401
 
402
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportEcommerce-Lite.vue:23
403
+ // Reference: src/modules/reports/routes/index.js:41
404
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
405
 
 
406
  // Reference: src/modules/reports/routes/index.js:49
407
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
408
 
409
  // Reference: src/modules/reports/routes/index.js:57
410
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
411
 
 
412
  // Reference: src/modules/reports/routes/index.js:65
413
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
414
 
415
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:51
416
+ // Reference: src/modules/reports/routes/index.js:73
417
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
418
 
419
  // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:48
421
  // Reference: src/modules/reports/routes/index.js:85
422
  __( '2019 Year in Review', 'google-analytics-for-wordpress' ),
423
 
 
424
  // Reference: src/modules/settings/routes/network.js:35
425
  // Reference: src/modules/settings/routes/site.js:122
426
  __( 'About Us', 'google-analytics-for-wordpress' ),
427
 
 
428
  // Reference: src/modules/settings/routes/network.js:43
429
  // Reference: src/modules/settings/routes/site.js:130
430
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
431
 
432
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:52
433
  // Reference: src/modules/settings/routes/network.js:52
434
  // Reference: src/modules/settings/routes/site.js:139
435
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
458
  __( 'Advanced', 'google-analytics-for-wordpress' ),
459
 
460
  // Reference: src/modules/settings/routes/site.js:92
461
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:15
462
  __( 'URL Builder', 'google-analytics-for-wordpress' ),
463
 
464
  // Reference: src/modules/settings/routes/site.js:100
465
+ // Reference: src/modules/tools/components/ToolsNavigation.vue:14
466
  __( 'Import Export', 'google-analytics-for-wordpress' ),
467
 
468
  // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
481
  __( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-for-wordpress' ),
482
 
483
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:253
 
484
  __( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
485
 
486
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:264
 
487
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
488
 
489
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:247
 
490
  __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
491
 
492
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:260
 
493
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
494
 
495
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:248
 
496
  __( 'Device Breakdown', 'google-analytics-for-wordpress' ),
497
 
498
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:261
 
499
  __( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-for-wordpress' ),
500
 
501
  // Reference: src/modules/widget/store/index.js:41
528
  // Reference: src/modules/widget/store/index.js:70
529
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-for-wordpress' ),
530
 
531
+ // Reference: src/modules/reports/components/monsterinsights-ReportsNavigation.vue:43
532
  __( 'Overview', 'google-analytics-for-wordpress' ),
533
 
534
  // Reference: src/modules/widget/store/index.js:82
552
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
553
  __( 'MonsterInsights makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-for-wordpress' ),
554
 
555
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:27
 
556
  __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
557
 
558
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
726
  // Reference: src/modules/widget/components/WidgetReportsLink.vue:18
727
  __( 'Go to the Analytics Dashboard', 'google-analytics-for-wordpress' ),
728
 
729
+ // Reference: src/modules/wizard-onboarding/components/inputs/monsterinsights-OnboardingLicense-Lite.vue:27
 
730
  __( 'License Key', 'google-analytics-for-wordpress' ),
731
 
732
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:47
733
  /* Translators: Add link to retrieve license key from account. */
734
  __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
735
 
736
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:108
 
737
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
738
 
739
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:112
 
740
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
741
 
742
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:113
 
743
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
744
 
745
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:35
746
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:51
747
  __( 'Miscellaneous', 'google-analytics-for-wordpress' ),
748
 
749
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:37
750
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:53
751
  __( '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' ),
752
 
753
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:38
754
  // Reference: src/modules/settings/components/monsterinsights-SettingsNetwork.vue:54
755
  __( 'Hide Announcements', 'google-analytics-for-wordpress' ),
756
 
770
  /* Translators: Make text green. */
771
  __( '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!', 'google-analytics-for-wordpress' ),
772
 
773
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewUpsell-Lite.vue:31
774
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEcommerce-Lite.vue:33
775
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
776
 
777
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:94
778
  /* Translators: placeholders make text small. */
779
  __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
780
 
781
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:99
782
  /* Translators: placeholders make text small. */
783
  __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
784
 
785
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:104
786
  /* Translators: placeholders make text small. */
787
  __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
788
 
789
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:114
790
  __( 'Automatic Updates', 'google-analytics-for-wordpress' ),
791
 
792
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:115
 
793
  __( 'Setup Wizard', 'google-analytics-for-wordpress' ),
794
 
795
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:116
 
796
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
797
 
798
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:241
799
  /* Translators: Placeholder adds a line break. */
800
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
801
 
 
802
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportRealTime-Lite.vue:63
803
  /* Translators: Number of unique pageviews. */
804
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
818
  // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:245
819
  __( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
820
 
821
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:276
822
  __( 'Demographics', 'google-analytics-for-wordpress' ),
823
 
824
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:60
1083
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:68
1084
  __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
1085
 
1086
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
1087
  __( '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' ),
1088
 
1089
  // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:70
1270
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:284
1271
  __( 'Average Age', 'google-analytics-for-wordpress' ),
1272
 
1273
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:285
1274
  __( 'Behavior', 'google-analytics-for-wordpress' ),
1275
 
1276
  // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:286
1546
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:126
1547
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-for-wordpress' ),
1548
 
1549
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:132
1550
  __( 'Not Available', 'google-analytics-for-wordpress' ),
1551
 
1552
  // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:133
1794
  // Reference: src/modules/wizard-onboarding/api/index.js:22
1795
  __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
1796
 
1797
+ // Reference: src/modules/popular-posts/api/index.js:43
1798
  /* Translators: Error status and error text. */
1799
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
1800
 
1893
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
1894
  __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
1895
 
1896
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46
1897
  __( 'Installing...', 'google-analytics-for-wordpress' ),
1898
 
1899
  // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepSuccess.vue:31
1928
  // Reference: src/modules/wizard-onboarding/components/steps/monsterinsights-OnboardingStepRecommendedAddons-Lite.vue:48
1929
  __( 'View all MonsterInsights addons', 'google-analytics-for-wordpress' ),
1930
 
1931
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
1932
  __( 'Save and continue', 'google-analytics-for-wordpress' ),
1933
 
1934
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
2036
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:92
2037
  __( 'Enhanced Link Attribution is enabled the moment you set up MonsterInsights', 'google-analytics-for-wordpress' ),
2038
 
2039
+ // Reference: src/modules/addons/components/AddonButton.vue:31
2040
  __( 'Activating...', 'google-analytics-for-wordpress' ),
2041
 
2042
+ // Reference: src/modules/addons/components/AddonButton.vue:35
2043
  __( 'Deactivating...', 'google-analytics-for-wordpress' ),
2044
 
2045
+ // Reference: src/modules/addons/components/AddonButton.vue:43
2046
  __( 'Deactivate', 'google-analytics-for-wordpress' ),
2047
 
2048
  // Reference: src/modules/addons/components/monsterinsights-AddonBlock.vue:43
2144
  // Reference: src/modules/widget/components/WidgetTips.vue:70
2145
  __( 'Pro Tip:', 'google-analytics-for-wordpress' ),
2146
 
2147
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56
2148
  __( 'Reset to default', 'google-analytics-for-wordpress' ),
2149
 
2150
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:47
2151
  __( 'The value entered does not match the required format', 'google-analytics-for-wordpress' ),
2152
 
2153
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPdfReports-Lite.vue:16
2154
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
2155
 
2156
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:27
2157
  __( 'The EU Compliance addon allows you to improve compliance with GDPR
2158
  and other privacy regulations.', 'google-analytics-for-wordpress' ),
2159
 
2160
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:28
2161
  __( 'EU Compliance', 'google-analytics-for-wordpress' ),
2162
 
2163
  // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputScroll-Lite.vue:18
2203
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2204
 
2205
  // Reference: src/modules/popular-posts/api/index.js:47
 
2206
  __( 'Network error encountered. Settings not saved.', 'google-analytics-for-wordpress' ),
2207
 
2208
  // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
2209
  /* Translators: Make text green. */
2210
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-for-wordpress' ),
2211
 
2212
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:27
2213
  __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
2214
 
2215
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:28
2216
  __( 'Allow Usage Tracking', 'google-analytics-for-wordpress' ),
2217
 
2218
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
2219
  __( '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' ),
2220
 
2221
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:31
2222
  /* Translators: Add links to documentation. */
2223
  __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2224
 
2333
  // Reference: src/components/TheAppFTPForm.vue:99
2334
  __( 'Cancel', 'google-analytics-for-wordpress' ),
2335
 
2336
+ // Reference: src/modules/reports/components/monsterinsights-ReportsPagination.vue:29
2337
  __( 'Show', 'google-analytics-for-wordpress' ),
2338
 
2339
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
2392
  /* Translators: Placeholders are used for making text bold and adding a link. */
2393
  __( 'You\'re using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.', 'google-analytics-for-wordpress' ),
2394
 
2395
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:27
2396
+ /* Translators: Current WordPress version. */
2397
+ __( '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.', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
2398
 
2399
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:41
2400
+ /* Translators: Current PHP version and recommended PHP version. */
2401
+ __( '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.', 'google-analytics-for-wordpress' ),
2402
 
2403
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:55
2404
+ /* Translators: Current WordPress version. */
2405
+ __( '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.', 'google-analytics-for-wordpress' ),
2406
 
2407
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:315
2408
  __( 'Unlock the Site Speed Report and Improve the Performance of Your Site', 'google-analytics-for-wordpress' ),
2409
 
2410
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:316
2411
  __( 'See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking', 'google-analytics-for-wordpress' ),
2412
 
2413
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:318
2422
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:321
2423
  __( 'Learn How to Improve the Core Metrics that Google Uses to Rank Your Site', 'google-analytics-for-wordpress' ),
2424
 
2425
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:335
2426
+ __( 'Today', 'google-analytics-for-wordpress' ),
 
2427
 
2428
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:341
2429
+ __( 'Yesterday', 'google-analytics-for-wordpress' ),
 
2430
 
2431
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:347
2432
+ __( 'Last Week', 'google-analytics-for-wordpress' ),
2433
+
2434
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:353
2435
+ __( 'Last Month', 'google-analytics-for-wordpress' ),
2436
+
2437
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:359
2438
+ __( 'Last 7 days', 'google-analytics-for-wordpress' ),
2439
+
2440
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:365
2441
+ __( 'Last 30 days', 'google-analytics-for-wordpress' ),
2442
 
2443
  // Reference: src/modules/reports/routes/index.js:81
2444
  __( 'Site Speed Report', 'google-analytics-for-wordpress' ),
2445
 
2446
+ // Reference: src/modules/reports/routes/index.js:94
2447
  __( '2020 Year in Review', 'google-analytics-for-wordpress' ),
2448
 
2449
  // Reference: src/modules/settings/routes/site.js:108
2450
  __( 'PrettyLinks Integration', 'google-analytics-for-wordpress' ),
2451
 
2452
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
 
2453
  __( 'Inline Popular Posts', 'google-analytics-for-wordpress' ),
2454
 
2455
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
 
2456
  __( 'Popular Posts Widget', 'google-analytics-for-wordpress' ),
2457
 
2458
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
 
2459
  __( 'Popular Products', 'google-analytics-for-wordpress' ),
2460
 
2461
  // Reference: src/modules/settings/routes/site.js:180
2482
  // Reference: src/modules/notifications/components/monsterinsights-Notifications.vue:81
2483
  __( 'No Notifications', 'google-analytics-for-wordpress' ),
2484
 
2485
+ // Reference: src/modules/reports/store/actions.js:90
2486
+ __( 'Go Back To Reports', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2487
 
2488
+ // Reference: src/modules/reports/store/actions.js:91
2489
+ __( 'Enable Enhanced eCommerce', 'google-analytics-for-wordpress' ),
 
2490
 
2491
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:45
2492
  __( 'Caching', 'google-analytics-for-wordpress' ),
2521
  // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:92
2522
  __( 'Error emptying the popular posts cache. Please try again.', 'google-analytics-for-wordpress' ),
2523
 
2524
+ // Reference: src/modules/reports/components/reports/monsterinsights-ReportOverview.vue:265
2525
+ __( 'Export PDF Overview Report', 'google-analytics-for-wordpress' ),
2526
+
2527
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabEngagement.vue:76
2528
+ /* Translators: Adds a link to the documentation. */
2529
+ __( '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.', 'google-analytics-for-wordpress' ),
2530
+
2531
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:83
2532
+ __( 'Make your MonsterInsights campaign links prettier with Pretty Links!', 'google-analytics-for-wordpress' ),
2533
+
2534
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:84
2535
+ __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links.', 'google-analytics-for-wordpress' ),
2536
+
2537
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:85
2538
+ __( 'Take your MonsterInsights campaign links from our URL Builder and shorten them with Pretty Links!', 'google-analytics-for-wordpress' ),
2539
+
2540
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:86
2541
+ __( 'Over 200,000 websites use Pretty Links!', 'google-analytics-for-wordpress' ),
2542
+
2543
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:87
2544
+ __( 'Install Pretty Links', 'google-analytics-for-wordpress' ),
2545
+
2546
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:88
2547
+ __( 'Pretty Links Installed & Activated', 'google-analytics-for-wordpress' ),
2548
+
2549
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:89
2550
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:192
2551
+ __( 'Download Pretty Links', 'google-analytics-for-wordpress' ),
2552
+
2553
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:90
2554
+ __( 'Install Pretty Links from the WordPress.org plugin repository.', 'google-analytics-for-wordpress' ),
2555
+
2556
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:91
2557
+ __( 'Activate Pretty Links', 'google-analytics-for-wordpress' ),
2558
+
2559
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:92
2560
+ __( 'Activating Pretty Links...', 'google-analytics-for-wordpress' ),
2561
+
2562
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:93
2563
+ __( 'Create New Pretty Link', 'google-analytics-for-wordpress' ),
2564
+
2565
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:94
2566
+ __( 'Create a New Pretty Link', 'google-analytics-for-wordpress' ),
2567
+
2568
+ // Reference: src/modules/tools/components/monsterinsights-ToolsPrettyLinksFlow.vue:95
2569
+ __( 'Grab your campaign link and paste it into the Target URL field.', 'google-analytics-for-wordpress' ),
2570
+
2571
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:44
2572
+ __( 'Import settings from another MonsterInsights website.', 'google-analytics-for-wordpress' ),
2573
+
2574
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabImportExport.vue:46
2575
+ __( 'Export settings to import into another MonsterInsights install.', 'google-analytics-for-wordpress' ),
2576
+
2577
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:67
2578
+ __( 'Headline Analyzer', 'google-analytics-for-wordpress' ),
2579
+
2580
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:68
2581
+ __( '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.', 'google-analytics-for-wordpress' ),
2582
+
2583
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabPublisher.vue:69
2584
+ __( 'Disable the Headline Analyzer', 'google-analytics-for-wordpress' ),
2585
+
2586
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:100
2587
  __( 'Choose Theme', 'google-analytics-for-wordpress' ),
2588
 
2589
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:102
2590
  __( 'Widget Styling', 'google-analytics-for-wordpress' ),
2591
 
2592
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:103
2593
  __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-for-wordpress' ),
2594
 
2595
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:104
2596
  __( 'Sort By', 'google-analytics-for-wordpress' ),
2597
 
2598
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:105
2599
  __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-for-wordpress' ),
2600
 
2601
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:111
2610
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2611
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-for-wordpress' ),
2612
 
2613
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:109
2614
  __( 'Include in Post Types', 'google-analytics-for-wordpress' ),
2615
 
2616
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:110
2617
  __( 'Exclude from specific posts', 'google-analytics-for-wordpress' ),
2618
 
2619
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:112
2620
  /* Translators: Placeholders make the text bold. */
2621
  __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-for-wordpress' ),
2622
 
2623
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:114
2624
  /* Translators: Placeholders make the text bold. */
2625
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-for-wordpress' ),
2626
 
2627
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:136
2628
  __( 'Customize Design', 'google-analytics-for-wordpress' ),
2629
 
2630
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:115
2631
  __( 'Loading Themes', 'google-analytics-for-wordpress' ),
2632
 
2633
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
2636
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124
2637
  __( 'Please select at least one post to display.', 'google-analytics-for-wordpress' ),
2638
 
2639
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:120
2640
  /* Translators: placeholders make text small. */
2641
  __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-for-wordpress' ),
2642
 
2643
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:125
2644
  /* Translators: placeholders make text small. */
2645
  __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-for-wordpress' ),
2646
 
2647
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:132
2648
  /* Translators: placeholders make text small. */
2649
  __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-for-wordpress' ),
2650
 
2651
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:137
2652
  /* Translators: placeholders make text small. */
2653
  __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-for-wordpress' ),
2654
 
2655
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:142
2656
  /* Translators: placeholders make text small. */
2657
  __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-for-wordpress' ),
2658
 
2673
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:108
2674
  __( 'Title your widget and set it’s display preferences.', 'google-analytics-for-wordpress' ),
2675
 
 
 
 
 
 
 
 
2676
  // Reference: src/modules/reports/components/reports/monsterinsights-SiteSpeed-Lite.vue:23
2677
  __( 'Site Speed', 'google-analytics-for-wordpress' ),
2678
 
2679
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:19
2680
+ __( 'This feature requires MonsterInsights Pro', 'google-analytics-for-wordpress' ),
2681
 
2682
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:20
2683
+ __( 'By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more.', 'google-analytics-for-wordpress' ),
2684
 
2685
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:21
2686
+ __( 'Upgrade to Pro and Unlock Popular Products', 'google-analytics-for-wordpress' ),
2687
 
2688
+ // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:22
2689
+ __( 'View all Pro features', 'google-analytics-for-wordpress' ),
2690
 
2691
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:260
2692
+ __( 'Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year.', 'google-analytics-for-wordpress' ),
2693
 
2694
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:262
2695
+ __( 'Your 2020 Analytics Report', 'google-analytics-for-wordpress' ),
2696
 
2697
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:264
2698
+ __( 'See how your website performed this year and find tips along the way to help grow even more in 2021!', 'google-analytics-for-wordpress' ),
2699
 
2700
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:274
2701
+ __( 'January 1, 2020 - December 31, 2020', 'google-analytics-for-wordpress' ),
 
2702
 
2703
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:275
2704
+ __( 'A Tip for 2021', 'google-analytics-for-wordpress' ),
2705
 
2706
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:291
2707
+ __( 'A Tip For 2021', 'google-analytics-for-wordpress' ),
2708
 
2709
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:308
2710
+ __( 'Here\'s to an amazing 2021!', 'google-analytics-for-wordpress' ),
2711
 
2712
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:315
2713
+ __( 'Try our other popular WordPress plugins to grow your website in 2021.', 'google-analytics-for-wordpress' ),
2714
 
2715
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:317
2716
+ __( 'Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level.', 'google-analytics-for-wordpress' ),
2717
 
2718
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:326
2719
+ __( 'Copyright MonsterInsights, 2021', 'google-analytics-for-wordpress' ),
2720
 
2721
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:373
2722
+ __( 'See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success.', 'google-analytics-for-wordpress' ),
 
2723
 
2724
+ // Reference: src/modules/reports/components/reports/monsterinsights-YearInReview-Lite.vue:459
2725
+ /* Translators: Number of minutes spent on site. */
2726
+ __( 'Each visitor spent an average of %s minutes on your website in 2020.', 'google-analytics-for-wordpress' ),
2727
 
2728
+ // Reference: src/modules/reports/components/reports-overview/monsterinsights-ReportOverviewDatePicker-Lite.vue:50
2729
+ /* Translators: Placeholder adds a line break. */
2730
+ __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-for-wordpress' ),
2731
 
2732
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:54
2733
+ __( 'You can add maximum 5 items.', 'google-analytics-for-wordpress' ),
2734
 
2735
+ // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:58
2736
+ __( 'At least 0 item required.', 'google-analytics-for-wordpress' ),
2737
 
2738
+ // Reference: src/modules/notifications/components/NotificationsIndicator.vue:19
2739
+ __( 'View notifications', 'google-analytics-for-wordpress' ),
2740
 
2741
  // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:42
2742
  __( 'Export PDF Report', 'google-analytics-for-wordpress' ),
2744
  // Reference: src/modules/reports/components/monsterinsights-ReportsPdfExport-Lite.vue:50
2745
  __( 'You can export PDF reports only in the PRO version.', 'google-analytics-for-wordpress' ),
2746
 
2747
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:107
2748
+ __( 'Popular Posts data can be fetched correctly', 'google-analytics-for-wordpress' ),
 
2749
 
2750
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:108
2751
+ __( '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.', 'google-analytics-for-wordpress' ),
2752
 
2753
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
2754
+ __( 'Close', 'google-analytics-for-wordpress' ),
2755
 
2756
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
2757
+ __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-for-wordpress' ),
2758
 
2759
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
2760
+ __( '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. Please use the button below to confirm your configuration is correct.', 'google-analytics-for-wordpress' ),
2761
 
2762
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:50
2763
+ __( 'Test Automated Posts', 'google-analytics-for-wordpress' ),
2764
 
2765
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:52
2766
+ /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2767
+ __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-for-wordpress' ),
2768
 
2769
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
2770
+ __( 'Automated + Curated', 'google-analytics-for-wordpress' ),
2771
 
2772
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
2773
+ /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
2774
+ __( '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.', 'google-analytics-for-wordpress' ),
2775
+
2776
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:57
2777
+ /* Translators: Placeholder gets replaced with current license version. */
2778
+ __( 'Pro version is required. Your current license level is: %s', 'google-analytics-for-wordpress' ),
2779
+
2780
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:95
2781
+ __( 'Verifying Popular Posts data', 'google-analytics-for-wordpress' ),
2782
+
2783
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:189
2784
+ __( 'Copy to Pretty Links', 'google-analytics-for-wordpress' ),
2785
+
2786
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:190
2787
+ __( 'Make your campaign links prettier!', 'google-analytics-for-wordpress' ),
2788
+
2789
+ // Reference: src/modules/tools/components/monsterinsights-ToolsTabUrlBuilder.vue:191
2790
+ __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links.', 'google-analytics-for-wordpress' ),
2791
 
2792
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
2793
  __( 'SharedCount API Key', 'google-analytics-for-wordpress' ),
2804
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
2805
  __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-for-wordpress' ),
2806
 
2807
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2808
  __( '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' ),
2809
 
2810
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
2811
  __( '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' ),
2812
 
2813
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:138
2828
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:140
2829
  __( 'Border', 'google-analytics-for-wordpress' ),
2830
 
2831
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
2832
  __( 'Icon', 'google-analytics-for-wordpress' ),
2833
 
2834
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:99
2835
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:60
2836
  __( 'Theme Preview', 'google-analytics-for-wordpress' ),
2837
 
 
 
 
 
2838
  // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:21
2839
  __( 'Multiple Entries', 'google-analytics-for-wordpress' ),
2840
 
2856
  // Reference: src/modules/popular-posts/components/input/PopularPostsMultipleEntries-Lite.vue:27
2857
  __( 'Choose the minimum word count for a Post to have multiple entries.', 'google-analytics-for-wordpress' ),
2858
 
2859
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:109
2860
+ __( 'Tracking Mode', 'google-analytics-for-wordpress' ),
 
 
 
2861
 
2862
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:110
2863
+ __( 'Use Global Site Tag (gtag.js)', 'google-analytics-for-wordpress' ),
2864
 
2865
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabGeneral-Lite.vue:111
2866
+ __( 'Upgrade to the gtag.js tracking code for the latest Google Analytics tracking features. This will be the default tracking option in a future release and analytics.js tracking will no longer be supported.', 'google-analytics-for-wordpress' ),
2867
 
2868
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:64
2869
+ __( 'Email Summaries', 'google-analytics-for-wordpress' ),
 
 
 
 
 
 
2870
 
2871
+ // Reference: src/modules/settings/components/tabs/monsterinsights-SettingsTabAdvanced.vue:65
2872
+ __( 'Export PDF Reports', 'google-analytics-for-wordpress' ),
2873
 
2874
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:29
2875
+ __( 'Pro version is required', 'google-analytics-for-wordpress' ),
2876
 
2877
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:32
2878
+ /* Translators: Placeholder adds a link to the Custom Dimensions settings. */
2879
+ __( '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).', 'google-analytics-for-wordpress' ),
2880
 
2881
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:24
2882
+ __( 'Only Show Posts from These Categories', 'google-analytics-for-wordpress' ),
2883
 
2884
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetCategory-Lite.vue:25
2885
+ __( 'Choose from which categories posts will be displayed in the widget. All categories will be used if left empty.', 'google-analytics-for-wordpress' ),
2886
 
2887
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:45
2888
+ __( 'Select posts/search', 'google-analytics-for-wordpress' ),
2889
 
2890
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:55
2891
+ __( 'Oops! No posts found.', 'google-analytics-for-wordpress' ),
 
2892
 
2893
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:56
2894
+ __( 'Search by post title', 'google-analytics-for-wordpress' ),
2895
 
2896
+ // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
2897
+ __( 'Can\'t load posts.', 'google-analytics-for-wordpress' ),
2898
 
2899
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:58
2900
+ /* Translators: Minimum and maximum number that can be used. */
2901
+ __( 'Please enter a value between %1$s and %2$s', 'google-analytics-for-wordpress' ),
2902
 
2903
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:60
2904
+ /* Translators: The minimum set value. */
2905
+ __( 'Please enter a value higher than %s', 'google-analytics-for-wordpress' ),
2906
 
2907
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:62
2908
+ /* Translators: The maximum set value. */
2909
+ __( 'Please enter a value lower than %s', 'google-analytics-for-wordpress' ),
2910
 
2911
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:63
2912
+ __( 'Please enter a number', 'google-analytics-for-wordpress' ),
2913
 
2914
+ // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:64
2915
+ __( 'Value has to be a round number', 'google-analytics-for-wordpress' ),
 
2916
 
2917
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:14
2918
+ __( 'Days', 'google-analytics-for-wordpress' ),
2919
 
2920
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:19
2921
+ /* Translators: placeholders make text small. */
2922
+ __( '7 days', 'google-analytics-for-wordpress' ),
2923
 
2924
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:23
2925
+ __( '30 days', 'google-analytics-for-wordpress' ),
 
2926
 
2927
+ // Reference: src/modules/popular-posts/components/input/PopularPostsCacheInterval-Lite.vue:28
2928
+ __( 'Custom', 'google-analytics-for-wordpress' ),
2929
 
2930
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePicker.vue:70
2931
+ /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2932
+ __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-for-wordpress' ),
2933
 
2934
+ // Reference: src/modules/about/components/monsterinsights-AboutTabLiteVsPro.vue:134
2935
+ __( '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', 'google-analytics-for-wordpress' ),
2936
 
2937
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
2938
  __( 'Author/Date', 'google-analytics-for-wordpress' ),
2967
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:153
2968
  __( 'Choose how many posts you’d like displayed in the widget.', 'google-analytics-for-wordpress' ),
2969
 
2970
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
2971
+ __( 'Wide', 'google-analytics-for-wordpress' ),
2972
+
2973
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
2974
+ __( 'Narrow', 'google-analytics-for-wordpress' ),
2975
+
2976
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:75
2977
+ __( 'Display Method', 'google-analytics-for-wordpress' ),
2978
+
2979
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:76
2980
+ __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-for-wordpress' ),
2981
+
2982
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:77
2983
+ __( 'Using the Gutenberg Block', 'google-analytics-for-wordpress' ),
2984
+
2985
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:78
2986
+ __( 'Using the Shortcode', 'google-analytics-for-wordpress' ),
2987
+
2988
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:79
2989
+ __( 'Learn how to insert the widget using Gutenberg blocks.', 'google-analytics-for-wordpress' ),
2990
+
2991
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:80
2992
+ __( 'Learn how to insert the widget using out Shortcode.', 'google-analytics-for-wordpress' ),
2993
+
2994
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:81
2995
+ __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-for-wordpress' ),
2996
+
2997
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83
2998
+ __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-for-wordpress' ),
2999
+
3000
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84
3001
+ __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by MonsterInsights”.', 'google-analytics-for-wordpress' ),
3002
+
3003
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
3004
+ __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-for-wordpress' ),
3005
+
3006
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
3007
+ __( 'Shortcode', 'google-analytics-for-wordpress' ),
3008
+
3009
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:88
3010
+ __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-for-wordpress' ),
3011
+
3012
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
3013
+ __( 'Copy Shortcode', 'google-analytics-for-wordpress' ),
3014
+
3015
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
3016
+ __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode', 'google-analytics-for-wordpress' ),
3017
+
3018
  // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:23
3019
  __( 'Unlock with %s', 'google-analytics-for-wordpress' ),
3020
 
3075
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
3076
  __( 'Watch Video - How to Add the Popular Posts widget using Widgets', 'google-analytics-for-wordpress' ),
3077
 
3078
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPdfReports-Lite.vue:17
3079
+ __( 'Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone.', 'google-analytics-for-wordpress' ),
3080
+
3081
+ // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputEmailSummaries-Lite.vue:17
3082
+ __( 'Our email summaries feature sends a weekly summary of the most important site analytics information.', 'google-analytics-for-wordpress' ),
3083
+
3084
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:42
3085
+ __( 'Used on over 3,000,000 websites!', 'google-analytics-for-wordpress' ),
3086
+
3087
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
3088
+ __( '+ Add Role', 'google-analytics-for-wordpress' ),
3089
+
3090
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:29
3091
+ __( 'Compatibility mode', 'google-analytics-for-wordpress' ),
3092
+
3093
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:30
3094
+ __( 'Enable _gtagTracker Compatibility', 'google-analytics-for-wordpress' ),
3095
+
3096
+ // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:32
3097
+ /* Translators: Placeholder gets replaced with default GA js function. */
3098
+ __( 'This enables MonsterInsights to work with plugins that use %1$s and don\'t support %2$s', 'google-analytics-for-wordpress' )
3099
  );
3100
  /* THIS IS THE END OF THE GENERATED FILE */
lite/assets/vue/css/settings.css CHANGED
@@ -1 +1 @@
1
- .monsterinsights-dark[data-v-00be766e],.monsterinsights-dark[data-v-3b9e68c1],.monsterinsights-dark[data-v-4619bc56]{display:block}.monsterinsights-addons-navbar h1{display:inline-block;font-size:16px;line-height:48px;font-weight:400;margin:0;color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px;width:258px;position:relative}@media (max-width:750px){.monsterinsights-addons-navbar .monsterinsights-addons-filters{width:calc(100vw - 200px)}}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]{height:28px;margin-right:0;padding-left:10px;padding-right:28px;font-size:14px;border-color:#d6e2ed}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-webkit-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-moz-placeholder,.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-moz-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-ms-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters>i{position:absolute;right:10px;top:5px;z-index:10;color:#b7c9d9}.monsterinsights-addon-not-available .monsterinsights-addon-status span,.monsterinsights-addon-not-installed .monsterinsights-addon-status span{color:#777}.monsterinsights-addon-inactive .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}#monsterinsights-addons{width:770px}@media (max-width:782px){#monsterinsights-addons{width:100%}}#monsterinsights-addons .monsterinsights-addons-area{margin:0 10px}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button{background:#f9fbff;border-color:#d6e2eb;color:#8ba4b7}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:hover{background:#fff;border-color:#c4d6e2}#monsterinsights-addons .monsterinsights-addons-no-results{margin-top:25px;padding:0 10px}#monsterinsights-addons .monsterinsights-addons-no-results p{font-size:16px}#monsterinsights-addons .monsterinsights-addons-no-results>div{visibility:hidden;-webkit-animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards;animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards}.monsterinsights-path-addons .monsterinsights-navigation-bar{padding-left:10px;padding-right:10px;background:#fff;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-container,.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:0}.monsterinsights-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px}.monsterinsights-addons-list .monsterinsights-addon{width:calc(50% - 12.5px);border:1px solid #d6e2ed;position:relative;background:#fff;padding:0 0 72px;margin-bottom:25px}@media (max-width:782px){.monsterinsights-addons-list .monsterinsights-addon{width:100%}}.monsterinsights-addons-list .monsterinsights-addon h3{color:#393f4c;margin:0 0 -5px;font-size:15px}.monsterinsights-addons-list .monsterinsights-addon .monsterinsights-addon-excerpt{color:#777;font-weight:400;margin:10px 0 0;font-size:14px}.monsterinsights-addons-list .monsterinsights-addon-top{padding:20px 24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-addons-list .monsterinsights-addon-image{border:1px solid #d6e2ed;width:74px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:start;align-self:start;margin-right:20px}.monsterinsights-addons-list .monsterinsights-addon-image img{display:block;max-width:100%}.monsterinsights-addons-list .monsterinsights-addon-message{position:absolute;bottom:0;background:#f9fbff;border-top:1px solid #d6e2ed;left:0;right:0}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-interior{padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-status{font-weight:700;font-size:13px;color:#393f4c}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-action{-ms-flex-item-align:end;align-self:flex-end}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-button{padding-bottom:7px;padding-top:9px;min-width:120px;line-height:1}.monsterinsights-addons-list .monsterinsights-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.monsterinsights-file-input{margin-bottom:20px}.monsterinsights-tools .monsterinsights-dark{margin-bottom:5px;display:block}.monsterinsights-tools-url-builder p .monsterinsights-info{margin-left:0}.monsterinsights-tools-url-builder .monsterinsights-input-text{margin-bottom:20px}.monsterinsights-required{color:#d4393d}textarea:-moz-read-only{background-color:#f9fbff}textarea:read-only{background-color:#f9fbff}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-tools-info-row p{margin-top:0}.monsterinsights-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-tools-info-row .monsterinsights-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-tools-info-row .monsterinsights-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.monsterinsights-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info i{margin-right:10px;color:#b6c9da}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{background-color:#0c55da;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAM0AAADFCAYAAAD373YEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAZNSURBVHgB7d1LjlRlGAbgv6oZKpEdmEgbhywBdyArMEyNIO5AVyBG4pgd6A5wBzA0QRN2INqOhKqy/4ITCuhLXc75r88z6lGnJ1/e81XXeb9ZGMn1O3/fm83mPwRo3CyM6NM7J7+sZuGLAA2bhxH9d/TydpitngVo2KhD8+z+tefhxfzW6Y/PAzRq1KGJnv78wZPVavl9gEaNutNsOr77z8PTX/9lgMaMnjSDF/PFPfsNLZpsaOJ+czRbfB7sNzRmsqGJfr9/7Zn9htZMttNs+uTuyf3T6fwmQAMmTZrBYv7yO/sNrUgyNPYbWpJkaKK434TV6tsAlUs2NNHTn64+XIbwY4CKJR2aaL3fhPAkQKWSfHr2rs/u/fXxYnnl8emPHwWoTPKkieJ+s1yubgeoUJahif58cPVX+w01yvJ4tun47kl8TLsRoBLZkmZwNH/p/Ruqkn1o1t9PW4ZbASqRfWiiPx58+Jv9hlpk32k2Hd85eXT6F90MULAikmZwpJiDChSVNNH1r09uzubhUYBCFZU0UdxvViF4cY1iFZc0A/sNpSouaQYvjk7/f2O/oUDFDk18cW21mPl+GsUpdmii9X6zWnpxjaIUu9NsUqxOSYpOmoFidUpSRdJEx1/9eyNcWT0OkFkVSRO9Lla335BdNUkzUKxObtUkzUCxOrlVNzQOR5FbdUMTORxFTtXtNJsUq5NDlUkzUKxODlUPjWJ1cqh6aCKHo0it6p1mk/2GVKpPmoFidVJpJmkixeqk0EzSRA5HkUJTQxM5HMXUmno826RYnak0lzQDxepMpdmhcTiKqTQ7NJHDUUyh2Z1mk+JBxtR00gzWxer2G0bSxdA4HMWYuhiaSLE6Y+lip9lkv+FQ3STNwOEoDtVd0kQOR3GI7pImUqzOIbpMmoH9hn10mTQDh6PYR9dJEylWZ1ddJ02kWJ1ddZ80A4ej2Fb3STNwOIptGZrXFKuzLUOzQbE627DTnMHhKC4iac7gcBQXMTRnUKzORQzNORSrcx47zSUUq/MuSXMJxeq8S9JsQbE6myTNFhSrs8nQbEmxOgOPZztSrI6k2ZFidQzNjhSrY2j2oFi9b3aaAyjm6JOkOYBi9T4ZmgMoVu+ToTmQYvX+2GlGYr/ph6QZiWL1fkiaESlW74OkGZH9pg+SZgL2m7ZJmgkoVm+boZlALOZYLWa+n9YoQzMRh6PaZaeZmGL19kiaiSlWb4+kScDhqLZImgQcjmqLpElIsXobJE1CitXbYGgScjiqDYYmMYej6menyUSxer0kTSbrYnX7TZUMTSYOR9XL0GSkWL1OhiYzxer1MTQFcDiqLj49K4TDUfWQNIVQrF4PQ1MQxep18HhWIIejyiZpCuRwVNkMTYEUq5fN0BQqFnPYb8pkpymc4sHySJrCKVYvj6SpgGL1skiaCihWL4ukqYj9pgySpiL2mzJImsrYb/KTNJVRrJ6fpKmU/SYfSVMph6PykTQVU6yeh6SpmGL1PCRNAxyOSkvSNMDhqLQMTQMUq6dlaBqhWD0dO01jHI6anqRpjMNR0zM0jVGsPj1D06B1MYf9ZjJ2moY5HDUNSdMwxerTkDSNU6w+PknTOIejxmdoOuBw1Lg8nnVEsfo4JE1HFKuPw9B0xOGocRiazjgcdTg7TacUc+xP0nRqXTxov9mLoemUw1H7MzQdU6y+HzsN9psdSRoUq+9I0rCmWH17koY1xerbkzS8xX5zOUnDWxSrX07S8B7F6heTNLxHsfrFJA3nUqx+NknDuRSrn83QcC7F6mczNFxIsfr77DRsRbH6G5KGrShWf8PQsBXF6m8YGramWP0VOw07671YXdKws3Wxesf7jaFhZ73vN4aGvfRcrG5o2FuvxeqGhoP0eDjKp2ccrLfDUZKGg/VWrG5oGEVPxeoezxhVD4ejJA2j6uFwlKFhVD0UqxsaRheLB1veb+w0TKbV4kFJw2RaLVaXNEyqxWJ1ScOkWjwcJWlIoqX9RtKQREvF6oaGJOKLa6vFrInvpxkakmnlcJSdhuRqL1aXNCRXe7G6pCGLmg9HSRqyqPlwlKQhqxqL1SUNWdVYrG5oyKrGw1GGhuxqOxxlp6EYtRSrSxqKUUuxuqGhGLUUqxsailLD4Sg7DUUqeb+RNBSp5GL1/wGAogC4bFF/lQAAAABJRU5ErkJggg==);background-repeat:no-repeat;background-position:100% 0;background-size:contain;border-radius:5px;padding:30px;margin-top:30px;position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{padding-bottom:50px}}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title{font-weight:700;font-size:28px;line-height:32px;color:#fff;margin-top:0;margin-bottom:15px;font-family:Helvetica,Helvetica Neue,Arial,Lucida Grande,sans-serif}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description{color:#fff;font-family:Roboto,sans-serif;line-height:20px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button{background:#256ef3;border:0;font-size:16px;font-weight:700;border-radius:5px;font-family:Roboto,sans-serif;position:relative;padding:12px 76px 12px 60px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after{position:absolute;content:"";right:53px;top:50%;width:16px;height:17px;margin-top:-8px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEJSURBVHgB3VPBbcMwDDxSbgEDfWQEb9Cu0BGMLqBu0L6Dou0j6BjVAkVW6AgZQSP450cSsrIaubErB0jyy31IUbwTJVKECSy+WhtMtVv6+UPpcnnFlAAxfY5CLpfHOBMXIEDJ+Vi2lQhsv8H0up+oou/JXzPcW136zu+7sAktMyPS4KS/vSbIuRTvr/BSl98KfcRhNIrNfTp9cIWExbK1hH8z0JPn9c1qUFkmMSeSJUeB0chGiPKKjcx2IpEs26uKSe5GfF9kRhYGGl7H2K2sa4Z64utbA3G5gif/AkRcgcIpqAn+01TawUEKXbFBaY8sz4htTPaoSewqiRa/FrO46l48BCqcAob/ASVTXz+pYfYFAAAAAElFTkSuQmCC);background-repeat:no-repeat}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{position:absolute;right:45px;bottom:40px;background-image:url(../img/pretty-links-logo-white.svg);background-repeat:no-repeat;width:240px;min-height:39px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{right:10px;bottom:0}}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks{position:relative;background:#256ef3;border-color:#0d59e3;margin-left:15px;padding:10px 48px 10px 23px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:active,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:after{position:absolute;content:"";right:23px;top:50%;width:16px;height:15px;margin-top:-7px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAYAAADtc08vAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEQSURBVHgBlVLBccIwENyTPXnwSEwHooLYFYRnxlXQgekgpgNaSAe8eOSTuAI5lUAyDHxAx2mwAcEgj3fGPtne3VufBASwMuNkZd51iKNCHyMamIjUtzPqbfBv8okU7S6FwbS3AQgf5yWh6GWw+c2LpnuLpHl338cNKVZUMEMzkBJIIwDh1AReS6p6b3ezWEIkIp6eUndDOKm7i2Yc4alSw2xZy8MMPeE0z9nX4tz0z+QlXQ2uS/ySLcsm0QViMg9N/Fbs4O2Cgl2gA4R97WuuYEFplwEj0g8NiOjNJ2N9ayCc14cGIklaoftXy9vRge2ImT8vpuyljD05UyWlstjOh9lP293ViRy4UoFKWXszOAInrGJHik+ELQAAAABJRU5ErkJggg==);background-repeat:no-repeat}body.monsterinsights-prettylinks-flow-page{background:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:770px;margin:0 auto}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{padding:0 30px}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:700px}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow a,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow div,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h1,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h2,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h3,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h4,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow span{font-family:Roboto,sans-serif}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p{font-size:16px;line-height:21px;color:#393f4c}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header{text-align:center;max-width:680px;margin:0 auto;padding-top:75px;padding-bottom:20px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-tools-prettylinks-flow-header-logo{min-height:56px;background-image:url(../img/mi-and-pl-logo.svg);background-repeat:no-repeat;background-position:50%}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-title{font-size:39px;font-weight:900;line-height:46px;text-align:center;color:#393f4c;margin-top:60px;margin-bottom:18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-description{max-width:560px;margin:0 auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:25px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-left:-35px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-left:0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description{padding-left:16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description h3{margin-top:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{border-radius:5px;border:1px solid #e2e4e9;margin-bottom:36px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{text-align:center;padding:30px 30px 0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated{border-width:2px;border-color:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-prettylinks-flow-counter,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-prettylinks-flow-counter{background:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button{background:#338eef;border-color:#338eef;color:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after{background-position:0 -16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{background-position:-18px -18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-prettylinks-flow-counter{background:#1ec185}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-tools-prettylinks-action .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-prettylinks-flow-counter{width:48px;height:48px;text-align:center;background:#b6bcc8;border-radius:50%;color:#fff;font-size:24px;line-height:48px;font-weight:700;margin-left:35px;margin-right:35px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action{padding:30px 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action h3{font-size:18px;line-height:18px;color:#393f4c;font-weight:700;margin-top:12px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action p{margin-top:6px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button{font-size:14px;font-weight:700;border:0;border-radius:5px;margin-top:30px;color:#b6bcc8;background:#e2e4e9;border-color:#e2e4e9;padding:13px 46px 13px 20px;position:relative}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button:after{position:absolute;content:"";right:20px;top:50%;width:16px;height:16px;margin-top:-8px;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAIRQTFRFAAAA1Nfe09fe1dff09ff0tfe0dXd09je09ff1Njf09Td0tbcz9fbz8/f09je0tfc0tjf1Nje19fXz8/Pz9fX09fd0dfdDl2vDlyvDlyxDlyvDluvDlytDlyvDVyvDVysDFyrEGCvDlyvDlyuDluvDlquDl2vDl2vEGCvEFCvCFivDlyvL0miRwAAACx0Uk5TAN//f3/fgO+/j5BQQBDPoI/PIBAggIDf/39/34Dvv1BAEM+gj5CP7yAQIICE4JwzAAABEElEQVR4nKWQCU/EIBCFH9UC67G1XqAF1FZdV////7Mc07K9YuIjIRPex7zJAEGsKBiSzopM5+nR18jqUWtAybnYBCQg/wEIKXfAhZRleL0cJ7qKACeWB+B6T36FRWAgKopgUt4AOylFCo5EtTGkJ8ifAszf9e2+uqt9xRIgOGcRiPH1ffR9y8mqs1oUYaiH3H/MAIESYljXoPK0QzkDopTWasWK0r3+DDzpTM8LgD7RGtAYYzcBBzgCXsZ+r4vAW0t+lzpY596BD+ea2JeIjiIMpZkUHIkOq0AgyO8BFSI+nTv0gPKf26+2O4Y2ajZkjG+/jy0tZhEIsv0hwBqjpoBFA6tnq27G+tCfBvjJffMLAwgkWFxoOwcAAAAASUVORK5CYII=);background-position:0 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{width:14px;height:14px;margin-top:-7px;background-position:-18px 0}.monsterinsights-about-block{padding:25px;background:#fff;border:1px solid #d6e2ed;margin-top:20px;margin-left:20px;margin-right:20px}.monsterinsights-about-block h3{color:#393f4c;font-size:18px;margin:0 0 20px;line-height:1.4}.monsterinsights-about-block p{font-size:16px}.monsterinsights-about-block:after{content:"";display:table;clear:both}div[class*=" monsterinsights-path-about-"] .monsterinsights-container,div[class^=monsterinsights-path-about-] .monsterinsights-container{width:100%}div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:20px;padding-right:20px}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:0;padding-right:0}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list{padding:0 20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:calc(33.3333% - 12.5px)}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:100%}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addon-image,div[class^=monsterinsights-path-about-] .monsterinsights-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" monsterinsights-path-about-"] .monstericon-star:before,div[class^=monsterinsights-path-about-] .monstericon-star:before{color:#fdb72c}.monsterinsights-lite-vs-pro-table{padding:0}.monsterinsights-lite-vs-pro-table .monsterinsights-lite-vs-pro-footer{background:#f0f0f0}.monsterinsights-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.monsterinsights-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.monsterinsights-features-table{width:100%;border-collapse:collapse;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-features-table td,.monsterinsights-features-table th{width:33.33333%;border-bottom:1px solid #d6e2ed;padding:30px;vertical-align:top}.monsterinsights-features-table td p,.monsterinsights-features-table th p{margin:0}.monsterinsights-features-table th{background:#f0f0f0;text-align:left;border-right:none}.monsterinsights-features-table td p>span{display:block;margin-left:30px}.monsterinsights-features-full:before,.monsterinsights-features-none:before,.monsterinsights-features-partial:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f021";font-size:20px;margin-right:10px;color:#d4393d;position:relative;top:2px}.monsterinsights-features-partial:before{content:"";background:url(../img/about-icon-check.svg) no-repeat 50%;background-size:19px auto;width:19px;height:19px;top:6px}.monsterinsights-features-full:before{content:"\f015";color:#4ab99b}.monsterinsights-lite-vs-pro-footer{padding:50px 20px 30px;text-align:center}.monsterinsights-lite-vs-pro-footer h3{margin-bottom:10px}.monsterinsights-lite-vs-pro-footer p{margin-bottom:0}.monsterinsights-lite-vs-pro-footer a{color:#509fe2}.monsterinsights-lite-vs-pro-footer a:focus,.monsterinsights-lite-vs-pro-footer a:hover{color:#393f4c}.monsterinsights-lite-vs-pro-footer.monsterinsights-small{padding:0;text-align:left}.monsterinsights-lite-vs-pro-footer.monsterinsights-small h3{margin-bottom:5px}.monsterinsights-lite-vs-pro-footer.monsterinsights-small p{margin-top:0}.monsterinsights-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-two-column>div{width:50%}.monsterinsights-list-check ul{margin:0}.monsterinsights-list-check li{font-size:16px;margin-top:10px;padding-left:30px;position:relative}.monsterinsights-list-check li:first-child{margin-top:0}.monsterinsights-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f015";font-size:20px;margin-right:10px;color:#5cc0a5;position:absolute;left:0;top:0}.monsterinsights-about-docs-row:after{display:table;clear:both;content:""}.monsterinsights-about-docs-image{width:270px;float:left;margin-right:20px}.monsterinsights-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.monsterinsights-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.monsterinsights-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.monsterinsights-about-docs-4:after{background-image:url(../img/about-icon-addons.png)}.monsterinsights-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.monsterinsights-bg-img.monsterinsights-about-team{padding-top:59%}.monsterinsights-bg-img.monsterinsights-about-team:after{background-image:url(../img/about-team.jpg)}.monsterinsights-about-page-right-image{float:right;width:40%;text-align:center;margin:0 0 0 20px}@media (max-width:782px){.monsterinsights-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.monsterinsights-about-page-right-image img{width:100%}.monsterinsights-about-page-right-image figcaption{color:#999797;margin-top:5px}.monsterinsights-about-page-right-image iframe{max-width:100%}.monsterinsights-dark[data-v-62e7e943]{display:block}.monsterinsights-colorpicker-preview span{width:40px;height:40px;display:inline-block;border:1px solid #b9c9d7;border-radius:5px}.monsterinsights-colorpicker-picker{position:absolute;z-index:100}.monsterinsights-colorpicker-picker .hu-color-picker{min-width:218px!important}.monsterinsights-pp-theme-picker{overflow:hidden}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-carousel,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide:after{content:"";margin-left:48%}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option{width:150px;border-radius:10px;border:1px solid #d3d7de;height:150px;padding:17px 20px;margin-bottom:24px;cursor:pointer;position:relative;background:rgba(0,0,0,0)}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-option-selected,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:hover{border:3px solid #338eef;padding:15px 18px;outline:none}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-icon,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-name{opacity:.6}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-active-icon{position:absolute;right:5px;top:5px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-icon{display:block;width:110px;height:94px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-name{color:#393f4c;font-size:14px;margin-top:8px;display:block;text-align:left}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-icon{background:url(../img/theme-icons.png) no-repeat 0 0;background-size:488px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{background-position-x:-378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{background-position:0 -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-126px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-252px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{background-position:-378px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-india .monsterinsights-pp-theme-icon{background-position:0 -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-juliett .monsterinsights-pp-theme-icon{background-position:-126px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-kilo .monsterinsights-pp-theme-icon{background-position:-252px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-lima .monsterinsights-pp-theme-icon{background-position:-378px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-mike .monsterinsights-pp-theme-icon{background-position:0 -378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-november .monsterinsights-pp-theme-icon{background-position:-126px -378px}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls{text-align:center;font-size:14px;color:#626d83}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls>span{display:inline-block;margin:0 11px;vertical-align:middle}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button{border:none;border-radius:3px;background:#f0f2f4;width:20px;height:20px;text-align:center;color:#626d83;font-size:8px;cursor:pointer}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:hover{background:#dadcde}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:disabled{opacity:.5;cursor:default}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button i{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button.monsterinsights-pp-themes-slider-button-next i{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-name{position:absolute;left:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-icon{width:74px;height:46px;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:0 0;background-size:392px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-212px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-106px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:43px;background-position:-318px 0}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{height:76px;background-position:0 -73px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-106px -90px;height:41px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-212px -83px;height:56px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{height:50px;background-position:-318px -86px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-name{position:absolute;left:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-icon{width:74px;height:40px;background:url(data:image/png;base64,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) no-repeat 0 -19px;background-size:296px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-74px;background-position-y:-6px;height:66px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-148px;height:50px;background-position-y:-14px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:78px;background-position:-222px 0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-preview{position:relative}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls{margin-right:22px;margin-bottom:20px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls input[type=number]{width:40px;height:40px;border-radius:5px;border:1px solid #b9c9d7;padding:2px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-inputs{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label{font-size:14px;width:auto;margin-right:9px;color:#393f4c;margin-bottom:8px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label span{display:block}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-pp-control-label{margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input{border-radius:5px 0 0 5px;text-align:center;-moz-appearance:textfield}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-inner-spin-button,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;font-size:10px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow{background:#f9fbff;padding:3px 5px;border:1px solid #b9c9d7;border-left-width:0;cursor:pointer}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:focus,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:hover{background:#fff}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up{border-radius:0 5px 0 0;border-bottom:0;padding-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-down{border-radius:0 0 5px 0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-unit{font-size:14px;color:#444;margin-left:5px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-description{font-weight:700}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline{display:-webkit-box;display:-ms-flexbox;display:flex;padding-right:9px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline .monsterinsights-colorpicker-preview span{border-top-right-radius:0;border-bottom-right-radius:0;border-right-width:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline input[type=text]{border-top-left-radius:0;border-bottom-left-radius:0;max-width:108px}.monsterinsights-admin-page .monsterinsights-color-picker{position:relative;max-width:40px}.monsterinsights-admin-page .monsterinsights-color-picker .monsterinsights-colorpicker-picker{bottom:-120px;margin-left:10px;left:100%}.monsterinsights-admin-page .monsterinsights-pp-posts-picker .multiselect__input{border:none}.monsterinsights-admin-page .monsterinsights-popular-posts .monsterinsights-settings-block .monsterinsights-settings-input-select+p{margin-top:25px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#fff;color:#444;border-bottom-width:1px;border-color:#b9c9d7;border-radius:0;line-height:18px;border-right:0;margin:0}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#509fe2;color:#fff;border-color:#b9c9d7}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative;border-radius:0;outline:none}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#509fe2;color:#fff;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts{padding-top:15px;cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts span{color:#d83638;font-weight:400}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta{width:144px;height:100px;padding:0}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta:after{background-image:url(../img/theme-preview-beta.png)}.monsterinsights-inline-popular-posts-image{width:128px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-right:16px}.monsterinsights-inline-popular-posts-widget{margin-bottom:24px}.monsterinsights-inline-popular-posts-alpha{padding:24px 27px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1;display:block;margin-bottom:6px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:1;text-decoration:none}.monsterinsights-inline-popular-posts-beta{padding:14px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #d6e2ed}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-text{margin-left:19px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-border{display:block;border-bottom:1px solid;margin:16px 0}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list{list-style:disc inside none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list li{font-style:normal;font-weight:400;font-size:16px;line-height:130%}.monsterinsights-inline-popular-posts-delta{border:1px solid #d6e2ed;padding:16px 18px;border-radius:5px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-icon{margin-right:8px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;vertical-align:top}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-title{display:block;font-weight:700;font-size:18px;line-height:1;text-decoration:none;margin-top:4px}.monsterinsights-inline-popular-posts-echo{padding:13px 16px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-icon{margin-right:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;margin-right:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-foxtrot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;display:block}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image{padding-top:57%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image:after{background-image:url(../img/theme-preview-image.jpg)}.monsterinsights-inline-popular-posts-golf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;float:left;background:#fff;padding-right:20px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;clear:both;margin-top:14px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border{display:block;border-width:2px 0 0;border-style:solid;margin-top:10px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border-2{border-top:1px solid #e2e4e9;margin-top:20px;display:block}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-icon{margin-right:10px;vertical-align:middle}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-title{font-style:normal;font-weight:700;font-size:18px;text-decoration:none;line-height:130%}.monsterinsights-inline-popular-posts-india{padding:13px 12px 13px 16px;position:relative}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-border{border-width:0 0 0 4px;border-style:solid;position:absolute;left:0;top:0;bottom:0}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-title{font-size:14px;text-decoration:none;font-weight:700}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-label{font-size:14px;text-decoration:none;font-weight:700;margin-right:4px}.monsterinsights-inline-popular-posts-juliett{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-border{border-width:1px 0 0;border-style:solid;position:absolute;left:0;top:0;right:0}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-title{font-size:18px;text-decoration:none;font-weight:700;max-width:400px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;display:block;line-height:125%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-label{font-size:14px;line-height:18px;text-decoration:none;font-weight:700;padding:4px 12px;position:absolute;right:0;top:0}.monsterinsights-inline-popular-posts-kilo{position:relative;padding:30px 0}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none;display:block;clear:both;margin-top:6px}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border,.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{display:block;position:absolute;left:0;right:0;top:0;border-bottom:4px dashed #e2e4e9}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{bottom:0;top:auto}.monsterinsights-inline-popular-posts-lima{padding:16px 19px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-text{margin-left:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:120%;text-decoration:none;display:block;max-width:420px;margin-top:7px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-image{width:144px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-right:0;margin-left:20px}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2{padding-top:69%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2:after{background-image:url(../img/theme-preview-image-2.jpg)}.monsterinsights-inline-popular-posts-mike{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none;display:block;max-width:380px}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-label{position:absolute;z-index:10;left:0;top:0;font-size:14px;font-weight:700;padding:5px 8px;line-height:1.2}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-image{margin-right:20px}.monsterinsights-inline-popular-posts-november{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:5px;border-width:1px;border-style:solid;padding:16px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;margin-top:4px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-label{display:block;font-size:16px;font-weight:700}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-image{margin-right:20px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-icon{width:32px;height:32px;display:inline-block;border-radius:50%;text-align:center;float:left;line-height:38px;margin-right:17px;margin-top:4px}.monsterinsights-sharedcount-status{font-size:12px;color:#777;margin-top:12px;line-height:1.5}.monsterinsights-pp-manual-placement-options{margin-left:-12px;margin-right:-12px}.monsterinsights-pp-manual-placement-option{width:150px;height:150px;border-radius:10px;border:1px solid #b7c9d9;font-size:14px;line-height:17px;color:#444;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;cursor:pointer;margin-left:12px;margin-right:12px;vertical-align:top;max-width:calc(50% - 24px)}.monsterinsights-pp-manual-placement-option,.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{min-height:40px;margin-bottom:23px}.monsterinsights-pp-manual-placement-option.monsterinsights-pp-manual-placement-option-active{border:3px solid #338eef;font-weight:700;background:#f1f7fe}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:calc(50% - 12px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps .monsterinsights-button{margin-top:10px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps input[type=text]{border-color:#b7c9d9;color:#444}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:100%;margin-top:30px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li b{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:calc(50% - 12px);border-radius:10px;background:-webkit-gradient(linear,left top,left bottom,color-stop(17.51%,rgba(51,142,239,.6)),color-stop(74.11%,#0e5caf));background:linear-gradient(180deg,rgba(51,142,239,.6) 17.51%,#0e5caf 74.11%);color:#fff;position:relative;height:198px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;text-align:center}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block>div{position:absolute;bottom:0;padding:20px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-welcome-overlay{position:fixed;bottom:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-pp-video-block-icon{margin-bottom:30px;display:inline-block}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block p{color:#fff;margin:0;text-align:left}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:100%}}.monsterinsights-settings-content-pp-inline input[type=number]{max-width:80px}.monsterinsights-settings-content-pp-inline .monsterinsights-collapsible-content .settings-input-text{margin-bottom:20px}.monsterinsights-inline-desc{margin-left:5px}.monsterinsights-widget-popular-posts-widget{margin-bottom:24px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list li{display:inline-block;background:#fff;border-radius:3px;margin:0 6px 30px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-left:4px solid #1ec185;padding-left:16px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:4px solid #338eef}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px 0 0;margin:0 6px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:2px solid #d3d7de}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-label{font-weight:400;font-size:12px;display:inline-block;padding:4px 8px;border-radius:3px;line-height:1;margin-bottom:14px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-title{display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;font-weight:700;position:relative}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-text{position:absolute;bottom:0;padding:0 14px 14px;left:0;z-index:15}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img{margin-bottom:0;padding-top:50%;width:100%}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:after{z-index:5;border-radius:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:before{background:-webkit-gradient(linear,left bottom,left top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;left:0;right:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-pp-products-theme-preview-output,.monsterinsights-pp-widget-theme-preview-output{margin-top:28px}.monsterinsights-dummy-text{padding-right:24px}.monsterinsights-dummy-text p{margin-bottom:40px;line-height:180%}.monsterinsights-pp-widget-controls,.monsterinsights-pp-widget-theme-preview{position:relative}.monsterinsights-pp-widget-controls .monsterinsights-settings-input-select-simple select{min-width:50px}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:calc(33.33333% - 12px)}@media (max-width:767px){.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.monsterinsights-pp-widget-theme-preview-render h3{font-size:14px;margin-top:14px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio .monsterinsights-styled-radio{display:none}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio>span{display:inline-block;margin-right:8px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #b7c9d9;border-radius:5px;width:40px;height:40px;padding:10px 5px;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column>span{background:#99a1b2;display:inline-block;width:8px;height:8px;border-radius:1px;margin-bottom:2px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-two>span{width:12px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-one>span{width:100%}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column{border:2px solid #338eef;background:#ecf4fe;padding:9px 4px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column>span{background:#338eef}.monsterinsights-inline-checkboxes .monsterinsights-settings-input-checkbox{display:inline-block;margin-right:32px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-bg-img{width:121px;height:121px;padding:0;float:left;margin-right:16px;margin-bottom:12px}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-1:after{background-image:url(../img/theme-widget-1.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-2:after{background-image:url(../img/theme-widget-2.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-3:after{background-image:url(../img/theme-widget-3.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-4:after{background-image:url(../img/theme-widget-4.jpg)}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-5:after{background-image:url(../img/theme-widget-5.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-6:after{background-image:url(../img/theme-widget-6.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-7:after{background-image:url(../img/theme-widget-7.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-8:after{background-image:url(../img/theme-widget-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-bg-img{width:80px;height:80px;padding:0;float:left;margin-right:18px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-1:after{background-image:url(data:image/jpeg;base64,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)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-2:after{background-image:url(../img/theme-products-2.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-3:after{background-image:url(../img/theme-products-3.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-4:after{background-image:url(../img/theme-products-4.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5:after{background-image:url(../img/theme-products-5.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6:after{background-image:url(../img/theme-products-6.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7:after{background-image:url(../img/theme-products-7.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8:after{background-image:url(../img/theme-products-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-input-text-small{margin-top:24px}.monsterinsights-input-text-small .settings-input-text-input{max-width:350px}.monsterinsights-input-text-extra-small .settings-input-text{display:inline-block;margin-right:5px}.monsterinsights-input-text-extra-small .settings-input-text-input{max-width:80px}.monsterinsights-widget-popular-posts-products{margin-bottom:24px}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating{display:block}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating svg{margin-right:2px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list{margin:0 -12px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list li{display:inline-block;margin:0 12px;width:calc(50% - 24px);vertical-align:top;font-size:16px;border-top:1px solid #d3d7de;padding-top:15px;padding-bottom:30px;font-weight:700;line-height:1.1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-price{display:block;margin:10px 0 7px;font-weight:400}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list li,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:10px 12px;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:3px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-price,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{display:block;font-weight:400;position:absolute;right:12px;bottom:10px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-title,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{margin-top:12px;display:block}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-rating,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:13px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:0;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:5px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-price{display:block;font-weight:400;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-text{position:absolute;bottom:0;z-index:10;left:0;right:0;padding:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-rating{margin-top:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img:before{background:-webkit-gradient(linear,left bottom,left top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;left:0;right:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{position:relative;margin-top:8px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{padding:0}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{right:auto;bottom:auto;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:8px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:calc(33.33333% - 24px)}@media (max-width:767px){.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.monsterinsights-pp-blurred{-webkit-filter:blur(3px);filter:blur(3px)}.monsterinsights-pp-upgrade-overlay{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:#fff;padding:8px 12px;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);border-radius:3px;z-index:10;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-upgrade-overlay>span{margin:0 10px}.monsterinsights-pp-theme-controls-holder{position:relative}.monsterinsights-pro-pill{font-style:normal;font-weight:700;font-size:11px;background:#1ec185;border-radius:5px;color:#fff;padding:3px 8px;margin-left:8px}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell{position:relative;width:750px;height:815px;max-width:100%}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell:after{background-image:url(../img/popular-products-bg.jpg)}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser{padding-top:83%;-webkit-filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1));filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1))}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser:after{background-image:url(../img/popular-products-browser.jpg)}.monsterinsights-popular-posts-products-upsell{margin-top:20px}.monsterinsights-popular-posts-products-upsell .monsterinsights-popular-products-upsell-window{padding:48px 50px 0;text-align:center;position:absolute;width:600px;top:62px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);z-index:1;background:#fff;border:1px solid #d6e2ed;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1)}.monsterinsights-popular-posts-products-upsell h2{margin-top:0;font-size:22px;line-height:1.2}.monsterinsights-popular-posts-products-upsell p{font-size:16px;line-height:1.2;color:#626d83;margin-bottom:32px}.monsterinsights-popular-posts-products-upsell .monsterinsights-button-text{margin:28px 0;color:#99a1b2;font-size:16px;display:inline-block}.monsterinsights-popular-posts-widget-category{margin-top:25px}.monsterinsights-popular-posts-widget-category.monsterinsights-popular-posts-widget-category-lite .monsterinsights-settings-input-select{pointer-events:none;opacity:.6}.monsterinsights-popular-posts-products-no-woocommerce{margin-top:72px}.monsterinsights-popular-posts-products-no-woocommerce .monsterinsights-settings-block{opacity:.6;pointer-events:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice{position:absolute;top:-72px;left:0;right:0;padding:16px 24px;background:#d7930f;color:#fff;font-size:12px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a{color:#fff;text-decoration:underline;font-weight:700}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:focus,.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:hover{text-decoration:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice span{margin-left:8px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice svg{vertical-align:middle}.monsterinsights-popular-posts-products-top{position:relative}.monsterinsights-pp-placement-options-accordion{padding-left:30px}.monsterinsights-pp-accordion-item-title{border-bottom:1px solid #d6e2ed;padding:24px 0;position:relative}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-toggle *{cursor:pointer}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible{position:absolute;right:0;top:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active{border-bottom:0}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top{margin-bottom:8px;font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top>span{margin-right:8px;margin-left:8px}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top .monsterinsights-settings-input-checkbox{display:inline-block}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-bottom{color:#777;padding-right:45px}.monsterinsights-pp-accordion-item-content{border-bottom:1px solid #d6e2ed;padding:0 0 24px}.monsterinsights-dummy-text p,.monsterinsights-pp-inline-theme-preview-render>p{opacity:.5}.monsterinsights-pp-products-theme-preview-output-narrow,.monsterinsights-pp-widget-theme-preview-output-narrow{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-dummy-text,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-dummy-text{width:60%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget{width:40%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-dark[data-v-0fc0f471]{display:block}.monsterinsights-reset-default[data-v-0fc0f471]{margin-left:5px}.saturation{position:relative;cursor:pointer}.saturation .slide{position:absolute;left:100px;top:0;width:10px;height:10px;border-radius:50%;border:1px solid #fff;-webkit-box-shadow:0 0 1px 1px rgba(0,0,0,.3);box-shadow:0 0 1px 1px rgba(0,0,0,.3);pointer-events:none}.hue{position:relative;margin-left:8px;cursor:pointer}.hue .slide{position:absolute;left:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.color-alpha{position:relative;margin-left:8px;cursor:pointer}.color-alpha .slide{position:absolute;left:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.sucker{width:30px;fill:#9099a4;background:#2e333a;cursor:pointer;-webkit-transition:all .3s;transition:all .3s}.sucker.active,.sucker:hover{fill:#1593ff}.color-type{margin-top:8px;font-size:12px}.color-type,.color-type .name{display:-webkit-box;display:-ms-flexbox;display:flex}.color-type .name{width:60px;height:30px;float:left;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#999;background:#252930}.color-type .value{-webkit-box-flex:1;-ms-flex:1;flex:1;height:30px;min-width:100px;padding:0 12px;border:0;color:#fff;background:#2e333a;-webkit-box-sizing:border-box;box-sizing:border-box}.colors{padding:0;margin:0}.colors.history{margin-top:10px;border-top:1px solid #2e333a}.colors .item{position:relative;width:16px;height:16px;margin:10px 0 0 10px;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:top;display:inline-block;-webkit-transition:all .1s;transition:all .1s;cursor:pointer}.colors .item:nth-child(8n+1){margin-left:0}.colors .item:hover{-webkit-transform:scale(1.4);-ms-transform:scale(1.4);transform:scale(1.4)}.colors .item .alpha{height:100%;border-radius:4px}.colors .item .color{position:absolute;left:0;top:0;width:100%;height:100%;border-radius:3px}.hu-color-picker{padding:10px;background:#1d2024;border-radius:4px;-webkit-box-shadow:0 0 16px 0 rgba(0,0,0,.16);box-shadow:0 0 16px 0 rgba(0,0,0,.16);z-index:1}.hu-color-picker.light{background:#f7f8f9}.hu-color-picker.light .color-show .sucker{background:#eceef0}.hu-color-picker.light .color-type .name{background:#e7e8e9}.hu-color-picker.light .color-type .value{color:#666;background:#eceef0}.hu-color-picker.light .colors.history{border-top:1px solid #eee}.hu-color-picker canvas{vertical-align:top}.hu-color-picker .color-set,.hu-color-picker .color-show{display:-webkit-box;display:-ms-flexbox;display:flex}.hu-color-picker .color-show{margin-top:8px}.monsterinsights-rotate-loader{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border-color:rgba(0,0,0,0) #3085d6;border-style:solid;border-width:.25em;background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}button[data-v-7b5d62d6]{margin-top:3px}.monsterinsights-dark[data-v-3f0b0409]{display:block}fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__loading-enter-active,.multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{opacity:.6}.multiselect--active{z-index:1}.multiselect--active:not(.multiselect--above) .multiselect__current,.multiselect--active:not(.multiselect--above) .multiselect__input,.multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.multiselect--active .multiselect__select{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.multiselect--above.multiselect--active .multiselect__current,.multiselect--above.multiselect--active .multiselect__input,.multiselect--above.multiselect--active .multiselect__tags{border-top-left-radius:0;border-top-right-radius:0}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 0 0 5px;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.multiselect__input:-ms-input-placeholder{color:#35495e}.multiselect__input::-webkit-input-placeholder{color:#35495e}.multiselect__input::-moz-placeholder{color:#35495e}.multiselect__input::-ms-input-placeholder{color:#35495e}.multiselect__input::placeholder{color:#35495e}.multiselect__tag~.multiselect__input,.multiselect__tag~.multiselect__single{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-left:5px;margin-bottom:8px}.multiselect__tags-wrap{display:inline}.multiselect__tags{min-height:40px;display:block;padding:9px 40px 0 8px;border-radius:5px;border:1px solid #b8c9d8;background:#fff;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:2px 8px 2px 20px;border-radius:5px;margin-right:10px;color:#393f4c;line-height:1.2;background:#f3f6ff;margin-bottom:5px;overflow:hidden;max-width:100%;text-overflow:ellipsis;border:1px solid #b7c9d9;font-size:14px}.multiselect__tag.monsterinsights-tag-forced{padding-left:8px}.multiselect__tag.monsterinsights-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;left:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:22px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\D7";color:#b7c9d8;font-size:18px;margin-top:-4px;display:block}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#444}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 30px 0 12px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{display:none}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #b7c9d9;border-top:none;border-bottom-left-radius:5px;border-bottom-right-radius:5px;z-index:1;-webkit-overflow-scrolling:touch}.multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.multiselect__content::webkit-scrollbar{display:none}.multiselect__element{display:block}.multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px;font-size:13px}.multiselect__option--highlight{background:#acbdc9;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#acbdc9;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect--disabled{background:#ededed;pointer-events:none}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.multiselect__option--group{background:#ededed;color:#35495e}.multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.multiselect__option--group-selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect-enter-active,.multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.multiselect-enter,.multiselect-leave-active{opacity:0}.multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}[dir=rtl] .multiselect{text-align:right}[dir=rtl] .multiselect__select{right:auto;left:1px}[dir=rtl] .multiselect__tags{padding:8px 8px 0 40px}[dir=rtl] .multiselect__content{text-align:right}[dir=rtl] .multiselect__option:after{right:auto;left:0}[dir=rtl] .multiselect__clear{right:auto;left:12px}[dir=rtl] .multiselect__spinner{right:auto;left:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}.update-nag{display:none}.monsterinsights-admin-page{min-height:100vh;font-size:14px}.monsterinsights-admin-page a{color:#509fe2}.monsterinsights-admin-page a:focus,.monsterinsights-admin-page a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.monsterinsights-admin-page .monsterinsights-settings-content{margin-left:auto;margin-right:auto;max-width:750px}@media (min-width:783px) and (max-width:790px){.monsterinsights-admin-page .monsterinsights-settings-content{padding:0 10px}}.monsterinsights-admin-page input.monsterinsights-has-error{border-color:red}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;color:#fff;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page input[type=number],.monsterinsights-admin-page input[type=text],.monsterinsights-admin-page textarea{border:1px solid #b7c9d9;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#444}.monsterinsights-admin-page input[type=number]::-webkit-input-placeholder,.monsterinsights-admin-page input[type=text]::-webkit-input-placeholder,.monsterinsights-admin-page textarea::-webkit-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-moz-placeholder,.monsterinsights-admin-page input[type=number]::-moz-placeholder,.monsterinsights-admin-page input[type=text]:-moz-placeholder,.monsterinsights-admin-page input[type=text]::-moz-placeholder,.monsterinsights-admin-page textarea:-moz-placeholder,.monsterinsights-admin-page textarea::-moz-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-ms-input-placeholder,.monsterinsights-admin-page input[type=text]:-ms-input-placeholder,.monsterinsights-admin-page textarea:-ms-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number].monsterinsights-has-error,.monsterinsights-admin-page input[type=text].monsterinsights-has-error,.monsterinsights-admin-page textarea.monsterinsights-has-error{border-color:#d83638}.monsterinsights-admin-page input[type=text]:-moz-read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page input[type=text]:read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page textarea{height:150px}.monsterinsights-admin-page label{width:100%;font-size:14px;display:inline-block;color:#777;margin:2px 0 17px}.monsterinsights-admin-page .inline-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights-admin-page .inline-field input{width:100%}.monsterinsights-admin-page .inline-field .monsterinsights-button{margin-left:10px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-admin-page .monsterinsights-error{margin:18px 0 0;color:#d83638;cursor:default}.monsterinsights-admin-page .monsterinsights-error i{margin-right:10px}.monsterinsights-admin-page .monsterinsights-license-type-text{color:#777;font-weight:700;margin-top:16px}.monsterinsights-admin-page .monsterinsights-license-type-text a{color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-dark{color:#444;text-transform:capitalize;font-weight:700}.monsterinsights-admin-page .monsterinsights-settings-block{background:#fff;border:1px solid #d6e2ed;margin:25px 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{border-bottom:1px solid #d6e2ed;padding:16px 25px;font-weight:500;font-size:14px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title:before{display:none}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding:25px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p{font-size:14px;color:#777;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p a{color:inherit}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding:25px 25px 25px 22px;margin:-25px;border-left:3px solid #64bfa5}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding-left:15px;padding-right:15px;margin:-25px -15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade.monsterinsights-settings-addon-disabled{border-left-color:#f5c953;padding-top:15px;padding-bottom:15px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span{display:block;margin:2px 0 17px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio input[type=radio]{opacity:0;position:absolute}.monsterinsights-admin-page .monsterinsights-settings-input-radio label{color:#444;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio label>span{vertical-align:middle;font-weight:500}.monsterinsights-admin-page .monsterinsights-settings-input-radio label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-settings-radio-text,.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-styled-radio{opacity:.6}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-right:16px}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked{border-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked:after{left:2px;right:2px;top:2px;bottom:2px;position:absolute;content:"";background:#509fe2;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label{color:#444;font-size:14px;margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux{cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox{background-color:#dee5e9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#b9d8f3}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label input{display:none}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label>span{vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox{width:27px;height:18px;position:relative;display:inline-block;border-radius:10px;margin-right:9px;background-color:#acbdc9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked:after{right:2px;left:auto}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox:after{left:2px;top:2px;bottom:2px;width:14px;position:absolute;content:"";background:#fff;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-info{color:#b6c9da;margin-left:10px;cursor:help}.monsterinsights-admin-page .monsterinsights-settings-input-repeater .monsterinsights-error{margin-top:0;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-labels label{color:#393f4c;font-weight:700;margin-bottom:6px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row>span{width:100%;margin-right:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input[type=number]{width:30%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{width:70%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row.monsterinsights-disabled-row{opacity:.5}.monsterinsights-admin-page .monsterinsights-dimensions-count{color:#777;font-style:italic;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label{margin-bottom:0;width:auto}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-button{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-error{margin:0 0 20px}.monsterinsights-admin-page .monsterinsights-settings-input-select .monsterinsights-dark{margin-bottom:5px}.monsterinsights-admin-page .monsterinsights-settings-input-select label{margin-top:-4px}.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:30px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:15px}}.monsterinsights-admin-page .monsterinsights-collapsible>p{margin-top:0}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible{color:#b7c9d9;float:right;font-size:22px;padding-left:20px}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:focus{outline:none}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible i{cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-dark{display:block;margin-bottom:9px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate p{margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-ua,.monsterinsights-admin-page .monsterinsights-settings-input-authenticate button{margin-top:14px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-manual-ua+.monsterinsights-error{margin-top:15px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions{margin-top:18px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-right:20px;margin-top:0}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-bottom:10px}}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-settings-input-toggle-collapsible{margin-top:12px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-paragraph{padding-top:5px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text{color:#999797;font-size:12px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text:hover{text-decoration:underline}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-upgrade-icon{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-settings-addon-message{margin-right:25px;width:100%}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-button{font-size:12px;padding:6px 16px}.monsterinsights-admin-page .monsterinsights-icon-warning{width:48px}.monsterinsights-admin-page .monsterinsights-icon-warning:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAAAllBMVEUAAADV4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u2KpLj///+etMW0xdKqvs6ascPG1eKww9PO3OmVrb+LpbnR3+qRqr3U4ezA0d60x9atwdGPqLyNp7rT4Oy8ztzBztmiuMnx9PfJ2OXW4ObL2ua3ytilu8v7/P31+PnT3eXC0t/r8PPo7fHe5uvR2+OftscAs3DjAAAAC3RSTlMABtDHbvQb+ctt0f3LxK8AAAIoSURBVGje7drZbqMwFIBh05Au4wPBYPa1TPak2/u/3NAME6lzSMHGvqjk/zJI/sTiSLZMCLHsxZJqaLmwLdJ1f0e1dXdPiIXGVypY5Ilq7YksqNYW5IFq7YFQzRnAAAYwgAEMIAxwP2t2TbZOKWo+wHdtCH0VK3zFQPYRwdfCgqsDMgYDVUWsBuAt3ChpVABZCbfbx7OBPILvYnwmUMBI4XYWEMBoIZ8BNDAhVksD6wqm5MkCKf78g83bOUS/ZpJAjkZ6d7qOLnoNtRQQowmwci69ROjGpAD8Bb05f0O3UMYSQF0i4LUHPHQllwAaQJ16IMSTQQJoMeAenM/eAbcWBtIKcN6xG38zdCUXBnwYqvRWLgzVCgM5CBUKAx6giudLq0GhFgXwO2ZOX2fjuCiAH7X7Dxi8hbVuwJ8PJEelQAtYYL8VPiIPBvoGiEWBXAxIqChwFgNcYSCOhIBAGKCuEOCLAzs0yPPmcAFeTwy/AmEAPyPmXDuhvykJgO7RTL62ga9FWxlgHU0GPCoO4LlWvjh9h/9ec8XlgDiBaeVUDqAZTMpNZQFawIQSTqWBtIXRKn/OAqT+GB3/PG8Jle5Hno8/e5UZRHA7tlWwTvZDuFFUpEpW+nVQwlDMV7ZXEQ8QbqZ0t6Vu9glci1iw1bBfxJs88Dwv2PkppT9zx8sAnxnAAAag1AAGEE/3oYGl/mMPNtWarfnoyS9L++GZLst+1HP859G2CPkDRZCgO+Q/ERIAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-bg-img{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-network-message{width:100%}.monsterinsights-admin-page .monsterinsights-undo-redo{float:right;margin-top:16px}.monsterinsights-admin-page .monsterinsights-undo-redo button{border:none;background:rgba(0,0,0,0);color:#509fe2;padding:0;margin-left:5px}.monsterinsights-admin-page #monsterinsights-license-key-valid{-webkit-text-security:disc;text-security:disc;-moz-text-security:disc;font-family:text-security-disc;font-size:25px;line-height:1.2;color:#b7c9d9;padding-top:7px}.monsterinsights-admin-page #monsterinsights-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-moz-placeholder,.monsterinsights-admin-page #monsterinsights-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-first-time-notice .monsterinsights-notice-button{margin-top:20px}.monsterinsights-settings-blur .monsterinsights-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.monsterinsights-settings-blur.monsterinsights-path-general .monsterinsights-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate .monsterinsights-button{margin:0 20px}.monsterinsights-not-authenticated-notice .monsterinsights-dark{font-weight:400;margin-bottom:20px}.monsterinsights-pdf-exports-settings .inline-field .monsterinsights-button:first-child{margin-left:0}.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{margin-top:18px}}.monsterinsights-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.monsterinsights-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.monsterinsights-admin-page .monsterinsights-logos-row{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;border:1px solid #d6e2ed;margin:40px 50px 60px;padding:25px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-logos-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:20px;margin-right:20px}}.monsterinsights-admin-page .monsterinsights-logos-row .monsterinsights-box-title{font-size:13px;font-weight:700;color:#8aa4b8;position:absolute;background:#fff;padding:0 10px;top:0;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);left:50%}.monsterinsights-admin-page .monsterinsights-upsell{background:#fff;border:1px solid #d6e2ed;text-align:center;margin-top:25px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-upsell h2{font-size:20px;color:#393f4c;margin:36px 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h3{font-size:18px;color:#393f4c;margin:0 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h4{font-size:18px;color:#4c6577;font-weight:400;margin:0;line-height:2}.monsterinsights-admin-page .monsterinsights-upsell p{font-size:14px;color:#4c6577}.monsterinsights-admin-page .monsterinsights-upsell .monsterinsights-upsell-top{padding-left:10px;padding-right:10px}.monsterinsights-admin-page .monsterinsights-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom{padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{min-width:288px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom img{max-width:100%}.monsterinsights-admin-page .monsterinsights-report-ecommerce:after{background-image:url(../img/monsterinsights-report-ecommerce.png)}.monsterinsights-admin-page .monsterinsights-addon-ads,.monsterinsights-admin-page .monsterinsights-addon-amp,.monsterinsights-admin-page .monsterinsights-addon-dimensions,.monsterinsights-admin-page .monsterinsights-addon-eu-compliance,.monsterinsights-admin-page .monsterinsights-addon-forms,.monsterinsights-admin-page .monsterinsights-addon-instant-articles,.monsterinsights-admin-page .monsterinsights-addon-optimize,.monsterinsights-admin-page .monsterinsights-addon-performance,.monsterinsights-admin-page .monsterinsights-addon-scroll{width:48px;padding-top:110%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABfCAMAAAC5kuvHAAAAWlBMVEUAAACtvcitvcitvcitvciduM2tvcitvcitvcitvcitvchQn+KtvchQn+JQn+JQn+KtvcitvcitvchQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+KtvchQn+KLGAvfAAAAHHRSTlMAIu53RBG7qogzme7dIpkzzGZVzKqIZnfdu0RVXT0ICgAAAsdJREFUaN7tmd1ymzAUhAEjMMYCJ/wT6f1fs4QWH4OwN3StmV70uzMzWRF5vaszCg6ShYFPMhOpwCOpMR+BP0JjzDXwRRgnZuKc+dii8BaZO1Hyltd9/BSbRyLFe+pqssePp0f5mPCU6KXbByLPe+o6Ca3/8fOiH/OeCue3TVcLfCz6Gecpld7MnWtyX+OyPPvkPJWZFaflefKtMr8t8hT+agX5kiMTnVR4mR5BT+EFXPngfFbzrlw+gacOLAA21fUURnZWttrF9ZSP93c9JeA/A7+cjaeOcJvePA6/VwGmE08d258knq2Sgv1xPIUSmScLQSJ7OAFIIns7AUgi8ycAmMj8CQAmMn8CwImMAScAkMgHQGl9IuRBWh9INN22+kBaH0zkcbATw/gXaY3fX3W9/UPfKZjWBxO5LOyKogRpfSiR28o6VC1I658msm5yu0veaJTWGF3bF9Q64Chz+5K85PQLCyg4/coCqn9E/0n11k/3Xf9eugYlDKq3eCI/+UbNCxSghEH1Ns/kJ77sRAdKGFRvuy8ve9eCEgbV+7UvL1s3ghIG1asXmwz78laDEkbVWy2/omZXvkcljKq3uZuw2ZG3DShhWL2lmKRx5e0IShhXVy4p1jjyOSphXL2FlQW6jbwtUAnj9y+dHBZ5O8ISxtVbywJb+QqXMB6GSmmSbSKVYGT62TBUywJr+ZoZmQQtXSjy8tvlaZcF2lUddIwmbpk6eBtq73zleIGYT3VuN/SKmE/xOSgv3zyf6n719vrt86kaRH5QPubTLrczeedpPlXNXCnKx3wq89f/+RRAz6cIej7FsPMphp1PMdR8KmmKyUJQjSBNAcz9C4C/f8Hw9y8ufu5fBD/3L+IVP/cv4hU/9y/iFU/3L65X+PsX4BX6/gV4hb5/AV7h719eeoW/fwFeAYlJtysP6RW+XXkIr9DtykN55RdZztdXJmO7xAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-ads:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAAV1BMVEUAAABQn+Iuf75Qn+JQn+Iuf76svcmsvclQn+L///+LpLesvckuf743iMhzsujc7PmKv+xMm97o8vvz+f2izPDQ5fd/uepcpeSt0vGWxe652fNnrObF3/Xl1C/0AAAACHRSTlMA7OajHEnmSn/UIZcAAAF/SURBVGje7dkNb4IwEAbgFlCvWymVb3D//3fu2oUQiRGh1wzNvYmE5kwfyxFsgniYU6KTU0BhNYnWOgkorEa7bC98KpClEpbRLoAJK8g0w/lx+lgAEplIISYAqZBxASkgLgAPgGuu/5Jf9xTWgVxPyfcU1gE9Z3vhECug7gFtGGAAgIHNgC3V05Q2DLBqNTYIKNeBMghQL4SBKUVTKMw8LkiByuBoUHNGAEsJjMubqgYwlEDrh300oPKjacrGmvZGC4yuA/jxjR3AhRYwOJ1bRY3nPdADpb/+LcANBx1ANxhaoHc/frT+GhV4/FGKtgcGptSq8YxqiYDlA7PzN1Tb9EAJ1DCnUZa+yTeAVmGqDmDAIzlgsK3TUmp03Bo6ymdR1RSLR2hR4em7/R+8KfDKruLY+6IXdnZH35sywAADDDBwDEBC1EiRQtSkIou6BJnNLyjo419QLPJNkLsJPw84h89/fgpcgoXzRezM112efJEBBhhggAEGGGCAgX8BfgF9zfCNw+tX7wAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-amp:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAABAlBMVEUAAABQn+LW4upQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn///+vv8uyws1SoOLT4OnF091WouLO2+PH1d69zNa3x9K6ydS0xNCw1O/L2OFNnuDC0dvAztjQ3eZqreTI1t9ZpOL5/P7r9PqdxueLvOZ5t+VjqeRWpOCdyuyoy+d1suT1+v3m8fjb7PfO5fTF4POo0O6hzezL3enK3OmKwOiCvOdwsuRmrOHz+fu52fG+3PDI2+nD2OmtzuiYw+aIu+VeqOGYxumXbKjeAAAAHHRSTlMA9PEaFPz4z612TycFzHHalI9ZKWlm7be2JeyNLqjzBwAAA2ZJREFUaN7s2OlSo0AQAGAwh+LmMPHend62sCj/pPKDIiYhpzExmnitq+//KkLUKmZ6EIbhp98DdBfdPT2Aoa3YbBzXj8rlo/pxo1k0clasVYFTreWZo/DHBMLcK+QUvmKZIGValTzin25DrO19/fi7JnzD3NWNf1iCb5UO9eIfQKIDrfqUIFFJo0r7svr3J0OhD5k7XZHNT7uDd+IsZZ1WCyRaiAMQWBnPr6xALuLEI8O6OdO/draYkv+yAl0hzhwQ7YXxFcOzGweoO0Rs2SAqB5tvhynqyjuMeAtUzTC2mCIXqDkG+kBVDYMpWgLlYaDjgkRBOcFI2uHA9BUkmsoJekCsMPRobwCvoZxgTB/gEkPTRSvwsAbOiXICH0QLjJoDp66cgJyCAUZNB8JhjiS4OPsb6+yCfSIFusaoNQgiCbj4JENcgj5GzchZVktAS+TcYwRdqL+VS+STLR1Bt0Vdd0z7D8Fszhcfk3rZBtGJ9kGzQ84MY7ZRI8uqoPzNE1znsiqWILHqhNtuAFSBNDmxz27MfYPDpHUtxKcZ4i+ct7DDNlA11QTyK9MJT/MKQHZlKpZIful7V4iPbQDppc+UPZFHsBHRgw362sLUvYDgVd5hsIxsCc7FQbrFe65A3Ksjy+BZKNJwspYV6DQIT5qcrs//7LSv7wpjyi3tbpoPEJ0ErGun/IRSL9FXlZyUH4Esq2c33Wcsy+z8xQGpMvchzjQ89ZzkXwlMy03XTfoZwnQtR72x79m25497o6JBsFwZPwne2y+jFYlBGIoufSrMLwxiUSRRxIr//2+7YKdbGmde5oZhoHlrhXvI1Zh4AT4DCH6NyS4cS9UANDb/sXg0wC9dWSAwABeNDHIwQE1mFAkFqHbc1jII4A72MxHxrg8CxN2S5jqx/SFtQG2yfzhSDklR14cAtg04KTpYHXihD74qUgf4uxIgbHV71wIUkQAYQB3g1AB8dmg1p3DvAXoV8wtAeA/QReILQNbOIGvvQcWeIgnA1EF56p7FVrJcSaC7qDwzz2NuU3lYsqgzbD9om37EdTTjB/omI3syt4c9+y8CTxULUyE+fDvoXCQj6E52NuvOpqmqTtdm1X0fFKf2wkmRSv7SN9oFuAAfB0xI/WkAmJGAeQC4TcAEbj8jwgxCTPNI/xcIan5QyH2lWAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-instant-articles:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAA+VBMVEUAAABQn+JQn+LW4upQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn////L2OGvv8vAzti0xNDG1N7T4OhXo+NPmtzC0duKvObI1t+3x9LL3emqzOhVoOJPneCaxOZrrOSGrtfI2urQ3eZ1suRjqeOkwN+9zNb6+/3i6fK/0ue3zOSxx+HH1d6YuNtVmtlbmtV7pdN3o9PW4u/D2Omgx+e7z+TO2+OuxeGTtNnv8/rY4/DT4Oycu9x6qdmToCJeAAAAH3RSTlMA8xrwz612TycF9sxxE5SPWSn58+1pZhbb2Le2JfGNzELbBwAAAsdJREFUaN7tmF1f2jAUh1OwKIKCiDCdW0J5LRQo410UmeLm1L1+/w+zWrefLSdpmya9YOtzBxf/p+ScnJAiYcr53NlpsVAonp7l8mUkmYNshrjIZA8kxifeKwSwf5iQFJ9OKYSKkkrLyD/fIUx2jsTzd98RD5Rd0fwS8aEkln9CfDkRWh8SAIFVOlKCCJTQlU4z++fDeODspbDdmiIsJkviJBVy/zIX6EK7dS+Svaf31CTmwiAMfmor4ubwOZ8zHvcHzOfX1ptzyZp8KuZkyM6/Al9mEUryCkb0/llpmvYJfJ1BCHPSp+dfaxZtAkhwC0xq/oNm8ZVA8twCg/n8Vo9CctyCGSV/Yuc/EApvuQVzkNFe2vmXa5rgDbdAB/k/tBfBL+rEcwg+1ipMak38B5D/WXOzsR0cAmc+NAABM3/p7NYCt0B3538H+U/ESdEhaPouESyyBliBIou0KVRdCLep4Sl4Et9oJqHRvrTzb+CokDTs7hj5JAH2gUedPcb1lWYxJt7j2sr3NrAPnDVrmGa5BOwj8/r1+cGRCfYBe4mYfXT7mg8PfczNBMy7G/u0hCiJUAJYBUY+SaFwgtZos0fv6NeQdEgBvncv0rcxoaGcIwuwDwLV2eT4+w7aNNDQ/hLkAiIi8DeUEBA0gy6RjakHvATisNyPgl1jcWhawwGhsu+6iGMBJobu/yoBC9EfjvxehmBR+qYxm+uDgT6fGWYZAbBUUCyIBf+UYFr1QIKg7j23W2IC/9OnIyyoeFPfTkGtt6gvFo3IBPWXyjajqkEV40gFCxyx4BHbtFqdiAT4mU4jsi5q2I9fqUQrqMYChqDR7Xardg26Fj35gh52ErmgEbWgErFguo1dFAtiQSyISFDzFogf+nVPQW0q/X7waB84fz9txQ0nFsSC/0mQxBI5RhBVpkBFkD2JPyG5h2gG9VjS+qi0/N+iC9OxZrJwlgAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmBAMAAADG74kWAAAAFVBMVEXW4urW4urW4uoAAADW4uqsvclQn+ITLWFyAAAABHRSTlPsoxwAEnMmfgAAAIFJREFUWMPt2LEJgDAUBNCvOICFAwhu4AQKP06QbCDuP4J9sPCKwOm/KwOvusCHs3V0IN1is0PpbcLAbgMGNnMwvwGp1MmPj7EBYXGEgLA4QkBYHCFI5VVybEBYHCEgLE5AQEBAIAQgPIqE4LjqnAJtwNe+RlMAz0XwIAVPXvCodgNhA6kmkI3HfAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-optimize{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-optimize:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABeCAMAAAByzjhiAAAAkFBMVEUAAADW4utZo9+bxObW4utUod/W4utUod/W4utUoN5ToN3W4utUod/W4uvW4utTntpTntpUod/W4uvW4uvW4utTntpUod/W4uvW4uvW4uvW4utTndnW4uvW4utUod/W4uvW4utUod9QlMtRl89Qls1RmNFSmtNPk8lPksdSm9VOkMNRmdNSnNdTndlTnttUoN4GbpBuAAAAIHRSTlMAAgcM4/fvwLNVRvnULikb5+bRxbyil5SSi4BySTw4Jgr331EAAAGYSURBVGje7dJXbsQgFIVhPJ7qTEnvxb2Msdn/7gKOIiJ7AMkcXiL+BXxHiEvULXabVTK7m8dPoi3iuF37UMPvEvtW6oFTgmiv9DcJpEjBBwmmjep2ElDe9773ve9973vf+zP9YFSI9MPXq3h+KTP4B65bVNVM63/FdlVn3QAJ1ta+boC8x/b+uWJKf2vv6wbI2t7XDZAY4ItS5tQXA079uk6ZQ7/m5cyZXw9lzIkveLFQVRnD++ngD7wcwPr1r5+mBcP7kue1cF/yQ6UTvxK+HED6Iz7PS6w/5vOsgfojnvtZg/XHfFZQpD/li4Li/Akv/LZD+bn0//Bt2eH8Kc/9sgP5Cr5seow/+dvih2+aHuZPeeHTHuGreUp7iC8vc8TTzt7PFHwjeIQ/OR3JQ3w1j/F1POB/C8XpUMEjfB1/DfA1fP8G8BWXOfgLgK/hI2Lvt4rT4fyOIHwV/3AiCD+4nLAhPrmc973vfe//d3/p2H+25LcG/2jpfxBD91b8bWDyQ5sfWIfE2GI7m78TvLnjy5w3LJ8OZvobpmnKQFwgNYcAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-addon-dimensions{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-performance{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-performance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABlCAMAAACFixa5AAAA8FBMVEUAAADW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4uqsvclQn+KwwczT4erK1+DR3+rH2+m91ulkqeNbpeN2suRnq+PJ3OmKvOZ7teViqON4s+R0seRWouPC0dvL3emOvuaAt+WXwuZuruRgqOO6ydSuzujL2OKT9JW9AAAAMnRSTlMA4dIH+kUD8u3kDNZoShiYfeiQg2I/DsiIJhRPLfTexcG8s65vIBza0KReuYx3WFU2dMplGNoAAAPgSURBVGje7ZnZetowEEaHesMsBrOvIWwhpOk2UFqaNE3a0CZd3/9tataxIwnZRL7o15wbjC7+g6XxSJ+B8Gj1crOUyWReNY16CtSivSp0bfST7GQ0UEY9jRxOT0ARlQRySauaqDco4IUiQRcFdBQJnqGAxJPgSfCfCMxsX0cRfQMeSSNv415GUZqqlh28dMBHKm+hFDuoGJYGZRO4lG1E1HOkaCYwFGmD7ji3GngNHFptXGEV113Y6WNoxo31FGzvuM0xNI5wi5sxAbJJjIBdBjBLNn13mGLpBm66WcRo6MXsaaCTP1z7IiomBwEMVM4Z+HBcVI41BKKHMdChx6GEcUBnAieJUZndXU79XP5GFr21EYwxMt+nD/iJHI43LQKjczF9CPJ4uRJUMTqfwwmOtEMfgbtwAix5gud4ALOP4QRpgBYexOxLKAEakMMDDTehBDmwUcb7DzOu4T6MIA0WSvhwOb2Y87y3YQQj6MryF8vHaM7Plwv6kJXne3yeC/LliwwFyfxMeYb3Icu0AB6ZpCSfDEz+1c0+QXKwPf4khfmEb6Vnu/xvu0tOfL5CR4qiJc4nA5u/W4xLQTwpztvC/Ivt56ftQ0z5nuHH8vpaFE+c6IL8u9kNGZh8z3C/WFzPgl2U4n0CQf61ry1cfQpcC7GAgWnbV5TvN8yZfC4OEIKdn/ID876g2doH7/SbxwD3lB8wsPnv3k4mb99hgCaw1DgN/5qzxVDFfl3HevmeQXSsI3LMyeT2O2cTo/w/m9jJCgyQCSHwz8HXXX+grvF++cujCGoowkvaGih/9muyR3AmX2TCS9gabqnrefkBgXyRB0gEa2NChvvFjzlZxQIDWF4hQbXBTZAL6sDS4gUcKNA1YEkpFBwBi3mmSwS0MFKBm2VXII0oEdDCCAVENahoniLKBNJBscKoIioXkOKki6hWQBwPASojjE+AdgOKGKcACzCKV2CDFa8AIR2vIAH5eAU1cPR4BNRWx3EKnlObjkdQBo9xfIL+ulewlUqNky6lgyz6ZmN7gQzU+ulSPsiW0BrtFGPhKLXbjnWMAb3M/FOmlhoQ5jEq51nwnXkSFWPVIUAWA1RtjIjbYd6mid8tuyXTiThpxw68tAMbzUPM3m71zyvL74VIC2ouj25FfeczgaFS3fSnFqwxEqELfluQ9c2v7DSAgzaouolelgZStTaGoF301YvRs91uyYSQnOR0lKAXHHgMw8LeAk6eD+GxaGdChVXS/oF/Ap8ETwIlCLfskSLBGAX0FQkMFFAGReSQyzmowuT1besFKKRiDHLP0661SnbTvULGSEEspKLm/gXsGeljiPFFoAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-scroll{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-scroll:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-upsell-large{padding-bottom:35px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-large{padding-left:10px;padding-right:10px;line-height:1.2}}.monsterinsights-admin-page .monsterinsights-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-upsell-large h2{font-size:18px;margin-top:0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-coupon{color:#509fe2;border:1px dashed #509fe2;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-flow:wrap;flex-flow:wrap;margin:30px auto 25px;max-width:525px}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:left;margin:10px 0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span:before{content:"";background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAElBMVEUAAABQn+JQn+JQn+JQn+JQn+KxowiZAAAABXRSTlMARO4idxyyls4AAAAySURBVAjXYwABoyADBhgQDRWgKttQUFDQNdQRSBowqIbCgAJDKBwEIIsjq6eFe5D9CwCWPRV/mairZAAAAABJRU5ErkJggg==);width:11px;height:11px;background-size:contain;display:inline-block;margin-right:12px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p a{color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEUAAAD/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE1mRQDuvkTSpDZ7VwqgeB2bdBqvhiV+Wgx2Uwj4xkn3xUnfsD3KnTKziSeLZhOFYRBnRgD04bLqAAAADnRSTlMALPrz8dvSp6SXYxMNONmrFGwAAADrSURBVDjLhZPploMgDIVjqQjY3hS12r3v/5bDjFGH0gPfH+4JS0IW2mid0QpQ2riWUqpmh5VdU1HMweIDe4iu10io/z1y3OML++N6X/aTE5X4l/dT6jkOCyHF/jmAcAIS+eukET1wJ/ZTx4MYG6JW8uOZuZ9lH6SXjLXkMHMO1m6WXZBnMTsy+QOGNHIuoEkhFyQUxX9LJaEAKWRRpJFFk0EWQw7C/YaV2x2CW1ONx3vwVwSufng/sKR6K9ZlZOZpHKewjJelWFG5nyw8t3LHDeP71zS9eo8FW2y5UtMW2748OOXRKw9vcfx/ACZnLYWsWc2gAAAAAElFTkSuQmCC)}
1
+ .monsterinsights-dark[data-v-3b9e68c1],.monsterinsights-dark[data-v-3e9d67ac],.monsterinsights-dark[data-v-4619bc56]{display:block}.monsterinsights-addons-navbar h1{display:inline-block;font-size:16px;line-height:48px;font-weight:400;margin:0;color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px;width:258px;position:relative}@media (max-width:750px){.monsterinsights-addons-navbar .monsterinsights-addons-filters{width:calc(100vw - 200px)}}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]{height:28px;margin-right:0;padding-left:10px;padding-right:28px;font-size:14px;border-color:#d6e2ed}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-webkit-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-moz-placeholder,.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-moz-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-ms-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters>i{position:absolute;right:10px;top:5px;z-index:10;color:#b7c9d9}.monsterinsights-addon-not-available .monsterinsights-addon-status span,.monsterinsights-addon-not-installed .monsterinsights-addon-status span{color:#777}.monsterinsights-addon-inactive .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}#monsterinsights-addons{width:770px}@media (max-width:782px){#monsterinsights-addons{width:100%}}#monsterinsights-addons .monsterinsights-addons-area{margin:0 10px}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button{background:#f9fbff;border-color:#d6e2eb;color:#8ba4b7}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:hover{background:#fff;border-color:#c4d6e2}#monsterinsights-addons .monsterinsights-addons-no-results{margin-top:25px;padding:0 10px}#monsterinsights-addons .monsterinsights-addons-no-results p{font-size:16px}#monsterinsights-addons .monsterinsights-addons-no-results>div{visibility:hidden;-webkit-animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards;animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards}.monsterinsights-path-addons .monsterinsights-navigation-bar{padding-left:10px;padding-right:10px;background:#fff;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-container,.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:0}.monsterinsights-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px}.monsterinsights-addons-list .monsterinsights-addon{width:calc(50% - 12.5px);border:1px solid #d6e2ed;position:relative;background:#fff;padding:0 0 72px;margin-bottom:25px}@media (max-width:782px){.monsterinsights-addons-list .monsterinsights-addon{width:100%}}.monsterinsights-addons-list .monsterinsights-addon h3{color:#393f4c;margin:0 0 -5px;font-size:15px}.monsterinsights-addons-list .monsterinsights-addon .monsterinsights-addon-excerpt{color:#777;font-weight:400;margin:10px 0 0;font-size:14px}.monsterinsights-addons-list .monsterinsights-addon-top{padding:20px 24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-addons-list .monsterinsights-addon-image{border:1px solid #d6e2ed;width:74px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:start;align-self:start;margin-right:20px}.monsterinsights-addons-list .monsterinsights-addon-image img{display:block;max-width:100%}.monsterinsights-addons-list .monsterinsights-addon-message{position:absolute;bottom:0;background:#f9fbff;border-top:1px solid #d6e2ed;left:0;right:0}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-interior{padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-status{font-weight:700;font-size:13px;color:#393f4c}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-action{-ms-flex-item-align:end;align-self:flex-end}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-button{padding-bottom:7px;padding-top:9px;min-width:120px;line-height:1}.monsterinsights-addons-list .monsterinsights-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.monsterinsights-file-input{margin-bottom:20px}.monsterinsights-tools .monsterinsights-dark{margin-bottom:5px;display:block}.monsterinsights-tools-url-builder p .monsterinsights-info{margin-left:0}.monsterinsights-tools-url-builder .monsterinsights-input-text{margin-bottom:20px}.monsterinsights-required{color:#d4393d}textarea:-moz-read-only{background-color:#f9fbff}textarea:read-only{background-color:#f9fbff}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-tools-info-row p{margin-top:0}.monsterinsights-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-tools-info-row .monsterinsights-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-tools-info-row .monsterinsights-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.monsterinsights-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info i{margin-right:10px;color:#b6c9da}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{background-color:#0c55da;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:100% 0;background-size:contain;border-radius:5px;padding:30px;margin-top:30px;position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{padding-bottom:50px}}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title{font-weight:700;font-size:28px;line-height:32px;color:#fff;margin-top:0;margin-bottom:15px;font-family:Helvetica,Helvetica Neue,Arial,Lucida Grande,sans-serif}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description{color:#fff;font-family:Roboto,sans-serif;line-height:20px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button{background:#256ef3;border:0;font-size:16px;font-weight:700;border-radius:5px;font-family:Roboto,sans-serif;position:relative;padding:12px 76px 12px 60px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after{position:absolute;content:"";right:53px;top:50%;width:16px;height:17px;margin-top:-8px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEJSURBVHgB3VPBbcMwDDxSbgEDfWQEb9Cu0BGMLqBu0L6Dou0j6BjVAkVW6AgZQSP450cSsrIaubErB0jyy31IUbwTJVKECSy+WhtMtVv6+UPpcnnFlAAxfY5CLpfHOBMXIEDJ+Vi2lQhsv8H0up+oou/JXzPcW136zu+7sAktMyPS4KS/vSbIuRTvr/BSl98KfcRhNIrNfTp9cIWExbK1hH8z0JPn9c1qUFkmMSeSJUeB0chGiPKKjcx2IpEs26uKSe5GfF9kRhYGGl7H2K2sa4Z64utbA3G5gif/AkRcgcIpqAn+01TawUEKXbFBaY8sz4htTPaoSewqiRa/FrO46l48BCqcAob/ASVTXz+pYfYFAAAAAElFTkSuQmCC);background-repeat:no-repeat}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{position:absolute;right:45px;bottom:40px;background-image:url(../img/pretty-links-logo-white.svg);background-repeat:no-repeat;width:240px;min-height:39px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{right:10px;bottom:0}}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks{position:relative;background:#256ef3;border-color:#0d59e3;margin-left:15px;padding:10px 48px 10px 23px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:active,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:after{position:absolute;content:"";right:23px;top:50%;width:16px;height:15px;margin-top:-7px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAYAAADtc08vAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEQSURBVHgBlVLBccIwENyTPXnwSEwHooLYFYRnxlXQgekgpgNaSAe8eOSTuAI5lUAyDHxAx2mwAcEgj3fGPtne3VufBASwMuNkZd51iKNCHyMamIjUtzPqbfBv8okU7S6FwbS3AQgf5yWh6GWw+c2LpnuLpHl338cNKVZUMEMzkBJIIwDh1AReS6p6b3ezWEIkIp6eUndDOKm7i2Yc4alSw2xZy8MMPeE0z9nX4tz0z+QlXQ2uS/ySLcsm0QViMg9N/Fbs4O2Cgl2gA4R97WuuYEFplwEj0g8NiOjNJ2N9ayCc14cGIklaoftXy9vRge2ImT8vpuyljD05UyWlstjOh9lP293ViRy4UoFKWXszOAInrGJHik+ELQAAAABJRU5ErkJggg==);background-repeat:no-repeat}body.monsterinsights-prettylinks-flow-page{background:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:770px;margin:0 auto}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{padding:0 30px}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:700px}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow a,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow div,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h1,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h2,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h3,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h4,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow span{font-family:Roboto,sans-serif}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p{font-size:16px;line-height:21px;color:#393f4c}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header{text-align:center;max-width:680px;margin:0 auto;padding-top:75px;padding-bottom:20px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-tools-prettylinks-flow-header-logo{min-height:56px;background-image:url(../img/mi-and-pl-logo.svg);background-repeat:no-repeat;background-position:50%}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-title{font-size:39px;font-weight:900;line-height:46px;text-align:center;color:#393f4c;margin-top:60px;margin-bottom:18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-description{max-width:560px;margin:0 auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:25px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-left:-35px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-left:0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description{padding-left:16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description h3{margin-top:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{border-radius:5px;border:1px solid #e2e4e9;margin-bottom:36px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{text-align:center;padding:30px 30px 0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated{border-width:2px;border-color:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-prettylinks-flow-counter,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-prettylinks-flow-counter{background:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button{background:#338eef;border-color:#338eef;color:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after{background-position:0 -16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{background-position:-18px -18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-prettylinks-flow-counter{background:#1ec185}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-tools-prettylinks-action .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-prettylinks-flow-counter{width:48px;height:48px;text-align:center;background:#b6bcc8;border-radius:50%;color:#fff;font-size:24px;line-height:48px;font-weight:700;margin-left:35px;margin-right:35px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action{padding:30px 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action h3{font-size:18px;line-height:18px;color:#393f4c;font-weight:700;margin-top:12px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action p{margin-top:6px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button{font-size:14px;font-weight:700;border:0;border-radius:5px;margin-top:30px;color:#b6bcc8;background:#e2e4e9;border-color:#e2e4e9;padding:13px 46px 13px 20px;position:relative}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button:after{position:absolute;content:"";right:20px;top:50%;width:16px;height:16px;margin-top:-8px;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAIRQTFRFAAAA1Nfe09fe1dff09ff0tfe0dXd09je09ff1Njf09Td0tbcz9fbz8/f09je0tfc0tjf1Nje19fXz8/Pz9fX09fd0dfdDl2vDlyvDlyxDlyvDluvDlytDlyvDVyvDVysDFyrEGCvDlyvDlyuDluvDlquDl2vDl2vEGCvEFCvCFivDlyvL0miRwAAACx0Uk5TAN//f3/fgO+/j5BQQBDPoI/PIBAggIDf/39/34Dvv1BAEM+gj5CP7yAQIICE4JwzAAABEElEQVR4nKWQCU/EIBCFH9UC67G1XqAF1FZdV////7Mc07K9YuIjIRPex7zJAEGsKBiSzopM5+nR18jqUWtAybnYBCQg/wEIKXfAhZRleL0cJ7qKACeWB+B6T36FRWAgKopgUt4AOylFCo5EtTGkJ8ifAszf9e2+uqt9xRIgOGcRiPH1ffR9y8mqs1oUYaiH3H/MAIESYljXoPK0QzkDopTWasWK0r3+DDzpTM8LgD7RGtAYYzcBBzgCXsZ+r4vAW0t+lzpY596BD+ea2JeIjiIMpZkUHIkOq0AgyO8BFSI+nTv0gPKf26+2O4Y2ajZkjG+/jy0tZhEIsv0hwBqjpoBFA6tnq27G+tCfBvjJffMLAwgkWFxoOwcAAAAASUVORK5CYII=);background-position:0 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{width:14px;height:14px;margin-top:-7px;background-position:-18px 0}.monsterinsights-about-block{padding:25px;background:#fff;border:1px solid #d6e2ed;margin-top:20px;margin-left:20px;margin-right:20px}.monsterinsights-about-block h3{color:#393f4c;font-size:18px;margin:0 0 20px;line-height:1.4}.monsterinsights-about-block p{font-size:16px}.monsterinsights-about-block:after{content:"";display:table;clear:both}div[class*=" monsterinsights-path-about-"] .monsterinsights-container,div[class^=monsterinsights-path-about-] .monsterinsights-container{width:100%}div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:20px;padding-right:20px}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:0;padding-right:0}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list{padding:0 20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:calc(33.3333% - 12.5px)}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:100%}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addon-image,div[class^=monsterinsights-path-about-] .monsterinsights-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" monsterinsights-path-about-"] .monstericon-star:before,div[class^=monsterinsights-path-about-] .monstericon-star:before{color:#fdb72c}.monsterinsights-lite-vs-pro-table{padding:0}.monsterinsights-lite-vs-pro-table .monsterinsights-lite-vs-pro-footer{background:#f0f0f0}.monsterinsights-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.monsterinsights-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.monsterinsights-features-table{width:100%;border-collapse:collapse;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-features-table td,.monsterinsights-features-table th{width:33.33333%;border-bottom:1px solid #d6e2ed;padding:30px;vertical-align:top}.monsterinsights-features-table td p,.monsterinsights-features-table th p{margin:0}.monsterinsights-features-table th{background:#f0f0f0;text-align:left;border-right:none}.monsterinsights-features-table td p>span{display:block;margin-left:30px}.monsterinsights-features-full:before,.monsterinsights-features-none:before,.monsterinsights-features-partial:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f021";font-size:20px;margin-right:10px;color:#d4393d;position:relative;top:2px}.monsterinsights-features-partial:before{content:"";background:url(../img/about-icon-check.svg) no-repeat 50%;background-size:19px auto;width:19px;height:19px;top:6px}.monsterinsights-features-full:before{content:"\f015";color:#4ab99b}.monsterinsights-lite-vs-pro-footer{padding:50px 20px 30px;text-align:center}.monsterinsights-lite-vs-pro-footer h3{margin-bottom:10px}.monsterinsights-lite-vs-pro-footer p{margin-bottom:0}.monsterinsights-lite-vs-pro-footer a{color:#509fe2}.monsterinsights-lite-vs-pro-footer a:focus,.monsterinsights-lite-vs-pro-footer a:hover{color:#393f4c}.monsterinsights-lite-vs-pro-footer.monsterinsights-small{padding:0;text-align:left}.monsterinsights-lite-vs-pro-footer.monsterinsights-small h3{margin-bottom:5px}.monsterinsights-lite-vs-pro-footer.monsterinsights-small p{margin-top:0}.monsterinsights-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-two-column>div{width:50%}.monsterinsights-list-check ul{margin:0}.monsterinsights-list-check li{font-size:16px;margin-top:10px;padding-left:30px;position:relative}.monsterinsights-list-check li:first-child{margin-top:0}.monsterinsights-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f015";font-size:20px;margin-right:10px;color:#5cc0a5;position:absolute;left:0;top:0}.monsterinsights-about-docs-row:after{display:table;clear:both;content:""}.monsterinsights-about-docs-image{width:270px;float:left;margin-right:20px}.monsterinsights-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.monsterinsights-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.monsterinsights-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.monsterinsights-about-docs-4:after{background-image:url(../img/about-icon-addons.png)}.monsterinsights-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.monsterinsights-bg-img.monsterinsights-about-team{padding-top:59%}.monsterinsights-bg-img.monsterinsights-about-team:after{background-image:url(../img/about-team.jpg)}.monsterinsights-about-page-right-image{float:right;width:40%;text-align:center;margin:0 0 0 20px}@media (max-width:782px){.monsterinsights-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.monsterinsights-about-page-right-image img{width:100%}.monsterinsights-about-page-right-image figcaption{color:#999797;margin-top:5px}.monsterinsights-about-page-right-image iframe{max-width:100%}.monsterinsights-dark[data-v-62e7e943]{display:block}.monsterinsights-colorpicker-preview span{width:40px;height:40px;display:inline-block;border:1px solid #b9c9d7;border-radius:5px}.monsterinsights-colorpicker-picker{position:absolute;z-index:100}.monsterinsights-colorpicker-picker .hu-color-picker{min-width:218px!important}.monsterinsights-pp-theme-picker{overflow:hidden}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-carousel,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide:after{content:"";margin-left:48%}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option{width:150px;border-radius:10px;border:1px solid #d3d7de;height:150px;padding:17px 20px;margin-bottom:24px;cursor:pointer;position:relative;background:rgba(0,0,0,0)}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-option-selected,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:hover{border:3px solid #338eef;padding:15px 18px;outline:none}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-icon,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-name{opacity:.6}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-active-icon{position:absolute;right:5px;top:5px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-icon{display:block;width:110px;height:94px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-name{color:#393f4c;font-size:14px;margin-top:8px;display:block;text-align:left}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-icon{background:url(../img/theme-icons.png) no-repeat 0 0;background-size:488px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{background-position-x:-378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{background-position:0 -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-126px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-252px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{background-position:-378px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-india .monsterinsights-pp-theme-icon{background-position:0 -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-juliett .monsterinsights-pp-theme-icon{background-position:-126px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-kilo .monsterinsights-pp-theme-icon{background-position:-252px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-lima .monsterinsights-pp-theme-icon{background-position:-378px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-mike .monsterinsights-pp-theme-icon{background-position:0 -378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-november .monsterinsights-pp-theme-icon{background-position:-126px -378px}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls{text-align:center;font-size:14px;color:#626d83}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls>span{display:inline-block;margin:0 11px;vertical-align:middle}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button{border:none;border-radius:3px;background:#f0f2f4;width:20px;height:20px;text-align:center;color:#626d83;font-size:8px;cursor:pointer}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:hover{background:#dadcde}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:disabled{opacity:.5;cursor:default}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button i{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button.monsterinsights-pp-themes-slider-button-next i{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-name{position:absolute;left:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-icon{width:74px;height:46px;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:0 0;background-size:392px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-212px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-106px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:43px;background-position:-318px 0}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{height:76px;background-position:0 -73px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-106px -90px;height:41px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-212px -83px;height:56px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{height:50px;background-position:-318px -86px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-name{position:absolute;left:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-icon{width:74px;height:40px;background:url(data:image/png;base64,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) no-repeat 0 -19px;background-size:296px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-74px;background-position-y:-6px;height:66px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-148px;height:50px;background-position-y:-14px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:78px;background-position:-222px 0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-preview{position:relative}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls{margin-right:22px;margin-bottom:20px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls input[type=number]{width:40px;height:40px;border-radius:5px;border:1px solid #b9c9d7;padding:2px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-inputs{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label{font-size:14px;width:auto;margin-right:9px;color:#393f4c;margin-bottom:8px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label span{display:block}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-pp-control-label{margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input{border-radius:5px 0 0 5px;text-align:center;-moz-appearance:textfield}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-inner-spin-button,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;font-size:10px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow{background:#f9fbff;padding:3px 5px;border:1px solid #b9c9d7;border-left-width:0;cursor:pointer}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:focus,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:hover{background:#fff}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up{border-radius:0 5px 0 0;border-bottom:0;padding-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-down{border-radius:0 0 5px 0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-unit{font-size:14px;color:#444;margin-left:5px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-description{font-weight:700}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline{display:-webkit-box;display:-ms-flexbox;display:flex;padding-right:9px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline .monsterinsights-colorpicker-preview span{border-top-right-radius:0;border-bottom-right-radius:0;border-right-width:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline input[type=text]{border-top-left-radius:0;border-bottom-left-radius:0;max-width:108px}.monsterinsights-admin-page .monsterinsights-color-picker{position:relative;max-width:40px}.monsterinsights-admin-page .monsterinsights-color-picker .monsterinsights-colorpicker-picker{bottom:-120px;margin-left:10px;left:100%}.monsterinsights-admin-page .monsterinsights-pp-posts-picker .multiselect__input{border:none}.monsterinsights-admin-page .monsterinsights-popular-posts .monsterinsights-settings-block .monsterinsights-settings-input-select+p{margin-top:25px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#fff;color:#444;border-bottom-width:1px;border-color:#b9c9d7;border-radius:0;line-height:18px;border-right:0;margin:0}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#509fe2;color:#fff;border-color:#b9c9d7}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative;border-radius:0;outline:none}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#509fe2;color:#fff;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts{padding-top:15px;cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts span{color:#d83638;font-weight:400}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta{width:144px;height:100px;padding:0}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta:after{background-image:url(../img/theme-preview-beta.png)}.monsterinsights-inline-popular-posts-image{width:128px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-right:16px}.monsterinsights-inline-popular-posts-widget{margin-bottom:24px}.monsterinsights-inline-popular-posts-alpha{padding:24px 27px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1;display:block;margin-bottom:6px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:1;text-decoration:none}.monsterinsights-inline-popular-posts-beta{padding:14px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #d6e2ed}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-text{margin-left:19px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-border{display:block;border-bottom:1px solid;margin:16px 0}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list{list-style:disc inside none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list li{font-style:normal;font-weight:400;font-size:16px;line-height:130%}.monsterinsights-inline-popular-posts-delta{border:1px solid #d6e2ed;padding:16px 18px;border-radius:5px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-icon{margin-right:8px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;vertical-align:top}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-title{display:block;font-weight:700;font-size:18px;line-height:1;text-decoration:none;margin-top:4px}.monsterinsights-inline-popular-posts-echo{padding:13px 16px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-icon{margin-right:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;margin-right:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-foxtrot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;display:block}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image{padding-top:57%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image:after{background-image:url(../img/theme-preview-image.jpg)}.monsterinsights-inline-popular-posts-golf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;float:left;background:#fff;padding-right:20px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;clear:both;margin-top:14px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border{display:block;border-width:2px 0 0;border-style:solid;margin-top:10px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border-2{border-top:1px solid #e2e4e9;margin-top:20px;display:block}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-icon{margin-right:10px;vertical-align:middle}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-title{font-style:normal;font-weight:700;font-size:18px;text-decoration:none;line-height:130%}.monsterinsights-inline-popular-posts-india{padding:13px 12px 13px 16px;position:relative}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-border{border-width:0 0 0 4px;border-style:solid;position:absolute;left:0;top:0;bottom:0}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-title{font-size:14px;text-decoration:none;font-weight:700}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-label{font-size:14px;text-decoration:none;font-weight:700;margin-right:4px}.monsterinsights-inline-popular-posts-juliett{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-border{border-width:1px 0 0;border-style:solid;position:absolute;left:0;top:0;right:0}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-title{font-size:18px;text-decoration:none;font-weight:700;max-width:400px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;display:block;line-height:125%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-label{font-size:14px;line-height:18px;text-decoration:none;font-weight:700;padding:4px 12px;position:absolute;right:0;top:0}.monsterinsights-inline-popular-posts-kilo{position:relative;padding:30px 0}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none;display:block;clear:both;margin-top:6px}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border,.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{display:block;position:absolute;left:0;right:0;top:0;border-bottom:4px dashed #e2e4e9}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{bottom:0;top:auto}.monsterinsights-inline-popular-posts-lima{padding:16px 19px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-text{margin-left:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:120%;text-decoration:none;display:block;max-width:420px;margin-top:7px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-image{width:144px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-right:0;margin-left:20px}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2{padding-top:69%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2:after{background-image:url(../img/theme-preview-image-2.jpg)}.monsterinsights-inline-popular-posts-mike{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none;display:block;max-width:380px}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-label{position:absolute;z-index:10;left:0;top:0;font-size:14px;font-weight:700;padding:5px 8px;line-height:1.2}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-image{margin-right:20px}.monsterinsights-inline-popular-posts-november{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:5px;border-width:1px;border-style:solid;padding:16px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;margin-top:4px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-label{display:block;font-size:16px;font-weight:700}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-image{margin-right:20px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-icon{width:32px;height:32px;display:inline-block;border-radius:50%;text-align:center;float:left;line-height:38px;margin-right:17px;margin-top:4px}.monsterinsights-sharedcount-status{font-size:12px;color:#777;margin-top:12px;line-height:1.5}.monsterinsights-pp-manual-placement-options{margin-left:-12px;margin-right:-12px}.monsterinsights-pp-manual-placement-option{width:150px;height:150px;border-radius:10px;border:1px solid #b7c9d9;font-size:14px;line-height:17px;color:#444;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;cursor:pointer;margin-left:12px;margin-right:12px;vertical-align:top;max-width:calc(50% - 24px)}.monsterinsights-pp-manual-placement-option,.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{min-height:40px;margin-bottom:23px}.monsterinsights-pp-manual-placement-option.monsterinsights-pp-manual-placement-option-active{border:3px solid #338eef;font-weight:700;background:#f1f7fe}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:calc(50% - 12px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps .monsterinsights-button{margin-top:10px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps input[type=text]{border-color:#b7c9d9;color:#444}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:100%;margin-top:30px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li b{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:calc(50% - 12px);border-radius:10px;background:-webkit-gradient(linear,left top,left bottom,color-stop(17.51%,rgba(51,142,239,.6)),color-stop(74.11%,#0e5caf));background:linear-gradient(180deg,rgba(51,142,239,.6) 17.51%,#0e5caf 74.11%);color:#fff;position:relative;height:198px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;text-align:center}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block>div{position:absolute;bottom:0;padding:20px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-welcome-overlay{position:fixed;bottom:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-pp-video-block-icon{margin-bottom:30px;display:inline-block}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block p{color:#fff;margin:0;text-align:left}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:100%}}.monsterinsights-settings-content-pp-inline input[type=number]{max-width:80px}.monsterinsights-settings-content-pp-inline .monsterinsights-collapsible-content .settings-input-text{margin-bottom:20px}.monsterinsights-inline-desc{margin-left:5px}.monsterinsights-widget-popular-posts-widget{margin-bottom:24px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list li{display:inline-block;background:#fff;border-radius:3px;margin:0 6px 30px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-left:4px solid #1ec185;padding-left:16px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:4px solid #338eef}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px 0 0;margin:0 6px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:2px solid #d3d7de}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-label{font-weight:400;font-size:12px;display:inline-block;padding:4px 8px;border-radius:3px;line-height:1;margin-bottom:14px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-title{display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;font-weight:700;position:relative}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-text{position:absolute;bottom:0;padding:0 14px 14px;left:0;z-index:15}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img{margin-bottom:0;padding-top:50%;width:100%}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:after{z-index:5;border-radius:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:before{background:-webkit-gradient(linear,left bottom,left top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;left:0;right:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-pp-products-theme-preview-output,.monsterinsights-pp-widget-theme-preview-output{margin-top:28px}.monsterinsights-dummy-text{padding-right:24px}.monsterinsights-dummy-text p{margin-bottom:40px;line-height:180%}.monsterinsights-pp-widget-controls,.monsterinsights-pp-widget-theme-preview{position:relative}.monsterinsights-pp-widget-controls .monsterinsights-settings-input-select-simple select{min-width:50px}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:calc(33.33333% - 12px)}@media (max-width:767px){.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.monsterinsights-pp-widget-theme-preview-render h3{font-size:14px;margin-top:14px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio .monsterinsights-styled-radio{display:none}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio>span{display:inline-block;margin-right:8px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #b7c9d9;border-radius:5px;width:40px;height:40px;padding:10px 5px;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column>span{background:#99a1b2;display:inline-block;width:8px;height:8px;border-radius:1px;margin-bottom:2px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-two>span{width:12px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-one>span{width:100%}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column{border:2px solid #338eef;background:#ecf4fe;padding:9px 4px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column>span{background:#338eef}.monsterinsights-inline-checkboxes .monsterinsights-settings-input-checkbox{display:inline-block;margin-right:32px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-bg-img{width:121px;height:121px;padding:0;float:left;margin-right:16px;margin-bottom:12px}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-1:after{background-image:url(../img/theme-widget-1.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-2:after{background-image:url(../img/theme-widget-2.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-3:after{background-image:url(../img/theme-widget-3.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-4:after{background-image:url(../img/theme-widget-4.jpg)}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-5:after{background-image:url(../img/theme-widget-5.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-6:after{background-image:url(../img/theme-widget-6.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-7:after{background-image:url(../img/theme-widget-7.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-8:after{background-image:url(../img/theme-widget-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-bg-img{width:80px;height:80px;padding:0;float:left;margin-right:18px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-1:after{background-image:url(data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEAkACQAAD/2wBDAAoHBwgHBgoICAgLCgoLDhgQDg0NDh0VFhEYIx8lJCIfIiEmKzcvJik0KSEiMEExNDk7Pj4+JS5ESUM8SDc9Pjv/2wBDAQoLCw4NDhwQEBw7KCIoOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozv/wAARCACgAKADASIAAhEBAxEB/8QAHAAAAQQDAQAAAAAAAAAAAAAAAAECAwQFBggH/8QARBAAAgIBAgMFBQQFBw0AAAAAAQIAAxEEBRIhMQYHE0FRInGBkcEUQmGhIzKSorFDUmJyc9HwFSYzNVNjdIKDstLh8f/EABYBAQEBAAAAAAAAAAAAAAAAAAABAv/EABYRAQEBAAAAAAAAAAAAAAAAAAABEf/aAAwDAQACEQMRAD8A9mhCEAhCEAhCIzKilmICgZJPQQFhNA3rvd2jbdQadDpbdw4DhrFYInwPMn5SjV32bex/S7PqUH9C1W+glwemwmgV98nZxx7el3Cs/jUhH5NJx3u9lyOusH/R/wDcYN4hNEfvg7MIPZTXP/VpH1aY3Wd9ehQH7Fs+ot9Ddatf8OKMNemwnj2j769cNwX7ftenOjP6woLCxfxyTg+7AnpOw9qdn7Safxdt1au33qn9mxfesYMxCEJAQhCAQhCAQhKm5bpotn0T6zX6hKKV+8x6n0A8z+EC3ItTqaNHQ1+purpqQZZ7GCgfEzzDfO9y9y9OyaRal6C+8Zb3heg+OZoe5bzuW8W+LuOtu1LZyA7cl9w6D4S4mvU9971ts0JanaqjrrRy8Q+zWPqZ55vfbTfd+LLqdY1dB/kKfYTH4+Z+OZgoSpqN0yJVeoqfZ+Rl6NZAZRjyWXqIeIJaar0kZr/D8oEPiQyx/CSeGfSSLV6wIVrJlvTmzT2LZTY1bqchkOCPjBUAjwIG3bL3l9oNqC132rr6R93Uc2HuYc/nmb9s3efsO5cKatm2+4+V3NP2h9cTxSGZMNdNU306mpbqLUtrYZV0YMD7iJJObdt3rctnt8Tb9ddpjnJCPgN7x0Pxm+7D3uXq9dG+aZHQkA6ikYYfiV6H4Y90mLr1WEjpur1FCX0utldihkZTkMD0MkkUTyfvh3EWbjoNuVuVNbWuPxY4H5A/OesTn3tvuH+Ue2G43cXEqXGpD+C+z9JYlYPMWNi5x1mkLCNLQgOiGJCAhiYiwgJgQxFhAIuYkIC5iZhEgLGmKTGscCB653RdoW1egv2TUPl9L+koyefATzHwP8Z6POeewW6NtfbPbreLhS6wUWe5+X8cH4ToaZqxW3DVjQbbqtYwyNPS9pH9UE/Sc0WWNY5dzlmOSfUzoPtrYa+xm7MOp0zL8+X1nPJ6Swp5YKpY+UhqLWEu3TyETUNjTmOoYeEvulRLjAhmGYQDMVVZ2CqpZicAAZJlzbNJp9S7tqXZa0xkLjnnPn8PSXWdaUNFOlCpaeHOcZXPr16QMZ9h1eCfst2AMk+GeUgmxiq08Re93ZU4cjogOcnn5+nPyzIT4GiwdHSWVObMeufQnHpnpy5QMQmj1Vihq9Na6noVQkGR2V2VPwWIyMPJhgzYa10z7ejPq711Nl7G6oZKquSc5x7vM5gwB4i9xsUELTUACXyAMYP+PlA1yEy+u2vi1baejT2VahV4nrI5H3TEHIODyIgJAxIhMBGbEazZEZY3KMB5e7nAkpuam9LUOGRgw94OZ1LVYttSWL+q6hh7jOVl6Tp7ZGL7Ft7Hq2lrP7okqxju3Rx2J3X+wP8AETnvqJ0H27GexO6/2H1E58iFQXNhSjdD0jNK/scPoY3VPn2WX4yHS2pU5UtnPQZlRkweUXMhW0ER4bIzAuaXWfZq7AE4mYqQeLAGM/3zM7Zqrb9Bfdffiutl/RgYHCqnkMY8jj5ek1vimZoRV2lFHEbHV2KYPmCAR+Q+MDJHSXW6C1m1PCMFmQHBL+Y68xy8/LA8oumVVup09Gpr+0LwvabEZuZIx5D+cJX1L1u3FUjF7LnZnfBCgniBxnOOsTTOX1VmowqWOi14DdcAYAGef6okCruunUgePp2HGSxYWZI8vunnEG4UO6rp7aluawFcVkjiz5ez09//AMqjR6E0VOtV5ax+E5OAuDzB88yenQ6WrXJfUpeqohx7ZycH3euJRdp02o1qWF9coUrwZUBTy6YwQT1I5/3TB7rSEeq8HPir7XIj2h7/AMCPjmZK1lK2/onNxuwfaBCjoSPUch5TH7xaWq04YAFS+B05csH+MDGEyN2xFZ5CzZMBlr4IgrA1cvMyrYzW3lVOAOpllFwAB5QJVHszpzYv9Qbd/wALV/2Ccygcp0t2bfxOy+1ODni0VJ/cElWKHb5uDsPuh/3QHzYCc/ZGJ0b2p2e3f+zes2um5abNQoCuwyAQwbn8sTwvc+w/aja7Wrs2bU3gdH0yG1SPX2c4+OIhWrau1mYqkxliv4y4yWJ5Y9ZttHYntTuNwro2DXKW+9bSal+bYE9G7Ed0J2rcKd2362q6+kh6tNX7Sq3kWPmR6DlFHknREH3j5SY+wgHmZd3bSLo9/wBx03Dg0aq2se4MQJSsPFZKhy9Js6ao0adNOGULUFZjz4gVAbpnGMDpjmZgNDULtZRUTgM4BPoM85lvGoa9qBXxvqGKEqRkZOOIfMn0gTX2sdNXS7Yq4wr1gDBxg8IJPl+r/wAsS1dOmrttTS1JVdWOGqzHDy6n2T8oldtGoSy1KTZYwDcSDlXZzycfn+I+Mbq9RWNQL7nS5sDoVwP6Ppnnn4SKlZbwnGmosSvxG4cgXcIzjkDzHXyz1kdav4lipYWezmH8NagT16DmenqJB46UIotts062OSECBmUE5/Zz85Ztpdyzm4lBjhNR9p1wBkevn/jMIaupdtLZw2L4bvkjh6hs4BJPXHLp96Y7fUYW1X5zXYnCuMYBHUcveD8ZlGp2+hilXialrK8hQjDBGOfPz92ekxG9a1tS1NJsWzwQcsoGOI4z069B+coxbnlIi2OckbpGJWbrUqHV2C/MwKWn4vEOehMySAAZJnqe6dxtDOLNn3Q05HOrULxDP4MOf5GY1O5TfgcNuW349QX/APGTVaDnPSdD9gLzqew21OfKng/ZYr9JpOi7lbAwOu3lOHzWmnn8yfpPStn2rTbHtOn23ScXg6dcKWOSckkk/EmS0i9CEJFEIQgc8dvqRpu3271gYDWq/wC0it9Zr6jnkzbu9Krg7e6t8f6Supv3APpNSE2ykSxqnDocMOhk7bprWCA6hiE/UGB7Pu9JVhAdXbZQ3HVYyNjBKnGR6Swu7a5KzWl/ArdeBQpPxAlQwgKWZ2LMSxPMk8yZLRrNRpiDVYVAPEAQCAfXB5SKNMC1duWsuVle4hX/AFggChueeeMZ5yiwkkY0CNpc7PUfau0216fGfE1lK/NxKh6TYO7ygX9vtoQjOLi/7KlvpA6NhCEw0IQhAIQhAIQhA8P72V/z1Y+umrP8ZpPnN0707PE7cXr/ALOmtfyz9ZphE0yIsBCUJCEIAY0xxjYCCIY6IYEZm291VQft/omP8mlrD9gj6zUjNv7q3CdvtEv8+u0fuE/SKPfYQhMNCEIQCEIQCEIQPAu8azxO3u5nPIGtflWomsTL9rNSdX2s3W7OQdXYB7gxA/ITETbJY2LEMBIsQxYCHrEimJAIhixDAjPWbL3c2ijt9tTscAu6/tIyj+M1thLuy6k6LedFqwcGjUJZ8mBgdPQiAhgCDkHpFmGhCEIBCEIBEJCqWPQDJiylvGoGk2XW6hjgVad2z7lMDm7W2G7W6i09bLWb5nMhEDz5nzh5zbIjTHGMJgEWIIogBiQJiecBY2OjTAJJSvtqB5kSNZIH8PDDmQQQIHUGmUrpaVPUIoPyksj07mzTVWEYLICR6cpJMNCEIQP/2Q==)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-2:after{background-image:url(../img/theme-products-2.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-3:after{background-image:url(../img/theme-products-3.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-4:after{background-image:url(../img/theme-products-4.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5:after{background-image:url(../img/theme-products-5.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6:after{background-image:url(../img/theme-products-6.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7:after{background-image:url(../img/theme-products-7.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8:after{background-image:url(../img/theme-products-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-input-text-small{margin-top:24px}.monsterinsights-input-text-small .settings-input-text-input{max-width:350px}.monsterinsights-input-text-extra-small .settings-input-text{display:inline-block;margin-right:5px}.monsterinsights-input-text-extra-small .settings-input-text-input{max-width:80px}.monsterinsights-widget-popular-posts-products{margin-bottom:24px}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating{display:block}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating svg{margin-right:2px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list{margin:0 -12px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list li{display:inline-block;margin:0 12px;width:calc(50% - 24px);vertical-align:top;font-size:16px;border-top:1px solid #d3d7de;padding-top:15px;padding-bottom:30px;font-weight:700;line-height:1.1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-price{display:block;margin:10px 0 7px;font-weight:400}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list li,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:10px 12px;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:3px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-price,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{display:block;font-weight:400;position:absolute;right:12px;bottom:10px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-title,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{margin-top:12px;display:block}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-rating,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:13px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:0;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:5px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-price{display:block;font-weight:400;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-text{position:absolute;bottom:0;z-index:10;left:0;right:0;padding:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-rating{margin-top:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img:before{background:-webkit-gradient(linear,left bottom,left top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;left:0;right:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{position:relative;margin-top:8px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{padding:0}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{right:auto;bottom:auto;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:8px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:calc(33.33333% - 24px)}@media (max-width:767px){.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.monsterinsights-pp-blurred{-webkit-filter:blur(3px);filter:blur(3px)}.monsterinsights-pp-upgrade-overlay{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background:#fff;padding:8px 12px;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);border-radius:3px;z-index:10;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-upgrade-overlay>span{margin:0 10px}.monsterinsights-pp-theme-controls-holder{position:relative}.monsterinsights-pro-pill{font-style:normal;font-weight:700;font-size:11px;background:#1ec185;border-radius:5px;color:#fff;padding:3px 8px;margin-left:8px}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell{position:relative;width:750px;height:815px;max-width:100%}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell:after{background-image:url(../img/popular-products-bg.jpg)}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser{padding-top:83%;-webkit-filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1));filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1))}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser:after{background-image:url(../img/popular-products-browser.jpg)}.monsterinsights-popular-posts-products-upsell{margin-top:20px}.monsterinsights-popular-posts-products-upsell .monsterinsights-popular-products-upsell-window{padding:48px 50px 0;text-align:center;position:absolute;width:600px;top:62px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);z-index:1;background:#fff;border:1px solid #d6e2ed;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1)}.monsterinsights-popular-posts-products-upsell h2{margin-top:0;font-size:22px;line-height:1.2}.monsterinsights-popular-posts-products-upsell p{font-size:16px;line-height:1.2;color:#626d83;margin-bottom:32px}.monsterinsights-popular-posts-products-upsell .monsterinsights-button-text{margin:28px 0;color:#99a1b2;font-size:16px;display:inline-block}.monsterinsights-popular-posts-widget-category{margin-top:25px}.monsterinsights-popular-posts-widget-category.monsterinsights-popular-posts-widget-category-lite .monsterinsights-settings-input-select{pointer-events:none;opacity:.6}.monsterinsights-popular-posts-products-no-woocommerce{margin-top:72px}.monsterinsights-popular-posts-products-no-woocommerce .monsterinsights-settings-block{opacity:.6;pointer-events:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice{position:absolute;top:-72px;left:0;right:0;padding:16px 24px;background:#d7930f;color:#fff;font-size:12px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a{color:#fff;text-decoration:underline;font-weight:700}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:focus,.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:hover{text-decoration:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice span{margin-left:8px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice svg{vertical-align:middle}.monsterinsights-popular-posts-products-top{position:relative}.monsterinsights-pp-placement-options-accordion{padding-left:30px}.monsterinsights-pp-accordion-item-title{border-bottom:1px solid #d6e2ed;padding:24px 0;position:relative}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-toggle *{cursor:pointer}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible{position:absolute;right:0;top:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active{border-bottom:0}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top{margin-bottom:8px;font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top>span{margin-right:8px;margin-left:8px}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top .monsterinsights-settings-input-checkbox{display:inline-block}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-bottom{color:#777;padding-right:45px}.monsterinsights-pp-accordion-item-content{border-bottom:1px solid #d6e2ed;padding:0 0 24px}.monsterinsights-dummy-text p,.monsterinsights-pp-inline-theme-preview-render>p{opacity:.5}.monsterinsights-pp-products-theme-preview-output-narrow,.monsterinsights-pp-widget-theme-preview-output-narrow{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-dummy-text,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-dummy-text{width:60%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget{width:40%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-dark[data-v-0fc0f471]{display:block}.monsterinsights-reset-default[data-v-0fc0f471]{margin-left:5px}.saturation{position:relative;cursor:pointer}.saturation .slide{position:absolute;left:100px;top:0;width:10px;height:10px;border-radius:50%;border:1px solid #fff;-webkit-box-shadow:0 0 1px 1px rgba(0,0,0,.3);box-shadow:0 0 1px 1px rgba(0,0,0,.3);pointer-events:none}.hue{position:relative;margin-left:8px;cursor:pointer}.hue .slide{position:absolute;left:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.color-alpha{position:relative;margin-left:8px;cursor:pointer}.color-alpha .slide{position:absolute;left:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.sucker{width:30px;fill:#9099a4;background:#2e333a;cursor:pointer;-webkit-transition:all .3s;transition:all .3s}.sucker.active,.sucker:hover{fill:#1593ff}.color-type{margin-top:8px;font-size:12px}.color-type,.color-type .name{display:-webkit-box;display:-ms-flexbox;display:flex}.color-type .name{width:60px;height:30px;float:left;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#999;background:#252930}.color-type .value{-webkit-box-flex:1;-ms-flex:1;flex:1;height:30px;min-width:100px;padding:0 12px;border:0;color:#fff;background:#2e333a;-webkit-box-sizing:border-box;box-sizing:border-box}.colors{padding:0;margin:0}.colors.history{margin-top:10px;border-top:1px solid #2e333a}.colors .item{position:relative;width:16px;height:16px;margin:10px 0 0 10px;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:top;display:inline-block;-webkit-transition:all .1s;transition:all .1s;cursor:pointer}.colors .item:nth-child(8n+1){margin-left:0}.colors .item:hover{-webkit-transform:scale(1.4);-ms-transform:scale(1.4);transform:scale(1.4)}.colors .item .alpha{height:100%;border-radius:4px}.colors .item .color{position:absolute;left:0;top:0;width:100%;height:100%;border-radius:3px}.hu-color-picker{padding:10px;background:#1d2024;border-radius:4px;-webkit-box-shadow:0 0 16px 0 rgba(0,0,0,.16);box-shadow:0 0 16px 0 rgba(0,0,0,.16);z-index:1}.hu-color-picker.light{background:#f7f8f9}.hu-color-picker.light .color-show .sucker{background:#eceef0}.hu-color-picker.light .color-type .name{background:#e7e8e9}.hu-color-picker.light .color-type .value{color:#666;background:#eceef0}.hu-color-picker.light .colors.history{border-top:1px solid #eee}.hu-color-picker canvas{vertical-align:top}.hu-color-picker .color-set,.hu-color-picker .color-show{display:-webkit-box;display:-ms-flexbox;display:flex}.hu-color-picker .color-show{margin-top:8px}.monsterinsights-rotate-loader{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border-color:rgba(0,0,0,0) #3085d6;border-style:solid;border-width:.25em;background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}button[data-v-7b5d62d6]{margin-top:3px}.monsterinsights-dark[data-v-3f0b0409]{display:block}fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__loading-enter-active,.multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{opacity:.6}.multiselect--active{z-index:1}.multiselect--active:not(.multiselect--above) .multiselect__current,.multiselect--active:not(.multiselect--above) .multiselect__input,.multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.multiselect--active .multiselect__select{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.multiselect--above.multiselect--active .multiselect__current,.multiselect--above.multiselect--active .multiselect__input,.multiselect--above.multiselect--active .multiselect__tags{border-top-left-radius:0;border-top-right-radius:0}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 0 0 5px;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.multiselect__input:-ms-input-placeholder{color:#35495e}.multiselect__input::-webkit-input-placeholder{color:#35495e}.multiselect__input::-moz-placeholder{color:#35495e}.multiselect__input::-ms-input-placeholder{color:#35495e}.multiselect__input::placeholder{color:#35495e}.multiselect__tag~.multiselect__input,.multiselect__tag~.multiselect__single{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-left:5px;margin-bottom:8px}.multiselect__tags-wrap{display:inline}.multiselect__tags{min-height:40px;display:block;padding:9px 40px 0 8px;border-radius:5px;border:1px solid #b8c9d8;background:#fff;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:2px 8px 2px 20px;border-radius:5px;margin-right:10px;color:#393f4c;line-height:1.2;background:#f3f6ff;margin-bottom:5px;overflow:hidden;max-width:100%;text-overflow:ellipsis;border:1px solid #b7c9d9;font-size:14px}.multiselect__tag.monsterinsights-tag-forced{padding-left:8px}.multiselect__tag.monsterinsights-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;left:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:22px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\D7";color:#b7c9d8;font-size:18px;margin-top:-4px;display:block}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#444}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 30px 0 12px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{display:none}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #b7c9d9;border-top:none;border-bottom-left-radius:5px;border-bottom-right-radius:5px;z-index:1;-webkit-overflow-scrolling:touch}.multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.multiselect__content::webkit-scrollbar{display:none}.multiselect__element{display:block}.multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px;font-size:13px}.multiselect__option--highlight{background:#acbdc9;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#acbdc9;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect--disabled{background:#ededed;pointer-events:none}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.multiselect__option--group{background:#ededed;color:#35495e}.multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.multiselect__option--group-selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect-enter-active,.multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.multiselect-enter,.multiselect-leave-active{opacity:0}.multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}[dir=rtl] .multiselect{text-align:right}[dir=rtl] .multiselect__select{right:auto;left:1px}[dir=rtl] .multiselect__tags{padding:8px 8px 0 40px}[dir=rtl] .multiselect__content{text-align:right}[dir=rtl] .multiselect__option:after{right:auto;left:0}[dir=rtl] .multiselect__clear{right:auto;left:12px}[dir=rtl] .multiselect__spinner{right:auto;left:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}.update-nag{display:none}.monsterinsights-admin-page{min-height:100vh;font-size:14px}.monsterinsights-admin-page a{color:#509fe2}.monsterinsights-admin-page a:focus,.monsterinsights-admin-page a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.monsterinsights-admin-page .monsterinsights-settings-content{margin-left:auto;margin-right:auto;max-width:750px}@media (min-width:783px) and (max-width:790px){.monsterinsights-admin-page .monsterinsights-settings-content{padding:0 10px}}.monsterinsights-admin-page input.monsterinsights-has-error{border-color:red}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;color:#fff;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page input[type=number],.monsterinsights-admin-page input[type=text],.monsterinsights-admin-page textarea{border:1px solid #b7c9d9;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#444}.monsterinsights-admin-page input[type=number]::-webkit-input-placeholder,.monsterinsights-admin-page input[type=text]::-webkit-input-placeholder,.monsterinsights-admin-page textarea::-webkit-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-moz-placeholder,.monsterinsights-admin-page input[type=number]::-moz-placeholder,.monsterinsights-admin-page input[type=text]:-moz-placeholder,.monsterinsights-admin-page input[type=text]::-moz-placeholder,.monsterinsights-admin-page textarea:-moz-placeholder,.monsterinsights-admin-page textarea::-moz-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-ms-input-placeholder,.monsterinsights-admin-page input[type=text]:-ms-input-placeholder,.monsterinsights-admin-page textarea:-ms-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number].monsterinsights-has-error,.monsterinsights-admin-page input[type=text].monsterinsights-has-error,.monsterinsights-admin-page textarea.monsterinsights-has-error{border-color:#d83638}.monsterinsights-admin-page input[type=text]:-moz-read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page input[type=text]:read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page textarea{height:150px}.monsterinsights-admin-page label{width:100%;font-size:14px;display:inline-block;color:#777;margin:2px 0 17px}.monsterinsights-admin-page .inline-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights-admin-page .inline-field input{width:100%}.monsterinsights-admin-page .inline-field .monsterinsights-button{margin-left:10px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-admin-page .monsterinsights-error{margin:18px 0 0;color:#d83638;cursor:default}.monsterinsights-admin-page .monsterinsights-error i{margin-right:10px}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter-active,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-active{-webkit-transition:opacity 1s;transition:opacity 1s}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to{opacity:0}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter .monsterinsights-styled-checkbox,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to .monsterinsights-styled-checkbox{background-color:#509fe2!important}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter .monsterinsights-styled-checkbox:after,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to .monsterinsights-styled-checkbox:after{right:2px!important;left:auto!important}.monsterinsights-admin-page .monsterinsights-license-type-text{color:#777;font-weight:700;margin-top:16px}.monsterinsights-admin-page .monsterinsights-license-type-text a{color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-dark{color:#444;text-transform:capitalize;font-weight:700}.monsterinsights-admin-page .monsterinsights-settings-block{background:#fff;border:1px solid #d6e2ed;margin:25px 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{border-bottom:1px solid #d6e2ed;padding:16px 25px;font-weight:500;font-size:14px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title:before{display:none}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding:25px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p{font-size:14px;color:#777;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p a{color:inherit}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding:25px 25px 25px 22px;margin:-25px;border-left:3px solid #64bfa5}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding-left:15px;padding-right:15px;margin:-25px -15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade.monsterinsights-settings-addon-disabled{border-left-color:#f5c953;padding-top:15px;padding-bottom:15px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span{display:block;margin:2px 0 17px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio input[type=radio]{opacity:0;position:absolute}.monsterinsights-admin-page .monsterinsights-settings-input-radio label{color:#444;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio label>span{vertical-align:middle;font-weight:500}.monsterinsights-admin-page .monsterinsights-settings-input-radio label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-settings-radio-text,.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-styled-radio{opacity:.6}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-right:16px}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked{border-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked:after{left:2px;right:2px;top:2px;bottom:2px;position:absolute;content:"";background:#509fe2;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label{color:#444;font-size:14px;margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux{cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox{background-color:#dee5e9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#b9d8f3}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label input{display:none}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label>span{vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox{width:27px;height:18px;position:relative;display:inline-block;border-radius:10px;margin-right:9px;background-color:#acbdc9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked:after{right:2px;left:auto}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox:after{left:2px;top:2px;bottom:2px;width:14px;position:absolute;content:"";background:#fff;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-info{color:#b6c9da;margin-left:10px;cursor:help}.monsterinsights-admin-page .monsterinsights-settings-input-repeater .monsterinsights-error{margin-top:0;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-labels label{color:#393f4c;font-weight:700;margin-bottom:6px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row>span{width:100%;margin-right:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input[type=number]{width:30%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{width:70%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row.monsterinsights-disabled-row{opacity:.5}.monsterinsights-admin-page .monsterinsights-dimensions-count{color:#777;font-style:italic;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label{margin-bottom:0;width:auto}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-button{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-error{margin:0 0 20px}.monsterinsights-admin-page .monsterinsights-settings-input-select .monsterinsights-dark{margin-bottom:5px}.monsterinsights-admin-page .monsterinsights-settings-input-select label{margin-top:-4px}.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:30px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:15px}}.monsterinsights-admin-page .monsterinsights-collapsible>p{margin-top:0}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible{color:#b7c9d9;float:right;font-size:22px;padding-left:20px}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:focus{outline:none}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible i{cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-dark{display:block;margin-bottom:9px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate p{margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-ua,.monsterinsights-admin-page .monsterinsights-settings-input-authenticate button{margin-top:14px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-manual-ua+.monsterinsights-error{margin-top:15px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions{margin-top:18px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-right:20px;margin-top:0}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-bottom:10px}}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-settings-input-toggle-collapsible{margin-top:12px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-paragraph{padding-top:5px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text{color:#999797;font-size:12px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text:hover{text-decoration:underline}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-upgrade-icon{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-settings-addon-message{margin-right:25px;width:100%}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-button{font-size:12px;padding:6px 16px}.monsterinsights-admin-page .monsterinsights-icon-warning{width:48px}.monsterinsights-admin-page .monsterinsights-icon-warning:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAAAllBMVEUAAADV4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u2KpLj///+etMW0xdKqvs6ascPG1eKww9PO3OmVrb+LpbnR3+qRqr3U4ezA0d60x9atwdGPqLyNp7rT4Oy8ztzBztmiuMnx9PfJ2OXW4ObL2ua3ytilu8v7/P31+PnT3eXC0t/r8PPo7fHe5uvR2+OftscAs3DjAAAAC3RSTlMABtDHbvQb+ctt0f3LxK8AAAIoSURBVGje7drZbqMwFIBh05Au4wPBYPa1TPak2/u/3NAME6lzSMHGvqjk/zJI/sTiSLZMCLHsxZJqaLmwLdJ1f0e1dXdPiIXGVypY5Ilq7YksqNYW5IFq7YFQzRnAAAYwgAEMIAxwP2t2TbZOKWo+wHdtCH0VK3zFQPYRwdfCgqsDMgYDVUWsBuAt3ChpVABZCbfbx7OBPILvYnwmUMBI4XYWEMBoIZ8BNDAhVksD6wqm5MkCKf78g83bOUS/ZpJAjkZ6d7qOLnoNtRQQowmwci69ROjGpAD8Bb05f0O3UMYSQF0i4LUHPHQllwAaQJ16IMSTQQJoMeAenM/eAbcWBtIKcN6xG38zdCUXBnwYqvRWLgzVCgM5CBUKAx6giudLq0GhFgXwO2ZOX2fjuCiAH7X7Dxi8hbVuwJ8PJEelQAtYYL8VPiIPBvoGiEWBXAxIqChwFgNcYSCOhIBAGKCuEOCLAzs0yPPmcAFeTwy/AmEAPyPmXDuhvykJgO7RTL62ga9FWxlgHU0GPCoO4LlWvjh9h/9ec8XlgDiBaeVUDqAZTMpNZQFawIQSTqWBtIXRKn/OAqT+GB3/PG8Jle5Hno8/e5UZRHA7tlWwTvZDuFFUpEpW+nVQwlDMV7ZXEQ8QbqZ0t6Vu9glci1iw1bBfxJs88Dwv2PkppT9zx8sAnxnAAAag1AAGEE/3oYGl/mMPNtWarfnoyS9L++GZLst+1HP859G2CPkDRZCgO+Q/ERIAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-bg-img{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-network-message{width:100%}.monsterinsights-admin-page .monsterinsights-undo-redo{float:right;margin-top:16px}.monsterinsights-admin-page .monsterinsights-undo-redo button{border:none;background:rgba(0,0,0,0);color:#509fe2;padding:0;margin-left:5px}.monsterinsights-admin-page #monsterinsights-license-key-valid{-webkit-text-security:disc;text-security:disc;-moz-text-security:disc;font-family:text-security-disc;font-size:25px;line-height:1.2;color:#b7c9d9;padding-top:7px}.monsterinsights-admin-page #monsterinsights-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-moz-placeholder,.monsterinsights-admin-page #monsterinsights-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-first-time-notice .monsterinsights-notice-button{margin-top:20px}.monsterinsights-settings-blur .monsterinsights-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.monsterinsights-settings-blur.monsterinsights-path-general .monsterinsights-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate .monsterinsights-button{margin:0 20px}.monsterinsights-not-authenticated-notice .monsterinsights-dark{font-weight:400;margin-bottom:20px}.monsterinsights-pdf-exports-settings .inline-field .monsterinsights-button:first-child{margin-left:0}.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{margin-top:18px}}.monsterinsights-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.monsterinsights-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.monsterinsights-admin-page .monsterinsights-logos-row{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;border:1px solid #d6e2ed;margin:40px 50px 60px;padding:25px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-logos-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:20px;margin-right:20px}}.monsterinsights-admin-page .monsterinsights-logos-row .monsterinsights-box-title{font-size:13px;font-weight:700;color:#8aa4b8;position:absolute;background:#fff;padding:0 10px;top:0;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);left:50%}.monsterinsights-admin-page .monsterinsights-upsell{background:#fff;border:1px solid #d6e2ed;text-align:center;margin-top:25px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-upsell h2{font-size:20px;color:#393f4c;margin:36px 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h3{font-size:18px;color:#393f4c;margin:0 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h4{font-size:18px;color:#4c6577;font-weight:400;margin:0;line-height:2}.monsterinsights-admin-page .monsterinsights-upsell p{font-size:14px;color:#4c6577}.monsterinsights-admin-page .monsterinsights-upsell .monsterinsights-upsell-top{padding-left:10px;padding-right:10px}.monsterinsights-admin-page .monsterinsights-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom{padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{min-width:288px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom img{max-width:100%}.monsterinsights-admin-page .monsterinsights-report-ecommerce:after{background-image:url(../img/monsterinsights-report-ecommerce.png)}.monsterinsights-admin-page .monsterinsights-addon-ads,.monsterinsights-admin-page .monsterinsights-addon-amp,.monsterinsights-admin-page .monsterinsights-addon-dimensions,.monsterinsights-admin-page .monsterinsights-addon-eu-compliance,.monsterinsights-admin-page .monsterinsights-addon-forms,.monsterinsights-admin-page .monsterinsights-addon-instant-articles,.monsterinsights-admin-page .monsterinsights-addon-optimize,.monsterinsights-admin-page .monsterinsights-addon-performance,.monsterinsights-admin-page .monsterinsights-addon-scroll{width:48px;padding-top:110%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABfCAMAAAC5kuvHAAAAWlBMVEUAAACtvcitvcitvcitvciduM2tvcitvcitvcitvcitvchQn+KtvchQn+JQn+JQn+KtvcitvcitvchQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+KtvchQn+KLGAvfAAAAHHRSTlMAIu53RBG7qogzme7dIpkzzGZVzKqIZnfdu0RVXT0ICgAAAsdJREFUaN7tmd1ymzAUhAEjMMYCJ/wT6f1fs4QWH4OwN3StmV70uzMzWRF5vaszCg6ShYFPMhOpwCOpMR+BP0JjzDXwRRgnZuKc+dii8BaZO1Hyltd9/BSbRyLFe+pqssePp0f5mPCU6KXbByLPe+o6Ca3/8fOiH/OeCue3TVcLfCz6Gecpld7MnWtyX+OyPPvkPJWZFaflefKtMr8t8hT+agX5kiMTnVR4mR5BT+EFXPngfFbzrlw+gacOLAA21fUURnZWttrF9ZSP93c9JeA/A7+cjaeOcJvePA6/VwGmE08d258knq2Sgv1xPIUSmScLQSJ7OAFIIns7AUgi8ycAmMj8CQAmMn8CwImMAScAkMgHQGl9IuRBWh9INN22+kBaH0zkcbATw/gXaY3fX3W9/UPfKZjWBxO5LOyKogRpfSiR28o6VC1I658msm5yu0veaJTWGF3bF9Q64Chz+5K85PQLCyg4/coCqn9E/0n11k/3Xf9eugYlDKq3eCI/+UbNCxSghEH1Ns/kJ77sRAdKGFRvuy8ve9eCEgbV+7UvL1s3ghIG1asXmwz78laDEkbVWy2/omZXvkcljKq3uZuw2ZG3DShhWL2lmKRx5e0IShhXVy4p1jjyOSphXL2FlQW6jbwtUAnj9y+dHBZ5O8ISxtVbywJb+QqXMB6GSmmSbSKVYGT62TBUywJr+ZoZmQQtXSjy8tvlaZcF2lUddIwmbpk6eBtq73zleIGYT3VuN/SKmE/xOSgv3zyf6n719vrt86kaRH5QPubTLrczeedpPlXNXCnKx3wq89f/+RRAz6cIej7FsPMphp1PMdR8KmmKyUJQjSBNAcz9C4C/f8Hw9y8ufu5fBD/3L+IVP/cv4hU/9y/iFU/3L65X+PsX4BX6/gV4hb5/AV7h719eeoW/fwFeAYlJtysP6RW+XXkIr9DtykN55RdZztdXJmO7xAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-ads:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAAV1BMVEUAAABQn+Iuf75Qn+JQn+Iuf76svcmsvclQn+L///+LpLesvckuf743iMhzsujc7PmKv+xMm97o8vvz+f2izPDQ5fd/uepcpeSt0vGWxe652fNnrObF3/Xl1C/0AAAACHRSTlMA7OajHEnmSn/UIZcAAAF/SURBVGje7dkNb4IwEAbgFlCvWymVb3D//3fu2oUQiRGh1wzNvYmE5kwfyxFsgniYU6KTU0BhNYnWOgkorEa7bC98KpClEpbRLoAJK8g0w/lx+lgAEplIISYAqZBxASkgLgAPgGuu/5Jf9xTWgVxPyfcU1gE9Z3vhECug7gFtGGAAgIHNgC3V05Q2DLBqNTYIKNeBMghQL4SBKUVTKMw8LkiByuBoUHNGAEsJjMubqgYwlEDrh300oPKjacrGmvZGC4yuA/jxjR3AhRYwOJ1bRY3nPdADpb/+LcANBx1ANxhaoHc/frT+GhV4/FGKtgcGptSq8YxqiYDlA7PzN1Tb9EAJ1DCnUZa+yTeAVmGqDmDAIzlgsK3TUmp03Bo6ymdR1RSLR2hR4em7/R+8KfDKruLY+6IXdnZH35sywAADDDBwDEBC1EiRQtSkIou6BJnNLyjo419QLPJNkLsJPw84h89/fgpcgoXzRezM112efJEBBhhggAEGGGCAgX8BfgF9zfCNw+tX7wAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-amp:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAABAlBMVEUAAABQn+LW4upQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn///+vv8uyws1SoOLT4OnF091WouLO2+PH1d69zNa3x9K6ydS0xNCw1O/L2OFNnuDC0dvAztjQ3eZqreTI1t9ZpOL5/P7r9PqdxueLvOZ5t+VjqeRWpOCdyuyoy+d1suT1+v3m8fjb7PfO5fTF4POo0O6hzezL3enK3OmKwOiCvOdwsuRmrOHz+fu52fG+3PDI2+nD2OmtzuiYw+aIu+VeqOGYxumXbKjeAAAAHHRSTlMA9PEaFPz4z612TycFzHHalI9ZKWlm7be2JeyNLqjzBwAAA2ZJREFUaN7s2OlSo0AQAGAwh+LmMPHend62sCj/pPKDIiYhpzExmnitq+//KkLUKmZ6EIbhp98DdBfdPT2Aoa3YbBzXj8rlo/pxo1k0clasVYFTreWZo/DHBMLcK+QUvmKZIGValTzin25DrO19/fi7JnzD3NWNf1iCb5UO9eIfQKIDrfqUIFFJo0r7svr3J0OhD5k7XZHNT7uDd+IsZZ1WCyRaiAMQWBnPr6xALuLEI8O6OdO/draYkv+yAl0hzhwQ7YXxFcOzGweoO0Rs2SAqB5tvhynqyjuMeAtUzTC2mCIXqDkG+kBVDYMpWgLlYaDjgkRBOcFI2uHA9BUkmsoJekCsMPRobwCvoZxgTB/gEkPTRSvwsAbOiXICH0QLjJoDp66cgJyCAUZNB8JhjiS4OPsb6+yCfSIFusaoNQgiCbj4JENcgj5GzchZVktAS+TcYwRdqL+VS+STLR1Bt0Vdd0z7D8Fszhcfk3rZBtGJ9kGzQ84MY7ZRI8uqoPzNE1znsiqWILHqhNtuAFSBNDmxz27MfYPDpHUtxKcZ4i+ct7DDNlA11QTyK9MJT/MKQHZlKpZIful7V4iPbQDppc+UPZFHsBHRgw362sLUvYDgVd5hsIxsCc7FQbrFe65A3Ksjy+BZKNJwspYV6DQIT5qcrs//7LSv7wpjyi3tbpoPEJ0ErGun/IRSL9FXlZyUH4Esq2c33Wcsy+z8xQGpMvchzjQ89ZzkXwlMy03XTfoZwnQtR72x79m25497o6JBsFwZPwne2y+jFYlBGIoufSrMLwxiUSRRxIr//2+7YKdbGmde5oZhoHlrhXvI1Zh4AT4DCH6NyS4cS9UANDb/sXg0wC9dWSAwABeNDHIwQE1mFAkFqHbc1jII4A72MxHxrg8CxN2S5jqx/SFtQG2yfzhSDklR14cAtg04KTpYHXihD74qUgf4uxIgbHV71wIUkQAYQB3g1AB8dmg1p3DvAXoV8wtAeA/QReILQNbOIGvvQcWeIgnA1EF56p7FVrJcSaC7qDwzz2NuU3lYsqgzbD9om37EdTTjB/omI3syt4c9+y8CTxULUyE+fDvoXCQj6E52NuvOpqmqTtdm1X0fFKf2wkmRSv7SN9oFuAAfB0xI/WkAmJGAeQC4TcAEbj8jwgxCTPNI/xcIan5QyH2lWAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-instant-articles:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAA+VBMVEUAAABQn+JQn+LW4upQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn////L2OGvv8vAzti0xNDG1N7T4OhXo+NPmtzC0duKvObI1t+3x9LL3emqzOhVoOJPneCaxOZrrOSGrtfI2urQ3eZ1suRjqeOkwN+9zNb6+/3i6fK/0ue3zOSxx+HH1d6YuNtVmtlbmtV7pdN3o9PW4u/D2Omgx+e7z+TO2+OuxeGTtNnv8/rY4/DT4Oycu9x6qdmToCJeAAAAH3RSTlMA8xrwz612TycF9sxxE5SPWSn58+1pZhbb2Le2JfGNzELbBwAAAsdJREFUaN7tmF1f2jAUh1OwKIKCiDCdW0J5LRQo410UmeLm1L1+/w+zWrefLSdpmya9YOtzBxf/p+ScnJAiYcr53NlpsVAonp7l8mUkmYNshrjIZA8kxifeKwSwf5iQFJ9OKYSKkkrLyD/fIUx2jsTzd98RD5Rd0fwS8aEkln9CfDkRWh8SAIFVOlKCCJTQlU4z++fDeODspbDdmiIsJkviJBVy/zIX6EK7dS+Svaf31CTmwiAMfmor4ubwOZ8zHvcHzOfX1ptzyZp8KuZkyM6/Al9mEUryCkb0/llpmvYJfJ1BCHPSp+dfaxZtAkhwC0xq/oNm8ZVA8twCg/n8Vo9CctyCGSV/Yuc/EApvuQVzkNFe2vmXa5rgDbdAB/k/tBfBL+rEcwg+1ipMak38B5D/WXOzsR0cAmc+NAABM3/p7NYCt0B3538H+U/ESdEhaPouESyyBliBIou0KVRdCLep4Sl4Et9oJqHRvrTzb+CokDTs7hj5JAH2gUedPcb1lWYxJt7j2sr3NrAPnDVrmGa5BOwj8/r1+cGRCfYBe4mYfXT7mg8PfczNBMy7G/u0hCiJUAJYBUY+SaFwgtZos0fv6NeQdEgBvncv0rcxoaGcIwuwDwLV2eT4+w7aNNDQ/hLkAiIi8DeUEBA0gy6RjakHvATisNyPgl1jcWhawwGhsu+6iGMBJobu/yoBC9EfjvxehmBR+qYxm+uDgT6fGWYZAbBUUCyIBf+UYFr1QIKg7j23W2IC/9OnIyyoeFPfTkGtt6gvFo3IBPWXyjajqkEV40gFCxyx4BHbtFqdiAT4mU4jsi5q2I9fqUQrqMYChqDR7Xardg26Fj35gh52ErmgEbWgErFguo1dFAtiQSyISFDzFogf+nVPQW0q/X7waB84fz9txQ0nFsSC/0mQxBI5RhBVpkBFkD2JPyG5h2gG9VjS+qi0/N+iC9OxZrJwlgAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmBAMAAADG74kWAAAAFVBMVEXW4urW4urW4uoAAADW4uqsvclQn+ITLWFyAAAABHRSTlPsoxwAEnMmfgAAAIFJREFUWMPt2LEJgDAUBNCvOICFAwhu4AQKP06QbCDuP4J9sPCKwOm/KwOvusCHs3V0IN1is0PpbcLAbgMGNnMwvwGp1MmPj7EBYXGEgLA4QkBYHCFI5VVybEBYHCEgLE5AQEBAIAQgPIqE4LjqnAJtwNe+RlMAz0XwIAVPXvCodgNhA6kmkI3HfAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-optimize{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-optimize:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABeCAMAAAByzjhiAAAAkFBMVEUAAADW4utZo9+bxObW4utUod/W4utUod/W4utUoN5ToN3W4utUod/W4uvW4utTntpTntpUod/W4uvW4uvW4utTntpUod/W4uvW4uvW4uvW4utTndnW4uvW4utUod/W4uvW4utUod9QlMtRl89Qls1RmNFSmtNPk8lPksdSm9VOkMNRmdNSnNdTndlTnttUoN4GbpBuAAAAIHRSTlMAAgcM4/fvwLNVRvnULikb5+bRxbyil5SSi4BySTw4Jgr331EAAAGYSURBVGje7dJXbsQgFIVhPJ7qTEnvxb2Msdn/7gKOIiJ7AMkcXiL+BXxHiEvULXabVTK7m8dPoi3iuF37UMPvEvtW6oFTgmiv9DcJpEjBBwmmjep2ElDe9773ve9973vf+zP9YFSI9MPXq3h+KTP4B65bVNVM63/FdlVn3QAJ1ta+boC8x/b+uWJKf2vv6wbI2t7XDZAY4ItS5tQXA079uk6ZQ7/m5cyZXw9lzIkveLFQVRnD++ngD7wcwPr1r5+mBcP7kue1cF/yQ6UTvxK+HED6Iz7PS6w/5vOsgfojnvtZg/XHfFZQpD/li4Li/Akv/LZD+bn0//Bt2eH8Kc/9sgP5Cr5seow/+dvih2+aHuZPeeHTHuGreUp7iC8vc8TTzt7PFHwjeIQ/OR3JQ3w1j/F1POB/C8XpUMEjfB1/DfA1fP8G8BWXOfgLgK/hI2Lvt4rT4fyOIHwV/3AiCD+4nLAhPrmc973vfe//d3/p2H+25LcG/2jpfxBD91b8bWDyQ5sfWIfE2GI7m78TvLnjy5w3LJ8OZvobpmnKQFwgNYcAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-addon-dimensions{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-performance{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-performance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABlCAMAAACFixa5AAAA8FBMVEUAAADW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4uqsvclQn+KwwczT4erK1+DR3+rH2+m91ulkqeNbpeN2suRnq+PJ3OmKvOZ7teViqON4s+R0seRWouPC0dvL3emOvuaAt+WXwuZuruRgqOO6ydSuzujL2OKT9JW9AAAAMnRSTlMA4dIH+kUD8u3kDNZoShiYfeiQg2I/DsiIJhRPLfTexcG8s65vIBza0KReuYx3WFU2dMplGNoAAAPgSURBVGje7ZnZetowEEaHesMsBrOvIWwhpOk2UFqaNE3a0CZd3/9tataxIwnZRL7o15wbjC7+g6XxSJ+B8Gj1crOUyWReNY16CtSivSp0bfST7GQ0UEY9jRxOT0ARlQRySauaqDco4IUiQRcFdBQJnqGAxJPgSfCfCMxsX0cRfQMeSSNv415GUZqqlh28dMBHKm+hFDuoGJYGZRO4lG1E1HOkaCYwFGmD7ji3GngNHFptXGEV113Y6WNoxo31FGzvuM0xNI5wi5sxAbJJjIBdBjBLNn13mGLpBm66WcRo6MXsaaCTP1z7IiomBwEMVM4Z+HBcVI41BKKHMdChx6GEcUBnAieJUZndXU79XP5GFr21EYwxMt+nD/iJHI43LQKjczF9CPJ4uRJUMTqfwwmOtEMfgbtwAix5gud4ALOP4QRpgBYexOxLKAEakMMDDTehBDmwUcb7DzOu4T6MIA0WSvhwOb2Y87y3YQQj6MryF8vHaM7Plwv6kJXne3yeC/LliwwFyfxMeYb3Icu0AB6ZpCSfDEz+1c0+QXKwPf4khfmEb6Vnu/xvu0tOfL5CR4qiJc4nA5u/W4xLQTwpztvC/Ivt56ftQ0z5nuHH8vpaFE+c6IL8u9kNGZh8z3C/WFzPgl2U4n0CQf61ry1cfQpcC7GAgWnbV5TvN8yZfC4OEIKdn/ID876g2doH7/SbxwD3lB8wsPnv3k4mb99hgCaw1DgN/5qzxVDFfl3HevmeQXSsI3LMyeT2O2cTo/w/m9jJCgyQCSHwz8HXXX+grvF++cujCGoowkvaGih/9muyR3AmX2TCS9gabqnrefkBgXyRB0gEa2NChvvFjzlZxQIDWF4hQbXBTZAL6sDS4gUcKNA1YEkpFBwBi3mmSwS0MFKBm2VXII0oEdDCCAVENahoniLKBNJBscKoIioXkOKki6hWQBwPASojjE+AdgOKGKcACzCKV2CDFa8AIR2vIAH5eAU1cPR4BNRWx3EKnlObjkdQBo9xfIL+ulewlUqNky6lgyz6ZmN7gQzU+ulSPsiW0BrtFGPhKLXbjnWMAb3M/FOmlhoQ5jEq51nwnXkSFWPVIUAWA1RtjIjbYd6mid8tuyXTiThpxw68tAMbzUPM3m71zyvL74VIC2ouj25FfeczgaFS3fSnFqwxEqELfluQ9c2v7DSAgzaouolelgZStTaGoF301YvRs91uyYSQnOR0lKAXHHgMw8LeAk6eD+GxaGdChVXS/oF/Ap8ETwIlCLfskSLBGAX0FQkMFFAGReSQyzmowuT1besFKKRiDHLP0661SnbTvULGSEEspKLm/gXsGeljiPFFoAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-scroll{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-scroll:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-upsell-large{padding-bottom:35px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-large{padding-left:10px;padding-right:10px;line-height:1.2}}.monsterinsights-admin-page .monsterinsights-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-upsell-large h2{font-size:18px;margin-top:0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-coupon{color:#509fe2;border:1px dashed #509fe2;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-flow:wrap;flex-flow:wrap;margin:30px auto 25px;max-width:525px}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:left;margin:10px 0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span:before{content:"";background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAElBMVEUAAABQn+JQn+JQn+JQn+JQn+KxowiZAAAABXRSTlMARO4idxyyls4AAAAySURBVAjXYwABoyADBhgQDRWgKttQUFDQNdQRSBowqIbCgAJDKBwEIIsjq6eFe5D9CwCWPRV/mairZAAAAABJRU5ErkJggg==);width:11px;height:11px;background-size:contain;display:inline-block;margin-right:12px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p a{color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEUAAAD/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE1mRQDuvkTSpDZ7VwqgeB2bdBqvhiV+Wgx2Uwj4xkn3xUnfsD3KnTKziSeLZhOFYRBnRgD04bLqAAAADnRSTlMALPrz8dvSp6SXYxMNONmrFGwAAADrSURBVDjLhZPploMgDIVjqQjY3hS12r3v/5bDjFGH0gPfH+4JS0IW2mid0QpQ2riWUqpmh5VdU1HMweIDe4iu10io/z1y3OML++N6X/aTE5X4l/dT6jkOCyHF/jmAcAIS+eukET1wJ/ZTx4MYG6JW8uOZuZ9lH6SXjLXkMHMO1m6WXZBnMTsy+QOGNHIuoEkhFyQUxX9LJaEAKWRRpJFFk0EWQw7C/YaV2x2CW1ONx3vwVwSufng/sKR6K9ZlZOZpHKewjJelWFG5nyw8t3LHDeP71zS9eo8FW2y5UtMW2748OOXRKw9vcfx/ACZnLYWsWc2gAAAAAElFTkSuQmCC)}
lite/assets/vue/css/settings.rtl.css CHANGED
@@ -1 +1 @@
1
- .monsterinsights-dark[data-v-00be766e],.monsterinsights-dark[data-v-3b9e68c1],.monsterinsights-dark[data-v-4619bc56]{display:block}.monsterinsights-addons-navbar h1{display:inline-block;font-size:16px;line-height:48px;font-weight:400;margin:0;color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px;width:258px;position:relative}@media (max-width:750px){.monsterinsights-addons-navbar .monsterinsights-addons-filters{width:calc(100vw - 200px)}}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]{height:28px;margin-left:0;padding-right:10px;padding-left:28px;font-size:14px;border-color:#d6e2ed}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-webkit-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-moz-placeholder,.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-moz-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-ms-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters>i{position:absolute;left:10px;top:5px;z-index:10;color:#b7c9d9}.monsterinsights-addon-not-available .monsterinsights-addon-status span,.monsterinsights-addon-not-installed .monsterinsights-addon-status span{color:#777}.monsterinsights-addon-inactive .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}#monsterinsights-addons{width:770px}@media (max-width:782px){#monsterinsights-addons{width:100%}}#monsterinsights-addons .monsterinsights-addons-area{margin:0 10px}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button{background:#f9fbff;border-color:#d6e2eb;color:#8ba4b7}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:hover{background:#fff;border-color:#c4d6e2}#monsterinsights-addons .monsterinsights-addons-no-results{margin-top:25px;padding:0 10px}#monsterinsights-addons .monsterinsights-addons-no-results p{font-size:16px}#monsterinsights-addons .monsterinsights-addons-no-results>div{visibility:hidden;-webkit-animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards;animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards}.monsterinsights-path-addons .monsterinsights-navigation-bar{padding-right:10px;padding-left:10px;background:#fff;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-container,.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:0}.monsterinsights-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px}.monsterinsights-addons-list .monsterinsights-addon{width:calc(50% - 12.5px);border:1px solid #d6e2ed;position:relative;background:#fff;padding:0 0 72px;margin-bottom:25px}@media (max-width:782px){.monsterinsights-addons-list .monsterinsights-addon{width:100%}}.monsterinsights-addons-list .monsterinsights-addon h3{color:#393f4c;margin:0 0 -5px;font-size:15px}.monsterinsights-addons-list .monsterinsights-addon .monsterinsights-addon-excerpt{color:#777;font-weight:400;margin:10px 0 0;font-size:14px}.monsterinsights-addons-list .monsterinsights-addon-top{padding:20px 24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-addons-list .monsterinsights-addon-image{border:1px solid #d6e2ed;width:74px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:start;align-self:start;margin-left:20px}.monsterinsights-addons-list .monsterinsights-addon-image img{display:block;max-width:100%}.monsterinsights-addons-list .monsterinsights-addon-message{position:absolute;bottom:0;background:#f9fbff;border-top:1px solid #d6e2ed;right:0;left:0}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-interior{padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-status{font-weight:700;font-size:13px;color:#393f4c}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-action{-ms-flex-item-align:end;align-self:flex-end}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-button{padding-bottom:7px;padding-top:9px;min-width:120px;line-height:1}.monsterinsights-addons-list .monsterinsights-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.monsterinsights-file-input{margin-bottom:20px}.monsterinsights-tools .monsterinsights-dark{margin-bottom:5px;display:block}.monsterinsights-tools-url-builder p .monsterinsights-info{margin-right:0}.monsterinsights-tools-url-builder .monsterinsights-input-text{margin-bottom:20px}.monsterinsights-required{color:#d4393d}textarea:-moz-read-only{background-color:#f9fbff}textarea:read-only{background-color:#f9fbff}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-tools-info-row p{margin-top:0}.monsterinsights-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-tools-info-row .monsterinsights-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-tools-info-row .monsterinsights-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.monsterinsights-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info i{margin-left:10px;color:#b6c9da}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{background-color:#0c55da;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:0 0;background-size:contain;border-radius:5px;padding:30px;margin-top:30px;position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{padding-bottom:50px}}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title{font-weight:700;font-size:28px;line-height:32px;color:#fff;margin-top:0;margin-bottom:15px;font-family:Helvetica,Helvetica Neue,Arial,Lucida Grande,sans-serif}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description{color:#fff;font-family:Roboto,sans-serif;line-height:20px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button{background:#256ef3;border:0;font-size:16px;font-weight:700;border-radius:5px;font-family:Roboto,sans-serif;position:relative;padding:12px 60px 12px 76px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after{position:absolute;content:"";left:53px;top:50%;width:16px;height:17px;margin-top:-8px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEJSURBVHgB3VPBbcMwDDxSbgEDfWQEb9Cu0BGMLqBu0L6Dou0j6BjVAkVW6AgZQSP450cSsrIaubErB0jyy31IUbwTJVKECSy+WhtMtVv6+UPpcnnFlAAxfY5CLpfHOBMXIEDJ+Vi2lQhsv8H0up+oou/JXzPcW136zu+7sAktMyPS4KS/vSbIuRTvr/BSl98KfcRhNIrNfTp9cIWExbK1hH8z0JPn9c1qUFkmMSeSJUeB0chGiPKKjcx2IpEs26uKSe5GfF9kRhYGGl7H2K2sa4Z64utbA3G5gif/AkRcgcIpqAn+01TawUEKXbFBaY8sz4htTPaoSewqiRa/FrO46l48BCqcAob/ASVTXz+pYfYFAAAAAElFTkSuQmCC);background-repeat:no-repeat}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{position:absolute;left:45px;bottom:40px;background-image:url(../img/pretty-links-logo-white.svg);background-repeat:no-repeat;width:240px;min-height:39px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{left:10px;bottom:0}}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks{position:relative;background:#256ef3;border-color:#0d59e3;margin-right:15px;padding:10px 23px 10px 48px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:active,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:after{position:absolute;content:"";left:23px;top:50%;width:16px;height:15px;margin-top:-7px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAYAAADtc08vAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEQSURBVHgBlVLBccIwENyTPXnwSEwHooLYFYRnxlXQgekgpgNaSAe8eOSTuAI5lUAyDHxAx2mwAcEgj3fGPtne3VufBASwMuNkZd51iKNCHyMamIjUtzPqbfBv8okU7S6FwbS3AQgf5yWh6GWw+c2LpnuLpHl338cNKVZUMEMzkBJIIwDh1AReS6p6b3ezWEIkIp6eUndDOKm7i2Yc4alSw2xZy8MMPeE0z9nX4tz0z+QlXQ2uS/ySLcsm0QViMg9N/Fbs4O2Cgl2gA4R97WuuYEFplwEj0g8NiOjNJ2N9ayCc14cGIklaoftXy9vRge2ImT8vpuyljD05UyWlstjOh9lP293ViRy4UoFKWXszOAInrGJHik+ELQAAAABJRU5ErkJggg==);background-repeat:no-repeat}body.monsterinsights-prettylinks-flow-page{background:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:770px;margin:0 auto}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{padding:0 30px}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:700px}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow a,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow div,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h1,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h2,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h3,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h4,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow span{font-family:Roboto,sans-serif}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p{font-size:16px;line-height:21px;color:#393f4c}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header{text-align:center;max-width:680px;margin:0 auto;padding-top:75px;padding-bottom:20px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-tools-prettylinks-flow-header-logo{min-height:56px;background-image:url(../img/mi-and-pl-logo.svg);background-repeat:no-repeat;background-position:50%}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-title{font-size:39px;font-weight:900;line-height:46px;text-align:center;color:#393f4c;margin-top:60px;margin-bottom:18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-description{max-width:560px;margin:0 auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:25px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-right:-35px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-right:0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description{padding-right:16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description h3{margin-top:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{border-radius:5px;border:1px solid #e2e4e9;margin-bottom:36px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{text-align:center;padding:30px 30px 0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated{border-width:2px;border-color:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-prettylinks-flow-counter,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-prettylinks-flow-counter{background:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button{background:#338eef;border-color:#338eef;color:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after{background-position:100% -16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{background-position:-18px -18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-prettylinks-flow-counter{background:#1ec185}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-tools-prettylinks-action .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-prettylinks-flow-counter{width:48px;height:48px;text-align:center;background:#b6bcc8;border-radius:50%;color:#fff;font-size:24px;line-height:48px;font-weight:700;margin-right:35px;margin-left:35px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action{padding:30px 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action h3{font-size:18px;line-height:18px;color:#393f4c;font-weight:700;margin-top:12px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action p{margin-top:6px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button{font-size:14px;font-weight:700;border:0;border-radius:5px;margin-top:30px;color:#b6bcc8;background:#e2e4e9;border-color:#e2e4e9;padding:13px 20px 13px 46px;position:relative}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button:after{position:absolute;content:"";left:20px;top:50%;width:16px;height:16px;margin-top:-8px;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAIRQTFRFAAAA1Nfe09fe1dff09ff0tfe0dXd09je09ff1Njf09Td0tbcz9fbz8/f09je0tfc0tjf1Nje19fXz8/Pz9fX09fd0dfdDl2vDlyvDlyxDlyvDluvDlytDlyvDVyvDVysDFyrEGCvDlyvDlyuDluvDlquDl2vDl2vEGCvEFCvCFivDlyvL0miRwAAACx0Uk5TAN//f3/fgO+/j5BQQBDPoI/PIBAggIDf/39/34Dvv1BAEM+gj5CP7yAQIICE4JwzAAABEElEQVR4nKWQCU/EIBCFH9UC67G1XqAF1FZdV////7Mc07K9YuIjIRPex7zJAEGsKBiSzopM5+nR18jqUWtAybnYBCQg/wEIKXfAhZRleL0cJ7qKACeWB+B6T36FRWAgKopgUt4AOylFCo5EtTGkJ8ifAszf9e2+uqt9xRIgOGcRiPH1ffR9y8mqs1oUYaiH3H/MAIESYljXoPK0QzkDopTWasWK0r3+DDzpTM8LgD7RGtAYYzcBBzgCXsZ+r4vAW0t+lzpY596BD+ea2JeIjiIMpZkUHIkOq0AgyO8BFSI+nTv0gPKf26+2O4Y2ajZkjG+/jy0tZhEIsv0hwBqjpoBFA6tnq27G+tCfBvjJffMLAwgkWFxoOwcAAAAASUVORK5CYII=);background-position:100% 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{width:14px;height:14px;margin-top:-7px;background-position:-18px 0}.monsterinsights-about-block{padding:25px;background:#fff;border:1px solid #d6e2ed;margin-top:20px;margin-right:20px;margin-left:20px}.monsterinsights-about-block h3{color:#393f4c;font-size:18px;margin:0 0 20px;line-height:1.4}.monsterinsights-about-block p{font-size:16px}.monsterinsights-about-block:after{content:"";display:table;clear:both}div[class*=" monsterinsights-path-about-"] .monsterinsights-container,div[class^=monsterinsights-path-about-] .monsterinsights-container{width:100%}div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-right:20px;padding-left:20px}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-right:0;padding-left:0}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list{padding:0 20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:calc(33.3333% - 12.5px)}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:100%}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addon-image,div[class^=monsterinsights-path-about-] .monsterinsights-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" monsterinsights-path-about-"] .monstericon-star:before,div[class^=monsterinsights-path-about-] .monstericon-star:before{color:#fdb72c}.monsterinsights-lite-vs-pro-table{padding:0}.monsterinsights-lite-vs-pro-table .monsterinsights-lite-vs-pro-footer{background:#f0f0f0}.monsterinsights-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.monsterinsights-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.monsterinsights-features-table{width:100%;border-collapse:collapse;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-features-table td,.monsterinsights-features-table th{width:33.33333%;border-bottom:1px solid #d6e2ed;padding:30px;vertical-align:top}.monsterinsights-features-table td p,.monsterinsights-features-table th p{margin:0}.monsterinsights-features-table th{background:#f0f0f0;text-align:right;border-left:none}.monsterinsights-features-table td p>span{display:block;margin-right:30px}.monsterinsights-features-full:before,.monsterinsights-features-none:before,.monsterinsights-features-partial:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f021";font-size:20px;margin-left:10px;color:#d4393d;position:relative;top:2px}.monsterinsights-features-partial:before{content:"";background:url(../img/about-icon-check.svg) no-repeat 50%;background-size:19px auto;width:19px;height:19px;top:6px}.monsterinsights-features-full:before{content:"\f015";color:#4ab99b}.monsterinsights-lite-vs-pro-footer{padding:50px 20px 30px;text-align:center}.monsterinsights-lite-vs-pro-footer h3{margin-bottom:10px}.monsterinsights-lite-vs-pro-footer p{margin-bottom:0}.monsterinsights-lite-vs-pro-footer a{color:#509fe2}.monsterinsights-lite-vs-pro-footer a:focus,.monsterinsights-lite-vs-pro-footer a:hover{color:#393f4c}.monsterinsights-lite-vs-pro-footer.monsterinsights-small{padding:0;text-align:right}.monsterinsights-lite-vs-pro-footer.monsterinsights-small h3{margin-bottom:5px}.monsterinsights-lite-vs-pro-footer.monsterinsights-small p{margin-top:0}.monsterinsights-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-two-column>div{width:50%}.monsterinsights-list-check ul{margin:0}.monsterinsights-list-check li{font-size:16px;margin-top:10px;padding-right:30px;position:relative}.monsterinsights-list-check li:first-child{margin-top:0}.monsterinsights-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f015";font-size:20px;margin-left:10px;color:#5cc0a5;position:absolute;right:0;top:0}.monsterinsights-about-docs-row:after{display:table;clear:both;content:""}.monsterinsights-about-docs-image{width:270px;float:right;margin-left:20px}.monsterinsights-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.monsterinsights-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.monsterinsights-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.monsterinsights-about-docs-4:after{background-image:url(../img/about-icon-addons.png)}.monsterinsights-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.monsterinsights-bg-img.monsterinsights-about-team{padding-top:59%}.monsterinsights-bg-img.monsterinsights-about-team:after{background-image:url(../img/about-team.jpg)}.monsterinsights-about-page-right-image{float:left;width:40%;text-align:center;margin:0 20px 0 0}@media (max-width:782px){.monsterinsights-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.monsterinsights-about-page-right-image img{width:100%}.monsterinsights-about-page-right-image figcaption{color:#999797;margin-top:5px}.monsterinsights-about-page-right-image iframe{max-width:100%}.monsterinsights-dark[data-v-62e7e943]{display:block}.monsterinsights-colorpicker-preview span{width:40px;height:40px;display:inline-block;border:1px solid #b9c9d7;border-radius:5px}.monsterinsights-colorpicker-picker{position:absolute;z-index:100}.monsterinsights-colorpicker-picker .hu-color-picker{min-width:218px!important}.monsterinsights-pp-theme-picker{overflow:hidden}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-carousel,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide:after{content:"";margin-right:48%}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option{width:150px;border-radius:10px;border:1px solid #d3d7de;height:150px;padding:17px 20px;margin-bottom:24px;cursor:pointer;position:relative;background:rgba(0,0,0,0)}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-option-selected,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:hover{border:3px solid #338eef;padding:15px 18px;outline:none}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-icon,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-name{opacity:.6}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-active-icon{position:absolute;left:5px;top:5px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-icon{display:block;width:110px;height:94px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-name{color:#393f4c;font-size:14px;margin-top:8px;display:block;text-align:right}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-icon{background:url(../img/theme-icons.png) no-repeat 100% 0;background-size:488px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{background-position-x:-378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{background-position:100% -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-126px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-252px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{background-position:-378px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-india .monsterinsights-pp-theme-icon{background-position:100% -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-juliett .monsterinsights-pp-theme-icon{background-position:-126px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-kilo .monsterinsights-pp-theme-icon{background-position:-252px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-lima .monsterinsights-pp-theme-icon{background-position:-378px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-mike .monsterinsights-pp-theme-icon{background-position:100% -378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-november .monsterinsights-pp-theme-icon{background-position:-126px -378px}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls{text-align:center;font-size:14px;color:#626d83}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls>span{display:inline-block;margin:0 11px;vertical-align:middle}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button{border:none;border-radius:3px;background:#f0f2f4;width:20px;height:20px;text-align:center;color:#626d83;font-size:8px;cursor:pointer}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:hover{background:#dadcde}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:disabled{opacity:.5;cursor:default}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button i{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button.monsterinsights-pp-themes-slider-button-next i{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-name{position:absolute;right:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-icon{width:74px;height:46px;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:100% 0;background-size:392px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-212px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-106px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:43px;background-position:-318px 0}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{height:76px;background-position:100% -73px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-106px -90px;height:41px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-212px -83px;height:56px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{height:50px;background-position:-318px -86px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-name{position:absolute;right:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-icon{width:74px;height:40px;background:url(data:image/png;base64,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) no-repeat 100% -19px;background-size:296px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-74px;background-position-y:-6px;height:66px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-148px;height:50px;background-position-y:-14px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:78px;background-position:-222px 0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-preview{position:relative}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls{margin-left:22px;margin-bottom:20px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls input[type=number]{width:40px;height:40px;border-radius:5px;border:1px solid #b9c9d7;padding:2px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-inputs{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label{font-size:14px;width:auto;margin-left:9px;color:#393f4c;margin-bottom:8px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label span{display:block}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-pp-control-label{margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input{border-radius:0 5px 5px 0;text-align:center;-moz-appearance:textfield}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-inner-spin-button,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;font-size:10px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow{background:#f9fbff;padding:3px 5px;border:1px solid #b9c9d7;border-right-width:0;cursor:pointer}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:focus,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:hover{background:#fff}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up{border-radius:5px 0 0 0;border-bottom:0;padding-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-down{border-radius:0 0 0 5px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-unit{font-size:14px;color:#444;margin-right:5px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-description{font-weight:700}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:9px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline .monsterinsights-colorpicker-preview span{border-top-left-radius:0;border-bottom-left-radius:0;border-left-width:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline input[type=text]{border-top-right-radius:0;border-bottom-right-radius:0;max-width:108px}.monsterinsights-admin-page .monsterinsights-color-picker{position:relative;max-width:40px}.monsterinsights-admin-page .monsterinsights-color-picker .monsterinsights-colorpicker-picker{bottom:-120px;margin-right:10px;right:100%}.monsterinsights-admin-page .monsterinsights-pp-posts-picker .multiselect__input{border:none}.monsterinsights-admin-page .monsterinsights-popular-posts .monsterinsights-settings-block .monsterinsights-settings-input-select+p{margin-top:25px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#fff;color:#444;border-bottom-width:1px;border-color:#b9c9d7;border-radius:0;line-height:18px;border-left:0;margin:0}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#509fe2;color:#fff;border-color:#b9c9d7}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative;border-radius:0;outline:none}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#509fe2;color:#fff;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts{padding-top:15px;cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts span{color:#d83638;font-weight:400}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta{width:144px;height:100px;padding:0}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta:after{background-image:url(../img/theme-preview-beta.png)}.monsterinsights-inline-popular-posts-image{width:128px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-left:16px}.monsterinsights-inline-popular-posts-widget{margin-bottom:24px}.monsterinsights-inline-popular-posts-alpha{padding:24px 27px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1;display:block;margin-bottom:6px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:1;text-decoration:none}.monsterinsights-inline-popular-posts-beta{padding:14px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #d6e2ed}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-text{margin-right:19px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-border{display:block;border-bottom:1px solid;margin:16px 0}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list{list-style:disc inside none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list li{font-style:normal;font-weight:400;font-size:16px;line-height:130%}.monsterinsights-inline-popular-posts-delta{border:1px solid #d6e2ed;padding:16px 18px;border-radius:5px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-icon{margin-left:8px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;vertical-align:top}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-title{display:block;font-weight:700;font-size:18px;line-height:1;text-decoration:none;margin-top:4px}.monsterinsights-inline-popular-posts-echo{padding:13px 16px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-icon{margin-left:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;margin-left:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-foxtrot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;display:block}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image{padding-top:57%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image:after{background-image:url(../img/theme-preview-image.jpg)}.monsterinsights-inline-popular-posts-golf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;float:right;background:#fff;padding-left:20px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;clear:both;margin-top:14px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border{display:block;border-width:2px 0 0;border-style:solid;margin-top:10px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border-2{border-top:1px solid #e2e4e9;margin-top:20px;display:block}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-icon{margin-left:10px;vertical-align:middle}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-title{font-style:normal;font-weight:700;font-size:18px;text-decoration:none;line-height:130%}.monsterinsights-inline-popular-posts-india{padding:13px 16px 13px 12px;position:relative}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-border{border-width:0 4px 0 0;border-style:solid;position:absolute;right:0;top:0;bottom:0}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-title{font-size:14px;text-decoration:none;font-weight:700}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-label{font-size:14px;text-decoration:none;font-weight:700;margin-left:4px}.monsterinsights-inline-popular-posts-juliett{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-border{border-width:1px 0 0;border-style:solid;position:absolute;right:0;top:0;left:0}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-title{font-size:18px;text-decoration:none;font-weight:700;max-width:400px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;display:block;line-height:125%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-label{font-size:14px;line-height:18px;text-decoration:none;font-weight:700;padding:4px 12px;position:absolute;left:0;top:0}.monsterinsights-inline-popular-posts-kilo{position:relative;padding:30px 0}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none;display:block;clear:both;margin-top:6px}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border,.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{display:block;position:absolute;right:0;left:0;top:0;border-bottom:4px dashed #e2e4e9}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{bottom:0;top:auto}.monsterinsights-inline-popular-posts-lima{padding:16px 19px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-text{margin-right:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:120%;text-decoration:none;display:block;max-width:420px;margin-top:7px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-image{width:144px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-left:0;margin-right:20px}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2{padding-top:69%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2:after{background-image:url(../img/theme-preview-image-2.jpg)}.monsterinsights-inline-popular-posts-mike{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none;display:block;max-width:380px}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-label{position:absolute;z-index:10;right:0;top:0;font-size:14px;font-weight:700;padding:5px 8px;line-height:1.2}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-image{margin-left:20px}.monsterinsights-inline-popular-posts-november{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:5px;border-width:1px;border-style:solid;padding:16px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;margin-top:4px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-label{display:block;font-size:16px;font-weight:700}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-image{margin-left:20px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-icon{width:32px;height:32px;display:inline-block;border-radius:50%;text-align:center;float:right;line-height:38px;margin-left:17px;margin-top:4px}.monsterinsights-sharedcount-status{font-size:12px;color:#777;margin-top:12px;line-height:1.5}.monsterinsights-pp-manual-placement-options{margin-right:-12px;margin-left:-12px}.monsterinsights-pp-manual-placement-option{width:150px;height:150px;border-radius:10px;border:1px solid #b7c9d9;font-size:14px;line-height:17px;color:#444;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;cursor:pointer;margin-right:12px;margin-left:12px;vertical-align:top;max-width:calc(50% - 24px)}.monsterinsights-pp-manual-placement-option,.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{min-height:40px;margin-bottom:23px}.monsterinsights-pp-manual-placement-option.monsterinsights-pp-manual-placement-option-active{border:3px solid #338eef;font-weight:700;background:#f1f7fe}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:calc(50% - 12px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps .monsterinsights-button{margin-top:10px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps input[type=text]{border-color:#b7c9d9;color:#444}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:100%;margin-top:30px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li b{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:calc(50% - 12px);border-radius:10px;background:-webkit-gradient(linear,right top,right bottom,color-stop(17.51%,rgba(51,142,239,.6)),color-stop(74.11%,#0e5caf));background:linear-gradient(-180deg,rgba(51,142,239,.6) 17.51%,#0e5caf 74.11%);color:#fff;position:relative;height:198px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;text-align:center}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block>div{position:absolute;bottom:0;padding:20px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-welcome-overlay{position:fixed;bottom:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-pp-video-block-icon{margin-bottom:30px;display:inline-block}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block p{color:#fff;margin:0;text-align:right}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:100%}}.monsterinsights-settings-content-pp-inline input[type=number]{max-width:80px}.monsterinsights-settings-content-pp-inline .monsterinsights-collapsible-content .settings-input-text{margin-bottom:20px}.monsterinsights-inline-desc{margin-right:5px}.monsterinsights-widget-popular-posts-widget{margin-bottom:24px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list li{display:inline-block;background:#fff;border-radius:3px;margin:0 6px 30px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-right:4px solid #1ec185;padding-right:16px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:4px solid #338eef}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px 0 0;margin:0 6px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:2px solid #d3d7de}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-label{font-weight:400;font-size:12px;display:inline-block;padding:4px 8px;border-radius:3px;line-height:1;margin-bottom:14px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-title{display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;font-weight:700;position:relative}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-text{position:absolute;bottom:0;padding:0 14px 14px;right:0;z-index:15}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img{margin-bottom:0;padding-top:50%;width:100%}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:after{z-index:5;border-radius:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:before{background:-webkit-gradient(linear,right bottom,right top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;right:0;left:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-pp-products-theme-preview-output,.monsterinsights-pp-widget-theme-preview-output{margin-top:28px}.monsterinsights-dummy-text{padding-left:24px}.monsterinsights-dummy-text p{margin-bottom:40px;line-height:180%}.monsterinsights-pp-widget-controls,.monsterinsights-pp-widget-theme-preview{position:relative}.monsterinsights-pp-widget-controls .monsterinsights-settings-input-select-simple select{min-width:50px}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:calc(33.33333% - 12px)}@media (max-width:767px){.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:100%;margin-right:0;margin-left:0}}.monsterinsights-pp-widget-theme-preview-render h3{font-size:14px;margin-top:14px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio .monsterinsights-styled-radio{display:none}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio>span{display:inline-block;margin-left:8px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #b7c9d9;border-radius:5px;width:40px;height:40px;padding:10px 5px;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column>span{background:#99a1b2;display:inline-block;width:8px;height:8px;border-radius:1px;margin-bottom:2px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-two>span{width:12px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-one>span{width:100%}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column{border:2px solid #338eef;background:#ecf4fe;padding:9px 4px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column>span{background:#338eef}.monsterinsights-inline-checkboxes .monsterinsights-settings-input-checkbox{display:inline-block;margin-left:32px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-bg-img{width:121px;height:121px;padding:0;float:right;margin-left:16px;margin-bottom:12px}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-1:after{background-image:url(../img/theme-widget-1.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-2:after{background-image:url(../img/theme-widget-2.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-3:after{background-image:url(../img/theme-widget-3.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-4:after{background-image:url(../img/theme-widget-4.jpg)}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-5:after{background-image:url(../img/theme-widget-5.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-6:after{background-image:url(../img/theme-widget-6.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-7:after{background-image:url(../img/theme-widget-7.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-8:after{background-image:url(../img/theme-widget-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-bg-img{width:80px;height:80px;padding:0;float:right;margin-left:18px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-1:after{background-image:url(data:image/jpeg;base64,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)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-2:after{background-image:url(../img/theme-products-2.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-3:after{background-image:url(../img/theme-products-3.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-4:after{background-image:url(../img/theme-products-4.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5:after{background-image:url(../img/theme-products-5.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6:after{background-image:url(../img/theme-products-6.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7:after{background-image:url(../img/theme-products-7.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8:after{background-image:url(../img/theme-products-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-input-text-small{margin-top:24px}.monsterinsights-input-text-small .settings-input-text-input{max-width:350px}.monsterinsights-input-text-extra-small .settings-input-text{display:inline-block;margin-left:5px}.monsterinsights-input-text-extra-small .settings-input-text-input{max-width:80px}.monsterinsights-widget-popular-posts-products{margin-bottom:24px}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating{display:block}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating svg{margin-left:2px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list{margin:0 -12px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list li{display:inline-block;margin:0 12px;width:calc(50% - 24px);vertical-align:top;font-size:16px;border-top:1px solid #d3d7de;padding-top:15px;padding-bottom:30px;font-weight:700;line-height:1.1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-price{display:block;margin:10px 0 7px;font-weight:400}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list li,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:10px 12px;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:3px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-price,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{display:block;font-weight:400;position:absolute;left:12px;bottom:10px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-title,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{margin-top:12px;display:block}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-rating,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:13px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:0;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:5px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-price{display:block;font-weight:400;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-text{position:absolute;bottom:0;z-index:10;right:0;left:0;padding:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-rating{margin-top:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img:before{background:-webkit-gradient(linear,right bottom,right top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;right:0;left:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{position:relative;margin-top:8px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{padding:0}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{left:auto;bottom:auto;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:8px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list li{width:100%;margin-right:0;margin-left:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:calc(33.33333% - 24px)}@media (max-width:767px){.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:100%;margin-right:0;margin-left:0}}.monsterinsights-pp-blurred{-webkit-filter:blur(3px);filter:blur(3px)}.monsterinsights-pp-upgrade-overlay{position:absolute;top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);background:#fff;padding:8px 12px;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);border-radius:3px;z-index:10;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-upgrade-overlay>span{margin:0 10px}.monsterinsights-pp-theme-controls-holder{position:relative}.monsterinsights-pro-pill{font-style:normal;font-weight:700;font-size:11px;background:#1ec185;border-radius:5px;color:#fff;padding:3px 8px;margin-right:8px}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell{position:relative;width:750px;height:815px;max-width:100%}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell:after{background-image:url(../img/popular-products-bg.jpg)}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser{padding-top:83%;-webkit-filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1));filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1))}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser:after{background-image:url(../img/popular-products-browser.jpg)}.monsterinsights-popular-posts-products-upsell{margin-top:20px}.monsterinsights-popular-posts-products-upsell .monsterinsights-popular-products-upsell-window{padding:48px 50px 0;text-align:center;position:absolute;width:600px;top:62px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);z-index:1;background:#fff;border:1px solid #d6e2ed;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1)}.monsterinsights-popular-posts-products-upsell h2{margin-top:0;font-size:22px;line-height:1.2}.monsterinsights-popular-posts-products-upsell p{font-size:16px;line-height:1.2;color:#626d83;margin-bottom:32px}.monsterinsights-popular-posts-products-upsell .monsterinsights-button-text{margin:28px 0;color:#99a1b2;font-size:16px;display:inline-block}.monsterinsights-popular-posts-widget-category{margin-top:25px}.monsterinsights-popular-posts-widget-category.monsterinsights-popular-posts-widget-category-lite .monsterinsights-settings-input-select{pointer-events:none;opacity:.6}.monsterinsights-popular-posts-products-no-woocommerce{margin-top:72px}.monsterinsights-popular-posts-products-no-woocommerce .monsterinsights-settings-block{opacity:.6;pointer-events:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice{position:absolute;top:-72px;right:0;left:0;padding:16px 24px;background:#d7930f;color:#fff;font-size:12px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a{color:#fff;text-decoration:underline;font-weight:700}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:focus,.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:hover{text-decoration:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice span{margin-right:8px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice svg{vertical-align:middle}.monsterinsights-popular-posts-products-top{position:relative}.monsterinsights-pp-placement-options-accordion{padding-right:30px}.monsterinsights-pp-accordion-item-title{border-bottom:1px solid #d6e2ed;padding:24px 0;position:relative}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-toggle *{cursor:pointer}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible{position:absolute;left:0;top:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active{border-bottom:0}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top{margin-bottom:8px;font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top>span{margin-left:8px;margin-right:8px}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top .monsterinsights-settings-input-checkbox{display:inline-block}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-bottom{color:#777;padding-left:45px}.monsterinsights-pp-accordion-item-content{border-bottom:1px solid #d6e2ed;padding:0 0 24px}.monsterinsights-dummy-text p,.monsterinsights-pp-inline-theme-preview-render>p{opacity:.5}.monsterinsights-pp-products-theme-preview-output-narrow,.monsterinsights-pp-widget-theme-preview-output-narrow{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-dummy-text,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-dummy-text{width:60%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget{width:40%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-dark[data-v-0fc0f471]{display:block}.monsterinsights-reset-default[data-v-0fc0f471]{margin-right:5px}.saturation{position:relative;cursor:pointer}.saturation .slide{position:absolute;right:100px;top:0;width:10px;height:10px;border-radius:50%;border:1px solid #fff;-webkit-box-shadow:0 0 1px 1px rgba(0,0,0,.3);box-shadow:0 0 1px 1px rgba(0,0,0,.3);pointer-events:none}.hue{position:relative;margin-right:8px;cursor:pointer}.hue .slide{position:absolute;right:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.color-alpha{position:relative;margin-right:8px;cursor:pointer}.color-alpha .slide{position:absolute;right:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.sucker{width:30px;fill:#9099a4;background:#2e333a;cursor:pointer;-webkit-transition:all .3s;transition:all .3s}.sucker.active,.sucker:hover{fill:#1593ff}.color-type{margin-top:8px;font-size:12px}.color-type,.color-type .name{display:-webkit-box;display:-ms-flexbox;display:flex}.color-type .name{width:60px;height:30px;float:right;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#999;background:#252930}.color-type .value{-webkit-box-flex:1;-ms-flex:1;flex:1;height:30px;min-width:100px;padding:0 12px;border:0;color:#fff;background:#2e333a;-webkit-box-sizing:border-box;box-sizing:border-box}.colors{padding:0;margin:0}.colors.history{margin-top:10px;border-top:1px solid #2e333a}.colors .item{position:relative;width:16px;height:16px;margin:10px 10px 0 0;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:top;display:inline-block;-webkit-transition:all .1s;transition:all .1s;cursor:pointer}.colors .item:nth-child(8n+1){margin-right:0}.colors .item:hover{-webkit-transform:scale(1.4);-ms-transform:scale(1.4);transform:scale(1.4)}.colors .item .alpha{height:100%;border-radius:4px}.colors .item .color{position:absolute;right:0;top:0;width:100%;height:100%;border-radius:3px}.hu-color-picker{padding:10px;background:#1d2024;border-radius:4px;-webkit-box-shadow:0 0 16px 0 rgba(0,0,0,.16);box-shadow:0 0 16px 0 rgba(0,0,0,.16);z-index:1}.hu-color-picker.light{background:#f7f8f9}.hu-color-picker.light .color-show .sucker{background:#eceef0}.hu-color-picker.light .color-type .name{background:#e7e8e9}.hu-color-picker.light .color-type .value{color:#666;background:#eceef0}.hu-color-picker.light .colors.history{border-top:1px solid #eee}.hu-color-picker canvas{vertical-align:top}.hu-color-picker .color-set,.hu-color-picker .color-show{display:-webkit-box;display:-ms-flexbox;display:flex}.hu-color-picker .color-show{margin-top:8px}.monsterinsights-rotate-loader{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border-color:rgba(0,0,0,0) #3085d6;border-style:solid;border-width:.25em;background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}button[data-v-7b5d62d6]{margin-top:3px}.monsterinsights-dark[data-v-3f0b0409]{display:block}fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;left:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;right:50%;margin:-8px -8px 0 0;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__loading-enter-active,.multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:right;color:#35495e}.multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{opacity:.6}.multiselect--active{z-index:1}.multiselect--active:not(.multiselect--above) .multiselect__current,.multiselect--active:not(.multiselect--above) .multiselect__input,.multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-right-radius:0;border-bottom-left-radius:0}.multiselect--active .multiselect__select{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.multiselect--above.multiselect--active .multiselect__current,.multiselect--above.multiselect--active .multiselect__input,.multiselect--above.multiselect--active .multiselect__tags{border-top-right-radius:0;border-top-left-radius:0}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 5px 0 0;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.multiselect__input:-ms-input-placeholder{color:#35495e}.multiselect__input::-webkit-input-placeholder{color:#35495e}.multiselect__input::-moz-placeholder{color:#35495e}.multiselect__input::-ms-input-placeholder{color:#35495e}.multiselect__input::placeholder{color:#35495e}.multiselect__tag~.multiselect__input,.multiselect__tag~.multiselect__single{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-right:5px;margin-bottom:8px}.multiselect__tags-wrap{display:inline}.multiselect__tags{min-height:40px;display:block;padding:9px 8px 0 40px;border-radius:5px;border:1px solid #b8c9d8;background:#fff;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:2px 20px 2px 8px;border-radius:5px;margin-left:10px;color:#393f4c;line-height:1.2;background:#f3f6ff;margin-bottom:5px;overflow:hidden;max-width:100%;text-overflow:ellipsis;border:1px solid #b7c9d9;font-size:14px}.multiselect__tag.monsterinsights-tag-forced{padding-right:8px}.multiselect__tag.monsterinsights-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;right:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:22px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\D7";color:#b7c9d8;font-size:18px;margin-top:-4px;display:block}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#444}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 12px 0 30px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{display:none}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #b7c9d9;border-top:none;border-bottom-right-radius:5px;border-bottom-left-radius:5px;z-index:1;-webkit-overflow-scrolling:touch}.multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:5px;border-top-left-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.multiselect__content::webkit-scrollbar{display:none}.multiselect__element{display:block}.multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.multiselect__option:after{top:0;left:0;position:absolute;line-height:40px;padding-left:12px;padding-right:20px;font-size:13px}.multiselect__option--highlight{background:#acbdc9;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#acbdc9;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect--disabled{background:#ededed;pointer-events:none}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.multiselect__option--group{background:#ededed;color:#35495e}.multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.multiselect__option--group-selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect-enter-active,.multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.multiselect-enter,.multiselect-leave-active{opacity:0}.multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}[dir=rtl] .multiselect{text-align:left}[dir=rtl] .multiselect__select{left:auto;right:1px}[dir=rtl] .multiselect__tags{padding:8px 40px 0 8px}[dir=rtl] .multiselect__content{text-align:left}[dir=rtl] .multiselect__option:after{left:auto;right:0}[dir=rtl] .multiselect__clear{left:auto;right:12px}[dir=rtl] .multiselect__spinner{left:auto;right:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}.update-nag{display:none}.monsterinsights-admin-page{min-height:100vh;font-size:14px}.monsterinsights-admin-page a{color:#509fe2}.monsterinsights-admin-page a:focus,.monsterinsights-admin-page a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.monsterinsights-admin-page .monsterinsights-settings-content{margin-right:auto;margin-left:auto;max-width:750px}@media (min-width:783px) and (max-width:790px){.monsterinsights-admin-page .monsterinsights-settings-content{padding:0 10px}}.monsterinsights-admin-page input.monsterinsights-has-error{border-color:red}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;color:#fff;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page input[type=number],.monsterinsights-admin-page input[type=text],.monsterinsights-admin-page textarea{border:1px solid #b7c9d9;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#444}.monsterinsights-admin-page input[type=number]::-webkit-input-placeholder,.monsterinsights-admin-page input[type=text]::-webkit-input-placeholder,.monsterinsights-admin-page textarea::-webkit-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-moz-placeholder,.monsterinsights-admin-page input[type=number]::-moz-placeholder,.monsterinsights-admin-page input[type=text]:-moz-placeholder,.monsterinsights-admin-page input[type=text]::-moz-placeholder,.monsterinsights-admin-page textarea:-moz-placeholder,.monsterinsights-admin-page textarea::-moz-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-ms-input-placeholder,.monsterinsights-admin-page input[type=text]:-ms-input-placeholder,.monsterinsights-admin-page textarea:-ms-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number].monsterinsights-has-error,.monsterinsights-admin-page input[type=text].monsterinsights-has-error,.monsterinsights-admin-page textarea.monsterinsights-has-error{border-color:#d83638}.monsterinsights-admin-page input[type=text]:-moz-read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page input[type=text]:read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page textarea{height:150px}.monsterinsights-admin-page label{width:100%;font-size:14px;display:inline-block;color:#777;margin:2px 0 17px}.monsterinsights-admin-page .inline-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights-admin-page .inline-field input{width:100%}.monsterinsights-admin-page .inline-field .monsterinsights-button{margin-right:10px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-admin-page .monsterinsights-error{margin:18px 0 0;color:#d83638;cursor:default}.monsterinsights-admin-page .monsterinsights-error i{margin-left:10px}.monsterinsights-admin-page .monsterinsights-license-type-text{color:#777;font-weight:700;margin-top:16px}.monsterinsights-admin-page .monsterinsights-license-type-text a{color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-dark{color:#444;text-transform:capitalize;font-weight:700}.monsterinsights-admin-page .monsterinsights-settings-block{background:#fff;border:1px solid #d6e2ed;margin:25px 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block{margin-right:10px;margin-left:10px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{border-bottom:1px solid #d6e2ed;padding:16px 25px;font-weight:500;font-size:14px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{padding-right:15px;padding-left:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title:before{display:none}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding:25px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding-right:15px;padding-left:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p{font-size:14px;color:#777;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p a{color:inherit}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding:25px 22px 25px 25px;margin:-25px;border-right:3px solid #64bfa5}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding-right:15px;padding-left:15px;margin:-25px -15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade.monsterinsights-settings-addon-disabled{border-right-color:#f5c953;padding-top:15px;padding-bottom:15px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span{display:block;margin:2px 0 17px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio input[type=radio]{opacity:0;position:absolute}.monsterinsights-admin-page .monsterinsights-settings-input-radio label{color:#444;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio label>span{vertical-align:middle;font-weight:500}.monsterinsights-admin-page .monsterinsights-settings-input-radio label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-settings-radio-text,.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-styled-radio{opacity:.6}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-left:16px}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked{border-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked:after{right:2px;left:2px;top:2px;bottom:2px;position:absolute;content:"";background:#509fe2;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label{color:#444;font-size:14px;margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux{cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox{background-color:#dee5e9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#b9d8f3}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label input{display:none}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label>span{vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox{width:27px;height:18px;position:relative;display:inline-block;border-radius:10px;margin-left:9px;background-color:#acbdc9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked:after{left:2px;right:auto}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox:after{right:2px;top:2px;bottom:2px;width:14px;position:absolute;content:"";background:#fff;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-info{color:#b6c9da;margin-right:10px;cursor:help}.monsterinsights-admin-page .monsterinsights-settings-input-repeater .monsterinsights-error{margin-top:0;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-labels label{color:#393f4c;font-weight:700;margin-bottom:6px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row>span{width:100%;margin-left:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input[type=number]{width:30%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{width:70%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row.monsterinsights-disabled-row{opacity:.5}.monsterinsights-admin-page .monsterinsights-dimensions-count{color:#777;font-style:italic;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label{margin-bottom:0;width:auto}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-button{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-error{margin:0 0 20px}.monsterinsights-admin-page .monsterinsights-settings-input-select .monsterinsights-dark{margin-bottom:5px}.monsterinsights-admin-page .monsterinsights-settings-input-select label{margin-top:-4px}.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-right:30px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-right:15px}}.monsterinsights-admin-page .monsterinsights-collapsible>p{margin-top:0}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible{color:#b7c9d9;float:left;font-size:22px;padding-right:20px}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:focus{outline:none}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible i{cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-dark{display:block;margin-bottom:9px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate p{margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-ua,.monsterinsights-admin-page .monsterinsights-settings-input-authenticate button{margin-top:14px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-manual-ua+.monsterinsights-error{margin-top:15px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions{margin-top:18px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-left:20px;margin-top:0}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-bottom:10px}}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-settings-input-toggle-collapsible{margin-top:12px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-paragraph{padding-top:5px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text{color:#999797;font-size:12px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text:hover{text-decoration:underline}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-upgrade-icon{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-settings-addon-message{margin-left:25px;width:100%}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-button{font-size:12px;padding:6px 16px}.monsterinsights-admin-page .monsterinsights-icon-warning{width:48px}.monsterinsights-admin-page .monsterinsights-icon-warning:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAAAllBMVEUAAADV4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u2KpLj///+etMW0xdKqvs6ascPG1eKww9PO3OmVrb+LpbnR3+qRqr3U4ezA0d60x9atwdGPqLyNp7rT4Oy8ztzBztmiuMnx9PfJ2OXW4ObL2ua3ytilu8v7/P31+PnT3eXC0t/r8PPo7fHe5uvR2+OftscAs3DjAAAAC3RSTlMABtDHbvQb+ctt0f3LxK8AAAIoSURBVGje7drZbqMwFIBh05Au4wPBYPa1TPak2/u/3NAME6lzSMHGvqjk/zJI/sTiSLZMCLHsxZJqaLmwLdJ1f0e1dXdPiIXGVypY5Ilq7YksqNYW5IFq7YFQzRnAAAYwgAEMIAxwP2t2TbZOKWo+wHdtCH0VK3zFQPYRwdfCgqsDMgYDVUWsBuAt3ChpVABZCbfbx7OBPILvYnwmUMBI4XYWEMBoIZ8BNDAhVksD6wqm5MkCKf78g83bOUS/ZpJAjkZ6d7qOLnoNtRQQowmwci69ROjGpAD8Bb05f0O3UMYSQF0i4LUHPHQllwAaQJ16IMSTQQJoMeAenM/eAbcWBtIKcN6xG38zdCUXBnwYqvRWLgzVCgM5CBUKAx6giudLq0GhFgXwO2ZOX2fjuCiAH7X7Dxi8hbVuwJ8PJEelQAtYYL8VPiIPBvoGiEWBXAxIqChwFgNcYSCOhIBAGKCuEOCLAzs0yPPmcAFeTwy/AmEAPyPmXDuhvykJgO7RTL62ga9FWxlgHU0GPCoO4LlWvjh9h/9ec8XlgDiBaeVUDqAZTMpNZQFawIQSTqWBtIXRKn/OAqT+GB3/PG8Jle5Hno8/e5UZRHA7tlWwTvZDuFFUpEpW+nVQwlDMV7ZXEQ8QbqZ0t6Vu9glci1iw1bBfxJs88Dwv2PkppT9zx8sAnxnAAAag1AAGEE/3oYGl/mMPNtWarfnoyS9L++GZLst+1HP859G2CPkDRZCgO+Q/ERIAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-bg-img{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-network-message{width:100%}.monsterinsights-admin-page .monsterinsights-undo-redo{float:left;margin-top:16px}.monsterinsights-admin-page .monsterinsights-undo-redo button{border:none;background:rgba(0,0,0,0);color:#509fe2;padding:0;margin-right:5px}.monsterinsights-admin-page #monsterinsights-license-key-valid{-webkit-text-security:disc;text-security:disc;-moz-text-security:disc;font-family:text-security-disc;font-size:25px;line-height:1.2;color:#b7c9d9;padding-top:7px}.monsterinsights-admin-page #monsterinsights-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-moz-placeholder,.monsterinsights-admin-page #monsterinsights-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-first-time-notice .monsterinsights-notice-button{margin-top:20px}.monsterinsights-settings-blur .monsterinsights-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.monsterinsights-settings-blur.monsterinsights-path-general .monsterinsights-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;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-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate .monsterinsights-button{margin:0 20px}.monsterinsights-not-authenticated-notice .monsterinsights-dark{font-weight:400;margin-bottom:20px}.monsterinsights-pdf-exports-settings .inline-field .monsterinsights-button:first-child{margin-right:0}.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{margin-top:18px}}.monsterinsights-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.monsterinsights-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.monsterinsights-admin-page .monsterinsights-logos-row{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;border:1px solid #d6e2ed;margin:40px 50px 60px;padding:25px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-logos-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:20px;margin-left:20px}}.monsterinsights-admin-page .monsterinsights-logos-row .monsterinsights-box-title{font-size:13px;font-weight:700;color:#8aa4b8;position:absolute;background:#fff;padding:0 10px;top:0;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);right:50%}.monsterinsights-admin-page .monsterinsights-upsell{background:#fff;border:1px solid #d6e2ed;text-align:center;margin-top:25px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell{margin-right:10px;margin-left:10px}}.monsterinsights-admin-page .monsterinsights-upsell h2{font-size:20px;color:#393f4c;margin:36px 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h3{font-size:18px;color:#393f4c;margin:0 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h4{font-size:18px;color:#4c6577;font-weight:400;margin:0;line-height:2}.monsterinsights-admin-page .monsterinsights-upsell p{font-size:14px;color:#4c6577}.monsterinsights-admin-page .monsterinsights-upsell .monsterinsights-upsell-top{padding-right:10px;padding-left:10px}.monsterinsights-admin-page .monsterinsights-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom{padding-right:20px;padding-left:20px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{position:absolute;top:0;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{min-width:288px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom img{max-width:100%}.monsterinsights-admin-page .monsterinsights-report-ecommerce:after{background-image:url(../img/monsterinsights-report-ecommerce.png)}.monsterinsights-admin-page .monsterinsights-addon-ads,.monsterinsights-admin-page .monsterinsights-addon-amp,.monsterinsights-admin-page .monsterinsights-addon-dimensions,.monsterinsights-admin-page .monsterinsights-addon-eu-compliance,.monsterinsights-admin-page .monsterinsights-addon-forms,.monsterinsights-admin-page .monsterinsights-addon-instant-articles,.monsterinsights-admin-page .monsterinsights-addon-optimize,.monsterinsights-admin-page .monsterinsights-addon-performance,.monsterinsights-admin-page .monsterinsights-addon-scroll{width:48px;padding-top:110%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABfCAMAAAC5kuvHAAAAWlBMVEUAAACtvcitvcitvcitvciduM2tvcitvcitvcitvcitvchQn+KtvchQn+JQn+JQn+KtvcitvcitvchQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+KtvchQn+KLGAvfAAAAHHRSTlMAIu53RBG7qogzme7dIpkzzGZVzKqIZnfdu0RVXT0ICgAAAsdJREFUaN7tmd1ymzAUhAEjMMYCJ/wT6f1fs4QWH4OwN3StmV70uzMzWRF5vaszCg6ShYFPMhOpwCOpMR+BP0JjzDXwRRgnZuKc+dii8BaZO1Hyltd9/BSbRyLFe+pqssePp0f5mPCU6KXbByLPe+o6Ca3/8fOiH/OeCue3TVcLfCz6Gecpld7MnWtyX+OyPPvkPJWZFaflefKtMr8t8hT+agX5kiMTnVR4mR5BT+EFXPngfFbzrlw+gacOLAA21fUURnZWttrF9ZSP93c9JeA/A7+cjaeOcJvePA6/VwGmE08d258knq2Sgv1xPIUSmScLQSJ7OAFIIns7AUgi8ycAmMj8CQAmMn8CwImMAScAkMgHQGl9IuRBWh9INN22+kBaH0zkcbATw/gXaY3fX3W9/UPfKZjWBxO5LOyKogRpfSiR28o6VC1I658msm5yu0veaJTWGF3bF9Q64Chz+5K85PQLCyg4/coCqn9E/0n11k/3Xf9eugYlDKq3eCI/+UbNCxSghEH1Ns/kJ77sRAdKGFRvuy8ve9eCEgbV+7UvL1s3ghIG1asXmwz78laDEkbVWy2/omZXvkcljKq3uZuw2ZG3DShhWL2lmKRx5e0IShhXVy4p1jjyOSphXL2FlQW6jbwtUAnj9y+dHBZ5O8ISxtVbywJb+QqXMB6GSmmSbSKVYGT62TBUywJr+ZoZmQQtXSjy8tvlaZcF2lUddIwmbpk6eBtq73zleIGYT3VuN/SKmE/xOSgv3zyf6n719vrt86kaRH5QPubTLrczeedpPlXNXCnKx3wq89f/+RRAz6cIej7FsPMphp1PMdR8KmmKyUJQjSBNAcz9C4C/f8Hw9y8ufu5fBD/3L+IVP/cv4hU/9y/iFU/3L65X+PsX4BX6/gV4hb5/AV7h719eeoW/fwFeAYlJtysP6RW+XXkIr9DtykN55RdZztdXJmO7xAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-ads:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAAV1BMVEUAAABQn+Iuf75Qn+JQn+Iuf76svcmsvclQn+L///+LpLesvckuf743iMhzsujc7PmKv+xMm97o8vvz+f2izPDQ5fd/uepcpeSt0vGWxe652fNnrObF3/Xl1C/0AAAACHRSTlMA7OajHEnmSn/UIZcAAAF/SURBVGje7dkNb4IwEAbgFlCvWymVb3D//3fu2oUQiRGh1wzNvYmE5kwfyxFsgniYU6KTU0BhNYnWOgkorEa7bC98KpClEpbRLoAJK8g0w/lx+lgAEplIISYAqZBxASkgLgAPgGuu/5Jf9xTWgVxPyfcU1gE9Z3vhECug7gFtGGAAgIHNgC3V05Q2DLBqNTYIKNeBMghQL4SBKUVTKMw8LkiByuBoUHNGAEsJjMubqgYwlEDrh300oPKjacrGmvZGC4yuA/jxjR3AhRYwOJ1bRY3nPdADpb/+LcANBx1ANxhaoHc/frT+GhV4/FGKtgcGptSq8YxqiYDlA7PzN1Tb9EAJ1DCnUZa+yTeAVmGqDmDAIzlgsK3TUmp03Bo6ymdR1RSLR2hR4em7/R+8KfDKruLY+6IXdnZH35sywAADDDBwDEBC1EiRQtSkIou6BJnNLyjo419QLPJNkLsJPw84h89/fgpcgoXzRezM112efJEBBhhggAEGGGCAgX8BfgF9zfCNw+tX7wAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-amp:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAABAlBMVEUAAABQn+LW4upQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn///+vv8uyws1SoOLT4OnF091WouLO2+PH1d69zNa3x9K6ydS0xNCw1O/L2OFNnuDC0dvAztjQ3eZqreTI1t9ZpOL5/P7r9PqdxueLvOZ5t+VjqeRWpOCdyuyoy+d1suT1+v3m8fjb7PfO5fTF4POo0O6hzezL3enK3OmKwOiCvOdwsuRmrOHz+fu52fG+3PDI2+nD2OmtzuiYw+aIu+VeqOGYxumXbKjeAAAAHHRSTlMA9PEaFPz4z612TycFzHHalI9ZKWlm7be2JeyNLqjzBwAAA2ZJREFUaN7s2OlSo0AQAGAwh+LmMPHend62sCj/pPKDIiYhpzExmnitq+//KkLUKmZ6EIbhp98DdBfdPT2Aoa3YbBzXj8rlo/pxo1k0clasVYFTreWZo/DHBMLcK+QUvmKZIGValTzin25DrO19/fi7JnzD3NWNf1iCb5UO9eIfQKIDrfqUIFFJo0r7svr3J0OhD5k7XZHNT7uDd+IsZZ1WCyRaiAMQWBnPr6xALuLEI8O6OdO/draYkv+yAl0hzhwQ7YXxFcOzGweoO0Rs2SAqB5tvhynqyjuMeAtUzTC2mCIXqDkG+kBVDYMpWgLlYaDjgkRBOcFI2uHA9BUkmsoJekCsMPRobwCvoZxgTB/gEkPTRSvwsAbOiXICH0QLjJoDp66cgJyCAUZNB8JhjiS4OPsb6+yCfSIFusaoNQgiCbj4JENcgj5GzchZVktAS+TcYwRdqL+VS+STLR1Bt0Vdd0z7D8Fszhcfk3rZBtGJ9kGzQ84MY7ZRI8uqoPzNE1znsiqWILHqhNtuAFSBNDmxz27MfYPDpHUtxKcZ4i+ct7DDNlA11QTyK9MJT/MKQHZlKpZIful7V4iPbQDppc+UPZFHsBHRgw362sLUvYDgVd5hsIxsCc7FQbrFe65A3Ksjy+BZKNJwspYV6DQIT5qcrs//7LSv7wpjyi3tbpoPEJ0ErGun/IRSL9FXlZyUH4Esq2c33Wcsy+z8xQGpMvchzjQ89ZzkXwlMy03XTfoZwnQtR72x79m25497o6JBsFwZPwne2y+jFYlBGIoufSrMLwxiUSRRxIr//2+7YKdbGmde5oZhoHlrhXvI1Zh4AT4DCH6NyS4cS9UANDb/sXg0wC9dWSAwABeNDHIwQE1mFAkFqHbc1jII4A72MxHxrg8CxN2S5jqx/SFtQG2yfzhSDklR14cAtg04KTpYHXihD74qUgf4uxIgbHV71wIUkQAYQB3g1AB8dmg1p3DvAXoV8wtAeA/QReILQNbOIGvvQcWeIgnA1EF56p7FVrJcSaC7qDwzz2NuU3lYsqgzbD9om37EdTTjB/omI3syt4c9+y8CTxULUyE+fDvoXCQj6E52NuvOpqmqTtdm1X0fFKf2wkmRSv7SN9oFuAAfB0xI/WkAmJGAeQC4TcAEbj8jwgxCTPNI/xcIan5QyH2lWAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-instant-articles:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAA+VBMVEUAAABQn+JQn+LW4upQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn////L2OGvv8vAzti0xNDG1N7T4OhXo+NPmtzC0duKvObI1t+3x9LL3emqzOhVoOJPneCaxOZrrOSGrtfI2urQ3eZ1suRjqeOkwN+9zNb6+/3i6fK/0ue3zOSxx+HH1d6YuNtVmtlbmtV7pdN3o9PW4u/D2Omgx+e7z+TO2+OuxeGTtNnv8/rY4/DT4Oycu9x6qdmToCJeAAAAH3RSTlMA8xrwz612TycF9sxxE5SPWSn58+1pZhbb2Le2JfGNzELbBwAAAsdJREFUaN7tmF1f2jAUh1OwKIKCiDCdW0J5LRQo410UmeLm1L1+/w+zWrefLSdpmya9YOtzBxf/p+ScnJAiYcr53NlpsVAonp7l8mUkmYNshrjIZA8kxifeKwSwf5iQFJ9OKYSKkkrLyD/fIUx2jsTzd98RD5Rd0fwS8aEkln9CfDkRWh8SAIFVOlKCCJTQlU4z++fDeODspbDdmiIsJkviJBVy/zIX6EK7dS+Svaf31CTmwiAMfmor4ubwOZ8zHvcHzOfX1ptzyZp8KuZkyM6/Al9mEUryCkb0/llpmvYJfJ1BCHPSp+dfaxZtAkhwC0xq/oNm8ZVA8twCg/n8Vo9CctyCGSV/Yuc/EApvuQVzkNFe2vmXa5rgDbdAB/k/tBfBL+rEcwg+1ipMak38B5D/WXOzsR0cAmc+NAABM3/p7NYCt0B3538H+U/ESdEhaPouESyyBliBIou0KVRdCLep4Sl4Et9oJqHRvrTzb+CokDTs7hj5JAH2gUedPcb1lWYxJt7j2sr3NrAPnDVrmGa5BOwj8/r1+cGRCfYBe4mYfXT7mg8PfczNBMy7G/u0hCiJUAJYBUY+SaFwgtZos0fv6NeQdEgBvncv0rcxoaGcIwuwDwLV2eT4+w7aNNDQ/hLkAiIi8DeUEBA0gy6RjakHvATisNyPgl1jcWhawwGhsu+6iGMBJobu/yoBC9EfjvxehmBR+qYxm+uDgT6fGWYZAbBUUCyIBf+UYFr1QIKg7j23W2IC/9OnIyyoeFPfTkGtt6gvFo3IBPWXyjajqkEV40gFCxyx4BHbtFqdiAT4mU4jsi5q2I9fqUQrqMYChqDR7Xardg26Fj35gh52ErmgEbWgErFguo1dFAtiQSyISFDzFogf+nVPQW0q/X7waB84fz9txQ0nFsSC/0mQxBI5RhBVpkBFkD2JPyG5h2gG9VjS+qi0/N+iC9OxZrJwlgAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmBAMAAADG74kWAAAAFVBMVEXW4urW4urW4uoAAADW4uqsvclQn+ITLWFyAAAABHRSTlPsoxwAEnMmfgAAAIFJREFUWMPt2LEJgDAUBNCvOICFAwhu4AQKP06QbCDuP4J9sPCKwOm/KwOvusCHs3V0IN1is0PpbcLAbgMGNnMwvwGp1MmPj7EBYXGEgLA4QkBYHCFI5VVybEBYHCEgLE5AQEBAIAQgPIqE4LjqnAJtwNe+RlMAz0XwIAVPXvCodgNhA6kmkI3HfAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-optimize{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-optimize:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABeCAMAAAByzjhiAAAAkFBMVEUAAADW4utZo9+bxObW4utUod/W4utUod/W4utUoN5ToN3W4utUod/W4uvW4utTntpTntpUod/W4uvW4uvW4utTntpUod/W4uvW4uvW4uvW4utTndnW4uvW4utUod/W4uvW4utUod9QlMtRl89Qls1RmNFSmtNPk8lPksdSm9VOkMNRmdNSnNdTndlTnttUoN4GbpBuAAAAIHRSTlMAAgcM4/fvwLNVRvnULikb5+bRxbyil5SSi4BySTw4Jgr331EAAAGYSURBVGje7dJXbsQgFIVhPJ7qTEnvxb2Msdn/7gKOIiJ7AMkcXiL+BXxHiEvULXabVTK7m8dPoi3iuF37UMPvEvtW6oFTgmiv9DcJpEjBBwmmjep2ElDe9773ve9973vf+zP9YFSI9MPXq3h+KTP4B65bVNVM63/FdlVn3QAJ1ta+boC8x/b+uWJKf2vv6wbI2t7XDZAY4ItS5tQXA079uk6ZQ7/m5cyZXw9lzIkveLFQVRnD++ngD7wcwPr1r5+mBcP7kue1cF/yQ6UTvxK+HED6Iz7PS6w/5vOsgfojnvtZg/XHfFZQpD/li4Li/Akv/LZD+bn0//Bt2eH8Kc/9sgP5Cr5seow/+dvih2+aHuZPeeHTHuGreUp7iC8vc8TTzt7PFHwjeIQ/OR3JQ3w1j/F1POB/C8XpUMEjfB1/DfA1fP8G8BWXOfgLgK/hI2Lvt4rT4fyOIHwV/3AiCD+4nLAhPrmc973vfe//d3/p2H+25LcG/2jpfxBD91b8bWDyQ5sfWIfE2GI7m78TvLnjy5w3LJ8OZvobpmnKQFwgNYcAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-addon-dimensions{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-performance{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-performance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABlCAMAAACFixa5AAAA8FBMVEUAAADW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4uqsvclQn+KwwczT4erK1+DR3+rH2+m91ulkqeNbpeN2suRnq+PJ3OmKvOZ7teViqON4s+R0seRWouPC0dvL3emOvuaAt+WXwuZuruRgqOO6ydSuzujL2OKT9JW9AAAAMnRSTlMA4dIH+kUD8u3kDNZoShiYfeiQg2I/DsiIJhRPLfTexcG8s65vIBza0KReuYx3WFU2dMplGNoAAAPgSURBVGje7ZnZetowEEaHesMsBrOvIWwhpOk2UFqaNE3a0CZd3/9tataxIwnZRL7o15wbjC7+g6XxSJ+B8Gj1crOUyWReNY16CtSivSp0bfST7GQ0UEY9jRxOT0ARlQRySauaqDco4IUiQRcFdBQJnqGAxJPgSfCfCMxsX0cRfQMeSSNv415GUZqqlh28dMBHKm+hFDuoGJYGZRO4lG1E1HOkaCYwFGmD7ji3GngNHFptXGEV113Y6WNoxo31FGzvuM0xNI5wi5sxAbJJjIBdBjBLNn13mGLpBm66WcRo6MXsaaCTP1z7IiomBwEMVM4Z+HBcVI41BKKHMdChx6GEcUBnAieJUZndXU79XP5GFr21EYwxMt+nD/iJHI43LQKjczF9CPJ4uRJUMTqfwwmOtEMfgbtwAix5gud4ALOP4QRpgBYexOxLKAEakMMDDTehBDmwUcb7DzOu4T6MIA0WSvhwOb2Y87y3YQQj6MryF8vHaM7Plwv6kJXne3yeC/LliwwFyfxMeYb3Icu0AB6ZpCSfDEz+1c0+QXKwPf4khfmEb6Vnu/xvu0tOfL5CR4qiJc4nA5u/W4xLQTwpztvC/Ivt56ftQ0z5nuHH8vpaFE+c6IL8u9kNGZh8z3C/WFzPgl2U4n0CQf61ry1cfQpcC7GAgWnbV5TvN8yZfC4OEIKdn/ID876g2doH7/SbxwD3lB8wsPnv3k4mb99hgCaw1DgN/5qzxVDFfl3HevmeQXSsI3LMyeT2O2cTo/w/m9jJCgyQCSHwz8HXXX+grvF++cujCGoowkvaGih/9muyR3AmX2TCS9gabqnrefkBgXyRB0gEa2NChvvFjzlZxQIDWF4hQbXBTZAL6sDS4gUcKNA1YEkpFBwBi3mmSwS0MFKBm2VXII0oEdDCCAVENahoniLKBNJBscKoIioXkOKki6hWQBwPASojjE+AdgOKGKcACzCKV2CDFa8AIR2vIAH5eAU1cPR4BNRWx3EKnlObjkdQBo9xfIL+ulewlUqNky6lgyz6ZmN7gQzU+ulSPsiW0BrtFGPhKLXbjnWMAb3M/FOmlhoQ5jEq51nwnXkSFWPVIUAWA1RtjIjbYd6mid8tuyXTiThpxw68tAMbzUPM3m71zyvL74VIC2ouj25FfeczgaFS3fSnFqwxEqELfluQ9c2v7DSAgzaouolelgZStTaGoF301YvRs91uyYSQnOR0lKAXHHgMw8LeAk6eD+GxaGdChVXS/oF/Ap8ETwIlCLfskSLBGAX0FQkMFFAGReSQyzmowuT1besFKKRiDHLP0661SnbTvULGSEEspKLm/gXsGeljiPFFoAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-scroll{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-scroll:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-upsell-large{padding-bottom:35px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-large{padding-right:10px;padding-left:10px;line-height:1.2}}.monsterinsights-admin-page .monsterinsights-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-upsell-large h2{font-size:18px;margin-top:0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-coupon{color:#509fe2;border:1px dashed #509fe2;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-flow:wrap;flex-flow:wrap;margin:30px auto 25px;max-width:525px}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:right;margin:10px 0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span:before{content:"";background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAElBMVEUAAABQn+JQn+JQn+JQn+JQn+KxowiZAAAABXRSTlMARO4idxyyls4AAAAySURBVAjXYwABoyADBhgQDRWgKttQUFDQNdQRSBowqIbCgAJDKBwEIIsjq6eFe5D9CwCWPRV/mairZAAAAABJRU5ErkJggg==);width:11px;height:11px;background-size:contain;display:inline-block;margin-left:12px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p a{color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEUAAAD/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE1mRQDuvkTSpDZ7VwqgeB2bdBqvhiV+Wgx2Uwj4xkn3xUnfsD3KnTKziSeLZhOFYRBnRgD04bLqAAAADnRSTlMALPrz8dvSp6SXYxMNONmrFGwAAADrSURBVDjLhZPploMgDIVjqQjY3hS12r3v/5bDjFGH0gPfH+4JS0IW2mid0QpQ2riWUqpmh5VdU1HMweIDe4iu10io/z1y3OML++N6X/aTE5X4l/dT6jkOCyHF/jmAcAIS+eukET1wJ/ZTx4MYG6JW8uOZuZ9lH6SXjLXkMHMO1m6WXZBnMTsy+QOGNHIuoEkhFyQUxX9LJaEAKWRRpJFFk0EWQw7C/YaV2x2CW1ONx3vwVwSufng/sKR6K9ZlZOZpHKewjJelWFG5nyw8t3LHDeP71zS9eo8FW2y5UtMW2748OOXRKw9vcfx/ACZnLYWsWc2gAAAAAElFTkSuQmCC)}
1
+ .monsterinsights-dark[data-v-3b9e68c1],.monsterinsights-dark[data-v-3e9d67ac],.monsterinsights-dark[data-v-4619bc56]{display:block}.monsterinsights-addons-navbar h1{display:inline-block;font-size:16px;line-height:48px;font-weight:400;margin:0;color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px;width:258px;position:relative}@media (max-width:750px){.monsterinsights-addons-navbar .monsterinsights-addons-filters{width:calc(100vw - 200px)}}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]{height:28px;margin-left:0;padding-right:10px;padding-left:28px;font-size:14px;border-color:#d6e2ed}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-webkit-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-moz-placeholder,.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-moz-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-ms-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters>i{position:absolute;left:10px;top:5px;z-index:10;color:#b7c9d9}.monsterinsights-addon-not-available .monsterinsights-addon-status span,.monsterinsights-addon-not-installed .monsterinsights-addon-status span{color:#777}.monsterinsights-addon-inactive .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}#monsterinsights-addons{width:770px}@media (max-width:782px){#monsterinsights-addons{width:100%}}#monsterinsights-addons .monsterinsights-addons-area{margin:0 10px}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button{background:#f9fbff;border-color:#d6e2eb;color:#8ba4b7}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:hover{background:#fff;border-color:#c4d6e2}#monsterinsights-addons .monsterinsights-addons-no-results{margin-top:25px;padding:0 10px}#monsterinsights-addons .monsterinsights-addons-no-results p{font-size:16px}#monsterinsights-addons .monsterinsights-addons-no-results>div{visibility:hidden;-webkit-animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards;animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards}.monsterinsights-path-addons .monsterinsights-navigation-bar{padding-right:10px;padding-left:10px;background:#fff;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-container,.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:0}.monsterinsights-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px}.monsterinsights-addons-list .monsterinsights-addon{width:calc(50% - 12.5px);border:1px solid #d6e2ed;position:relative;background:#fff;padding:0 0 72px;margin-bottom:25px}@media (max-width:782px){.monsterinsights-addons-list .monsterinsights-addon{width:100%}}.monsterinsights-addons-list .monsterinsights-addon h3{color:#393f4c;margin:0 0 -5px;font-size:15px}.monsterinsights-addons-list .monsterinsights-addon .monsterinsights-addon-excerpt{color:#777;font-weight:400;margin:10px 0 0;font-size:14px}.monsterinsights-addons-list .monsterinsights-addon-top{padding:20px 24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-addons-list .monsterinsights-addon-image{border:1px solid #d6e2ed;width:74px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:start;align-self:start;margin-left:20px}.monsterinsights-addons-list .monsterinsights-addon-image img{display:block;max-width:100%}.monsterinsights-addons-list .monsterinsights-addon-message{position:absolute;bottom:0;background:#f9fbff;border-top:1px solid #d6e2ed;right:0;left:0}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-interior{padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-status{font-weight:700;font-size:13px;color:#393f4c}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-action{-ms-flex-item-align:end;align-self:flex-end}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-button{padding-bottom:7px;padding-top:9px;min-width:120px;line-height:1}.monsterinsights-addons-list .monsterinsights-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.monsterinsights-file-input{margin-bottom:20px}.monsterinsights-tools .monsterinsights-dark{margin-bottom:5px;display:block}.monsterinsights-tools-url-builder p .monsterinsights-info{margin-right:0}.monsterinsights-tools-url-builder .monsterinsights-input-text{margin-bottom:20px}.monsterinsights-required{color:#d4393d}textarea:-moz-read-only{background-color:#f9fbff}textarea:read-only{background-color:#f9fbff}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-tools-info-row p{margin-top:0}.monsterinsights-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-tools-info-row .monsterinsights-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-tools-info-row .monsterinsights-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.monsterinsights-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info i{margin-left:10px;color:#b6c9da}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{background-color:#0c55da;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:0 0;background-size:contain;border-radius:5px;padding:30px;margin-top:30px;position:relative}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad{padding-bottom:50px}}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-title{font-weight:700;font-size:28px;line-height:32px;color:#fff;margin-top:0;margin-bottom:15px;font-family:Helvetica,Helvetica Neue,Arial,Lucida Grande,sans-serif}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-description{color:#fff;font-family:Roboto,sans-serif;line-height:20px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button{background:#256ef3;border:0;font-size:16px;font-weight:700;border-radius:5px;font-family:Roboto,sans-serif;position:relative;padding:12px 60px 12px 76px}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:active,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-button:after{position:absolute;content:"";left:53px;top:50%;width:16px;height:17px;margin-top:-8px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEJSURBVHgB3VPBbcMwDDxSbgEDfWQEb9Cu0BGMLqBu0L6Dou0j6BjVAkVW6AgZQSP450cSsrIaubErB0jyy31IUbwTJVKECSy+WhtMtVv6+UPpcnnFlAAxfY5CLpfHOBMXIEDJ+Vi2lQhsv8H0up+oou/JXzPcW136zu+7sAktMyPS4KS/vSbIuRTvr/BSl98KfcRhNIrNfTp9cIWExbK1hH8z0JPn9c1qUFkmMSeSJUeB0chGiPKKjcx2IpEs26uKSe5GfF9kRhYGGl7H2K2sa4Z64utbA3G5gif/AkRcgcIpqAn+01TawUEKXbFBaY8sz4htTPaoSewqiRa/FrO46l48BCqcAob/ASVTXz+pYfYFAAAAAElFTkSuQmCC);background-repeat:no-repeat}.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{position:absolute;left:45px;bottom:40px;background-image:url(../img/pretty-links-logo-white.svg);background-repeat:no-repeat;width:240px;min-height:39px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-prettylinks-flow-ad .monsterinsights-prettylinks-flow-ad-logo{left:10px;bottom:0}}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks{position:relative;background:#256ef3;border-color:#0d59e3;margin-right:15px;padding:10px 23px 10px 48px}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:active,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:hover{background:rgba(37,110,243,.85);border-color:rgba(37,110,243,.85);outline:none}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-copy-to-prettylinks:after{position:absolute;content:"";left:23px;top:50%;width:16px;height:15px;margin-top:-7px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAPCAYAAADtc08vAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEQSURBVHgBlVLBccIwENyTPXnwSEwHooLYFYRnxlXQgekgpgNaSAe8eOSTuAI5lUAyDHxAx2mwAcEgj3fGPtne3VufBASwMuNkZd51iKNCHyMamIjUtzPqbfBv8okU7S6FwbS3AQgf5yWh6GWw+c2LpnuLpHl338cNKVZUMEMzkBJIIwDh1AReS6p6b3ezWEIkIp6eUndDOKm7i2Yc4alSw2xZy8MMPeE0z9nX4tz0z+QlXQ2uS/ySLcsm0QViMg9N/Fbs4O2Cgl2gA4R97WuuYEFplwEj0g8NiOjNJ2N9ayCc14cGIklaoftXy9vRge2ImT8vpuyljD05UyWlstjOh9lP293ViRy4UoFKWXszOAInrGJHik+ELQAAAABJRU5ErkJggg==);background-repeat:no-repeat}body.monsterinsights-prettylinks-flow-page{background:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:770px;margin:0 auto}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{padding:0 30px}}@media (min-width:783px) and (max-width:935px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow{max-width:700px}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow a,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow div,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h1,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h2,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h3,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow h4,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow span{font-family:Roboto,sans-serif}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow p{font-size:16px;line-height:21px;color:#393f4c}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header{text-align:center;max-width:680px;margin:0 auto;padding-top:75px;padding-bottom:20px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-tools-prettylinks-flow-header-logo{min-height:56px;background-image:url(../img/mi-and-pl-logo.svg);background-repeat:no-repeat;background-position:50%}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-title{font-size:39px;font-weight:900;line-height:46px;text-align:center;color:#393f4c;margin-top:60px;margin-bottom:18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-header .monsterinsights-prettylinks-flow-description{max-width:560px;margin:0 auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:25px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-right:-35px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-image{margin-right:0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description{padding-right:16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row .monsterinsights-tools-prettylinks-row-description h3{margin-top:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{border-radius:5px;border:1px solid #e2e4e9;margin-bottom:36px}@media (max-width:782px){body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard{text-align:center;padding:30px 30px 0}}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated{border-width:2px;border-color:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-prettylinks-flow-counter,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-prettylinks-flow-counter{background:#338eef}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action .monsterinsights-button{background:#338eef;border-color:#338eef;color:#fff}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-install-prettylinks .monsterinsights-button:after{background-position:100% -16px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:auto}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after,body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-not-activated .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{background-position:-18px -18px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-prettylinks-flow-counter{background:#1ec185}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard.prettylinks-status-active .monsterinsights-tools-prettylinks-action .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-prettylinks-flow-counter{width:48px;height:48px;text-align:center;background:#b6bcc8;border-radius:50%;color:#fff;font-size:24px;line-height:48px;font-weight:700;margin-right:35px;margin-left:35px}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action{padding:30px 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action h3{font-size:18px;line-height:18px;color:#393f4c;font-weight:700;margin-top:12px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action p{margin-top:6px;margin-bottom:0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button{font-size:14px;font-weight:700;border:0;border-radius:5px;margin-top:30px;color:#b6bcc8;background:#e2e4e9;border-color:#e2e4e9;padding:13px 20px 13px 46px;position:relative}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action .monsterinsights-button:after{position:absolute;content:"";left:20px;top:50%;width:16px;height:16px;margin-top:-8px;background-repeat:no-repeat;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAIRQTFRFAAAA1Nfe09fe1dff09ff0tfe0dXd09je09ff1Njf09Td0tbcz9fbz8/f09je0tfc0tjf1Nje19fXz8/Pz9fX09fd0dfdDl2vDlyvDlyxDlyvDluvDlytDlyvDVyvDVysDFyrEGCvDlyvDlyuDluvDlquDl2vDl2vEGCvEFCvCFivDlyvL0miRwAAACx0Uk5TAN//f3/fgO+/j5BQQBDPoI/PIBAggIDf/39/34Dvv1BAEM+gj5CP7yAQIICE4JwzAAABEElEQVR4nKWQCU/EIBCFH9UC67G1XqAF1FZdV////7Mc07K9YuIjIRPex7zJAEGsKBiSzopM5+nR18jqUWtAybnYBCQg/wEIKXfAhZRleL0cJ7qKACeWB+B6T36FRWAgKopgUt4AOylFCo5EtTGkJ8ifAszf9e2+uqt9xRIgOGcRiPH1ffR9y8mqs1oUYaiH3H/MAIESYljXoPK0QzkDopTWasWK0r3+DDzpTM8LgD7RGtAYYzcBBzgCXsZ+r4vAW0t+lzpY596BD+ea2JeIjiIMpZkUHIkOq0AgyO8BFSI+nTv0gPKf26+2O4Y2ajZkjG+/jy0tZhEIsv0hwBqjpoBFA6tnq27G+tCfBvjJffMLAwgkWFxoOwcAAAAASUVORK5CYII=);background-position:100% 0}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button{pointer-events:none}body.monsterinsights-prettylinks-flow-page .monsterinsights-settings-content.monsterinsights-tools-prettylinks-flow .monsterinsights-tools-prettylinks-flow-content .monsterinsights-tools-info-row.monsterinsights-prettylinks-flow-install-wizard .monsterinsights-tools-prettylinks-action.monsterinsights-tools-create-prettylinks .monsterinsights-button:after{width:14px;height:14px;margin-top:-7px;background-position:-18px 0}.monsterinsights-about-block{padding:25px;background:#fff;border:1px solid #d6e2ed;margin-top:20px;margin-right:20px;margin-left:20px}.monsterinsights-about-block h3{color:#393f4c;font-size:18px;margin:0 0 20px;line-height:1.4}.monsterinsights-about-block p{font-size:16px}.monsterinsights-about-block:after{content:"";display:table;clear:both}div[class*=" monsterinsights-path-about-"] .monsterinsights-container,div[class^=monsterinsights-path-about-] .monsterinsights-container{width:100%}div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-right:20px;padding-left:20px}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-right:0;padding-left:0}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list{padding:0 20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:calc(33.3333% - 12.5px)}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:100%}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addon-image,div[class^=monsterinsights-path-about-] .monsterinsights-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" monsterinsights-path-about-"] .monstericon-star:before,div[class^=monsterinsights-path-about-] .monstericon-star:before{color:#fdb72c}.monsterinsights-lite-vs-pro-table{padding:0}.monsterinsights-lite-vs-pro-table .monsterinsights-lite-vs-pro-footer{background:#f0f0f0}.monsterinsights-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.monsterinsights-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.monsterinsights-features-table{width:100%;border-collapse:collapse;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-features-table td,.monsterinsights-features-table th{width:33.33333%;border-bottom:1px solid #d6e2ed;padding:30px;vertical-align:top}.monsterinsights-features-table td p,.monsterinsights-features-table th p{margin:0}.monsterinsights-features-table th{background:#f0f0f0;text-align:right;border-left:none}.monsterinsights-features-table td p>span{display:block;margin-right:30px}.monsterinsights-features-full:before,.monsterinsights-features-none:before,.monsterinsights-features-partial:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f021";font-size:20px;margin-left:10px;color:#d4393d;position:relative;top:2px}.monsterinsights-features-partial:before{content:"";background:url(../img/about-icon-check.svg) no-repeat 50%;background-size:19px auto;width:19px;height:19px;top:6px}.monsterinsights-features-full:before{content:"\f015";color:#4ab99b}.monsterinsights-lite-vs-pro-footer{padding:50px 20px 30px;text-align:center}.monsterinsights-lite-vs-pro-footer h3{margin-bottom:10px}.monsterinsights-lite-vs-pro-footer p{margin-bottom:0}.monsterinsights-lite-vs-pro-footer a{color:#509fe2}.monsterinsights-lite-vs-pro-footer a:focus,.monsterinsights-lite-vs-pro-footer a:hover{color:#393f4c}.monsterinsights-lite-vs-pro-footer.monsterinsights-small{padding:0;text-align:right}.monsterinsights-lite-vs-pro-footer.monsterinsights-small h3{margin-bottom:5px}.monsterinsights-lite-vs-pro-footer.monsterinsights-small p{margin-top:0}.monsterinsights-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-two-column>div{width:50%}.monsterinsights-list-check ul{margin:0}.monsterinsights-list-check li{font-size:16px;margin-top:10px;padding-right:30px;position:relative}.monsterinsights-list-check li:first-child{margin-top:0}.monsterinsights-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f015";font-size:20px;margin-left:10px;color:#5cc0a5;position:absolute;right:0;top:0}.monsterinsights-about-docs-row:after{display:table;clear:both;content:""}.monsterinsights-about-docs-image{width:270px;float:right;margin-left:20px}.monsterinsights-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.monsterinsights-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.monsterinsights-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.monsterinsights-about-docs-4:after{background-image:url(../img/about-icon-addons.png)}.monsterinsights-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.monsterinsights-bg-img.monsterinsights-about-team{padding-top:59%}.monsterinsights-bg-img.monsterinsights-about-team:after{background-image:url(../img/about-team.jpg)}.monsterinsights-about-page-right-image{float:left;width:40%;text-align:center;margin:0 20px 0 0}@media (max-width:782px){.monsterinsights-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.monsterinsights-about-page-right-image img{width:100%}.monsterinsights-about-page-right-image figcaption{color:#999797;margin-top:5px}.monsterinsights-about-page-right-image iframe{max-width:100%}.monsterinsights-dark[data-v-62e7e943]{display:block}.monsterinsights-colorpicker-preview span{width:40px;height:40px;display:inline-block;border:1px solid #b9c9d7;border-radius:5px}.monsterinsights-colorpicker-picker{position:absolute;z-index:100}.monsterinsights-colorpicker-picker .hu-color-picker{min-width:218px!important}.monsterinsights-pp-theme-picker{overflow:hidden}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-carousel,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slide:after{content:"";margin-right:48%}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option{width:150px;border-radius:10px;border:1px solid #d3d7de;height:150px;padding:17px 20px;margin-bottom:24px;cursor:pointer;position:relative;background:rgba(0,0,0,0)}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-option-selected,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option:hover{border:3px solid #338eef;padding:15px 18px;outline:none}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-icon,.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-option.monsterinsights-pp-theme-not-available .monsterinsights-pp-theme-name{opacity:.6}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-active-icon{position:absolute;left:5px;top:5px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-icon{display:block;width:110px;height:94px}.monsterinsights-pp-theme-picker .monsterinsights-pp-theme-name{color:#393f4c;font-size:14px;margin-top:8px;display:block;text-align:right}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-icon{background:url(../img/theme-icons.png) no-repeat 100% 0;background-size:488px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{background-position-x:-378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{background-position:100% -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-126px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-252px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{background-position:-378px -126px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-india .monsterinsights-pp-theme-icon{background-position:100% -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-juliett .monsterinsights-pp-theme-icon{background-position:-126px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-kilo .monsterinsights-pp-theme-icon{background-position:-252px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-lima .monsterinsights-pp-theme-icon{background-position:-378px -252px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-mike .monsterinsights-pp-theme-icon{background-position:100% -378px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_inline_theme .monsterinsights-pp-theme-november .monsterinsights-pp-theme-icon{background-position:-126px -378px}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls{text-align:center;font-size:14px;color:#626d83}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls>span{display:inline-block;margin:0 11px;vertical-align:middle}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button{border:none;border-radius:3px;background:#f0f2f4;width:20px;height:20px;text-align:center;color:#626d83;font-size:8px;cursor:pointer}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:focus,.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:hover{background:#dadcde}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button:disabled{opacity:.5;cursor:default}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button i{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.monsterinsights-pp-theme-picker .monsterinsights-pp-themes-slider-controls button.monsterinsights-pp-themes-slider-button-next i{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-name{position:absolute;right:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-icon{width:74px;height:46px;background-image:url(data:image/png;base64,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);background-repeat:no-repeat;background-position:100% 0;background-size:392px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-212px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-106px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:43px;background-position:-318px 0}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-echo .monsterinsights-pp-theme-icon{height:76px;background-position:100% -73px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-foxtrot .monsterinsights-pp-theme-icon{background-position:-106px -90px;height:41px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-golf .monsterinsights-pp-theme-icon{background-position:-212px -83px;height:56px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_widget_theme .monsterinsights-pp-theme-hotel .monsterinsights-pp-theme-icon{height:50px;background-position:-318px -86px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-option{text-align:center}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-name{position:absolute;right:18px;bottom:10px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-icon{width:74px;height:40px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlAAAACcCAMAAACHiWWRAAAAzFBMVEUAAACfz/g3j+8yju8yju8zje/n8f5BlfAyju/n8v1BlfBClvCfy/dAl++gy/jn8v4yju8zje/m8vzn8v3n8v0yju/n8vzl8Pzf7/8wj+/n8v1ClvDn8f3o8vygyvkzju+gy/gzjO/n8f2gy/dBlfDo8v4yje0zjvCgy/gzjOwzju/n8v2gy/hZo/JClvDx9/5Lm/FGmPHe7fykzfnR5ftUoPI+lPC21/lhp/Oy1fk3ke9rrfNRn/KZx/eBuvY8k/CMwPacyfjB3fo6ku9qJEf1AAAAKnRSTlMAASDv369f71/fv68gIO/Pz7+vj4CAb1AQEO/v3q+vj79Q7u7ur3BvvlArPgaxAAAHCUlEQVR42uzcu2pCURRF0UWiopXvZyMpTMjaCBZGBAX//69CyhhtVMzcsMcXLDiTq7e4RyWz+bhvjF5bJbeXhlEaLyqZwXqyG3OVvNrGGavk1TNOXyUvA6nkZSCVvAykkpeBVPIykEpeBlLJy0AqeRlIWLPJqhP/rrtqCctAopouAqKDTcpAghoGyEhMBhLTKFCGQjKQkFoBMxWRgYQE+Df+22ImIAOJCPeAipgIyEAiGgTOQEAGElE3cDoCMpCIAkhABhJRAAnIQCIKIAEZSEQBJCADiSiABGQgEQWQgAwkogDSj/lHE/Cxbq/ZrqDuC2q73/mZDtuLQX2+GqLRrqDuCGq785PttheCWhpkXEHdHtTBT7f/G9TYKMsK6uag/Hy7OMO7meKtgkoUlOMM7+qc17mBREQMCveAst8NJCJiUE3jACdVUFfFGeBdTLgfYbuCuoqwISMREQ6TsCEj5Ksn4TAJGzKqoMAbMqqgwBsyqqDAGzKqoMAbMqqgwBsyqqDAGzKqoMAbMhIR4TAJGzISEeEwb9lw2nytH+K4OTkpESUNarN+oI1zElHOoI7rhzo6JRGlDOqbvbvbURUGozBMMBMSCAdz7OkcLaS2iSjb/3Hf/z1tdNyaMUym2AKtXe81PCGFfqWybOIzKnIxH0EdSut5uY6KXMxHULIRwEcUQf1Qd1Db0noVPCxyMR9BlT0ED4tcjKAIiqC+t1VCCFkRlBN5D2p7wFeiIigH8h2Uwq11RVDj5zkohXuNKIIaPb9BSXxrTVCj5wUosd/N9DrWQYGK3yfo1lsc3YrTRNgti70AJXYz7T7rgEDFE3RuEt88JcJ609gHUPtZh44BgXrDE71H1zLRQ6kPoGZd+gwIFJ5pEl0TfTR9OVAzgvqlXkGJkEBVQhIUQQE7O6CqNaAIiqCMF+V3T4AiKIIy/mxw9wQoggoeFMRel9PxN0+AIqjgQT1U3lvj3qOVdk+AIqhLiWgiqKZ2KLqeAEVQ51LRQ5nnoMpK4Jq2J0B1B1U4mCGoPBHWS3LfQZ1J/QVwUKW2J0ARVFOe2eaU5l5sDj9WtqfvCVAEdS3I8ZWHzD0BiqAuEVSTBU+AIqhzBNVkwxOgCKopTFDyVMxNWkm0JAkqioIEJYu5YUW7KIKKggS1mht3QluSoHoHtUQvGYGam1egLUVQvYOqMXibAUDNCeqWlVMvWezRNfsENQioODE736IHqlhsMGTLelEQ1CigMmFU+gMoByOoQUAJs6YERVA2QQmCIiiCulS4CGpRLzFkmwVB2QJ1Mve0sgvKjbdhgtJomK0Xc1AbDF5NUJZAQf4x43SSMAPlxI1ZS4LS7PnxFQXNXgEULINKhgDlxGITIKgBQKXCqMzfrReC+sqpUy8fuQ4oNxabAEG15dCpl480d3ceaklQenk5voIRIqj/EZRmrwfKhUFEgrIOaiuN2j4Lyo1BRIJqr/t/yo91aaegt17+tXd3q20DQRSAp3EcXBDO/19JnKSBtuzZhrBLEIK66fs/VUNsCp7asSzG+Eia71YwF8tB7M5Y63e9DNTT1OA2cttAUfwQ0QO1VKMrEf/sPFAEWhEohs1mUJbeRm7rVwgeqGU+baYdX73EJX7aeg6hf4Eq7sfR1qRoxeglavaBeg2hd4EqxtHcuMAiis1mUKbxf/YvqN4FahK34B6Eam3K7XdQfQtU3IYxCK1vG0xftvB+8kBZAKGg6HvKp7+fwutbm9vEy/NrmPFA9SZQBKClKsfNlQl2ZBCakLlxbMADZQRKyrGRnGBGjkMDQ5m7j1swAaFACEoZG6pgpuFfxG6zbfBYgFAgBCU2lWFGZG8YNjM43pN/ikm09fijaOVXL7sAJTYGM8IIWqpytFQmXVs/90B1OVApR2M56dr6eRsDlWMTPQxUGc1Va2pXUPYDnSMoVWyoxExfAhXt5TW1M5RhoDPEApK2ASMocQvW1YbyLdAZQUtl3FyuEuY8UKtZB+p6EMjsU56GhRGUHO2tqw1FHgKZkQeqLihVNFeuqV1CEbkLVM45b6kRRljA0TYQkfNA5I702iNhBC2VtnGqkq6tny9dqBFN72DwwHqPljACIXk3Gh6Fndsffr8mXycyICSEQEgYgZAQAiFhBEJCCMrKIXqZUEtH18kDZXwarjtc6eo6eaDsh+gVaujqOnmg7EdUGTV0dZ3kM+gcCiEo8QOoobOBOgGdEyGEBR6olS5A50AIQckeqOWuvoDMjTCCUsWVStTQ2UDJJchQvqC8bVDfKaicCSVoqVwxDO95Y/PNGYicCicQElYHNL2Dr5dCCoSE18HtIXbu5vbiSliBkLj2AiFx7QVC4toLhMS1FwiJay+agzD5EN35EN3V5UN0R8uH6E58iO6I+RDdifgQ3fHyIbqb6egQ/S9Ih7uHrNmwgAAAAABJRU5ErkJggg==) no-repeat 100% -19px;background-size:296px;display:inline-block}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-beta .monsterinsights-pp-theme-icon{background-position-x:-74px;background-position-y:-6px;height:66px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-charlie .monsterinsights-pp-theme-icon{background-position-x:-148px;height:50px;background-position-y:-14px}.monsterinsights-pp-theme-picker.monsterinsights-pp-theme-picker-popular_posts_products_theme .monsterinsights-pp-theme-delta .monsterinsights-pp-theme-icon{height:78px;background-position:-222px 0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-preview{position:relative}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls{margin-left:22px;margin-bottom:20px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls input[type=number]{width:40px;height:40px;border-radius:5px;border:1px solid #b9c9d7;padding:2px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-inputs{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label{font-size:14px;width:auto;margin-left:9px;color:#393f4c;margin-bottom:8px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label span{display:block}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-pp-control-label{margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input{border-radius:0 5px 5px 0;text-align:center;-moz-appearance:textfield}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-inner-spin-button,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;font-size:10px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow{background:#f9fbff;padding:3px 5px;border:1px solid #b9c9d7;border-right-width:0;cursor:pointer}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:focus,.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow:hover{background:#fff}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up{border-radius:5px 0 0 0;border-bottom:0;padding-bottom:4px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-up i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-arrows .monsterinsights-number-input-arrow.monsterinsights-number-input-arrow-down{border-radius:0 0 0 5px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls label .monsterinsights-number-input-no-arrows .monsterinsights-number-input-unit{font-size:14px;color:#444;margin-right:5px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-controls-description{font-weight:700}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:9px}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline .monsterinsights-colorpicker-preview span{border-top-left-radius:0;border-bottom-left-radius:0;border-left-width:0}.monsterinsights-admin-page .monsterinsights-pp-inline-theme-controls .monsterinsights-pp-color-input-inline input[type=text]{border-top-right-radius:0;border-bottom-right-radius:0;max-width:108px}.monsterinsights-admin-page .monsterinsights-color-picker{position:relative;max-width:40px}.monsterinsights-admin-page .monsterinsights-color-picker .monsterinsights-colorpicker-picker{bottom:-120px;margin-right:10px;right:100%}.monsterinsights-admin-page .monsterinsights-pp-posts-picker .multiselect__input{border:none}.monsterinsights-admin-page .monsterinsights-popular-posts .monsterinsights-settings-block .monsterinsights-settings-input-select+p{margin-top:25px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button{background:#fff;color:#444;border-bottom-width:1px;border-color:#b9c9d7;border-radius:0;line-height:18px;border-left:0;margin:0}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:hover{background:#509fe2;color:#fff;border-color:#b9c9d7}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:focus{z-index:10;position:relative;border-radius:0;outline:none}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}.monsterinsights-admin-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval{background:#509fe2;color:#fff;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts{padding-top:15px;cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-notice-no-posts span{color:#d83638;font-weight:400}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta{width:144px;height:100px;padding:0}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-beta:after{background-image:url(../img/theme-preview-beta.png)}.monsterinsights-inline-popular-posts-image{width:128px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;margin-left:16px}.monsterinsights-inline-popular-posts-widget{margin-bottom:24px}.monsterinsights-inline-popular-posts-alpha{padding:24px 27px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1;display:block;margin-bottom:6px}.monsterinsights-inline-popular-posts-alpha .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:1;text-decoration:none}.monsterinsights-inline-popular-posts-beta{padding:14px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border:1px solid #d6e2ed}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-text{margin-right:19px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-beta .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-border{display:block;border-bottom:1px solid;margin:16px 0}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list{list-style:disc inside none}.monsterinsights-inline-popular-posts-charlie .monsterinsights-inline-popular-posts-list li{font-style:normal;font-weight:400;font-size:16px;line-height:130%}.monsterinsights-inline-popular-posts-delta{border:1px solid #d6e2ed;padding:16px 18px;border-radius:5px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-icon{margin-left:8px}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;vertical-align:top}.monsterinsights-inline-popular-posts-delta .monsterinsights-inline-popular-posts-title{display:block;font-weight:700;font-size:18px;line-height:1;text-decoration:none;margin-top:4px}.monsterinsights-inline-popular-posts-echo{padding:13px 16px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-icon{margin-left:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;margin-left:8px}.monsterinsights-inline-popular-posts-echo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:130%;text-decoration:none}.monsterinsights-inline-popular-posts-foxtrot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;display:block}.monsterinsights-inline-popular-posts-foxtrot .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image{padding-top:57%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image:after{background-image:url(../img/theme-preview-image.jpg)}.monsterinsights-inline-popular-posts-golf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;float:right;background:#fff;padding-left:20px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;clear:both;margin-top:14px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border{display:block;border-width:2px 0 0;border-style:solid;margin-top:10px}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-border-2{border-top:1px solid #e2e4e9;margin-top:20px;display:block}.monsterinsights-inline-popular-posts-golf .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-icon{margin-left:10px;vertical-align:middle}.monsterinsights-inline-popular-posts-hotel .monsterinsights-inline-popular-posts-title{font-style:normal;font-weight:700;font-size:18px;text-decoration:none;line-height:130%}.monsterinsights-inline-popular-posts-india{padding:13px 16px 13px 12px;position:relative}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-border{border-width:0 4px 0 0;border-style:solid;position:absolute;right:0;top:0;bottom:0}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-title{font-size:14px;text-decoration:none;font-weight:700}.monsterinsights-inline-popular-posts-india .monsterinsights-inline-popular-posts-label{font-size:14px;text-decoration:none;font-weight:700;margin-left:4px}.monsterinsights-inline-popular-posts-juliett{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-border{border-width:1px 0 0;border-style:solid;position:absolute;right:0;top:0;left:0}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-title{font-size:18px;text-decoration:none;font-weight:700;max-width:400px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;display:block;line-height:125%}.monsterinsights-inline-popular-posts-juliett .monsterinsights-inline-popular-posts-label{font-size:14px;line-height:18px;text-decoration:none;font-weight:700;padding:4px 12px;position:absolute;left:0;top:0}.monsterinsights-inline-popular-posts-kilo{position:relative;padding:30px 0}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none;display:block;clear:both;margin-top:6px}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-title:before{width:100%}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border,.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{display:block;position:absolute;right:0;left:0;top:0;border-bottom:4px dashed #e2e4e9}.monsterinsights-inline-popular-posts-kilo .monsterinsights-inline-popular-posts-border-2{bottom:0;top:auto}.monsterinsights-inline-popular-posts-lima{padding:16px 19px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-text{margin-right:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:120%;text-decoration:none;display:block;max-width:420px;margin-top:7px}.monsterinsights-inline-popular-posts-lima .monsterinsights-inline-popular-posts-image{width:144px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-left:0;margin-right:20px}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2{padding-top:69%}.monsterinsights-bg-img.monsterinsights-pp-theme-preview-image-2:after{background-image:url(../img/theme-preview-image-2.jpg)}.monsterinsights-inline-popular-posts-mike{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none;display:block;max-width:380px}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-label{position:absolute;z-index:10;right:0;top:0;font-size:14px;font-weight:700;padding:5px 8px;line-height:1.2}.monsterinsights-inline-popular-posts-mike .monsterinsights-inline-popular-posts-image{margin-left:20px}.monsterinsights-inline-popular-posts-november{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:5px;border-width:1px;border-style:solid;padding:16px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-text{width:100%}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;margin-top:4px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-label{display:block;font-size:16px;font-weight:700}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-image{margin-left:20px}.monsterinsights-inline-popular-posts-november .monsterinsights-inline-popular-posts-icon{width:32px;height:32px;display:inline-block;border-radius:50%;text-align:center;float:right;line-height:38px;margin-left:17px;margin-top:4px}.monsterinsights-sharedcount-status{font-size:12px;color:#777;margin-top:12px;line-height:1.5}.monsterinsights-pp-manual-placement-options{margin-right:-12px;margin-left:-12px}.monsterinsights-pp-manual-placement-option{width:150px;height:150px;border-radius:10px;border:1px solid #b7c9d9;font-size:14px;line-height:17px;color:#444;text-align:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;cursor:pointer;margin-right:12px;margin-left:12px;vertical-align:top;max-width:calc(50% - 24px)}.monsterinsights-pp-manual-placement-option,.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-manual-placement-option .monsterinsights-pp-manual-placement-options-icon{min-height:40px;margin-bottom:23px}.monsterinsights-pp-manual-placement-option.monsterinsights-pp-manual-placement-option-active{border:3px solid #338eef;font-weight:700;background:#f1f7fe}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:calc(50% - 12px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps .monsterinsights-button{margin-top:10px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps input[type=text]{border-color:#b7c9d9;color:#444}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps{width:100%;margin-top:30px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-manual-placement-content-steps li b{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:calc(50% - 12px);border-radius:10px;background:-webkit-gradient(linear,right top,right bottom,color-stop(17.51%,rgba(51,142,239,.6)),color-stop(74.11%,#0e5caf));background:linear-gradient(-180deg,rgba(51,142,239,.6) 17.51%,#0e5caf 74.11%);color:#fff;position:relative;height:198px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;text-align:center}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block>div{position:absolute;bottom:0;padding:20px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-welcome-overlay{position:fixed;bottom:0}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block .monsterinsights-pp-video-block-icon{margin-bottom:30px;display:inline-block}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block p{color:#fff;margin:0;text-align:right}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-pp-manual-placement-content-columns .monsterinsights-pp-video-block{width:100%}}.monsterinsights-settings-content-pp-inline input[type=number]{max-width:80px}.monsterinsights-settings-content-pp-inline .monsterinsights-collapsible-content .settings-input-text{margin-bottom:20px}.monsterinsights-inline-desc{margin-right:5px}.monsterinsights-widget-popular-posts-widget{margin-bottom:24px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-alpha .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-beta .monsterinsights-widget-popular-posts-list li{display:inline-block;background:#fff;border-radius:3px;margin:0 6px 30px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-right:4px solid #1ec185;padding-right:16px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-charlie .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:24px;background:#f0f2f4;border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:4px solid #338eef}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px 0 0;margin:0 6px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700;border-top:2px solid #d3d7de}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-foxtrot .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list li{display:inline-block;padding:16px;background:#f0f2f4;border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#444;font-weight:700}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-label{font-weight:400;font-size:12px;display:inline-block;padding:4px 8px;border-radius:3px;line-height:1;margin-bottom:14px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-golf .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-title{display:block}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list li{display:inline-block;margin:0 6px 24px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;font-weight:700;position:relative}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-text{position:absolute;bottom:0;padding:0 14px 14px;right:0;z-index:15}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-widget-popular-posts-list .monsterinsights-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img{margin-bottom:0;padding-top:50%;width:100%}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:after{z-index:5;border-radius:5px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-hotel .monsterinsights-bg-img:before{background:-webkit-gradient(linear,right bottom,right top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;right:0;left:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-pp-products-theme-preview-output,.monsterinsights-pp-widget-theme-preview-output{margin-top:28px}.monsterinsights-dummy-text{padding-left:24px}.monsterinsights-dummy-text p{margin-bottom:40px;line-height:180%}.monsterinsights-pp-widget-controls,.monsterinsights-pp-widget-theme-preview{position:relative}.monsterinsights-pp-widget-controls .monsterinsights-settings-input-select-simple select{min-width:50px}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-1 .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:calc(33.33333% - 12px)}@media (max-width:767px){.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-2 .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-wide .monsterinsights-widget-popular-posts-columns-3 .monsterinsights-widget-popular-posts-list li{width:100%;margin-right:0;margin-left:0}}.monsterinsights-pp-widget-theme-preview-render h3{font-size:14px;margin-top:14px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio .monsterinsights-styled-radio{display:none}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-settings-input-radio>span{display:inline-block;margin-left:8px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column{display:-webkit-box;display:-ms-flexbox;display:flex;border:1px solid #b7c9d9;border-radius:5px;width:40px;height:40px;padding:10px 5px;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column>span{background:#99a1b2;display:inline-block;width:8px;height:8px;border-radius:1px;margin-bottom:2px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-two>span{width:12px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-wide-column.monsterinsights-wide-column-one>span{width:100%}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column{border:2px solid #338eef;background:#ecf4fe;padding:9px 4px}.monsterinsights-admin-page .monsterinsights-wide-column-options .monsterinsights-styled-radio-label-checked .monsterinsights-wide-column>span{background:#338eef}.monsterinsights-inline-checkboxes .monsterinsights-settings-input-checkbox{display:inline-block;margin-left:32px}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-delta .monsterinsights-bg-img{width:121px;height:121px;padding:0;float:right;margin-left:16px;margin-bottom:12px}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-1:after{background-image:url(../img/theme-widget-1.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-2:after{background-image:url(../img/theme-widget-2.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-3:after{background-image:url(../img/theme-widget-3.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-4:after{background-image:url(../img/theme-widget-4.jpg)}.monsterinsights-widget-popular-posts-widget.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-5:after{background-image:url(../img/theme-widget-5.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-6:after{background-image:url(../img/theme-widget-6.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-7:after{background-image:url(../img/theme-widget-7.jpg)}.monsterinsights-widget-popular-posts-widget .monsterinsights-bg-img.monsterinsights-pp-theme-widget-8:after{background-image:url(../img/theme-widget-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-bg-img{width:80px;height:80px;padding:0;float:right;margin-left:18px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-1:after{background-image:url(data:image/jpeg;base64,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)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-2:after{background-image:url(../img/theme-products-2.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-3:after{background-image:url(../img/theme-products-3.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-4:after{background-image:url(../img/theme-products-4.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-5:after{background-image:url(../img/theme-products-5.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-6:after{background-image:url(../img/theme-products-6.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-7:after{background-image:url(../img/theme-products-7.jpg)}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8{padding-top:73%}.monsterinsights-widget-popular-posts-products .monsterinsights-bg-img.monsterinsights-pp-theme-products-8:after{background-image:url(../img/theme-products-8.jpg)}.monsterinsights-widget-popular-posts-products.monsterinsights-widget-popular-posts-echo .monsterinsights-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.monsterinsights-input-text-small{margin-top:24px}.monsterinsights-input-text-small .settings-input-text-input{max-width:350px}.monsterinsights-input-text-extra-small .settings-input-text{display:inline-block;margin-left:5px}.monsterinsights-input-text-extra-small .settings-input-text-input{max-width:80px}.monsterinsights-widget-popular-posts-products{margin-bottom:24px}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating{display:block}.monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-rating svg{margin-left:2px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list{margin:0 -12px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-list li{display:inline-block;margin:0 12px;width:calc(50% - 24px);vertical-align:top;font-size:16px;border-top:1px solid #d3d7de;padding-top:15px;padding-bottom:30px;font-weight:700;line-height:1.1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-alpha .monsterinsights-products-popular-posts-price{display:block;margin:10px 0 7px;font-weight:400}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-list li,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:10px 12px;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:3px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-price,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{display:block;font-weight:400;position:absolute;left:12px;bottom:10px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-title,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{margin-top:12px;display:block}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-beta .monsterinsights-products-popular-posts-rating,.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:13px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-list li{display:inline-block;width:calc(50% - 12px);vertical-align:top;font-size:16px;padding:0;font-weight:700;line-height:1.1;margin:0 6px 24px;border-radius:5px;position:relative}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-price{display:block;font-weight:400;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:4px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-text{position:absolute;bottom:0;z-index:10;right:0;left:0;padding:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-products-popular-posts-rating{margin-top:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img{padding-top:74%}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-charlie .monsterinsights-bg-img:before{background:-webkit-gradient(linear,right bottom,right top,color-stop(-25.16%,#000),to(rgba(0,0,0,.1)));background:linear-gradient(0deg,#000 -25.16%,rgba(0,0,0,.1));content:"";top:0;bottom:0;right:0;left:0;position:absolute;z-index:10;border-radius:5px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{position:relative;margin-top:8px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list{margin:0 -6px}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-list li{padding:0}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-price{left:auto;bottom:auto;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-rating{margin-top:8px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.monsterinsights-widget-popular-posts-products.monsterinsights-products-popular-posts-delta .monsterinsights-products-popular-posts-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-1 .monsterinsights-products-popular-posts-list li{width:100%;margin-right:0;margin-left:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:calc(33.33333% - 24px)}@media (max-width:767px){.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-2 .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-wide .monsterinsights-products-popular-posts-columns-3 .monsterinsights-products-popular-posts-list li{width:100%;margin-right:0;margin-left:0}}.monsterinsights-pp-blurred{-webkit-filter:blur(3px);filter:blur(3px)}.monsterinsights-pp-upgrade-overlay{position:absolute;top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);background:#fff;padding:8px 12px;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);border-radius:3px;z-index:10;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-upgrade-overlay>span{margin:0 10px}.monsterinsights-pp-theme-controls-holder{position:relative}.monsterinsights-pro-pill{font-style:normal;font-weight:700;font-size:11px;background:#1ec185;border-radius:5px;color:#fff;padding:3px 8px;margin-right:8px}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell{position:relative;width:750px;height:815px;max-width:100%}.monsterinsights-bg-img.monsterinsights-popular-posts-products-upsell:after{background-image:url(../img/popular-products-bg.jpg)}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser{padding-top:83%;-webkit-filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1));filter:drop-shadow(0 61.7368px 144.053px rgba(0,0,0,.1))}.monsterinsights-bg-img.monsterinsights-popular-products-upsell-browser:after{background-image:url(../img/popular-products-browser.jpg)}.monsterinsights-popular-posts-products-upsell{margin-top:20px}.monsterinsights-popular-posts-products-upsell .monsterinsights-popular-products-upsell-window{padding:48px 50px 0;text-align:center;position:absolute;width:600px;top:62px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);z-index:1;background:#fff;border:1px solid #d6e2ed;-webkit-box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1);box-shadow:0 5px 15px rgba(0,0,0,.05),0 15px 35px rgba(0,0,0,.1)}.monsterinsights-popular-posts-products-upsell h2{margin-top:0;font-size:22px;line-height:1.2}.monsterinsights-popular-posts-products-upsell p{font-size:16px;line-height:1.2;color:#626d83;margin-bottom:32px}.monsterinsights-popular-posts-products-upsell .monsterinsights-button-text{margin:28px 0;color:#99a1b2;font-size:16px;display:inline-block}.monsterinsights-popular-posts-widget-category{margin-top:25px}.monsterinsights-popular-posts-widget-category.monsterinsights-popular-posts-widget-category-lite .monsterinsights-settings-input-select{pointer-events:none;opacity:.6}.monsterinsights-popular-posts-products-no-woocommerce{margin-top:72px}.monsterinsights-popular-posts-products-no-woocommerce .monsterinsights-settings-block{opacity:.6;pointer-events:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice{position:absolute;top:-72px;right:0;left:0;padding:16px 24px;background:#d7930f;color:#fff;font-size:12px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a{color:#fff;text-decoration:underline;font-weight:700}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:focus,.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice a:hover{text-decoration:none}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice span{margin-right:8px}.monsterinsights-admin-page .monsterinsights-popular-products-woocommerce-notice svg{vertical-align:middle}.monsterinsights-popular-posts-products-top{position:relative}.monsterinsights-pp-placement-options-accordion{padding-right:30px}.monsterinsights-pp-accordion-item-title{border-bottom:1px solid #d6e2ed;padding:24px 0;position:relative}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-toggle *{cursor:pointer}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible{position:absolute;left:0;top:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights-pp-accordion-item-title .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active{border-bottom:0}.monsterinsights-pp-accordion-item-title.monsterinsights-pp-accordion-item-title-active .monsterinsights-settings-input-toggle-collapsible i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top{margin-bottom:8px;font-weight:700;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top>span{margin-left:8px;margin-right:8px}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-top .monsterinsights-settings-input-checkbox{display:inline-block}.monsterinsights-pp-accordion-item-title .monsterinsights-pp-accordion-item-title-bottom{color:#777;padding-left:45px}.monsterinsights-pp-accordion-item-content{border-bottom:1px solid #d6e2ed;padding:0 0 24px}.monsterinsights-dummy-text p,.monsterinsights-pp-inline-theme-preview-render>p{opacity:.5}.monsterinsights-pp-products-theme-preview-output-narrow,.monsterinsights-pp-widget-theme-preview-output-narrow{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-dummy-text,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-dummy-text{width:60%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget{width:40%}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list{margin:0}.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-products-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-products .monsterinsights-widget-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-products-popular-posts-list li,.monsterinsights-pp-widget-theme-preview-output-narrow .monsterinsights-widget-popular-posts-widget .monsterinsights-widget-popular-posts-list li{width:100%}.monsterinsights-dark[data-v-0fc0f471]{display:block}.monsterinsights-reset-default[data-v-0fc0f471]{margin-right:5px}.saturation{position:relative;cursor:pointer}.saturation .slide{position:absolute;right:100px;top:0;width:10px;height:10px;border-radius:50%;border:1px solid #fff;-webkit-box-shadow:0 0 1px 1px rgba(0,0,0,.3);box-shadow:0 0 1px 1px rgba(0,0,0,.3);pointer-events:none}.hue{position:relative;margin-right:8px;cursor:pointer}.hue .slide{position:absolute;right:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.color-alpha{position:relative;margin-right:8px;cursor:pointer}.color-alpha .slide{position:absolute;right:0;top:100px;width:100%;height:4px;background:#fff;-webkit-box-shadow:0 0 1px 0 rgba(0,0,0,.3);box-shadow:0 0 1px 0 rgba(0,0,0,.3);pointer-events:none}.sucker{width:30px;fill:#9099a4;background:#2e333a;cursor:pointer;-webkit-transition:all .3s;transition:all .3s}.sucker.active,.sucker:hover{fill:#1593ff}.color-type{margin-top:8px;font-size:12px}.color-type,.color-type .name{display:-webkit-box;display:-ms-flexbox;display:flex}.color-type .name{width:60px;height:30px;float:right;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#999;background:#252930}.color-type .value{-webkit-box-flex:1;-ms-flex:1;flex:1;height:30px;min-width:100px;padding:0 12px;border:0;color:#fff;background:#2e333a;-webkit-box-sizing:border-box;box-sizing:border-box}.colors{padding:0;margin:0}.colors.history{margin-top:10px;border-top:1px solid #2e333a}.colors .item{position:relative;width:16px;height:16px;margin:10px 10px 0 0;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;vertical-align:top;display:inline-block;-webkit-transition:all .1s;transition:all .1s;cursor:pointer}.colors .item:nth-child(8n+1){margin-right:0}.colors .item:hover{-webkit-transform:scale(1.4);-ms-transform:scale(1.4);transform:scale(1.4)}.colors .item .alpha{height:100%;border-radius:4px}.colors .item .color{position:absolute;right:0;top:0;width:100%;height:100%;border-radius:3px}.hu-color-picker{padding:10px;background:#1d2024;border-radius:4px;-webkit-box-shadow:0 0 16px 0 rgba(0,0,0,.16);box-shadow:0 0 16px 0 rgba(0,0,0,.16);z-index:1}.hu-color-picker.light{background:#f7f8f9}.hu-color-picker.light .color-show .sucker{background:#eceef0}.hu-color-picker.light .color-type .name{background:#e7e8e9}.hu-color-picker.light .color-type .value{color:#666;background:#eceef0}.hu-color-picker.light .colors.history{border-top:1px solid #eee}.hu-color-picker canvas{vertical-align:top}.hu-color-picker .color-set,.hu-color-picker .color-show{display:-webkit-box;display:-ms-flexbox;display:flex}.hu-color-picker .color-show{margin-top:8px}.monsterinsights-rotate-loader{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border-color:rgba(0,0,0,0) #3085d6;border-style:solid;border-width:.25em;background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}button[data-v-7b5d62d6]{margin-top:3px}.monsterinsights-dark[data-v-3f0b0409]{display:block}fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;left:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;right:50%;margin:-8px -8px 0 0;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__loading-enter-active,.multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:right;color:#35495e}.multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{opacity:.6}.multiselect--active{z-index:1}.multiselect--active:not(.multiselect--above) .multiselect__current,.multiselect--active:not(.multiselect--above) .multiselect__input,.multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-right-radius:0;border-bottom-left-radius:0}.multiselect--active .multiselect__select{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.multiselect--above.multiselect--active .multiselect__current,.multiselect--above.multiselect--active .multiselect__input,.multiselect--above.multiselect--active .multiselect__tags{border-top-right-radius:0;border-top-left-radius:0}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 5px 0 0;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.multiselect__input:-ms-input-placeholder{color:#35495e}.multiselect__input::-webkit-input-placeholder{color:#35495e}.multiselect__input::-moz-placeholder{color:#35495e}.multiselect__input::-ms-input-placeholder{color:#35495e}.multiselect__input::placeholder{color:#35495e}.multiselect__tag~.multiselect__input,.multiselect__tag~.multiselect__single{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-right:5px;margin-bottom:8px}.multiselect__tags-wrap{display:inline}.multiselect__tags{min-height:40px;display:block;padding:9px 8px 0 40px;border-radius:5px;border:1px solid #b8c9d8;background:#fff;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:2px 20px 2px 8px;border-radius:5px;margin-left:10px;color:#393f4c;line-height:1.2;background:#f3f6ff;margin-bottom:5px;overflow:hidden;max-width:100%;text-overflow:ellipsis;border:1px solid #b7c9d9;font-size:14px}.multiselect__tag.monsterinsights-tag-forced{padding-right:8px}.multiselect__tag.monsterinsights-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;right:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:22px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\D7";color:#b7c9d8;font-size:18px;margin-top:-4px;display:block}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#444}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 12px 0 30px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{display:none}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #b7c9d9;border-top:none;border-bottom-right-radius:5px;border-bottom-left-radius:5px;z-index:1;-webkit-overflow-scrolling:touch}.multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:5px;border-top-left-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.multiselect__content::webkit-scrollbar{display:none}.multiselect__element{display:block}.multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.multiselect__option:after{top:0;left:0;position:absolute;line-height:40px;padding-left:12px;padding-right:20px;font-size:13px}.multiselect__option--highlight{background:#acbdc9;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#acbdc9;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect--disabled{background:#ededed;pointer-events:none}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.multiselect__option--group{background:#ededed;color:#35495e}.multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.multiselect__option--group-selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect-enter-active,.multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.multiselect-enter,.multiselect-leave-active{opacity:0}.multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}[dir=rtl] .multiselect{text-align:left}[dir=rtl] .multiselect__select{left:auto;right:1px}[dir=rtl] .multiselect__tags{padding:8px 40px 0 8px}[dir=rtl] .multiselect__content{text-align:left}[dir=rtl] .multiselect__option:after{left:auto;right:0}[dir=rtl] .multiselect__clear{left:auto;right:12px}[dir=rtl] .multiselect__spinner{left:auto;right:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}.update-nag{display:none}.monsterinsights-admin-page{min-height:100vh;font-size:14px}.monsterinsights-admin-page a{color:#509fe2}.monsterinsights-admin-page a:focus,.monsterinsights-admin-page a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.monsterinsights-admin-page .monsterinsights-settings-content{margin-right:auto;margin-left:auto;max-width:750px}@media (min-width:783px) and (max-width:790px){.monsterinsights-admin-page .monsterinsights-settings-content{padding:0 10px}}.monsterinsights-admin-page input.monsterinsights-has-error{border-color:red}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;color:#fff;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page input[type=number],.monsterinsights-admin-page input[type=text],.monsterinsights-admin-page textarea{border:1px solid #b7c9d9;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#444}.monsterinsights-admin-page input[type=number]::-webkit-input-placeholder,.monsterinsights-admin-page input[type=text]::-webkit-input-placeholder,.monsterinsights-admin-page textarea::-webkit-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-moz-placeholder,.monsterinsights-admin-page input[type=number]::-moz-placeholder,.monsterinsights-admin-page input[type=text]:-moz-placeholder,.monsterinsights-admin-page input[type=text]::-moz-placeholder,.monsterinsights-admin-page textarea:-moz-placeholder,.monsterinsights-admin-page textarea::-moz-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-ms-input-placeholder,.monsterinsights-admin-page input[type=text]:-ms-input-placeholder,.monsterinsights-admin-page textarea:-ms-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number].monsterinsights-has-error,.monsterinsights-admin-page input[type=text].monsterinsights-has-error,.monsterinsights-admin-page textarea.monsterinsights-has-error{border-color:#d83638}.monsterinsights-admin-page input[type=text]:-moz-read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page input[type=text]:read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page textarea{height:150px}.monsterinsights-admin-page label{width:100%;font-size:14px;display:inline-block;color:#777;margin:2px 0 17px}.monsterinsights-admin-page .inline-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights-admin-page .inline-field input{width:100%}.monsterinsights-admin-page .inline-field .monsterinsights-button{margin-right:10px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-admin-page .monsterinsights-error{margin:18px 0 0;color:#d83638;cursor:default}.monsterinsights-admin-page .monsterinsights-error i{margin-left:10px}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter-active,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-active{-webkit-transition:opacity 1s;transition:opacity 1s}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to{opacity:0}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter .monsterinsights-styled-checkbox,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to .monsterinsights-styled-checkbox{background-color:#509fe2!important}.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-enter .monsterinsights-styled-checkbox:after,.monsterinsights-admin-page .monsterinsights-tracking-mode-settings-leave-to .monsterinsights-styled-checkbox:after{left:2px!important;right:auto!important}.monsterinsights-admin-page .monsterinsights-license-type-text{color:#777;font-weight:700;margin-top:16px}.monsterinsights-admin-page .monsterinsights-license-type-text a{color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-dark{color:#444;text-transform:capitalize;font-weight:700}.monsterinsights-admin-page .monsterinsights-settings-block{background:#fff;border:1px solid #d6e2ed;margin:25px 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block{margin-right:10px;margin-left:10px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{border-bottom:1px solid #d6e2ed;padding:16px 25px;font-weight:500;font-size:14px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{padding-right:15px;padding-left:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title:before{display:none}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding:25px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding-right:15px;padding-left:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p{font-size:14px;color:#777;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p a{color:inherit}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding:25px 22px 25px 25px;margin:-25px;border-right:3px solid #64bfa5}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding-right:15px;padding-left:15px;margin:-25px -15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade.monsterinsights-settings-addon-disabled{border-right-color:#f5c953;padding-top:15px;padding-bottom:15px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span{display:block;margin:2px 0 17px}.monsterinsights-admin-page .monsterinsights-settings-input-radio>span:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio input[type=radio]{opacity:0;position:absolute}.monsterinsights-admin-page .monsterinsights-settings-input-radio label{color:#444;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio label>span{vertical-align:middle;font-weight:500}.monsterinsights-admin-page .monsterinsights-settings-input-radio label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled{pointer-events:none}.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-settings-radio-text,.monsterinsights-admin-page .monsterinsights-settings-input-radio label.monsterinsights-styled-radio-label-disabled .monsterinsights-styled-radio{opacity:.6}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-left:16px}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked{border-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked:after{right:2px;left:2px;top:2px;bottom:2px;position:absolute;content:"";background:#509fe2;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label{color:#444;font-size:14px;margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux{cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox{background-color:#dee5e9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#b9d8f3}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label input{display:none}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label>span{vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox{width:27px;height:18px;position:relative;display:inline-block;border-radius:10px;margin-left:9px;background-color:#acbdc9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked:after{left:2px;right:auto}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox:after{right:2px;top:2px;bottom:2px;width:14px;position:absolute;content:"";background:#fff;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-info{color:#b6c9da;margin-right:10px;cursor:help}.monsterinsights-admin-page .monsterinsights-settings-input-repeater .monsterinsights-error{margin-top:0;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-labels label{color:#393f4c;font-weight:700;margin-bottom:6px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row>span{width:100%;margin-left:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input[type=number]{width:30%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{width:70%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row.monsterinsights-disabled-row{opacity:.5}.monsterinsights-admin-page .monsterinsights-dimensions-count{color:#777;font-style:italic;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label{margin-bottom:0;width:auto}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-button{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-error{margin:0 0 20px}.monsterinsights-admin-page .monsterinsights-settings-input-select .monsterinsights-dark{margin-bottom:5px}.monsterinsights-admin-page .monsterinsights-settings-input-select label{margin-top:-4px}.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-right:30px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-right:15px}}.monsterinsights-admin-page .monsterinsights-collapsible>p{margin-top:0}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible{color:#b7c9d9;float:left;font-size:22px;padding-right:20px}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:focus{outline:none}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible i{cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-dark{display:block;margin-bottom:9px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate p{margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-ua,.monsterinsights-admin-page .monsterinsights-settings-input-authenticate button{margin-top:14px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-manual-ua+.monsterinsights-error{margin-top:15px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions{margin-top:18px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-left:20px;margin-top:0}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-bottom:10px}}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-settings-input-toggle-collapsible{margin-top:12px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-paragraph{padding-top:5px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text{color:#999797;font-size:12px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text:hover{text-decoration:underline}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-upgrade-icon{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-settings-addon-message{margin-left:25px;width:100%}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-button{font-size:12px;padding:6px 16px}.monsterinsights-admin-page .monsterinsights-icon-warning{width:48px}.monsterinsights-admin-page .monsterinsights-icon-warning:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAAAllBMVEUAAADV4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u3V4u2KpLj///+etMW0xdKqvs6ascPG1eKww9PO3OmVrb+LpbnR3+qRqr3U4ezA0d60x9atwdGPqLyNp7rT4Oy8ztzBztmiuMnx9PfJ2OXW4ObL2ua3ytilu8v7/P31+PnT3eXC0t/r8PPo7fHe5uvR2+OftscAs3DjAAAAC3RSTlMABtDHbvQb+ctt0f3LxK8AAAIoSURBVGje7drZbqMwFIBh05Au4wPBYPa1TPak2/u/3NAME6lzSMHGvqjk/zJI/sTiSLZMCLHsxZJqaLmwLdJ1f0e1dXdPiIXGVypY5Ilq7YksqNYW5IFq7YFQzRnAAAYwgAEMIAxwP2t2TbZOKWo+wHdtCH0VK3zFQPYRwdfCgqsDMgYDVUWsBuAt3ChpVABZCbfbx7OBPILvYnwmUMBI4XYWEMBoIZ8BNDAhVksD6wqm5MkCKf78g83bOUS/ZpJAjkZ6d7qOLnoNtRQQowmwci69ROjGpAD8Bb05f0O3UMYSQF0i4LUHPHQllwAaQJ16IMSTQQJoMeAenM/eAbcWBtIKcN6xG38zdCUXBnwYqvRWLgzVCgM5CBUKAx6giudLq0GhFgXwO2ZOX2fjuCiAH7X7Dxi8hbVuwJ8PJEelQAtYYL8VPiIPBvoGiEWBXAxIqChwFgNcYSCOhIBAGKCuEOCLAzs0yPPmcAFeTwy/AmEAPyPmXDuhvykJgO7RTL62ga9FWxlgHU0GPCoO4LlWvjh9h/9ec8XlgDiBaeVUDqAZTMpNZQFawIQSTqWBtIXRKn/OAqT+GB3/PG8Jle5Hno8/e5UZRHA7tlWwTvZDuFFUpEpW+nVQwlDMV7ZXEQ8QbqZ0t6Vu9glci1iw1bBfxJs88Dwv2PkppT9zx8sAnxnAAAag1AAGEE/3oYGl/mMPNtWarfnoyS9L++GZLst+1HP859G2CPkDRZCgO+Q/ERIAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-bg-img{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-network-message{width:100%}.monsterinsights-admin-page .monsterinsights-undo-redo{float:left;margin-top:16px}.monsterinsights-admin-page .monsterinsights-undo-redo button{border:none;background:rgba(0,0,0,0);color:#509fe2;padding:0;margin-right:5px}.monsterinsights-admin-page #monsterinsights-license-key-valid{-webkit-text-security:disc;text-security:disc;-moz-text-security:disc;font-family:text-security-disc;font-size:25px;line-height:1.2;color:#b7c9d9;padding-top:7px}.monsterinsights-admin-page #monsterinsights-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-moz-placeholder,.monsterinsights-admin-page #monsterinsights-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-first-time-notice .monsterinsights-notice-button{margin-top:20px}.monsterinsights-settings-blur .monsterinsights-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.monsterinsights-settings-blur.monsterinsights-path-general .monsterinsights-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;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-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate .monsterinsights-button{margin:0 20px}.monsterinsights-not-authenticated-notice .monsterinsights-dark{font-weight:400;margin-bottom:20px}.monsterinsights-pdf-exports-settings .inline-field .monsterinsights-button:first-child{margin-right:0}.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{margin-top:18px}}.monsterinsights-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.monsterinsights-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.monsterinsights-admin-page .monsterinsights-logos-row{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;border:1px solid #d6e2ed;margin:40px 50px 60px;padding:25px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-logos-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:20px;margin-left:20px}}.monsterinsights-admin-page .monsterinsights-logos-row .monsterinsights-box-title{font-size:13px;font-weight:700;color:#8aa4b8;position:absolute;background:#fff;padding:0 10px;top:0;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);right:50%}.monsterinsights-admin-page .monsterinsights-upsell{background:#fff;border:1px solid #d6e2ed;text-align:center;margin-top:25px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell{margin-right:10px;margin-left:10px}}.monsterinsights-admin-page .monsterinsights-upsell h2{font-size:20px;color:#393f4c;margin:36px 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h3{font-size:18px;color:#393f4c;margin:0 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h4{font-size:18px;color:#4c6577;font-weight:400;margin:0;line-height:2}.monsterinsights-admin-page .monsterinsights-upsell p{font-size:14px;color:#4c6577}.monsterinsights-admin-page .monsterinsights-upsell .monsterinsights-upsell-top{padding-right:10px;padding-left:10px}.monsterinsights-admin-page .monsterinsights-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom{padding-right:20px;padding-left:20px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{position:absolute;top:0;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{min-width:288px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom img{max-width:100%}.monsterinsights-admin-page .monsterinsights-report-ecommerce:after{background-image:url(../img/monsterinsights-report-ecommerce.png)}.monsterinsights-admin-page .monsterinsights-addon-ads,.monsterinsights-admin-page .monsterinsights-addon-amp,.monsterinsights-admin-page .monsterinsights-addon-dimensions,.monsterinsights-admin-page .monsterinsights-addon-eu-compliance,.monsterinsights-admin-page .monsterinsights-addon-forms,.monsterinsights-admin-page .monsterinsights-addon-instant-articles,.monsterinsights-admin-page .monsterinsights-addon-optimize,.monsterinsights-admin-page .monsterinsights-addon-performance,.monsterinsights-admin-page .monsterinsights-addon-scroll{width:48px;padding-top:110%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABfCAMAAAC5kuvHAAAAWlBMVEUAAACtvcitvcitvcitvciduM2tvcitvcitvcitvcitvchQn+KtvchQn+JQn+JQn+KtvcitvcitvchQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+KtvchQn+KLGAvfAAAAHHRSTlMAIu53RBG7qogzme7dIpkzzGZVzKqIZnfdu0RVXT0ICgAAAsdJREFUaN7tmd1ymzAUhAEjMMYCJ/wT6f1fs4QWH4OwN3StmV70uzMzWRF5vaszCg6ShYFPMhOpwCOpMR+BP0JjzDXwRRgnZuKc+dii8BaZO1Hyltd9/BSbRyLFe+pqssePp0f5mPCU6KXbByLPe+o6Ca3/8fOiH/OeCue3TVcLfCz6Gecpld7MnWtyX+OyPPvkPJWZFaflefKtMr8t8hT+agX5kiMTnVR4mR5BT+EFXPngfFbzrlw+gacOLAA21fUURnZWttrF9ZSP93c9JeA/A7+cjaeOcJvePA6/VwGmE08d258knq2Sgv1xPIUSmScLQSJ7OAFIIns7AUgi8ycAmMj8CQAmMn8CwImMAScAkMgHQGl9IuRBWh9INN22+kBaH0zkcbATw/gXaY3fX3W9/UPfKZjWBxO5LOyKogRpfSiR28o6VC1I658msm5yu0veaJTWGF3bF9Q64Chz+5K85PQLCyg4/coCqn9E/0n11k/3Xf9eugYlDKq3eCI/+UbNCxSghEH1Ns/kJ77sRAdKGFRvuy8ve9eCEgbV+7UvL1s3ghIG1asXmwz78laDEkbVWy2/omZXvkcljKq3uZuw2ZG3DShhWL2lmKRx5e0IShhXVy4p1jjyOSphXL2FlQW6jbwtUAnj9y+dHBZ5O8ISxtVbywJb+QqXMB6GSmmSbSKVYGT62TBUywJr+ZoZmQQtXSjy8tvlaZcF2lUddIwmbpk6eBtq73zleIGYT3VuN/SKmE/xOSgv3zyf6n719vrt86kaRH5QPubTLrczeedpPlXNXCnKx3wq89f/+RRAz6cIej7FsPMphp1PMdR8KmmKyUJQjSBNAcz9C4C/f8Hw9y8ufu5fBD/3L+IVP/cv4hU/9y/iFU/3L65X+PsX4BX6/gV4hb5/AV7h719eeoW/fwFeAYlJtysP6RW+XXkIr9DtykN55RdZztdXJmO7xAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-ads:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAAV1BMVEUAAABQn+Iuf75Qn+JQn+Iuf76svcmsvclQn+L///+LpLesvckuf743iMhzsujc7PmKv+xMm97o8vvz+f2izPDQ5fd/uepcpeSt0vGWxe652fNnrObF3/Xl1C/0AAAACHRSTlMA7OajHEnmSn/UIZcAAAF/SURBVGje7dkNb4IwEAbgFlCvWymVb3D//3fu2oUQiRGh1wzNvYmE5kwfyxFsgniYU6KTU0BhNYnWOgkorEa7bC98KpClEpbRLoAJK8g0w/lx+lgAEplIISYAqZBxASkgLgAPgGuu/5Jf9xTWgVxPyfcU1gE9Z3vhECug7gFtGGAAgIHNgC3V05Q2DLBqNTYIKNeBMghQL4SBKUVTKMw8LkiByuBoUHNGAEsJjMubqgYwlEDrh300oPKjacrGmvZGC4yuA/jxjR3AhRYwOJ1bRY3nPdADpb/+LcANBx1ANxhaoHc/frT+GhV4/FGKtgcGptSq8YxqiYDlA7PzN1Tb9EAJ1DCnUZa+yTeAVmGqDmDAIzlgsK3TUmp03Bo6ymdR1RSLR2hR4em7/R+8KfDKruLY+6IXdnZH35sywAADDDBwDEBC1EiRQtSkIou6BJnNLyjo419QLPJNkLsJPw84h89/fgpcgoXzRezM112efJEBBhhggAEGGGCAgX8BfgF9zfCNw+tX7wAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-amp:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAABAlBMVEUAAABQn+LW4upQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn///+vv8uyws1SoOLT4OnF091WouLO2+PH1d69zNa3x9K6ydS0xNCw1O/L2OFNnuDC0dvAztjQ3eZqreTI1t9ZpOL5/P7r9PqdxueLvOZ5t+VjqeRWpOCdyuyoy+d1suT1+v3m8fjb7PfO5fTF4POo0O6hzezL3enK3OmKwOiCvOdwsuRmrOHz+fu52fG+3PDI2+nD2OmtzuiYw+aIu+VeqOGYxumXbKjeAAAAHHRSTlMA9PEaFPz4z612TycFzHHalI9ZKWlm7be2JeyNLqjzBwAAA2ZJREFUaN7s2OlSo0AQAGAwh+LmMPHend62sCj/pPKDIiYhpzExmnitq+//KkLUKmZ6EIbhp98DdBfdPT2Aoa3YbBzXj8rlo/pxo1k0clasVYFTreWZo/DHBMLcK+QUvmKZIGValTzin25DrO19/fi7JnzD3NWNf1iCb5UO9eIfQKIDrfqUIFFJo0r7svr3J0OhD5k7XZHNT7uDd+IsZZ1WCyRaiAMQWBnPr6xALuLEI8O6OdO/draYkv+yAl0hzhwQ7YXxFcOzGweoO0Rs2SAqB5tvhynqyjuMeAtUzTC2mCIXqDkG+kBVDYMpWgLlYaDjgkRBOcFI2uHA9BUkmsoJekCsMPRobwCvoZxgTB/gEkPTRSvwsAbOiXICH0QLjJoDp66cgJyCAUZNB8JhjiS4OPsb6+yCfSIFusaoNQgiCbj4JENcgj5GzchZVktAS+TcYwRdqL+VS+STLR1Bt0Vdd0z7D8Fszhcfk3rZBtGJ9kGzQ84MY7ZRI8uqoPzNE1znsiqWILHqhNtuAFSBNDmxz27MfYPDpHUtxKcZ4i+ct7DDNlA11QTyK9MJT/MKQHZlKpZIful7V4iPbQDppc+UPZFHsBHRgw362sLUvYDgVd5hsIxsCc7FQbrFe65A3Ksjy+BZKNJwspYV6DQIT5qcrs//7LSv7wpjyi3tbpoPEJ0ErGun/IRSL9FXlZyUH4Esq2c33Wcsy+z8xQGpMvchzjQ89ZzkXwlMy03XTfoZwnQtR72x79m25497o6JBsFwZPwne2y+jFYlBGIoufSrMLwxiUSRRxIr//2+7YKdbGmde5oZhoHlrhXvI1Zh4AT4DCH6NyS4cS9UANDb/sXg0wC9dWSAwABeNDHIwQE1mFAkFqHbc1jII4A72MxHxrg8CxN2S5jqx/SFtQG2yfzhSDklR14cAtg04KTpYHXihD74qUgf4uxIgbHV71wIUkQAYQB3g1AB8dmg1p3DvAXoV8wtAeA/QReILQNbOIGvvQcWeIgnA1EF56p7FVrJcSaC7qDwzz2NuU3lYsqgzbD9om37EdTTjB/omI3syt4c9+y8CTxULUyE+fDvoXCQj6E52NuvOpqmqTtdm1X0fFKf2wkmRSv7SN9oFuAAfB0xI/WkAmJGAeQC4TcAEbj8jwgxCTPNI/xcIan5QyH2lWAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-instant-articles:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAMAAAADH2QXAAAA+VBMVEUAAABQn+JQn+LW4upQn+LW4upQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+JQn+LW4upQn+Ksvcn////L2OGvv8vAzti0xNDG1N7T4OhXo+NPmtzC0duKvObI1t+3x9LL3emqzOhVoOJPneCaxOZrrOSGrtfI2urQ3eZ1suRjqeOkwN+9zNb6+/3i6fK/0ue3zOSxx+HH1d6YuNtVmtlbmtV7pdN3o9PW4u/D2Omgx+e7z+TO2+OuxeGTtNnv8/rY4/DT4Oycu9x6qdmToCJeAAAAH3RSTlMA8xrwz612TycF9sxxE5SPWSn58+1pZhbb2Le2JfGNzELbBwAAAsdJREFUaN7tmF1f2jAUh1OwKIKCiDCdW0J5LRQo410UmeLm1L1+/w+zWrefLSdpmya9YOtzBxf/p+ScnJAiYcr53NlpsVAonp7l8mUkmYNshrjIZA8kxifeKwSwf5iQFJ9OKYSKkkrLyD/fIUx2jsTzd98RD5Rd0fwS8aEkln9CfDkRWh8SAIFVOlKCCJTQlU4z++fDeODspbDdmiIsJkviJBVy/zIX6EK7dS+Svaf31CTmwiAMfmor4ubwOZ8zHvcHzOfX1ptzyZp8KuZkyM6/Al9mEUryCkb0/llpmvYJfJ1BCHPSp+dfaxZtAkhwC0xq/oNm8ZVA8twCg/n8Vo9CctyCGSV/Yuc/EApvuQVzkNFe2vmXa5rgDbdAB/k/tBfBL+rEcwg+1ipMak38B5D/WXOzsR0cAmc+NAABM3/p7NYCt0B3538H+U/ESdEhaPouESyyBliBIou0KVRdCLep4Sl4Et9oJqHRvrTzb+CokDTs7hj5JAH2gUedPcb1lWYxJt7j2sr3NrAPnDVrmGa5BOwj8/r1+cGRCfYBe4mYfXT7mg8PfczNBMy7G/u0hCiJUAJYBUY+SaFwgtZos0fv6NeQdEgBvncv0rcxoaGcIwuwDwLV2eT4+w7aNNDQ/hLkAiIi8DeUEBA0gy6RjakHvATisNyPgl1jcWhawwGhsu+6iGMBJobu/yoBC9EfjvxehmBR+qYxm+uDgT6fGWYZAbBUUCyIBf+UYFr1QIKg7j23W2IC/9OnIyyoeFPfTkGtt6gvFo3IBPWXyjajqkEV40gFCxyx4BHbtFqdiAT4mU4jsi5q2I9fqUQrqMYChqDR7Xardg26Fj35gh52ErmgEbWgErFguo1dFAtiQSyISFDzFogf+nVPQW0q/X7waB84fz9txQ0nFsSC/0mQxBI5RhBVpkBFkD2JPyG5h2gG9VjS+qi0/N+iC9OxZrJwlgAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmBAMAAADG74kWAAAAFVBMVEXW4urW4urW4uoAAADW4uqsvclQn+ITLWFyAAAABHRSTlPsoxwAEnMmfgAAAIFJREFUWMPt2LEJgDAUBNCvOICFAwhu4AQKP06QbCDuP4J9sPCKwOm/KwOvusCHs3V0IN1is0PpbcLAbgMGNnMwvwGp1MmPj7EBYXGEgLA4QkBYHCFI5VVybEBYHCEgLE5AQEBAIAQgPIqE4LjqnAJtwNe+RlMAz0XwIAVPXvCodgNhA6kmkI3HfAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-optimize{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-optimize:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABeCAMAAAByzjhiAAAAkFBMVEUAAADW4utZo9+bxObW4utUod/W4utUod/W4utUoN5ToN3W4utUod/W4uvW4utTntpTntpUod/W4uvW4uvW4utTntpUod/W4uvW4uvW4uvW4utTndnW4uvW4utUod/W4uvW4utUod9QlMtRl89Qls1RmNFSmtNPk8lPksdSm9VOkMNRmdNSnNdTndlTnttUoN4GbpBuAAAAIHRSTlMAAgcM4/fvwLNVRvnULikb5+bRxbyil5SSi4BySTw4Jgr331EAAAGYSURBVGje7dJXbsQgFIVhPJ7qTEnvxb2Msdn/7gKOIiJ7AMkcXiL+BXxHiEvULXabVTK7m8dPoi3iuF37UMPvEvtW6oFTgmiv9DcJpEjBBwmmjep2ElDe9773ve9973vf+zP9YFSI9MPXq3h+KTP4B65bVNVM63/FdlVn3QAJ1ta+boC8x/b+uWJKf2vv6wbI2t7XDZAY4ItS5tQXA079uk6ZQ7/m5cyZXw9lzIkveLFQVRnD++ngD7wcwPr1r5+mBcP7kue1cF/yQ6UTvxK+HED6Iz7PS6w/5vOsgfojnvtZg/XHfFZQpD/li4Li/Akv/LZD+bn0//Bt2eH8Kc/9sgP5Cr5seow/+dvih2+aHuZPeeHTHuGreUp7iC8vc8TTzt7PFHwjeIQ/OR3JQ3w1j/F1POB/C8XpUMEjfB1/DfA1fP8G8BWXOfgLgK/hI2Lvt4rT4fyOIHwV/3AiCD+4nLAhPrmc973vfe//d3/p2H+25LcG/2jpfxBD91b8bWDyQ5sfWIfE2GI7m78TvLnjy5w3LJ8OZvobpmnKQFwgNYcAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-addon-dimensions{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-performance{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-performance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABlCAMAAACFixa5AAAA8FBMVEUAAADW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4urW4uqsvclQn+KwwczT4erK1+DR3+rH2+m91ulkqeNbpeN2suRnq+PJ3OmKvOZ7teViqON4s+R0seRWouPC0dvL3emOvuaAt+WXwuZuruRgqOO6ydSuzujL2OKT9JW9AAAAMnRSTlMA4dIH+kUD8u3kDNZoShiYfeiQg2I/DsiIJhRPLfTexcG8s65vIBza0KReuYx3WFU2dMplGNoAAAPgSURBVGje7ZnZetowEEaHesMsBrOvIWwhpOk2UFqaNE3a0CZd3/9tataxIwnZRL7o15wbjC7+g6XxSJ+B8Gj1crOUyWReNY16CtSivSp0bfST7GQ0UEY9jRxOT0ARlQRySauaqDco4IUiQRcFdBQJnqGAxJPgSfCfCMxsX0cRfQMeSSNv415GUZqqlh28dMBHKm+hFDuoGJYGZRO4lG1E1HOkaCYwFGmD7ji3GngNHFptXGEV113Y6WNoxo31FGzvuM0xNI5wi5sxAbJJjIBdBjBLNn13mGLpBm66WcRo6MXsaaCTP1z7IiomBwEMVM4Z+HBcVI41BKKHMdChx6GEcUBnAieJUZndXU79XP5GFr21EYwxMt+nD/iJHI43LQKjczF9CPJ4uRJUMTqfwwmOtEMfgbtwAix5gud4ALOP4QRpgBYexOxLKAEakMMDDTehBDmwUcb7DzOu4T6MIA0WSvhwOb2Y87y3YQQj6MryF8vHaM7Plwv6kJXne3yeC/LliwwFyfxMeYb3Icu0AB6ZpCSfDEz+1c0+QXKwPf4khfmEb6Vnu/xvu0tOfL5CR4qiJc4nA5u/W4xLQTwpztvC/Ivt56ftQ0z5nuHH8vpaFE+c6IL8u9kNGZh8z3C/WFzPgl2U4n0CQf61ry1cfQpcC7GAgWnbV5TvN8yZfC4OEIKdn/ID876g2doH7/SbxwD3lB8wsPnv3k4mb99hgCaw1DgN/5qzxVDFfl3HevmeQXSsI3LMyeT2O2cTo/w/m9jJCgyQCSHwz8HXXX+grvF++cujCGoowkvaGih/9muyR3AmX2TCS9gabqnrefkBgXyRB0gEa2NChvvFjzlZxQIDWF4hQbXBTZAL6sDS4gUcKNA1YEkpFBwBi3mmSwS0MFKBm2VXII0oEdDCCAVENahoniLKBNJBscKoIioXkOKki6hWQBwPASojjE+AdgOKGKcACzCKV2CDFa8AIR2vIAH5eAU1cPR4BNRWx3EKnlObjkdQBo9xfIL+ulewlUqNky6lgyz6ZmN7gQzU+ulSPsiW0BrtFGPhKLXbjnWMAb3M/FOmlhoQ5jEq51nwnXkSFWPVIUAWA1RtjIjbYd6mid8tuyXTiThpxw68tAMbzUPM3m71zyvL74VIC2ouj25FfeczgaFS3fSnFqwxEqELfluQ9c2v7DSAgzaouolelgZStTaGoF301YvRs91uyYSQnOR0lKAXHHgMw8LeAk6eD+GxaGdChVXS/oF/Ap8ETwIlCLfskSLBGAX0FQkMFFAGReSQyzmowuT1besFKKRiDHLP0661SnbTvULGSEEspKLm/gXsGeljiPFFoAAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-scroll{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-scroll:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-upsell-large{padding-bottom:35px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-large{padding-right:10px;padding-left:10px;line-height:1.2}}.monsterinsights-admin-page .monsterinsights-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-upsell-large h2{font-size:18px;margin-top:0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-coupon{color:#509fe2;border:1px dashed #509fe2;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-flow:wrap;flex-flow:wrap;margin:30px auto 25px;max-width:525px}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:right;margin:10px 0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span:before{content:"";background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAElBMVEUAAABQn+JQn+JQn+JQn+JQn+KxowiZAAAABXRSTlMARO4idxyyls4AAAAySURBVAjXYwABoyADBhgQDRWgKttQUFDQNdQRSBowqIbCgAJDKBwEIIsjq6eFe5D9CwCWPRV/mairZAAAAABJRU5ErkJggg==);width:11px;height:11px;background-size:contain;display:inline-block;margin-left:12px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p a{color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAYFBMVEUAAAD/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE3/zE1mRQDuvkTSpDZ7VwqgeB2bdBqvhiV+Wgx2Uwj4xkn3xUnfsD3KnTKziSeLZhOFYRBnRgD04bLqAAAADnRSTlMALPrz8dvSp6SXYxMNONmrFGwAAADrSURBVDjLhZPploMgDIVjqQjY3hS12r3v/5bDjFGH0gPfH+4JS0IW2mid0QpQ2riWUqpmh5VdU1HMweIDe4iu10io/z1y3OML++N6X/aTE5X4l/dT6jkOCyHF/jmAcAIS+eukET1wJ/ZTx4MYG6JW8uOZuZ9lH6SXjLXkMHMO1m6WXZBnMTsy+QOGNHIuoEkhFyQUxX9LJaEAKWRRpJFFk0EWQw7C/YaV2x2CW1ONx3vwVwSufng/sKR6K9ZlZOZpHKewjJelWFG5nyw8t3LHDeP71zS9eo8FW2y5UtMW2748OOXRKw9vcfx/ACZnLYWsWc2gAAAAAElFTkSuQmCC)}
lite/assets/vue/js/chunk-common.js CHANGED
@@ -1 +1 @@
1
- (window["monsterinsightsjsonp"]=window["monsterinsightsjsonp"]||[]).push([["chunk-common"],{"0044":function(t,e,n){"use strict";var s=n("9cc2"),o=n.n(s);o.a},"014b":function(t,e,n){"use strict";var s=n("46a2"),o=n.n(s);o.a},"088d":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.componentClass},[n("label",{class:t.disabled?"monsterinsights-styled-checkbox-faux":"",on:{click:function(e){return e.preventDefault(),t.stopClick(e)},keyup:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.stopClick(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:t.stopClick(e)}]}},[n("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.labelClass(),attrs:{tabindex:t.faux?"":0}}),n("input",{directives:[{name:"model",rawName:"v-model",value:t.checked,expression:"checked"}],attrs:{type:"checkbox",name:t.name,disabled:t.disabled},domProps:{checked:Array.isArray(t.checked)?t._i(t.checked,null)>-1:t.checked},on:{change:function(e){var n=t.checked,s=e.target,o=!!s.checked;if(Array.isArray(n)){var i=null,a=t._i(n,i);s.checked?a<0&&(t.checked=n.concat([i])):a>-1&&(t.checked=n.slice(0,a).concat(n.slice(a+1)))}else t.checked=o}}}),t.label?n("span",{staticClass:"monsterinsights-checkbox-label",domProps:{innerHTML:t._s(t.label)}}):t._e(),t.hasLabelSlot?n("span",{staticClass:"monsterinsights-checkbox-label"},[t._t("label")],2):t._e(),t.description?n("span",{staticClass:"monsterinsights-checkbox-description",domProps:{innerHTML:t._s(t.description)}}):t._e(),t.tooltip?n("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e(),t.hasCollapsibleSlot?n("span",{staticClass:"monsterinsights-settings-input-toggle-collapsible",attrs:{role:"button"},on:{keyup:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.toggleCollapsible(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:t.toggleCollapsible(e)}]}},[n("i",{class:t.iconClass,attrs:{tabindex:"0",onkeypress:"if(event.keyCode==32||event.keyCode==13){return false;};"}})]):t._e()],1),n("slide-down-up",[t.slotCollapsibleVisible&&t.hasCollapsibleSlot?n("div",{staticClass:"monsterinsights-collapsible"},[t.hasCollapsibleSlot?n("div",{staticClass:"monsterinsights-separator"}):t._e(),n("div",{staticClass:"monsterinsights-collapsible-content"},[t._t("collapsible")],2)]):t._e()])],1)},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("b0c0"),n("e439"),n("dbb4"),n("b64b"),n("159b"),n("fc11")),a=n("2f62"),r=n("93ec"),c=n("d98d");function l(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function u(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?l(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var p={name:"SettingsInputCheckbox",components:{SlideDownUp:c["a"],SettingsInfoTooltip:r["a"]},props:{name:String,label:String,description:String,tooltip:String,faux:Boolean,faux_tooltip:String,faux_tooltip_off:String,valueOn:String,valueOff:String,default:{type:Boolean,default:!0},auth_disabled:{type:Boolean,default:!0}},data:function(){return{is_loading:!1,has_error:!1,slotCollapsibleVisible:!1}},computed:u({},Object(a["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{has_ua:function(){if(!this.auth_disabled)return!0;var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},hasCollapsibleSlot:function(){return this.$slots["collapsible"]},hasLabelSlot:function(){return this.$slots["label"]},iconClass:function(){var t="monstericon-arrow";return this.slotCollapsibleVisible&&(t+=" monstericon-down"),t},componentClass:function(){var t="monsterinsights-settings-input-checkbox";return this.$slots["collapsible"]&&(t+=" has-collapsible"),t},checked:{get:function(){var t=this.valueOn?this.valueOn===this.settings[this.name]:this.settings[this.name];return this.faux?this.default:t},set:function(t){var e=!!this.valueOff&&this.valueOff;t&&(e=!this.valueOn||this.valueOn),this.updateSetting(e)}},tooltip_data:function(){return{content:this.faux_tooltip_text,autoHide:!1,trigger:"hover focus click"}},faux_tooltip_text:function(){return this.has_ua?this.checked?this.faux_tooltip:this.faux_tooltip_off:this.$mi_need_to_auth},disabled:function(){return!this.has_ua||this.faux}}),watch:{checked:function(t){this.$emit("checkboxChange",t),this.slotCollapsibleVisible=t}},methods:{stopClick:function(t){t.target.classList.contains("monsterinsights-styled-checkbox")||t.target.classList.contains("monsterinsights-checkbox-label")?this.checked=!this.checked:(this.toggleCollapsible(t),t.stopPropagation())},updateSetting:function(t){var e=this;if(this.disabled)return!1;this.$mi_saving_toast({}),this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:t}).then((function(t){t.success?(e.$emit("checkbox_option_updated"),e.$mi_success_toast({})):e.$mi_error_toast({})}))},toggleCollapsible:function(t){t.preventDefault(),t.stopPropagation(),this.slotCollapsibleVisible=!this.slotCollapsibleVisible},labelClass:function(){var t="monsterinsights-styled-checkbox";return this.checked&&(t+=" monsterinsights-styled-checkbox-checked"),t},mounted:function(){this.slotCollapsibleVisible=this.checked}}},d=p,f=n("2877"),h=Object(f["a"])(d,s,o,!1,null,null,null);e["a"]=h.exports},"0f8f":function(t,e,n){},"17be":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement;t._self._c;return t._m(0)},o=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("span",[n("span",{staticClass:"monsterinsights-pro-pill"},[t._v("PRO")])])}],i={name:"PopularPostsProPill"},a=i,r=n("2877"),c=Object(r["a"])(a,s,o,!1,null,null,null);e["a"]=c.exports},1915:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-notificationsv3-container"},[n("div",{staticClass:"monsterinsights-notificationsv3-inbox-button"},[n("button",{staticClass:"monsterinsights-button",on:{click:function(e){t.isShowSidebar=!0}}},[n("svg",{attrs:{width:"22",height:"14",viewBox:"0 0 22 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M21.6944 6.5625C21.8981 6.85417 22 7.18229 22 7.54687V12.25C22 12.7361 21.8218 13.1493 21.4653 13.4896C21.1088 13.8299 20.6759 14 20.1667 14H1.83333C1.32407 14 0.891204 13.8299 0.534722 13.4896C0.178241 13.1493 0 12.7361 0 12.25V7.54687C0 7.18229 0.101852 6.85417 0.305556 6.5625L4.35417 0.765625C4.45602 0.644097 4.58333 0.522569 4.73611 0.401042C4.91435 0.279514 5.10532 0.182292 5.30903 0.109375C5.51273 0.0364583 5.7037 0 5.88194 0H16.1181C16.3981 0 16.6782 0.0850694 16.9583 0.255208C17.2639 0.401042 17.4931 0.571181 17.6458 0.765625L21.6944 6.5625ZM6.1875 2.33333L2.94097 7H7.63889L8.86111 9.33333H13.1389L14.3611 7H19.059L15.8125 2.33333H6.1875Z",fill:"#2679C1"}})])]),n("span",{class:["monsterinsights-notificationsv3-inbox-number",t.activeNotificationsNumber>9?"number-greater-than-10":"number-less-than-10"],domProps:{textContent:t._s(t.activeNotificationsNumber)},on:{click:function(e){t.isShowSidebar=!0}}})]),t.isShowSidebar?n("div",{class:["monsterinsights-notificationsv3-sidebar",t.isShowSidebar?"monsterinsights-notificationsv3-sidebar-in":"monsterinsights-notificationsv3-sidebar-out"]},[n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-top"},[n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-top-title"},[n("svg",{attrs:{width:"24",height:"15",viewBox:"0 0 24 15",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M23.6667 7.03125C23.8889 7.34375 24 7.69531 24 8.08594V13.125C24 13.6458 23.8056 14.0885 23.4167 14.4531C23.0278 14.8177 22.5556 15 22 15H2C1.44444 15 0.972222 14.8177 0.583333 14.4531C0.194444 14.0885 0 13.6458 0 13.125V8.08594C0 7.69531 0.111111 7.34375 0.333333 7.03125L4.75 0.820312C4.86111 0.690104 5 0.559896 5.16667 0.429688C5.36111 0.299479 5.56944 0.195312 5.79167 0.117188C6.01389 0.0390625 6.22222 0 6.41667 0H17.5833C17.8889 0 18.1944 0.0911458 18.5 0.273438C18.8333 0.429688 19.0833 0.611979 19.25 0.820312L23.6667 7.03125ZM6.75 2.5L3.20833 7.5H8.33333L9.66667 10H14.3333L15.6667 7.5H20.7917L17.25 2.5H6.75Z",fill:"white"}})]),t.isShowDismissed?t._e():n("h3",{domProps:{textContent:t._s(t.text_inbox)}}),t.isShowDismissed?n("h3",{domProps:{textContent:t._s(t.text_dismissed)}}):t._e()]),n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-top-actions"},[t.isShowDismissed?t._e():n("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_view_dismissed)},on:{click:function(e){t.isShowDismissed=!0}}}),t.isShowDismissed?n("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_back_to_inbox)},on:{click:function(e){t.isShowDismissed=!1}}}):t._e(),n("button",{staticClass:"monsterinsights-button monsterinsights-notificationsv3-sidebar-close",on:{click:t.closeSidebar}},[n("svg",{attrs:{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M8.28409 6L11.6932 9.40909C11.8977 9.61364 12 9.86364 12 10.1591C12 10.4545 11.8977 10.7159 11.6932 10.9432L10.9432 11.6932C10.7159 11.8977 10.4545 12 10.1591 12C9.86364 12 9.61364 11.8977 9.40909 11.6932L6 8.28409L2.59091 11.6932C2.38636 11.8977 2.13636 12 1.84091 12C1.54545 12 1.28409 11.8977 1.05682 11.6932L0.306818 10.9432C0.102273 10.7159 0 10.4545 0 10.1591C0 9.86364 0.102273 9.61364 0.306818 9.40909L3.71591 6L0.306818 2.59091C0.102273 2.38636 0 2.13636 0 1.84091C0 1.54545 0.102273 1.28409 0.306818 1.05682L1.05682 0.306818C1.28409 0.102273 1.54545 0 1.84091 0C2.13636 0 2.38636 0.102273 2.59091 0.306818L6 3.71591L9.40909 0.306818C9.61364 0.102273 9.86364 0 10.1591 0C10.4545 0 10.7159 0.102273 10.9432 0.306818L11.6932 1.05682C11.8977 1.28409 12 1.54545 12 1.84091C12 2.13636 11.8977 2.38636 11.6932 2.59091L8.28409 6Z",fill:"white"}})])])])]),n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-bottom"},[n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count"},[t.isShowDismissed?t._e():n("span",{staticClass:"monsterinsights-notificationsv3-inbox-number",domProps:{textContent:t._s(t.activeNotificationsNumber)}}),t.isShowDismissed?n("span",{staticClass:"monsterinsights-notificationsv3-dismissed-number",domProps:{textContent:t._s(t.dismissedNotificationsNumber)}}):t._e(),n("h4",{domProps:{textContent:t._s(t.text_notifications)}})]),!t.isShowDismissed&&t.activeNotificationsNumber>0?n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-bottom-actions"},[n("span",{domProps:{textContent:t._s(t.text_dismiss_all)},on:{click:function(e){return t.dismiss("all")}}})]):t._e()]),t.isShowDismissed?t._e():n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-notifications monsterinsights-notificationsv3-notifications-active"},[t.activeNotificationsNumber<1?n("div",{staticClass:"monsterinsights-notificationsv3-no-notifications"},[n("svg",{attrs:{width:"91",height:"74",viewBox:"0 0 91 74",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M89.2969 65.4062C90.4219 66.3438 90.5625 67.4219 89.7188 68.6406L86.9062 72.1562C85.9688 73.2812 84.9375 73.4219 83.8125 72.5781L0.984375 8.59375C-0.140625 7.65625 -0.28125 6.57813 0.5625 5.35938L3.375 1.84375C4.3125 0.71875 5.34375 0.578125 6.46875 1.42188L26.8594 17.1719C30.3281 12.5781 34.9219 9.67188 40.6406 8.45312V5.5C40.6406 4.28125 41.0625 3.25 41.9062 2.40625C42.8438 1.46875 43.9219 1 45.1406 1C46.3594 1 47.3906 1.46875 48.2344 2.40625C49.1719 3.25 49.6406 4.28125 49.6406 5.5V8.45312C54.8906 9.48437 59.2031 12.0156 62.5781 16.0469C65.9531 20.0781 67.6406 24.8125 67.6406 30.25C67.6406 34.375 68.1094 38.0312 69.0469 41.2188C69.9844 44.3125 70.8281 46.4219 71.5781 47.5469C72.4219 48.6719 73.5469 49.9375 74.9531 51.3438C75.1406 51.625 75.2812 51.8125 75.375 51.9062C76.2188 52.8438 76.6406 53.875 76.6406 55C76.6406 55.0938 76.5938 55.2344 76.5 55.4219C76.5 55.5156 76.5 55.5625 76.5 55.5625L89.2969 65.4062ZM22.2188 36.4375L52.1719 59.5H18.1406C17.2969 59.5 16.5 59.3125 15.75 58.9375C15.0938 58.4688 14.5781 57.9062 14.2031 57.25C13.8281 56.5 13.6406 55.75 13.6406 55C13.6406 53.875 14.0625 52.8438 14.9062 51.9062C16.2188 50.5 17.1562 49.4688 17.7188 48.8125C18.2812 48.1562 19.0781 46.6562 20.1094 44.3125C21.1406 41.9688 21.8438 39.3438 22.2188 36.4375ZM45.1406 73C42.7031 73 40.5938 72.1094 38.8125 70.3281C37.0312 68.6406 36.1406 66.5312 36.1406 64H54.1406C54.1406 65.5938 53.7188 67.0938 52.875 68.5C52.125 69.9062 51.0469 70.9844 49.6406 71.7344C48.2344 72.5781 46.7344 73 45.1406 73Z",fill:"#E2E4E9"}})]),n("h4",{domProps:{textContent:t._s(t.text_no_notifications)}})]):t._e(),t._l(t.notifications,(function(t,e){return n("notification",{key:e,attrs:{notification:t}})}))],2),t.isShowDismissed?n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-notifications monsterinsights-notificationsv3-notifications-dismissed"},[t.dismissedNotificationsNumber<1?n("div",{staticClass:"monsterinsights-notificationsv3-no-notifications"},[n("svg",{attrs:{width:"91",height:"74",viewBox:"0 0 91 74",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M89.2969 65.4062C90.4219 66.3438 90.5625 67.4219 89.7188 68.6406L86.9062 72.1562C85.9688 73.2812 84.9375 73.4219 83.8125 72.5781L0.984375 8.59375C-0.140625 7.65625 -0.28125 6.57813 0.5625 5.35938L3.375 1.84375C4.3125 0.71875 5.34375 0.578125 6.46875 1.42188L26.8594 17.1719C30.3281 12.5781 34.9219 9.67188 40.6406 8.45312V5.5C40.6406 4.28125 41.0625 3.25 41.9062 2.40625C42.8438 1.46875 43.9219 1 45.1406 1C46.3594 1 47.3906 1.46875 48.2344 2.40625C49.1719 3.25 49.6406 4.28125 49.6406 5.5V8.45312C54.8906 9.48437 59.2031 12.0156 62.5781 16.0469C65.9531 20.0781 67.6406 24.8125 67.6406 30.25C67.6406 34.375 68.1094 38.0312 69.0469 41.2188C69.9844 44.3125 70.8281 46.4219 71.5781 47.5469C72.4219 48.6719 73.5469 49.9375 74.9531 51.3438C75.1406 51.625 75.2812 51.8125 75.375 51.9062C76.2188 52.8438 76.6406 53.875 76.6406 55C76.6406 55.0938 76.5938 55.2344 76.5 55.4219C76.5 55.5156 76.5 55.5625 76.5 55.5625L89.2969 65.4062ZM22.2188 36.4375L52.1719 59.5H18.1406C17.2969 59.5 16.5 59.3125 15.75 58.9375C15.0938 58.4688 14.5781 57.9062 14.2031 57.25C13.8281 56.5 13.6406 55.75 13.6406 55C13.6406 53.875 14.0625 52.8438 14.9062 51.9062C16.2188 50.5 17.1562 49.4688 17.7188 48.8125C18.2812 48.1562 19.0781 46.6562 20.1094 44.3125C21.1406 41.9688 21.8438 39.3438 22.2188 36.4375ZM45.1406 73C42.7031 73 40.5938 72.1094 38.8125 70.3281C37.0312 68.6406 36.1406 66.5312 36.1406 64H54.1406C54.1406 65.5938 53.7188 67.0938 52.875 68.5C52.125 69.9062 51.0469 70.9844 49.6406 71.7344C48.2344 72.5781 46.7344 73 45.1406 73Z",fill:"#E2E4E9"}})]),n("h4",{domProps:{textContent:t._s(t.text_no_notifications)}})]):t._e(),t._l(t.dismissed,(function(t,e){return n("notification",{key:e,attrs:{notification:t,dismissable:!1}})}))],2):t._e()]):t._e()])},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("e439"),n("dbb4"),n("b64b"),n("d3b7"),n("ac1f"),n("3ca3"),n("841c"),n("159b"),n("ddb0"),n("2b3d"),n("fc11")),a=n("561c"),r=n("2f62"),c=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-notificationsv3-single-notification"},[n("div",{staticClass:"monsterinsights-notificationsv3-notification-icon",domProps:{innerHTML:t._s(t.notification.icon)}}),n("div",{staticClass:"monsterinsights-notificationsv3-notification-details"},[n("div",{staticClass:"monsterinsights-notificationsv3-notification-title"},[n("h5",{domProps:{innerHTML:t._s(t.notification.title)}}),t.notification.start?n("span",{domProps:{innerHTML:t._s(t.notification.start)}}):t._e()]),n("div",{staticClass:"monsterinsights-notificationsv3-notification-content"},[n("div",{domProps:{innerHTML:t._s(t.notification.content)}})]),n("div",{staticClass:"monsterinsights-notificationsv3-notification-actions"},[t._l(t.notification.btns,(function(e,s){return n("a",{key:s,class:["monsterinsights-button",t.buttonClass(s)],attrs:{href:e.url},domProps:{textContent:t._s(e.text)}})})),t.dismissable?n("span",{domProps:{innerHTML:t._s(t.text_dismiss)},on:{click:function(e){return t.dismiss(t.notification.id)}}}):t._e()],2)])])},l=[];function u(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function p(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?u(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):u(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var d={name:"Notification",props:{notification:Object,dismissable:{type:Boolean,default:!0}},data:function(){return{text_dismiss:Object(a["a"])("Dismiss","google-analytics-for-wordpress")}},computed:p({},Object(r["b"])({notifications:"$_notifications/notifications"}),{has_notifications:function(){return this.notifications&&this.notifications.length>0}}),methods:{buttonClass:function(t){return"monsterinsights-button monsterinsights-button-"+t},dismiss:function(t){var e=this;this.$store.dispatch("$_notifications/dismissNotification",t).then((function(){var t=document.querySelector(".monsterinsights-menu-notification-indicator");t&&!e.has_notifications?t.style.display="none":t.innerText=e.notifications.length}))}}},f=d,h=n("2877"),m=Object(h["a"])(f,c,l,!1,null,null,null),g=m.exports;function _(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function b(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?_(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):_(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var v={name:"Notifications",components:{Notification:g},data:function(){return{isShowSidebar:!1,isShowDismissed:!1,text_inbox:Object(a["a"])("Inbox","google-analytics-for-wordpress"),text_back_to_inbox:Object(a["a"])("Back to Inbox","google-analytics-for-wordpress"),text_view_dismissed:Object(a["a"])("View Dismissed","google-analytics-for-wordpress"),text_notifications:Object(a["a"])("Notifications","google-analytics-for-wordpress"),text_dismiss_all:Object(a["a"])("Dismiss All","google-analytics-for-wordpress"),text_dismissed:Object(a["a"])("Dismissed","google-analytics-for-wordpress"),text_no_notifications:Object(a["a"])("No Notifications","google-analytics-for-wordpress")}},computed:b({},Object(r["b"])({notifications:"$_notifications/notifications",dismissed:"$_notifications/dismissed"}),{activeNotificationsNumber:function(){return this.notifications.length},dismissedNotificationsNumber:function(){return this.dismissed.length}}),created:function(){var t=window.location.search;if("undefined"!==typeof t){var e=new URLSearchParams(t),n=e.get("open");"undefined"!==typeof n&&"monsterinsights_notification_sidebar"===n&&(this.isShowSidebar=!0)}},methods:{closeSidebar:function(){this.isShowSidebar=!1,this.isShowDismissed=!1},buttonClass:function(t){return"monsterinsights-button monsterinsights-button-"+t},dismiss:function(t){var e=this;this.$store.dispatch("$_notifications/dismissNotification",t).then((function(){var t=document.querySelector(".monsterinsights-menu-notification-indicator");t&&!e.notifications.length>0?t.style.display="none":t.innerText=e.notifications.length}))}}},y=v,w=Object(h["a"])(y,s,o,!1,null,null,null);e["a"]=w.exports},"3bc9":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"settings-input settings-input-license"},[n("p",{domProps:{innerHTML:t._s(t.text_license_row_1)}}),n("p",{domProps:{innerHTML:t._s(t.text_license_row_2)}}),n("p",{domProps:{innerHTML:t._s(t.text_license_row_3)}}),n("div",{staticClass:"monsterinsights-settings-license-lite"},[n("label",{attrs:{for:"monsterinsights-license-key"},domProps:{innerHTML:t._s(t.text_license_label)}}),n("div",{staticClass:"inline-field"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.connect_key,expression:"connect_key"}],attrs:{id:"monsterinsights-license-key",readonly:t.is_loading,type:"text",autocomplete:"off",placeholder:t.text_license_placeholder},domProps:{value:t.connect_key},on:{input:[function(e){e.target.composing||(t.connect_key=e.target.value)},t.fieldInput]}}),t.show_connect?n("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_upgrade_to_pro)},on:{click:function(e){return e.preventDefault(),t.startUpgradeToPro(e)}}}):t._e()])])])},o=[],i=n("561c"),a=n("f7fe"),r=n.n(a),c=n("dd62"),l={name:"SettingsInputLicense",props:{label:String},data:function(){return{is_network:this.$mi.network,text_license_row_1:Object(i["d"])(Object(i["a"])("You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s","google-analytics-for-wordpress"),"<strong>","</strong>",'<span class="monsterinsights-bg-img monsterinsights-smile"></span>'),text_license_row_2:Object(i["d"])(Object(i["a"])("To unlock more features consider %1$supgrading to PRO%2$s.","google-analytics-for-wordpress"),'<a href="'+this.$getUpgradeUrl("settings-panel","license")+'" class="monsterinsights-bold" target="_blank">',"</a>"),text_license_row_3:Object(i["d"])(Object(i["a"])("As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!","google-analytics-for-wordpress"),'<span class="monsterinsights-highlighted-text">',"</span>"),text_upgrade_to_pro:Object(i["a"])("Unlock PRO Features Now","google-analytics-for-wordpress"),text_license_placeholder:Object(i["a"])("Paste your license key here","google-analytics-for-wordpress"),text_license_verify:Object(i["a"])("Verify","google-analytics-for-wordpress"),text_license_label:Object(i["d"])(Object(i["a"])("Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.","google-analytics-for-wordpress"),'<a href="'+this.$getUrl("license","settings_panel","https://www.monsterinsights.com/my-account/")+'" target="_blank">',"</a>"),is_loading:!1,show_connect:!1,connect_key:""}},methods:{fieldInput:r()((function(){this.show_connect=""!==this.connect_key}),100),startUpgradeToPro:function(){var t=this;this.$swal({type:"info",title:Object(i["a"])("Please wait...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,customContainerClass:"monsterinsights-swal",onOpen:function(){t.$swal.showLoading()}}),c["a"].getUpgradeLink(this.connect_key).then((function(e){if(e.success&&e.data.url)return window.location=e.data.url;var n=e.data.message?e.data.message:Object(i["a"])("There was an error unlocking MonsterInsights PRO please try again or install manually.","google-analytics-for-wordpress");t.$mi_error_toast({title:Object(i["a"])("Error","google-analytics-for-wordpress"),text:n,toast:!1,position:"center",showConfirmButton:!0,showCloseButton:!1,customClass:!1}).then((function(){e.data.reload&&window.location.reload()}))})).catch((function(){t.$swal.close()}))}}},u=l,p=n("2877"),d=Object(p["a"])(u,s,o,!1,null,null,null);e["a"]=d.exports},4360:function(t,e,n){"use strict";var s=n("2b0e"),o=n("2f62"),i=n("dd62"),a=n("f7fe"),r=n.n(a),c=n("561c"),l=function(t){var e=i["a"].fetchLicense();e.then((function(e){e.network&&t.commit("LICENSE_NETWORK_UPDATED",e.network),e.site&&t.commit("LICENSE_UPDATED",e.site),_(t)})).catch((function(t){console.error(t)}))},u=function(t,e){return i["a"].verifyLicense(e,t)},p=function(t,e){return t.commit("LICENSE_KEY_UPDATED",e),f(e,t)},d=function(t,e){return t.commit("LICENSE_NETWORK_KEY_UPDATED",e),f(e,t,!0)},f=r()(i["a"].verifyLicense,500,{leading:!0}),h=function(t,e){return i["a"].validateLicense(e)},m=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return i["a"].deactivateLicense(t,e)},g=function(t){t.dispatch("$_app/removeNotice","license_expired",{root:!0}),t.dispatch("$_app/removeNotice","license_disabled",{root:!0}),t.dispatch("$_app/removeNotice","license_invalid",{root:!0})},_=function(t){t.state.license.is_expired||t.state.license_network.is_expired?t.dispatch("$_app/addNotice",{id:"license_expired",content:Object(c["d"])(Object(c["a"])("Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s","google-analytics-for-wordpress"),'<a target="blank" href="'+s["a"].prototype.$getUrl("admin-notices","expired-license","https://www.monsterinsights.com/login/")+'">',"</a>"),type:"error"},{root:!0}):t.state.license.is_disabled||t.state.license_network.is_disabled?t.dispatch("$_app/addNotice",{id:"license_disabled",content:Object(c["a"])("Your license key for MonsterInsights has been disabled. Please use a different key.","google-analytics-for-wordpress"),type:"error"},{root:!0}):(t.state.license.is_invalid||t.state.license_network.is_invalid)&&t.dispatch("$_app/addNotice",{id:"license_invalid",content:Object(c["a"])("Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key.","google-analytics-for-wordpress"),type:"error"},{root:!0})},b={getLicense:l,updateLicense:p,verifyLicense:u,updateNetworkLicense:d,validateLicense:h,deactivateLicense:m,removeLicenseNotices:g,addLicenseNotices:_},v=function(t){return t.license},y=function(t){return t.license_network},w={license:v,license_network:y},O=function(t,e){t.license=e},C=function(t,e){t.license_network=e},$=function(t,e){t.license.key=e},j=function(t,e){t.license.type=e},k=function(t,e){t.license_network.key=e},E=function(t,e){t.license_network.type=e},P={LICENSE_UPDATED:O,LICENSE_NETWORK_UPDATED:C,LICENSE_KEY_UPDATED:$,LICENSE_TYPE_UPDATED:j,LICENSE_NETWORK_KEY_UPDATED:k,LICENSE_NETWORK_TYPE_UPDATED:E},x={license:{key:"",type:"",is_expired:!1,is_disabled:!1,is_invalid:!0},license_network:{key:"",type:"",is_expired:!1,is_disabled:!1,is_invalid:!0}},T={namespaced:!0,state:x,actions:b,getters:w,mutations:P},S=(n("d3b7"),n("bc3a")),D=n.n(S),A=function(){return new Promise((function(t){var e=new FormData;e.append("action","monsterinsights_vue_get_profile"),e.append("nonce",s["a"].prototype.$mi.nonce),D.a.post(s["a"].prototype.$mi.ajax,e).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't load authentication details. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},N=function(t){return new Promise((function(e){var n=new FormData;n.append("action","monsterinsights_maybe_authenticate"),n.append("nonce",s["a"].prototype.$mi.nonce),t&&n.append("isnetwork",!0),D.a.post(s["a"].prototype.$mi.ajax,n).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't authenticate. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},L=function(t){return new Promise((function(e){var n=new FormData;n.append("action","monsterinsights_maybe_reauthenticate"),n.append("nonce",s["a"].prototype.$mi.nonce),t&&n.append("isnetwork",!0),D.a.post(s["a"].prototype.$mi.ajax,n).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't reauthenticate. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},I=function(t){return new Promise((function(e){var n=new FormData;n.append("action","monsterinsights_maybe_verify"),n.append("nonce",s["a"].prototype.$mi.nonce),n.append("isnetwork",t),D.a.post(s["a"].prototype.$mi.ajax,n).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't verify credentials. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},U=function(t,e,n){return new Promise((function(o){var i=new FormData;i.append("action","monsterinsights_maybe_delete"),i.append("nonce",s["a"].prototype.$mi.nonce),i.append("isnetwork",e),n&&i.append("forcedelete",!0),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(n){n.data.success&&t.commit("AUTH_DELETED",e),o(n.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't deauthenticate. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},R=function(t,e,n){return new Promise((function(o){var i=new FormData;i.append("action","monsterinsights_update_manual_ua"),i.append("manual_ua_code",e),i.append("nonce",s["a"].prototype.$mi.nonce),n&&i.append("isnetwork",n),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(s){t.commit("MANUAL_UA_UPDATE",e,n),o(s.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't save settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Settings not saved.","google-analytics-for-wordpress")})}))}))},M={fetchAuth:A,getAuthRedirect:N,getReAuthRedirect:L,verifyAuth:I,deleteAuth:U,updateManualUa:R},H=function(t){var e=M.fetchAuth();e.then((function(e){e&&t.commit("AUTH_UPDATED",e)})).catch((function(t){console.error(t)}))},B=function(t,e){return M.getAuthRedirect(e)},F=function(t,e){return M.getReAuthRedirect(e)},V=function(t,e){return M.verifyAuth(e)},Y=function(t,e){return M.deleteAuth(t,e.network,e.force)},K=function(t,e){return M.updateManualUa(t,e.ua,e.network)},W={getAuth:H,doAuth:B,doReAuth:F,verifyAuth:V,deleteAuth:Y,updateManualUa:K},G=function(t){return t.auth},q={auth:G},Z=function(t,e){t.auth=e},J=function(t,e){e?(t.auth.network_manual_ua=t.auth.network_ua,t.auth.network_ua=!1,t.auth.network_viewname=!1):(t.auth.manual_ua=t.auth.ua,t.auth.ua=!1,t.auth.viewname=!1)},Q=function(t,e,n){n?t.auth.network_manual_ua=e:t.auth.manual_ua=e},X={AUTH_UPDATED:Z,AUTH_DELETED:J,MANUAL_UA_UPDATE:Q},z={auth:{ua:"",viewname:"",network_ua:"",network_viewname:""}},tt={namespaced:!0,state:z,actions:W,getters:q,mutations:X},et=(n("c975"),function(){return new Promise((function(t){var e=new FormData;e.append("action","monsterinsights_vue_get_addons"),e.append("network",s["a"].prototype.$mi.network),e.append("nonce",s["a"].prototype.$mi.nonce),D.a.post(s["a"].prototype.$mi.ajax,e).then((function(e){t(e.data)}))}))}),nt=function(t,e){return new Promise((function(n,o){var i=new FormData;i.append("action","monsterinsights_install_addon"),i.append("nonce",s["a"].prototype.$mi.install_nonce),i.append("plugin",e.url),t.rootState.$_app.ftp_form.hostname&&i.append("hostname",t.rootState.$_app.ftp_form.hostname),t.rootState.$_app.ftp_form.username&&i.append("username",t.rootState.$_app.ftp_form.username),t.rootState.$_app.ftp_form.password&&i.append("password",t.rootState.$_app.ftp_form.password),t.rootState.$_app.ftp_form.connection_type&&i.append("connection_type",t.rootState.$_app.ftp_form.connection_type),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(o){o.data.form?t.commit("$_app/SHOW_FTP_FORM",{action:"$_addons/installAddon",data:e},{root:!0}):o.data.error?s["a"].prototype.$mi_error_toast({title:o.data.error}):(t.commit("ADDON_INSTALLED",{slug:e.slug,basename:o.data.plugin}),ot(t,e)),n(o.data)})).catch((function(t){if(o(t),t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install addon. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not installed.","google-analytics-for-wordpress")})}))}))},st=function(t){return new Promise((function(e,n){var o=new FormData,i=s["a"].prototype.$addQueryArg(s["a"].prototype.$mi.ajax,"page","monsterinsights-onboarding");o.append("action","monsterinsights_onboarding_wpforms_install"),o.append("nonce",s["a"].prototype.$mi.install_nonce),D.a.post(i,o).then((function(n){n.data.error?s["a"].prototype.$mi_error_toast({title:n.data.error}):t.commit("ADDON_INSTALLED",{slug:"wpforms-lite",basename:""}),e(n.data)})).catch((function(t){if(n(t),t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install WPForms. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. WPForms not installed.","google-analytics-for-wordpress")})}))}))},ot=function(t,e){return new Promise((function(n,o){var i=new FormData;i.append("action","monsterinsights_activate_addon"),i.append("nonce",s["a"].prototype.$mi.activate_nonce),i.append("isnetwork",s["a"].prototype.$mi.network),i.append("plugin",e.basename),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(o){o.data.error?s["a"].prototype.$mi_error_toast({title:o.data.error}):t.commit("ADDON_ACTIVATED",e.slug),n(o.data)})).catch((function(t){if(o(t),t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't activate addon. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not activated.","google-analytics-for-wordpress")})}))}))},it=function(t,e){return new Promise((function(n,o){var i=new FormData;i.append("action","monsterinsights_deactivate_addon"),i.append("nonce",s["a"].prototype.$mi.deactivate_nonce),i.append("isnetwork",s["a"].prototype.$mi.network),i.append("plugin",e.basename),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(o){o.data.error?s["a"].prototype.$mi_error_toast({title:o.data.error}):t.commit("ADDON_DEACTIVATED",e.slug),n(o.data)})).catch((function(t){if(o(t),t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't deactivate addon. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not deactivated.","google-analytics-for-wordpress")})}))}))},at=function(t,e){return new Promise((function(n,o){var i=new FormData;i.append("action","monsterinsights_vue_install_plugin"),i.append("slug",e),i.append("nonce",s["a"].prototype.$mi.nonce),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(o){o.data.error?s["a"].prototype.$mi_error_toast({title:o.data.error}):t.commit("ADDON_INSTALLED",{slug:e}),n(o.data)})).catch((function(t){if(o(t),t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install plugin. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Plugin not installed.","google-analytics-for-wordpress")})}))}))},rt={fetchAddons:et,installAddon:nt,activateAddon:ot,deactivateAddon:it,installWPForms:st,installPlugin:at},ct=function(t){return new Promise((function(e){var n=rt.fetchAddons();n.then((function(n){n&&(t.commit("ADDONS_UPDATED",n),lt(t)),e(!0)})).catch((function(t){console.error(t),e(!1)}))}))},lt=function(t){if(t.dispatch("$_app/removeNotice","google_amp_addon",{root:!0}),t.dispatch("$_app/removeNotice","instant_articles_addon",{root:!0}),ut(t,"amp")&&!ut(t,"google_amp")){var e=t.rootGetters["$_app/mi"].install_amp_url,n=e.indexOf("activate")>0?Object(c["a"])("Activate","google-analytics-for-wordpress"):Object(c["a"])("Install","google-analytics-for-wordpress"),o=Object(c["d"])(Object(c["a"])("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","google-analytics-for-wordpress"),'<a target="_blank" href="'+s["a"].prototype.$getUrl("settings-panel","amp-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-google-amp-addon/")+'">',"</a>");s["a"].prototype.$mi.install_plugins&&(o=Object(c["d"])(Object(c["a"])("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","google-analytics-for-wordpress"),'<a href="'+e+'">',n,"</a>",'<a target="_blank" href="'+s["a"].prototype.$getUrl("settings-panel","amp-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-google-amp-addon/")+'">',"</a>")),t.dispatch("$_app/addNotice",{id:"google_amp_addon",content:o,type:"error"},{root:!0})}if(ut(t,"facebook-instant-articles")&&!ut(t,"instant_articles")){var i=t.rootGetters["$_app/mi"].install_fbia_url,a=i.indexOf("activate")>0?Object(c["a"])("Activate","google-analytics-for-wordpress"):Object(c["a"])("Install","google-analytics-for-wordpress"),r=Object(c["d"])(Object(c["a"])("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","google-analytics-for-wordpress"),'<a target="_blank" href="'+s["a"].prototype.$getUrl("settings-panel","fbia-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-facebook-instant-articles-addon/")+'">',"</a>");s["a"].prototype.$mi.install_plugins&&(r=Object(c["d"])(Object(c["a"])("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","google-analytics-for-wordpress"),'<a href="'+i+'">',a,"</a>",'<a target="_blank" href="'+s["a"].prototype.$getUrl("settings-panel","fbia-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-facebook-instant-articles-addon/")+'">',"</a>")),t.dispatch("$_app/addNotice",{id:"instant_articles_addon",content:r,type:"error"},{root:!0})}},ut=function(t,e){return!!t.state.addons[e]&&t.state.addons[e].active},pt=function(t,e){return rt.installAddon(t,e)},dt=function(t,e){return rt.installPlugin(t,e.slug)},ft=function(t,e){return rt.activateAddon(t,e).then((function(){lt(t)}))},ht=function(t,e){return rt.deactivateAddon(t,e).then((function(){lt(t)}))},mt=function(t){return rt.installWPForms(t)},gt={getAddons:ct,installAddon:pt,activateAddon:ft,deactivateAddon:ht,installWPForms:mt,installPlugin:dt},_t=(n("4e82"),n("ac1f"),n("841c"),function(t){return t.addons}),bt=function(t){return t.sort},vt=function(t){return t.search},yt={addons:_t,sort:bt,search:vt},wt=function(t,e){s["a"].set(t,"addons",e)},Ot=function(t,e){t.addons[e].active=!0},Ct=function(t,e){t.addons[e].active=!1},$t=function(t,e){t.addons[e.slug].installed=!0,e.basename&&(t.addons[e.slug].basename=e.basename)},jt=function(t,e){t.sort=e},kt=function(t,e){t.search=e},Et={ADDONS_UPDATED:wt,ADDON_ACTIVATED:Ot,ADDON_DEACTIVATED:Ct,ADDON_INSTALLED:$t,UPDATE_SORT:jt,UPDATE_SEARCH:kt},Pt={addons:{},search:""},xt={namespaced:!0,state:Pt,actions:gt,getters:yt,mutations:Et},Tt=n("7220"),St=function(){return new Promise((function(t){var e=s["a"].prototype.$mi.ajax,n=new FormData;n.append("action","monsterinsights_vue_get_notifications"),n.append("nonce",s["a"].prototype.$mi.nonce),D.a.post(e,n).then((function(e){if(!e.data.success)return!1;t(e.data.data)})).catch((function(){return!1}))}))},Dt=function(t){return new Promise((function(e){var n=s["a"].prototype.$mi.ajax,o=new FormData;o.append("action","monsterinsights_notification_dismiss"),o.append("nonce",s["a"].prototype.$mi.nonce),o.append("id",t),D.a.post(n,o).then((function(t){e(t.data)})).catch((function(){return!1}))}))},At={fetchNotifications:St,dismissNotification:Dt},Nt=function(t){At.fetchNotifications().then((function(e){e.notifications&&e.dismissed&&t.commit("NOTIFICATIONS_UPDATED",e),e.view_url&&t.commit("NOTIFICATIONS_URL_UPDATED",e.view_url),e.sidebar_url&&t.commit("NOTIFICATIONS_SIDEBAR_URL_UPDATED",e.sidebar_url)})).catch((function(t){console.error(t)}))},Lt=function(t,e){return new Promise((function(n,s){At.dismissNotification(e).then((function(s){s&&(t.commit("NOTIFICATION_DISMISSED",e),n(!0))})).catch((function(t){console.error(t),s(t)}))}))},It={getNotifications:Nt,dismissNotification:Lt},Ut=function(t){return t.notifications},Rt=function(t){return t.dismissed},Mt=function(t){return t.view_url},Ht=function(t){return t.sidebar_url},Bt={notifications:Ut,dismissed:Rt,view_url:Mt,sidebar_url:Ht},Ft=(n("4160"),n("a434"),n("159b"),function(t,e){t.notifications=e.notifications,t.dismissed=e.dismissed}),Vt=function(t,e){t.view_url=e},Yt=function(t,e){t.sidebar_url=e},Kt=function(t,e){t.notifications.forEach((function(n,s){n.id===e&&(t.notifications.splice(s,1),t.dismissed.splice(0,0,n)),"all"===e&&t.dismissed.splice(0,0,n)})),"all"===e&&(t.notifications=[])},Wt={NOTIFICATIONS_UPDATED:Ft,NOTIFICATIONS_URL_UPDATED:Vt,NOTIFICATIONS_SIDEBAR_URL_UPDATED:Yt,NOTIFICATION_DISMISSED:Kt},Gt={notifications:[],dismissed:[],view_url:"",sidebar_url:""},qt={namespaced:!0,state:Gt,actions:It,getters:Bt,mutations:Wt},Zt=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"inline";return new Promise((function(e){var n=s["a"].prototype.$mi.ajax,o=new FormData;o.append("action","monsterinsights_get_popular_posts_themes"),o.append("nonce",s["a"].prototype.$mi.nonce),o.append("type",t),D.a.post(n,o).then((function(t){if(!t.data.success)return!1;e(t.data.data)})).catch((function(){return!1}))}))},Jt=function(t,e){return new Promise((function(t){var n=s["a"].prototype.$mi.ajax,o=new FormData;o.append("action","monsterinsights_vue_popular_posts_update_theme_setting"),o.append("nonce",s["a"].prototype.$mi.nonce),o.append("type",e.type),o.append("theme",e.theme),o.append("object",e.object),o.append("key",e.key),o.append("value",e.value),D.a.post(n,o).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't save settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("Network error encountered. Settings not saved.","google-analytics-for-wordpress")})}))}))},Qt={fetchThemes:Zt,updateThemeSetting:Jt},Xt=function(t,e){Qt.fetchThemes(e).then((function(n){n.themes&&t.commit("THEMES_UPDATED",{themes:n.themes,type:e})})).catch((function(t){console.error(t)}))},zt=function(t,e){t.commit("THEME_STYLE_UPDATE",e),t.commit("$_settings/SETTINGS_SAVE_START",!0,{root:!0});var n=Qt.updateThemeSetting(t,e);return n.then((function(){t.commit("$_settings/SETTINGS_SAVE_END",!0,{root:!0})})),n},te=function(t,e){e.type&&"undefined"!==typeof e.key&&t.commit("PREVIEW_UPDATED",e)},ee={getThemes:Xt,updatePreview:te,updateThemeSetting:zt},ne=function(t){return t.themes_inline},se=function(t){return t.themes_widget},oe=function(t){return t.themes_products},ie=function(t){return t.theme_preview_inline},ae=function(t){return t.theme_preview_widget},re=function(t){return t.theme_preview_products},ce={themes_inline:ne,themes_widget:se,themes_products:oe,theme_preview_inline:ie,theme_preview_widget:ae,theme_preview_products:re},le=function(t,e){e.type&&"undefined"!==typeof t["themes_"+e.type]&&(t["themes_"+e.type]=e.themes)},ue=function(t,e){e.type&&"undefined"!==typeof t["theme_preview_"+e.type]&&(t["theme_preview_"+e.type]=e.key)},pe=function(t,e){e.type&&e.theme&&e.object&&e.key&&e.value&&"undefined"!==typeof t["themes_"+e.type]&&(t["themes_"+e.type][e.theme]["styles"][e.object][e.key]=e.value)},de={THEMES_UPDATED:le,PREVIEW_UPDATED:ue,THEME_STYLE_UPDATE:pe},fe={themes_inline:{},themes_widget:{},themes_products:{},theme_preview_inline:"",theme_preview_widget:"",theme_preview_products:""},he={namespaced:!0,state:fe,actions:ee,getters:ce,mutations:de},me=function(t){t.commit("INIT")},ge=function(t){t.commit("BLOCK_APP")},_e=function(t){t.commit("UNBLOCK_APP")},be=function(t,e){t.commit("ADD_NOTICE",e)},ve=function(t,e){t.commit("REMOVE_NOTICE",e)},ye=function(t){t.commit("RESET_NOTICES")},we={init:me,block:ge,unblock:_e,addNotice:be,removeNotice:ve,resetNotices:ye},Oe=function(t){return t.blocked},Ce=function(t){return t.notices},$e=function(t){return t.mi},je=function(t){return t.ftp_form},ke={blocked:Oe,notices:Ce,mi:$e,ftp_form:je},Ee=function(){},Pe=function(t){t.blocked=!0},xe=function(t){t.blocked=!1},Te=function(t,e){e.id&&s["a"].set(t.notices,e.id,e)},Se=function(t,e){t.notices[e]&&s["a"].delete(t.notices,e)},De=function(t){t.notices={}},Ae=function(t,e){t.ftp_form.hostname=e},Ne=function(t,e){t.ftp_form.username=e},Le=function(t,e){t.ftp_form.password=e},Ie=function(t,e){t.ftp_form.connection_type=e},Ue=function(t,e){t.ftp_form.visible=!0,t.ftp_form.action=e.action,t.ftp_form.data=e.data},Re=function(t){t.ftp_form.visible=!1},Me={INIT:Ee,BLOCK_APP:Pe,UNBLOCK_APP:xe,ADD_NOTICE:Te,REMOVE_NOTICE:Se,RESET_NOTICES:De,UPDATE_HOSTNAME:Ae,UPDATE_USERNAME:Ne,UPDATE_PASSWORD:Le,UPDATE_CONNECTION_TYPE:Ie,SHOW_FTP_FORM:Ue,HIDE_FTP_FORM:Re},He={blocked:!1,notices:{},mi:window.monsterinsights?window.monsterinsights:{},ftp_form:{hostname:"",username:"",password:"",connection_type:"ftp",visible:!1,action:"",data:{}}},Be={namespaced:!0,state:He,actions:we,getters:ke,mutations:Me},Fe=function(t){t.subscribe((function(e,n){if("$_app/INIT"===e.type){var s=n["$_app"].mi.versions;s.php_version_below_54?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! PHP Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("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.","google-analytics-for-wordpress"),s.php_version,"7.4"),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating PHP","google-analytics-for-wordpress"),link:s.php_update_link},dismissable:!0,id:"php_update_54"}):s.wp_version_below_46?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! WordPress Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("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.","google-analytics-for-wordpress"),s.wp_version),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating WordPress","google-analytics-for-wordpress"),link:s.wp_update_link},dismissable:!0,id:"wp_update_46"}):s.php_version_below_56?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! PHP Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("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.","google-analytics-for-wordpress"),s.php_version,"7.4"),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating PHP","google-analytics-for-wordpress"),link:s.php_update_link},dismissable:!0,id:"php_update_56"}):s.wp_version_below_49&&t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! WordPress Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("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.","google-analytics-for-wordpress"),s.wp_version),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating WordPress","google-analytics-for-wordpress"),link:s.wp_update_link},dismissable:!0,id:"wp_update_49"})}}))},Ve=Fe;s["a"].use(o["a"]);var Ye=[Ve];e["a"]=new o["a"].Store({modules:{$_app:Be,$_license:T,$_auth:tt,$_addons:xt,$_settings:Tt["a"],$_notifications:qt,$_popularposts:he},plugins:Ye})},"46a2":function(t,e,n){},"470e":function(t,e,n){"use strict";var s=n("a1d2"),o=n.n(s);o.a},"48c7":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.noauth?t._e():n("div",{staticClass:"monsterinsights-upsell-overlay"},[n("div",{staticClass:"monsterinsights-upsell-top"},[t.upsellData.title?n("h3",{domProps:{textContent:t._s(t.upsellData.title)}}):t._e(),t.upsellData.subtitle?n("p",{staticClass:"monsterinsights-upsell-subtitle",domProps:{textContent:t._s(t.upsellData.subtitle)}}):t._e()]),n("div",{staticClass:"monsterinsights-upsell-content"},[t.upsellData.features?n("ul",t._l(t.upsellData.features,(function(e,s){return n("li",{key:s,domProps:{textContent:t._s(e)}})})),0):t._e(),n("div",{staticClass:"monsterinsights-center"},[n("a",{staticClass:"monsterinsights-button",attrs:{href:t.upgrade_link,target:"_blank"},domProps:{textContent:t._s(t.text_upsell_button)}})])])])},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("e439"),n("dbb4"),n("b64b"),n("159b"),n("fc11")),a=n("2f62"),r=n("561c");function c(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function l(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?c(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var u={name:"ReportUpsellOverlay",props:{report:String},data:function(){return{upgrade_link:this.$getUpgradeUrl("report",this.report),text_upsell_button:Object(r["a"])("Upgrade to MonsterInsights Pro","google-analytics-for-wordpress")}},computed:l({},Object(a["b"])({noauth:"$_reports/noauth"}),{upsellData:function(){return this.$mi_get_upsell_content(this.report)}})},p=u,d=n("2877"),f=Object(d["a"])(p,s,o,!1,null,null,null);e["a"]=f.exports},"4bdc":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-navigation-bar"},[n("div",{staticClass:"monsterinsights-container"},[t._t("default")],2)])},o=[],i={name:"TheAppNavigation"},a=i,r=n("2877"),c=Object(r["a"])(a,s,o,!1,null,null,null);e["a"]=c.exports},5443:function(t,e,n){"use strict";var s=n("0f8f"),o=n.n(s);o.a},"54b6":function(t,e,n){"use strict";var s={isThemeAvailable:function(t){return"lite"===t},canaccess:function(){return!1}};e["a"]=s},"5eda":function(t,e,n){},"6d70":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("fieldset",[n("div",{staticClass:"monsterinsights-settings-input-radio"},t._l(t.options,(function(e){return n("span",{key:e.value},[n("label",{class:t.labelClass(e),attrs:{for:"monsterinsights-settings-radio-"+t.name+"["+e.value+"]"}},[n("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.titleClass(e.value)}),n("input",{attrs:{id:"monsterinsights-settings-radio-"+t.name+"["+e.value+"]",type:"radio",name:t.name,autocomplete:"off",readonly:t.disabled||e.level&&!t.optionAvailable(e.level)},domProps:{value:e.value,checked:t.isChecked(e.value)},on:{change:t.updateSetting}}),n("span",{staticClass:"monsterinsights-settings-radio-text",domProps:{innerHTML:t._s(e.label)}}),e.level?n("PopularPostsProPill",{attrs:{level:e.level}}):t._e()],1),t.$slots[e.value]&&t.isChecked(e.value)?n("span",{staticClass:"monsterinsights-radio-sub-panel"},[t.isChecked(e.value)?t._t(e.value):t._e()],2):t._e()])})),0)])},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("b0c0"),n("e439"),n("dbb4"),n("b64b"),n("159b"),n("fc11")),a=n("2f62"),r=n("17be"),c=n("54b6");function l(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function u(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?l(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var p={name:"SettingsInputRadio",components:{PopularPostsProPill:r["a"]},props:{options:Array,name:String,auth_disabled:{type:Boolean,default:!0}},data:function(){return{is_loading:!1,has_error:!1}},computed:u({},Object(a["b"])({settings:"$_settings/settings",auth:"$_auth/auth",license:"$_license/license",license_network:"$_license/license_network"}),{has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},tooltip_data:function(){return{content:this.disabled?this.$mi_need_to_auth:"",autoHide:!1,trigger:"hover focus click"}},disabled:function(){return!!this.auth_disabled&&!this.has_ua},licenseType:function(){return this.$mi.network?this.license_network.type:this.license.type}}),methods:{optionAvailable:function(t){return c["a"].canaccess(this.licenseType,t)},updateSetting:function(t){var e=this;if(this.disabled)return!1;this.$emit("change",t.target.value),this.$mi_saving_toast({}),this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:t.target.value}).then((function(n){n.success?(e.$emit("updated",t.target.value),e.$mi_success_toast({})):e.$mi_error_toast({})}))},titleClass:function(t){var e="monsterinsights-styled-radio";return this.isChecked(t)&&(e+=" monsterinsights-styled-radio-checked"),e},labelClass:function(t){var e="";return this.isChecked(t.value)&&(e+=" monsterinsights-styled-radio-label-checked"),t.level&&!this.optionAvailable(t.level)&&(e+=" monsterinsights-styled-radio-label-disabled"),e},isChecked:function(t){return this.settings[this.name]?t===this.settings[this.name]:t===this.options[0].value}}},d=p,f=n("2877"),h=Object(f["a"])(d,s,o,!1,null,null,null);e["a"]=h.exports},"6ffa":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-settings-input-repeater"},[t.rows.length?n("div",{staticClass:"monsterinsights-settings-input-repeater-labels monsterinsights-settings-input-repeater-row"},t._l(t.structure,(function(e,s){return n("label",{key:s,domProps:{textContent:t._s(e.label)}})})),0):t._e(),t._l(t.rows,(function(e,s){return[n("div",{key:s,staticClass:"monsterinsights-settings-input-repeater-row"},[t._l(t.structure,(function(e,o){return n("span",{key:o,class:t.errorClass(s,e.name)},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.rows[s][e.name],expression:"rows[index][input.name]"}],attrs:{type:"text",readonly:t.disabled},domProps:{value:t.rows[s][e.name]},on:{change:function(n){return t.updateSetting(!1,e.pattern)},input:function(n){n.target.composing||t.$set(t.rows[s],e.name,n.target.value)}}})])})),n("button",{attrs:{title:t.text_remove_row},on:{click:function(e){return e.preventDefault(),t.removeRow(s)}}},[n("i",{class:t.delete_icon})])],2),t.has_errors[s]?n("label",{key:s+"error",staticClass:"monsterinsights-error"},[n("i",{staticClass:"monstericon-warning-triangle"}),n("span",{domProps:{innerHTML:t._s(t.has_errors[s])}})]):t._e()]})),t.show_max_item_error?n("label",{staticClass:"monsterinsights-error"},[n("i",{staticClass:"monstericon-warning-triangle"}),n("span",{domProps:{innerHTML:t._s(t.max_item_error_notice)}})]):t._e(),t.show_min_item_error?n("label",{staticClass:"monsterinsights-error"},[n("i",{staticClass:"monstericon-warning-triangle"}),n("span",{domProps:{innerHTML:t._s(t.min_item_error_notice)}})]):t._e(),n("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.button_class,domProps:{textContent:t._s(t.text_add_path)},on:{click:function(e){return e.preventDefault(),t.addRow(e)}}})],2)},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("c975"),n("a434"),n("b0c0"),n("a9e3"),n("e439"),n("dbb4"),n("b64b"),n("159b"),n("fc11")),a=n("2b0e"),r=n("561c"),c=n("2f62");function l(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function u(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?l(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var p={name:"SettingsInputRepeater",props:{structure:Array,name:String,text_add:String,delete_icon:{type:String,default:"monstericon-times-circle"},max_items:{type:Number,default:-1},min_items:{type:Number,default:-1},max_item_error_notice:{type:String,default:Object(r["a"])("You can add maximum 5 items.","google-analytics-for-wordpress")},min_item_error_notice:{type:String,default:Object(r["a"])("At least 0 item required.","google-analytics-for-wordpress")}},data:function(){return{text_add_path:this.text_add?this.text_add:Object(r["a"])("Add Another Link Path","google-analytics-for-wordpress"),text_remove_row:Object(r["a"])("Remove row","google-analytics-for-wordpress"),has_errors:[],show_max_item_error:!1,show_min_item_error:!1}},computed:u({},Object(c["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{rows:{get:function(){return this.settings[this.name]||a["a"].set(this.settings,this.name,[]),JSON.parse(JSON.stringify(this.settings[this.name]))},set:function(){this.updateSetting(!1)}},has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},disabled:function(){return!this.has_ua},tooltip_data:function(){return{content:this.has_ua?"":this.$mi_need_to_auth,autoHide:!1,trigger:"hover focus click"}},button_class:function(){var t="monsterinsights-button";return this.disabled&&(t+=" monsterinsights-button-disabled"),t}}),methods:{updateSetting:function(t){var e=this;return!this.disabled&&(!(!t&&!this.validateSettings())&&(this.$mi_saving_toast({}),void this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:this.rows}).then((function(t){t.success?e.$mi_success_toast({}):e.$mi_error_toast({})}))))},addRow:function(){var t={};if(this.rows.length!==this.max_items){for(var e in this.structure)t[this.structure[e]["name"]]="";this.rows.push(t),this.rows.length!==this.min_items&&(this.show_min_item_error=!1),this.updateSetting(!0)}else this.show_max_item_error=!0},removeRow:function(t){this.rows.length!==this.min_items?(this.rows&&this.rows instanceof Array?this.rows.splice(t,1):this.rows="",this.rows.length!==this.max_items&&(this.show_max_item_error=!1),this.updateSetting()):this.show_min_item_error=!0},validateSettings:function(){var t=this;this.has_errors=[];var e={};for(var n in this.rows)for(var s in this.structure){if(""===this.rows[n][this.structure[s]["name"]]){this.has_errors[n]=Object(r["d"])(Object(r["a"])("%s can't be empty.","google-analytics-for-wordpress"),"<strong>"+this.structure[s]["label"]+"</strong>");break}if(this.structure[s]["pattern"]){var o=this.structure[s]["pattern"].test(this.rows[n][this.structure[s]["name"]]);if(!1===o){this.has_errors[n]=this.structure[s]["error"];break}}this.structure[s]["prevent_duplicates"]&&function(){"undefined"===typeof e[t.structure[s]["name"]]&&(e[t.structure[s]["name"]]=[]),e[t.structure[s]["name"]].push(t.rows[n][t.structure[s]["name"]]);var o=e[t.structure[s]["name"]],i=function(){return o.filter((function(t,e){return o.indexOf(t)===e}))};o.length!==i(o).length&&(t.has_errors[n]=Object(r["a"])("Duplicate values are not allowed.","google-analytics-for-wordpress"))}()}return 0===this.has_errors.length},errorClass:function(t,e){return""===this.rows[t][e]?"":this.has_errors[t]?"monsterinsights-input-error":"monsterinsights-input-valid"}}},d=p,f=n("2877"),h=Object(f["a"])(d,s,o,!1,null,null,null);e["a"]=h.exports},7220:function(t,e,n){"use strict";n("4795"),n("b0c0"),n("d3b7");var s=n("bc3a"),o=n.n(s),i=n("2b0e"),a=n("561c"),r=function(t){return new Promise((function(e){var n=new FormData;n.append("action","monsterinsights_vue_get_settings"),n.append("nonce",i["a"].prototype.$mi.nonce),o.a.post(i["a"].prototype.$mi.ajax,n).then((function(t){i["a"].prototype.$swal.close(),e(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var n=e.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't load settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),n.status,n.statusText)})}i["a"].prototype.$mi_error_toast({title:Object(a["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},c=function(t,e){return new Promise((function(t){var n=new FormData;n.append("action","monsterinsights_vue_update_settings"),n.append("nonce",i["a"].prototype.$mi.nonce),n.append("setting",e.name),!1!==e.value&&(Array===e.value.constructor?n.append("value",JSON.stringify(e.value)):n.append("value",e.value)),o.a.post(i["a"].prototype.$mi.ajax,n).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't save settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}i["a"].prototype.$mi_error_toast({title:Object(a["a"])("Network error encountered. Settings not saved.","google-analytics-for-wordpress")})}))}))},l=function(t,e){return new Promise((function(t){var n=new FormData;n.append("action","monsterinsights_vue_update_settings_bulk"),n.append("nonce",i["a"].prototype.$mi.nonce),n.append("settings",JSON.stringify(e)),o.a.post(i["a"].prototype.$mi.ajax,n).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't save settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}i["a"].prototype.$mi_error_toast({title:Object(a["a"])("Network error encountered. Settings not saved.","google-analytics-for-wordpress")})}))}))},u={fetchSettings:r,saveSettings:c,saveBulkSettings:l},p=function(t){u.fetchSettings(t).then((function(e){t.commit("SETTINGS_UPDATED",e)})).catch((function(t){console.error(t)}))},d=function(t,e){t.commit("SETTING_UPDATE",e),t.commit("SETTINGS_SAVE_START");var n=u.saveSettings(t,e);return n.then((function(){t.commit("SETTINGS_SAVE_END")})),n},f=function(t,e){t.commit("SETTINGS_BULK_UPDATE",e),t.commit("SETTINGS_SAVE_START");var n=u.saveBulkSettings(t,e);return n.then((function(){t.commit("SETTINGS_SAVE_END")})),n},h=function(t,e){t.commit("SETTING_UPDATE_UNDO",e),t.commit("SETTINGS_SAVE_START");var n=u.saveSettings(t,e);return n.then((function(){t.commit("SETTINGS_SAVE_END")})),n},m=function(t,e){t.commit("SETTING_UPDATE_REDO",e),t.commit("SETTINGS_SAVE_START");var n=u.saveSettings(t,e);return n.then((function(){t.commit("SETTINGS_SAVE_END")})),n},g=function(t){t.commit("SETTINGS_SAVE_START"),i["a"].prototype.$mi_saving_toast({}),setTimeout((function(){t.commit("SETTINGS_SAVE_END"),i["a"].prototype.$mi_success_toast({})}),1e3)},_=function(t){t.dispatch("updateSettingsUndo",t.state.history[t.state.historyIndex-1])},b=function(t){t.dispatch("updateSettingsRedo",t.state.history[t.state.historyIndex+1])},v={getSettings:p,updateSettings:d,simulateSave:g,undo:_,redo:b,updateSettingsUndo:h,updateSettingsRedo:m,updateSettingsBulk:f},y=function(t){return t.settings},w=function(t){return t.history},O=function(t){return t.historyIndex},C={settings:y,history:w,historyIndex:O},$=(n("a434"),function(t,e){e.is_saving=!1,t.settings=e}),j=function(t,e){t.settings.is_saving=!0,t.history[t.historyIndex]&&t.history[t.historyIndex].name===e.name||(t.history.push({name:e.name,value:!!t.settings[e.name]&&t.settings[e.name]}),t.historyIndex++),t.historyIndex<t.history.length-1&&t.history.splice(t.historyIndex+1),t.history.push({name:e.name,value:e.value}),t.historyIndex++,i["a"].set(t.settings,e.name,e.value)},k=function(t,e){for(var n in t.settings.is_saving=!0,e)e.hasOwnProperty(n)&&i["a"].set(t.settings,n,e[n])},E=function(t,e){t.settings.is_saving=!0,t.historyIndex--,i["a"].set(t.settings,e.name,e.value)},P=function(t,e){t.settings.is_saving=!0,t.historyIndex++,i["a"].set(t.settings,e.name,e.value)},x=function(t){t.settings.is_saving=!0},T=function(t){t.settings.is_saving=!1},S={SETTINGS_UPDATED:$,SETTING_UPDATE:j,SETTINGS_SAVE_START:x,SETTINGS_SAVE_END:T,SETTING_UPDATE_UNDO:E,SETTING_UPDATE_REDO:P,SETTINGS_BULK_UPDATE:k},D={settings:{automatic_updates:"all"},history:[],historyIndex:-1};e["a"]={namespaced:!0,state:D,actions:v,getters:C,mutations:S}},7460:function(t,e,n){"use strict";n("c975"),n("a9e3"),n("4d63"),n("ac1f"),n("25f0"),n("466d"),n("5319");var s=n("2b0e"),o={install:function(t){window.monsterinsights&&(t.prototype.$mi=window.monsterinsights),t.prototype.$isPro=r,t.prototype.$addQueryArg=c,t.prototype.$getUrl=a,t.prototype.$getUpgradeUrl=i,t.prototype.$formatNumber=l}};function i(t,e,n){var s=a(t,e,n);return r()?s:"0"!==window.monsterinsights.shareasale_id?c(window.monsterinsights.shareasale_url,"urllink",s):s}function a(t,e,n){var o=r()?"proplugin":"liteplugin",i=r()?"my-account/":"lite/",a=s["a"].prototype.$mi.plugin_version;return t=t||"defaultmedium",e=e||"defaultcampaign",n=n||"https://www.monsterinsights.com/"+i,n=c(n,"utm_source",o),n=c(n,"utm_medium",t),n=c(n,"utm_campaign",e),n=c(n,"utm_content",a),n}function r(){return!1}function c(t,e,n){var s=new RegExp("([?&])"+e+"=.*?(&|#|$)","i");if(t.match(s))return t.replace(s,"$1"+e+"="+n+"$2");var o="";-1!==t.indexOf("#")&&(o=t.replace(/.*#/,"#"),t=t.replace(/#.*/,""));var i=-1!==t.indexOf("?")?"&":"?";return t+i+e+"="+n+o}function l(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;return"number"!==typeof t&&(t=Number(t||0)),t.toLocaleString("en-US",{maximumFractionDigits:e})}e["a"]=o},"7f78":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-addon"},[n("div",{staticClass:"monsterinsights-addon-top"},[t.addon.icon?n("div",{staticClass:"monsterinsights-addon-image"},[n("img",{staticClass:"monsterinsights-addon-thumb",attrs:{src:t.addon.icon,alt:t.addon.title}})]):t._e(),n("div",{staticClass:"monsterinsights-addon-text"},[n("h3",{staticClass:"monsterinsights-addon-title",domProps:{textContent:t._s(t.addonTitle)}}),t.addon.excerpt?n("p",{staticClass:"monsterinsights-addon-excerpt",domProps:{textContent:t._s(t.addon.excerpt)}}):t._e()])]),n("div",{class:t.actionsClass()},[n("div",{staticClass:"monsterinsights-interior"},[n("span",{staticClass:"monsterinsights-addon-status",domProps:{innerHTML:t._s(t.statusText())}}),n("div",{staticClass:"monsterinsights-addon-action"},["licensed"===t.addon.type?n("button",{staticClass:"monsterinsights-button",on:{click:function(e){return e.preventDefault(),t.clickAction(e)}}},[n("span",{domProps:{innerHTML:t._s(t.textButtonAction())}})]):n("a",{staticClass:"monsterinsights-button",attrs:{href:t.upgrade_url,target:"_blank"},domProps:{textContent:t._s(t.textButtonAction())}})])])])])},o=[],i=(n("c975"),n("ac1f"),n("5319"),n("561c")),a={name:"AddonBlock",props:{addon:Object,isAddon:{type:Boolean,default:!0}},data:function(){return{text_status:Object(i["a"])("Status: %s","google-analytics-for-wordpress"),text_upgrade:Object(i["a"])("Upgrade Now","google-analytics-for-wordpress"),upgrade_url:this.$getUpgradeUrl(),activating:!1,deactivating:!1,installing:!1}},computed:{addonTitle:function(){var t=this.addon.title;return 0===t.indexOf("MonsterInsights")&&(t=t.replace("MonsterInsights ","")),t}},methods:{actionsClass:function(){var t="monsterinsights-addon-message ";return"licensed"===this.addon.type?this.addon.active?t+="monsterinsights-addon-active":!1===this.addon.installed?t+="monsterinsights-addon-not-installed":t+="monsterinsights-addon-inactive":t+="monsterinsights-addon-not-available",t},statusText:function(){var t=Object(i["a"])("Not Installed","google-analytics-for-wordpress");return"licensed"!==this.addon.type?t=Object(i["a"])("Not Available","google-analytics-for-wordpress"):this.addon.active?t=this.$mi.network?Object(i["a"])("Network Active","google-analytics-for-wordpress"):Object(i["a"])("Active","google-analytics-for-wordpress"):this.addon.installed&&(t=Object(i["a"])("Inactive","google-analytics-for-wordpress")),Object(i["d"])(this.text_status,"<span>"+t+"</span>")},textButtonAction:function(){return"licensed"!==this.addon.type?Object(i["a"])("Upgrade Now","google-analytics-for-wordpress"):this.activating?Object(i["a"])("Activating...","google-analytics-for-wordpress"):this.deactivating?Object(i["a"])("Deactivating...","google-analytics-for-wordpress"):this.installing?Object(i["a"])("Installing...","google-analytics-for-wordpress"):this.addon.active?Object(i["a"])("Deactivate","google-analytics-for-wordpress"):this.addon.installed?Object(i["a"])("Activate","google-analytics-for-wordpress"):Object(i["a"])("Install","google-analytics-for-wordpress")},clickAction:function(){if(this.activating||this.deactivating||this.installing)return!1;this.addon.installed?this.addon.active?this.deactivateAddon():this.activateAddon():this.installAddon()},installAddon:function(){var t=this,e=this.isAddon?"$_addons/installAddon":"$_addons/installPlugin";this.installing=!0,this.$store.dispatch(e,this.addon).then((function(){t.installing=!1})).catch((function(){t.installing=!1}))},activateAddon:function(){var t=this;this.activating=!0,this.$store.dispatch("$_addons/activateAddon",this.addon).then((function(){t.activating=!1})).catch((function(){t.activating=!1}))},deactivateAddon:function(){var t=this;this.deactivating=!0,this.$store.dispatch("$_addons/deactivateAddon",this.addon).then((function(){t.deactivating=!1})).catch((function(){t.deactivating=!1}))}}},r=a,c=n("2877"),l=Object(c["a"])(r,s,o,!1,null,null,null);e["a"]=l.exports},"8c1c":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-not-authenticated-notice"},[n("h3",{domProps:{textContent:t._s(t.text_no_auth)}}),n("p",{domProps:{textContent:t._s(t.text_auth_label)}}),n("p",[n("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_button_reconnect)},on:{click:t.doReAuth}})])])},o=[],i=n("561c"),a={name:"ReportReAuth",data:function(){return{text_no_auth:Object(i["a"])("MonsterInsights encountered an error loading your report data","google-analytics-for-wordpress"),text_auth_label:Object(i["a"])("There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.","google-analytics-for-wordpress"),text_button_reconnect:Object(i["a"])("Reconnect MonsterInsights","google-analytics-for-wordpress")}},methods:{doReAuth:function(t){t.preventDefault();var e=this;this.$swal({type:"info",title:Object(i["a"])("Re-Authenticating","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading()}}),this.$store.dispatch("$_auth/doReAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(i["a"])("Error","google-analytics-for-wordpress"),text:t.data.message,confirmButtonText:Object(i["a"])("Ok","google-analytics-for-wordpress")})}))}}},r=a,c=n("2877"),l=Object(c["a"])(r,s,o,!1,null,null,null);e["a"]=l.exports},"93ec":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],staticClass:"monsterinsights-info",attrs:{tabindex:"0"}},[n("i",{staticClass:"monstericon monstericon-info-circle-regular"})])},o=[],i={name:"SettingsInfoTooltip",props:{content:String},data:function(){return{tooltip_data:{content:this.content,autoHide:!1,trigger:"hover focus click"}}}},a=i,r=n("2877"),c=Object(r["a"])(a,s,o,!1,null,null,null);e["a"]=c.exports},"9cc2":function(t,e,n){},"9d59":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-notices-area"},[n("div",{staticClass:"monsterinsights-container"},[n("slide-down-up",{attrs:{group:!0}},t._l(t.notices,(function(e,s){return n("div",{key:s,class:t.getNoticeClass(e.type)},[n("div",{staticClass:"monsterinsights-notice-inner"},[e.dismissable?n("button",{staticClass:"dismiss-notice",on:{click:function(e){return t.removeNotice(s)}}},[n("i",{staticClass:"monstericon-times"})]):t._e(),n("div",{staticClass:"notice-content"},[e.title?n("h2",{staticClass:"notice-title",domProps:{innerHTML:t._s(e.title)}}):t._e(),n("span",{domProps:{innerHTML:t._s(e.content)}}),e.button&&e.button.enabled?n("div",{staticClass:"monsterinsights-notice-button"},[n("a",{class:t.buttonClass(e.type),attrs:{target:"_blank",href:e.button.link},domProps:{textContent:t._s(e.button.text)}})]):t._e()])])])})),0)],1)])},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("e439"),n("dbb4"),n("b64b"),n("159b"),n("fc11")),a=n("2f62"),r=n("d98d");function c(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function l(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?c(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var u={name:"TheAppNotices",components:{SlideDownUp:r["a"]},computed:l({},Object(a["b"])({notices:"$_app/notices"})),methods:{removeNotice:function(t){this.$store.dispatch("$_app/removeNotice",t)},getNoticeClass:function(t){return"monsterinsights-notice monsterinsights-notice-"+t},buttonClass:function(t){var e="monsterinsights-button";return"success"===t&&(e+=" monsterinsights-button-green"),e}}},p=u,d=n("2877"),f=Object(d["a"])(p,s,o,!1,null,null,null);e["a"]=f.exports},a158:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return"tools-prettylinks-flow"!==t.route?n("header",{staticClass:"monsterinsights-header"},[n("the-floating-bar"),n("div",{staticClass:"monsterinsights-container"},[n("div",{staticClass:"monsterinsights-logo-area"},[n("img",{attrs:{src:t.logo,srcset:t.logo2x}})]),n("div",{staticClass:"monsterinsights-float-right"},[t._t("default")],2)])],1):t._e()},o=[],i=(n("b0c0"),function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("transition",{attrs:{name:"monsterinsights-slide"}},[t.showBar?n("div",{staticClass:"monsterinsights-floating-bar"},[n("span",{domProps:{innerHTML:t._s(t.barText)}}),n("button",{staticClass:"monsterinsights-floating-bar-close",on:{click:t.hideBar}},[n("span",{staticClass:"monstericon-times"})])]):t._e()])}),a=[],r=(n("4795"),n("c8cf"),n("561c")),c=n("bc3a"),l=n.n(c),u={name:"TheFloatingBar",data:function(){return{showBar:!1,barLink:this.$getUpgradeUrl("floatbar","upgrade")}},computed:{barText:function(){return Object(r["d"])(Object(r["a"])("You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.","google-analytics-for-wordpress"),"<span>","MonsterInsights","</span>",'<a href="'+this.barLink+'" target="_blank">',"</a>")}},methods:{hideBar:function(){this.showBar=!1;var t=new FormData;t.append("action","monsterinsights_hide_floatbar"),t.append("nonce",this.$mi.nonce),l.a.post(this.$mi.ajax,t)},getBarStatus:function(){var t=this,e=new FormData;e.append("action","monsterinsights_get_floatbar"),e.append("nonce",this.$mi.nonce),l.a.post(this.$mi.ajax,e).then((function(e){t.showBar=e.data.show})).catch((function(){t.showBar=!1}))}},mounted:function(){var t=this;setTimeout((function(){t.getBarStatus()}),1500)}},p=u,d=n("2877"),f=Object(d["a"])(p,i,a,!1,null,null,null),h=f.exports,m={name:"TheAppHeader",components:{TheFloatingBar:h},data:function(){return{logo:this.$mi.assets+"/img/logo-MonsterInsights.png",logo2x:this.$mi.assets+"/img/logo-MonsterInsights@2x.png 2x"}},computed:{route:function(){return this.$route.name}}},g=m,_=(n("014b"),Object(d["a"])(g,s,o,!1,null,"408df493",null));e["a"]=_.exports},a1d2:function(t,e,n){},a4cc:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-welcome-overlay",attrs:{id:t.id},on:{click:t.maybeClose}},[n("div",{staticClass:"monsterinsights-welcome-overlay-inner"},[n("button",{staticClass:"monsterinsights-overlay-close",on:{click:t.close}},[n("span",{staticClass:"monstericon-times"})]),n("div",{staticClass:"monsterinsights-welcome-overlay-content"},[t._t("default")],2)])])},o=[],i={name:"WelcomeOverlay",props:{id:String},methods:{close:function(){this.$emit("close",this.id)},maybeClose:function(t){t.target.classList.contains("monsterinsights-welcome-overlay")&&this.close()}}},a=i,r=n("2877"),c=Object(r["a"])(a,s,o,!1,null,null,null);e["a"]=c.exports},aa9f:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-settings-input-select"},[t.label?n("label",{attrs:{for:t.id}},[n("span",{staticClass:"monsterinsights-dark",domProps:{innerHTML:t._s(t.label)}}),t.description?n("span",{domProps:{innerHTML:t._s(t.description)}}):t._e(),t.tooltip?n("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e()],1):t._e(),n("div",{staticClass:"monsterinsights-settings-input-select-input"},[n("multiselect",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.disabled_tooltip,expression:"disabled_tooltip"}],attrs:{options:t.options,multiple:t.multiple,"track-by":"value",label:"label",searchable:!1,selectLabel:"",selectedLabel:"",deselectLabel:"",readonly:t.disabled},on:{input:t.updateSetting},scopedSlots:t._u([{key:"selection",fn:function(e){e.search;var s=e.remove,o=e.values;return[n("div",{staticClass:"multiselect__tags-wrap",attrs:{"data-text":t.addtext}},[t._l(o,(function(e,o){return[n("span",{key:o,class:t.tagClass(e)},[n("span",{domProps:{textContent:t._s(e.label)}}),n("i",{staticClass:"multiselect__tag-icon",attrs:{"aria-hidden":"true",tabindex:"0"},on:{keypress:function(n){return!n.type.indexOf("key")&&t._k(n.keyCode,"enter",13,n.key,"Enter")?null:(n.preventDefault(),s(e))},mousedown:function(t){return t.preventDefault(),s(e)}}})])]}))],2)]}}]),model:{value:t.selected,callback:function(e){t.selected=e},expression:"selected"}})],1)])},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("c975"),n("b0c0"),n("e439"),n("dbb4"),n("b64b"),n("159b"),n("fc11")),a=n("561c"),r=n("2f62"),c=n("8e5f"),l=n.n(c),u=n("93ec");function p(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function d(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?p(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):p(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var f={name:"SettingsInputSelect",components:{SettingsInfoTooltip:u["a"],Multiselect:l.a},props:{options:Array,forced:{type:Array,default:function(){return[]}},name:String,label:String,description:String,multiple:{type:Boolean,default:!1},tooltip:String,disabled:{type:Boolean,default:!1},addtext:String},data:function(){return{is_loading:!1,has_error:!1,id:"input-"+this.name,text_no_options:Object(a["a"])("No options available","google-analytics-for-wordpress")}},computed:d({},Object(r["b"])({settings:"$_settings/settings"}),{selected:{get:function(){var t=JSON.parse(JSON.stringify(this.forced));if(this.settings[this.name])for(var e in this.options)this.settings[this.name].indexOf(this.options[e].value)>=0&&this.notForced(this.options[e])&&t.push(this.options[e]);return t},set:function(){}},disabled_tooltip:function(){return{content:this.disabled?this.$mi_need_to_auth:"",autoHide:!1,trigger:"hover focus click"}}}),methods:{updateSetting:function(t){var e=this;if(this.disabled)return!1;this.$mi_saving_toast({});var n=[];for(var s in t)n.push(t[s].value);this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:n}).then((function(t){t.success?e.$mi_success_toast({}):e.$mi_error_toast({})}))},notForced:function(t){for(var e in this.forced)if(this.forced[e].value===t.value)return!1;return!0},tagClass:function(t){var e="multiselect__tag";return this.notForced(t)||(e+=" monsterinsights-tag-forced"),e}}},h=f,m=(n("470e"),n("2877")),g=Object(m["a"])(h,s,o,!1,null,"7262cc05",null);e["a"]=g.exports},ac39:function(t,e,n){},b333:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-settings-network-notice"},[t._m(0),n("div",{staticClass:"monsterinsights-network-message"},[t._t("default")],2)])},o=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"monsterinsights-bg-img monsterinsights-icon-warning"})])}],i={name:"SettingsNetworkNotice"},a=i,r=(n("5443"),n("2877")),c=Object(r["a"])(a,s,o,!1,null,"a9c27d52",null);e["a"]=c.exports},b52e:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.boxClass},[n("button",{staticClass:"monsterinsights-quick-links-label",on:{click:function(e){e.stopPropagation(),t.showMenu=!t.showMenu}}},[n("span",{staticClass:"monsterinsights-bg-img monsterinsights-quick-links-mascot"}),n("span",{staticClass:"monsterinsights-quick-link-title",domProps:{textContent:t._s(t.text_see_quick)}})]),n("transition-group",{staticClass:"monsterinsights-quick-links-menu",attrs:{tag:"div",name:"monsterinsights-staggered-fade"},on:{enter:t.enter,leave:t.leave}},[t.showMenu?t._l(t.menuItems,(function(e,s){return n("a",{key:e.key,class:t.linksClass(e.key),attrs:{href:e.link,"data-index":s,target:"_blank"}},[n("span",{class:e.icon}),n("span",{staticClass:"monsterinsights-quick-link-title",domProps:{innerHTML:t._s(e.tooltip)}})])})):t._e()],2)],1)},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("e439"),n("dbb4"),n("b64b"),n("159b"),n("4795"),n("fc11")),a=(n("ac39"),n("561c")),r=n("2f62");function c(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function l(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?c(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var u={name:"TheQuickLinks",data:function(){return{showMenu:!1,text_see_quick:Object(a["a"])("See Quick Links","google-analytics-for-wordpress")}},computed:l({},Object(r["b"])({license:"$_license/license",license_network:"$_license/license_network"}),{boxClass:function(){var t="monsterinsights-quick-links";return this.showMenu&&(t+=" monsterinsights-quick-links-open"),t},licenseLevel:function(){return this.$mi.network?this.license_network.type:this.license.type},showUpsell:function(){return"plus"===this.licenseLevel||"basic"===this.licenseLevel||""===this.licenseLevel},menuItems:function(){var t=[{icon:"monstericon-lightbulb",tooltip:Object(a["a"])("Suggest a Feature","google-analytics-for-wordpress"),link:this.$getUrl("quick-links","suggest-feature","https://www.monsterinsights.com/customer-feedback/"),key:"suggest"},{icon:"monstericon-wpbeginner",tooltip:Object(a["a"])("Join Our Community","google-analytics-for-wordpress"),link:"https://www.facebook.com/groups/wpbeginner/",key:"community"},{icon:"monstericon-life-ring",tooltip:Object(a["a"])("Support & Docs","google-analytics-for-wordpress"),link:this.$getUrl("quick-links","support","https://www.monsterinsights.com/docs/"),key:"support"}];return this.showUpsell&&t.push({icon:"monstericon-star",tooltip:Object(a["a"])("Upgrade to Pro &#187;","google-analytics-for-wordpress"),link:this.$getUpgradeUrl("quick-links","upgrade"),key:"upgrade"}),t}}),methods:{enter:function(t,e){var n=50*t.dataset.index;setTimeout((function(){t.classList.add("monsterinsights-show"),e()}),n)},leave:function(t,e){t.classList.remove("monsterinsights-show"),setTimeout((function(){e()}),200)},linksClass:function(t){return"monsterinsights-quick-links-menu-item monsterinsights-quick-links-item-"+t}}},p=u,d=n("2877"),f=Object(d["a"])(p,s,o,!1,null,null,null);e["a"]=f.exports},bd74:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-reports-infobox"},[t.title?n("div",{staticClass:"monsterinsights-report-title",domProps:{textContent:t._s(t.title)}}):t._e(),t.tooltip?n("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e(),n("div",{staticClass:"monsterinsights-reports-infobox-number",attrs:{title:t.value},domProps:{textContent:t._s(t.value)}}),n("div",{class:t.changeClass,domProps:{innerHTML:t._s(t.changeText)}}),t.days?n("div",{staticClass:"monsterinsights-reports-infobox-compare",domProps:{textContent:t._s(t.compare)}}):t._e()],1)},o=[],i=(n("a9e3"),n("561c")),a=n("93ec"),r={name:"ReportInfobox",components:{SettingsInfoTooltip:a["a"]},props:{title:String,value:{default:"0",type:String},days:Number,tooltip:String,change:Number,color:{default:"green",type:String},direction:{default:"up",type:String}},computed:{compare:function(){return Object(i["b"])("vs. Previous Day",Object(i["d"])("vs. Previous %s Days",this.days),this.days,"google-analytics-for-wordpress")},changeClass:function(){var t="monsterinsights-reports-infobox-prev ";return"undefined"===typeof this.change?t+" monsterinsights-prev-nochange":t+" monsterinsights-"+this.color},changeText:function(){return this.change?""===this.direction?this.change+"%":'<span class="monsterinsights-arrow monsterinsights-'+this.direction+" monsterinsights-"+this.color+'"></span> '+this.change+"%":Object(i["a"])("No change","google-analytics-for-wordpress")}}},c=r,l=n("2877"),u=Object(l["a"])(c,s,o,!1,null,null,null);e["a"]=u.exports},bef0:function(t,e,n){},c472:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"settings-input-text"},[t.label||t.description||t.tooltip?n("label",{attrs:{for:t.id}},[n("span",{staticClass:"monsterinsights-dark",domProps:{innerHTML:t._s(t.label)}}),t.description?n("span",{domProps:{innerHTML:t._s(t.description)}}):t._e(),t.showReset()?n("a",{staticClass:"monsterinsights-reset-default",attrs:{href:"#"},domProps:{textContent:t._s(t.text_reset)},on:{click:function(e){return e.preventDefault(),t.resetValue(e)}}}):t._e(),t.tooltip?n("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e()],1):t._e(),n("div",{staticClass:"settings-input-text-input"},["checkbox"===t.type?n("input",{directives:[{name:"model",rawName:"v-model",value:t.value,expression:"value"},{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],attrs:{id:t.id,name:t.name,placeholder:t.placeholder,readonly:t.disabled,type:"checkbox"},domProps:{checked:Array.isArray(t.value)?t._i(t.value,null)>-1:t.value},on:{change:[function(e){var n=t.value,s=e.target,o=!!s.checked;if(Array.isArray(n)){var i=null,a=t._i(n,i);s.checked?a<0&&(t.value=n.concat([i])):a>-1&&(t.value=n.slice(0,a).concat(n.slice(a+1)))}else t.value=o},t.inputUpdate]}}):"radio"===t.type?n("input",{directives:[{name:"model",rawName:"v-model",value:t.value,expression:"value"},{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],attrs:{id:t.id,name:t.name,placeholder:t.placeholder,readonly:t.disabled,type:"radio"},domProps:{checked:t._q(t.value,null)},on:{change:[function(e){t.value=null},t.inputUpdate]}}):n("input",{directives:[{name:"model",rawName:"v-model",value:t.value,expression:"value"},{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],attrs:{id:t.id,name:t.name,placeholder:t.placeholder,readonly:t.disabled,type:t.type},domProps:{value:t.value},on:{change:t.inputUpdate,input:function(e){e.target.composing||(t.value=e.target.value)}}})]),t.has_error?n("label",{staticClass:"monsterinsights-error"},[n("i",{staticClass:"monstericon-warning-triangle"}),n("span",{domProps:{innerHTML:t._s(t.text_error)}})]):t._e()])},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("b0c0"),n("e439"),n("dbb4"),n("b64b"),n("4d63"),n("ac1f"),n("25f0"),n("159b"),n("fc11")),a=n("561c"),r=n("2f62"),c=n("93ec");function l(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function u(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?l(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var p={name:"SettingsInputText",components:{SettingsInfoTooltip:c["a"]},props:{name:String,label:String,description:String,placeholder:String,type:{type:String,default:"text"},tooltip:String,default_value:String,format:RegExp,auth_disabled:{type:Boolean,default:!0}},data:function(){return{is_loading:!1,has_error:!1,id:"input-"+this.name,text_reset:Object(a["a"])("Reset to default","google-analytics-for-wordpress"),text_error:Object(a["a"])("The value entered does not match the required format","google-analytics-for-wordpress"),updated_value:!1}},computed:u({},Object(r["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},value:{get:function(){return!1!==this.updated_value?this.updated_value:this.settings[this.name]},set:function(t){return this.updated_value=t}},tooltip_data:function(){return{content:this.disabled?this.$mi_need_to_auth:"",autoHide:!1,trigger:"hover focus click"}},disabled:function(){return!!this.auth_disabled&&!this.has_ua}}),methods:{inputUpdate:function(t){this.updateSetting(t.target.name,t.target.value)},updateSetting:function(t,e){var n=this;return!this.disabled&&(this.has_error=!1,this.format&&!this.format.test(e)?(this.has_error=!0,!1):(this.$mi_saving_toast({}),void this.$store.dispatch("$_settings/updateSettings",{name:t,value:e}).then((function(t){t.success?n.$mi_success_toast({}):n.$mi_error_toast({})}))))},showReset:function(){return this.default_value&&this.settings[this.name]!==this.default_value},resetValue:function(){return this.updateSetting(this.name,this.default_value)}}},d=p,f=(n("0044"),n("2877")),h=Object(f["a"])(d,s,o,!1,null,"e815e6e4",null);e["a"]=h.exports},c8cf:function(t,e,n){},d3fc:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-widget-error"},[n("div",{staticClass:"swal2-header"},[t._m(0),n("h2",{staticClass:"swal2-title",attrs:{id:"monsterinsights-error-title"},domProps:{textContent:t._s(t.title)}})]),t.error.content?n("div",{staticClass:"monsterinsights-error-content",domProps:{innerHTML:t._s(t.error.content)}}):t._e(),t.error.footer?n("div",{staticClass:"monsterinsights-error-footer",domProps:{innerHTML:t._s(t.error.footer)}}):t._e()])},o=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"swal2-icon swal2-error swal2-animate-error-icon",staticStyle:{display:"flex"}},[n("span",{staticClass:"swal2-x-mark"},[n("span",{staticClass:"swal2-x-mark-line-left"}),n("span",{staticClass:"swal2-x-mark-line-right"})])])}],i=n("561c"),a={props:{error:[Object,Boolean]},computed:{title:function(){return this.error.title.title?this.error.title.title:Object(i["a"])("Error","google-analytics-for-wordpress")}},name:"WidgetReportError"},r=a,c=n("2877"),l=Object(c["a"])(r,s,o,!1,null,null,null);e["a"]=l.exports},d429:function(t,e,n){"use strict";n("4160"),n("a15b"),n("b64b"),n("d3b7"),n("e25e"),n("ac1f"),n("25f0"),n("5319"),n("1276"),n("159b");var s=n("bc3a"),o=n.n(s),i=n("2b0e"),a=n("561c"),r=function(t,e,n,s){return new Promise((function(r){var c=new FormData;c.append("action","monsterinsights_vue_get_report_data"),c.append("nonce",i["a"].prototype.$mi.nonce),c.append("report",e),c.append("start",n),c.append("end",s),o.a.post(i["a"].prototype.$mi.ajax,c).then((function(t){r(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var n=e.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't load report data. Error: %1$s, %2$s","google-analytics-for-wordpress"),n.status,n.statusText)})}i["a"].prototype.$swal.hideLoading(),i["a"].prototype.$mi_error_toast({allowOutsideClick:!0,allowEscapeKey:!0,title:Object(a["a"])("Error loading report data","google-analytics-for-wordpress"),html:e.message})}))}))},c=function(t){if("undefined"!==typeof t){var e=parseInt(t.toString().replace(".",""),10),n=e.toString().length;return 1===n?1===e?parseInt(e+"00"):parseInt(e+"0"):e}},l=function(t){if("undefined"!==typeof t){var e={};return Object.keys(t).forEach((function(n){var s=n.toString().split("-").join("_");e[s]=t[n]})),e}};e["a"]={fetchReportData:r,getFormattedScore:c,keysReplaceHyphensWithUnderscores:l}},d98d:function(t,e,n){"use strict";n("4795");var s,o,i={name:"SlideDownUp",functional:!0,props:{group:{type:Boolean,default:!1},done:Function},render:function(t,e){var n={props:{name:"expand"},on:{afterEnter:function(t){t.style.height="auto"},enter:function(t){var n=getComputedStyle(t),s=n.width;t.style.width=s,t.style.position="absolute",t.style.visibility="hidden",t.style.height="auto";var o=getComputedStyle(t),i=o.height;t.style.width="auto",t.style.position="relative",t.style.visibility="visible",t.style.height=0,setTimeout((function(){t.style.height=i})),e.props.done&&setTimeout((function(){e.props.done()}),500)},leave:function(t){var e=getComputedStyle(t),n=e.height;t.style.height=n,setTimeout((function(){t.style.height=0}))}}},s="transition";return e.props.group&&(s="transition-group"),t(s,n,e.children)}},a=i,r=(n("dffc"),n("e8ca"),n("2877")),c=Object(r["a"])(a,s,o,!1,null,"6038a3d0",null);e["a"]=c.exports},dd62:function(t,e,n){"use strict";n("d3b7");var s=n("bc3a"),o=n.n(s),i=n("2b0e"),a=n("561c"),r=function(){return new Promise((function(t){var e=i["a"].prototype.$mi.ajax,n=new FormData;n.append("action","monsterinsights_vue_get_license"),n.append("nonce",i["a"].prototype.$mi.nonce),o.a.post(e,n).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't load license details. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}i["a"].prototype.$mi_error_toast({allowOutsideClick:!0,allowEscapeKey:!0,title:Object(a["a"])("Error loading license details","google-analytics-for-wordpress"),html:t.message})}))}))},c=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return new Promise((function(s){var r=new FormData;r.append("action","monsterinsights_verify_license"),r.append("nonce",i["a"].prototype.$mi.nonce),r.append("license",t),n&&r.append("network",!0),o.a.post(i["a"].prototype.$mi.ajax,r).then((function(t){t.data.success&&(n?e.commit("LICENSE_NETWORK_TYPE_UPDATED",t.data.data.license_type):e.commit("LICENSE_TYPE_UPDATED",t.data.data.license_type),e.dispatch("$_addons/getAddons","",{root:!0})),s(t)})).catch((function(t){if(t.response){var e=t.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't verify the license. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}i["a"].prototype.$mi_error_toast({title:Object(a["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},l=function(t){return new Promise((function(e){var n=new FormData;n.append("action","monsterinsights_validate_license"),n.append("nonce",i["a"].prototype.$mi.nonce),t&&n.append("network",!0),o.a.post(i["a"].prototype.$mi.ajax,n).then((function(t){e(t)})).catch((function(t){if(t.response){var e=t.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't validate the license. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}i["a"].prototype.$mi_error_toast({title:Object(a["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},u=function(t,e){return new Promise((function(n){var s=new FormData,r=e?t.state.license_network.key:t.state.license.key;s.append("action","monsterinsights_deactivate_license"),s.append("nonce",i["a"].prototype.$mi.nonce),s.append("license",r),e&&s.append("network",!0),o.a.post(i["a"].prototype.$mi.ajax,s).then((function(s){s.data.success&&(e?(t.commit("LICENSE_NETWORK_KEY_UPDATED",""),t.commit("LICENSE_NETWORK_TYPE_UPDATED","")):(t.commit("LICENSE_KEY_UPDATED",""),t.commit("LICENSE_TYPE_UPDATED",""))),n(s)})).catch((function(t){if(t.response){var e=t.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't deactivate the license. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}i["a"].prototype.$mi_error_toast({title:Object(a["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},p=function(t){return new Promise((function(e){var n=new FormData;n.append("action","monsterinsights_connect_url"),n.append("nonce",i["a"].prototype.$mi.nonce),n.append("network",i["a"].prototype.$mi.network),n.append("key",t),o.a.post(i["a"].prototype.$mi.ajax,n).then((function(t){t.data&&e(t.data)})).catch((function(t){if(e(!1),t.response){var n=t.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't upgrade to PRO please try again. Error: %1$s, %2$s","google-analytics-for-wordpress"),n.status,n.statusText)})}i["a"].prototype.$mi_error_toast({title:Object(a["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))};e["a"]={fetchLicense:r,verifyLicense:c,validateLicense:l,deactivateLicense:u,getUpgradeLink:p}},dffc:function(t,e,n){"use strict";var s=n("f6e1"),o=n.n(s);o.a},e8ca:function(t,e,n){"use strict";var s=n("bef0"),o=n.n(s);o.a},f284:function(t,e,n){"use strict";n("c975"),n("fb6a"),n("d3b7"),n("4795");var s=n("d429"),o=n("2b0e"),i=n("561c"),a=function(t,e){return new Promise((function(n){return o["a"].prototype.$mi.authed?t.state[e]&&t.state[e].reportcurrentrange&&t.state[e].reportcurrentrange.startDate===t.state.date.start&&t.state[e].reportcurrentrange.endDate===t.state.date.end?(n(!1),t.commit("DISABLE_BLUR"),!1):(o["a"].prototype.$mi_loading_toast(),t.commit("ENABLE_BLUR"),void s["a"].fetchReportData(t,e,t.state.date.start,t.state.date.end).then((function(s){if("license_level"===s.data.message)return p(t),void n(!1);if(s.success)p(t),t.commit("DISABLE_BLUR"),t.commit("UPDATE_REPORT_DATA",{report:e,data:s.data}),n(!0);else{if("invalid_grant"===s.data.message)return p(t),n(!1),void t.commit("ENABLE_REAUTH");s.data.footer&&"install_addon"===s.data.footer?r(t,e).then((function(n){t.rootState.$_widget&&(t.commit("DISABLE_BLUR"),t.commit("$_widget/UPDATE_LOADED",!0,{root:!0}));var a=n?Object(i["a"])("activate","google-analytics-for-wordpress"):Object(i["a"])("install","google-analytics-for-wordpress");o["a"].prototype.$mi_error_toast({title:!1,html:Object(i["d"])(s.data.message,a),footer:'<a href="'+o["a"].prototype.$mi.addons_url+'">'+Object(i["a"])("Visit addons page","google-analytics-for-wordpress")+"</a>",report:e}),o["a"].prototype.$swal({type:"error",animation:!1,customContainerClass:"monsterinsights-swal",title:Object(i["a"])("Report Unavailable","google-analytics-for-wordpress"),html:Object(i["d"])(s.data.message,a),allowOutsideClick:!0,allowEscapeKey:!0,allowEnterKey:!1,showCancelButton:!0,confirmButtonText:Object(i["d"])(Object(i["a"])("%s Addon","google-analytics-for-wordpress"),a.charAt(0).toUpperCase()+a.slice(1)),cancelButtonText:Object(i["a"])("Dismiss","google-analytics-for-wordpress")}).then((function(s){s.value&&(n?l(t,t.rootState.$_addons.addons[e]):c(t,e))}))})):s.data.footer&&s.data.footer.indexOf("#/ecommerce")>0?(n(!1),o["a"].prototype.$mi_error_toast({title:!1,html:s.data.message,report:e,showCancelButton:!0,cancelButtonText:Object(i["a"])("Go Back To Reports","google-analytics-for-wordpress"),confirmButtonText:Object(i["a"])("Enable Enhanced eCommerce","google-analytics-for-wordpress")}).then((function(t){t.value&&(window.location=s.data.footer)}))):(n(!1),o["a"].prototype.$mi_error_toast({title:!1,html:s.data.message,footer:s.data.footer,report:e}))}}))):(n(!1),t.commit("ENABLE_BLUR"),t.commit("ENABLE_NOAUTH"),!1)}))};function r(t,e){return new Promise((function(n){t.dispatch("$_addons/getAddons","",{root:!0}).then((function(){t.rootState.$_addons.addons[e]&&t.rootState.$_addons.addons[e].installed?n(!0):n(!1)})).catch((function(){n(!1),u()}))}))}function c(t,e){o["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(i["a"])("Installing Addon","google-analytics-for-wordpress"),html:Object(i["a"])("Please wait","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){o["a"].prototype.$swal.showLoading(),t.dispatch("$_addons/installAddon",t.rootState.$_addons.addons[e],{root:!0}).then((function(){l(t,t.rootState.$_addons.addons[e])})).catch((function(){u()}))}})}function l(t,e){o["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(i["a"])("Activating Addon","google-analytics-for-wordpress"),html:Object(i["a"])("Please wait","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){o["a"].prototype.$swal.showLoading()}}),t.dispatch("$_addons/activateAddon",e,{root:!0}).then((function(){o["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(i["a"])("Addon Activated","google-analytics-for-wordpress"),html:Object(i["a"])("Loading report data","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){o["a"].prototype.$swal.showLoading(),setTimeout((function(){window.location.reload()}),1e3)}})})).catch((function(t){u(t)}))}function u(t){var e=Object(i["a"])("Please activate manually","google-analytics-for-wordpress");t.response&&(e=Object(i["d"])(Object(i["a"])("Error: %1$s, %2$s","google-analytics-for-wordpress"),t.response.status,t.response.statusText)),o["a"].prototype.$swal({type:"error",customContainerClass:"monsterinsights-swal",title:Object(i["a"])("Error Activating Addon","google-analytics-for-wordpress"),html:e,allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,showCancelButton:!0,confirmButtonText:Object(i["a"])("View Addons","google-analytics-for-wordpress"),cancelButtonText:Object(i["a"])("Dismiss","google-analytics-for-wordpress")}).then((function(t){t.value&&(window.location=o["a"].prototype.$mi.addons_url,o["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(i["a"])("Redirecting","google-analytics-for-wordpress"),html:Object(i["a"])("Please wait","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){o["a"].prototype.$swal.showLoading()}}))}))}function p(t){t.rootState.$_widget||o["a"].prototype.$swal.close()}var d={getReportData:a},f=function(t){return t.date},h=function(t){return t.activeReport},m=function(t){return t.blur},g=function(t){return t.mobileTableExpanded},_=function(t){return t.overview},b=function(t){return t.publisher},v=function(t){return t.ecommerce},y=function(t){return t.queries},w=function(t){return t.dimensions},O=function(t){return t.forms},C=function(t){return t.realtime},$=function(t){return t.yearinreview},j=function(t){return t.sitespeed},k=function(t){return t.sitespeedmobile},E=function(t){return t.noauth},P=function(t){return t.reauth},x={date:f,activeReport:h,blur:m,mobileTableExpanded:g,overview:_,publisher:b,ecommerce:v,queries:y,dimensions:w,forms:O,realtime:C,noauth:E,yearinreview:$,reauth:P,sitespeed:j,sitespeedmobile:k},T=function(t,e){e.report&&e.data&&t[e.report]&&o["a"].set(t,e.report,e.data)},S=function(t,e){e.start&&e.end&&(o["a"].set(t.date,"start",e.start),o["a"].set(t.date,"end",e.end))},D=function(t,e){o["a"].set(t.date,"interval",e)},A=function(t,e){o["a"].set(t.date,"text",e)},N=function(t,e){t.activeReport=e},L=function(t){t.blur=!0},I=function(t){t.blur=!1},U=function(t){t.mobileTableExpanded=!0},R=function(t){t.mobileTableExpanded=!1},M=function(t){t.noauth=!0},H=function(t){t.reauth=!0},B={UPDATE_REPORT_DATA:T,UPDATE_DATE:S,UPDATE_ACTIVE_REPORT:N,UPDATE_INTERVAL:D,UPDATE_DATE_TEXT:A,ENABLE_BLUR:L,DISABLE_BLUR:I,EXPAND_TABLES:U,CONTRACT_TABLES:R,ENABLE_NOAUTH:M,ENABLE_REAUTH:H},F={date:{start:"",end:"",interval:"last30days",text:""},blur:!1,activeReport:"overview",mobileTableExpanded:!1,overview:{},publisher:{},ecommerce:{},queries:{},dimensions:{},forms:{},realtime:{},yearinreview:{},sitespeed:{},sitespeedmobile:{},noauth:!1,reauth:!1};e["a"]={namespaced:!0,state:F,actions:d,getters:x,mutations:B}},f6e1:function(t,e,n){}}]);
1
+ (window["monsterinsightsjsonp"]=window["monsterinsightsjsonp"]||[]).push([["chunk-common"],{"0044":function(t,e,n){"use strict";var s=n("9cc2"),o=n.n(s);o.a},"014b":function(t,e,n){"use strict";var s=n("46a2"),o=n.n(s);o.a},"088d":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:t.componentClass},[n("label",{class:t.disabled?"monsterinsights-styled-checkbox-faux":"",on:{click:function(e){return e.preventDefault(),t.stopClick(e)},keyup:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.stopClick(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:t.stopClick(e)}]}},[n("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.labelClass(),attrs:{tabindex:t.faux?"":0}}),n("input",{directives:[{name:"model",rawName:"v-model",value:t.checked,expression:"checked"}],attrs:{type:"checkbox",name:t.name,disabled:t.disabled},domProps:{checked:Array.isArray(t.checked)?t._i(t.checked,null)>-1:t.checked},on:{change:function(e){var n=t.checked,s=e.target,o=!!s.checked;if(Array.isArray(n)){var i=null,a=t._i(n,i);s.checked?a<0&&(t.checked=n.concat([i])):a>-1&&(t.checked=n.slice(0,a).concat(n.slice(a+1)))}else t.checked=o}}}),t.label?n("span",{staticClass:"monsterinsights-checkbox-label",domProps:{innerHTML:t._s(t.label)}}):t._e(),t.hasLabelSlot?n("span",{staticClass:"monsterinsights-checkbox-label"},[t._t("label")],2):t._e(),t.description?n("span",{staticClass:"monsterinsights-checkbox-description",domProps:{innerHTML:t._s(t.description)}}):t._e(),t.tooltip?n("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e(),t.hasCollapsibleSlot?n("span",{staticClass:"monsterinsights-settings-input-toggle-collapsible",attrs:{role:"button"},on:{keyup:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.toggleCollapsible(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:t.toggleCollapsible(e)}]}},[n("i",{class:t.iconClass,attrs:{tabindex:"0",onkeypress:"if(event.keyCode==32||event.keyCode==13){return false;};"}})]):t._e()],1),n("slide-down-up",[t.slotCollapsibleVisible&&t.hasCollapsibleSlot?n("div",{staticClass:"monsterinsights-collapsible"},[t.hasCollapsibleSlot?n("div",{staticClass:"monsterinsights-separator"}):t._e(),n("div",{staticClass:"monsterinsights-collapsible-content"},[t._t("collapsible")],2)]):t._e()])],1)},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("b0c0"),n("e439"),n("dbb4"),n("b64b"),n("159b"),n("fc11")),a=n("2f62"),r=n("93ec"),c=n("d98d");function l(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function u(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?l(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var p={name:"SettingsInputCheckbox",components:{SlideDownUp:c["a"],SettingsInfoTooltip:r["a"]},props:{name:String,label:String,description:String,tooltip:String,faux:Boolean,faux_tooltip:String,faux_tooltip_off:String,valueOn:String,valueOff:String,default:{type:Boolean,default:!0},auth_disabled:{type:Boolean,default:!0}},data:function(){return{is_loading:!1,has_error:!1,slotCollapsibleVisible:!1}},computed:u({},Object(a["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{has_ua:function(){if(!this.auth_disabled)return!0;var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},hasCollapsibleSlot:function(){return this.$slots["collapsible"]},hasLabelSlot:function(){return this.$slots["label"]},iconClass:function(){var t="monstericon-arrow";return this.slotCollapsibleVisible&&(t+=" monstericon-down"),t},componentClass:function(){var t="monsterinsights-settings-input-checkbox";return this.$slots["collapsible"]&&(t+=" has-collapsible"),t},checked:{get:function(){var t=this.valueOn?this.valueOn===this.settings[this.name]:this.settings[this.name];return this.faux?this.default:t},set:function(t){var e=!!this.valueOff&&this.valueOff;t&&(e=!this.valueOn||this.valueOn),this.updateSetting(e)}},tooltip_data:function(){return{content:this.faux_tooltip_text,autoHide:!1,trigger:"hover focus click"}},faux_tooltip_text:function(){return this.has_ua?this.checked?this.faux_tooltip:this.faux_tooltip_off:this.$mi_need_to_auth},disabled:function(){return!this.has_ua||this.faux}}),watch:{checked:function(t){this.$emit("checkboxChange",t),this.slotCollapsibleVisible=t}},methods:{stopClick:function(t){t.target.classList.contains("monsterinsights-styled-checkbox")||t.target.classList.contains("monsterinsights-checkbox-label")?this.checked=!this.checked:(this.toggleCollapsible(t),t.stopPropagation())},updateSetting:function(t){var e=this;if(this.disabled)return!1;this.$mi_saving_toast({}),this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:t}).then((function(t){t.success?(e.$emit("checkbox_option_updated"),e.$mi_success_toast({})):e.$mi_error_toast({})}))},toggleCollapsible:function(t){t.preventDefault(),t.stopPropagation(),this.slotCollapsibleVisible=!this.slotCollapsibleVisible},labelClass:function(){var t="monsterinsights-styled-checkbox";return this.checked&&(t+=" monsterinsights-styled-checkbox-checked"),t},mounted:function(){this.slotCollapsibleVisible=this.checked}}},d=p,f=n("2877"),m=Object(f["a"])(d,s,o,!1,null,null,null);e["a"]=m.exports},"0f8f":function(t,e,n){},"17be":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement;t._self._c;return t._m(0)},o=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("span",[n("span",{staticClass:"monsterinsights-pro-pill"},[t._v("PRO")])])}],i={name:"PopularPostsProPill"},a=i,r=n("2877"),c=Object(r["a"])(a,s,o,!1,null,null,null);e["a"]=c.exports},1915:function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-notificationsv3-container"},[n("div",{staticClass:"monsterinsights-notificationsv3-inbox-button"},[n("button",{staticClass:"monsterinsights-button",on:{click:function(e){t.isShowSidebar=!0}}},[n("svg",{attrs:{width:"22",height:"14",viewBox:"0 0 22 14",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M21.6944 6.5625C21.8981 6.85417 22 7.18229 22 7.54687V12.25C22 12.7361 21.8218 13.1493 21.4653 13.4896C21.1088 13.8299 20.6759 14 20.1667 14H1.83333C1.32407 14 0.891204 13.8299 0.534722 13.4896C0.178241 13.1493 0 12.7361 0 12.25V7.54687C0 7.18229 0.101852 6.85417 0.305556 6.5625L4.35417 0.765625C4.45602 0.644097 4.58333 0.522569 4.73611 0.401042C4.91435 0.279514 5.10532 0.182292 5.30903 0.109375C5.51273 0.0364583 5.7037 0 5.88194 0H16.1181C16.3981 0 16.6782 0.0850694 16.9583 0.255208C17.2639 0.401042 17.4931 0.571181 17.6458 0.765625L21.6944 6.5625ZM6.1875 2.33333L2.94097 7H7.63889L8.86111 9.33333H13.1389L14.3611 7H19.059L15.8125 2.33333H6.1875Z",fill:"#2679C1"}})])]),n("span",{class:["monsterinsights-notificationsv3-inbox-number",t.activeNotificationsNumber>9?"number-greater-than-10":"number-less-than-10"],domProps:{textContent:t._s(t.activeNotificationsNumber)},on:{click:function(e){t.isShowSidebar=!0}}})]),t.isShowSidebar?n("div",{class:["monsterinsights-notificationsv3-sidebar",t.isShowSidebar?"monsterinsights-notificationsv3-sidebar-in":"monsterinsights-notificationsv3-sidebar-out"]},[n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-top"},[n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-top-title"},[n("svg",{attrs:{width:"24",height:"15",viewBox:"0 0 24 15",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M23.6667 7.03125C23.8889 7.34375 24 7.69531 24 8.08594V13.125C24 13.6458 23.8056 14.0885 23.4167 14.4531C23.0278 14.8177 22.5556 15 22 15H2C1.44444 15 0.972222 14.8177 0.583333 14.4531C0.194444 14.0885 0 13.6458 0 13.125V8.08594C0 7.69531 0.111111 7.34375 0.333333 7.03125L4.75 0.820312C4.86111 0.690104 5 0.559896 5.16667 0.429688C5.36111 0.299479 5.56944 0.195312 5.79167 0.117188C6.01389 0.0390625 6.22222 0 6.41667 0H17.5833C17.8889 0 18.1944 0.0911458 18.5 0.273438C18.8333 0.429688 19.0833 0.611979 19.25 0.820312L23.6667 7.03125ZM6.75 2.5L3.20833 7.5H8.33333L9.66667 10H14.3333L15.6667 7.5H20.7917L17.25 2.5H6.75Z",fill:"white"}})]),t.isShowDismissed?t._e():n("h3",{domProps:{textContent:t._s(t.text_inbox)}}),t.isShowDismissed?n("h3",{domProps:{textContent:t._s(t.text_dismissed)}}):t._e()]),n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-top-actions"},[t.isShowDismissed?t._e():n("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_view_dismissed)},on:{click:function(e){t.isShowDismissed=!0}}}),t.isShowDismissed?n("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_back_to_inbox)},on:{click:function(e){t.isShowDismissed=!1}}}):t._e(),n("button",{staticClass:"monsterinsights-button monsterinsights-notificationsv3-sidebar-close",on:{click:t.closeSidebar}},[n("svg",{attrs:{width:"12",height:"12",viewBox:"0 0 12 12",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M8.28409 6L11.6932 9.40909C11.8977 9.61364 12 9.86364 12 10.1591C12 10.4545 11.8977 10.7159 11.6932 10.9432L10.9432 11.6932C10.7159 11.8977 10.4545 12 10.1591 12C9.86364 12 9.61364 11.8977 9.40909 11.6932L6 8.28409L2.59091 11.6932C2.38636 11.8977 2.13636 12 1.84091 12C1.54545 12 1.28409 11.8977 1.05682 11.6932L0.306818 10.9432C0.102273 10.7159 0 10.4545 0 10.1591C0 9.86364 0.102273 9.61364 0.306818 9.40909L3.71591 6L0.306818 2.59091C0.102273 2.38636 0 2.13636 0 1.84091C0 1.54545 0.102273 1.28409 0.306818 1.05682L1.05682 0.306818C1.28409 0.102273 1.54545 0 1.84091 0C2.13636 0 2.38636 0.102273 2.59091 0.306818L6 3.71591L9.40909 0.306818C9.61364 0.102273 9.86364 0 10.1591 0C10.4545 0 10.7159 0.102273 10.9432 0.306818L11.6932 1.05682C11.8977 1.28409 12 1.54545 12 1.84091C12 2.13636 11.8977 2.38636 11.6932 2.59091L8.28409 6Z",fill:"white"}})])])])]),n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-bottom"},[n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-bottom-notifications-count"},[t.isShowDismissed?t._e():n("span",{staticClass:"monsterinsights-notificationsv3-inbox-number",domProps:{textContent:t._s(t.activeNotificationsNumber)}}),t.isShowDismissed?n("span",{staticClass:"monsterinsights-notificationsv3-dismissed-number",domProps:{textContent:t._s(t.dismissedNotificationsNumber)}}):t._e(),n("h4",{domProps:{textContent:t._s(t.text_notifications)}})]),!t.isShowDismissed&&t.activeNotificationsNumber>0?n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-header-bottom-actions"},[n("span",{domProps:{textContent:t._s(t.text_dismiss_all)},on:{click:function(e){return t.dismiss("all")}}})]):t._e()]),t.isShowDismissed?t._e():n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-notifications monsterinsights-notificationsv3-notifications-active"},[t.activeNotificationsNumber<1?n("div",{staticClass:"monsterinsights-notificationsv3-no-notifications"},[n("svg",{attrs:{width:"91",height:"74",viewBox:"0 0 91 74",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M89.2969 65.4062C90.4219 66.3438 90.5625 67.4219 89.7188 68.6406L86.9062 72.1562C85.9688 73.2812 84.9375 73.4219 83.8125 72.5781L0.984375 8.59375C-0.140625 7.65625 -0.28125 6.57813 0.5625 5.35938L3.375 1.84375C4.3125 0.71875 5.34375 0.578125 6.46875 1.42188L26.8594 17.1719C30.3281 12.5781 34.9219 9.67188 40.6406 8.45312V5.5C40.6406 4.28125 41.0625 3.25 41.9062 2.40625C42.8438 1.46875 43.9219 1 45.1406 1C46.3594 1 47.3906 1.46875 48.2344 2.40625C49.1719 3.25 49.6406 4.28125 49.6406 5.5V8.45312C54.8906 9.48437 59.2031 12.0156 62.5781 16.0469C65.9531 20.0781 67.6406 24.8125 67.6406 30.25C67.6406 34.375 68.1094 38.0312 69.0469 41.2188C69.9844 44.3125 70.8281 46.4219 71.5781 47.5469C72.4219 48.6719 73.5469 49.9375 74.9531 51.3438C75.1406 51.625 75.2812 51.8125 75.375 51.9062C76.2188 52.8438 76.6406 53.875 76.6406 55C76.6406 55.0938 76.5938 55.2344 76.5 55.4219C76.5 55.5156 76.5 55.5625 76.5 55.5625L89.2969 65.4062ZM22.2188 36.4375L52.1719 59.5H18.1406C17.2969 59.5 16.5 59.3125 15.75 58.9375C15.0938 58.4688 14.5781 57.9062 14.2031 57.25C13.8281 56.5 13.6406 55.75 13.6406 55C13.6406 53.875 14.0625 52.8438 14.9062 51.9062C16.2188 50.5 17.1562 49.4688 17.7188 48.8125C18.2812 48.1562 19.0781 46.6562 20.1094 44.3125C21.1406 41.9688 21.8438 39.3438 22.2188 36.4375ZM45.1406 73C42.7031 73 40.5938 72.1094 38.8125 70.3281C37.0312 68.6406 36.1406 66.5312 36.1406 64H54.1406C54.1406 65.5938 53.7188 67.0938 52.875 68.5C52.125 69.9062 51.0469 70.9844 49.6406 71.7344C48.2344 72.5781 46.7344 73 45.1406 73Z",fill:"#E2E4E9"}})]),n("h4",{domProps:{textContent:t._s(t.text_no_notifications)}})]):t._e(),t._l(t.notifications,(function(t,e){return n("notification",{key:e,attrs:{notification:t}})}))],2),t.isShowDismissed?n("div",{staticClass:"monsterinsights-notificationsv3-sidebar-notifications monsterinsights-notificationsv3-notifications-dismissed"},[t.dismissedNotificationsNumber<1?n("div",{staticClass:"monsterinsights-notificationsv3-no-notifications"},[n("svg",{attrs:{width:"91",height:"74",viewBox:"0 0 91 74",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M89.2969 65.4062C90.4219 66.3438 90.5625 67.4219 89.7188 68.6406L86.9062 72.1562C85.9688 73.2812 84.9375 73.4219 83.8125 72.5781L0.984375 8.59375C-0.140625 7.65625 -0.28125 6.57813 0.5625 5.35938L3.375 1.84375C4.3125 0.71875 5.34375 0.578125 6.46875 1.42188L26.8594 17.1719C30.3281 12.5781 34.9219 9.67188 40.6406 8.45312V5.5C40.6406 4.28125 41.0625 3.25 41.9062 2.40625C42.8438 1.46875 43.9219 1 45.1406 1C46.3594 1 47.3906 1.46875 48.2344 2.40625C49.1719 3.25 49.6406 4.28125 49.6406 5.5V8.45312C54.8906 9.48437 59.2031 12.0156 62.5781 16.0469C65.9531 20.0781 67.6406 24.8125 67.6406 30.25C67.6406 34.375 68.1094 38.0312 69.0469 41.2188C69.9844 44.3125 70.8281 46.4219 71.5781 47.5469C72.4219 48.6719 73.5469 49.9375 74.9531 51.3438C75.1406 51.625 75.2812 51.8125 75.375 51.9062C76.2188 52.8438 76.6406 53.875 76.6406 55C76.6406 55.0938 76.5938 55.2344 76.5 55.4219C76.5 55.5156 76.5 55.5625 76.5 55.5625L89.2969 65.4062ZM22.2188 36.4375L52.1719 59.5H18.1406C17.2969 59.5 16.5 59.3125 15.75 58.9375C15.0938 58.4688 14.5781 57.9062 14.2031 57.25C13.8281 56.5 13.6406 55.75 13.6406 55C13.6406 53.875 14.0625 52.8438 14.9062 51.9062C16.2188 50.5 17.1562 49.4688 17.7188 48.8125C18.2812 48.1562 19.0781 46.6562 20.1094 44.3125C21.1406 41.9688 21.8438 39.3438 22.2188 36.4375ZM45.1406 73C42.7031 73 40.5938 72.1094 38.8125 70.3281C37.0312 68.6406 36.1406 66.5312 36.1406 64H54.1406C54.1406 65.5938 53.7188 67.0938 52.875 68.5C52.125 69.9062 51.0469 70.9844 49.6406 71.7344C48.2344 72.5781 46.7344 73 45.1406 73Z",fill:"#E2E4E9"}})]),n("h4",{domProps:{textContent:t._s(t.text_no_notifications)}})]):t._e(),t._l(t.dismissed,(function(t,e){return n("notification",{key:e,attrs:{notification:t,dismissable:!1}})}))],2):t._e()]):t._e()])},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("e439"),n("dbb4"),n("b64b"),n("d3b7"),n("ac1f"),n("3ca3"),n("841c"),n("159b"),n("ddb0"),n("2b3d"),n("fc11")),a=n("561c"),r=n("2f62"),c=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-notificationsv3-single-notification"},[n("div",{staticClass:"monsterinsights-notificationsv3-notification-icon",domProps:{innerHTML:t._s(t.notification.icon)}}),n("div",{staticClass:"monsterinsights-notificationsv3-notification-details"},[n("div",{staticClass:"monsterinsights-notificationsv3-notification-title"},[n("h5",{domProps:{innerHTML:t._s(t.notification.title)}}),t.notification.start?n("span",{domProps:{innerHTML:t._s(t.notification.start)}}):t._e()]),n("div",{staticClass:"monsterinsights-notificationsv3-notification-content"},[n("div",{domProps:{innerHTML:t._s(t.notification.content)}})]),n("div",{staticClass:"monsterinsights-notificationsv3-notification-actions"},[t._l(t.notification.btns,(function(e,s){return n("a",{key:s,class:["monsterinsights-button",t.buttonClass(s)],attrs:{href:e.url},domProps:{textContent:t._s(e.text)}})})),t.dismissable?n("span",{domProps:{innerHTML:t._s(t.text_dismiss)},on:{click:function(e){return t.dismiss(t.notification.id)}}}):t._e()],2)])])},l=[];function u(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function p(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?u(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):u(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var d={name:"Notification",props:{notification:Object,dismissable:{type:Boolean,default:!0}},data:function(){return{text_dismiss:Object(a["a"])("Dismiss","google-analytics-for-wordpress")}},computed:p({},Object(r["b"])({notifications:"$_notifications/notifications"}),{has_notifications:function(){return this.notifications&&this.notifications.length>0}}),methods:{buttonClass:function(t){return"monsterinsights-button monsterinsights-button-"+t},dismiss:function(t){var e=this;this.$store.dispatch("$_notifications/dismissNotification",t).then((function(){var t=document.querySelector(".monsterinsights-menu-notification-indicator");t&&!e.has_notifications?t.style.display="none":t.innerText=e.notifications.length}))}}},f=d,m=n("2877"),h=Object(m["a"])(f,c,l,!1,null,null,null),g=h.exports;function _(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function b(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?_(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):_(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var v={name:"Notifications",components:{Notification:g},data:function(){return{isShowSidebar:!1,isShowDismissed:!1,text_inbox:Object(a["a"])("Inbox","google-analytics-for-wordpress"),text_back_to_inbox:Object(a["a"])("Back to Inbox","google-analytics-for-wordpress"),text_view_dismissed:Object(a["a"])("View Dismissed","google-analytics-for-wordpress"),text_notifications:Object(a["a"])("Notifications","google-analytics-for-wordpress"),text_dismiss_all:Object(a["a"])("Dismiss All","google-analytics-for-wordpress"),text_dismissed:Object(a["a"])("Dismissed","google-analytics-for-wordpress"),text_no_notifications:Object(a["a"])("No Notifications","google-analytics-for-wordpress")}},computed:b({},Object(r["b"])({notifications:"$_notifications/notifications",dismissed:"$_notifications/dismissed"}),{activeNotificationsNumber:function(){return this.notifications.length},dismissedNotificationsNumber:function(){return this.dismissed.length}}),created:function(){var t=window.location.search;if("undefined"!==typeof t){var e=new URLSearchParams(t),n=e.get("open");"undefined"!==typeof n&&"monsterinsights_notification_sidebar"===n&&(this.isShowSidebar=!0)}},methods:{closeSidebar:function(){this.isShowSidebar=!1,this.isShowDismissed=!1},buttonClass:function(t){return"monsterinsights-button monsterinsights-button-"+t},dismiss:function(t){var e=this;this.$store.dispatch("$_notifications/dismissNotification",t).then((function(){var t=document.querySelector(".monsterinsights-menu-notification-indicator");t&&!e.notifications.length>0?t.style.display="none":t.innerText=e.notifications.length}))}}},y=v,w=Object(m["a"])(y,s,o,!1,null,null,null);e["a"]=w.exports},"3bc9":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"settings-input settings-input-license"},[n("p",{domProps:{innerHTML:t._s(t.text_license_row_1)}}),n("p",{domProps:{innerHTML:t._s(t.text_license_row_2)}}),n("p",{domProps:{innerHTML:t._s(t.text_license_row_3)}}),n("div",{staticClass:"monsterinsights-settings-license-lite"},[n("label",{attrs:{for:"monsterinsights-license-key"},domProps:{innerHTML:t._s(t.text_license_label)}}),n("div",{staticClass:"inline-field"},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.connect_key,expression:"connect_key"}],attrs:{id:"monsterinsights-license-key",readonly:t.is_loading,type:"text",autocomplete:"off",placeholder:t.text_license_placeholder},domProps:{value:t.connect_key},on:{input:[function(e){e.target.composing||(t.connect_key=e.target.value)},t.fieldInput]}}),t.show_connect?n("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_upgrade_to_pro)},on:{click:function(e){return e.preventDefault(),t.startUpgradeToPro(e)}}}):t._e()])])])},o=[],i=n("561c"),a=n("f7fe"),r=n.n(a),c=n("dd62"),l={name:"SettingsInputLicense",props:{label:String},data:function(){return{is_network:this.$mi.network,text_license_row_1:Object(i["d"])(Object(i["a"])("You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s","google-analytics-for-wordpress"),"<strong>","</strong>",'<span class="monsterinsights-bg-img monsterinsights-smile"></span>'),text_license_row_2:Object(i["d"])(Object(i["a"])("To unlock more features consider %1$supgrading to PRO%2$s.","google-analytics-for-wordpress"),'<a href="'+this.$getUpgradeUrl("settings-panel","license")+'" class="monsterinsights-bold" target="_blank">',"</a>"),text_license_row_3:Object(i["d"])(Object(i["a"])("As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!","google-analytics-for-wordpress"),'<span class="monsterinsights-highlighted-text">',"</span>"),text_upgrade_to_pro:Object(i["a"])("Unlock PRO Features Now","google-analytics-for-wordpress"),text_license_placeholder:Object(i["a"])("Paste your license key here","google-analytics-for-wordpress"),text_license_verify:Object(i["a"])("Verify","google-analytics-for-wordpress"),text_license_label:Object(i["d"])(Object(i["a"])("Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.","google-analytics-for-wordpress"),'<a href="'+this.$getUrl("license","settings_panel","https://www.monsterinsights.com/my-account/")+'" target="_blank">',"</a>"),is_loading:!1,show_connect:!1,connect_key:""}},methods:{fieldInput:r()((function(){this.show_connect=""!==this.connect_key}),100),startUpgradeToPro:function(){var t=this;this.$swal({type:"info",title:Object(i["a"])("Please wait...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,customContainerClass:"monsterinsights-swal",onOpen:function(){t.$swal.showLoading()}}),c["a"].getUpgradeLink(this.connect_key).then((function(e){if(e.success&&e.data.url)return window.location=e.data.url;var n=e.data.message?e.data.message:Object(i["a"])("There was an error unlocking MonsterInsights PRO please try again or install manually.","google-analytics-for-wordpress");t.$mi_error_toast({title:Object(i["a"])("Error","google-analytics-for-wordpress"),text:n,toast:!1,position:"center",showConfirmButton:!0,showCloseButton:!1,customClass:!1}).then((function(){e.data.reload&&window.location.reload()}))})).catch((function(){t.$swal.close()}))}}},u=l,p=n("2877"),d=Object(p["a"])(u,s,o,!1,null,null,null);e["a"]=d.exports},4360:function(t,e,n){"use strict";var s=n("2b0e"),o=n("2f62"),i=n("dd62"),a=n("f7fe"),r=n.n(a),c=n("561c"),l=function(t){var e=i["a"].fetchLicense();e.then((function(e){e.network&&t.commit("LICENSE_NETWORK_UPDATED",e.network),e.site&&t.commit("LICENSE_UPDATED",e.site),_(t)})).catch((function(t){console.error(t)}))},u=function(t,e){return i["a"].verifyLicense(e,t)},p=function(t,e){return t.commit("LICENSE_KEY_UPDATED",e),f(e,t)},d=function(t,e){return t.commit("LICENSE_NETWORK_KEY_UPDATED",e),f(e,t,!0)},f=r()(i["a"].verifyLicense,500,{leading:!0}),m=function(t,e){return i["a"].validateLicense(e)},h=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return i["a"].deactivateLicense(t,e)},g=function(t){t.dispatch("$_app/removeNotice","license_expired",{root:!0}),t.dispatch("$_app/removeNotice","license_disabled",{root:!0}),t.dispatch("$_app/removeNotice","license_invalid",{root:!0})},_=function(t){t.state.license.is_expired||t.state.license_network.is_expired?t.dispatch("$_app/addNotice",{id:"license_expired",content:Object(c["d"])(Object(c["a"])("Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s","google-analytics-for-wordpress"),'<a target="blank" href="'+s["a"].prototype.$getUrl("admin-notices","expired-license","https://www.monsterinsights.com/login/")+'">',"</a>"),type:"error"},{root:!0}):t.state.license.is_disabled||t.state.license_network.is_disabled?t.dispatch("$_app/addNotice",{id:"license_disabled",content:Object(c["a"])("Your license key for MonsterInsights has been disabled. Please use a different key.","google-analytics-for-wordpress"),type:"error"},{root:!0}):(t.state.license.is_invalid||t.state.license_network.is_invalid)&&t.dispatch("$_app/addNotice",{id:"license_invalid",content:Object(c["a"])("Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key.","google-analytics-for-wordpress"),type:"error"},{root:!0})},b={getLicense:l,updateLicense:p,verifyLicense:u,updateNetworkLicense:d,validateLicense:m,deactivateLicense:h,removeLicenseNotices:g,addLicenseNotices:_},v=function(t){return t.license},y=function(t){return t.license_network},w={license:v,license_network:y},O=function(t,e){t.license=e},C=function(t,e){t.license_network=e},$=function(t,e){t.license.key=e},j=function(t,e){t.license.type=e},k=function(t,e){t.license_network.key=e},E=function(t,e){t.license_network.type=e},P={LICENSE_UPDATED:O,LICENSE_NETWORK_UPDATED:C,LICENSE_KEY_UPDATED:$,LICENSE_TYPE_UPDATED:j,LICENSE_NETWORK_KEY_UPDATED:k,LICENSE_NETWORK_TYPE_UPDATED:E},x={license:{key:"",type:"",is_expired:!1,is_disabled:!1,is_invalid:!0},license_network:{key:"",type:"",is_expired:!1,is_disabled:!1,is_invalid:!0}},T={namespaced:!0,state:x,actions:b,getters:w,mutations:P},S=(n("d3b7"),n("bc3a")),D=n.n(S),A=function(){return new Promise((function(t){var e=new FormData;e.append("action","monsterinsights_vue_get_profile"),e.append("nonce",s["a"].prototype.$mi.nonce),D.a.post(s["a"].prototype.$mi.ajax,e).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't load authentication details. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},N=function(t){return new Promise((function(e){var n=new FormData;n.append("action","monsterinsights_maybe_authenticate"),n.append("nonce",s["a"].prototype.$mi.nonce),t&&n.append("isnetwork",!0),D.a.post(s["a"].prototype.$mi.ajax,n).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't authenticate. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},L=function(t){return new Promise((function(e){var n=new FormData;n.append("action","monsterinsights_maybe_reauthenticate"),n.append("nonce",s["a"].prototype.$mi.nonce),t&&n.append("isnetwork",!0),D.a.post(s["a"].prototype.$mi.ajax,n).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't reauthenticate. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},I=function(t){return new Promise((function(e){var n=new FormData;n.append("action","monsterinsights_maybe_verify"),n.append("nonce",s["a"].prototype.$mi.nonce),n.append("isnetwork",t),D.a.post(s["a"].prototype.$mi.ajax,n).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't verify credentials. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},U=function(t,e,n){return new Promise((function(o){var i=new FormData;i.append("action","monsterinsights_maybe_delete"),i.append("nonce",s["a"].prototype.$mi.nonce),i.append("isnetwork",e),n&&i.append("forcedelete",!0),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(n){n.data.success&&t.commit("AUTH_DELETED",e),o(n.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't deauthenticate. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},R=function(t,e,n){return new Promise((function(o){var i=new FormData;i.append("action","monsterinsights_update_manual_ua"),i.append("manual_ua_code",e),i.append("nonce",s["a"].prototype.$mi.nonce),n&&i.append("isnetwork",n),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(s){t.commit("MANUAL_UA_UPDATE",e,n),o(s.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't save settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Settings not saved.","google-analytics-for-wordpress")})}))}))},M={fetchAuth:A,getAuthRedirect:N,getReAuthRedirect:L,verifyAuth:I,deleteAuth:U,updateManualUa:R},H=function(t){var e=M.fetchAuth();e.then((function(e){e&&t.commit("AUTH_UPDATED",e)})).catch((function(t){console.error(t)}))},B=function(t,e){return M.getAuthRedirect(e)},F=function(t,e){return M.getReAuthRedirect(e)},V=function(t,e){return M.verifyAuth(e)},Y=function(t,e){return M.deleteAuth(t,e.network,e.force)},K=function(t,e){return M.updateManualUa(t,e.ua,e.network)},W={getAuth:H,doAuth:B,doReAuth:F,verifyAuth:V,deleteAuth:Y,updateManualUa:K},G=function(t){return t.auth},q={auth:G},Z=function(t,e){t.auth=e},J=function(t,e){e?(t.auth.network_manual_ua=t.auth.network_ua,t.auth.network_ua=!1,t.auth.network_viewname=!1):(t.auth.manual_ua=t.auth.ua,t.auth.ua=!1,t.auth.viewname=!1)},Q=function(t,e,n){n?t.auth.network_manual_ua=e:t.auth.manual_ua=e},X={AUTH_UPDATED:Z,AUTH_DELETED:J,MANUAL_UA_UPDATE:Q},z={auth:{ua:"",viewname:"",network_ua:"",network_viewname:""}},tt={namespaced:!0,state:z,actions:W,getters:q,mutations:X},et=(n("c975"),function(){return new Promise((function(t){var e=new FormData;e.append("action","monsterinsights_vue_get_addons"),e.append("network",s["a"].prototype.$mi.network),e.append("nonce",s["a"].prototype.$mi.nonce),D.a.post(s["a"].prototype.$mi.ajax,e).then((function(e){t(e.data)}))}))}),nt=function(t,e){return new Promise((function(n,o){var i=new FormData;i.append("action","monsterinsights_install_addon"),i.append("nonce",s["a"].prototype.$mi.install_nonce),i.append("plugin",e.url),t.rootState.$_app.ftp_form.hostname&&i.append("hostname",t.rootState.$_app.ftp_form.hostname),t.rootState.$_app.ftp_form.username&&i.append("username",t.rootState.$_app.ftp_form.username),t.rootState.$_app.ftp_form.password&&i.append("password",t.rootState.$_app.ftp_form.password),t.rootState.$_app.ftp_form.connection_type&&i.append("connection_type",t.rootState.$_app.ftp_form.connection_type),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(o){o.data.form?t.commit("$_app/SHOW_FTP_FORM",{action:"$_addons/installAddon",data:e},{root:!0}):o.data.error?s["a"].prototype.$mi_error_toast({title:o.data.error}):(t.commit("ADDON_INSTALLED",{slug:e.slug,basename:o.data.plugin}),ot(t,e)),n(o.data)})).catch((function(t){if(o(t),t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install addon. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not installed.","google-analytics-for-wordpress")})}))}))},st=function(t){return new Promise((function(e,n){var o=new FormData,i=s["a"].prototype.$addQueryArg(s["a"].prototype.$mi.ajax,"page","monsterinsights-onboarding");o.append("action","monsterinsights_onboarding_wpforms_install"),o.append("nonce",s["a"].prototype.$mi.install_nonce),D.a.post(i,o).then((function(n){n.data.error?s["a"].prototype.$mi_error_toast({title:n.data.error}):t.commit("ADDON_INSTALLED",{slug:"wpforms-lite",basename:""}),e(n.data)})).catch((function(t){if(n(t),t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install WPForms. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. WPForms not installed.","google-analytics-for-wordpress")})}))}))},ot=function(t,e){return new Promise((function(n,o){var i=new FormData;i.append("action","monsterinsights_activate_addon"),i.append("nonce",s["a"].prototype.$mi.activate_nonce),i.append("isnetwork",s["a"].prototype.$mi.network),i.append("plugin",e.basename),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(o){o.data.error?s["a"].prototype.$mi_error_toast({title:o.data.error}):t.commit("ADDON_ACTIVATED",e.slug),n(o.data)})).catch((function(t){if(o(t),t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't activate addon. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not activated.","google-analytics-for-wordpress")})}))}))},it=function(t,e){return new Promise((function(n,o){var i=new FormData;i.append("action","monsterinsights_deactivate_addon"),i.append("nonce",s["a"].prototype.$mi.deactivate_nonce),i.append("isnetwork",s["a"].prototype.$mi.network),i.append("plugin",e.basename),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(o){o.data.error?s["a"].prototype.$mi_error_toast({title:o.data.error}):t.commit("ADDON_DEACTIVATED",e.slug),n(o.data)})).catch((function(t){if(o(t),t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't deactivate addon. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not deactivated.","google-analytics-for-wordpress")})}))}))},at=function(t,e){return new Promise((function(n,o){var i=new FormData;i.append("action","monsterinsights_vue_install_plugin"),i.append("slug",e),i.append("nonce",s["a"].prototype.$mi.nonce),D.a.post(s["a"].prototype.$mi.ajax,i).then((function(o){o.data.error?s["a"].prototype.$mi_error_toast({title:o.data.error}):t.commit("ADDON_INSTALLED",{slug:e}),n(o.data)})).catch((function(t){if(o(t),t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install plugin. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Plugin not installed.","google-analytics-for-wordpress")})}))}))},rt={fetchAddons:et,installAddon:nt,activateAddon:ot,deactivateAddon:it,installWPForms:st,installPlugin:at},ct=function(t){return new Promise((function(e){var n=rt.fetchAddons();n.then((function(n){n&&(t.commit("ADDONS_UPDATED",n),lt(t)),e(!0)})).catch((function(t){console.error(t),e(!1)}))}))},lt=function(t){if(t.dispatch("$_app/removeNotice","google_amp_addon",{root:!0}),t.dispatch("$_app/removeNotice","instant_articles_addon",{root:!0}),ut(t,"amp")&&!ut(t,"google_amp")){var e=t.rootGetters["$_app/mi"].install_amp_url,n=e.indexOf("activate")>0?Object(c["a"])("Activate","google-analytics-for-wordpress"):Object(c["a"])("Install","google-analytics-for-wordpress"),o=Object(c["d"])(Object(c["a"])("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","google-analytics-for-wordpress"),'<a target="_blank" href="'+s["a"].prototype.$getUrl("settings-panel","amp-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-google-amp-addon/")+'">',"</a>");s["a"].prototype.$mi.install_plugins&&(o=Object(c["d"])(Object(c["a"])("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","google-analytics-for-wordpress"),'<a href="'+e+'">',n,"</a>",'<a target="_blank" href="'+s["a"].prototype.$getUrl("settings-panel","amp-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-google-amp-addon/")+'">',"</a>")),t.dispatch("$_app/addNotice",{id:"google_amp_addon",content:o,type:"error"},{root:!0})}if(ut(t,"facebook-instant-articles")&&!ut(t,"instant_articles")){var i=t.rootGetters["$_app/mi"].install_fbia_url,a=i.indexOf("activate")>0?Object(c["a"])("Activate","google-analytics-for-wordpress"):Object(c["a"])("Install","google-analytics-for-wordpress"),r=Object(c["d"])(Object(c["a"])("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","google-analytics-for-wordpress"),'<a target="_blank" href="'+s["a"].prototype.$getUrl("settings-panel","fbia-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-facebook-instant-articles-addon/")+'">',"</a>");s["a"].prototype.$mi.install_plugins&&(r=Object(c["d"])(Object(c["a"])("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","google-analytics-for-wordpress"),'<a href="'+i+'">',a,"</a>",'<a target="_blank" href="'+s["a"].prototype.$getUrl("settings-panel","fbia-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-facebook-instant-articles-addon/")+'">',"</a>")),t.dispatch("$_app/addNotice",{id:"instant_articles_addon",content:r,type:"error"},{root:!0})}},ut=function(t,e){return!!t.state.addons[e]&&t.state.addons[e].active},pt=function(t,e){return rt.installAddon(t,e)},dt=function(t,e){return rt.installPlugin(t,e.slug)},ft=function(t,e){return rt.activateAddon(t,e).then((function(){lt(t)}))},mt=function(t,e){return rt.deactivateAddon(t,e).then((function(){lt(t)}))},ht=function(t){return rt.installWPForms(t)},gt={getAddons:ct,installAddon:pt,activateAddon:ft,deactivateAddon:mt,installWPForms:ht,installPlugin:dt},_t=(n("4e82"),n("ac1f"),n("841c"),function(t){return t.addons}),bt=function(t){return t.sort},vt=function(t){return t.search},yt={addons:_t,sort:bt,search:vt},wt=function(t,e){s["a"].set(t,"addons",e)},Ot=function(t,e){t.addons[e].active=!0},Ct=function(t,e){t.addons[e].active=!1},$t=function(t,e){t.addons[e.slug].installed=!0,e.basename&&(t.addons[e.slug].basename=e.basename)},jt=function(t,e){t.sort=e},kt=function(t,e){t.search=e},Et={ADDONS_UPDATED:wt,ADDON_ACTIVATED:Ot,ADDON_DEACTIVATED:Ct,ADDON_INSTALLED:$t,UPDATE_SORT:jt,UPDATE_SEARCH:kt},Pt={addons:{},search:""},xt={namespaced:!0,state:Pt,actions:gt,getters:yt,mutations:Et},Tt=n("7220"),St=function(){return new Promise((function(t){var e=s["a"].prototype.$mi.ajax,n=new FormData;n.append("action","monsterinsights_vue_get_notifications"),n.append("nonce",s["a"].prototype.$mi.nonce),D.a.post(e,n).then((function(e){if(!e.data.success)return!1;t(e.data.data)})).catch((function(){return!1}))}))},Dt=function(t){return new Promise((function(e){var n=s["a"].prototype.$mi.ajax,o=new FormData;o.append("action","monsterinsights_notification_dismiss"),o.append("nonce",s["a"].prototype.$mi.nonce),o.append("id",t),D.a.post(n,o).then((function(t){e(t.data)})).catch((function(){return!1}))}))},At={fetchNotifications:St,dismissNotification:Dt},Nt=function(t){At.fetchNotifications().then((function(e){e.notifications&&e.dismissed&&t.commit("NOTIFICATIONS_UPDATED",e),e.view_url&&t.commit("NOTIFICATIONS_URL_UPDATED",e.view_url),e.sidebar_url&&t.commit("NOTIFICATIONS_SIDEBAR_URL_UPDATED",e.sidebar_url)})).catch((function(t){console.error(t)}))},Lt=function(t,e){return new Promise((function(n,s){At.dismissNotification(e).then((function(s){s&&(t.commit("NOTIFICATION_DISMISSED",e),n(!0))})).catch((function(t){console.error(t),s(t)}))}))},It={getNotifications:Nt,dismissNotification:Lt},Ut=function(t){return t.notifications},Rt=function(t){return t.dismissed},Mt=function(t){return t.view_url},Ht=function(t){return t.sidebar_url},Bt={notifications:Ut,dismissed:Rt,view_url:Mt,sidebar_url:Ht},Ft=(n("4160"),n("a434"),n("159b"),function(t,e){t.notifications=e.notifications,t.dismissed=e.dismissed}),Vt=function(t,e){t.view_url=e},Yt=function(t,e){t.sidebar_url=e},Kt=function(t,e){t.notifications.forEach((function(n,s){n.id===e&&(t.notifications.splice(s,1),t.dismissed.splice(0,0,n)),"all"===e&&t.dismissed.splice(0,0,n)})),"all"===e&&(t.notifications=[])},Wt={NOTIFICATIONS_UPDATED:Ft,NOTIFICATIONS_URL_UPDATED:Vt,NOTIFICATIONS_SIDEBAR_URL_UPDATED:Yt,NOTIFICATION_DISMISSED:Kt},Gt={notifications:[],dismissed:[],view_url:"",sidebar_url:""},qt={namespaced:!0,state:Gt,actions:It,getters:Bt,mutations:Wt},Zt=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"inline";return new Promise((function(e){var n=s["a"].prototype.$mi.ajax,o=new FormData;o.append("action","monsterinsights_get_popular_posts_themes"),o.append("nonce",s["a"].prototype.$mi.nonce),o.append("type",t),D.a.post(n,o).then((function(t){if(!t.data.success)return!1;e(t.data.data)})).catch((function(){return!1}))}))},Jt=function(t,e){return new Promise((function(t){var n=s["a"].prototype.$mi.ajax,o=new FormData;o.append("action","monsterinsights_vue_popular_posts_update_theme_setting"),o.append("nonce",s["a"].prototype.$mi.nonce),o.append("type",e.type),o.append("theme",e.theme),o.append("object",e.object),o.append("key",e.key),o.append("value",e.value),D.a.post(n,o).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return s["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't save settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}s["a"].prototype.$mi_error_toast({title:Object(c["a"])("Network error encountered. Settings not saved.","google-analytics-for-wordpress")})}))}))},Qt={fetchThemes:Zt,updateThemeSetting:Jt},Xt=function(t,e){Qt.fetchThemes(e).then((function(n){n.themes&&t.commit("THEMES_UPDATED",{themes:n.themes,type:e})})).catch((function(t){console.error(t)}))},zt=function(t,e){t.commit("THEME_STYLE_UPDATE",e),t.commit("$_settings/SETTINGS_SAVE_START",!0,{root:!0});var n=Qt.updateThemeSetting(t,e);return n.then((function(){t.commit("$_settings/SETTINGS_SAVE_END",!0,{root:!0})})),n},te=function(t,e){e.type&&"undefined"!==typeof e.key&&t.commit("PREVIEW_UPDATED",e)},ee={getThemes:Xt,updatePreview:te,updateThemeSetting:zt},ne=function(t){return t.themes_inline},se=function(t){return t.themes_widget},oe=function(t){return t.themes_products},ie=function(t){return t.theme_preview_inline},ae=function(t){return t.theme_preview_widget},re=function(t){return t.theme_preview_products},ce={themes_inline:ne,themes_widget:se,themes_products:oe,theme_preview_inline:ie,theme_preview_widget:ae,theme_preview_products:re},le=function(t,e){e.type&&"undefined"!==typeof t["themes_"+e.type]&&(t["themes_"+e.type]=e.themes)},ue=function(t,e){e.type&&"undefined"!==typeof t["theme_preview_"+e.type]&&(t["theme_preview_"+e.type]=e.key)},pe=function(t,e){e.type&&e.theme&&e.object&&e.key&&e.value&&"undefined"!==typeof t["themes_"+e.type]&&(t["themes_"+e.type][e.theme]["styles"][e.object][e.key]=e.value)},de={THEMES_UPDATED:le,PREVIEW_UPDATED:ue,THEME_STYLE_UPDATE:pe},fe={themes_inline:{},themes_widget:{},themes_products:{},theme_preview_inline:"",theme_preview_widget:"",theme_preview_products:""},me={namespaced:!0,state:fe,actions:ee,getters:ce,mutations:de},he=function(t){t.commit("INIT")},ge=function(t){t.commit("BLOCK_APP")},_e=function(t){t.commit("UNBLOCK_APP")},be=function(t,e){t.commit("ADD_NOTICE",e)},ve=function(t,e){t.commit("REMOVE_NOTICE",e)},ye=function(t){t.commit("RESET_NOTICES")},we={init:he,block:ge,unblock:_e,addNotice:be,removeNotice:ve,resetNotices:ye},Oe=function(t){return t.blocked},Ce=function(t){return t.notices},$e=function(t){return t.mi},je=function(t){return t.ftp_form},ke={blocked:Oe,notices:Ce,mi:$e,ftp_form:je},Ee=function(){},Pe=function(t){t.blocked=!0},xe=function(t){t.blocked=!1},Te=function(t,e){e.id&&s["a"].set(t.notices,e.id,e)},Se=function(t,e){t.notices[e]&&s["a"].delete(t.notices,e)},De=function(t){t.notices={}},Ae=function(t,e){t.ftp_form.hostname=e},Ne=function(t,e){t.ftp_form.username=e},Le=function(t,e){t.ftp_form.password=e},Ie=function(t,e){t.ftp_form.connection_type=e},Ue=function(t,e){t.ftp_form.visible=!0,t.ftp_form.action=e.action,t.ftp_form.data=e.data},Re=function(t){t.ftp_form.visible=!1},Me={INIT:Ee,BLOCK_APP:Pe,UNBLOCK_APP:xe,ADD_NOTICE:Te,REMOVE_NOTICE:Se,RESET_NOTICES:De,UPDATE_HOSTNAME:Ae,UPDATE_USERNAME:Ne,UPDATE_PASSWORD:Le,UPDATE_CONNECTION_TYPE:Ie,SHOW_FTP_FORM:Ue,HIDE_FTP_FORM:Re},He={blocked:!1,notices:{},mi:window.monsterinsights?window.monsterinsights:{},ftp_form:{hostname:"",username:"",password:"",connection_type:"ftp",visible:!1,action:"",data:{}}},Be={namespaced:!0,state:He,actions:we,getters:ke,mutations:Me},Fe=function(t){t.subscribe((function(e,n){if("$_app/INIT"===e.type){var s=n["$_app"].mi.versions;s.php_version_below_54?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! PHP Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("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.","google-analytics-for-wordpress"),s.php_version,"7.4"),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating PHP","google-analytics-for-wordpress"),link:s.php_update_link},dismissable:!0,id:"php_update_54"}):s.wp_version_below_46?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! WordPress Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("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.","google-analytics-for-wordpress"),s.wp_version),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating WordPress","google-analytics-for-wordpress"),link:s.wp_update_link},dismissable:!0,id:"wp_update_46"}):s.php_version_below_56?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! PHP Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("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.","google-analytics-for-wordpress"),s.php_version,"7.4"),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating PHP","google-analytics-for-wordpress"),link:s.php_update_link},dismissable:!0,id:"php_update_56"}):s.wp_version_below_49&&t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! WordPress Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("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.","google-analytics-for-wordpress"),s.wp_version),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating WordPress","google-analytics-for-wordpress"),link:s.wp_update_link},dismissable:!0,id:"wp_update_49"})}}))},Ve=Fe;s["a"].use(o["a"]);var Ye=[Ve];e["a"]=new o["a"].Store({modules:{$_app:Be,$_license:T,$_auth:tt,$_addons:xt,$_settings:Tt["a"],$_notifications:qt,$_popularposts:me},plugins:Ye})},"46a2":function(t,e,n){},"470e":function(t,e,n){"use strict";var s=n("a1d2"),o=n.n(s);o.a},"48c7":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.noauth?t._e():n("div",{staticClass:"monsterinsights-upsell-overlay"},[n("div",{staticClass:"monsterinsights-upsell-top"},[t.upsellData.title?n("h3",{domProps:{textContent:t._s(t.upsellData.title)}}):t._e(),t.upsellData.subtitle?n("p",{staticClass:"monsterinsights-upsell-subtitle",domProps:{textContent:t._s(t.upsellData.subtitle)}}):t._e()]),n("div",{staticClass:"monsterinsights-upsell-content"},[t.upsellData.features?n("ul",t._l(t.upsellData.features,(function(e,s){return n("li",{key:s,domProps:{textContent:t._s(e)}})})),0):t._e(),n("div",{staticClass:"monsterinsights-center"},[n("a",{staticClass:"monsterinsights-button",attrs:{href:t.upgrade_link,target:"_blank"},domProps:{textContent:t._s(t.text_upsell_button)}})])])])},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("e439"),n("dbb4"),n("b64b"),n("159b"),n("fc11")),a=n("2f62"),r=n("561c");function c(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function l(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?c(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):c(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var u={name:"ReportUpsellOverlay",props:{report:String},data:function(){return{upgrade_link:this.$getUpgradeUrl("report",this.report),text_upsell_button:Object(r["a"])("Upgrade to MonsterInsights Pro","google-analytics-for-wordpress")}},computed:l({},Object(a["b"])({noauth:"$_reports/noauth"}),{upsellData:function(){return this.$mi_get_upsell_content(this.report)}})},p=u,d=n("2877"),f=Object(d["a"])(p,s,o,!1,null,null,null);e["a"]=f.exports},"4bdc":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-navigation-bar"},[n("div",{staticClass:"monsterinsights-container"},[t._t("default")],2)])},o=[],i={name:"TheAppNavigation"},a=i,r=n("2877"),c=Object(r["a"])(a,s,o,!1,null,null,null);e["a"]=c.exports},5443:function(t,e,n){"use strict";var s=n("0f8f"),o=n.n(s);o.a},"54b6":function(t,e,n){"use strict";var s={isThemeAvailable:function(t){return"lite"===t},canaccess:function(){return!1}};e["a"]=s},"5eda":function(t,e,n){},"6d70":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("fieldset",[n("div",{staticClass:"monsterinsights-settings-input-radio"},t._l(t.options,(function(e){return n("span",{key:e.value},[n("label",{class:t.labelClass(e),attrs:{for:"monsterinsights-settings-radio-"+t.name+"["+e.value+"]"}},[n("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.titleClass(e.value)}),n("input",{attrs:{id:"monsterinsights-settings-radio-"+t.name+"["+e.value+"]",type:"radio",name:t.name,autocomplete:"off",readonly:t.disabled||e.level&&!t.optionAvailable(e.level)},domProps:{value:e.value,checked:t.isChecked(e.value)},on:{change:t.updateSetting}}),n("span",{staticClass:"monsterinsights-settings-radio-text",domProps:{innerHTML:t._s(e.label)}}),e.level?n("PopularPostsProPill",{attrs:{level:e.level}}):t._e()],1),t.$slots[e.value]&&t.isChecked(e.value)?n("span",{staticClass:"monsterinsights-radio-sub-panel"},[t.isChecked(e.value)?t._t(e.value):t._e()],2):t._e()])})),0)])},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("b0c0"),n("e439"),n("dbb4"),n("b64b"),n("159b"),n("fc11")),a=n("2f62"),r=n("17be"),c=n("54b6");function l(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function u(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?l(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var p={name:"SettingsInputRadio",components:{PopularPostsProPill:r["a"]},props:{options:Array,name:String,auth_disabled:{type:Boolean,default:!0}},data:function(){return{is_loading:!1,has_error:!1}},computed:u({},Object(a["b"])({settings:"$_settings/settings",auth:"$_auth/auth",license:"$_license/license",license_network:"$_license/license_network"}),{has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},tooltip_data:function(){return{content:this.disabled?this.$mi_need_to_auth:"",autoHide:!1,trigger:"hover focus click"}},disabled:function(){return!!this.auth_disabled&&!this.has_ua},licenseType:function(){return this.$mi.network?this.license_network.type:this.license.type}}),methods:{optionAvailable:function(t){return c["a"].canaccess(this.licenseType,t)},updateSetting:function(t){var e=this;if(this.disabled)return!1;this.$emit("change",t.target.value),this.$mi_saving_toast({}),this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:t.target.value}).then((function(n){n.success?(e.$emit("updated",t.target.value),e.$mi_success_toast({})):e.$mi_error_toast({})}))},titleClass:function(t){var e="monsterinsights-styled-radio";return this.isChecked(t)&&(e+=" monsterinsights-styled-radio-checked"),e},labelClass:function(t){var e="";return this.isChecked(t.value)&&(e+=" monsterinsights-styled-radio-label-checked"),t.level&&!this.optionAvailable(t.level)&&(e+=" monsterinsights-styled-radio-label-disabled"),e},isChecked:function(t){return this.settings[this.name]?t===this.settings[this.name]:t===this.options[0].value}}},d=p,f=n("2877"),m=Object(f["a"])(d,s,o,!1,null,null,null);e["a"]=m.exports},"6ffa":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-settings-input-repeater"},[t.rows.length?n("div",{staticClass:"monsterinsights-settings-input-repeater-labels monsterinsights-settings-input-repeater-row"},t._l(t.structure,(function(e,s){return n("label",{key:s,domProps:{textContent:t._s(e.label)}})})),0):t._e(),t._l(t.rows,(function(e,s){return[n("div",{key:s,staticClass:"monsterinsights-settings-input-repeater-row"},[t._l(t.structure,(function(e,o){return n("span",{key:o,class:t.errorClass(s,e.name)},[n("input",{directives:[{name:"model",rawName:"v-model",value:t.rows[s][e.name],expression:"rows[index][input.name]"}],attrs:{type:"text",readonly:t.disabled},domProps:{value:t.rows[s][e.name]},on:{change:function(n){return t.updateSetting(!1,e.pattern)},input:function(n){n.target.composing||t.$set(t.rows[s],e.name,n.target.value)}}})])})),n("button",{attrs:{title:t.text_remove_row},on:{click:function(e){return e.preventDefault(),t.removeRow(s)}}},[n("i",{class:t.delete_icon})])],2),t.has_errors[s]?n("label",{key:s+"error",staticClass:"monsterinsights-error"},[n("i",{staticClass:"monstericon-warning-triangle"}),n("span",{domProps:{innerHTML:t._s(t.has_errors[s])}})]):t._e()]})),t.show_max_item_error?n("label",{staticClass:"monsterinsights-error"},[n("i",{staticClass:"monstericon-warning-triangle"}),n("span",{domProps:{innerHTML:t._s(t.max_item_error_notice)}})]):t._e(),t.show_min_item_error?n("label",{staticClass:"monsterinsights-error"},[n("i",{staticClass:"monstericon-warning-triangle"}),n("span",{domProps:{innerHTML:t._s(t.min_item_error_notice)}})]):t._e(),n("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.button_class,domProps:{textContent:t._s(t.text_add_path)},on:{click:function(e){return e.preventDefault(),t.addRow(e)}}})],2)},o=[],i=(n("a4d3"),n("4de4"),n("4160"),n("c975"),n("a434"),n("b0c0"),n("a9e3"),n("e439"),n("dbb4"),n("b64b"),n("159b"),n("fc11")),a=n("2b0e"),r=n("561c"),c=n("2f62");function l(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var s=Object.getOwnPropertySymbols(t);e&&(s=s.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,s)}return n}function u(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?l(Object(n),!0).forEach((function(e){Object(i["a"])(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):l(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}var p={name:"SettingsInputRepeater",props:{structure:Array,name:String,text_add:String,delete_icon:{type:String,default:"monstericon-times-circle"},max_items:{type:Number,default:-1},min_items:{type:Number,default:-1},max_item_error_notice:{type:String,default:Object(r["a"])("You can add maximum 5 items.","google-analytics-for-wordpress")},min_item_error_notice:{type:String,default:Object(r["a"])("At least 0 item required.","google-analytics-for-wordpress")}},data:function(){return{text_add_path:this.text_add?this.text_add:Object(r["a"])("Add Another Link Path","google-analytics-for-wordpress"),text_remove_row:Object(r["a"])("Remove row","google-analytics-for-wordpress"),has_errors:[],show_max_item_error:!1,show_min_item_error:!1}},computed:u({},Object(c["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{rows:{get:function(){return this.settings[this.name]||a["a"].set(this.settings,this.name,[]),JSON.parse(JSON.stringify(this.settings[this.name]))},set:function(){this.updateSetting(!1)}},has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},disabled:function(){return!this.has_ua},tooltip_data:function(){return{content:this.has_ua?"":this.$mi_need_to_auth,autoHide:!1,trigger:"hover focus click"}},button_class:function(){var t="monsterinsights-button";return this.disabled&&(t+=" monsterinsights-button-disabled"),t}}),methods:{updateSetting:function(t){var e=this;return!this.disabled&&(!(!t&&!this.validateSettings())&&(this.$mi_saving_toast({}),void this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:this.rows}).then((function(t){t.success?e.$mi_success_toast({}):e.$mi_error_toast({})}))))},addRow:function(){var t={};if(this.rows.length!==this.max_items){for(var e in this.structure)t[this.structure[e]["name"]]="";this.rows.push(t),this.rows.length!==this.min_items&&(this.show_min_item_error=!1),this.updateSetting(!0)}else this.show_max_item_error=!0},removeRow:function(t){this.rows.length!==this.min_items?(this.rows&&this.rows instanceof Array?this.rows.splice(t,1):this.rows="",this.rows.length!==this.max_items&&(this.show_max_item_error=!1),this.updateSetting()):this.show_min_item_error=!0},validateSettings:function(){var t=this;this.has_errors=[];var e={};for(var n in this.rows)for(var s in this.structure){if(""===this.rows[n][this.structure[s]["name"]]){this.has_errors[n]=Object(r["d"])(Object(r["a"])("%s can't be empty.","google-analytics-for-wordpress"),"<strong>"+this.structure[s]["label"]+"</strong>");break}if(this.structure[s]["pattern"]){var o=this.structure[s]["pattern"].test(this.rows[n][this.structure[s]["name"]]);if(!1===o){this.has_errors[n]=this.structure[s]["error"];break}}this.structure[s]["prevent_duplicates"]&&function(){"undefined"===typeof e[t.structure[s]["name"]]&&(e[t.structure[s]["name"]]=[]),e[t.structure[s]["name"]].push(t.rows[n][t.structure[s]["name"]]);var o=e[t.structure[s]["name"]],i=function(){return o.filter((function(t,e){return o.indexOf(t)===e}))};o.length!==i(o).length&&(t.has_errors[n]=Object(r["a"])("Duplicate values are not allowed.","google-analytics-for-wordpress"))}()}return 0===this.has_errors.length},errorClass:function(t,e){return""===this.rows[t][e]?"":this.has_errors[t]?"monsterinsights-input-error":"monsterinsights-input-valid"}}},d=p,f=n("2877"),m=Object(f["a"])(d,s,o,!1,null,null,null);e["a"]=m.exports},7220:function(t,e,n){"use strict";n("4795"),n("b0c0"),n("d3b7");var s=n("bc3a"),o=n.n(s),i=n("2b0e"),a=n("561c"),r=function(t){return new Promise((function(e){var n=new FormData;n.append("action","monsterinsights_vue_get_settings"),n.append("nonce",i["a"].prototype.$mi.nonce),o.a.post(i["a"].prototype.$mi.ajax,n).then((function(t){i["a"].prototype.$swal.close(),e(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var n=e.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't load settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),n.status,n.statusText)})}i["a"].prototype.$mi_error_toast({title:Object(a["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},c=function(t,e){return new Promise((function(t){var n=new FormData;n.append("action","monsterinsights_vue_update_settings"),n.append("nonce",i["a"].prototype.$mi.nonce),n.append("setting",e.name),!1!==e.value&&(Array===e.value.constructor?n.append("value",JSON.stringify(e.value)):n.append("value",e.value)),o.a.post(i["a"].prototype.$mi.ajax,n).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't save settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}i["a"].prototype.$mi_error_toast({title:Object(a["a"])("Network error encountered. Settings not saved.","google-analytics-for-wordpress")})}))}))},l=function(t,e){return new Promise((function(t){var n=new FormData;n.append("action","monsterinsights_vue_update_settings_bulk"),n.append("nonce",i["a"].prototype.$mi.nonce),n.append("settings",JSON.stringify(e)),o.a.post(i["a"].prototype.$mi.ajax,n).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return i["a"].prototype.$mi_error_toast({title:Object(a["d"])(Object(a["a"])("Can't save settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}i["a"].prototype.$mi_error_toast({title:Object(a["a"])("Network error encountered. Settings not saved.","google-analytics-for-wordpress")})}))}))},u={fetchSettings:r,saveSettings:c,saveBulkSettings:l},p=function(t){u.fetchSettings(t).then((function(e){t.commit("SETTINGS_UPDATED",e)})).catch((function(t){console.error(t)}))},d=function(t,e){t.commit("SETTING_UPDATE",e),t.commit("SETTINGS_SAVE_START");var n=u.saveSettings(t,e);return n.then((function(){t.commit("SETTINGS_SAVE_END")})),n},f=function(t,e){t.commit("SETTINGS_BULK_UPDATE",e),t.commit("SETTINGS_SAVE_START");var n=u.saveBulkSettings(t,e);return n.then((function(){t.commit("SETTINGS_SAVE_END")})),n},m=function(t,e){t.commit("SETTING_UPDATE_UNDO",e),t.commit("SETTINGS_SAVE_START");var n=u.saveSettings(t,e);return n.then((function(){t.commit("SETTINGS_SAVE_END")})),n},h=function(t,e){t.commit("SETTING_UPDATE_REDO",e),t.commit("SETTINGS_SAVE_START");var n=u.saveSettings(t,e);return n.then((function(){t.commit("SETTINGS_SAVE_END")})),n},g=function(t){t.commit("SETTINGS_SAVE_START"),i["a"].prototype.$mi_saving_toast({}),setTimeout((function(){t.commit("SETTINGS_SAVE_END"),i["a"].prototype.$mi_success_toast({})}),1e3)},_=function(t){t.dispatch("updateSettingsUndo",t.state.history[t.state.historyIndex-1])},b=function(t){t.dispatch("updateSettingsRedo",t.state.history[t.state.historyIndex+1])},v={getSettings:p,updateSettings:d,simulateSave:g,undo:_,redo:b,updateSettingsUndo:m,updateSettingsRedo:h,updateSettingsBulk:f},y=function(t){return t.settings},w=function(t){return t.history},O=function(t){return t.historyIndex},C={settings:y,history:w,historyIndex:O},$=(n("a434"),function(t,e){e.is_saving=!1,t.settings=e}),j=function(t,e){t.settings.is_saving=!0,t.history[t.historyIndex]&&t.history[t.historyIndex].name===e.name||(t.history.push({name:e.name,value:!!t.settings[e.name]&&t.settings[e.name]}),t.historyIndex++),t.historyIndex<t.history.length-1&&t.history.splice(t.historyIndex+1),t.history.push({name:e.name,value:e.value}),t.historyIndex++,i["a"].set(t.settings,e.name,e.value)},k=function(t,e){for(var n in t.settings.is_saving=!0,e)e.hasOwnProperty(n)&&i["a"].set(t.settings,n,e[n])},E=function(t,e){t.settings.is_saving=!0,t.historyIndex--,i["a"].set(t.settings,e.name,e.value)},P=function(t,e){t.settings.is_saving=!0,t.historyIndex++,i["a"].set(t.settings,e.name,e.value)},x=function(t){t.settings.is_saving=!0},T=function(t){t.settings.is_saving=!1},S={SETTINGS_UPDATED:$,SETTING_UPDATE:j,SETTINGS_SAVE_START:x,SETTINGS_SAVE_END:T,SETTING_UPDATE_UNDO:E,SETTING_UPDATE_REDO:P,SETTINGS_BULK_UPDATE:k},D={settings:{automatic_updates:"all"},history:[],historyIndex:-1};e["a"]={namespaced:!0,state:D,actions:v,getters:C,mutations:S}},7460:function(t,e,n){"use strict";n("c975"),n("a9e3"),n("4d63"),n("ac1f"),n("25f0"),n("466d"),n("5319");var s=n("2b0e"),o={install:function(t){window.monsterinsights&&(t.prototype.$mi=window.monsterinsights),t.prototype.$isPro=r,t.prototype.$addQueryArg=c,t.prototype.$getUrl=a,t.prototype.$getUpgradeUrl=i,t.prototype.$formatNumber=l}};function i(t,e,n){var s=a(t,e,n);return r()?s:"0"!==window.monsterinsights.shareasale_id?c(window.monsterinsights.shareasale_url,"urllink",s):s}function a(t,e,n){var o=r()?"proplugin":"liteplugin",i=r()?"my-account/":"lite/",a=s["a"].prototype.$mi.plugin_version;return t=t||"defaultmedium",e=e||"defaultcampaign",n=n||"https://www.monsterinsights.com/"+i,n=c(n,"utm_source",o),n=c(n,"utm_medium",t),n=c(n,"utm_campaign",e),n=c(n,"utm_content",a),n}function r(){return!1}function c(t,e,n){var s=new RegExp("([?&])"+e+"=.*?(&|#|$)","i");if(t.match(s))return t.replace(s,"$1"+e+"="+n+"$2");var o="";-1!==t.indexOf("#")&&(o=t.replace(/.*#/,"#"),t=t.replace(/#.*/,""));var i=-1!==t.indexOf("?")?"&":"?";return t+i+e+"="+n+o}function l(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;return"number"!==typeof t&&(t=Number(t||0)),t.toLocaleString("en-US",{maximumFractionDigits:e})}e["a"]=o},"7f78":function(t,e,n){"use strict";var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"monsterinsights-addon"},[n("div",{staticClass:"monsterinsights-addon-top"},[t.addon.icon?n("div",{staticClass:"monsterinsights-addon-image"},[n("img",{staticClass:"monsterinsights-addon-thumb",attrs:{src:t.addon.icon,alt:t.addon.title}})]):t._e(),n("div",{staticClass:"monsterinsights-addon-text"},[n("h3",{staticClass:"monsterinsights-addon-title",domProps:{textContent:t._s(t.addonTitle)}}),t.addon.excerpt?n("p",{staticClass:"monsterinsights-addon-excerpt",domProps:{textContent:t._s(t.addon.excerpt)}}):t._e()])]),n("div",{class:t.actionsClass()},[n("div",{staticClass:"monsterinsights-interior"},[n("span",{staticClass:"monsterinsights-addon-status",domProps:{innerHTML:t._s(t.statusText())}}),n("div",{staticClass:"monsterinsights-addon-action"},["licensed"===t.addon.type?n("button",{staticClass:"monsterinsights-button",on:{click:function(e){return e.preventDefault(),t.clickAction(e)}}},[n("span",{domProps:{innerHTML:t._s(t.textButtonAction())}})]):n("a",{staticClass:"monsterinsights-button",attrs:{href:t.upgrade_url,target:"_blank"},domProps:{textContent:t._s(t.textButtonAction())}})])])])])},o=[],i=(n("c975"),n("ac1f"),n("5319"),n("561c")),a={name:"AddonBlock",props:{addon:Object,isAddon:{type:Boolean,default:!0}},data:function(){return{text_status:Object(i["a"])("Status: %s"