Google Analytics Dashboard for WP (GADWP) - Version 6.5.0

Version Description

Download this release

Release Info

Developer gripgrip
Plugin Icon 128x128 Google Analytics Dashboard for WP (GADWP)
Version 6.5.0
Comparing to
See all releases

Code changes from version 6.4.0 to 6.5.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 ExactMetrics = function () {
14
+ /* ExactMetrics 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.exactmetrics_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 exactmetrics_frontend.download_extensions == 'string' ) {
138
+ download_extensions = exactmetrics_frontend.download_extensions.split( "," );
139
+ }
140
+ return download_extensions;
141
+ }
142
+
143
+ function __gtagTrackerGetInboundPaths() {
144
+ var inbound_paths = [];
145
+ if ( typeof exactmetrics_frontend.inbound_paths == 'string' ) {
146
+ inbound_paths = JSON.parse( exactmetrics_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.exactmetrics_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.exactmetrics_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 = exactmetrics_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 ( exactmetrics_frontend.hash_tracking === "true" && prevHash != window.location.hash && exactmetrics_frontend.ua ) {
560
+ prevHash = window.location.hash;
561
+ __gtagTracker( 'config', exactmetrics_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 ExactMetricsObject = new ExactMetrics();
assets/js/frontend-gtag.min.js ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ;var ExactMetrics=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.exactmetrics_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 exactmetrics_frontend.download_extensions=='string'){e=exactmetrics_frontend.download_extensions.split(',')};return e};function d(){var e=[];if(typeof exactmetrics_frontend.inbound_paths=='string'){e=JSON.parse(exactmetrics_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.exactmetrics_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=exactmetrics_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(exactmetrics_frontend.hash_tracking==='true'&&l!=window.location.hash&&exactmetrics_frontend.ua){l=window.location.hash;__gtagTracker('config',exactmetrics_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}}},ExactMetricsObject=new ExactMetrics();
gadwp.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
- * Version: 6.4.0
8
  * Requires at least: 3.8.0
9
  * Requires PHP: 5.2
10
  * Author URI: https://exactmetrics.com
@@ -44,7 +44,7 @@ final class ExactMetrics_Lite {
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
- public $version = '6.4.0';
48
 
49
  /**
50
  * Plugin file.
@@ -145,6 +145,15 @@ final class ExactMetrics_Lite {
145
  */
146
  public $routes;
147
 
 
 
 
 
 
 
 
 
 
148
  /**
149
  * Primary class constructor.
150
  *
@@ -200,7 +209,7 @@ final class ExactMetrics_Lite {
200
 
201
  // This does the version to version background upgrade routines and initial install
202
  $em_version = get_option( 'exactmetrics_current_version', '5.5.3' );
203
- if ( version_compare( $em_version, '6.4.0', '<' ) ) {
204
  exactmetrics_lite_call_install_and_upgrade();
205
  }
206
 
@@ -546,6 +555,21 @@ final class ExactMetrics_Lite {
546
  require_once EXACTMETRICS_PLUGIN_DIR . 'includes/frontend/seedprod.php';
547
  require_once EXACTMETRICS_PLUGIN_DIR . 'includes/measurement-protocol.php';
548
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
549
  }
550
 
551
  /**
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
+ * Version: 6.5.0
8
  * Requires at least: 3.8.0
9
  * Requires PHP: 5.2
10
  * Author URI: https://exactmetrics.com
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
+ public $version = '6.5.0';
48
 
49
  /**
50
  * Plugin file.
145
  */
146
  public $routes;
147
 
148
+ /**
149
+ * The tracking mode used in the frontend.
150
+ *
151
+ * @since 6.5.0
152
+ * @accces public
153
+ * @var string
154
+ */
155
+ public $tracking_mode;
156
+
157
  /**
158
  * Primary class constructor.
159
  *
209
 
210
  // This does the version to version background upgrade routines and initial install
211
  $em_version = get_option( 'exactmetrics_current_version', '5.5.3' );
212
+ if ( version_compare( $em_version, '6.5.0', '<' ) ) {
213
  exactmetrics_lite_call_install_and_upgrade();
214
  }
215
 
555
  require_once EXACTMETRICS_PLUGIN_DIR . 'includes/frontend/seedprod.php';
556
  require_once EXACTMETRICS_PLUGIN_DIR . 'includes/measurement-protocol.php';
557
  }
558
+
559
+ /**
560
+ * Get the tracking mode for the frontend scripts.
561
+ *
562
+ * @return string
563
+ */
564
+ public function get_tracking_mode() {
565
+
566
+ if ( ! isset( $this->tracking_mode ) ) {
567
+ // This will already be set to 'analytics' to anybody already using the plugin before 6.5.0.
568
+ $this->tracking_mode = exactmetrics_get_option( 'tracking_mode', 'gtag' );
569
+ }
570
+
571
+ return $this->tracking_mode;
572
+ }
573
  }
574
 
575
  /**
includes/em-install.php CHANGED
@@ -93,6 +93,10 @@ class ExactMetrics_Install {
93
  $this->v640_upgrades();
94
  }
95
 
 
 
 
 
96
  // Do not use. See exactmetrics_after_install_routine comment below.
97
  do_action( 'exactmetrics_after_existing_upgrade_routine', $version );
98
  $version = get_option( 'exactmetrics_current_version', $version );
@@ -456,7 +460,8 @@ class ExactMetrics_Install {
456
  'save_settings' => array( 'administrator' ),
457
  'view_reports' => array( 'administrator', 'editor' ),
458
  'events_mode' => 'js',
459
- 'tracking_mode' => 'analytics',
 
460
  'email_summaries' => 'on',
461
  'summaries_html_template' => 'yes',
462
  'summaries_email_addresses' => $admin_email_array,
@@ -667,4 +672,14 @@ class ExactMetrics_Install {
667
  // Delete existing year in review report option.
668
  delete_option( 'exactmetrics_report_data_yearinreview' );
669
  }
 
 
 
 
 
 
 
 
 
 
670
  }
93
  $this->v640_upgrades();
94
  }
95
 
96
+ if ( version_compare( $version, '6.5.0', '<' ) ) {
97
+ $this->v650_upgrades();
98
+ }
99
+
100
  // Do not use. See exactmetrics_after_install_routine comment below.
101
  do_action( 'exactmetrics_after_existing_upgrade_routine', $version );
102
  $version = get_option( 'exactmetrics_current_version', $version );
460
  'save_settings' => array( 'administrator' ),
461
  'view_reports' => array( 'administrator', 'editor' ),
462
  'events_mode' => 'js',
463
+ 'tracking_mode' => 'gtag', // Default new users to gtag.
464
+ 'gtagtracker_compatibility_mode' => true,
465
  'email_summaries' => 'on',
466
  'summaries_html_template' => 'yes',
467
  'summaries_email_addresses' => $admin_email_array,
672
  // Delete existing year in review report option.
673
  delete_option( 'exactmetrics_report_data_yearinreview' );
674
  }
675
+
676
+ /**
677
+ * Upgrade routine for version 6.5.0
678
+ */
679
+ public function v650_upgrades() {
680
+ // Enable gtag compatibility mode by default.
681
+ if ( empty( $this->new_settings['gtagtracker_compatibility_mode'] ) ) {
682
+ $this->new_settings['gtagtracker_compatibility_mode'] = true;
683
+ }
684
+ }
685
  }
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 ExactMetrics
8
+ * @subpackage Events
9
+ * @author Chris Christoff
10
+ */
11
+
12
+ // Exit if accessed directly
13
+ if ( ! defined( 'ABSPATH' ) ) {
14
+ exit;
15
+ }
16
+
17
+ class ExactMetrics_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 = exactmetrics_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 = exactmetrics_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 = exactmetrics_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( EXACTMETRICS_PLUGIN_DIR . 'assets/js/frontend-gtag.min.js' ) ) {
100
+ $suffix = '';
101
+ }
102
+ wp_enqueue_script( 'exactmetrics-frontend-script', plugins_url( 'assets/js/frontend-gtag' . $suffix . '.js', EXACTMETRICS_PLUGIN_FILE ), array(), exactmetrics_get_asset_version(), false );
103
+ wp_localize_script(
104
+ 'exactmetrics-frontend-script',
105
+ 'exactmetrics_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' => exactmetrics_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 exactmetrics_tracking_script( ) {
30
- require_once plugin_dir_path( EXACTMETRICS_PLUGIN_FILE ) . 'includes/frontend/class-tracking-abstract.php';
31
-
32
- $mode = is_preview() ? 'preview' : 'analytics';
33
-
34
- do_action( 'exactmetrics_tracking_before_' . $mode );
35
- do_action( 'exactmetrics_tracking_before', $mode );
36
- if ( $mode === 'preview' ) {
37
- require_once plugin_dir_path( EXACTMETRICS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-preview.php';
38
- $tracking = new ExactMetrics_Tracking_Preview();
39
- echo $tracking->frontend_output();
40
- } else {
41
- require_once plugin_dir_path( EXACTMETRICS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-analytics.php';
42
- $tracking = new ExactMetrics_Tracking_Analytics();
43
- echo $tracking->frontend_output();
44
- }
45
-
46
- do_action( 'exactmetrics_tracking_after_' . $mode );
47
- do_action( 'exactmetrics_tracking_after', $mode );
 
 
 
 
48
  }
 
49
  add_action( 'wp_head', 'exactmetrics_tracking_script', 6 );
50
  //add_action( 'login_head', 'exactmetrics_tracking_script', 6 );
51
 
@@ -56,51 +61,61 @@ add_action( 'wp_head', 'exactmetrics_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 exactmetrics_events_tracking( ) {
65
- $track_user = exactmetrics_track_user();
66
-
67
- if ( $track_user ) {
68
- require_once plugin_dir_path( EXACTMETRICS_PLUGIN_FILE ) . 'includes/frontend/events/class-analytics-events.php';
69
- new ExactMetrics_Analytics_Events();
70
- } else {
71
- // User is in the disabled group or events mode is off
72
- }
 
 
 
 
 
 
73
  }
 
74
  add_action( 'template_redirect', 'exactmetrics_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 exactmetrics_rss_link_tagger( $guid ) {
87
- global $post;
88
-
89
- if ( exactmetrics_get_option( 'tag_links_in_rss', false ) ){
90
- if ( is_feed() ) {
91
- if ( exactmetrics_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', 'exactmetrics_rss_link_tagger', 99 );
105
 
106
 
@@ -114,9 +129,9 @@ function exactmetrics_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 exactmetrics_add_admin_bar_menu() {
122
  if ( exactmetrics_prevent_loading_frontend_reports() ) {
@@ -127,7 +142,8 @@ function exactmetrics_add_admin_bar_menu() {
127
 
128
  $args = array(
129
  'id' => 'exactmetrics_frontend_button',
130
- 'title' => '<span class="ab-icon dashicons-before dashicons-chart-bar"></span> ExactMetrics', // Maybe allow translation?
 
131
  'href' => '#',
132
  );
133
 
@@ -141,9 +157,9 @@ add_action( 'admin_bar_menu', 'exactmetrics_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 exactmetrics_frontend_admin_bar_scripts() {
149
  if ( exactmetrics_prevent_loading_frontend_reports() ) {
@@ -234,7 +250,8 @@ function exactmetrics_administrator_tracking_notice() {
234
  ?>
235
  <div class="exactmetrics-tracking-notice exactmetrics-tracking-notice-hide">
236
  <div class="exactmetrics-tracking-notice-icon">
237
- <img src="<?php echo esc_url( plugins_url( 'assets/images/em-mascot.png', EXACTMETRICS_PLUGIN_FILE ) ); ?>" width="40" alt="ExactMetrics Mascot" />
 
238
  </div>
239
  <div class="exactmetrics-tracking-notice-text">
240
  <h3><?php esc_html_e( 'Tracking is Disabled for Administrators', 'google-analytics-dashboard-for-wp' ); ?></h3>
@@ -254,91 +271,91 @@ function exactmetrics_administrator_tracking_notice() {
254
  <div class="exactmetrics-tracking-notice-close">&times;</div>
255
  </div>
256
  <style type="text/css">
257
- .exactmetrics-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
- .exactmetrics-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
- .exactmetrics-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
- .exactmetrics-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
- .exactmetrics-tracking-notice p a:hover {
306
- color: #7f7f7f;
307
- text-decoration: none;
308
- }
309
 
310
- .exactmetrics-tracking-notice-icon img {
311
- height: auto;
312
- display: block;
313
- margin: 0;
314
- }
315
 
316
- .exactmetrics-tracking-notice-icon {
317
- padding: 14px;
318
- background-color: #f4f3f7;
319
- border-radius: 6px;
320
- flex-grow: 0;
321
- flex-shrink: 0;
322
- margin-right: 12px;
323
- }
324
 
325
- .exactmetrics-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
- .exactmetrics-tracking-notice.exactmetrics-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 exactmetrics_tracking_script() {
30
+ require_once plugin_dir_path( EXACTMETRICS_PLUGIN_FILE ) . 'includes/frontend/class-tracking-abstract.php';
31
+
32
+ $mode = is_preview() ? 'preview' : ExactMetrics()->get_tracking_mode();
33
+
34
+ do_action( 'exactmetrics_tracking_before_' . $mode );
35
+ do_action( 'exactmetrics_tracking_before', $mode );
36
+ if ( 'preview' === $mode ) {
37
+ require_once plugin_dir_path( EXACTMETRICS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-preview.php';
38
+ $tracking = new ExactMetrics_Tracking_Preview();
39
+ echo $tracking->frontend_output();
40
+ } else if ( 'gtag' === $mode ) {
41
+ require_once plugin_dir_path( EXACTMETRICS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-gtag.php';
42
+ $tracking = new ExactMetrics_Tracking_Gtag();
43
+ echo $tracking->frontend_output();
44
+ } else {
45
+ require_once plugin_dir_path( EXACTMETRICS_PLUGIN_FILE ) . 'includes/frontend/tracking/class-tracking-analytics.php';
46
+ $tracking = new ExactMetrics_Tracking_Analytics();
47
+ echo $tracking->frontend_output();
48
+ }
49
+
50
+ do_action( 'exactmetrics_tracking_after_' . $mode );
51
+ do_action( 'exactmetrics_tracking_after', $mode );
52
  }
53
+
54
  add_action( 'wp_head', 'exactmetrics_tracking_script', 6 );
55
  //add_action( 'login_head', 'exactmetrics_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 exactmetrics_events_tracking() {
70
+ $track_user = exactmetrics_track_user();
71
+
72
+ if ( $track_user ) {
73
+ $tracking_mode = exactmetrics_get_option( 'tracking_mode', 'gtag' );
74
+ if ( 'analytics' === $tracking_mode ) {
75
+ require_once plugin_dir_path( EXACTMETRICS_PLUGIN_FILE ) . 'includes/frontend/events/class-analytics-events.php';
76
+ new ExactMetrics_Analytics_Events();
77
+ } else {
78
+ require_once plugin_dir_path( EXACTMETRICS_PLUGIN_FILE ) . 'includes/frontend/events/class-gtag-events.php';
79
+ new ExactMetrics_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', 'exactmetrics_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 exactmetrics_rss_link_tagger( $guid ) {
99
+ global $post;
100
+
101
+ if ( exactmetrics_get_option( 'tag_links_in_rss', false ) ) {
102
+ if ( is_feed() ) {
103
+ if ( exactmetrics_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', 'exactmetrics_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 exactmetrics_add_admin_bar_menu() {
137
  if ( exactmetrics_prevent_loading_frontend_reports() ) {
142
 
143
  $args = array(
144
  'id' => 'exactmetrics_frontend_button',
145
+ 'title' => '<span class="ab-icon dashicons-before dashicons-chart-bar"></span> ExactMetrics',
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 exactmetrics_frontend_admin_bar_scripts() {
165
  if ( exactmetrics_prevent_loading_frontend_reports() ) {
250
  ?>
251
  <div class="exactmetrics-tracking-notice exactmetrics-tracking-notice-hide">
252
  <div class="exactmetrics-tracking-notice-icon">
253
+ <img src="<?php echo esc_url( plugins_url( 'assets/images/em-mascot.png', EXACTMETRICS_PLUGIN_FILE ) ); ?>"
254
+ width="40" alt="ExactMetrics Mascot"/>
255
  </div>
256
  <div class="exactmetrics-tracking-notice-text">
257
  <h3><?php esc_html_e( 'Tracking is Disabled for Administrators', 'google-analytics-dashboard-for-wp' ); ?></h3>
271
  <div class="exactmetrics-tracking-notice-close">&times;</div>
272
  </div>
273
  <style type="text/css">
274
+ .exactmetrics-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
+ .exactmetrics-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
+ .exactmetrics-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
+ .exactmetrics-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
+ .exactmetrics-tracking-notice p a:hover {
323
+ color: #7f7f7f;
324
+ text-decoration: none;
325
+ }
326
 
327
+ .exactmetrics-tracking-notice-icon img {
328
+ height: auto;
329
+ display: block;
330
+ margin: 0;
331
+ }
332
 
333
+ .exactmetrics-tracking-notice-icon {
334
+ padding: 14px;
335
+ background-color: #f4f3f7;
336
+ border-radius: 6px;
337
+ flex-grow: 0;
338
+ flex-shrink: 0;
339
+ margin-right: 12px;
340
+ }
341
 
342
+ .exactmetrics-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
+ .exactmetrics-tracking-notice.exactmetrics-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 ExactMetrics
8
+ * @author Mircea Sandu
9
+ */
10
+
11
+ // Exit if accessed directly
12
+ if ( ! defined( 'ABSPATH' ) ) {
13
+ exit;
14
+ }
15
+
16
+ class ExactMetrics_Tracking_Gtag extends ExactMetrics_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( 'exactmetrics_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 = exactmetrics_get_ua_to_output();
79
+ if ( empty( $ua_code ) ) {
80
+ return $options;
81
+ }
82
+
83
+ // $track_user = exactmetrics_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 = exactmetrics_get_option( 'cross_domains', array() );
94
+ $allow_anchor = exactmetrics_get_option( 'allow_anchor', false );
95
+
96
+ if ( $allow_anchor ) {
97
+ $options['allow_anchor'] = 'true';
98
+ }
99
+
100
+ if ( class_exists( 'ExactMetrics_AMP' ) ) {
101
+ $options['use_amp_client_id'] = 'true';
102
+ }
103
+
104
+
105
+ $options['forceSSL'] = 'true';
106
+
107
+ // Anonymous data.
108
+ if ( exactmetrics_get_option( 'anonymize_ips', false ) ) {
109
+ $options['anonymize_ip'] = 'true';
110
+ }
111
+
112
+ $options = apply_filters( 'exactmetrics_frontend_tracking_options_gtag_before_scripts', $options );
113
+
114
+ // Add Enhanced link attribution.
115
+ if ( exactmetrics_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( 'exactmetrics_frontend_tracking_options_gtag_before_pageview', $options );
125
+ $options = apply_filters( 'exactmetrics_frontend_tracking_options_before_pageview', $options, $this->name, $this->version );
126
+
127
+ if ( is_404() ) {
128
+ if ( exactmetrics_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 ( exactmetrics_get_option( 'hash_tracking', false ) ) {
145
+ $options['page_path'] = 'location.pathname + location.search + location.hash';
146
+ }
147
+
148
+ $options = apply_filters( 'exactmetrics_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 = exactmetrics_get_ua();
169
+ $src = apply_filters( 'exactmetrics_frontend_output_gtag_src', '//www.googletagmanager.com/gtag/js?id=' . $ua );
170
+ $compat_mode = exactmetrics_get_option( 'gtagtracker_compatibility_mode', true );
171
+ $compat = $compat_mode ? 'window.gtag = __gtagTracker;' : '';
172
+ $track_user = exactmetrics_track_user();
173
+ $output = '';
174
+ $reason = '';
175
+ $attr_string = exactmetrics_get_frontend_analytics_script_atts();
176
+ ob_start();
177
+ ?>
178
+ <!-- This site uses the Google Analytics by ExactMetrics plugin v<?php echo EXACTMETRICS_VERSION; ?> - Using Analytics tracking - https://www.exactmetrics.com/ -->
179
+ <?php if ( ! $track_user ) {
180
+ if ( empty( $ua ) ) {
181
+ $reason = __( 'Note: ExactMetrics is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the ExactMetrics settings panel.', 'google-analytics-dashboard-for-wp' );
182
+ $output .= '<!-- ' . esc_html( $reason ) . ' -->' . PHP_EOL;
183
+ } else if ( current_user_can( 'exactmetrics_save_settings' ) ) {
184
+ $reason = __( 'Note: ExactMetrics 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-dashboard-for-wp' );
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-dashboard-for-wp' );
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 em_version = '<?php echo EXACTMETRICS_VERSION; ?>';
196
+ var em_track_user = <?php echo( $track_user ? 'true' : 'false' ); ?>;
197
+ var em_no_track_reason = <?php echo( $reason ? "'" . esc_js( $reason ) . "'" : "''" ); ?>;
198
+ <?php do_action( 'exactmetrics_tracking_gtag_frontend_output_after_em_track_user' ); ?>
199
+
200
+ <?php if ( $this->should_do_optout() ) { ?>
201
+ var disableStr = 'ga-disable-<?php echo exactmetrics_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 ( em_track_user ) {
227
+ function __gtagTracker() {
228
+ dataLayer.push( arguments );
229
+ }
230
+ __gtagTracker( 'js', new Date() );
231
+ __gtagTracker( 'set', {
232
+ 'developer_id.dNDMyYj' : 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( 'exactmetrics_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 ExactMetrics -->
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( 'EM_NO_TRACKING_OPTOUT' ) && EM_NO_TRACKING_OPTOUT );
352
+ }
353
+ }
includes/helpers.php CHANGED
@@ -1255,10 +1255,10 @@ function exactmetrics_is_code_installed_frontend() {
1255
 
1256
  $body = wp_remote_retrieve_body( $request );
1257
  $current_ua_code = exactmetrics_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( 'ExactMetrics_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-dashboard-for-wp' ), '<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 exactmetrics_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 = exactmetrics_get_ua_to_output();
1258
+ $ua_limit = 'gtag' === ExactMetrics()->get_tracking_mode() ? 4 : 2;
1259
  // If the ads addon is installed another UA is added to the page.
1260
  if ( class_exists( 'ExactMetrics_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-dashboard-for-wp' ), '<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/options.php CHANGED
@@ -394,17 +394,17 @@ function exactmetrics_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 exactmetrics_force_tracking_mode( $value ) {
405
- return 'analytics';
406
- }
407
- add_filter( 'exactmetrics_get_option_tracking_mode', 'exactmetrics_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 exactmetrics_force_tracking_mode( $value ) {
405
+ // return 'analytics';
406
+ //}
407
+ //add_filter( 'exactmetrics_get_option_tracking_mode', 'exactmetrics_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 ExactMetrics_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-dashboard-for-wp.pot CHANGED
@@ -1,15 +1,15 @@
1
- # Copyright (C) 2020 ExactMetrics
2
  # This file is distributed under the same license as the Google Analytics Dashboard for WP (GADWP) plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Google Analytics Dashboard for WP (GADWP) 6.4.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
7
  "Last-Translator: ExactMetrics Team <support@exactmetrics.com>\n"
8
  "Language-Team: ExactMetrics Team <support@exactmetrics.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:55: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-dashboard-for-wp\n"
@@ -75,7 +75,7 @@ msgid "Theme:"
75
  msgstr ""
76
 
77
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
78
- #: languages/vue.php:2040
79
  msgid "Theme Preview"
80
  msgstr ""
81
 
@@ -228,7 +228,7 @@ msgstr ""
228
  #: lite/includes/admin/wp-site-health.php:372
229
  #: lite/includes/admin/wp-site-health.php:398
230
  #: lite/includes/admin/wp-site-health.php:425
231
- #: languages/vue.php:1819
232
  msgid "View Addons"
233
  msgstr ""
234
 
@@ -361,8 +361,8 @@ msgid "%1$sBonus:%2$s You also get 50%% off discount for being a loyal ExactMetr
361
  msgstr ""
362
 
363
  #: lite/includes/admin/helpers.php:83
364
- #: languages/vue.php:2753
365
- #: languages/vue.php:2964
366
  msgid "Upgrade to ExactMetrics Pro"
367
  msgstr ""
368
 
@@ -381,12 +381,12 @@ msgid "You are not allowed to install plugins"
381
  msgstr ""
382
 
383
  #: lite/includes/admin/reports/report-queries.php:22
384
- #: languages/vue.php:272
385
  msgid "Search Console"
386
  msgstr ""
387
 
388
  #: lite/includes/admin/reports/report-ecommerce.php:22
389
- #: languages/vue.php:355
390
  msgid "eCommerce"
391
  msgstr ""
392
 
@@ -399,17 +399,17 @@ msgid "Real Time"
399
  msgstr ""
400
 
401
  #: lite/includes/admin/reports/report-publisher.php:22
402
- #: languages/vue.php:374
403
  msgid "Publishers"
404
  msgstr ""
405
 
406
  #: lite/includes/admin/reports/report-dimensions.php:22
407
- #: languages/vue.php:422
408
  msgid "Dimensions"
409
  msgstr ""
410
 
411
  #: lite/includes/admin/reports/report-forms.php:22
412
- #: languages/vue.php:381
413
  msgid "Forms"
414
  msgstr ""
415
 
@@ -418,22 +418,25 @@ msgstr ""
418
  msgid "Welcome to ExactMetrics"
419
  msgstr ""
420
 
421
- #: includes/frontend/tracking/class-tracking-preview.php:77
422
- msgid "You are currently in a preview window. ExactMetrics doesn't track preview window traffic to avoid false visit reports."
423
- msgstr ""
424
-
425
  #: includes/frontend/tracking/class-tracking-analytics.php:208
426
  msgid "Note: ExactMetrics is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the ExactMetrics settings panel."
427
  msgstr ""
428
 
 
429
  #: includes/frontend/tracking/class-tracking-analytics.php:211
430
  msgid "Note: ExactMetrics does not track you as a logged-in site administrator to prevent site owners from accidentally skewing their own Google Analytics data."
431
  msgstr ""
432
 
 
433
  #: includes/frontend/tracking/class-tracking-analytics.php:214
434
  msgid "Note: The site owner has disabled Google Analytics tracking for your user role."
435
  msgstr ""
436
 
 
 
 
 
437
  #: includes/frontend/tracking/class-tracking-analytics.php:301
438
  msgid "Not running function"
439
  msgstr ""
@@ -442,12 +445,12 @@ msgstr ""
442
  msgid "because you are not being tracked."
443
  msgstr ""
444
 
445
- #: includes/frontend/frontend.php:240
446
  msgid "Tracking is Disabled for Administrators"
447
  msgstr ""
448
 
449
  #. Translators: %s is the link to the article where more details about tracking are listed.
450
- #: includes/frontend/frontend.php:250
451
  msgid "To keep stats accurate, we do not load Google Analytics scripts for admin users. %1$sLearn More &raquo;%2$s"
452
  msgstr ""
453
 
@@ -667,7 +670,7 @@ msgid "Question"
667
  msgstr ""
668
 
669
  #: includes/gutenberg/headline-tool/headline-tool.php:302
670
- #: languages/vue.php:349
671
  msgid "General"
672
  msgstr ""
673
 
@@ -3188,7 +3191,7 @@ msgstr ""
3188
  #: includes/admin/notifications/notification-bounce-rate.php:40
3189
  #: includes/admin/notifications/notification-headline-analyzer.php:30
3190
  #: includes/admin/notifications/notification-audience.php:43
3191
- #: languages/vue.php:407
3192
  msgid "Learn More"
3193
  msgstr ""
3194
 
@@ -3215,14 +3218,14 @@ msgid "View 2020 Year in Review report!"
3215
  msgstr ""
3216
 
3217
  #: includes/admin/common.php:940
3218
- #: languages/vue.php:2790
3219
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
3220
  msgstr ""
3221
 
3222
  #: includes/admin/admin.php:34
3223
  #: includes/admin/admin.php:42
3224
  #: includes/admin/admin.php:188
3225
- #: languages/vue.php:346
3226
  msgid "Settings"
3227
  msgstr ""
3228
 
@@ -3238,7 +3241,7 @@ msgstr ""
3238
 
3239
  #: includes/admin/admin.php:39
3240
  #: includes/admin/admin.php:98
3241
- #: languages/vue.php:1149
3242
  msgid "Reports"
3243
  msgstr ""
3244
 
@@ -3276,7 +3279,7 @@ msgstr ""
3276
 
3277
  #: includes/admin/admin.php:63
3278
  #: includes/admin/admin.php:106
3279
- #: languages/vue.php:321
3280
  msgid "About Us"
3281
  msgstr ""
3282
 
@@ -3309,7 +3312,7 @@ msgstr ""
3309
 
3310
  #: includes/admin/admin.php:178
3311
  #: includes/admin/admin.php:181
3312
- #: languages/vue.php:549
3313
  msgid "Support"
3314
  msgstr ""
3315
 
@@ -3319,17 +3322,17 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
3319
  msgstr ""
3320
 
3321
  #: includes/admin/admin.php:284
3322
- #: languages/vue.php:398
3323
  msgid "Please Setup Website Analytics to See Audience Insights"
3324
  msgstr ""
3325
 
3326
  #: includes/admin/admin.php:285
3327
- #: languages/vue.php:404
3328
  msgid "Connect ExactMetrics and Setup Website Analytics"
3329
  msgstr ""
3330
 
3331
  #: includes/admin/admin.php:289
3332
- #: languages/vue.php:401
3333
  msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 1 million website owners use ExactMetrics to see the stats that matter and grow their business."
3334
  msgstr ""
3335
 
@@ -3340,17 +3343,17 @@ msgstr ""
3340
 
3341
  #. Translators: Adds a link to the license renewal.
3342
  #: includes/admin/admin.php:310
3343
- #: languages/vue.php:1981
3344
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
3345
  msgstr ""
3346
 
3347
  #: includes/admin/admin.php:312
3348
- #: languages/vue.php:1984
3349
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
3350
  msgstr ""
3351
 
3352
  #: includes/admin/admin.php:314
3353
- #: languages/vue.php:1987
3354
  msgid "Your license key for ExactMetrics is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
3355
  msgstr ""
3356
 
@@ -3494,7 +3497,7 @@ msgstr ""
3494
  #. Translators: visitors notification title
3495
  #. Translators: Number of visitors.
3496
  #: includes/admin/notifications/notification-visitors.php:37
3497
- #: languages/vue.php:1528
3498
  msgid "See how %s visitors found your site!"
3499
  msgstr ""
3500
 
@@ -3585,12 +3588,12 @@ msgid "By upgrading to ExactMetrics Pro you get access to additional reports rig
3585
  msgstr ""
3586
 
3587
  #: includes/admin/notifications/notification-upgrade-to-pro.php:34
3588
- #: languages/vue.php:576
3589
  msgid "Upgrade to Pro"
3590
  msgstr ""
3591
 
3592
  #: includes/admin/reports/overview.php:34
3593
- #: languages/vue.php:371
3594
  msgid "Overview"
3595
  msgstr ""
3596
 
@@ -3682,7 +3685,7 @@ msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, pur
3682
  msgstr ""
3683
 
3684
  #: includes/admin/reports/abstract-report.php:383
3685
- #: languages/vue.php:198
3686
  msgid "Upgrade Now"
3687
  msgstr ""
3688
 
@@ -4877,7 +4880,7 @@ msgid "Theme"
4877
  msgstr ""
4878
 
4879
  #: languages/gutenberg.php:77
4880
- #: languages/vue.php:337
4881
  msgid "Inline Popular Posts"
4882
  msgstr ""
4883
 
@@ -4914,7 +4917,7 @@ msgid "Comment Color"
4914
  msgstr ""
4915
 
4916
  #: languages/gutenberg.php:107
4917
- #: languages/vue.php:2070
4918
  msgid "Wide-Layout Options"
4919
  msgstr ""
4920
 
@@ -4923,12 +4926,12 @@ msgid "Choose Layout"
4923
  msgstr ""
4924
 
4925
  #: languages/gutenberg.php:113
4926
- #: languages/vue.php:2073
4927
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4928
  msgstr ""
4929
 
4930
  #: languages/gutenberg.php:116
4931
- #: languages/vue.php:2094
4932
  msgid "Post Count"
4933
  msgstr ""
4934
 
@@ -4937,7 +4940,7 @@ msgid "Number of posts displayed."
4937
  msgstr ""
4938
 
4939
  #: languages/gutenberg.php:122
4940
- #: languages/vue.php:2076
4941
  msgid "Display Options"
4942
  msgstr ""
4943
 
@@ -4950,7 +4953,7 @@ msgid "Display Widget Title"
4950
  msgstr ""
4951
 
4952
  #: languages/gutenberg.php:131
4953
- #: languages/vue.php:1088
4954
  msgid "Widget Title"
4955
  msgstr ""
4956
 
@@ -4959,17 +4962,17 @@ msgid "Only Show Posts From These Categories"
4959
  msgstr ""
4960
 
4961
  #: languages/gutenberg.php:137
4962
- #: languages/vue.php:2082
4963
  msgid "Display Author"
4964
  msgstr ""
4965
 
4966
  #: languages/gutenberg.php:140
4967
- #: languages/vue.php:2085
4968
  msgid "Display Date"
4969
  msgstr ""
4970
 
4971
  #: languages/gutenberg.php:143
4972
- #: languages/vue.php:2088
4973
  msgid "Display Comments"
4974
  msgstr ""
4975
 
@@ -5190,7 +5193,7 @@ msgid "Goal: "
5190
  msgstr ""
5191
 
5192
  #: languages/gutenberg.php:312
5193
- #: languages/vue.php:2138
5194
  msgid "Headline Analyzer"
5195
  msgstr ""
5196
 
@@ -5210,275 +5213,275 @@ msgstr ""
5210
  msgid "2"
5211
  msgstr ""
5212
 
5213
- #: languages/vue.php:12
5214
  msgid "Error"
5215
  msgstr ""
5216
 
5217
- #: languages/vue.php:15
5218
  msgid "Please try again."
5219
  msgstr ""
5220
 
5221
- #: languages/vue.php:18
5222
  msgid "Today"
5223
  msgstr ""
5224
 
5225
- #: languages/vue.php:22
5226
  msgid "Yesterday"
5227
  msgstr ""
5228
 
5229
- #: languages/vue.php:25
5230
  msgid "Last Week"
5231
  msgstr ""
5232
 
5233
- #: languages/vue.php:28
5234
  msgid "Last Month"
5235
  msgstr ""
5236
 
5237
- #: languages/vue.php:31
5238
  msgid "Last 7 days"
5239
  msgstr ""
5240
 
5241
- #: languages/vue.php:34
5242
  msgid "Last 30 days"
5243
  msgstr ""
5244
 
5245
- #: languages/vue.php:37
5246
  msgid "Loading Settings"
5247
  msgstr ""
5248
 
5249
- #: languages/vue.php:40
5250
  msgid "Please wait..."
5251
  msgstr ""
5252
 
5253
- #: languages/vue.php:43
5254
  msgid "Saving Changes..."
5255
  msgstr ""
5256
 
5257
- #: languages/vue.php:46
5258
  msgid "Settings Updated"
5259
  msgstr ""
5260
 
5261
  #. Translators: Add a link to the onboarding wizard.
5262
- #: languages/vue.php:50
5263
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5264
  msgstr ""
5265
 
5266
- #: languages/vue.php:53
5267
  msgid "Could Not Save Changes"
5268
  msgstr ""
5269
 
5270
- #: languages/vue.php:56
5271
  msgid "Loading new report data"
5272
  msgstr ""
5273
 
5274
  #. Translators: Adds an arrow icon.
5275
- #: languages/vue.php:60
5276
  msgid "Continue %s"
5277
  msgstr ""
5278
 
5279
- #: languages/vue.php:63
5280
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5281
  msgstr ""
5282
 
5283
- #: languages/vue.php:66
5284
  msgid "Stop guessing about what content your visitors are interested in. ExactMetrics Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5285
  msgstr ""
5286
 
5287
- #: languages/vue.php:69
5288
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5289
  msgstr ""
5290
 
5291
- #: languages/vue.php:72
5292
  msgid "Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions."
5293
  msgstr ""
5294
 
5295
- #: languages/vue.php:75
5296
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5297
  msgstr ""
5298
 
5299
- #: languages/vue.php:78
5300
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5301
  msgstr ""
5302
 
5303
- #: languages/vue.php:81
5304
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5305
  msgstr ""
5306
 
5307
- #: languages/vue.php:84
5308
  msgid "Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
5309
  msgstr ""
5310
 
5311
- #: languages/vue.php:87
5312
  msgid "Unlock the Forms Report and Improve Conversions"
5313
  msgstr ""
5314
 
5315
- #: languages/vue.php:90
5316
  msgid "Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data."
5317
  msgstr ""
5318
 
5319
- #: languages/vue.php:93
5320
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5321
  msgstr ""
5322
 
5323
- #: languages/vue.php:96
5324
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5325
  msgstr ""
5326
 
5327
- #: languages/vue.php:99
5328
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5329
  msgstr ""
5330
 
5331
- #: languages/vue.php:102
5332
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it."
5333
  msgstr ""
5334
 
5335
- #: languages/vue.php:105
5336
  msgid "Loading settings"
5337
  msgstr ""
5338
 
5339
- #: languages/vue.php:108
5340
  msgid "Success! "
5341
  msgstr ""
5342
 
5343
- #: languages/vue.php:111
5344
  msgid "You're now using ExactMetrics Pro with all the features."
5345
  msgstr ""
5346
 
5347
  #. Translators: Placeholder gets replaced with an arrow icon.
5348
- #: languages/vue.php:115
5349
  msgid "Get Started %s"
5350
  msgstr ""
5351
 
5352
  #. Translators: Current PHP version and recommended PHP version.
5353
- #: languages/vue.php:119
5354
  msgid "ExactMetrics 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."
5355
  msgstr ""
5356
 
5357
  #. Translators: Current WordPress version.
5358
- #: languages/vue.php:123
5359
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics 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."
5360
  msgstr ""
5361
 
5362
- #: languages/vue.php:126
5363
  msgid "Yikes! PHP Update Required"
5364
  msgstr ""
5365
 
5366
  #. Translators: Current PHP version and recommended PHP version.
5367
- #: languages/vue.php:130
5368
  msgid "ExactMetrics 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."
5369
  msgstr ""
5370
 
5371
- #: languages/vue.php:133
5372
  msgid "Learn more about updating PHP"
5373
  msgstr ""
5374
 
5375
- #: languages/vue.php:136
5376
  msgid "Yikes! WordPress Update Required"
5377
  msgstr ""
5378
 
5379
  #. Translators: Current WordPress version.
5380
- #: languages/vue.php:140
5381
  msgid "ExactMetrics 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."
5382
  msgstr ""
5383
 
5384
- #: languages/vue.php:143
5385
  msgid "Learn more about updating WordPress"
5386
  msgstr ""
5387
 
5388
  #. Translators: Makes text bold.
5389
- #: languages/vue.php:148
5390
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5391
  msgstr ""
5392
 
5393
  #. Translators: Makes text bold.
5394
- #: languages/vue.php:153
5395
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5396
  msgstr ""
5397
 
5398
  #. Translators: Makes text bold.
5399
- #: languages/vue.php:158
5400
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5401
  msgstr ""
5402
 
5403
  #. Translators: Makes text bold.
5404
- #: languages/vue.php:162
5405
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5406
  msgstr ""
5407
 
5408
  #. Translators: Makes text bold.
5409
- #: languages/vue.php:167
5410
  msgid "%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5411
  msgstr ""
5412
 
5413
  #. Translators: Makes text bold.
5414
- #: languages/vue.php:172
5415
  msgid "%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5416
  msgstr ""
5417
 
5418
  #. Translators: Makes text bold.
5419
- #: languages/vue.php:177
5420
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5421
  msgstr ""
5422
 
5423
  #. Translators: Makes text bold.
5424
- #: languages/vue.php:181
5425
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5426
  msgstr ""
5427
 
5428
  #. Translators: Adds link to the features page.
5429
- #: languages/vue.php:186
5430
  msgid "%1$sSee All Features%2$s"
5431
  msgstr ""
5432
 
5433
- #: languages/vue.php:190
5434
  msgid "Pro Plan"
5435
  msgstr ""
5436
 
5437
- #: languages/vue.php:194
5438
  msgid "per year"
5439
  msgstr ""
5440
 
5441
- #: languages/vue.php:201
5442
  msgid "Upgrade to ExactMetrics Pro Now"
5443
  msgstr ""
5444
 
5445
- #: languages/vue.php:205
5446
  msgid "This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!"
5447
  msgstr ""
5448
 
5449
- #: languages/vue.php:209
5450
  msgid "Daniel Monaghan - Experienced"
5451
  msgstr ""
5452
 
5453
- #: languages/vue.php:213
5454
  msgid "Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it."
5455
  msgstr ""
5456
 
5457
- #: languages/vue.php:217
5458
  msgid "Naomi Spirit - From This Day"
5459
  msgstr ""
5460
 
5461
- #: languages/vue.php:221
5462
  msgid "Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!"
5463
  msgstr ""
5464
 
5465
- #: languages/vue.php:225
5466
  msgid "Julie Dupuis - Faraway Land Travel"
5467
  msgstr ""
5468
 
5469
- #: languages/vue.php:229
5470
  msgid "Guides and Documentation:"
5471
  msgstr ""
5472
 
5473
- #: languages/vue.php:236
5474
  msgid "Upgrade to PRO"
5475
  msgstr ""
5476
 
5477
- #: languages/vue.php:240
5478
  msgid "eCommerce Tracking"
5479
  msgstr ""
5480
 
5481
- #: languages/vue.php:244
5482
  msgid "Custom Dimensions"
5483
  msgstr ""
5484
 
@@ -5502,3522 +5505,3569 @@ msgstr ""
5502
  msgid "Real Time Report"
5503
  msgstr ""
5504
 
5505
- #: languages/vue.php:268
5506
  msgid "Google Optimize"
5507
  msgstr ""
5508
 
5509
- #: languages/vue.php:276
5510
  msgid "Custom Date Ranges"
5511
  msgstr ""
5512
 
5513
- #: languages/vue.php:280
5514
  msgid "Getting Started with ExactMetrics"
5515
  msgstr ""
5516
 
5517
- #: languages/vue.php:284
5518
  msgid "ExactMetrics 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."
5519
  msgstr ""
5520
 
5521
- #: languages/vue.php:288
5522
  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."
5523
  msgstr ""
5524
 
5525
- #: languages/vue.php:292
5526
  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!."
5527
  msgstr ""
5528
 
5529
- #: languages/vue.php:296
5530
  msgid "Launch the wizard!"
5531
  msgstr ""
5532
 
5533
- #: languages/vue.php:300
5534
  msgid "Welcome to"
5535
  msgstr ""
5536
 
5537
  #. Translators: Adds a line break.
5538
- #: languages/vue.php:305
5539
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5540
  msgstr ""
5541
 
5542
  #. Translators: Makes text bold.
5543
- #: languages/vue.php:310
5544
  msgid "%1$sExactMetrics%2$s 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."
5545
  msgstr ""
5546
 
5547
- #: languages/vue.php:314
5548
  msgid "ExactMetrics Features & Addons"
5549
  msgstr ""
5550
 
5551
- #: languages/vue.php:318
5552
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5553
  msgstr ""
5554
 
5555
- #: languages/vue.php:324
5556
  msgid "Getting Started"
5557
  msgstr ""
5558
 
5559
- #: languages/vue.php:327
5560
  msgid "Lite vs Pro"
5561
  msgstr ""
5562
 
5563
- #: languages/vue.php:331
5564
  msgid "Import Export"
5565
  msgstr ""
5566
 
5567
- #: languages/vue.php:334
5568
  msgid "PrettyLinks Integration"
5569
  msgstr ""
5570
 
5571
- #: languages/vue.php:340
5572
  msgid "Popular Posts Widget"
5573
  msgstr ""
5574
 
5575
- #: languages/vue.php:343
5576
  msgid "Popular Products"
5577
  msgstr ""
5578
 
5579
- #: languages/vue.php:352
5580
  msgid "Engagement"
5581
  msgstr ""
5582
 
5583
- #: languages/vue.php:358
5584
  msgid "Publisher"
5585
  msgstr ""
5586
 
5587
- #: languages/vue.php:361
5588
  msgid "Conversions"
5589
  msgstr ""
5590
 
5591
- #: languages/vue.php:364
5592
  msgid "Advanced"
5593
  msgstr ""
5594
 
5595
- #: languages/vue.php:368
5596
  msgid "URL Builder"
5597
  msgstr ""
5598
 
5599
- #: languages/vue.php:377
5600
  msgid "Dimensions Report"
5601
  msgstr ""
5602
 
5603
- #: languages/vue.php:385
5604
  msgid "Real-Time"
5605
  msgstr ""
5606
 
5607
- #: languages/vue.php:388
5608
  msgid "Exit Setup"
5609
  msgstr ""
5610
 
5611
- #: languages/vue.php:391
5612
  msgid "Go back"
5613
  msgstr ""
5614
 
5615
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
5616
- #: languages/vue.php:395
5617
  msgid "Step %1$s of %2$s"
5618
  msgstr ""
5619
 
5620
- #: languages/vue.php:410
5621
  msgid "You must connect with ExactMetrics before you can view reports."
5622
  msgstr ""
5623
 
5624
- #: languages/vue.php:413
5625
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5626
  msgstr ""
5627
 
5628
- #: languages/vue.php:416
5629
  msgid "Launch Setup Wizard"
5630
  msgstr ""
5631
 
5632
- #: languages/vue.php:419
5633
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5634
  msgstr ""
5635
 
5636
- #: languages/vue.php:425
5637
  msgid "Inbox"
5638
  msgstr ""
5639
 
5640
- #: languages/vue.php:428
5641
  msgid "Back to Inbox"
5642
  msgstr ""
5643
 
5644
- #: languages/vue.php:431
5645
  msgid "View Dismissed"
5646
  msgstr ""
5647
 
5648
- #: languages/vue.php:434
5649
  msgid "Notifications"
5650
  msgstr ""
5651
 
5652
- #: languages/vue.php:437
5653
  msgid "Dismiss All"
5654
  msgstr ""
5655
 
5656
- #: languages/vue.php:440
5657
  msgid "Dismissed"
5658
  msgstr ""
5659
 
5660
- #: languages/vue.php:443
5661
  msgid "No Notifications"
5662
  msgstr ""
5663
 
5664
- #: languages/vue.php:446
5665
- #: languages/vue.php:624
5666
  msgid "ExactMetrics Addons"
5667
  msgstr ""
5668
 
5669
- #: languages/vue.php:449
5670
  msgid "Search Addons"
5671
  msgstr ""
5672
 
5673
- #: languages/vue.php:452
5674
  msgid "Save Changes"
5675
  msgstr ""
5676
 
5677
- #: languages/vue.php:455
5678
  msgid "ExactMetrics encountered an error loading your report data"
5679
  msgstr ""
5680
 
5681
- #: languages/vue.php:458
5682
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5683
  msgstr ""
5684
 
5685
- #: languages/vue.php:461
5686
- #: languages/vue.php:2731
5687
  msgid "Reconnect ExactMetrics"
5688
  msgstr ""
5689
 
5690
- #: languages/vue.php:464
5691
  msgid "Re-Authenticating"
5692
  msgstr ""
5693
 
5694
- #: languages/vue.php:468
5695
  msgid "Ok"
5696
  msgstr ""
5697
 
5698
- #: languages/vue.php:471
5699
  msgid "See Quick Links"
5700
  msgstr ""
5701
 
5702
- #: languages/vue.php:474
5703
  msgid "Suggest a Feature"
5704
  msgstr ""
5705
 
5706
- #: languages/vue.php:477
5707
  msgid "Join Our Community"
5708
  msgstr ""
5709
 
5710
- #: languages/vue.php:480
5711
  msgid "Support & Docs"
5712
  msgstr ""
5713
 
5714
- #: languages/vue.php:483
5715
  msgid "Upgrade to Pro &#187;"
5716
  msgstr ""
5717
 
5718
- #: languages/vue.php:486
5719
  msgid "One-click Complete eCommerce tracking"
5720
  msgstr ""
5721
 
5722
- #: languages/vue.php:489
5723
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
5724
  msgstr ""
5725
 
5726
- #: languages/vue.php:492
5727
  msgid "Forms Tracking"
5728
  msgstr ""
5729
 
5730
- #: languages/vue.php:495
5731
  msgid "One-click Form Events Tracking"
5732
  msgstr ""
5733
 
5734
- #: languages/vue.php:498
5735
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
5736
  msgstr ""
5737
 
5738
- #: languages/vue.php:501
5739
  msgid "WordPress Admin Area Reports"
5740
  msgstr ""
5741
 
5742
- #: languages/vue.php:504
5743
  msgid "Standard Reports"
5744
  msgstr ""
5745
 
5746
- #: languages/vue.php:507
5747
  msgid "Overview Reports for the last 30 days."
5748
  msgstr ""
5749
 
5750
- #: languages/vue.php:510
5751
  msgid "Advanced Reports"
5752
  msgstr ""
5753
 
5754
- #: languages/vue.php:513
5755
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
5756
  msgstr ""
5757
 
5758
- #: languages/vue.php:516
5759
  msgid "Dashboard Widget"
5760
  msgstr ""
5761
 
5762
- #: languages/vue.php:519
5763
  msgid "Basic Widget"
5764
  msgstr ""
5765
 
5766
- #: languages/vue.php:522
5767
  msgid "Overview Report Synopsis"
5768
  msgstr ""
5769
 
5770
- #: languages/vue.php:525
5771
  msgid "Advanced Dashboard Widget"
5772
  msgstr ""
5773
 
5774
- #: languages/vue.php:528
5775
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
5776
  msgstr ""
5777
 
5778
- #: languages/vue.php:531
5779
  msgid "Publisher Reports"
5780
  msgstr ""
5781
 
5782
- #: languages/vue.php:534
5783
  msgid "Advanced Publisher Reports & Tracking"
5784
  msgstr ""
5785
 
5786
- #: languages/vue.php:537
5787
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
5788
  msgstr ""
5789
 
5790
- #: languages/vue.php:540
5791
  msgid "Not Available"
5792
  msgstr ""
5793
 
5794
- #: languages/vue.php:543
5795
  msgid "Complete Custom Dimensions Tracking"
5796
  msgstr ""
5797
 
5798
- #: languages/vue.php:546
5799
  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"
5800
  msgstr ""
5801
 
5802
- #: languages/vue.php:552
5803
  msgid "Limited Support"
5804
  msgstr ""
5805
 
5806
- #: languages/vue.php:555
5807
  msgid "Priority Support"
5808
  msgstr ""
5809
 
5810
- #: languages/vue.php:558
5811
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
5812
  msgstr ""
5813
 
5814
- #: languages/vue.php:561
5815
  msgid "Feature"
5816
  msgstr ""
5817
 
5818
- #: languages/vue.php:564
5819
  msgid "Lite"
5820
  msgstr ""
5821
 
5822
- #: languages/vue.php:567
5823
  msgid "Pro"
5824
  msgstr ""
5825
 
5826
- #: languages/vue.php:570
5827
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
5828
  msgstr ""
5829
 
5830
- #: languages/vue.php:573
5831
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
5832
  msgstr ""
5833
 
5834
- #: languages/vue.php:579
5835
  msgid "Universal Tracking"
5836
  msgstr ""
5837
 
5838
- #: languages/vue.php:582
5839
  msgid "Included"
5840
  msgstr ""
5841
 
5842
- #: languages/vue.php:585
5843
  msgid "Custom Google Analytics Link Tracking"
5844
  msgstr ""
5845
 
5846
- #: languages/vue.php:588
5847
  msgid "Standard Tracking"
5848
  msgstr ""
5849
 
5850
- #: languages/vue.php:591
5851
  msgid "Advanced Tracking"
5852
  msgstr ""
5853
 
5854
- #: languages/vue.php:594
5855
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
5856
  msgstr ""
5857
 
5858
- #: languages/vue.php:597
5859
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
5860
  msgstr ""
5861
 
5862
- #: languages/vue.php:600
5863
  msgid "No-Code-Needed Tracking Features"
5864
  msgstr ""
5865
 
5866
- #: languages/vue.php:603
5867
  msgid "Basic Tracking Options"
5868
  msgstr ""
5869
 
5870
- #: languages/vue.php:606
5871
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
5872
  msgstr ""
5873
 
5874
- #: languages/vue.php:609
5875
  msgid "Advanced Tracking Options"
5876
  msgstr ""
5877
 
5878
- #: languages/vue.php:612
5879
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
5880
  msgstr ""
5881
 
5882
- #: languages/vue.php:615
5883
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
5884
  msgstr ""
5885
 
5886
- #: languages/vue.php:618
5887
  msgid "No addons found."
5888
  msgstr ""
5889
 
5890
- #: languages/vue.php:621
5891
  msgid "Refresh Addons"
5892
  msgstr ""
5893
 
5894
  #. Translators: Adds a line break.
5895
- #: languages/vue.php:628
5896
  msgid "Upgrade to Pro to unlock addons and other great features."
5897
  msgstr ""
5898
 
5899
- #: languages/vue.php:631
5900
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
5901
  msgstr ""
5902
 
5903
- #: languages/vue.php:634
5904
  msgid "Refreshing Addons"
5905
  msgstr ""
5906
 
5907
- #: languages/vue.php:637
5908
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
5909
  msgstr ""
5910
 
5911
- #: languages/vue.php:640
5912
  msgid "Ready to take your website to the next level? ExactMetrics gives you the accurate insights you need to make data-driven decisions to grow your traffic and conversions faster than ever before. Now you can easily enable advanced tracking on your website without having to know any code."
5913
  msgstr ""
5914
 
5915
- #: languages/vue.php:643
5916
  msgid "The ExactMetrics Team"
5917
  msgstr ""
5918
 
5919
  #. Translators: Placeholders make the text green.
5920
- #: languages/vue.php:647
5921
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
5922
  msgstr ""
5923
 
5924
- #: languages/vue.php:650
5925
  msgid "How to Connect to Google Analytics"
5926
  msgstr ""
5927
 
5928
- #: languages/vue.php:653
5929
  msgid "After you install ExactMetrics, you’ll need to connect your WordPress site with your Google Analytics account. ExactMetrics makes the process easy, with no coding required."
5930
  msgstr ""
5931
 
5932
- #: languages/vue.php:656
5933
  msgid "Guide and Checklist for Advanced Insights"
5934
  msgstr ""
5935
 
5936
- #: languages/vue.php:659
5937
  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 ExactMetrics’ advanced tracking."
5938
  msgstr ""
5939
 
5940
- #: languages/vue.php:662
5941
  msgid "GDPR Guide"
5942
  msgstr ""
5943
 
5944
- #: languages/vue.php:665
5945
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help ExactMetrics users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
5946
  msgstr ""
5947
 
5948
- #: languages/vue.php:668
5949
  msgid "How to Install and Activate ExactMetrics Addons"
5950
  msgstr ""
5951
 
5952
- #: languages/vue.php:671
5953
  msgid "The process for installing and activating addons is quick and easy after you install the ExactMetrics plugin. In this guide we’ll walk you through the process, step by step."
5954
  msgstr ""
5955
 
5956
- #: languages/vue.php:674
5957
  msgid "Enabling eCommerce Tracking and Reports"
5958
  msgstr ""
5959
 
5960
- #: languages/vue.php:677
5961
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with ExactMetrics? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
5962
  msgstr ""
5963
 
5964
- #: languages/vue.php:680
5965
  msgid "Read Documentation"
5966
  msgstr ""
5967
 
5968
  #. Translators: Makes the text bold.
5969
- #: languages/vue.php:684
5970
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
5971
  msgstr ""
5972
 
5973
  #. Translators: Makes the text bold.
5974
- #: languages/vue.php:688
5975
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
5976
  msgstr ""
5977
 
5978
- #: languages/vue.php:691
5979
  msgid "ExactMetrics Recommends WPForms"
5980
  msgstr ""
5981
 
5982
- #: languages/vue.php:694
5983
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
5984
  msgstr ""
5985
 
5986
- #: languages/vue.php:697
5987
  msgid "Used on over 3,000,000 websites!"
5988
  msgstr ""
5989
 
5990
- #: languages/vue.php:700
5991
  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!"
5992
  msgstr ""
5993
 
5994
- #: languages/vue.php:703
5995
  msgid "Skip this Step"
5996
  msgstr ""
5997
 
5998
- #: languages/vue.php:706
5999
  msgid "Continue & Install WPForms"
6000
  msgstr ""
6001
 
6002
- #: languages/vue.php:709
6003
  msgid "Installing..."
6004
  msgstr ""
6005
 
6006
- #: languages/vue.php:712
6007
  msgid "Awesome, You're All Set!"
6008
  msgstr ""
6009
 
6010
- #: languages/vue.php:715
6011
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6012
  msgstr ""
6013
 
6014
  #. Translators: Make the text bold.
6015
- #: languages/vue.php:719
6016
  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."
6017
  msgstr ""
6018
 
6019
  #. Translators: Add link to blog.
6020
- #: languages/vue.php:723
6021
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6022
  msgstr ""
6023
 
6024
- #: languages/vue.php:726
6025
  msgid "Finish Setup & Exit Wizard"
6026
  msgstr ""
6027
 
6028
- #: languages/vue.php:729
6029
  msgid "Google Analytics"
6030
  msgstr ""
6031
 
6032
- #: languages/vue.php:732
6033
  msgid "Subscribe"
6034
  msgstr ""
6035
 
6036
- #: languages/vue.php:735
6037
  msgid "Checking your website..."
6038
  msgstr ""
6039
 
6040
  #. Translators: Placeholders make the text highlighted.
6041
- #: languages/vue.php:739
6042
  msgid "%1$sNeed%2$s to Grow FASTER??"
6043
  msgstr ""
6044
 
6045
- #: languages/vue.php:742
6046
  msgid "Get additional, actionable insights by going Pro."
6047
  msgstr ""
6048
 
6049
- #: languages/vue.php:745
6050
  msgid "Skip"
6051
  msgstr ""
6052
 
6053
- #: languages/vue.php:748
6054
  msgid "See All Features"
6055
  msgstr ""
6056
 
6057
- #: languages/vue.php:751
6058
  msgid "Upgrade to Pro to get the complete ExactMetrics experience including 1 click tracking integrations for your favorite WordPress plugins and insightful reports backed by our legendary support team."
6059
  msgstr ""
6060
 
6061
- #: languages/vue.php:754
6062
  msgid "Our Pro plan includes:"
6063
  msgstr ""
6064
 
6065
- #: languages/vue.php:757
6066
  msgid "Welcome to ExactMetrics!"
6067
  msgstr ""
6068
 
6069
- #: languages/vue.php:760
6070
  msgid "Let's get you set up."
6071
  msgstr ""
6072
 
6073
- #: languages/vue.php:763
6074
  msgid "Save and Continue"
6075
  msgstr ""
6076
 
6077
- #: languages/vue.php:766
6078
  msgid "Which category best describes your website?"
6079
  msgstr ""
6080
 
6081
- #: languages/vue.php:769
6082
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6083
  msgstr ""
6084
 
6085
- #: languages/vue.php:772
6086
  msgid "Business Website"
6087
  msgstr ""
6088
 
6089
  #. Translators: Make text bold.
6090
- #: languages/vue.php:776
6091
  msgid "Publisher %1$s(Blog)%2$s"
6092
  msgstr ""
6093
 
6094
- #: languages/vue.php:779
6095
  msgid "Ecommerce"
6096
  msgstr ""
6097
 
6098
- #: languages/vue.php:782
6099
  msgid "Connect ExactMetrics to Your Website"
6100
  msgstr ""
6101
 
6102
- #: languages/vue.php:785
6103
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6104
  msgstr ""
6105
 
6106
- #: languages/vue.php:788
6107
  msgid "Connect Google Analytics + WordPress"
6108
  msgstr ""
6109
 
6110
- #: languages/vue.php:791
6111
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6112
  msgstr ""
6113
 
6114
- #: languages/vue.php:794
6115
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6116
  msgstr ""
6117
 
6118
- #: languages/vue.php:797
6119
  msgid "Manually enter your UA code"
6120
  msgstr ""
6121
 
6122
- #: languages/vue.php:800
6123
  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."
6124
  msgstr ""
6125
 
6126
- #: languages/vue.php:803
6127
  msgid "UA code can't be empty"
6128
  msgstr ""
6129
 
6130
- #: languages/vue.php:806
6131
  msgid "Saving UA code..."
6132
  msgstr ""
6133
 
6134
- #: languages/vue.php:809
6135
  msgid "Recommended Addons"
6136
  msgstr ""
6137
 
6138
  #. Translators: Add a link to upgrade and make the text green.
6139
- #: languages/vue.php:813
6140
  msgid "To unlock more features consider %1$supgrading to PRO%2$s.%3$s As a valued ExactMetrics Lite user you %4$sreceive 50%% off%5$s, automatically applied at checkout!"
6141
  msgstr ""
6142
 
6143
- #: languages/vue.php:816
6144
  msgid "Save and continue"
6145
  msgstr ""
6146
 
6147
- #: languages/vue.php:819
6148
  msgid "Upgrade to PRO Now"
6149
  msgstr ""
6150
 
6151
- #: languages/vue.php:822
6152
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
6153
  msgstr ""
6154
 
6155
- #: languages/vue.php:825
6156
  msgid "See All Your Important Store Metrics in One Place."
6157
  msgstr ""
6158
 
6159
- #: languages/vue.php:828
6160
  msgid "... and more:"
6161
  msgstr ""
6162
 
6163
- #: languages/vue.php:831
6164
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
6165
  msgstr ""
6166
 
6167
- #: languages/vue.php:834
6168
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
6169
  msgstr ""
6170
 
6171
- #: languages/vue.php:837
6172
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
6173
  msgstr ""
6174
 
6175
- #: languages/vue.php:840
6176
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
6177
  msgstr ""
6178
 
6179
- #: languages/vue.php:843
6180
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
6181
  msgstr ""
6182
 
6183
- #: languages/vue.php:846
6184
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
6185
  msgstr ""
6186
 
6187
- #: languages/vue.php:849
6188
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
6189
  msgstr ""
6190
 
6191
- #: languages/vue.php:852
6192
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
6193
  msgstr ""
6194
 
6195
- #: languages/vue.php:855
6196
  msgid "Recommended Settings"
6197
  msgstr ""
6198
 
6199
- #: languages/vue.php:858
6200
  msgid "ExactMetrics recommends the following settings based on your configuration."
6201
  msgstr ""
6202
 
6203
- #: languages/vue.php:861
6204
  msgid "Events Tracking"
6205
  msgstr ""
6206
 
6207
- #: languages/vue.php:864
6208
  msgid "Must have for all click tracking on site."
6209
  msgstr ""
6210
 
6211
- #: languages/vue.php:867
6212
  msgid "ExactMetrics 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."
6213
  msgstr ""
6214
 
6215
- #: languages/vue.php:870
6216
  msgid "Enhanced Link Attribution"
6217
  msgstr ""
6218
 
6219
- #: languages/vue.php:873
6220
  msgid "Improves the accuracy of your In-Page Analytics."
6221
  msgstr ""
6222
 
6223
- #: languages/vue.php:876
6224
  msgid "ExactMetrics 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."
6225
  msgstr ""
6226
 
6227
- #: languages/vue.php:879
6228
  msgid "Install Updates Automatically"
6229
  msgstr ""
6230
 
6231
- #: languages/vue.php:882
6232
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6233
  msgstr ""
6234
 
6235
- #: languages/vue.php:885
6236
  msgid "To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
6237
  msgstr ""
6238
 
6239
- #: languages/vue.php:888
6240
  msgid "File Download Tracking"
6241
  msgstr ""
6242
 
6243
- #: languages/vue.php:891
6244
  msgid "Helps you see file downloads data."
6245
  msgstr ""
6246
 
6247
- #: languages/vue.php:894
6248
  msgid "ExactMetrics 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? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
6249
  msgstr ""
6250
 
6251
  #. Translators: Example path (/go/).
6252
- #: languages/vue.php:898
6253
  msgid "Path (example: %s)"
6254
  msgstr ""
6255
 
6256
- #: languages/vue.php:901
6257
  msgid "Path has to start with a / and have no spaces"
6258
  msgstr ""
6259
 
6260
  #. Translators: Example label (aff).
6261
- #: languages/vue.php:905
6262
  msgid "Label (example: %s)"
6263
  msgstr ""
6264
 
6265
- #: languages/vue.php:908
6266
  msgid "Label can't contain any spaces"
6267
  msgstr ""
6268
 
6269
- #: languages/vue.php:911
6270
  msgid "Helps you increase affiliate revenue."
6271
  msgstr ""
6272
 
6273
- #: languages/vue.php:914
6274
  msgid "ExactMetrics 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."
6275
  msgstr ""
6276
 
6277
- #: languages/vue.php:917
6278
  msgid "Affiliate Link Tracking"
6279
  msgstr ""
6280
 
6281
- #: languages/vue.php:920
6282
  msgid "Who Can See Reports"
6283
  msgstr ""
6284
 
6285
- #: languages/vue.php:923
6286
  msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
6287
  msgstr ""
6288
 
6289
- #: languages/vue.php:926
6290
  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."
6291
  msgstr ""
6292
 
6293
- #: languages/vue.php:929
6294
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6295
  msgstr ""
6296
 
6297
- #: languages/vue.php:932
6298
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6299
  msgstr ""
6300
 
6301
- #: languages/vue.php:935
6302
  msgid "+ Add Role"
6303
  msgstr ""
6304
 
6305
- #: languages/vue.php:938
6306
  msgid "Welcome to the all-new ExactMetrics"
6307
  msgstr ""
6308
 
6309
- #: languages/vue.php:941
6310
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
6311
  msgstr ""
6312
 
6313
- #: languages/vue.php:944
6314
  msgid "The New & Improved ExactMetrics includes:"
6315
  msgstr ""
6316
 
6317
- #: languages/vue.php:947
6318
  msgid "All-New Design"
6319
  msgstr ""
6320
 
6321
- #: languages/vue.php:950
6322
  msgid "Better Reporting"
6323
  msgstr ""
6324
 
6325
- #: languages/vue.php:953
6326
  msgid "Better Tracking"
6327
  msgstr ""
6328
 
6329
- #: languages/vue.php:956
6330
  msgid "Better Support"
6331
  msgstr ""
6332
 
6333
- #: languages/vue.php:959
6334
  msgid "Continue"
6335
  msgstr ""
6336
 
6337
- #: languages/vue.php:962
6338
  msgid "Your settings have been automatically transferred."
6339
  msgstr ""
6340
 
6341
- #: languages/vue.php:965
6342
  msgid "On the next step, you will be asked to re-authenticate with Google Analytics. Please %1$ssee our detailed post%2$s to learn why we need your help. Don't worry, your tracking will continue to work as-is even if you don't do this, but re-auth is required to see analytics reports inside WordPress dashboard."
6343
  msgstr ""
6344
 
6345
- #: languages/vue.php:968
6346
  msgid "Caching"
6347
  msgstr ""
6348
 
6349
- #: languages/vue.php:971
6350
  msgid "Enable Data Caching"
6351
  msgstr ""
6352
 
6353
- #: languages/vue.php:974
6354
  msgid "Refresh Cache Every"
6355
  msgstr ""
6356
 
6357
- #: languages/vue.php:977
6358
  msgid "Choose how often to refresh the cache."
6359
  msgstr ""
6360
 
6361
- #: languages/vue.php:980
6362
  msgid "Enable Ajaxify"
6363
  msgstr ""
6364
 
6365
- #: languages/vue.php:983
6366
  msgid "Ajaxify Widget"
6367
  msgstr ""
6368
 
6369
- #: languages/vue.php:986
6370
  msgid "Use to bypass page caching."
6371
  msgstr ""
6372
 
6373
- #: languages/vue.php:989
6374
  msgid "Empty Cache"
6375
  msgstr ""
6376
 
6377
- #: languages/vue.php:992
6378
  msgid "Click to manually wipe the cache right now."
6379
  msgstr ""
6380
 
6381
- #: languages/vue.php:995
6382
  msgid "Popular posts cache emptied"
6383
  msgstr ""
6384
 
6385
- #: languages/vue.php:998
6386
  msgid "Error emptying the popular posts cache. Please try again."
6387
  msgstr ""
6388
 
6389
- #: languages/vue.php:1001
6390
  msgid "Choose Theme"
6391
  msgstr ""
6392
 
6393
- #: languages/vue.php:1004
6394
  msgid "Behavior"
6395
  msgstr ""
6396
 
6397
- #: languages/vue.php:1007
6398
  msgid "Widget Styling"
6399
  msgstr ""
6400
 
6401
- #: languages/vue.php:1010
6402
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
6403
  msgstr ""
6404
 
6405
- #: languages/vue.php:1013
6406
  msgid "Sort By"
6407
  msgstr ""
6408
 
6409
- #: languages/vue.php:1016
6410
  msgid "Choose how you'd like the widget to determine your popular posts."
6411
  msgstr ""
6412
 
6413
- #: languages/vue.php:1019
6414
  msgid "Placement"
6415
  msgstr ""
6416
 
6417
- #: languages/vue.php:1022
6418
  msgid "Choose how you'd like to place the widget."
6419
  msgstr ""
6420
 
6421
- #: languages/vue.php:1025
6422
  msgid "Insert After"
6423
  msgstr ""
6424
 
6425
- #: languages/vue.php:1028
6426
  msgid "Choose where in the post body the widget will be placed."
6427
  msgstr ""
6428
 
6429
- #: languages/vue.php:1031
6430
  msgid "Include in Post Types"
6431
  msgstr ""
6432
 
6433
- #: languages/vue.php:1034
6434
  msgid "Exclude from specific posts"
6435
  msgstr ""
6436
 
6437
  #. Translators: Placeholders make the text bold.
6438
- #: languages/vue.php:1038
6439
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
6440
  msgstr ""
6441
 
6442
  #. Translators: Placeholders make the text bold.
6443
- #: languages/vue.php:1042
6444
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
6445
  msgstr ""
6446
 
6447
- #: languages/vue.php:1045
6448
  msgid "Customize Design"
6449
  msgstr ""
6450
 
6451
- #: languages/vue.php:1048
6452
  msgid "Loading Themes"
6453
  msgstr ""
6454
 
6455
- #: languages/vue.php:1051
6456
  msgid "words"
6457
  msgstr ""
6458
 
6459
- #: languages/vue.php:1054
6460
  msgid "Please select at least one post to display."
6461
  msgstr ""
6462
 
6463
  #. Translators: placeholders make text small.
6464
- #: languages/vue.php:1058
6465
  msgid "Default Styles %1$s- As seen above.%2$s"
6466
  msgstr ""
6467
 
6468
  #. Translators: placeholders make text small.
6469
- #: languages/vue.php:1062
6470
  msgid "No Styles %1$s- Use your own CSS.%2$s"
6471
  msgstr ""
6472
 
6473
  #. Translators: placeholders make text small.
6474
- #: languages/vue.php:1066
6475
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
6476
  msgstr ""
6477
 
6478
  #. Translators: placeholders make text small.
6479
- #: languages/vue.php:1070
6480
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
6481
  msgstr ""
6482
 
6483
  #. Translators: placeholders make text small.
6484
- #: languages/vue.php:1074
6485
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
6486
  msgstr ""
6487
 
6488
  #. Translators: placeholders make text small.
6489
- #: languages/vue.php:1078
6490
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
6491
  msgstr ""
6492
 
6493
  #. Translators: placeholders make text small.
6494
- #: languages/vue.php:1082
6495
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
6496
  msgstr ""
6497
 
6498
- #: languages/vue.php:1085
6499
  msgid "Display Title"
6500
  msgstr ""
6501
 
6502
- #: languages/vue.php:1091
6503
  msgid "Title your widget and set it’s display preferences."
6504
  msgstr ""
6505
 
6506
- #: languages/vue.php:1094
6507
  msgid "File imported"
6508
  msgstr ""
6509
 
6510
- #: languages/vue.php:1097
6511
  msgid "Settings successfully updated!"
6512
  msgstr ""
6513
 
6514
- #: languages/vue.php:1100
6515
  msgid "Error importing settings"
6516
  msgstr ""
6517
 
6518
- #: languages/vue.php:1103
6519
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
6520
  msgstr ""
6521
 
6522
- #: languages/vue.php:1106
6523
  msgid "Import/Export"
6524
  msgstr ""
6525
 
6526
- #: languages/vue.php:1109
6527
  msgid "Import"
6528
  msgstr ""
6529
 
6530
- #: languages/vue.php:1112
6531
  msgid "Import settings from another ExactMetrics website."
6532
  msgstr ""
6533
 
6534
- #: languages/vue.php:1115
6535
  msgid "Export"
6536
  msgstr ""
6537
 
6538
- #: languages/vue.php:1118
6539
  msgid "Export settings to import into another ExactMetrics install."
6540
  msgstr ""
6541
 
6542
- #: languages/vue.php:1121
6543
  msgid "Import Settings"
6544
  msgstr ""
6545
 
6546
- #: languages/vue.php:1124
6547
  msgid "Export Settings"
6548
  msgstr ""
6549
 
6550
- #: languages/vue.php:1127
6551
  msgid "Please choose a file to import"
6552
  msgstr ""
6553
 
6554
- #: languages/vue.php:1130
6555
  msgid "Use the filepicker below to select the settings export file from another site."
6556
  msgstr ""
6557
 
6558
- #: languages/vue.php:1133
6559
  msgid "Use the button below to export a file with your ExactMetrics settings."
6560
  msgstr ""
6561
 
6562
- #: languages/vue.php:1136
6563
  msgid "Choose file"
6564
  msgstr ""
6565
 
6566
- #: languages/vue.php:1139
6567
  msgid "No file chosen"
6568
  msgstr ""
6569
 
6570
- #: languages/vue.php:1142
6571
  msgid "Uploading file..."
6572
  msgstr ""
6573
 
6574
  #. Translators: Adds a link to the Google reference.
6575
- #: languages/vue.php:1146
6576
  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."
6577
  msgstr ""
6578
 
6579
- #: languages/vue.php:1153
6580
  msgid "Automatic Updates"
6581
  msgstr ""
6582
 
6583
- #: languages/vue.php:1156
6584
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
6585
  msgstr ""
6586
 
6587
- #: languages/vue.php:1159
6588
  msgid "Hide Admin Bar Reports"
6589
  msgstr ""
6590
 
6591
  #. Translators: placeholders make text small.
6592
- #: languages/vue.php:1163
6593
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
6594
  msgstr ""
6595
 
6596
  #. Translators: placeholders make text small.
6597
- #: languages/vue.php:1167
6598
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
6599
  msgstr ""
6600
 
6601
  #. Translators: placeholders make text small.
6602
- #: languages/vue.php:1171
6603
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
6604
  msgstr ""
6605
 
6606
  #. Translators: placeholders make text small.
6607
- #: languages/vue.php:1175
6608
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
6609
  msgstr ""
6610
 
6611
  #. Translators: placeholders make text small.
6612
- #: languages/vue.php:1179
6613
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
6614
  msgstr ""
6615
 
6616
  #. Translators: placeholders make text small.
6617
- #: languages/vue.php:1183
6618
  msgid "None %1$s- Manually update everything.%2$s"
6619
  msgstr ""
6620
 
6621
  #. Translators: Adds a link to the general settings tab.
6622
- #: languages/vue.php:1187
6623
  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."
6624
  msgstr ""
6625
 
6626
- #: languages/vue.php:1190
6627
  msgid "Permissions"
6628
  msgstr ""
6629
 
6630
- #: languages/vue.php:1193
6631
  msgid "Email Summaries"
6632
  msgstr ""
6633
 
6634
- #: languages/vue.php:1196
6635
  msgid "Export PDF Reports"
6636
  msgstr ""
6637
 
6638
- #: languages/vue.php:1199
6639
  msgid "Allow These User Roles to See Reports"
6640
  msgstr ""
6641
 
6642
- #: languages/vue.php:1202
6643
  msgid "Users that have at least one of these roles will be able to view the reports."
6644
  msgstr ""
6645
 
6646
- #: languages/vue.php:1205
6647
  msgid "Allow These User Roles to Save Settings"
6648
  msgstr ""
6649
 
6650
- #: languages/vue.php:1208
6651
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
6652
  msgstr ""
6653
 
6654
- #: languages/vue.php:1211
6655
  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."
6656
  msgstr ""
6657
 
6658
- #: languages/vue.php:1214
6659
  msgid "Exclude These User Roles From Tracking"
6660
  msgstr ""
6661
 
6662
- #: languages/vue.php:1217
6663
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
6664
  msgstr ""
6665
 
6666
- #: languages/vue.php:1220
6667
  msgid "Custom code"
6668
  msgstr ""
6669
 
6670
- #: languages/vue.php:1223
6671
  msgid "License Key"
6672
  msgstr ""
6673
 
6674
  #. Translators: Adds link to the account area to retreive license key.
6675
- #: languages/vue.php:1227
6676
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
6677
  msgstr ""
6678
 
6679
- #: languages/vue.php:1230
6680
  msgid "Paste your license key here"
6681
  msgstr ""
6682
 
6683
- #: languages/vue.php:1233
6684
  msgid "Google Authentication"
6685
  msgstr ""
6686
 
6687
- #: languages/vue.php:1236
6688
  msgid "Verify"
6689
  msgstr ""
6690
 
6691
- #: languages/vue.php:1239
6692
  msgid "Setup Wizard"
6693
  msgstr ""
6694
 
6695
- #: languages/vue.php:1242
6696
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6697
  msgstr ""
6698
 
6699
- #: languages/vue.php:1245
6700
  msgid "Relaunch Setup Wizard"
6701
  msgstr ""
6702
 
6703
- #: languages/vue.php:1248
6704
  msgid "Connect ExactMetrics to Start Tracking Your Data"
6705
  msgstr ""
6706
 
6707
- #: languages/vue.php:1251
6708
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6709
  msgstr ""
6710
 
6711
  #. Translators: Adds link to upgrade.
6712
- #: languages/vue.php:1255
6713
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6714
  msgstr ""
6715
 
6716
- #: languages/vue.php:1258
6717
  msgid "Receive 50% off automatically applied at the checkout!"
6718
  msgstr ""
6719
 
6720
- #: languages/vue.php:1261
6721
  msgid "See all features"
6722
  msgstr ""
6723
 
6724
- #: languages/vue.php:1264
6725
  msgid "Complete Upgrade"
6726
  msgstr ""
6727
 
6728
- #: languages/vue.php:1267
6729
  msgid "Upgrade to Pro Version!"
6730
  msgstr ""
6731
 
6732
  #. Translators: Make text bold.
6733
- #: languages/vue.php:1271
6734
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
6735
  msgstr ""
6736
 
6737
- #: languages/vue.php:1274
6738
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
6739
  msgstr ""
6740
 
6741
- #: languages/vue.php:1277
6742
  msgid "Last 30 Days Analytics for "
6743
  msgstr ""
6744
 
6745
- #: languages/vue.php:1280
6746
  msgid "Your Website"
6747
  msgstr ""
6748
 
6749
- #: languages/vue.php:1283
6750
  msgid "Sessions"
6751
  msgstr ""
6752
 
6753
- #: languages/vue.php:1286
6754
  msgid "Pageviews"
6755
  msgstr ""
6756
 
6757
- #: languages/vue.php:1289
6758
  msgid "Avg. Duration"
6759
  msgstr ""
6760
 
6761
- #: languages/vue.php:1292
6762
  msgid "Bounce Rate"
6763
  msgstr ""
6764
 
6765
- #: languages/vue.php:1295
6766
  msgid "More data is available"
6767
  msgstr ""
6768
 
6769
- #: languages/vue.php:1298
6770
  msgid "Want to see page-specific stats?"
6771
  msgstr ""
6772
 
6773
- #: languages/vue.php:1301
6774
  msgid "Dismiss"
6775
  msgstr ""
6776
 
6777
  #. Translators: Error status and error text.
6778
- #: languages/vue.php:1305
6779
  msgid "Can't load settings. Error: %1$s, %2$s"
6780
  msgstr ""
6781
 
6782
- #: languages/vue.php:1310
6783
  msgid "You appear to be offline."
6784
  msgstr ""
6785
 
6786
  #. Translators: Error status and error text.
6787
- #: languages/vue.php:1314
6788
  msgid "Can't save settings. Error: %1$s, %2$s"
6789
  msgstr ""
6790
 
6791
- #: languages/vue.php:1317
6792
  msgid "Network error encountered. Settings not saved."
6793
  msgstr ""
6794
 
6795
  #. Translators: Error status and error text.
6796
- #: languages/vue.php:1321
6797
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
6798
  msgstr ""
6799
 
6800
- #: languages/vue.php:1324
6801
  msgid "You appear to be offline. Settings not saved."
6802
  msgstr ""
6803
 
6804
  #. Translators: Error status and error text.
6805
- #: languages/vue.php:1328
6806
  msgid "Can't load authentication details. Error: %1$s, %2$s"
6807
  msgstr ""
6808
 
6809
  #. Translators: Error status and error text.
6810
- #: languages/vue.php:1332
6811
  msgid "Can't authenticate. Error: %1$s, %2$s"
6812
  msgstr ""
6813
 
6814
  #. Translators: Error status and error text.
6815
- #: languages/vue.php:1336
6816
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
6817
  msgstr ""
6818
 
6819
  #. Translators: Error status and error text.
6820
- #: languages/vue.php:1340
6821
  msgid "Can't verify credentials. Error: %1$s, %2$s"
6822
  msgstr ""
6823
 
6824
- #: languages/vue.php:1343
6825
  msgid "Proceed"
6826
  msgstr ""
6827
 
6828
- #: languages/vue.php:1346
6829
  msgid "Connection Information"
6830
  msgstr ""
6831
 
6832
- #: languages/vue.php:1349
6833
  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."
6834
  msgstr ""
6835
 
6836
- #: languages/vue.php:1352
6837
  msgid "Hostname"
6838
  msgstr ""
6839
 
6840
- #: languages/vue.php:1355
6841
  msgid "FTP Username"
6842
  msgstr ""
6843
 
6844
- #: languages/vue.php:1358
6845
  msgid "FTP Password"
6846
  msgstr ""
6847
 
6848
- #: languages/vue.php:1361
6849
  msgid "This password will not be stored on the server."
6850
  msgstr ""
6851
 
6852
- #: languages/vue.php:1364
6853
  msgid "Connection Type"
6854
  msgstr ""
6855
 
6856
- #: languages/vue.php:1367
6857
  msgid "Cancel"
6858
  msgstr ""
6859
 
6860
- #: languages/vue.php:1370
6861
  msgid "Ecommerce Report"
6862
  msgstr ""
6863
 
6864
- #: languages/vue.php:1373
6865
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value top products, top referral sources and more."
6866
  msgstr ""
6867
 
6868
- #: languages/vue.php:1377
6869
  msgid "Here's what you get:"
6870
  msgstr ""
6871
 
6872
- #: languages/vue.php:1380
6873
  msgid "See Your Conversion Rate to Improve Funnel"
6874
  msgstr ""
6875
 
6876
- #: languages/vue.php:1383
6877
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
6878
  msgstr ""
6879
 
6880
- #: languages/vue.php:1386
6881
  msgid "See The Total Revenue to Track Growth"
6882
  msgstr ""
6883
 
6884
- #: languages/vue.php:1389
6885
  msgid "See Average Order Value to Find Offer Opportunities"
6886
  msgstr ""
6887
 
6888
- #: languages/vue.php:1392
6889
  msgid "See Your Top Products to See Individual Performance"
6890
  msgstr ""
6891
 
6892
- #: languages/vue.php:1395
6893
  msgid "See Your Top Conversion Sources and Focus on what's Working"
6894
  msgstr ""
6895
 
6896
- #: languages/vue.php:1398
6897
  msgid "See The Time it Takes for Customers to Purchase"
6898
  msgstr ""
6899
 
6900
- #: languages/vue.php:1401
6901
  msgid "See How Many Sessions are Needed for a Purchase"
6902
  msgstr ""
6903
 
6904
- #: languages/vue.php:1404
6905
  msgid "New"
6906
  msgstr ""
6907
 
6908
- #: languages/vue.php:1407
6909
  msgid "Returning"
6910
  msgstr ""
6911
 
6912
- #: languages/vue.php:1411
6913
  msgid "Desktop"
6914
  msgstr ""
6915
 
6916
- #: languages/vue.php:1415
6917
  msgid "Tablet"
6918
  msgstr ""
6919
 
6920
- #: languages/vue.php:1419
6921
  msgid "Mobile"
6922
  msgstr ""
6923
 
6924
- #: languages/vue.php:1422
6925
  msgid "Overview Report"
6926
  msgstr ""
6927
 
6928
- #: languages/vue.php:1425
6929
  msgid "Avg. Session Duration"
6930
  msgstr ""
6931
 
6932
- #: languages/vue.php:1428
6933
  msgid "New vs. Returning Visitors"
6934
  msgstr ""
6935
 
6936
- #: languages/vue.php:1431
6937
  msgid "Device Breakdown"
6938
  msgstr ""
6939
 
6940
- #: languages/vue.php:1434
6941
  msgid "Top 10 Countries"
6942
  msgstr ""
6943
 
6944
- #: languages/vue.php:1437
6945
  msgid "View Countries Report"
6946
  msgstr ""
6947
 
6948
- #: languages/vue.php:1440
6949
  msgid "Top 10 Referrals"
6950
  msgstr ""
6951
 
6952
- #: languages/vue.php:1443
6953
  msgid "View All Referral Sources"
6954
  msgstr ""
6955
 
6956
- #: languages/vue.php:1446
6957
  msgid "Top Posts/Pages"
6958
  msgstr ""
6959
 
6960
- #: languages/vue.php:1449
6961
  msgid "View Full Posts/Pages Report"
6962
  msgstr ""
6963
 
6964
- #: languages/vue.php:1452
6965
  msgid "A session is the browsing session of a single user to your site."
6966
  msgstr ""
6967
 
6968
- #: languages/vue.php:1455
6969
  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."
6970
  msgstr ""
6971
 
6972
- #: languages/vue.php:1458
6973
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6974
  msgstr ""
6975
 
6976
- #: languages/vue.php:1461
6977
  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."
6978
  msgstr ""
6979
 
6980
- #: languages/vue.php:1464
6981
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
6982
  msgstr ""
6983
 
6984
- #: languages/vue.php:1467
6985
  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."
6986
  msgstr ""
6987
 
6988
- #: languages/vue.php:1470
6989
  msgid "This list shows the top countries your website visitors are from."
6990
  msgstr ""
6991
 
6992
- #: languages/vue.php:1473
6993
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
6994
  msgstr ""
6995
 
6996
- #: languages/vue.php:1476
6997
  msgid "This list shows the most viewed posts and pages on your website."
6998
  msgstr ""
6999
 
7000
- #: languages/vue.php:1479
7001
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
7002
  msgstr ""
7003
 
7004
- #: languages/vue.php:1482
7005
  msgid "See Your Top Landing Pages to Improve Engagement"
7006
  msgstr ""
7007
 
7008
- #: languages/vue.php:1485
7009
  msgid "See Your Top Exit Pages to Reduce Abandonment"
7010
  msgstr ""
7011
 
7012
- #: languages/vue.php:1488
7013
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
7014
  msgstr ""
7015
 
7016
- #: languages/vue.php:1491
7017
  msgid "See Your Top Affiliate Links and Focus on what’s working"
7018
  msgstr ""
7019
 
7020
- #: languages/vue.php:1494
7021
  msgid "See Your Top Downloads and Improve Conversions"
7022
  msgstr ""
7023
 
7024
- #: languages/vue.php:1497
7025
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
7026
  msgstr ""
7027
 
7028
- #: languages/vue.php:1500
7029
  msgid "Custom Dimensions Report"
7030
  msgstr ""
7031
 
7032
- #: languages/vue.php:1503
7033
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7034
  msgstr ""
7035
 
7036
- #: languages/vue.php:1506
7037
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7038
  msgstr ""
7039
 
7040
- #: languages/vue.php:1509
7041
  msgid "Author tracking to see which author’s posts generate the most traffic"
7042
  msgstr ""
7043
 
7044
- #: languages/vue.php:1512
7045
  msgid "Post Type tracking to see which WordPress post types perform better"
7046
  msgstr ""
7047
 
7048
- #: languages/vue.php:1515
7049
  msgid "Category tracking to see which sections of your sites are the most popular"
7050
  msgstr ""
7051
 
7052
- #: languages/vue.php:1518
7053
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7054
  msgstr ""
7055
 
7056
- #: languages/vue.php:1521
7057
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7058
  msgstr ""
7059
 
7060
- #: languages/vue.php:1524
7061
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7062
  msgstr ""
7063
 
7064
  #. Translators: Number of visitors.
7065
- #: languages/vue.php:1532
7066
  msgid "Your website was visited by %s users in the last 30 days."
7067
  msgstr ""
7068
 
7069
- #: languages/vue.php:1535
7070
  msgid "See the full analytics report!"
7071
  msgstr ""
7072
 
7073
- #: languages/vue.php:1538
7074
  msgid "Network Active"
7075
  msgstr ""
7076
 
7077
- #: languages/vue.php:1541
7078
  msgid "Active"
7079
  msgstr ""
7080
 
7081
- #: languages/vue.php:1544
7082
  msgid "Inactive"
7083
  msgstr ""
7084
 
7085
  #. Translators: Placeholder for the addon status (installed, active, etc).
7086
- #: languages/vue.php:1548
7087
  msgid "Status: %s"
7088
  msgstr ""
7089
 
7090
- #: languages/vue.php:1551
7091
  msgid "Not Installed"
7092
  msgstr ""
7093
 
7094
- #: languages/vue.php:1554
7095
  msgid "Custom Campaign Parameters"
7096
  msgstr ""
7097
 
7098
- #: languages/vue.php:1557
7099
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
7100
  msgstr ""
7101
 
7102
- #: languages/vue.php:1560
7103
  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."
7104
  msgstr ""
7105
 
7106
  #. Translators: Marks the field as required.
7107
- #: languages/vue.php:1564
7108
  msgid "Website URL %s"
7109
  msgstr ""
7110
 
7111
  #. Translators: Display the current website url in italic.
7112
- #: languages/vue.php:1568
7113
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
7114
  msgstr ""
7115
 
7116
  #. Translators: Marks the field as required.
7117
- #: languages/vue.php:1572
7118
  msgid "Campaign Source %s"
7119
  msgstr ""
7120
 
7121
  #. Translators: Make the text italic.
7122
- #: languages/vue.php:1576
7123
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
7124
  msgstr ""
7125
 
7126
  #. Translators: Make the text italic.
7127
- #: languages/vue.php:1580
7128
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
7129
  msgstr ""
7130
 
7131
  #. Translators: Make the text italic.
7132
- #: languages/vue.php:1584
7133
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
7134
  msgstr ""
7135
 
7136
- #: languages/vue.php:1587
7137
  msgid "Enter the paid keyword"
7138
  msgstr ""
7139
 
7140
- #: languages/vue.php:1590
7141
  msgid "Enter something to differentiate ads"
7142
  msgstr ""
7143
 
7144
- #: languages/vue.php:1593
7145
  msgid "Use Fragment"
7146
  msgstr ""
7147
 
7148
  #. Translators: Make the text bold.
7149
- #: languages/vue.php:1597
7150
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
7151
  msgstr ""
7152
 
7153
- #: languages/vue.php:1600
7154
  msgid "URL to use"
7155
  msgstr ""
7156
 
7157
- #: languages/vue.php:1603
7158
  msgid "(Updates automatically)"
7159
  msgstr ""
7160
 
7161
- #: languages/vue.php:1606
7162
  msgid "Copy to Clipboard"
7163
  msgstr ""
7164
 
7165
- #: languages/vue.php:1609
7166
  msgid "Copy to Pretty Links"
7167
  msgstr ""
7168
 
7169
- #: languages/vue.php:1612
7170
  msgid "Make your campaign links prettier!"
7171
  msgstr ""
7172
 
7173
- #: languages/vue.php:1615
7174
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
7175
  msgstr ""
7176
 
7177
- #: languages/vue.php:1618
7178
  msgid "Download Pretty Links"
7179
  msgstr ""
7180
 
7181
- #: languages/vue.php:1621
7182
  msgid "More Information & Examples"
7183
  msgstr ""
7184
 
7185
- #: languages/vue.php:1624
7186
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
7187
  msgstr ""
7188
 
7189
- #: languages/vue.php:1627
7190
  msgid "Campaign Source"
7191
  msgstr ""
7192
 
7193
- #: languages/vue.php:1630
7194
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
7195
  msgstr ""
7196
 
7197
- #: languages/vue.php:1633
7198
  msgid "Campaign Medium"
7199
  msgstr ""
7200
 
7201
- #: languages/vue.php:1636
7202
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
7203
  msgstr ""
7204
 
7205
- #: languages/vue.php:1639
7206
  msgid "Campaign Name"
7207
  msgstr ""
7208
 
7209
- #: languages/vue.php:1642
7210
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
7211
  msgstr ""
7212
 
7213
- #: languages/vue.php:1645
7214
  msgid "Campaign Term"
7215
  msgstr ""
7216
 
7217
- #: languages/vue.php:1648
7218
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
7219
  msgstr ""
7220
 
7221
- #: languages/vue.php:1651
7222
  msgid "Campaign Content"
7223
  msgstr ""
7224
 
7225
- #: languages/vue.php:1654
7226
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
7227
  msgstr ""
7228
 
7229
  #. Translators: Example.
7230
- #: languages/vue.php:1658
7231
  msgid "Example: %s"
7232
  msgstr ""
7233
 
7234
  #. Translators: Examples.
7235
- #: languages/vue.php:1662
7236
  msgid "Examples: %s"
7237
  msgstr ""
7238
 
7239
- #: languages/vue.php:1665
7240
  msgid "About Campaigns"
7241
  msgstr ""
7242
 
7243
- #: languages/vue.php:1668
7244
  msgid "About Custom Campaigns"
7245
  msgstr ""
7246
 
7247
- #: languages/vue.php:1671
7248
  msgid "Best Practices for Creating Custom Campaigns"
7249
  msgstr ""
7250
 
7251
- #: languages/vue.php:1674
7252
  msgid "About the Referral Traffic Report"
7253
  msgstr ""
7254
 
7255
- #: languages/vue.php:1677
7256
  msgid "About Traffic Source Dimensions"
7257
  msgstr ""
7258
 
7259
- #: languages/vue.php:1680
7260
  msgid "AdWords Auto-Tagging"
7261
  msgstr ""
7262
 
7263
- #: languages/vue.php:1683
7264
  msgid "Additional Information"
7265
  msgstr ""
7266
 
7267
- #: languages/vue.php:1686
7268
  msgid "Forms Report"
7269
  msgstr ""
7270
 
7271
- #: languages/vue.php:1689
7272
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
7273
  msgstr ""
7274
 
7275
- #: languages/vue.php:1692
7276
  msgid "See Your Top Converting Forms and Optimize"
7277
  msgstr ""
7278
 
7279
- #: languages/vue.php:1695
7280
  msgid "See Your Forms Impressions Count to Find the Best Placement"
7281
  msgstr ""
7282
 
7283
- #: languages/vue.php:1698
7284
  msgid "Cross Domain Tracking"
7285
  msgstr ""
7286
 
7287
  #. Translators: Add links to documentation.
7288
- #: languages/vue.php:1702
7289
  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."
7290
  msgstr ""
7291
 
7292
- #: languages/vue.php:1705
7293
  msgid "Demographics"
7294
  msgstr ""
7295
 
7296
- #: languages/vue.php:1708
7297
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
7298
  msgstr ""
7299
 
7300
- #: languages/vue.php:1711
7301
  msgid "Anonymize IP Addresses"
7302
  msgstr ""
7303
 
7304
- #: languages/vue.php:1714
7305
  msgid "Link Attribution"
7306
  msgstr ""
7307
 
7308
- #: languages/vue.php:1717
7309
  msgid "Enable Enhanced Link Attribution"
7310
  msgstr ""
7311
 
7312
- #: languages/vue.php:1720
7313
  msgid "Enable Anchor Tracking"
7314
  msgstr ""
7315
 
7316
- #: languages/vue.php:1723
7317
  msgid "Enable allowAnchor"
7318
  msgstr ""
7319
 
7320
- #: languages/vue.php:1726
7321
  msgid "Enable allowLinker"
7322
  msgstr ""
7323
 
7324
- #: languages/vue.php:1729
7325
  msgid "Enable Tag Links in RSS"
7326
  msgstr ""
7327
 
7328
- #: languages/vue.php:1732
7329
  msgid "File Downloads"
7330
  msgstr ""
7331
 
7332
- #: languages/vue.php:1735
7333
  msgid "Extensions of Files to Track as Downloads"
7334
  msgstr ""
7335
 
7336
- #: languages/vue.php:1738
7337
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
7338
  msgstr ""
7339
 
7340
  #. Translators: Add links to documentation.
7341
- #: languages/vue.php:1742
7342
  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."
7343
  msgstr ""
7344
 
7345
  #. Translators: Add links to documentation.
7346
- #: languages/vue.php:1746
7347
  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."
7348
  msgstr ""
7349
 
7350
  #. Translators: Add links to documentation.
7351
- #: languages/vue.php:1750
7352
  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."
7353
  msgstr ""
7354
 
7355
- #: languages/vue.php:1753
7356
  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."
7357
  msgstr ""
7358
 
7359
  #. Translators: Add links to documentation.
7360
- #: languages/vue.php:1757
7361
  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."
7362
  msgstr ""
7363
 
7364
  #. Translators: Add links to documentation.
7365
- #: languages/vue.php:1761
7366
  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."
7367
  msgstr ""
7368
 
7369
  #. Translators: Add links to documentation.
7370
- #: languages/vue.php:1765
7371
  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."
7372
  msgstr ""
7373
 
7374
- #: languages/vue.php:1768
7375
  msgid "Add domain"
7376
  msgstr ""
7377
 
7378
  #. Translators: Domain name example.
7379
- #: languages/vue.php:1772
7380
  msgid "Domain (example: %s)"
7381
  msgstr ""
7382
 
7383
  #. Translators: Current domain name that should not be used.
7384
- #: languages/vue.php:1776
7385
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
7386
  msgstr ""
7387
 
7388
- #: languages/vue.php:1779
7389
  msgid "Search Console Report"
7390
  msgstr ""
7391
 
7392
- #: languages/vue.php:1782
7393
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
7394
  msgstr ""
7395
 
7396
- #: languages/vue.php:1785
7397
  msgid "See Your Top Google Search Terms and Optimize Content"
7398
  msgstr ""
7399
 
7400
- #: languages/vue.php:1788
7401
  msgid "See The Number of Clicks and Track Interests"
7402
  msgstr ""
7403
 
7404
- #: languages/vue.php:1791
7405
  msgid "See The Click-Through-Ratio and Improve SEO"
7406
  msgstr ""
7407
 
7408
- #: languages/vue.php:1794
7409
  msgid "See The Average Results Position and Focus on what works."
7410
  msgstr ""
7411
 
7412
- #: languages/vue.php:1797
7413
  msgid "Installing Addon"
7414
  msgstr ""
7415
 
7416
- #: languages/vue.php:1800
7417
  msgid "Activating Addon"
7418
  msgstr ""
7419
 
7420
- #: languages/vue.php:1803
7421
  msgid "Addon Activated"
7422
  msgstr ""
7423
 
7424
- #: languages/vue.php:1806
7425
  msgid "Loading report data"
7426
  msgstr ""
7427
 
7428
- #: languages/vue.php:1809
7429
  msgid "Please activate manually"
7430
  msgstr ""
7431
 
7432
  #. Translators: Adds the error status and status text.
7433
- #: languages/vue.php:1813
7434
  msgid "Error: %1$s, %2$s"
7435
  msgstr ""
7436
 
7437
- #: languages/vue.php:1816
7438
  msgid "Error Activating Addon"
7439
  msgstr ""
7440
 
7441
- #: languages/vue.php:1822
7442
  msgid "Redirecting"
7443
  msgstr ""
7444
 
7445
- #: languages/vue.php:1825
7446
  msgid "Please wait"
7447
  msgstr ""
7448
 
7449
- #: languages/vue.php:1828
7450
  msgid "activate"
7451
  msgstr ""
7452
 
7453
- #: languages/vue.php:1831
7454
  msgid "install"
7455
  msgstr ""
7456
 
7457
- #: languages/vue.php:1834
7458
  msgid "Visit addons page"
7459
  msgstr ""
7460
 
7461
- #: languages/vue.php:1837
7462
  msgid "Report Unavailable"
7463
  msgstr ""
7464
 
7465
  #. Translators: Install/Activate the addon.
7466
- #: languages/vue.php:1841
7467
  msgid "%s Addon"
7468
  msgstr ""
7469
 
7470
- #: languages/vue.php:1844
7471
  msgid "Go Back To Reports"
7472
  msgstr ""
7473
 
7474
- #: languages/vue.php:1847
7475
  msgid "Enable Enhanced eCommerce"
7476
  msgstr ""
7477
 
7478
- #: languages/vue.php:1850
7479
  msgid "Real-Time Report"
7480
  msgstr ""
7481
 
7482
- #: languages/vue.php:1853
7483
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitor's activity when you need it."
7484
  msgstr ""
7485
 
7486
  #. Translators: add link to blog.
7487
- #: languages/vue.php:1857
7488
  msgid "To comply with Google's API policies we've had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
7489
  msgstr ""
7490
 
7491
- #: languages/vue.php:1860
7492
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
7493
  msgstr ""
7494
 
7495
- #: languages/vue.php:1863
7496
  msgid "See Your Top Pages Immediately After Making Changes"
7497
  msgstr ""
7498
 
7499
- #: languages/vue.php:1866
7500
  msgid "See Your Top Referral Sources and Adapt Faster"
7501
  msgstr ""
7502
 
7503
- #: languages/vue.php:1869
7504
  msgid "See Your Traffic Demographics"
7505
  msgstr ""
7506
 
7507
- #: languages/vue.php:1872
7508
  msgid "Get Fresh Reports Data Every 60 Seconds"
7509
  msgstr ""
7510
 
7511
- #: languages/vue.php:1875
7512
  msgid "See Where Your Visitors are Connecting From (country & city)"
7513
  msgstr ""
7514
 
7515
- #: languages/vue.php:1878
7516
  msgid "Help Us Improve"
7517
  msgstr ""
7518
 
7519
- #: languages/vue.php:1881
7520
  msgid "Help us better understand our users and their website needs."
7521
  msgstr ""
7522
 
7523
  #. Translators: Adds a link to the documentation.
7524
- #: languages/vue.php:1885
7525
  msgid "If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics 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"
7526
  msgstr ""
7527
 
7528
- #: languages/vue.php:1888
7529
- #: languages/vue.php:2725
7530
  msgid "Connect ExactMetrics"
7531
  msgstr ""
7532
 
7533
- #: languages/vue.php:1891
7534
  msgid "Website profile"
7535
  msgstr ""
7536
 
7537
- #: languages/vue.php:1894
7538
  msgid "Active profile"
7539
  msgstr ""
7540
 
7541
- #: languages/vue.php:1897
7542
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7543
  msgstr ""
7544
 
7545
- #: languages/vue.php:1900
7546
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7547
  msgstr ""
7548
 
7549
- #: languages/vue.php:1903
7550
  msgid "Skip and Keep Connection"
7551
  msgstr ""
7552
 
7553
- #: languages/vue.php:1906
7554
  msgid "Authenticating"
7555
  msgstr ""
7556
 
7557
- #: languages/vue.php:1909
7558
  msgid "No options available"
7559
  msgstr ""
7560
 
7561
- #: languages/vue.php:1912
7562
  msgid "This feature requires ExactMetrics Pro"
7563
  msgstr ""
7564
 
7565
- #: languages/vue.php:1915
7566
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
7567
  msgstr ""
7568
 
7569
- #: languages/vue.php:1918
7570
  msgid "Upgrade to Pro and Unlock Popular Products"
7571
  msgstr ""
7572
 
7573
- #: languages/vue.php:1921
7574
  msgid "View all Pro features"
7575
  msgstr ""
7576
 
7577
- #: languages/vue.php:1924
7578
  msgid "Reset to default"
7579
  msgstr ""
7580
 
7581
- #: languages/vue.php:1927
7582
  msgid "The value entered does not match the required format"
7583
  msgstr ""
7584
 
7585
  #. Translators: Placeholders are used for making text bold and adding a link.
7586
- #: languages/vue.php:1931
7587
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
7588
  msgstr ""
7589
 
7590
  #. Translators: Error status and error text.
7591
- #: languages/vue.php:1935
7592
  msgid "Can't load errors. Error: %1$s, %2$s"
7593
  msgstr ""
7594
 
7595
- #: languages/vue.php:1938
7596
  msgid "Only Show Posts from These Categories"
7597
  msgstr ""
7598
 
7599
- #: languages/vue.php:1941
7600
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
7601
  msgstr ""
7602
 
7603
- #: languages/vue.php:1944
7604
  msgid "Popular Posts data can be fetched correctly"
7605
  msgstr ""
7606
 
7607
- #: languages/vue.php:1947
7608
  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."
7609
  msgstr ""
7610
 
7611
- #: languages/vue.php:1950
7612
  msgid "Close"
7613
  msgstr ""
7614
 
7615
- #: languages/vue.php:1953
7616
  msgid "Add Top 5 Posts from Google Analytics"
7617
  msgstr ""
7618
 
7619
- #: languages/vue.php:1956
7620
  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 ExactMetrics and Google Analytics settings. Please use the button below to confirm your configuration is correct."
7621
  msgstr ""
7622
 
7623
- #: languages/vue.php:1959
7624
  msgid "Test Automated Posts"
7625
  msgstr ""
7626
 
7627
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
7628
- #: languages/vue.php:1963
7629
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
7630
  msgstr ""
7631
 
7632
- #: languages/vue.php:1966
7633
  msgid "Automated + Curated"
7634
  msgstr ""
7635
 
7636
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
7637
- #: languages/vue.php:1970
7638
  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."
7639
  msgstr ""
7640
 
7641
  #. Translators: Placeholder gets replaced with current license version.
7642
- #: languages/vue.php:1974
7643
  msgid "Pro version is required. Your current license level is: %s"
7644
  msgstr ""
7645
 
7646
- #: languages/vue.php:1977
7647
  msgid "Verifying Popular Posts data"
7648
  msgstr ""
7649
 
7650
- #: languages/vue.php:1990
7651
  msgid "Select posts/search"
7652
  msgstr ""
7653
 
7654
- #: languages/vue.php:1993
7655
  msgid "Oops! No posts found."
7656
  msgstr ""
7657
 
7658
- #: languages/vue.php:1996
7659
  msgid "Search by post title"
7660
  msgstr ""
7661
 
7662
- #: languages/vue.php:1999
7663
  msgid "Can't load posts."
7664
  msgstr ""
7665
 
7666
  #. Translators: Adds a link to documentation.
7667
- #: languages/vue.php:2003
7668
  msgid "In order for the ExactMetrics Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
7669
  msgstr ""
7670
 
7671
  #. Translators: Adds link to activate/install plugin and documentation.
7672
- #: languages/vue.php:2007
7673
  msgid "In order for the ExactMetrics 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"
7674
  msgstr ""
7675
 
7676
- #: languages/vue.php:2010
7677
  msgid "Activate"
7678
  msgstr ""
7679
 
7680
- #: languages/vue.php:2013
7681
  msgid "Install"
7682
  msgstr ""
7683
 
7684
  #. Translators: Adds a link to documentation.
7685
- #: languages/vue.php:2017
7686
  msgid "In order for the ExactMetrics 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"
7687
  msgstr ""
7688
 
7689
  #. Translators: Adds link to activate/install plugin and documentation.
7690
- #: languages/vue.php:2021
7691
  msgid "In order for the ExactMetrics 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"
7692
  msgstr ""
7693
 
7694
- #: languages/vue.php:2024
7695
  msgid "SharedCount API Key"
7696
  msgstr ""
7697
 
7698
- #: languages/vue.php:2027
7699
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
7700
  msgstr ""
7701
 
7702
- #: languages/vue.php:2030
7703
  msgid "Start Indexing"
7704
  msgstr ""
7705
 
7706
- #: languages/vue.php:2033
7707
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
7708
  msgstr ""
7709
 
7710
- #: languages/vue.php:2036
7711
  msgid "Indexing completed, counts will update automatically every day."
7712
  msgstr ""
7713
 
7714
- #: languages/vue.php:2043
7715
  msgid "Wide"
7716
  msgstr ""
7717
 
7718
- #: languages/vue.php:2046
7719
  msgid "Narrow"
7720
  msgstr ""
7721
 
7722
- #: languages/vue.php:2049
7723
  msgid "Title"
7724
  msgstr ""
7725
 
7726
- #: languages/vue.php:2052
7727
  msgid "Color"
7728
  msgstr ""
7729
 
7730
- #: languages/vue.php:2055
7731
  msgid "Size"
7732
  msgstr ""
7733
 
7734
- #: languages/vue.php:2058
7735
  msgid "Border"
7736
  msgstr ""
7737
 
7738
- #: languages/vue.php:2061
7739
  msgid "Author/Date"
7740
  msgstr ""
7741
 
7742
- #: languages/vue.php:2064
7743
  msgid "Label"
7744
  msgstr ""
7745
 
7746
- #: languages/vue.php:2067
7747
  msgid "Background"
7748
  msgstr ""
7749
 
7750
- #: languages/vue.php:2079
7751
  msgid "Choose which content you would like displayed in the widget."
7752
  msgstr ""
7753
 
7754
- #: languages/vue.php:2091
7755
  msgid "Comments"
7756
  msgstr ""
7757
 
7758
- #: languages/vue.php:2097
7759
  msgid "Choose how many posts you’d like displayed in the widget."
7760
  msgstr ""
7761
 
7762
- #: languages/vue.php:2100
7763
  msgid "View notifications"
7764
  msgstr ""
7765
 
7766
  #. Translators: Add link to retrieve license key from account.
7767
- #: languages/vue.php:2104
7768
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
7769
  msgstr ""
7770
 
7771
- #: languages/vue.php:2107
7772
  msgid "Miscellaneous"
7773
  msgstr ""
7774
 
7775
- #: languages/vue.php:2110
7776
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
7777
  msgstr ""
7778
 
7779
- #: languages/vue.php:2113
7780
  msgid "Hide Announcements"
7781
  msgstr ""
7782
 
7783
- #: languages/vue.php:2116
7784
  msgid "Unlock Form Tracking"
7785
  msgstr ""
7786
 
7787
- #: languages/vue.php:2119
7788
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
7789
  msgstr ""
7790
 
7791
- #: languages/vue.php:2122
7792
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
7793
  msgstr ""
7794
 
7795
- #: languages/vue.php:2125
7796
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
7797
  msgstr ""
7798
 
7799
- #: languages/vue.php:2128
7800
  msgid "Affiliate Links"
7801
  msgstr ""
7802
 
7803
  #. Translators: Add links to documentation.
7804
- #: languages/vue.php:2132
7805
  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."
7806
  msgstr ""
7807
 
7808
- #: languages/vue.php:2135
7809
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
7810
  msgstr ""
7811
 
7812
- #: languages/vue.php:2141
7813
  msgid "The ExactMetrics 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."
7814
  msgstr ""
7815
 
7816
- #: languages/vue.php:2144
7817
  msgid "Disable the Headline Analyzer"
7818
  msgstr ""
7819
 
7820
- #: languages/vue.php:2147
7821
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
7822
  msgstr ""
7823
 
7824
- #: languages/vue.php:2150
7825
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
7826
  msgstr ""
7827
 
7828
- #: languages/vue.php:2153
7829
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
7830
  msgstr ""
7831
 
7832
- #: languages/vue.php:2156
7833
  msgid "Over 200,000 websites use Pretty Links!"
7834
  msgstr ""
7835
 
7836
- #: languages/vue.php:2159
7837
  msgid "Install Pretty Links"
7838
  msgstr ""
7839
 
7840
- #: languages/vue.php:2162
7841
  msgid "Pretty Links Installed & Activated"
7842
  msgstr ""
7843
 
7844
- #: languages/vue.php:2165
7845
  msgid "Install Pretty Links from the WordPress.org plugin repository."
7846
  msgstr ""
7847
 
7848
- #: languages/vue.php:2168
7849
  msgid "Activate Pretty Links"
7850
  msgstr ""
7851
 
7852
- #: languages/vue.php:2171
7853
  msgid "Activating Pretty Links..."
7854
  msgstr ""
7855
 
7856
- #: languages/vue.php:2174
7857
  msgid "Create New Pretty Link"
7858
  msgstr ""
7859
 
7860
- #: languages/vue.php:2177
7861
  msgid "Create a New Pretty Link"
7862
  msgstr ""
7863
 
7864
- #: languages/vue.php:2180
7865
  msgid "Grab your campaign link and paste it into the Target URL field."
7866
  msgstr ""
7867
 
7868
  #. Translators: Error status and error text.
7869
- #: languages/vue.php:2184
7870
  msgid "Can't load report data. Error: %1$s, %2$s"
7871
  msgstr ""
7872
 
7873
- #: languages/vue.php:2187
7874
  msgid "Error loading report data"
7875
  msgstr ""
7876
 
7877
  #. Translators: Replaced with the number of days
7878
- #: languages/vue.php:2191
7879
  msgid "vs. Previous Day"
7880
  msgstr ""
7881
 
7882
- #: languages/vue.php:2194
7883
  msgid "No change"
7884
  msgstr ""
7885
 
7886
  #. Translators: Error status and error text.
7887
- #: languages/vue.php:2198
7888
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
7889
  msgstr ""
7890
 
7891
  #. Translators: Error status and error text.
7892
- #: languages/vue.php:2202
7893
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7894
  msgstr ""
7895
 
7896
  #. Translators: Error status and error text.
7897
- #: languages/vue.php:2206
7898
  msgid "Can't load license details. Error: %1$s, %2$s"
7899
  msgstr ""
7900
 
7901
- #: languages/vue.php:2209
7902
  msgid "Error loading license details"
7903
  msgstr ""
7904
 
7905
  #. Translators: Error status and error text.
7906
- #: languages/vue.php:2213
7907
  msgid "Can't verify the license. Error: %1$s, %2$s"
7908
  msgstr ""
7909
 
7910
  #. Translators: Error status and error text.
7911
- #: languages/vue.php:2217
7912
  msgid "Can't validate the license. Error: %1$s, %2$s"
7913
  msgstr ""
7914
 
7915
  #. Translators: Placeholder is replaced with WPForms.
7916
- #: languages/vue.php:2221
7917
  msgid "Recommended Plugin: %s"
7918
  msgstr ""
7919
 
7920
- #: languages/vue.php:2224
7921
  msgid "Activating..."
7922
  msgstr ""
7923
 
7924
- #: languages/vue.php:2227
7925
  msgid "Deactivating..."
7926
  msgstr ""
7927
 
7928
- #: languages/vue.php:2230
7929
  msgid "Deactivate"
7930
  msgstr ""
7931
 
7932
  #. Translators: Gets replaced with the number of days.
7933
- #: languages/vue.php:2234
7934
  msgid "Last %s days"
7935
  msgstr ""
7936
 
7937
  #. Translators: Make text green.
7938
- #: languages/vue.php:2238
7939
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
7940
  msgstr ""
7941
 
7942
- #: languages/vue.php:2241
7943
  msgid "Analytics"
7944
  msgstr ""
7945
 
7946
  #. Translators: Adds an arrow icon.
7947
- #: languages/vue.php:2245
7948
  msgid "View All Reports %s"
7949
  msgstr ""
7950
 
7951
- #: languages/vue.php:2248
7952
  msgid "Multiple Entries"
7953
  msgstr ""
7954
 
7955
- #: languages/vue.php:2251
7956
  msgid "Total Number of Widgets to Show"
7957
  msgstr ""
7958
 
7959
- #: languages/vue.php:2254
7960
  msgid "Choose how many widgets will be placed in a single Post."
7961
  msgstr ""
7962
 
7963
- #: languages/vue.php:2257
7964
  msgid "Minimum Distance Between Widgets"
7965
  msgstr ""
7966
 
7967
- #: languages/vue.php:2260
7968
  msgid "Choose the distance between widgets."
7969
  msgstr ""
7970
 
7971
- #: languages/vue.php:2263
7972
  msgid "Minimum Word Count to Display Multiple Widgets"
7973
  msgstr ""
7974
 
7975
- #: languages/vue.php:2266
7976
  msgid "Choose the minimum word count for a Post to have multiple entries."
7977
  msgstr ""
7978
 
7979
- #: languages/vue.php:2269
7980
  msgid "Pro version is required"
7981
  msgstr ""
7982
 
7983
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
7984
- #: languages/vue.php:2273
7985
  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)."
7986
  msgstr ""
7987
 
7988
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
7989
- #: languages/vue.php:2277
7990
  msgid "%1$sPage %3$s%2$s of %4$s"
7991
  msgstr ""
7992
 
7993
- #: languages/vue.php:2280
7994
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
7995
  msgstr ""
7996
 
7997
- #: languages/vue.php:2283
7998
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
7999
  msgstr ""
8000
 
8001
- #: languages/vue.php:2286
8002
  msgid "Icon"
8003
  msgstr ""
8004
 
8005
- #: languages/vue.php:2289
8006
  msgid "Display Method"
8007
  msgstr ""
8008
 
8009
- #: languages/vue.php:2292
8010
  msgid "There are two ways to manual include the widget in your posts."
8011
  msgstr ""
8012
 
8013
- #: languages/vue.php:2295
8014
  msgid "Using the Gutenberg Block"
8015
  msgstr ""
8016
 
8017
- #: languages/vue.php:2298
8018
  msgid "Using the Shortcode"
8019
  msgstr ""
8020
 
8021
- #: languages/vue.php:2301
8022
  msgid "Learn how to insert the widget using Gutenberg blocks."
8023
  msgstr ""
8024
 
8025
- #: languages/vue.php:2304
8026
  msgid "Learn how to insert the widget using out Shortcode."
8027
  msgstr ""
8028
 
8029
- #: languages/vue.php:2307
8030
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
8031
  msgstr ""
8032
 
8033
- #: languages/vue.php:2310
8034
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
8035
  msgstr ""
8036
 
8037
- #: languages/vue.php:2313
8038
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
8039
  msgstr ""
8040
 
8041
- #: languages/vue.php:2316
8042
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
8043
  msgstr ""
8044
 
8045
- #: languages/vue.php:2319
8046
  msgid "Shortcode"
8047
  msgstr ""
8048
 
8049
- #: languages/vue.php:2322
8050
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
8051
  msgstr ""
8052
 
8053
- #: languages/vue.php:2325
8054
  msgid "Copy Shortcode"
8055
  msgstr ""
8056
 
8057
- #: languages/vue.php:2328
8058
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
8059
  msgstr ""
8060
 
8061
- #: languages/vue.php:2331
8062
  msgid "Automatic Placement"
8063
  msgstr ""
8064
 
8065
- #: languages/vue.php:2334
8066
  msgid "Display using Gutenberg Blocks"
8067
  msgstr ""
8068
 
8069
- #: languages/vue.php:2337
8070
  msgid "Embed Options"
8071
  msgstr ""
8072
 
8073
- #: languages/vue.php:2340
8074
  msgid "All Embed Options can be used in conjunction with one another."
8075
  msgstr ""
8076
 
8077
- #: languages/vue.php:2343
8078
  msgid "Using Automatic Embed"
8079
  msgstr ""
8080
 
8081
- #: languages/vue.php:2346
8082
  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."
8083
  msgstr ""
8084
 
8085
- #: languages/vue.php:2349
8086
  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."
8087
  msgstr ""
8088
 
8089
- #: languages/vue.php:2352
8090
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
8091
  msgstr ""
8092
 
8093
- #: languages/vue.php:2355
8094
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
8095
  msgstr ""
8096
 
8097
- #: languages/vue.php:2358
8098
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
8099
  msgstr ""
8100
 
8101
- #: languages/vue.php:2361
8102
  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."
8103
  msgstr ""
8104
 
8105
- #: languages/vue.php:2364
8106
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
8107
  msgstr ""
8108
 
8109
- #: languages/vue.php:2367
8110
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
8111
  msgstr ""
8112
 
8113
- #: languages/vue.php:2370
8114
  msgid "Display using a Shortcode"
8115
  msgstr ""
8116
 
8117
- #: languages/vue.php:2373
8118
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
8119
  msgstr ""
8120
 
8121
- #: languages/vue.php:2376
8122
  msgid "Enable Automatic Placement"
8123
  msgstr ""
8124
 
8125
- #: languages/vue.php:2379
8126
  msgid "Display in a Sidebar"
8127
  msgstr ""
8128
 
8129
- #: languages/vue.php:2382
8130
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
8131
  msgstr ""
8132
 
8133
- #: languages/vue.php:2385
8134
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
8135
  msgstr ""
8136
 
8137
  #. Translators: Minimum and maximum number that can be used.
8138
- #: languages/vue.php:2389
8139
  msgid "Please enter a value between %1$s and %2$s"
8140
  msgstr ""
8141
 
8142
  #. Translators: The minimum set value.
8143
- #: languages/vue.php:2393
8144
  msgid "Please enter a value higher than %s"
8145
  msgstr ""
8146
 
8147
  #. Translators: The maximum set value.
8148
- #: languages/vue.php:2397
8149
  msgid "Please enter a value lower than %s"
8150
  msgstr ""
8151
 
8152
- #: languages/vue.php:2400
8153
  msgid "Please enter a number"
8154
  msgstr ""
8155
 
8156
- #: languages/vue.php:2403
8157
  msgid "Value has to be a round number"
8158
  msgstr ""
8159
 
8160
- #: languages/vue.php:2406
8161
  msgid "Days"
8162
  msgstr ""
8163
 
8164
  #. Translators: placeholders make text small.
8165
- #: languages/vue.php:2410
8166
  msgid "7 days"
8167
  msgstr ""
8168
 
8169
- #: languages/vue.php:2413
8170
  msgid "30 days"
8171
  msgstr ""
8172
 
8173
- #: languages/vue.php:2416
8174
  msgid "Custom"
8175
  msgstr ""
8176
 
8177
  #. Translators: Add line break.
8178
- #: languages/vue.php:2420
8179
  msgid "See All Your Important Store%s Metrics in One Place"
8180
  msgstr ""
8181
 
8182
- #: languages/vue.php:2423
8183
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8184
  msgstr ""
8185
 
8186
- #: languages/vue.php:2426
8187
  msgid "See your Top Conversion Sources and Focus on what's Working"
8188
  msgstr ""
8189
 
8190
  #. Translators: The name of the field that is throwing a validation error.
8191
- #: languages/vue.php:2430
8192
  msgid "%s can't be empty."
8193
  msgstr ""
8194
 
8195
- #: languages/vue.php:2433
8196
  msgid "Duplicate values are not allowed."
8197
  msgstr ""
8198
 
8199
- #: languages/vue.php:2436
8200
  msgid "You can add maximum 5 items."
8201
  msgstr ""
8202
 
8203
- #: languages/vue.php:2439
8204
  msgid "At least 0 item required."
8205
  msgstr ""
8206
 
8207
- #: languages/vue.php:2442
8208
  msgid "Add Another Link Path"
8209
  msgstr ""
8210
 
8211
- #: languages/vue.php:2445
8212
  msgid "Remove row"
8213
  msgstr ""
8214
 
8215
- #: languages/vue.php:2448
8216
  msgid "Time to Purchase"
8217
  msgstr ""
8218
 
8219
- #: languages/vue.php:2451
8220
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
8221
  msgstr ""
8222
 
8223
- #: languages/vue.php:2454
8224
  msgid "Sessions to Purchase"
8225
  msgstr ""
8226
 
8227
- #: languages/vue.php:2457
8228
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
8229
  msgstr ""
8230
 
8231
- #: languages/vue.php:2460
8232
  msgid "Top Landing Pages"
8233
  msgstr ""
8234
 
8235
- #: languages/vue.php:2463
8236
  msgid "This list shows the top pages users first land on when visiting your website."
8237
  msgstr ""
8238
 
8239
- #: languages/vue.php:2466
8240
  msgid "Top Exit Pages"
8241
  msgstr ""
8242
 
8243
- #: languages/vue.php:2469
8244
  msgid "This list shows the top pages users exit your website from."
8245
  msgstr ""
8246
 
8247
- #: languages/vue.php:2472
8248
  msgid "Top Outbound Links"
8249
  msgstr ""
8250
 
8251
- #: languages/vue.php:2475
8252
  msgid "This list shows the top links clicked on your website that go to another website."
8253
  msgstr ""
8254
 
8255
- #: languages/vue.php:2478
8256
  msgid "Top Affiliate Links"
8257
  msgstr ""
8258
 
8259
- #: languages/vue.php:2481
8260
  msgid "This list shows the top affiliate links your visitors clicked on."
8261
  msgstr ""
8262
 
8263
- #: languages/vue.php:2484
8264
  msgid "Top Download Links"
8265
  msgstr ""
8266
 
8267
- #: languages/vue.php:2487
8268
  msgid "This list shows the download links your visitors clicked the most."
8269
  msgstr ""
8270
 
8271
- #: languages/vue.php:2490
8272
  msgid "Top Products"
8273
  msgstr ""
8274
 
8275
- #: languages/vue.php:2493
8276
  msgid "This list shows the top selling products on your website."
8277
  msgstr ""
8278
 
8279
- #: languages/vue.php:2496
8280
  msgid "Top Conversion Sources"
8281
  msgstr ""
8282
 
8283
- #: languages/vue.php:2499
8284
  msgid "This list shows the top referral websites in terms of product revenue."
8285
  msgstr ""
8286
 
8287
- #: languages/vue.php:2502
8288
  msgid "Total Add/Remove"
8289
  msgstr ""
8290
 
8291
- #: languages/vue.php:2505
8292
  msgid "Unlock with %s"
8293
  msgstr ""
8294
 
8295
- #: languages/vue.php:2508
8296
  msgid "Upgrade"
8297
  msgstr ""
8298
 
8299
- #: languages/vue.php:2511
8300
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8301
  msgstr ""
8302
 
8303
- #: languages/vue.php:2514
8304
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8305
  msgstr ""
8306
 
8307
- #: languages/vue.php:2517
8308
  msgid "Performance"
8309
  msgstr ""
8310
 
8311
- #: languages/vue.php:2520
8312
  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."
8313
  msgstr ""
8314
 
8315
- #: languages/vue.php:2523
8316
  msgid "Export PDF Report"
8317
  msgstr ""
8318
 
8319
- #: languages/vue.php:2526
8320
  msgid "You can export PDF reports only in the PRO version."
8321
  msgstr ""
8322
 
8323
- #: languages/vue.php:2529
8324
  msgid "Usage Tracking"
8325
  msgstr ""
8326
 
8327
- #: languages/vue.php:2532
8328
  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."
8329
  msgstr ""
8330
 
8331
- #: languages/vue.php:2535
8332
  msgid "Allow usage tracking"
8333
  msgstr ""
8334
 
8335
  #. Translators: Adds a link to the documentation.
8336
- #: languages/vue.php:2539
8337
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8338
  msgstr ""
8339
 
8340
- #: languages/vue.php:2542
8341
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. ExactMetrics Pro shows you the stats that matter!"
8342
  msgstr ""
8343
 
8344
- #: languages/vue.php:2545
8345
  msgid "To unlock more features consider upgrading to PRO."
8346
  msgstr ""
8347
 
8348
- #: languages/vue.php:2548
8349
  msgid "Upgrade to"
8350
  msgstr ""
8351
 
8352
  #. Translators: Placeholder adds a line break.
8353
- #: languages/vue.php:2552
8354
  msgid "You can customize your %sdate range only in the PRO version."
8355
  msgstr ""
8356
 
8357
- #: languages/vue.php:2555
8358
  msgid "You appear to be offline. WPForms not installed."
8359
  msgstr ""
8360
 
8361
  #. Translators: Error status and error text.
8362
- #: languages/vue.php:2559
8363
  msgid "Can't activate addon. Error: %1$s, %2$s"
8364
  msgstr ""
8365
 
8366
- #: languages/vue.php:2562
8367
  msgid "You appear to be offline. Addon not activated."
8368
  msgstr ""
8369
 
8370
  #. Translators: Error status and error text.
8371
- #: languages/vue.php:2566
8372
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
8373
  msgstr ""
8374
 
8375
- #: languages/vue.php:2569
8376
  msgid "You appear to be offline. Addon not deactivated."
8377
  msgstr ""
8378
 
8379
  #. Translators: Error status and error text.
8380
- #: languages/vue.php:2573
8381
  msgid "Can't install plugin. Error: %1$s, %2$s"
8382
  msgstr ""
8383
 
8384
- #: languages/vue.php:2576
8385
  msgid "You appear to be offline. Plugin not installed."
8386
  msgstr ""
8387
 
8388
  #. Translators: Error status and error text.
8389
- #: languages/vue.php:2580
8390
  msgid "Can't install addon. Error: %1$s, %2$s"
8391
  msgstr ""
8392
 
8393
- #: languages/vue.php:2583
8394
  msgid "You appear to be offline. Addon not installed."
8395
  msgstr ""
8396
 
8397
  #. Translators: Error status and error text.
8398
- #: languages/vue.php:2587
8399
  msgid "Can't install WPForms. Error: %1$s, %2$s"
8400
  msgstr ""
8401
 
8402
  #. Translators: Makes text bold and adds smiley.
8403
- #: languages/vue.php:2591
8404
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
8405
  msgstr ""
8406
 
8407
  #. Translators: Makes text green.
8408
- #: languages/vue.php:2595
8409
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
8410
  msgstr ""
8411
 
8412
- #: languages/vue.php:2598
8413
  msgid "Unlock All Features and Upgrade to Pro"
8414
  msgstr ""
8415
 
8416
- #: languages/vue.php:2601
8417
  msgid "Show"
8418
  msgstr ""
8419
 
8420
  #. Translators: The number of results.
8421
- #: languages/vue.php:2605
8422
  msgid "%s results"
8423
  msgstr ""
8424
 
8425
- #: languages/vue.php:2608
8426
  msgid ""
8427
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
8428
  " and other privacy regulations."
8429
  msgstr ""
8430
 
8431
- #: languages/vue.php:2612
8432
  msgid "EU Compliance"
8433
  msgstr ""
8434
 
8435
- #: languages/vue.php:2615
8436
  msgid "Show in widget mode"
8437
  msgstr ""
8438
 
8439
- #: languages/vue.php:2618
8440
  msgid "Show in full-width mode"
8441
  msgstr ""
8442
 
8443
- #: languages/vue.php:2621
8444
  msgid "Show Overview Reports"
8445
  msgstr ""
8446
 
8447
- #: languages/vue.php:2624
8448
  msgid "Show Publishers Reports"
8449
  msgstr ""
8450
 
8451
- #: languages/vue.php:2627
8452
  msgid "Show eCommerce Reports"
8453
  msgstr ""
8454
 
8455
- #: languages/vue.php:2630
8456
  msgid "Available in PRO version"
8457
  msgstr ""
8458
 
8459
- #: languages/vue.php:2633
8460
  msgid "Scroll Tracking"
8461
  msgstr ""
8462
 
8463
- #: languages/vue.php:2636
8464
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
8465
  msgstr ""
8466
 
8467
- #: languages/vue.php:2639
8468
  msgid "See All Reports"
8469
  msgstr ""
8470
 
8471
- #: languages/vue.php:2642
8472
  msgid "Go to the Analytics Dashboard"
8473
  msgstr ""
8474
 
8475
- #: languages/vue.php:2645
8476
  msgid "Google AMP"
8477
  msgstr ""
8478
 
8479
- #: languages/vue.php:2648
8480
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
8481
  msgstr ""
8482
 
8483
- #: languages/vue.php:2651
8484
  msgid "Ads Tracking"
8485
  msgstr ""
8486
 
8487
- #: languages/vue.php:2654
8488
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8489
  msgstr ""
8490
 
8491
- #: languages/vue.php:2657
8492
  msgid "Facebook Instant Articles"
8493
  msgstr ""
8494
 
8495
- #: languages/vue.php:2660
8496
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
8497
  msgstr ""
8498
 
8499
- #: languages/vue.php:2663
8500
  msgid "Check out the newly added classic mode"
8501
  msgstr ""
8502
 
8503
  #. Translators: Line break.
8504
- #: languages/vue.php:2667
8505
  msgid "Unique %s Sessions"
8506
  msgstr ""
8507
 
8508
  #. Translators: Line break.
8509
- #: languages/vue.php:2671
8510
  msgid "Unique %s Pageviews"
8511
  msgstr ""
8512
 
8513
- #: languages/vue.php:2674
8514
  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."
8515
  msgstr ""
8516
 
8517
- #: languages/vue.php:2677
8518
  msgid "Hide dashboard widget"
8519
  msgstr ""
8520
 
8521
- #: languages/vue.php:2680
8522
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
8523
  msgstr ""
8524
 
8525
- #: languages/vue.php:2683
8526
  msgid "Yes, hide it!"
8527
  msgstr ""
8528
 
8529
- #: languages/vue.php:2686
8530
  msgid "No, cancel!"
8531
  msgstr ""
8532
 
8533
- #: languages/vue.php:2689
8534
  msgid "ExactMetrics Widget Hidden"
8535
  msgstr ""
8536
 
8537
- #: languages/vue.php:2692
8538
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
8539
  msgstr ""
8540
 
8541
- #: languages/vue.php:2695
8542
  msgid "Classic mode"
8543
  msgstr ""
8544
 
8545
  #. Translators: Make text green and add smiley face.
8546
- #: languages/vue.php:2699
8547
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
8548
  msgstr ""
8549
 
8550
  #. Translators: Make text green.
8551
- #: languages/vue.php:2703
8552
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8553
  msgstr ""
8554
 
8555
- #: languages/vue.php:2706
8556
  msgid "Unlock PRO Features Now"
8557
  msgstr ""
8558
 
8559
  #. Translators: Add link to retrieve license from account area.
8560
- #: languages/vue.php:2710
8561
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
8562
  msgstr ""
8563
 
8564
- #: languages/vue.php:2713
8565
  msgid "Verifying Credentials"
8566
  msgstr ""
8567
 
8568
- #: languages/vue.php:2716
8569
  msgid "Your site is connected to ExactMetrics!"
8570
  msgstr ""
8571
 
8572
- #: languages/vue.php:2719
8573
  msgid "Deauthenticating"
8574
  msgstr ""
8575
 
8576
- #: languages/vue.php:2722
8577
  msgid "You've disconnected your site from ExactMetrics. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
8578
  msgstr ""
8579
 
8580
- #: languages/vue.php:2728
8581
  msgid "Verify Credentials"
8582
  msgstr ""
8583
 
8584
- #: languages/vue.php:2734
8585
  msgid "Website Profile"
8586
  msgstr ""
8587
 
8588
- #: languages/vue.php:2737
8589
  msgid "Active Profile"
8590
  msgstr ""
8591
 
8592
- #: languages/vue.php:2740
8593
  msgid "Force Deauthenticate"
8594
  msgstr ""
8595
 
8596
- #: languages/vue.php:2743
8597
  msgid "Disconnect ExactMetrics"
8598
  msgstr ""
8599
 
8600
- #: languages/vue.php:2747
8601
  msgid "Site Speed Report"
8602
  msgstr ""
8603
 
8604
- #: languages/vue.php:2750
8605
  msgid "Site Speed"
8606
  msgstr ""
8607
 
8608
- #: languages/vue.php:2756
8609
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
8610
  msgstr ""
8611
 
8612
- #: languages/vue.php:2759
8613
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
8614
  msgstr ""
8615
 
8616
- #: languages/vue.php:2762
8617
  msgid "See Your Homepage's Overall Performance Score"
8618
  msgstr ""
8619
 
8620
- #: languages/vue.php:2765
8621
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
8622
  msgstr ""
8623
 
8624
- #: languages/vue.php:2768
8625
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
8626
  msgstr ""
8627
 
8628
- #: languages/vue.php:2771
8629
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
8630
  msgstr ""
8631
 
8632
- #: languages/vue.php:2775
8633
  msgid "2020 Year in Review"
8634
  msgstr ""
8635
 
8636
- #: languages/vue.php:2778
8637
  msgid "Still Calculating..."
8638
  msgstr ""
8639
 
8640
- #: languages/vue.php:2781
8641
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
8642
  msgstr ""
8643
 
8644
- #: languages/vue.php:2784
8645
  msgid "Back to Overview Report"
8646
  msgstr ""
8647
 
8648
- #: languages/vue.php:2787
8649
  msgid "Your 2020 Analytics Report"
8650
  msgstr ""
8651
 
8652
- #: languages/vue.php:2793
8653
  msgid "Audience"
8654
  msgstr ""
8655
 
8656
- #: languages/vue.php:2796
8657
  msgid "Congrats"
8658
  msgstr ""
8659
 
8660
- #: languages/vue.php:2799
8661
  msgid "Your website was quite popular this year! "
8662
  msgstr ""
8663
 
8664
- #: languages/vue.php:2802
8665
  msgid "You had "
8666
  msgstr ""
8667
 
8668
- #: languages/vue.php:2805
8669
  msgid " visitors!"
8670
  msgstr ""
8671
 
8672
- #: languages/vue.php:2808
8673
  msgid " visitors"
8674
  msgstr ""
8675
 
8676
- #: languages/vue.php:2811
8677
  msgid "Total Visitors"
8678
  msgstr ""
8679
 
8680
- #: languages/vue.php:2814
8681
  msgid "Total Sessions"
8682
  msgstr ""
8683
 
8684
- #: languages/vue.php:2817
8685
  msgid "Visitors by Month"
8686
  msgstr ""
8687
 
8688
- #: languages/vue.php:2820
8689
  msgid "January 1, 2020 - December 31, 2020"
8690
  msgstr ""
8691
 
8692
- #: languages/vue.php:2823
8693
  msgid "A Tip for 2021"
8694
  msgstr ""
8695
 
8696
- #: languages/vue.php:2826
8697
  msgid "#1"
8698
  msgstr ""
8699
 
8700
- #: languages/vue.php:2829
8701
  msgid "You Top 5 Countries"
8702
  msgstr ""
8703
 
8704
- #: languages/vue.php:2832
8705
  msgid "Let’s get to know your visitors a little better, shall we?"
8706
  msgstr ""
8707
 
8708
- #: languages/vue.php:2835
8709
  msgid "Gender"
8710
  msgstr ""
8711
 
8712
- #: languages/vue.php:2838
8713
  msgid "Female"
8714
  msgstr ""
8715
 
8716
- #: languages/vue.php:2841
8717
  msgid "Women"
8718
  msgstr ""
8719
 
8720
- #: languages/vue.php:2844
8721
  msgid "Male"
8722
  msgstr ""
8723
 
8724
- #: languages/vue.php:2847
8725
  msgid "Average Age"
8726
  msgstr ""
8727
 
8728
- #: languages/vue.php:2850
8729
  msgid "Your Top 5 Pages"
8730
  msgstr ""
8731
 
8732
- #: languages/vue.php:2853
8733
  msgid "Time Spent on Site"
8734
  msgstr ""
8735
 
8736
- #: languages/vue.php:2856
8737
  msgid "minutes"
8738
  msgstr ""
8739
 
8740
- #: languages/vue.php:2859
8741
  msgid "Device Type"
8742
  msgstr ""
8743
 
8744
- #: languages/vue.php:2862
8745
  msgid "A Tip For 2021"
8746
  msgstr ""
8747
 
8748
- #: languages/vue.php:2865
8749
  msgid "Are you wondering, how do I get my Google to index my site? If your website isn’t showing up on Google search results then it could be that your webpages aren’t being indexed."
8750
  msgstr ""
8751
 
8752
- #: languages/vue.php:2868
8753
  msgid "Read - 8 Ways to Get Google to Index Your Site Faster (Tried & Tested)"
8754
  msgstr ""
8755
 
8756
- #: languages/vue.php:2871
8757
  msgid "So, where did all of these visitors come from?"
8758
  msgstr ""
8759
 
8760
- #: languages/vue.php:2874
8761
  msgid "Clicks"
8762
  msgstr ""
8763
 
8764
- #: languages/vue.php:2877
8765
  msgid "Your Top 5 Keywords"
8766
  msgstr ""
8767
 
8768
- #: languages/vue.php:2880
8769
  msgid "What keywords visitors searched for to find your site"
8770
  msgstr ""
8771
 
8772
- #: languages/vue.php:2883
8773
  msgid "Your Top 5 Referrals"
8774
  msgstr ""
8775
 
8776
- #: languages/vue.php:2886
8777
  msgid "The websites that link back to your website"
8778
  msgstr ""
8779
 
8780
- #: languages/vue.php:2889
8781
  msgid "Opportunity"
8782
  msgstr ""
8783
 
8784
- #: languages/vue.php:2892
8785
  msgid "With Google Analytics, you can track and measure your site’s performance. Not only that, but you also get useful insights about your visitors."
8786
  msgstr ""
8787
 
8788
- #: languages/vue.php:2895
8789
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
8790
  msgstr ""
8791
 
8792
- #: languages/vue.php:2898
8793
  msgid "Thank you for using ExactMetrics!"
8794
  msgstr ""
8795
 
8796
- #: languages/vue.php:2901
8797
  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."
8798
  msgstr ""
8799
 
8800
- #: languages/vue.php:2904
8801
  msgid "Here's to an amazing 2021!"
8802
  msgstr ""
8803
 
8804
- #: languages/vue.php:2907
8805
  msgid "Enjoying ExactMetrics"
8806
  msgstr ""
8807
 
8808
- #: languages/vue.php:2910
8809
  msgid "Leave a five star review!"
8810
  msgstr ""
8811
 
8812
- #: languages/vue.php:2913
8813
  msgid "Syed Balkhi"
8814
  msgstr ""
8815
 
8816
- #: languages/vue.php:2916
8817
  msgid "Chris Christoff"
8818
  msgstr ""
8819
 
8820
- #: languages/vue.php:2919
8821
  msgid "Write Review"
8822
  msgstr ""
8823
 
8824
- #: languages/vue.php:2922
8825
  msgid "Did you know over 10 million websites use our plugins?"
8826
  msgstr ""
8827
 
8828
- #: languages/vue.php:2925
8829
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
8830
  msgstr ""
8831
 
8832
- #: languages/vue.php:2928
8833
  msgid "Join our Communities!"
8834
  msgstr ""
8835
 
8836
- #: languages/vue.php:2931
8837
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
8838
  msgstr ""
8839
 
8840
- #: languages/vue.php:2934
8841
  msgid "Facebook Group"
8842
  msgstr ""
8843
 
8844
- #: languages/vue.php:2937
8845
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
8846
  msgstr ""
8847
 
8848
- #: languages/vue.php:2940
8849
  msgid "Join Now...It’s Free!"
8850
  msgstr ""
8851
 
8852
- #: languages/vue.php:2943
8853
  msgid "WordPress Tutorials by WPBeginner"
8854
  msgstr ""
8855
 
8856
- #: languages/vue.php:2946
8857
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
8858
  msgstr ""
8859
 
8860
- #: languages/vue.php:2949
8861
  msgid "Visit WPBeginner"
8862
  msgstr ""
8863
 
8864
- #: languages/vue.php:2952
8865
  msgid "Follow Us!"
8866
  msgstr ""
8867
 
8868
- #: languages/vue.php:2955
8869
  msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
8870
  msgstr ""
8871
 
8872
- #: languages/vue.php:2958
8873
  msgid "Copyright ExactMetrics, 2021"
8874
  msgstr ""
8875
 
8876
- #: languages/vue.php:2961
8877
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
8878
  msgstr ""
8879
 
8880
- #: languages/vue.php:2967
8881
  msgid "January"
8882
  msgstr ""
8883
 
8884
- #: languages/vue.php:2970
8885
  msgid "February"
8886
  msgstr ""
8887
 
8888
- #: languages/vue.php:2973
8889
  msgid "March"
8890
  msgstr ""
8891
 
8892
- #: languages/vue.php:2976
8893
  msgid "April"
8894
  msgstr ""
8895
 
8896
- #: languages/vue.php:2979
8897
  msgid "May"
8898
  msgstr ""
8899
 
8900
- #: languages/vue.php:2982
8901
  msgid "June"
8902
  msgstr ""
8903
 
8904
- #: languages/vue.php:2985
8905
  msgid "July"
8906
  msgstr ""
8907
 
8908
- #: languages/vue.php:2988
8909
  msgid "August"
8910
  msgstr ""
8911
 
8912
- #: languages/vue.php:2991
8913
  msgid "September"
8914
  msgstr ""
8915
 
8916
- #: languages/vue.php:2994
8917
  msgid "October"
8918
  msgstr ""
8919
 
8920
- #: languages/vue.php:2997
8921
  msgid "November"
8922
  msgstr ""
8923
 
8924
- #: languages/vue.php:3000
8925
  msgid "December"
8926
  msgstr ""
8927
 
8928
  #. Translators: Number of visitors.
8929
- #: languages/vue.php:3004
8930
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
8931
  msgstr ""
8932
 
8933
- #: languages/vue.php:3007
8934
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
8935
  msgstr ""
8936
 
8937
  #. Translators: Number of visitors.
8938
- #: languages/vue.php:3011
8939
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
8940
  msgstr ""
8941
 
8942
  #. Translators: Number of visitors.
8943
- #: languages/vue.php:3015
8944
  msgid "%s Visitors"
8945
  msgstr ""
8946
 
8947
  #. Translators: Percent and Number of visitors.
8948
- #: languages/vue.php:3019
8949
  msgid "%1$s&#37 of your visitors were %2$s"
8950
  msgstr ""
8951
 
8952
  #. Translators: Number of visitors and their age.
8953
- #: languages/vue.php:3023
8954
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
8955
  msgstr ""
8956
 
8957
  #. Translators: Number of visitors and number of pages.
8958
- #: languages/vue.php:3027
8959
  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>"
8960
  msgstr ""
8961
 
8962
  #. Translators: Number of minutes spent on site.
8963
- #: languages/vue.php:3031
8964
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
8965
  msgstr ""
8966
 
8967
  #. Translators: Name of device type.
8968
- #: languages/vue.php:3035
8969
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
8970
  msgstr ""
8971
 
8972
  #. Translators: Number of visitors and device percentage.
8973
- #: languages/vue.php:3039
8974
  msgid "%1$s&#37 of your visitors were on a %2$s device."
8975
  msgstr ""
8976
 
8977
  #. Translators: add link to blog.
8978
- #: languages/vue.php:3043
8979
  msgid "To comply with Google's API policies we've had to remove the site speed report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
8980
  msgstr ""
8981
 
8982
  #. Translators: add link to blog.
8983
- #: languages/vue.php:3047
8984
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. But what happens if a website doesn't load quickly for users?"
8985
  msgstr ""
8986
 
8987
  #. Translators: add link to blog.
8988
- #: languages/vue.php:3051
8989
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly."
8990
  msgstr ""
8991
 
8992
  #. Translators: add link to blog.
8993
- #: languages/vue.php:3055
8994
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
8995
  msgstr ""
8996
 
8997
- #: languages/vue.php:3058
8998
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
8999
  msgstr ""
9000
 
9001
- #: languages/vue.php:3061
9002
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
9003
  msgstr ""
9004
 
9005
- #: languages/vue.php:3064
9006
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
9007
  msgstr ""
9008
 
9009
- #: gadwp.php:250
9010
- #: gadwp.php:264
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9011
  msgid "Cheatin&#8217; huh?"
9012
  msgstr ""
9013
 
9014
  #. Translators: Make version number bold and add a link to return to the plugins page.
9015
- #: gadwp.php:396
9016
  msgid "Sorry, but your version of WordPress does not meet ExactMetrics'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."
9017
  msgstr ""
9018
 
9019
  #. Translators: Adds a link to the plugins page.
9020
- #: gadwp.php:422
9021
  msgid "Please %1$suninstall%2$s the ExactMetrics Lite Plugin. Your Pro version of ExactMetrics may not work as expected until the Lite version is uninstalled."
9022
  msgstr ""
9023
 
1
+ # Copyright (C) 2021 ExactMetrics
2
  # This file is distributed under the same license as the Google Analytics Dashboard for WP (GADWP) plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Google Analytics Dashboard for WP (GADWP) 6.5.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/google-analytics-dashboard-for-wp\n"
7
  "Last-Translator: ExactMetrics Team <support@exactmetrics.com>\n"
8
  "Language-Team: ExactMetrics Team <support@exactmetrics.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-19T08:49:12+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-dashboard-for-wp\n"
75
  msgstr ""
76
 
77
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
78
+ #: languages/vue.php:2045
79
  msgid "Theme Preview"
80
  msgstr ""
81
 
228
  #: lite/includes/admin/wp-site-health.php:372
229
  #: lite/includes/admin/wp-site-health.php:398
230
  #: lite/includes/admin/wp-site-health.php:425
231
+ #: languages/vue.php:1825
232
  msgid "View Addons"
233
  msgstr ""
234
 
361
  msgstr ""
362
 
363
  #: lite/includes/admin/helpers.php:83
364
+ #: languages/vue.php:2760
365
+ #: languages/vue.php:2971
366
  msgid "Upgrade to ExactMetrics Pro"
367
  msgstr ""
368
 
381
  msgstr ""
382
 
383
  #: lite/includes/admin/reports/report-queries.php:22
384
+ #: languages/vue.php:274
385
  msgid "Search Console"
386
  msgstr ""
387
 
388
  #: lite/includes/admin/reports/report-ecommerce.php:22
389
+ #: languages/vue.php:360
390
  msgid "eCommerce"
391
  msgstr ""
392
 
399
  msgstr ""
400
 
401
  #: lite/includes/admin/reports/report-publisher.php:22
402
+ #: languages/vue.php:382
403
  msgid "Publishers"
404
  msgstr ""
405
 
406
  #: lite/includes/admin/reports/report-dimensions.php:22
407
+ #: languages/vue.php:428
408
  msgid "Dimensions"
409
  msgstr ""
410
 
411
  #: lite/includes/admin/reports/report-forms.php:22
412
+ #: languages/vue.php:388
413
  msgid "Forms"
414
  msgstr ""
415
 
418
  msgid "Welcome to ExactMetrics"
419
  msgstr ""
420
 
421
+ #: includes/frontend/tracking/class-tracking-gtag.php:181
 
 
 
422
  #: includes/frontend/tracking/class-tracking-analytics.php:208
423
  msgid "Note: ExactMetrics is not currently configured on this site. The site owner needs to authenticate with Google Analytics in the ExactMetrics settings panel."
424
  msgstr ""
425
 
426
+ #: includes/frontend/tracking/class-tracking-gtag.php:184
427
  #: includes/frontend/tracking/class-tracking-analytics.php:211
428
  msgid "Note: ExactMetrics does not track you as a logged-in site administrator to prevent site owners from accidentally skewing their own Google Analytics data."
429
  msgstr ""
430
 
431
+ #: includes/frontend/tracking/class-tracking-gtag.php:187
432
  #: includes/frontend/tracking/class-tracking-analytics.php:214
433
  msgid "Note: The site owner has disabled Google Analytics tracking for your user role."
434
  msgstr ""
435
 
436
+ #: includes/frontend/tracking/class-tracking-preview.php:77
437
+ msgid "You are currently in a preview window. ExactMetrics doesn't track preview window traffic to avoid false visit reports."
438
+ msgstr ""
439
+
440
  #: includes/frontend/tracking/class-tracking-analytics.php:301
441
  msgid "Not running function"
442
  msgstr ""
445
  msgid "because you are not being tracked."
446
  msgstr ""
447
 
448
+ #: includes/frontend/frontend.php:257
449
  msgid "Tracking is Disabled for Administrators"
450
  msgstr ""
451
 
452
  #. Translators: %s is the link to the article where more details about tracking are listed.
453
+ #: includes/frontend/frontend.php:267
454
  msgid "To keep stats accurate, we do not load Google Analytics scripts for admin users. %1$sLearn More &raquo;%2$s"
455
  msgstr ""
456
 
670
  msgstr ""
671
 
672
  #: includes/gutenberg/headline-tool/headline-tool.php:302
673
+ #: languages/vue.php:351
674
  msgid "General"
675
  msgstr ""
676
 
3191
  #: includes/admin/notifications/notification-bounce-rate.php:40
3192
  #: includes/admin/notifications/notification-headline-analyzer.php:30
3193
  #: includes/admin/notifications/notification-audience.php:43
3194
+ #: languages/vue.php:413
3195
  msgid "Learn More"
3196
  msgstr ""
3197
 
3218
  msgstr ""
3219
 
3220
  #: includes/admin/common.php:940
3221
+ #: languages/vue.php:2797
3222
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
3223
  msgstr ""
3224
 
3225
  #: includes/admin/admin.php:34
3226
  #: includes/admin/admin.php:42
3227
  #: includes/admin/admin.php:188
3228
+ #: languages/vue.php:347
3229
  msgid "Settings"
3230
  msgstr ""
3231
 
3241
 
3242
  #: includes/admin/admin.php:39
3243
  #: includes/admin/admin.php:98
3244
+ #: languages/vue.php:1159
3245
  msgid "Reports"
3246
  msgstr ""
3247
 
3279
 
3280
  #: includes/admin/admin.php:63
3281
  #: includes/admin/admin.php:106
3282
+ #: languages/vue.php:323
3283
  msgid "About Us"
3284
  msgstr ""
3285
 
3312
 
3313
  #: includes/admin/admin.php:178
3314
  #: includes/admin/admin.php:181
3315
+ #: languages/vue.php:555
3316
  msgid "Support"
3317
  msgstr ""
3318
 
3322
  msgstr ""
3323
 
3324
  #: includes/admin/admin.php:284
3325
+ #: languages/vue.php:404
3326
  msgid "Please Setup Website Analytics to See Audience Insights"
3327
  msgstr ""
3328
 
3329
  #: includes/admin/admin.php:285
3330
+ #: languages/vue.php:410
3331
  msgid "Connect ExactMetrics and Setup Website Analytics"
3332
  msgstr ""
3333
 
3334
  #: includes/admin/admin.php:289
3335
+ #: languages/vue.php:407
3336
  msgid "ExactMetrics, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 1 million website owners use ExactMetrics to see the stats that matter and grow their business."
3337
  msgstr ""
3338
 
3343
 
3344
  #. Translators: Adds a link to the license renewal.
3345
  #: includes/admin/admin.php:310
3346
+ #: languages/vue.php:1987
3347
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
3348
  msgstr ""
3349
 
3350
  #: includes/admin/admin.php:312
3351
+ #: languages/vue.php:1990
3352
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
3353
  msgstr ""
3354
 
3355
  #: includes/admin/admin.php:314
3356
+ #: languages/vue.php:1993
3357
  msgid "Your license key for ExactMetrics is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
3358
  msgstr ""
3359
 
3497
  #. Translators: visitors notification title
3498
  #. Translators: Number of visitors.
3499
  #: includes/admin/notifications/notification-visitors.php:37
3500
+ #: languages/vue.php:1534
3501
  msgid "See how %s visitors found your site!"
3502
  msgstr ""
3503
 
3588
  msgstr ""
3589
 
3590
  #: includes/admin/notifications/notification-upgrade-to-pro.php:34
3591
+ #: languages/vue.php:583
3592
  msgid "Upgrade to Pro"
3593
  msgstr ""
3594
 
3595
  #: includes/admin/reports/overview.php:34
3596
+ #: languages/vue.php:379
3597
  msgid "Overview"
3598
  msgstr ""
3599
 
3685
  msgstr ""
3686
 
3687
  #: includes/admin/reports/abstract-report.php:383
3688
+ #: languages/vue.php:202
3689
  msgid "Upgrade Now"
3690
  msgstr ""
3691
 
4880
  msgstr ""
4881
 
4882
  #: languages/gutenberg.php:77
4883
+ #: languages/vue.php:338
4884
  msgid "Inline Popular Posts"
4885
  msgstr ""
4886
 
4917
  msgstr ""
4918
 
4919
  #: languages/gutenberg.php:107
4920
+ #: languages/vue.php:2075
4921
  msgid "Wide-Layout Options"
4922
  msgstr ""
4923
 
4926
  msgstr ""
4927
 
4928
  #: languages/gutenberg.php:113
4929
+ #: languages/vue.php:2078
4930
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4931
  msgstr ""
4932
 
4933
  #: languages/gutenberg.php:116
4934
+ #: languages/vue.php:2099
4935
  msgid "Post Count"
4936
  msgstr ""
4937
 
4940
  msgstr ""
4941
 
4942
  #: languages/gutenberg.php:122
4943
+ #: languages/vue.php:2081
4944
  msgid "Display Options"
4945
  msgstr ""
4946
 
4953
  msgstr ""
4954
 
4955
  #: languages/gutenberg.php:131
4956
+ #: languages/vue.php:1098
4957
  msgid "Widget Title"
4958
  msgstr ""
4959
 
4962
  msgstr ""
4963
 
4964
  #: languages/gutenberg.php:137
4965
+ #: languages/vue.php:2087
4966
  msgid "Display Author"
4967
  msgstr ""
4968
 
4969
  #: languages/gutenberg.php:140
4970
+ #: languages/vue.php:2090
4971
  msgid "Display Date"
4972
  msgstr ""
4973
 
4974
  #: languages/gutenberg.php:143
4975
+ #: languages/vue.php:2093
4976
  msgid "Display Comments"
4977
  msgstr ""
4978
 
5193
  msgstr ""
5194
 
5195
  #: languages/gutenberg.php:312
5196
+ #: languages/vue.php:2143
5197
  msgid "Headline Analyzer"
5198
  msgstr ""
5199
 
5213
  msgid "2"
5214
  msgstr ""
5215
 
5216
+ #: languages/vue.php:14
5217
  msgid "Error"
5218
  msgstr ""
5219
 
5220
+ #: languages/vue.php:17
5221
  msgid "Please try again."
5222
  msgstr ""
5223
 
5224
+ #: languages/vue.php:20
5225
  msgid "Today"
5226
  msgstr ""
5227
 
5228
+ #: languages/vue.php:23
5229
  msgid "Yesterday"
5230
  msgstr ""
5231
 
5232
+ #: languages/vue.php:26
5233
  msgid "Last Week"
5234
  msgstr ""
5235
 
5236
+ #: languages/vue.php:29
5237
  msgid "Last Month"
5238
  msgstr ""
5239
 
5240
+ #: languages/vue.php:32
5241
  msgid "Last 7 days"
5242
  msgstr ""
5243
 
5244
+ #: languages/vue.php:35
5245
  msgid "Last 30 days"
5246
  msgstr ""
5247
 
5248
+ #: languages/vue.php:38
5249
  msgid "Loading Settings"
5250
  msgstr ""
5251
 
5252
+ #: languages/vue.php:42
5253
  msgid "Please wait..."
5254
  msgstr ""
5255
 
5256
+ #: languages/vue.php:45
5257
  msgid "Saving Changes..."
5258
  msgstr ""
5259
 
5260
+ #: languages/vue.php:48
5261
  msgid "Settings Updated"
5262
  msgstr ""
5263
 
5264
  #. Translators: Add a link to the onboarding wizard.
5265
+ #: languages/vue.php:52
5266
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5267
  msgstr ""
5268
 
5269
+ #: languages/vue.php:55
5270
  msgid "Could Not Save Changes"
5271
  msgstr ""
5272
 
5273
+ #: languages/vue.php:58
5274
  msgid "Loading new report data"
5275
  msgstr ""
5276
 
5277
  #. Translators: Adds an arrow icon.
5278
+ #: languages/vue.php:62
5279
  msgid "Continue %s"
5280
  msgstr ""
5281
 
5282
+ #: languages/vue.php:65
5283
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5284
  msgstr ""
5285
 
5286
+ #: languages/vue.php:68
5287
  msgid "Stop guessing about what content your visitors are interested in. ExactMetrics Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
5288
  msgstr ""
5289
 
5290
+ #: languages/vue.php:71
5291
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5292
  msgstr ""
5293
 
5294
+ #: languages/vue.php:75
5295
  msgid "Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions."
5296
  msgstr ""
5297
 
5298
+ #: languages/vue.php:78
5299
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5300
  msgstr ""
5301
 
5302
+ #: languages/vue.php:81
5303
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
5304
  msgstr ""
5305
 
5306
+ #: languages/vue.php:84
5307
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5308
  msgstr ""
5309
 
5310
+ #: languages/vue.php:87
5311
  msgid "Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
5312
  msgstr ""
5313
 
5314
+ #: languages/vue.php:91
5315
  msgid "Unlock the Forms Report and Improve Conversions"
5316
  msgstr ""
5317
 
5318
+ #: languages/vue.php:95
5319
  msgid "Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data."
5320
  msgstr ""
5321
 
5322
+ #: languages/vue.php:98
5323
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5324
  msgstr ""
5325
 
5326
+ #: languages/vue.php:101
5327
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5328
  msgstr ""
5329
 
5330
+ #: languages/vue.php:104
5331
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5332
  msgstr ""
5333
 
5334
+ #: languages/vue.php:107
5335
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it."
5336
  msgstr ""
5337
 
5338
+ #: languages/vue.php:110
5339
  msgid "Loading settings"
5340
  msgstr ""
5341
 
5342
+ #: languages/vue.php:113
5343
  msgid "Success! "
5344
  msgstr ""
5345
 
5346
+ #: languages/vue.php:116
5347
  msgid "You're now using ExactMetrics Pro with all the features."
5348
  msgstr ""
5349
 
5350
  #. Translators: Placeholder gets replaced with an arrow icon.
5351
+ #: languages/vue.php:120
5352
  msgid "Get Started %s"
5353
  msgstr ""
5354
 
5355
  #. Translators: Current PHP version and recommended PHP version.
5356
+ #: languages/vue.php:124
5357
  msgid "ExactMetrics 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."
5358
  msgstr ""
5359
 
5360
  #. Translators: Current WordPress version.
5361
+ #: languages/vue.php:128
5362
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics 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."
5363
  msgstr ""
5364
 
5365
+ #: languages/vue.php:131
5366
  msgid "Yikes! PHP Update Required"
5367
  msgstr ""
5368
 
5369
  #. Translators: Current PHP version and recommended PHP version.
5370
+ #: languages/vue.php:135
5371
  msgid "ExactMetrics 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."
5372
  msgstr ""
5373
 
5374
+ #: languages/vue.php:138
5375
  msgid "Learn more about updating PHP"
5376
  msgstr ""
5377
 
5378
+ #: languages/vue.php:141
5379
  msgid "Yikes! WordPress Update Required"
5380
  msgstr ""
5381
 
5382
  #. Translators: Current WordPress version.
5383
+ #: languages/vue.php:145
5384
  msgid "ExactMetrics 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."
5385
  msgstr ""
5386
 
5387
+ #: languages/vue.php:148
5388
  msgid "Learn more about updating WordPress"
5389
  msgstr ""
5390
 
5391
  #. Translators: Makes text bold.
5392
+ #: languages/vue.php:153
5393
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5394
  msgstr ""
5395
 
5396
  #. Translators: Makes text bold.
5397
+ #: languages/vue.php:158
5398
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5399
  msgstr ""
5400
 
5401
  #. Translators: Makes text bold.
5402
+ #: languages/vue.php:163
5403
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5404
  msgstr ""
5405
 
5406
  #. Translators: Makes text bold.
5407
+ #: languages/vue.php:167
5408
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5409
  msgstr ""
5410
 
5411
  #. Translators: Makes text bold.
5412
+ #: languages/vue.php:172
5413
  msgid "%1$sPage Level Analytics%2$s - Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
5414
  msgstr ""
5415
 
5416
  #. Translators: Makes text bold.
5417
+ #: languages/vue.php:177
5418
  msgid "%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
5419
  msgstr ""
5420
 
5421
  #. Translators: Makes text bold.
5422
+ #: languages/vue.php:182
5423
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5424
  msgstr ""
5425
 
5426
  #. Translators: Makes text bold.
5427
+ #: languages/vue.php:186
5428
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5429
  msgstr ""
5430
 
5431
  #. Translators: Adds link to the features page.
5432
+ #: languages/vue.php:191
5433
  msgid "%1$sSee All Features%2$s"
5434
  msgstr ""
5435
 
5436
+ #: languages/vue.php:195
5437
  msgid "Pro Plan"
5438
  msgstr ""
5439
 
5440
+ #: languages/vue.php:199
5441
  msgid "per year"
5442
  msgstr ""
5443
 
5444
+ #: languages/vue.php:205
5445
  msgid "Upgrade to ExactMetrics Pro Now"
5446
  msgstr ""
5447
 
5448
+ #: languages/vue.php:209
5449
  msgid "This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!"
5450
  msgstr ""
5451
 
5452
+ #: languages/vue.php:213
5453
  msgid "Daniel Monaghan - Experienced"
5454
  msgstr ""
5455
 
5456
+ #: languages/vue.php:217
5457
  msgid "Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it."
5458
  msgstr ""
5459
 
5460
+ #: languages/vue.php:221
5461
  msgid "Naomi Spirit - From This Day"
5462
  msgstr ""
5463
 
5464
+ #: languages/vue.php:225
5465
  msgid "Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!"
5466
  msgstr ""
5467
 
5468
+ #: languages/vue.php:229
5469
  msgid "Julie Dupuis - Faraway Land Travel"
5470
  msgstr ""
5471
 
5472
+ #: languages/vue.php:233
5473
  msgid "Guides and Documentation:"
5474
  msgstr ""
5475
 
5476
+ #: languages/vue.php:239
5477
  msgid "Upgrade to PRO"
5478
  msgstr ""
5479
 
5480
+ #: languages/vue.php:242
5481
  msgid "eCommerce Tracking"
5482
  msgstr ""
5483
 
5484
+ #: languages/vue.php:245
5485
  msgid "Custom Dimensions"
5486
  msgstr ""
5487
 
5505
  msgid "Real Time Report"
5506
  msgstr ""
5507
 
5508
+ #: languages/vue.php:269
5509
  msgid "Google Optimize"
5510
  msgstr ""
5511
 
5512
+ #: languages/vue.php:278
5513
  msgid "Custom Date Ranges"
5514
  msgstr ""
5515
 
5516
+ #: languages/vue.php:282
5517
  msgid "Getting Started with ExactMetrics"
5518
  msgstr ""
5519
 
5520
+ #: languages/vue.php:286
5521
  msgid "ExactMetrics 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."
5522
  msgstr ""
5523
 
5524
+ #: languages/vue.php:290
5525
  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."
5526
  msgstr ""
5527
 
5528
+ #: languages/vue.php:294
5529
  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!."
5530
  msgstr ""
5531
 
5532
+ #: languages/vue.php:298
5533
  msgid "Launch the wizard!"
5534
  msgstr ""
5535
 
5536
+ #: languages/vue.php:302
5537
  msgid "Welcome to"
5538
  msgstr ""
5539
 
5540
  #. Translators: Adds a line break.
5541
+ #: languages/vue.php:307
5542
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5543
  msgstr ""
5544
 
5545
  #. Translators: Makes text bold.
5546
+ #: languages/vue.php:312
5547
  msgid "%1$sExactMetrics%2$s 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."
5548
  msgstr ""
5549
 
5550
+ #: languages/vue.php:316
5551
  msgid "ExactMetrics Features & Addons"
5552
  msgstr ""
5553
 
5554
+ #: languages/vue.php:320
5555
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5556
  msgstr ""
5557
 
5558
+ #: languages/vue.php:326
5559
  msgid "Getting Started"
5560
  msgstr ""
5561
 
5562
+ #: languages/vue.php:329
5563
  msgid "Lite vs Pro"
5564
  msgstr ""
5565
 
5566
+ #: languages/vue.php:332
5567
  msgid "Import Export"
5568
  msgstr ""
5569
 
5570
+ #: languages/vue.php:335
5571
  msgid "PrettyLinks Integration"
5572
  msgstr ""
5573
 
5574
+ #: languages/vue.php:341
5575
  msgid "Popular Posts Widget"
5576
  msgstr ""
5577
 
5578
+ #: languages/vue.php:344
5579
  msgid "Popular Products"
5580
  msgstr ""
5581
 
5582
+ #: languages/vue.php:355
5583
  msgid "Engagement"
5584
  msgstr ""
5585
 
5586
+ #: languages/vue.php:364
5587
  msgid "Publisher"
5588
  msgstr ""
5589
 
5590
+ #: languages/vue.php:369
5591
  msgid "Conversions"
5592
  msgstr ""
5593
 
5594
+ #: languages/vue.php:373
5595
  msgid "Advanced"
5596
  msgstr ""
5597
 
5598
+ #: languages/vue.php:376
5599
  msgid "URL Builder"
5600
  msgstr ""
5601
 
5602
+ #: languages/vue.php:385
5603
  msgid "Dimensions Report"
5604
  msgstr ""
5605
 
5606
+ #: languages/vue.php:391
5607
  msgid "Real-Time"
5608
  msgstr ""
5609
 
5610
+ #: languages/vue.php:394
5611
  msgid "Exit Setup"
5612
  msgstr ""
5613
 
5614
+ #: languages/vue.php:397
5615
  msgid "Go back"
5616
  msgstr ""
5617
 
5618
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
5619
+ #: languages/vue.php:401
5620
  msgid "Step %1$s of %2$s"
5621
  msgstr ""
5622
 
5623
+ #: languages/vue.php:416
5624
  msgid "You must connect with ExactMetrics before you can view reports."
5625
  msgstr ""
5626
 
5627
+ #: languages/vue.php:419
5628
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5629
  msgstr ""
5630
 
5631
+ #: languages/vue.php:422
5632
  msgid "Launch Setup Wizard"
5633
  msgstr ""
5634
 
5635
+ #: languages/vue.php:425
5636
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5637
  msgstr ""
5638
 
5639
+ #: languages/vue.php:431
5640
  msgid "Inbox"
5641
  msgstr ""
5642
 
5643
+ #: languages/vue.php:434
5644
  msgid "Back to Inbox"
5645
  msgstr ""
5646
 
5647
+ #: languages/vue.php:437
5648
  msgid "View Dismissed"
5649
  msgstr ""
5650
 
5651
+ #: languages/vue.php:440
5652
  msgid "Notifications"
5653
  msgstr ""
5654
 
5655
+ #: languages/vue.php:443
5656
  msgid "Dismiss All"
5657
  msgstr ""
5658
 
5659
+ #: languages/vue.php:446
5660
  msgid "Dismissed"
5661
  msgstr ""
5662
 
5663
+ #: languages/vue.php:449
5664
  msgid "No Notifications"
5665
  msgstr ""
5666
 
5667
+ #: languages/vue.php:452
5668
+ #: languages/vue.php:631
5669
  msgid "ExactMetrics Addons"
5670
  msgstr ""
5671
 
5672
+ #: languages/vue.php:455
5673
  msgid "Search Addons"
5674
  msgstr ""
5675
 
5676
+ #: languages/vue.php:458
5677
  msgid "Save Changes"
5678
  msgstr ""
5679
 
5680
+ #: languages/vue.php:461
5681
  msgid "ExactMetrics encountered an error loading your report data"
5682
  msgstr ""
5683
 
5684
+ #: languages/vue.php:464
5685
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5686
  msgstr ""
5687
 
5688
+ #: languages/vue.php:467
5689
+ #: languages/vue.php:2738
5690
  msgid "Reconnect ExactMetrics"
5691
  msgstr ""
5692
 
5693
+ #: languages/vue.php:470
5694
  msgid "Re-Authenticating"
5695
  msgstr ""
5696
 
5697
+ #: languages/vue.php:473
5698
  msgid "Ok"
5699
  msgstr ""
5700
 
5701
+ #: languages/vue.php:476
5702
  msgid "See Quick Links"
5703
  msgstr ""
5704
 
5705
+ #: languages/vue.php:479
5706
  msgid "Suggest a Feature"
5707
  msgstr ""
5708
 
5709
+ #: languages/vue.php:482
5710
  msgid "Join Our Community"
5711
  msgstr ""
5712
 
5713
+ #: languages/vue.php:485
5714
  msgid "Support & Docs"
5715
  msgstr ""
5716
 
5717
+ #: languages/vue.php:488
5718
  msgid "Upgrade to Pro &#187;"
5719
  msgstr ""
5720
 
5721
+ #: languages/vue.php:491
5722
  msgid "One-click Complete eCommerce tracking"
5723
  msgstr ""
5724
 
5725
+ #: languages/vue.php:494
5726
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
5727
  msgstr ""
5728
 
5729
+ #: languages/vue.php:497
5730
  msgid "Forms Tracking"
5731
  msgstr ""
5732
 
5733
+ #: languages/vue.php:500
5734
  msgid "One-click Form Events Tracking"
5735
  msgstr ""
5736
 
5737
+ #: languages/vue.php:503
5738
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
5739
  msgstr ""
5740
 
5741
+ #: languages/vue.php:506
5742
  msgid "WordPress Admin Area Reports"
5743
  msgstr ""
5744
 
5745
+ #: languages/vue.php:509
5746
  msgid "Standard Reports"
5747
  msgstr ""
5748
 
5749
+ #: languages/vue.php:512
5750
  msgid "Overview Reports for the last 30 days."
5751
  msgstr ""
5752
 
5753
+ #: languages/vue.php:515
5754
  msgid "Advanced Reports"
5755
  msgstr ""
5756
 
5757
+ #: languages/vue.php:518
5758
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
5759
  msgstr ""
5760
 
5761
+ #: languages/vue.php:521
5762
  msgid "Dashboard Widget"
5763
  msgstr ""
5764
 
5765
+ #: languages/vue.php:524
5766
  msgid "Basic Widget"
5767
  msgstr ""
5768
 
5769
+ #: languages/vue.php:527
5770
  msgid "Overview Report Synopsis"
5771
  msgstr ""
5772
 
5773
+ #: languages/vue.php:530
5774
  msgid "Advanced Dashboard Widget"
5775
  msgstr ""
5776
 
5777
+ #: languages/vue.php:533
5778
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
5779
  msgstr ""
5780
 
5781
+ #: languages/vue.php:536
5782
  msgid "Publisher Reports"
5783
  msgstr ""
5784
 
5785
+ #: languages/vue.php:539
5786
  msgid "Advanced Publisher Reports & Tracking"
5787
  msgstr ""
5788
 
5789
+ #: languages/vue.php:542
5790
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
5791
  msgstr ""
5792
 
5793
+ #: languages/vue.php:546
5794
  msgid "Not Available"
5795
  msgstr ""
5796
 
5797
+ #: languages/vue.php:549
5798
  msgid "Complete Custom Dimensions Tracking"
5799
  msgstr ""
5800
 
5801
+ #: languages/vue.php:552
5802
  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"
5803
  msgstr ""
5804
 
5805
+ #: languages/vue.php:558
5806
  msgid "Limited Support"
5807
  msgstr ""
5808
 
5809
+ #: languages/vue.php:561
5810
  msgid "Priority Support"
5811
  msgstr ""
5812
 
5813
+ #: languages/vue.php:564
5814
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
5815
  msgstr ""
5816
 
5817
+ #: languages/vue.php:567
5818
  msgid "Feature"
5819
  msgstr ""
5820
 
5821
+ #: languages/vue.php:570
5822
  msgid "Lite"
5823
  msgstr ""
5824
 
5825
+ #: languages/vue.php:573
5826
  msgid "Pro"
5827
  msgstr ""
5828
 
5829
+ #: languages/vue.php:576
5830
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
5831
  msgstr ""
5832
 
5833
+ #: languages/vue.php:579
5834
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
5835
  msgstr ""
5836
 
5837
+ #: languages/vue.php:586
5838
  msgid "Universal Tracking"
5839
  msgstr ""
5840
 
5841
+ #: languages/vue.php:589
5842
  msgid "Included"
5843
  msgstr ""
5844
 
5845
+ #: languages/vue.php:592
5846
  msgid "Custom Google Analytics Link Tracking"
5847
  msgstr ""
5848
 
5849
+ #: languages/vue.php:595
5850
  msgid "Standard Tracking"
5851
  msgstr ""
5852
 
5853
+ #: languages/vue.php:598
5854
  msgid "Advanced Tracking"
5855
  msgstr ""
5856
 
5857
+ #: languages/vue.php:601
5858
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
5859
  msgstr ""
5860
 
5861
+ #: languages/vue.php:604
5862
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
5863
  msgstr ""
5864
 
5865
+ #: languages/vue.php:607
5866
  msgid "No-Code-Needed Tracking Features"
5867
  msgstr ""
5868
 
5869
+ #: languages/vue.php:610
5870
  msgid "Basic Tracking Options"
5871
  msgstr ""
5872
 
5873
+ #: languages/vue.php:613
5874
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
5875
  msgstr ""
5876
 
5877
+ #: languages/vue.php:616
5878
  msgid "Advanced Tracking Options"
5879
  msgstr ""
5880
 
5881
+ #: languages/vue.php:619
5882
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
5883
  msgstr ""
5884
 
5885
+ #: languages/vue.php:622
5886
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
5887
  msgstr ""
5888
 
5889
+ #: languages/vue.php:625
5890
  msgid "No addons found."
5891
  msgstr ""
5892
 
5893
+ #: languages/vue.php:628
5894
  msgid "Refresh Addons"
5895
  msgstr ""
5896
 
5897
  #. Translators: Adds a line break.
5898
+ #: languages/vue.php:635
5899
  msgid "Upgrade to Pro to unlock addons and other great features."
5900
  msgstr ""
5901
 
5902
+ #: languages/vue.php:638
5903
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
5904
  msgstr ""
5905
 
5906
+ #: languages/vue.php:641
5907
  msgid "Refreshing Addons"
5908
  msgstr ""
5909
 
5910
+ #: languages/vue.php:644
5911
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
5912
  msgstr ""
5913
 
5914
+ #: languages/vue.php:647
5915
  msgid "Ready to take your website to the next level? ExactMetrics gives you the accurate insights you need to make data-driven decisions to grow your traffic and conversions faster than ever before. Now you can easily enable advanced tracking on your website without having to know any code."
5916
  msgstr ""
5917
 
5918
+ #: languages/vue.php:650
5919
  msgid "The ExactMetrics Team"
5920
  msgstr ""
5921
 
5922
  #. Translators: Placeholders make the text green.
5923
+ #: languages/vue.php:654
5924
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
5925
  msgstr ""
5926
 
5927
+ #: languages/vue.php:657
5928
  msgid "How to Connect to Google Analytics"
5929
  msgstr ""
5930
 
5931
+ #: languages/vue.php:660
5932
  msgid "After you install ExactMetrics, you’ll need to connect your WordPress site with your Google Analytics account. ExactMetrics makes the process easy, with no coding required."
5933
  msgstr ""
5934
 
5935
+ #: languages/vue.php:663
5936
  msgid "Guide and Checklist for Advanced Insights"
5937
  msgstr ""
5938
 
5939
+ #: languages/vue.php:666
5940
  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 ExactMetrics’ advanced tracking."
5941
  msgstr ""
5942
 
5943
+ #: languages/vue.php:669
5944
  msgid "GDPR Guide"
5945
  msgstr ""
5946
 
5947
+ #: languages/vue.php:672
5948
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help ExactMetrics users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
5949
  msgstr ""
5950
 
5951
+ #: languages/vue.php:675
5952
  msgid "How to Install and Activate ExactMetrics Addons"
5953
  msgstr ""
5954
 
5955
+ #: languages/vue.php:678
5956
  msgid "The process for installing and activating addons is quick and easy after you install the ExactMetrics plugin. In this guide we’ll walk you through the process, step by step."
5957
  msgstr ""
5958
 
5959
+ #: languages/vue.php:681
5960
  msgid "Enabling eCommerce Tracking and Reports"
5961
  msgstr ""
5962
 
5963
+ #: languages/vue.php:684
5964
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with ExactMetrics? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
5965
  msgstr ""
5966
 
5967
+ #: languages/vue.php:687
5968
  msgid "Read Documentation"
5969
  msgstr ""
5970
 
5971
  #. Translators: Makes the text bold.
5972
+ #: languages/vue.php:691
5973
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
5974
  msgstr ""
5975
 
5976
  #. Translators: Makes the text bold.
5977
+ #: languages/vue.php:695
5978
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
5979
  msgstr ""
5980
 
5981
+ #: languages/vue.php:698
5982
  msgid "ExactMetrics Recommends WPForms"
5983
  msgstr ""
5984
 
5985
+ #: languages/vue.php:701
5986
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
5987
  msgstr ""
5988
 
5989
+ #: languages/vue.php:704
5990
  msgid "Used on over 3,000,000 websites!"
5991
  msgstr ""
5992
 
5993
+ #: languages/vue.php:707
5994
  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!"
5995
  msgstr ""
5996
 
5997
+ #: languages/vue.php:710
5998
  msgid "Skip this Step"
5999
  msgstr ""
6000
 
6001
+ #: languages/vue.php:713
6002
  msgid "Continue & Install WPForms"
6003
  msgstr ""
6004
 
6005
+ #: languages/vue.php:716
6006
  msgid "Installing..."
6007
  msgstr ""
6008
 
6009
+ #: languages/vue.php:719
6010
  msgid "Awesome, You're All Set!"
6011
  msgstr ""
6012
 
6013
+ #: languages/vue.php:722
6014
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6015
  msgstr ""
6016
 
6017
  #. Translators: Make the text bold.
6018
+ #: languages/vue.php:726
6019
  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."
6020
  msgstr ""
6021
 
6022
  #. Translators: Add link to blog.
6023
+ #: languages/vue.php:730
6024
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6025
  msgstr ""
6026
 
6027
+ #: languages/vue.php:733
6028
  msgid "Finish Setup & Exit Wizard"
6029
  msgstr ""
6030
 
6031
+ #: languages/vue.php:736
6032
  msgid "Google Analytics"
6033
  msgstr ""
6034
 
6035
+ #: languages/vue.php:739
6036
  msgid "Subscribe"
6037
  msgstr ""
6038
 
6039
+ #: languages/vue.php:742
6040
  msgid "Checking your website..."
6041
  msgstr ""
6042
 
6043
  #. Translators: Placeholders make the text highlighted.
6044
+ #: languages/vue.php:746
6045
  msgid "%1$sNeed%2$s to Grow FASTER??"
6046
  msgstr ""
6047
 
6048
+ #: languages/vue.php:749
6049
  msgid "Get additional, actionable insights by going Pro."
6050
  msgstr ""
6051
 
6052
+ #: languages/vue.php:752
6053
  msgid "Skip"
6054
  msgstr ""
6055
 
6056
+ #: languages/vue.php:755
6057
  msgid "See All Features"
6058
  msgstr ""
6059
 
6060
+ #: languages/vue.php:758
6061
  msgid "Upgrade to Pro to get the complete ExactMetrics experience including 1 click tracking integrations for your favorite WordPress plugins and insightful reports backed by our legendary support team."
6062
  msgstr ""
6063
 
6064
+ #: languages/vue.php:761
6065
  msgid "Our Pro plan includes:"
6066
  msgstr ""
6067
 
6068
+ #: languages/vue.php:764
6069
  msgid "Welcome to ExactMetrics!"
6070
  msgstr ""
6071
 
6072
+ #: languages/vue.php:767
6073
  msgid "Let's get you set up."
6074
  msgstr ""
6075
 
6076
+ #: languages/vue.php:770
6077
  msgid "Save and Continue"
6078
  msgstr ""
6079
 
6080
+ #: languages/vue.php:773
6081
  msgid "Which category best describes your website?"
6082
  msgstr ""
6083
 
6084
+ #: languages/vue.php:776
6085
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6086
  msgstr ""
6087
 
6088
+ #: languages/vue.php:779
6089
  msgid "Business Website"
6090
  msgstr ""
6091
 
6092
  #. Translators: Make text bold.
6093
+ #: languages/vue.php:783
6094
  msgid "Publisher %1$s(Blog)%2$s"
6095
  msgstr ""
6096
 
6097
+ #: languages/vue.php:787
6098
  msgid "Ecommerce"
6099
  msgstr ""
6100
 
6101
+ #: languages/vue.php:790
6102
  msgid "Connect ExactMetrics to Your Website"
6103
  msgstr ""
6104
 
6105
+ #: languages/vue.php:793
6106
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6107
  msgstr ""
6108
 
6109
+ #: languages/vue.php:796
6110
  msgid "Connect Google Analytics + WordPress"
6111
  msgstr ""
6112
 
6113
+ #: languages/vue.php:799
6114
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6115
  msgstr ""
6116
 
6117
+ #: languages/vue.php:802
6118
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6119
  msgstr ""
6120
 
6121
+ #: languages/vue.php:805
6122
  msgid "Manually enter your UA code"
6123
  msgstr ""
6124
 
6125
+ #: languages/vue.php:808
6126
  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."
6127
  msgstr ""
6128
 
6129
+ #: languages/vue.php:811
6130
  msgid "UA code can't be empty"
6131
  msgstr ""
6132
 
6133
+ #: languages/vue.php:814
6134
  msgid "Saving UA code..."
6135
  msgstr ""
6136
 
6137
+ #: languages/vue.php:817
6138
  msgid "Recommended Addons"
6139
  msgstr ""
6140
 
6141
  #. Translators: Add a link to upgrade and make the text green.
6142
+ #: languages/vue.php:821
6143
  msgid "To unlock more features consider %1$supgrading to PRO%2$s.%3$s As a valued ExactMetrics Lite user you %4$sreceive 50%% off%5$s, automatically applied at checkout!"
6144
  msgstr ""
6145
 
6146
+ #: languages/vue.php:824
6147
  msgid "Save and continue"
6148
  msgstr ""
6149
 
6150
+ #: languages/vue.php:827
6151
  msgid "Upgrade to PRO Now"
6152
  msgstr ""
6153
 
6154
+ #: languages/vue.php:830
6155
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
6156
  msgstr ""
6157
 
6158
+ #: languages/vue.php:833
6159
  msgid "See All Your Important Store Metrics in One Place."
6160
  msgstr ""
6161
 
6162
+ #: languages/vue.php:836
6163
  msgid "... and more:"
6164
  msgstr ""
6165
 
6166
+ #: languages/vue.php:839
6167
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
6168
  msgstr ""
6169
 
6170
+ #: languages/vue.php:842
6171
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
6172
  msgstr ""
6173
 
6174
+ #: languages/vue.php:845
6175
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
6176
  msgstr ""
6177
 
6178
+ #: languages/vue.php:848
6179
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
6180
  msgstr ""
6181
 
6182
+ #: languages/vue.php:851
6183
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
6184
  msgstr ""
6185
 
6186
+ #: languages/vue.php:854
6187
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
6188
  msgstr ""
6189
 
6190
+ #: languages/vue.php:857
6191
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
6192
  msgstr ""
6193
 
6194
+ #: languages/vue.php:860
6195
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
6196
  msgstr ""
6197
 
6198
+ #: languages/vue.php:863
6199
  msgid "Recommended Settings"
6200
  msgstr ""
6201
 
6202
+ #: languages/vue.php:866
6203
  msgid "ExactMetrics recommends the following settings based on your configuration."
6204
  msgstr ""
6205
 
6206
+ #: languages/vue.php:869
6207
  msgid "Events Tracking"
6208
  msgstr ""
6209
 
6210
+ #: languages/vue.php:872
6211
  msgid "Must have for all click tracking on site."
6212
  msgstr ""
6213
 
6214
+ #: languages/vue.php:875
6215
  msgid "ExactMetrics 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."
6216
  msgstr ""
6217
 
6218
+ #: languages/vue.php:878
6219
  msgid "Enhanced Link Attribution"
6220
  msgstr ""
6221
 
6222
+ #: languages/vue.php:881
6223
  msgid "Improves the accuracy of your In-Page Analytics."
6224
  msgstr ""
6225
 
6226
+ #: languages/vue.php:884
6227
  msgid "ExactMetrics 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."
6228
  msgstr ""
6229
 
6230
+ #: languages/vue.php:887
6231
  msgid "Install Updates Automatically"
6232
  msgstr ""
6233
 
6234
+ #: languages/vue.php:890
6235
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6236
  msgstr ""
6237
 
6238
+ #: languages/vue.php:893
6239
  msgid "To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
6240
  msgstr ""
6241
 
6242
+ #: languages/vue.php:896
6243
  msgid "File Download Tracking"
6244
  msgstr ""
6245
 
6246
+ #: languages/vue.php:899
6247
  msgid "Helps you see file downloads data."
6248
  msgstr ""
6249
 
6250
+ #: languages/vue.php:902
6251
  msgid "ExactMetrics 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? ExactMetrics makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
6252
  msgstr ""
6253
 
6254
  #. Translators: Example path (/go/).
6255
+ #: languages/vue.php:906
6256
  msgid "Path (example: %s)"
6257
  msgstr ""
6258
 
6259
+ #: languages/vue.php:909
6260
  msgid "Path has to start with a / and have no spaces"
6261
  msgstr ""
6262
 
6263
  #. Translators: Example label (aff).
6264
+ #: languages/vue.php:913
6265
  msgid "Label (example: %s)"
6266
  msgstr ""
6267
 
6268
+ #: languages/vue.php:916
6269
  msgid "Label can't contain any spaces"
6270
  msgstr ""
6271
 
6272
+ #: languages/vue.php:919
6273
  msgid "Helps you increase affiliate revenue."
6274
  msgstr ""
6275
 
6276
+ #: languages/vue.php:922
6277
  msgid "ExactMetrics 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."
6278
  msgstr ""
6279
 
6280
+ #: languages/vue.php:925
6281
  msgid "Affiliate Link Tracking"
6282
  msgstr ""
6283
 
6284
+ #: languages/vue.php:928
6285
  msgid "Who Can See Reports"
6286
  msgstr ""
6287
 
6288
+ #: languages/vue.php:931
6289
  msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
6290
  msgstr ""
6291
 
6292
+ #: languages/vue.php:935
6293
  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."
6294
  msgstr ""
6295
 
6296
+ #: languages/vue.php:938
6297
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6298
  msgstr ""
6299
 
6300
+ #: languages/vue.php:941
6301
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6302
  msgstr ""
6303
 
6304
+ #: languages/vue.php:945
6305
  msgid "+ Add Role"
6306
  msgstr ""
6307
 
6308
+ #: languages/vue.php:948
6309
  msgid "Welcome to the all-new ExactMetrics"
6310
  msgstr ""
6311
 
6312
+ #: languages/vue.php:951
6313
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
6314
  msgstr ""
6315
 
6316
+ #: languages/vue.php:954
6317
  msgid "The New & Improved ExactMetrics includes:"
6318
  msgstr ""
6319
 
6320
+ #: languages/vue.php:957
6321
  msgid "All-New Design"
6322
  msgstr ""
6323
 
6324
+ #: languages/vue.php:960
6325
  msgid "Better Reporting"
6326
  msgstr ""
6327
 
6328
+ #: languages/vue.php:963
6329
  msgid "Better Tracking"
6330
  msgstr ""
6331
 
6332
+ #: languages/vue.php:966
6333
  msgid "Better Support"
6334
  msgstr ""
6335
 
6336
+ #: languages/vue.php:969
6337
  msgid "Continue"
6338
  msgstr ""
6339
 
6340
+ #: languages/vue.php:972
6341
  msgid "Your settings have been automatically transferred."
6342
  msgstr ""
6343
 
6344
+ #: languages/vue.php:975
6345
  msgid "On the next step, you will be asked to re-authenticate with Google Analytics. Please %1$ssee our detailed post%2$s to learn why we need your help. Don't worry, your tracking will continue to work as-is even if you don't do this, but re-auth is required to see analytics reports inside WordPress dashboard."
6346
  msgstr ""
6347
 
6348
+ #: languages/vue.php:978
6349
  msgid "Caching"
6350
  msgstr ""
6351
 
6352
+ #: languages/vue.php:981
6353
  msgid "Enable Data Caching"
6354
  msgstr ""
6355
 
6356
+ #: languages/vue.php:984
6357
  msgid "Refresh Cache Every"
6358
  msgstr ""
6359
 
6360
+ #: languages/vue.php:987
6361
  msgid "Choose how often to refresh the cache."
6362
  msgstr ""
6363
 
6364
+ #: languages/vue.php:990
6365
  msgid "Enable Ajaxify"
6366
  msgstr ""
6367
 
6368
+ #: languages/vue.php:993
6369
  msgid "Ajaxify Widget"
6370
  msgstr ""
6371
 
6372
+ #: languages/vue.php:996
6373
  msgid "Use to bypass page caching."
6374
  msgstr ""
6375
 
6376
+ #: languages/vue.php:999
6377
  msgid "Empty Cache"
6378
  msgstr ""
6379
 
6380
+ #: languages/vue.php:1002
6381
  msgid "Click to manually wipe the cache right now."
6382
  msgstr ""
6383
 
6384
+ #: languages/vue.php:1005
6385
  msgid "Popular posts cache emptied"
6386
  msgstr ""
6387
 
6388
+ #: languages/vue.php:1008
6389
  msgid "Error emptying the popular posts cache. Please try again."
6390
  msgstr ""
6391
 
6392
+ #: languages/vue.php:1011
6393
  msgid "Choose Theme"
6394
  msgstr ""
6395
 
6396
+ #: languages/vue.php:1014
6397
  msgid "Behavior"
6398
  msgstr ""
6399
 
6400
+ #: languages/vue.php:1017
6401
  msgid "Widget Styling"
6402
  msgstr ""
6403
 
6404
+ #: languages/vue.php:1020
6405
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
6406
  msgstr ""
6407
 
6408
+ #: languages/vue.php:1023
6409
  msgid "Sort By"
6410
  msgstr ""
6411
 
6412
+ #: languages/vue.php:1026
6413
  msgid "Choose how you'd like the widget to determine your popular posts."
6414
  msgstr ""
6415
 
6416
+ #: languages/vue.php:1029
6417
  msgid "Placement"
6418
  msgstr ""
6419
 
6420
+ #: languages/vue.php:1032
6421
  msgid "Choose how you'd like to place the widget."
6422
  msgstr ""
6423
 
6424
+ #: languages/vue.php:1035
6425
  msgid "Insert After"
6426
  msgstr ""
6427
 
6428
+ #: languages/vue.php:1038
6429
  msgid "Choose where in the post body the widget will be placed."
6430
  msgstr ""
6431
 
6432
+ #: languages/vue.php:1041
6433
  msgid "Include in Post Types"
6434
  msgstr ""
6435
 
6436
+ #: languages/vue.php:1044
6437
  msgid "Exclude from specific posts"
6438
  msgstr ""
6439
 
6440
  #. Translators: Placeholders make the text bold.
6441
+ #: languages/vue.php:1048
6442
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
6443
  msgstr ""
6444
 
6445
  #. Translators: Placeholders make the text bold.
6446
+ #: languages/vue.php:1052
6447
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
6448
  msgstr ""
6449
 
6450
+ #: languages/vue.php:1055
6451
  msgid "Customize Design"
6452
  msgstr ""
6453
 
6454
+ #: languages/vue.php:1058
6455
  msgid "Loading Themes"
6456
  msgstr ""
6457
 
6458
+ #: languages/vue.php:1061
6459
  msgid "words"
6460
  msgstr ""
6461
 
6462
+ #: languages/vue.php:1064
6463
  msgid "Please select at least one post to display."
6464
  msgstr ""
6465
 
6466
  #. Translators: placeholders make text small.
6467
+ #: languages/vue.php:1068
6468
  msgid "Default Styles %1$s- As seen above.%2$s"
6469
  msgstr ""
6470
 
6471
  #. Translators: placeholders make text small.
6472
+ #: languages/vue.php:1072
6473
  msgid "No Styles %1$s- Use your own CSS.%2$s"
6474
  msgstr ""
6475
 
6476
  #. Translators: placeholders make text small.
6477
+ #: languages/vue.php:1076
6478
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
6479
  msgstr ""
6480
 
6481
  #. Translators: placeholders make text small.
6482
+ #: languages/vue.php:1080
6483
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
6484
  msgstr ""
6485
 
6486
  #. Translators: placeholders make text small.
6487
+ #: languages/vue.php:1084
6488
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
6489
  msgstr ""
6490
 
6491
  #. Translators: placeholders make text small.
6492
+ #: languages/vue.php:1088
6493
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
6494
  msgstr ""
6495
 
6496
  #. Translators: placeholders make text small.
6497
+ #: languages/vue.php:1092
6498
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
6499
  msgstr ""
6500
 
6501
+ #: languages/vue.php:1095
6502
  msgid "Display Title"
6503
  msgstr ""
6504
 
6505
+ #: languages/vue.php:1101
6506
  msgid "Title your widget and set it’s display preferences."
6507
  msgstr ""
6508
 
6509
+ #: languages/vue.php:1104
6510
  msgid "File imported"
6511
  msgstr ""
6512
 
6513
+ #: languages/vue.php:1107
6514
  msgid "Settings successfully updated!"
6515
  msgstr ""
6516
 
6517
+ #: languages/vue.php:1110
6518
  msgid "Error importing settings"
6519
  msgstr ""
6520
 
6521
+ #: languages/vue.php:1113
6522
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
6523
  msgstr ""
6524
 
6525
+ #: languages/vue.php:1116
6526
  msgid "Import/Export"
6527
  msgstr ""
6528
 
6529
+ #: languages/vue.php:1119
6530
  msgid "Import"
6531
  msgstr ""
6532
 
6533
+ #: languages/vue.php:1122
6534
  msgid "Import settings from another ExactMetrics website."
6535
  msgstr ""
6536
 
6537
+ #: languages/vue.php:1125
6538
  msgid "Export"
6539
  msgstr ""
6540
 
6541
+ #: languages/vue.php:1128
6542
  msgid "Export settings to import into another ExactMetrics install."
6543
  msgstr ""
6544
 
6545
+ #: languages/vue.php:1131
6546
  msgid "Import Settings"
6547
  msgstr ""
6548
 
6549
+ #: languages/vue.php:1134
6550
  msgid "Export Settings"
6551
  msgstr ""
6552
 
6553
+ #: languages/vue.php:1137
6554
  msgid "Please choose a file to import"
6555
  msgstr ""
6556
 
6557
+ #: languages/vue.php:1140
6558
  msgid "Use the filepicker below to select the settings export file from another site."
6559
  msgstr ""
6560
 
6561
+ #: languages/vue.php:1143
6562
  msgid "Use the button below to export a file with your ExactMetrics settings."
6563
  msgstr ""
6564
 
6565
+ #: languages/vue.php:1146
6566
  msgid "Choose file"
6567
  msgstr ""
6568
 
6569
+ #: languages/vue.php:1149
6570
  msgid "No file chosen"
6571
  msgstr ""
6572
 
6573
+ #: languages/vue.php:1152
6574
  msgid "Uploading file..."
6575
  msgstr ""
6576
 
6577
  #. Translators: Adds a link to the Google reference.
6578
+ #: languages/vue.php:1156
6579
  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."
6580
  msgstr ""
6581
 
6582
+ #: languages/vue.php:1162
6583
  msgid "Automatic Updates"
6584
  msgstr ""
6585
 
6586
+ #: languages/vue.php:1165
6587
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
6588
  msgstr ""
6589
 
6590
+ #: languages/vue.php:1168
6591
  msgid "Hide Admin Bar Reports"
6592
  msgstr ""
6593
 
6594
  #. Translators: placeholders make text small.
6595
+ #: languages/vue.php:1172
6596
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
6597
  msgstr ""
6598
 
6599
  #. Translators: placeholders make text small.
6600
+ #: languages/vue.php:1176
6601
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
6602
  msgstr ""
6603
 
6604
  #. Translators: placeholders make text small.
6605
+ #: languages/vue.php:1180
6606
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
6607
  msgstr ""
6608
 
6609
  #. Translators: placeholders make text small.
6610
+ #: languages/vue.php:1184
6611
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
6612
  msgstr ""
6613
 
6614
  #. Translators: placeholders make text small.
6615
+ #: languages/vue.php:1188
6616
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
6617
  msgstr ""
6618
 
6619
  #. Translators: placeholders make text small.
6620
+ #: languages/vue.php:1192
6621
  msgid "None %1$s- Manually update everything.%2$s"
6622
  msgstr ""
6623
 
6624
  #. Translators: Adds a link to the general settings tab.
6625
+ #: languages/vue.php:1196
6626
  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."
6627
  msgstr ""
6628
 
6629
+ #: languages/vue.php:1199
6630
  msgid "Permissions"
6631
  msgstr ""
6632
 
6633
+ #: languages/vue.php:1202
6634
  msgid "Email Summaries"
6635
  msgstr ""
6636
 
6637
+ #: languages/vue.php:1205
6638
  msgid "Export PDF Reports"
6639
  msgstr ""
6640
 
6641
+ #: languages/vue.php:1208
6642
  msgid "Allow These User Roles to See Reports"
6643
  msgstr ""
6644
 
6645
+ #: languages/vue.php:1211
6646
  msgid "Users that have at least one of these roles will be able to view the reports."
6647
  msgstr ""
6648
 
6649
+ #: languages/vue.php:1214
6650
  msgid "Allow These User Roles to Save Settings"
6651
  msgstr ""
6652
 
6653
+ #: languages/vue.php:1217
6654
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
6655
  msgstr ""
6656
 
6657
+ #: languages/vue.php:1220
6658
  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."
6659
  msgstr ""
6660
 
6661
+ #: languages/vue.php:1223
6662
  msgid "Exclude These User Roles From Tracking"
6663
  msgstr ""
6664
 
6665
+ #: languages/vue.php:1226
6666
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
6667
  msgstr ""
6668
 
6669
+ #: languages/vue.php:1229
6670
  msgid "Custom code"
6671
  msgstr ""
6672
 
6673
+ #: languages/vue.php:1232
6674
  msgid "License Key"
6675
  msgstr ""
6676
 
6677
  #. Translators: Adds link to the account area to retreive license key.
6678
+ #: languages/vue.php:1236
6679
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
6680
  msgstr ""
6681
 
6682
+ #: languages/vue.php:1239
6683
  msgid "Paste your license key here"
6684
  msgstr ""
6685
 
6686
+ #: languages/vue.php:1242
6687
  msgid "Google Authentication"
6688
  msgstr ""
6689
 
6690
+ #: languages/vue.php:1245
6691
  msgid "Verify"
6692
  msgstr ""
6693
 
6694
+ #: languages/vue.php:1248
6695
  msgid "Setup Wizard"
6696
  msgstr ""
6697
 
6698
+ #: languages/vue.php:1251
6699
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6700
  msgstr ""
6701
 
6702
+ #: languages/vue.php:1254
6703
  msgid "Relaunch Setup Wizard"
6704
  msgstr ""
6705
 
6706
+ #: languages/vue.php:1257
6707
  msgid "Connect ExactMetrics to Start Tracking Your Data"
6708
  msgstr ""
6709
 
6710
+ #: languages/vue.php:1260
6711
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6712
  msgstr ""
6713
 
6714
  #. Translators: Adds link to upgrade.
6715
+ #: languages/vue.php:1264
6716
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6717
  msgstr ""
6718
 
6719
+ #: languages/vue.php:1267
6720
  msgid "Receive 50% off automatically applied at the checkout!"
6721
  msgstr ""
6722
 
6723
+ #: languages/vue.php:1270
6724
  msgid "See all features"
6725
  msgstr ""
6726
 
6727
+ #: languages/vue.php:1273
6728
  msgid "Complete Upgrade"
6729
  msgstr ""
6730
 
6731
+ #: languages/vue.php:1276
6732
  msgid "Upgrade to Pro Version!"
6733
  msgstr ""
6734
 
6735
  #. Translators: Make text bold.
6736
+ #: languages/vue.php:1280
6737
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
6738
  msgstr ""
6739
 
6740
+ #: languages/vue.php:1283
6741
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
6742
  msgstr ""
6743
 
6744
+ #: languages/vue.php:1286
6745
  msgid "Last 30 Days Analytics for "
6746
  msgstr ""
6747
 
6748
+ #: languages/vue.php:1289
6749
  msgid "Your Website"
6750
  msgstr ""
6751
 
6752
+ #: languages/vue.php:1292
6753
  msgid "Sessions"
6754
  msgstr ""
6755
 
6756
+ #: languages/vue.php:1295
6757
  msgid "Pageviews"
6758
  msgstr ""
6759
 
6760
+ #: languages/vue.php:1298
6761
  msgid "Avg. Duration"
6762
  msgstr ""
6763
 
6764
+ #: languages/vue.php:1301
6765
  msgid "Bounce Rate"
6766
  msgstr ""
6767
 
6768
+ #: languages/vue.php:1304
6769
  msgid "More data is available"
6770
  msgstr ""
6771
 
6772
+ #: languages/vue.php:1307
6773
  msgid "Want to see page-specific stats?"
6774
  msgstr ""
6775
 
6776
+ #: languages/vue.php:1310
6777
  msgid "Dismiss"
6778
  msgstr ""
6779
 
6780
  #. Translators: Error status and error text.
6781
+ #: languages/vue.php:1314
6782
  msgid "Can't load settings. Error: %1$s, %2$s"
6783
  msgstr ""
6784
 
6785
+ #: languages/vue.php:1318
6786
  msgid "You appear to be offline."
6787
  msgstr ""
6788
 
6789
  #. Translators: Error status and error text.
6790
+ #: languages/vue.php:1322
6791
  msgid "Can't save settings. Error: %1$s, %2$s"
6792
  msgstr ""
6793
 
6794
+ #: languages/vue.php:1325
6795
  msgid "Network error encountered. Settings not saved."
6796
  msgstr ""
6797
 
6798
  #. Translators: Error status and error text.
6799
+ #: languages/vue.php:1329
6800
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
6801
  msgstr ""
6802
 
6803
+ #: languages/vue.php:1332
6804
  msgid "You appear to be offline. Settings not saved."
6805
  msgstr ""
6806
 
6807
  #. Translators: Error status and error text.
6808
+ #: languages/vue.php:1336
6809
  msgid "Can't load authentication details. Error: %1$s, %2$s"
6810
  msgstr ""
6811
 
6812
  #. Translators: Error status and error text.
6813
+ #: languages/vue.php:1340
6814
  msgid "Can't authenticate. Error: %1$s, %2$s"
6815
  msgstr ""
6816
 
6817
  #. Translators: Error status and error text.
6818
+ #: languages/vue.php:1344
6819
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
6820
  msgstr ""
6821
 
6822
  #. Translators: Error status and error text.
6823
+ #: languages/vue.php:1348
6824
  msgid "Can't verify credentials. Error: %1$s, %2$s"
6825
  msgstr ""
6826
 
6827
+ #: languages/vue.php:1351
6828
  msgid "Proceed"
6829
  msgstr ""
6830
 
6831
+ #: languages/vue.php:1354
6832
  msgid "Connection Information"
6833
  msgstr ""
6834
 
6835
+ #: languages/vue.php:1357
6836
  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."
6837
  msgstr ""
6838
 
6839
+ #: languages/vue.php:1360
6840
  msgid "Hostname"
6841
  msgstr ""
6842
 
6843
+ #: languages/vue.php:1363
6844
  msgid "FTP Username"
6845
  msgstr ""
6846
 
6847
+ #: languages/vue.php:1366
6848
  msgid "FTP Password"
6849
  msgstr ""
6850
 
6851
+ #: languages/vue.php:1369
6852
  msgid "This password will not be stored on the server."
6853
  msgstr ""
6854
 
6855
+ #: languages/vue.php:1372
6856
  msgid "Connection Type"
6857
  msgstr ""
6858
 
6859
+ #: languages/vue.php:1375
6860
  msgid "Cancel"
6861
  msgstr ""
6862
 
6863
+ #: languages/vue.php:1378
6864
  msgid "Ecommerce Report"
6865
  msgstr ""
6866
 
6867
+ #: languages/vue.php:1381
6868
  msgid "Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value top products, top referral sources and more."
6869
  msgstr ""
6870
 
6871
+ #: languages/vue.php:1386
6872
  msgid "Here's what you get:"
6873
  msgstr ""
6874
 
6875
+ #: languages/vue.php:1389
6876
  msgid "See Your Conversion Rate to Improve Funnel"
6877
  msgstr ""
6878
 
6879
+ #: languages/vue.php:1392
6880
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
6881
  msgstr ""
6882
 
6883
+ #: languages/vue.php:1395
6884
  msgid "See The Total Revenue to Track Growth"
6885
  msgstr ""
6886
 
6887
+ #: languages/vue.php:1398
6888
  msgid "See Average Order Value to Find Offer Opportunities"
6889
  msgstr ""
6890
 
6891
+ #: languages/vue.php:1401
6892
  msgid "See Your Top Products to See Individual Performance"
6893
  msgstr ""
6894
 
6895
+ #: languages/vue.php:1404
6896
  msgid "See Your Top Conversion Sources and Focus on what's Working"
6897
  msgstr ""
6898
 
6899
+ #: languages/vue.php:1407
6900
  msgid "See The Time it Takes for Customers to Purchase"
6901
  msgstr ""
6902
 
6903
+ #: languages/vue.php:1410
6904
  msgid "See How Many Sessions are Needed for a Purchase"
6905
  msgstr ""
6906
 
6907
+ #: languages/vue.php:1413
6908
  msgid "New"
6909
  msgstr ""
6910
 
6911
+ #: languages/vue.php:1416
6912
  msgid "Returning"
6913
  msgstr ""
6914
 
6915
+ #: languages/vue.php:1419
6916
  msgid "Desktop"
6917
  msgstr ""
6918
 
6919
+ #: languages/vue.php:1422
6920
  msgid "Tablet"
6921
  msgstr ""
6922
 
6923
+ #: languages/vue.php:1425
6924
  msgid "Mobile"
6925
  msgstr ""
6926
 
6927
+ #: languages/vue.php:1428
6928
  msgid "Overview Report"
6929
  msgstr ""
6930
 
6931
+ #: languages/vue.php:1431
6932
  msgid "Avg. Session Duration"
6933
  msgstr ""
6934
 
6935
+ #: languages/vue.php:1434
6936
  msgid "New vs. Returning Visitors"
6937
  msgstr ""
6938
 
6939
+ #: languages/vue.php:1437
6940
  msgid "Device Breakdown"
6941
  msgstr ""
6942
 
6943
+ #: languages/vue.php:1440
6944
  msgid "Top 10 Countries"
6945
  msgstr ""
6946
 
6947
+ #: languages/vue.php:1443
6948
  msgid "View Countries Report"
6949
  msgstr ""
6950
 
6951
+ #: languages/vue.php:1446
6952
  msgid "Top 10 Referrals"
6953
  msgstr ""
6954
 
6955
+ #: languages/vue.php:1449
6956
  msgid "View All Referral Sources"
6957
  msgstr ""
6958
 
6959
+ #: languages/vue.php:1452
6960
  msgid "Top Posts/Pages"
6961
  msgstr ""
6962
 
6963
+ #: languages/vue.php:1455
6964
  msgid "View Full Posts/Pages Report"
6965
  msgstr ""
6966
 
6967
+ #: languages/vue.php:1458
6968
  msgid "A session is the browsing session of a single user to your site."
6969
  msgstr ""
6970
 
6971
+ #: languages/vue.php:1461
6972
  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."
6973
  msgstr ""
6974
 
6975
+ #: languages/vue.php:1464
6976
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6977
  msgstr ""
6978
 
6979
+ #: languages/vue.php:1467
6980
  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."
6981
  msgstr ""
6982
 
6983
+ #: languages/vue.php:1470
6984
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
6985
  msgstr ""
6986
 
6987
+ #: languages/vue.php:1473
6988
  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."
6989
  msgstr ""
6990
 
6991
+ #: languages/vue.php:1476
6992
  msgid "This list shows the top countries your website visitors are from."
6993
  msgstr ""
6994
 
6995
+ #: languages/vue.php:1479
6996
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
6997
  msgstr ""
6998
 
6999
+ #: languages/vue.php:1482
7000
  msgid "This list shows the most viewed posts and pages on your website."
7001
  msgstr ""
7002
 
7003
+ #: languages/vue.php:1485
7004
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
7005
  msgstr ""
7006
 
7007
+ #: languages/vue.php:1488
7008
  msgid "See Your Top Landing Pages to Improve Engagement"
7009
  msgstr ""
7010
 
7011
+ #: languages/vue.php:1491
7012
  msgid "See Your Top Exit Pages to Reduce Abandonment"
7013
  msgstr ""
7014
 
7015
+ #: languages/vue.php:1494
7016
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
7017
  msgstr ""
7018
 
7019
+ #: languages/vue.php:1497
7020
  msgid "See Your Top Affiliate Links and Focus on what’s working"
7021
  msgstr ""
7022
 
7023
+ #: languages/vue.php:1500
7024
  msgid "See Your Top Downloads and Improve Conversions"
7025
  msgstr ""
7026
 
7027
+ #: languages/vue.php:1503
7028
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
7029
  msgstr ""
7030
 
7031
+ #: languages/vue.php:1506
7032
  msgid "Custom Dimensions Report"
7033
  msgstr ""
7034
 
7035
+ #: languages/vue.php:1509
7036
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7037
  msgstr ""
7038
 
7039
+ #: languages/vue.php:1512
7040
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7041
  msgstr ""
7042
 
7043
+ #: languages/vue.php:1515
7044
  msgid "Author tracking to see which author’s posts generate the most traffic"
7045
  msgstr ""
7046
 
7047
+ #: languages/vue.php:1518
7048
  msgid "Post Type tracking to see which WordPress post types perform better"
7049
  msgstr ""
7050
 
7051
+ #: languages/vue.php:1521
7052
  msgid "Category tracking to see which sections of your sites are the most popular"
7053
  msgstr ""
7054
 
7055
+ #: languages/vue.php:1524
7056
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7057
  msgstr ""
7058
 
7059
+ #: languages/vue.php:1527
7060
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7061
  msgstr ""
7062
 
7063
+ #: languages/vue.php:1530
7064
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7065
  msgstr ""
7066
 
7067
  #. Translators: Number of visitors.
7068
+ #: languages/vue.php:1538
7069
  msgid "Your website was visited by %s users in the last 30 days."
7070
  msgstr ""
7071
 
7072
+ #: languages/vue.php:1541
7073
  msgid "See the full analytics report!"
7074
  msgstr ""
7075
 
7076
+ #: languages/vue.php:1544
7077
  msgid "Network Active"
7078
  msgstr ""
7079
 
7080
+ #: languages/vue.php:1547
7081
  msgid "Active"
7082
  msgstr ""
7083
 
7084
+ #: languages/vue.php:1550
7085
  msgid "Inactive"
7086
  msgstr ""
7087
 
7088
  #. Translators: Placeholder for the addon status (installed, active, etc).
7089
+ #: languages/vue.php:1554
7090
  msgid "Status: %s"
7091
  msgstr ""
7092
 
7093
+ #: languages/vue.php:1557
7094
  msgid "Not Installed"
7095
  msgstr ""
7096
 
7097
+ #: languages/vue.php:1560
7098
  msgid "Custom Campaign Parameters"
7099
  msgstr ""
7100
 
7101
+ #: languages/vue.php:1563
7102
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
7103
  msgstr ""
7104
 
7105
+ #: languages/vue.php:1566
7106
  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."
7107
  msgstr ""
7108
 
7109
  #. Translators: Marks the field as required.
7110
+ #: languages/vue.php:1570
7111
  msgid "Website URL %s"
7112
  msgstr ""
7113
 
7114
  #. Translators: Display the current website url in italic.
7115
+ #: languages/vue.php:1574
7116
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
7117
  msgstr ""
7118
 
7119
  #. Translators: Marks the field as required.
7120
+ #: languages/vue.php:1578
7121
  msgid "Campaign Source %s"
7122
  msgstr ""
7123
 
7124
  #. Translators: Make the text italic.
7125
+ #: languages/vue.php:1582
7126
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
7127
  msgstr ""
7128
 
7129
  #. Translators: Make the text italic.
7130
+ #: languages/vue.php:1586
7131
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
7132
  msgstr ""
7133
 
7134
  #. Translators: Make the text italic.
7135
+ #: languages/vue.php:1590
7136
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
7137
  msgstr ""
7138
 
7139
+ #: languages/vue.php:1593
7140
  msgid "Enter the paid keyword"
7141
  msgstr ""
7142
 
7143
+ #: languages/vue.php:1596
7144
  msgid "Enter something to differentiate ads"
7145
  msgstr ""
7146
 
7147
+ #: languages/vue.php:1599
7148
  msgid "Use Fragment"
7149
  msgstr ""
7150
 
7151
  #. Translators: Make the text bold.
7152
+ #: languages/vue.php:1603
7153
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
7154
  msgstr ""
7155
 
7156
+ #: languages/vue.php:1606
7157
  msgid "URL to use"
7158
  msgstr ""
7159
 
7160
+ #: languages/vue.php:1609
7161
  msgid "(Updates automatically)"
7162
  msgstr ""
7163
 
7164
+ #: languages/vue.php:1612
7165
  msgid "Copy to Clipboard"
7166
  msgstr ""
7167
 
7168
+ #: languages/vue.php:1615
7169
  msgid "Copy to Pretty Links"
7170
  msgstr ""
7171
 
7172
+ #: languages/vue.php:1618
7173
  msgid "Make your campaign links prettier!"
7174
  msgstr ""
7175
 
7176
+ #: languages/vue.php:1621
7177
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
7178
  msgstr ""
7179
 
7180
+ #: languages/vue.php:1624
7181
  msgid "Download Pretty Links"
7182
  msgstr ""
7183
 
7184
+ #: languages/vue.php:1627
7185
  msgid "More Information & Examples"
7186
  msgstr ""
7187
 
7188
+ #: languages/vue.php:1630
7189
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
7190
  msgstr ""
7191
 
7192
+ #: languages/vue.php:1633
7193
  msgid "Campaign Source"
7194
  msgstr ""
7195
 
7196
+ #: languages/vue.php:1636
7197
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
7198
  msgstr ""
7199
 
7200
+ #: languages/vue.php:1639
7201
  msgid "Campaign Medium"
7202
  msgstr ""
7203
 
7204
+ #: languages/vue.php:1642
7205
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
7206
  msgstr ""
7207
 
7208
+ #: languages/vue.php:1645
7209
  msgid "Campaign Name"
7210
  msgstr ""
7211
 
7212
+ #: languages/vue.php:1648
7213
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
7214
  msgstr ""
7215
 
7216
+ #: languages/vue.php:1651
7217
  msgid "Campaign Term"
7218
  msgstr ""
7219
 
7220
+ #: languages/vue.php:1654
7221
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
7222
  msgstr ""
7223
 
7224
+ #: languages/vue.php:1657
7225
  msgid "Campaign Content"
7226
  msgstr ""
7227
 
7228
+ #: languages/vue.php:1660
7229
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
7230
  msgstr ""
7231
 
7232
  #. Translators: Example.
7233
+ #: languages/vue.php:1664
7234
  msgid "Example: %s"
7235
  msgstr ""
7236
 
7237
  #. Translators: Examples.
7238
+ #: languages/vue.php:1668
7239
  msgid "Examples: %s"
7240
  msgstr ""
7241
 
7242
+ #: languages/vue.php:1671
7243
  msgid "About Campaigns"
7244
  msgstr ""
7245
 
7246
+ #: languages/vue.php:1674
7247
  msgid "About Custom Campaigns"
7248
  msgstr ""
7249
 
7250
+ #: languages/vue.php:1677
7251
  msgid "Best Practices for Creating Custom Campaigns"
7252
  msgstr ""
7253
 
7254
+ #: languages/vue.php:1680
7255
  msgid "About the Referral Traffic Report"
7256
  msgstr ""
7257
 
7258
+ #: languages/vue.php:1683
7259
  msgid "About Traffic Source Dimensions"
7260
  msgstr ""
7261
 
7262
+ #: languages/vue.php:1686
7263
  msgid "AdWords Auto-Tagging"
7264
  msgstr ""
7265
 
7266
+ #: languages/vue.php:1689
7267
  msgid "Additional Information"
7268
  msgstr ""
7269
 
7270
+ #: languages/vue.php:1692
7271
  msgid "Forms Report"
7272
  msgstr ""
7273
 
7274
+ #: languages/vue.php:1695
7275
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
7276
  msgstr ""
7277
 
7278
+ #: languages/vue.php:1698
7279
  msgid "See Your Top Converting Forms and Optimize"
7280
  msgstr ""
7281
 
7282
+ #: languages/vue.php:1701
7283
  msgid "See Your Forms Impressions Count to Find the Best Placement"
7284
  msgstr ""
7285
 
7286
+ #: languages/vue.php:1704
7287
  msgid "Cross Domain Tracking"
7288
  msgstr ""
7289
 
7290
  #. Translators: Add links to documentation.
7291
+ #: languages/vue.php:1708
7292
  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."
7293
  msgstr ""
7294
 
7295
+ #: languages/vue.php:1711
7296
  msgid "Demographics"
7297
  msgstr ""
7298
 
7299
+ #: languages/vue.php:1714
7300
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
7301
  msgstr ""
7302
 
7303
+ #: languages/vue.php:1717
7304
  msgid "Anonymize IP Addresses"
7305
  msgstr ""
7306
 
7307
+ #: languages/vue.php:1720
7308
  msgid "Link Attribution"
7309
  msgstr ""
7310
 
7311
+ #: languages/vue.php:1723
7312
  msgid "Enable Enhanced Link Attribution"
7313
  msgstr ""
7314
 
7315
+ #: languages/vue.php:1726
7316
  msgid "Enable Anchor Tracking"
7317
  msgstr ""
7318
 
7319
+ #: languages/vue.php:1729
7320
  msgid "Enable allowAnchor"
7321
  msgstr ""
7322
 
7323
+ #: languages/vue.php:1732
7324
  msgid "Enable allowLinker"
7325
  msgstr ""
7326
 
7327
+ #: languages/vue.php:1735
7328
  msgid "Enable Tag Links in RSS"
7329
  msgstr ""
7330
 
7331
+ #: languages/vue.php:1738
7332
  msgid "File Downloads"
7333
  msgstr ""
7334
 
7335
+ #: languages/vue.php:1741
7336
  msgid "Extensions of Files to Track as Downloads"
7337
  msgstr ""
7338
 
7339
+ #: languages/vue.php:1744
7340
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
7341
  msgstr ""
7342
 
7343
  #. Translators: Add links to documentation.
7344
+ #: languages/vue.php:1748
7345
  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."
7346
  msgstr ""
7347
 
7348
  #. Translators: Add links to documentation.
7349
+ #: languages/vue.php:1752
7350
  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."
7351
  msgstr ""
7352
 
7353
  #. Translators: Add links to documentation.
7354
+ #: languages/vue.php:1756
7355
  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."
7356
  msgstr ""
7357
 
7358
+ #: languages/vue.php:1759
7359
  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."
7360
  msgstr ""
7361
 
7362
  #. Translators: Add links to documentation.
7363
+ #: languages/vue.php:1763
7364
  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."
7365
  msgstr ""
7366
 
7367
  #. Translators: Add links to documentation.
7368
+ #: languages/vue.php:1767
7369
  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."
7370
  msgstr ""
7371
 
7372
  #. Translators: Add links to documentation.
7373
+ #: languages/vue.php:1771
7374
  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."
7375
  msgstr ""
7376
 
7377
+ #: languages/vue.php:1774
7378
  msgid "Add domain"
7379
  msgstr ""
7380
 
7381
  #. Translators: Domain name example.
7382
+ #: languages/vue.php:1778
7383
  msgid "Domain (example: %s)"
7384
  msgstr ""
7385
 
7386
  #. Translators: Current domain name that should not be used.
7387
+ #: languages/vue.php:1782
7388
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
7389
  msgstr ""
7390
 
7391
+ #: languages/vue.php:1785
7392
  msgid "Search Console Report"
7393
  msgstr ""
7394
 
7395
+ #: languages/vue.php:1788
7396
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
7397
  msgstr ""
7398
 
7399
+ #: languages/vue.php:1791
7400
  msgid "See Your Top Google Search Terms and Optimize Content"
7401
  msgstr ""
7402
 
7403
+ #: languages/vue.php:1794
7404
  msgid "See The Number of Clicks and Track Interests"
7405
  msgstr ""
7406
 
7407
+ #: languages/vue.php:1797
7408
  msgid "See The Click-Through-Ratio and Improve SEO"
7409
  msgstr ""
7410
 
7411
+ #: languages/vue.php:1800
7412
  msgid "See The Average Results Position and Focus on what works."
7413
  msgstr ""
7414
 
7415
+ #: languages/vue.php:1803
7416
  msgid "Installing Addon"
7417
  msgstr ""
7418
 
7419
+ #: languages/vue.php:1806
7420
  msgid "Activating Addon"
7421
  msgstr ""
7422
 
7423
+ #: languages/vue.php:1809
7424
  msgid "Addon Activated"
7425
  msgstr ""
7426
 
7427
+ #: languages/vue.php:1812
7428
  msgid "Loading report data"
7429
  msgstr ""
7430
 
7431
+ #: languages/vue.php:1815
7432
  msgid "Please activate manually"
7433
  msgstr ""
7434
 
7435
  #. Translators: Adds the error status and status text.
7436
+ #: languages/vue.php:1819
7437
  msgid "Error: %1$s, %2$s"
7438
  msgstr ""
7439
 
7440
+ #: languages/vue.php:1822
7441
  msgid "Error Activating Addon"
7442
  msgstr ""
7443
 
7444
+ #: languages/vue.php:1828
7445
  msgid "Redirecting"
7446
  msgstr ""
7447
 
7448
+ #: languages/vue.php:1831
7449
  msgid "Please wait"
7450
  msgstr ""
7451
 
7452
+ #: languages/vue.php:1834
7453
  msgid "activate"
7454
  msgstr ""
7455
 
7456
+ #: languages/vue.php:1837
7457
  msgid "install"
7458
  msgstr ""
7459
 
7460
+ #: languages/vue.php:1840
7461
  msgid "Visit addons page"
7462
  msgstr ""
7463
 
7464
+ #: languages/vue.php:1843
7465
  msgid "Report Unavailable"
7466
  msgstr ""
7467
 
7468
  #. Translators: Install/Activate the addon.
7469
+ #: languages/vue.php:1847
7470
  msgid "%s Addon"
7471
  msgstr ""
7472
 
7473
+ #: languages/vue.php:1850
7474
  msgid "Go Back To Reports"
7475
  msgstr ""
7476
 
7477
+ #: languages/vue.php:1853
7478
  msgid "Enable Enhanced eCommerce"
7479
  msgstr ""
7480
 
7481
+ #: languages/vue.php:1856
7482
  msgid "Real-Time Report"
7483
  msgstr ""
7484
 
7485
+ #: languages/vue.php:1859
7486
  msgid "Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitor's activity when you need it."
7487
  msgstr ""
7488
 
7489
  #. Translators: add link to blog.
7490
+ #: languages/vue.php:1863
7491
  msgid "To comply with Google's API policies we've had to remove the real time report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
7492
  msgstr ""
7493
 
7494
+ #: languages/vue.php:1866
7495
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
7496
  msgstr ""
7497
 
7498
+ #: languages/vue.php:1869
7499
  msgid "See Your Top Pages Immediately After Making Changes"
7500
  msgstr ""
7501
 
7502
+ #: languages/vue.php:1872
7503
  msgid "See Your Top Referral Sources and Adapt Faster"
7504
  msgstr ""
7505
 
7506
+ #: languages/vue.php:1875
7507
  msgid "See Your Traffic Demographics"
7508
  msgstr ""
7509
 
7510
+ #: languages/vue.php:1878
7511
  msgid "Get Fresh Reports Data Every 60 Seconds"
7512
  msgstr ""
7513
 
7514
+ #: languages/vue.php:1881
7515
  msgid "See Where Your Visitors are Connecting From (country & city)"
7516
  msgstr ""
7517
 
7518
+ #: languages/vue.php:1884
7519
  msgid "Help Us Improve"
7520
  msgstr ""
7521
 
7522
+ #: languages/vue.php:1887
7523
  msgid "Help us better understand our users and their website needs."
7524
  msgstr ""
7525
 
7526
  #. Translators: Adds a link to the documentation.
7527
+ #: languages/vue.php:1891
7528
  msgid "If enabled ExactMetrics will send some information about your WordPress site like what plugins and themes you use and which ExactMetrics 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"
7529
  msgstr ""
7530
 
7531
+ #: languages/vue.php:1894
7532
+ #: languages/vue.php:2732
7533
  msgid "Connect ExactMetrics"
7534
  msgstr ""
7535
 
7536
+ #: languages/vue.php:1897
7537
  msgid "Website profile"
7538
  msgstr ""
7539
 
7540
+ #: languages/vue.php:1900
7541
  msgid "Active profile"
7542
  msgstr ""
7543
 
7544
+ #: languages/vue.php:1903
7545
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7546
  msgstr ""
7547
 
7548
+ #: languages/vue.php:1906
7549
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7550
  msgstr ""
7551
 
7552
+ #: languages/vue.php:1909
7553
  msgid "Skip and Keep Connection"
7554
  msgstr ""
7555
 
7556
+ #: languages/vue.php:1912
7557
  msgid "Authenticating"
7558
  msgstr ""
7559
 
7560
+ #: languages/vue.php:1915
7561
  msgid "No options available"
7562
  msgstr ""
7563
 
7564
+ #: languages/vue.php:1918
7565
  msgid "This feature requires ExactMetrics Pro"
7566
  msgstr ""
7567
 
7568
+ #: languages/vue.php:1921
7569
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
7570
  msgstr ""
7571
 
7572
+ #: languages/vue.php:1924
7573
  msgid "Upgrade to Pro and Unlock Popular Products"
7574
  msgstr ""
7575
 
7576
+ #: languages/vue.php:1927
7577
  msgid "View all Pro features"
7578
  msgstr ""
7579
 
7580
+ #: languages/vue.php:1930
7581
  msgid "Reset to default"
7582
  msgstr ""
7583
 
7584
+ #: languages/vue.php:1933
7585
  msgid "The value entered does not match the required format"
7586
  msgstr ""
7587
 
7588
  #. Translators: Placeholders are used for making text bold and adding a link.
7589
+ #: languages/vue.php:1937
7590
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
7591
  msgstr ""
7592
 
7593
  #. Translators: Error status and error text.
7594
+ #: languages/vue.php:1941
7595
  msgid "Can't load errors. Error: %1$s, %2$s"
7596
  msgstr ""
7597
 
7598
+ #: languages/vue.php:1944
7599
  msgid "Only Show Posts from These Categories"
7600
  msgstr ""
7601
 
7602
+ #: languages/vue.php:1947
7603
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
7604
  msgstr ""
7605
 
7606
+ #: languages/vue.php:1950
7607
  msgid "Popular Posts data can be fetched correctly"
7608
  msgstr ""
7609
 
7610
+ #: languages/vue.php:1953
7611
  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."
7612
  msgstr ""
7613
 
7614
+ #: languages/vue.php:1956
7615
  msgid "Close"
7616
  msgstr ""
7617
 
7618
+ #: languages/vue.php:1959
7619
  msgid "Add Top 5 Posts from Google Analytics"
7620
  msgstr ""
7621
 
7622
+ #: languages/vue.php:1962
7623
  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 ExactMetrics and Google Analytics settings. Please use the button below to confirm your configuration is correct."
7624
  msgstr ""
7625
 
7626
+ #: languages/vue.php:1965
7627
  msgid "Test Automated Posts"
7628
  msgstr ""
7629
 
7630
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
7631
+ #: languages/vue.php:1969
7632
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
7633
  msgstr ""
7634
 
7635
+ #: languages/vue.php:1972
7636
  msgid "Automated + Curated"
7637
  msgstr ""
7638
 
7639
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
7640
+ #: languages/vue.php:1976
7641
  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."
7642
  msgstr ""
7643
 
7644
  #. Translators: Placeholder gets replaced with current license version.
7645
+ #: languages/vue.php:1980
7646
  msgid "Pro version is required. Your current license level is: %s"
7647
  msgstr ""
7648
 
7649
+ #: languages/vue.php:1983
7650
  msgid "Verifying Popular Posts data"
7651
  msgstr ""
7652
 
7653
+ #: languages/vue.php:1996
7654
  msgid "Select posts/search"
7655
  msgstr ""
7656
 
7657
+ #: languages/vue.php:1999
7658
  msgid "Oops! No posts found."
7659
  msgstr ""
7660
 
7661
+ #: languages/vue.php:2002
7662
  msgid "Search by post title"
7663
  msgstr ""
7664
 
7665
+ #: languages/vue.php:2005
7666
  msgid "Can't load posts."
7667
  msgstr ""
7668
 
7669
  #. Translators: Adds a link to documentation.
7670
+ #: languages/vue.php:2009
7671
  msgid "In order for the ExactMetrics Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s"
7672
  msgstr ""
7673
 
7674
  #. Translators: Adds link to activate/install plugin and documentation.
7675
+ #: languages/vue.php:2013
7676
  msgid "In order for the ExactMetrics 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"
7677
  msgstr ""
7678
 
7679
+ #: languages/vue.php:2016
7680
  msgid "Activate"
7681
  msgstr ""
7682
 
7683
+ #: languages/vue.php:2019
7684
  msgid "Install"
7685
  msgstr ""
7686
 
7687
  #. Translators: Adds a link to documentation.
7688
+ #: languages/vue.php:2023
7689
  msgid "In order for the ExactMetrics 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"
7690
  msgstr ""
7691
 
7692
  #. Translators: Adds link to activate/install plugin and documentation.
7693
+ #: languages/vue.php:2027
7694
  msgid "In order for the ExactMetrics 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"
7695
  msgstr ""
7696
 
7697
+ #: languages/vue.php:2030
7698
  msgid "SharedCount API Key"
7699
  msgstr ""
7700
 
7701
+ #: languages/vue.php:2033
7702
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
7703
  msgstr ""
7704
 
7705
+ #: languages/vue.php:2036
7706
  msgid "Start Indexing"
7707
  msgstr ""
7708
 
7709
+ #: languages/vue.php:2039
7710
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
7711
  msgstr ""
7712
 
7713
+ #: languages/vue.php:2042
7714
  msgid "Indexing completed, counts will update automatically every day."
7715
  msgstr ""
7716
 
7717
+ #: languages/vue.php:2048
7718
  msgid "Wide"
7719
  msgstr ""
7720
 
7721
+ #: languages/vue.php:2051
7722
  msgid "Narrow"
7723
  msgstr ""
7724
 
7725
+ #: languages/vue.php:2054
7726
  msgid "Title"
7727
  msgstr ""
7728
 
7729
+ #: languages/vue.php:2057
7730
  msgid "Color"
7731
  msgstr ""
7732
 
7733
+ #: languages/vue.php:2060
7734
  msgid "Size"
7735
  msgstr ""
7736
 
7737
+ #: languages/vue.php:2063
7738
  msgid "Border"
7739
  msgstr ""
7740
 
7741
+ #: languages/vue.php:2066
7742
  msgid "Author/Date"
7743
  msgstr ""
7744
 
7745
+ #: languages/vue.php:2069
7746
  msgid "Label"
7747
  msgstr ""
7748
 
7749
+ #: languages/vue.php:2072
7750
  msgid "Background"
7751
  msgstr ""
7752
 
7753
+ #: languages/vue.php:2084
7754
  msgid "Choose which content you would like displayed in the widget."
7755
  msgstr ""
7756
 
7757
+ #: languages/vue.php:2096
7758
  msgid "Comments"
7759
  msgstr ""
7760
 
7761
+ #: languages/vue.php:2102
7762
  msgid "Choose how many posts you’d like displayed in the widget."
7763
  msgstr ""
7764
 
7765
+ #: languages/vue.php:2105
7766
  msgid "View notifications"
7767
  msgstr ""
7768
 
7769
  #. Translators: Add link to retrieve license key from account.
7770
+ #: languages/vue.php:2109
7771
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
7772
  msgstr ""
7773
 
7774
+ #: languages/vue.php:2112
7775
  msgid "Miscellaneous"
7776
  msgstr ""
7777
 
7778
+ #: languages/vue.php:2115
7779
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
7780
  msgstr ""
7781
 
7782
+ #: languages/vue.php:2118
7783
  msgid "Hide Announcements"
7784
  msgstr ""
7785
 
7786
+ #: languages/vue.php:2121
7787
  msgid "Unlock Form Tracking"
7788
  msgstr ""
7789
 
7790
+ #: languages/vue.php:2124
7791
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
7792
  msgstr ""
7793
 
7794
+ #: languages/vue.php:2127
7795
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
7796
  msgstr ""
7797
 
7798
+ #: languages/vue.php:2130
7799
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
7800
  msgstr ""
7801
 
7802
+ #: languages/vue.php:2133
7803
  msgid "Affiliate Links"
7804
  msgstr ""
7805
 
7806
  #. Translators: Add links to documentation.
7807
+ #: languages/vue.php:2137
7808
  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."
7809
  msgstr ""
7810
 
7811
+ #: languages/vue.php:2140
7812
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
7813
  msgstr ""
7814
 
7815
+ #: languages/vue.php:2146
7816
  msgid "The ExactMetrics 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."
7817
  msgstr ""
7818
 
7819
+ #: languages/vue.php:2149
7820
  msgid "Disable the Headline Analyzer"
7821
  msgstr ""
7822
 
7823
+ #: languages/vue.php:2152
7824
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
7825
  msgstr ""
7826
 
7827
+ #: languages/vue.php:2155
7828
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
7829
  msgstr ""
7830
 
7831
+ #: languages/vue.php:2158
7832
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
7833
  msgstr ""
7834
 
7835
+ #: languages/vue.php:2161
7836
  msgid "Over 200,000 websites use Pretty Links!"
7837
  msgstr ""
7838
 
7839
+ #: languages/vue.php:2164
7840
  msgid "Install Pretty Links"
7841
  msgstr ""
7842
 
7843
+ #: languages/vue.php:2167
7844
  msgid "Pretty Links Installed & Activated"
7845
  msgstr ""
7846
 
7847
+ #: languages/vue.php:2170
7848
  msgid "Install Pretty Links from the WordPress.org plugin repository."
7849
  msgstr ""
7850
 
7851
+ #: languages/vue.php:2173
7852
  msgid "Activate Pretty Links"
7853
  msgstr ""
7854
 
7855
+ #: languages/vue.php:2176
7856
  msgid "Activating Pretty Links..."
7857
  msgstr ""
7858
 
7859
+ #: languages/vue.php:2179
7860
  msgid "Create New Pretty Link"
7861
  msgstr ""
7862
 
7863
+ #: languages/vue.php:2182
7864
  msgid "Create a New Pretty Link"
7865
  msgstr ""
7866
 
7867
+ #: languages/vue.php:2185
7868
  msgid "Grab your campaign link and paste it into the Target URL field."
7869
  msgstr ""
7870
 
7871
  #. Translators: Error status and error text.
7872
+ #: languages/vue.php:2189
7873
  msgid "Can't load report data. Error: %1$s, %2$s"
7874
  msgstr ""
7875
 
7876
+ #: languages/vue.php:2192
7877
  msgid "Error loading report data"
7878
  msgstr ""
7879
 
7880
  #. Translators: Replaced with the number of days
7881
+ #: languages/vue.php:2196
7882
  msgid "vs. Previous Day"
7883
  msgstr ""
7884
 
7885
+ #: languages/vue.php:2199
7886
  msgid "No change"
7887
  msgstr ""
7888
 
7889
  #. Translators: Error status and error text.
7890
+ #: languages/vue.php:2203
7891
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
7892
  msgstr ""
7893
 
7894
  #. Translators: Error status and error text.
7895
+ #: languages/vue.php:2207
7896
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
7897
  msgstr ""
7898
 
7899
  #. Translators: Error status and error text.
7900
+ #: languages/vue.php:2211
7901
  msgid "Can't load license details. Error: %1$s, %2$s"
7902
  msgstr ""
7903
 
7904
+ #: languages/vue.php:2214
7905
  msgid "Error loading license details"
7906
  msgstr ""
7907
 
7908
  #. Translators: Error status and error text.
7909
+ #: languages/vue.php:2218
7910
  msgid "Can't verify the license. Error: %1$s, %2$s"
7911
  msgstr ""
7912
 
7913
  #. Translators: Error status and error text.
7914
+ #: languages/vue.php:2222
7915
  msgid "Can't validate the license. Error: %1$s, %2$s"
7916
  msgstr ""
7917
 
7918
  #. Translators: Placeholder is replaced with WPForms.
7919
+ #: languages/vue.php:2226
7920
  msgid "Recommended Plugin: %s"
7921
  msgstr ""
7922
 
7923
+ #: languages/vue.php:2229
7924
  msgid "Activating..."
7925
  msgstr ""
7926
 
7927
+ #: languages/vue.php:2232
7928
  msgid "Deactivating..."
7929
  msgstr ""
7930
 
7931
+ #: languages/vue.php:2235
7932
  msgid "Deactivate"
7933
  msgstr ""
7934
 
7935
  #. Translators: Gets replaced with the number of days.
7936
+ #: languages/vue.php:2239
7937
  msgid "Last %s days"
7938
  msgstr ""
7939
 
7940
  #. Translators: Make text green.
7941
+ #: languages/vue.php:2243
7942
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
7943
  msgstr ""
7944
 
7945
+ #: languages/vue.php:2246
7946
  msgid "Analytics"
7947
  msgstr ""
7948
 
7949
  #. Translators: Adds an arrow icon.
7950
+ #: languages/vue.php:2251
7951
  msgid "View All Reports %s"
7952
  msgstr ""
7953
 
7954
+ #: languages/vue.php:2254
7955
  msgid "Multiple Entries"
7956
  msgstr ""
7957
 
7958
+ #: languages/vue.php:2257
7959
  msgid "Total Number of Widgets to Show"
7960
  msgstr ""
7961
 
7962
+ #: languages/vue.php:2260
7963
  msgid "Choose how many widgets will be placed in a single Post."
7964
  msgstr ""
7965
 
7966
+ #: languages/vue.php:2263
7967
  msgid "Minimum Distance Between Widgets"
7968
  msgstr ""
7969
 
7970
+ #: languages/vue.php:2266
7971
  msgid "Choose the distance between widgets."
7972
  msgstr ""
7973
 
7974
+ #: languages/vue.php:2269
7975
  msgid "Minimum Word Count to Display Multiple Widgets"
7976
  msgstr ""
7977
 
7978
+ #: languages/vue.php:2272
7979
  msgid "Choose the minimum word count for a Post to have multiple entries."
7980
  msgstr ""
7981
 
7982
+ #: languages/vue.php:2275
7983
  msgid "Pro version is required"
7984
  msgstr ""
7985
 
7986
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
7987
+ #: languages/vue.php:2279
7988
  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)."
7989
  msgstr ""
7990
 
7991
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
7992
+ #: languages/vue.php:2283
7993
  msgid "%1$sPage %3$s%2$s of %4$s"
7994
  msgstr ""
7995
 
7996
+ #: languages/vue.php:2286
7997
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
7998
  msgstr ""
7999
 
8000
+ #: languages/vue.php:2289
8001
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
8002
  msgstr ""
8003
 
8004
+ #: languages/vue.php:2292
8005
  msgid "Icon"
8006
  msgstr ""
8007
 
8008
+ #: languages/vue.php:2295
8009
  msgid "Display Method"
8010
  msgstr ""
8011
 
8012
+ #: languages/vue.php:2298
8013
  msgid "There are two ways to manual include the widget in your posts."
8014
  msgstr ""
8015
 
8016
+ #: languages/vue.php:2301
8017
  msgid "Using the Gutenberg Block"
8018
  msgstr ""
8019
 
8020
+ #: languages/vue.php:2304
8021
  msgid "Using the Shortcode"
8022
  msgstr ""
8023
 
8024
+ #: languages/vue.php:2307
8025
  msgid "Learn how to insert the widget using Gutenberg blocks."
8026
  msgstr ""
8027
 
8028
+ #: languages/vue.php:2310
8029
  msgid "Learn how to insert the widget using out Shortcode."
8030
  msgstr ""
8031
 
8032
+ #: languages/vue.php:2313
8033
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
8034
  msgstr ""
8035
 
8036
+ #: languages/vue.php:2316
8037
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
8038
  msgstr ""
8039
 
8040
+ #: languages/vue.php:2319
8041
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
8042
  msgstr ""
8043
 
8044
+ #: languages/vue.php:2322
8045
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
8046
  msgstr ""
8047
 
8048
+ #: languages/vue.php:2325
8049
  msgid "Shortcode"
8050
  msgstr ""
8051
 
8052
+ #: languages/vue.php:2328
8053
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
8054
  msgstr ""
8055
 
8056
+ #: languages/vue.php:2331
8057
  msgid "Copy Shortcode"
8058
  msgstr ""
8059
 
8060
+ #: languages/vue.php:2334
8061
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
8062
  msgstr ""
8063
 
8064
+ #: languages/vue.php:2337
8065
  msgid "Automatic Placement"
8066
  msgstr ""
8067
 
8068
+ #: languages/vue.php:2340
8069
  msgid "Display using Gutenberg Blocks"
8070
  msgstr ""
8071
 
8072
+ #: languages/vue.php:2343
8073
  msgid "Embed Options"
8074
  msgstr ""
8075
 
8076
+ #: languages/vue.php:2346
8077
  msgid "All Embed Options can be used in conjunction with one another."
8078
  msgstr ""
8079
 
8080
+ #: languages/vue.php:2349
8081
  msgid "Using Automatic Embed"
8082
  msgstr ""
8083
 
8084
+ #: languages/vue.php:2352
8085
  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."
8086
  msgstr ""
8087
 
8088
+ #: languages/vue.php:2355
8089
  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."
8090
  msgstr ""
8091
 
8092
+ #: languages/vue.php:2358
8093
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
8094
  msgstr ""
8095
 
8096
+ #: languages/vue.php:2361
8097
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
8098
  msgstr ""
8099
 
8100
+ #: languages/vue.php:2364
8101
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
8102
  msgstr ""
8103
 
8104
+ #: languages/vue.php:2367
8105
  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."
8106
  msgstr ""
8107
 
8108
+ #: languages/vue.php:2370
8109
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
8110
  msgstr ""
8111
 
8112
+ #: languages/vue.php:2373
8113
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
8114
  msgstr ""
8115
 
8116
+ #: languages/vue.php:2376
8117
  msgid "Display using a Shortcode"
8118
  msgstr ""
8119
 
8120
+ #: languages/vue.php:2379
8121
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
8122
  msgstr ""
8123
 
8124
+ #: languages/vue.php:2382
8125
  msgid "Enable Automatic Placement"
8126
  msgstr ""
8127
 
8128
+ #: languages/vue.php:2385
8129
  msgid "Display in a Sidebar"
8130
  msgstr ""
8131
 
8132
+ #: languages/vue.php:2388
8133
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
8134
  msgstr ""
8135
 
8136
+ #: languages/vue.php:2391
8137
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
8138
  msgstr ""
8139
 
8140
  #. Translators: Minimum and maximum number that can be used.
8141
+ #: languages/vue.php:2395
8142
  msgid "Please enter a value between %1$s and %2$s"
8143
  msgstr ""
8144
 
8145
  #. Translators: The minimum set value.
8146
+ #: languages/vue.php:2399
8147
  msgid "Please enter a value higher than %s"
8148
  msgstr ""
8149
 
8150
  #. Translators: The maximum set value.
8151
+ #: languages/vue.php:2403
8152
  msgid "Please enter a value lower than %s"
8153
  msgstr ""
8154
 
8155
+ #: languages/vue.php:2406
8156
  msgid "Please enter a number"
8157
  msgstr ""
8158
 
8159
+ #: languages/vue.php:2409
8160
  msgid "Value has to be a round number"
8161
  msgstr ""
8162
 
8163
+ #: languages/vue.php:2412
8164
  msgid "Days"
8165
  msgstr ""
8166
 
8167
  #. Translators: placeholders make text small.
8168
+ #: languages/vue.php:2416
8169
  msgid "7 days"
8170
  msgstr ""
8171
 
8172
+ #: languages/vue.php:2419
8173
  msgid "30 days"
8174
  msgstr ""
8175
 
8176
+ #: languages/vue.php:2422
8177
  msgid "Custom"
8178
  msgstr ""
8179
 
8180
  #. Translators: Add line break.
8181
+ #: languages/vue.php:2426
8182
  msgid "See All Your Important Store%s Metrics in One Place"
8183
  msgstr ""
8184
 
8185
+ #: languages/vue.php:2429
8186
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8187
  msgstr ""
8188
 
8189
+ #: languages/vue.php:2432
8190
  msgid "See your Top Conversion Sources and Focus on what's Working"
8191
  msgstr ""
8192
 
8193
  #. Translators: The name of the field that is throwing a validation error.
8194
+ #: languages/vue.php:2436
8195
  msgid "%s can't be empty."
8196
  msgstr ""
8197
 
8198
+ #: languages/vue.php:2439
8199
  msgid "Duplicate values are not allowed."
8200
  msgstr ""
8201
 
8202
+ #: languages/vue.php:2442
8203
  msgid "You can add maximum 5 items."
8204
  msgstr ""
8205
 
8206
+ #: languages/vue.php:2445
8207
  msgid "At least 0 item required."
8208
  msgstr ""
8209
 
8210
+ #: languages/vue.php:2448
8211
  msgid "Add Another Link Path"
8212
  msgstr ""
8213
 
8214
+ #: languages/vue.php:2451
8215
  msgid "Remove row"
8216
  msgstr ""
8217
 
8218
+ #: languages/vue.php:2454
8219
  msgid "Time to Purchase"
8220
  msgstr ""
8221
 
8222
+ #: languages/vue.php:2457
8223
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
8224
  msgstr ""
8225
 
8226
+ #: languages/vue.php:2460
8227
  msgid "Sessions to Purchase"
8228
  msgstr ""
8229
 
8230
+ #: languages/vue.php:2463
8231
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
8232
  msgstr ""
8233
 
8234
+ #: languages/vue.php:2466
8235
  msgid "Top Landing Pages"
8236
  msgstr ""
8237
 
8238
+ #: languages/vue.php:2469
8239
  msgid "This list shows the top pages users first land on when visiting your website."
8240
  msgstr ""
8241
 
8242
+ #: languages/vue.php:2472
8243
  msgid "Top Exit Pages"
8244
  msgstr ""
8245
 
8246
+ #: languages/vue.php:2475
8247
  msgid "This list shows the top pages users exit your website from."
8248
  msgstr ""
8249
 
8250
+ #: languages/vue.php:2478
8251
  msgid "Top Outbound Links"
8252
  msgstr ""
8253
 
8254
+ #: languages/vue.php:2481
8255
  msgid "This list shows the top links clicked on your website that go to another website."
8256
  msgstr ""
8257
 
8258
+ #: languages/vue.php:2484
8259
  msgid "Top Affiliate Links"
8260
  msgstr ""
8261
 
8262
+ #: languages/vue.php:2487
8263
  msgid "This list shows the top affiliate links your visitors clicked on."
8264
  msgstr ""
8265
 
8266
+ #: languages/vue.php:2490
8267
  msgid "Top Download Links"
8268
  msgstr ""
8269
 
8270
+ #: languages/vue.php:2493
8271
  msgid "This list shows the download links your visitors clicked the most."
8272
  msgstr ""
8273
 
8274
+ #: languages/vue.php:2496
8275
  msgid "Top Products"
8276
  msgstr ""
8277
 
8278
+ #: languages/vue.php:2499
8279
  msgid "This list shows the top selling products on your website."
8280
  msgstr ""
8281
 
8282
+ #: languages/vue.php:2502
8283
  msgid "Top Conversion Sources"
8284
  msgstr ""
8285
 
8286
+ #: languages/vue.php:2505
8287
  msgid "This list shows the top referral websites in terms of product revenue."
8288
  msgstr ""
8289
 
8290
+ #: languages/vue.php:2508
8291
  msgid "Total Add/Remove"
8292
  msgstr ""
8293
 
8294
+ #: languages/vue.php:2511
8295
  msgid "Unlock with %s"
8296
  msgstr ""
8297
 
8298
+ #: languages/vue.php:2515
8299
  msgid "Upgrade"
8300
  msgstr ""
8301
 
8302
+ #: languages/vue.php:2518
8303
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
8304
  msgstr ""
8305
 
8306
+ #: languages/vue.php:2521
8307
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
8308
  msgstr ""
8309
 
8310
+ #: languages/vue.php:2524
8311
  msgid "Performance"
8312
  msgstr ""
8313
 
8314
+ #: languages/vue.php:2527
8315
  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."
8316
  msgstr ""
8317
 
8318
+ #: languages/vue.php:2530
8319
  msgid "Export PDF Report"
8320
  msgstr ""
8321
 
8322
+ #: languages/vue.php:2533
8323
  msgid "You can export PDF reports only in the PRO version."
8324
  msgstr ""
8325
 
8326
+ #: languages/vue.php:2536
8327
  msgid "Usage Tracking"
8328
  msgstr ""
8329
 
8330
+ #: languages/vue.php:2539
8331
  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."
8332
  msgstr ""
8333
 
8334
+ #: languages/vue.php:2542
8335
  msgid "Allow usage tracking"
8336
  msgstr ""
8337
 
8338
  #. Translators: Adds a link to the documentation.
8339
+ #: languages/vue.php:2546
8340
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
8341
  msgstr ""
8342
 
8343
+ #: languages/vue.php:2549
8344
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. ExactMetrics Pro shows you the stats that matter!"
8345
  msgstr ""
8346
 
8347
+ #: languages/vue.php:2552
8348
  msgid "To unlock more features consider upgrading to PRO."
8349
  msgstr ""
8350
 
8351
+ #: languages/vue.php:2555
8352
  msgid "Upgrade to"
8353
  msgstr ""
8354
 
8355
  #. Translators: Placeholder adds a line break.
8356
+ #: languages/vue.php:2559
8357
  msgid "You can customize your %sdate range only in the PRO version."
8358
  msgstr ""
8359
 
8360
+ #: languages/vue.php:2562
8361
  msgid "You appear to be offline. WPForms not installed."
8362
  msgstr ""
8363
 
8364
  #. Translators: Error status and error text.
8365
+ #: languages/vue.php:2566
8366
  msgid "Can't activate addon. Error: %1$s, %2$s"
8367
  msgstr ""
8368
 
8369
+ #: languages/vue.php:2569
8370
  msgid "You appear to be offline. Addon not activated."
8371
  msgstr ""
8372
 
8373
  #. Translators: Error status and error text.
8374
+ #: languages/vue.php:2573
8375
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
8376
  msgstr ""
8377
 
8378
+ #: languages/vue.php:2576
8379
  msgid "You appear to be offline. Addon not deactivated."
8380
  msgstr ""
8381
 
8382
  #. Translators: Error status and error text.
8383
+ #: languages/vue.php:2580
8384
  msgid "Can't install plugin. Error: %1$s, %2$s"
8385
  msgstr ""
8386
 
8387
+ #: languages/vue.php:2583
8388
  msgid "You appear to be offline. Plugin not installed."
8389
  msgstr ""
8390
 
8391
  #. Translators: Error status and error text.
8392
+ #: languages/vue.php:2587
8393
  msgid "Can't install addon. Error: %1$s, %2$s"
8394
  msgstr ""
8395
 
8396
+ #: languages/vue.php:2590
8397
  msgid "You appear to be offline. Addon not installed."
8398
  msgstr ""
8399
 
8400
  #. Translators: Error status and error text.
8401
+ #: languages/vue.php:2594
8402
  msgid "Can't install WPForms. Error: %1$s, %2$s"
8403
  msgstr ""
8404
 
8405
  #. Translators: Makes text bold and adds smiley.
8406
+ #: languages/vue.php:2598
8407
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
8408
  msgstr ""
8409
 
8410
  #. Translators: Makes text green.
8411
+ #: languages/vue.php:2602
8412
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
8413
  msgstr ""
8414
 
8415
+ #: languages/vue.php:2605
8416
  msgid "Unlock All Features and Upgrade to Pro"
8417
  msgstr ""
8418
 
8419
+ #: languages/vue.php:2608
8420
  msgid "Show"
8421
  msgstr ""
8422
 
8423
  #. Translators: The number of results.
8424
+ #: languages/vue.php:2612
8425
  msgid "%s results"
8426
  msgstr ""
8427
 
8428
+ #: languages/vue.php:2615
8429
  msgid ""
8430
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
8431
  " and other privacy regulations."
8432
  msgstr ""
8433
 
8434
+ #: languages/vue.php:2619
8435
  msgid "EU Compliance"
8436
  msgstr ""
8437
 
8438
+ #: languages/vue.php:2622
8439
  msgid "Show in widget mode"
8440
  msgstr ""
8441
 
8442
+ #: languages/vue.php:2625
8443
  msgid "Show in full-width mode"
8444
  msgstr ""
8445
 
8446
+ #: languages/vue.php:2628
8447
  msgid "Show Overview Reports"
8448
  msgstr ""
8449
 
8450
+ #: languages/vue.php:2631
8451
  msgid "Show Publishers Reports"
8452
  msgstr ""
8453
 
8454
+ #: languages/vue.php:2634
8455
  msgid "Show eCommerce Reports"
8456
  msgstr ""
8457
 
8458
+ #: languages/vue.php:2637
8459
  msgid "Available in PRO version"
8460
  msgstr ""
8461
 
8462
+ #: languages/vue.php:2640
8463
  msgid "Scroll Tracking"
8464
  msgstr ""
8465
 
8466
+ #: languages/vue.php:2643
8467
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
8468
  msgstr ""
8469
 
8470
+ #: languages/vue.php:2646
8471
  msgid "See All Reports"
8472
  msgstr ""
8473
 
8474
+ #: languages/vue.php:2649
8475
  msgid "Go to the Analytics Dashboard"
8476
  msgstr ""
8477
 
8478
+ #: languages/vue.php:2652
8479
  msgid "Google AMP"
8480
  msgstr ""
8481
 
8482
+ #: languages/vue.php:2655
8483
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
8484
  msgstr ""
8485
 
8486
+ #: languages/vue.php:2658
8487
  msgid "Ads Tracking"
8488
  msgstr ""
8489
 
8490
+ #: languages/vue.php:2661
8491
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
8492
  msgstr ""
8493
 
8494
+ #: languages/vue.php:2664
8495
  msgid "Facebook Instant Articles"
8496
  msgstr ""
8497
 
8498
+ #: languages/vue.php:2667
8499
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
8500
  msgstr ""
8501
 
8502
+ #: languages/vue.php:2670
8503
  msgid "Check out the newly added classic mode"
8504
  msgstr ""
8505
 
8506
  #. Translators: Line break.
8507
+ #: languages/vue.php:2674
8508
  msgid "Unique %s Sessions"
8509
  msgstr ""
8510
 
8511
  #. Translators: Line break.
8512
+ #: languages/vue.php:2678
8513
  msgid "Unique %s Pageviews"
8514
  msgstr ""
8515
 
8516
+ #: languages/vue.php:2681
8517
  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."
8518
  msgstr ""
8519
 
8520
+ #: languages/vue.php:2684
8521
  msgid "Hide dashboard widget"
8522
  msgstr ""
8523
 
8524
+ #: languages/vue.php:2687
8525
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
8526
  msgstr ""
8527
 
8528
+ #: languages/vue.php:2690
8529
  msgid "Yes, hide it!"
8530
  msgstr ""
8531
 
8532
+ #: languages/vue.php:2693
8533
  msgid "No, cancel!"
8534
  msgstr ""
8535
 
8536
+ #: languages/vue.php:2696
8537
  msgid "ExactMetrics Widget Hidden"
8538
  msgstr ""
8539
 
8540
+ #: languages/vue.php:2699
8541
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
8542
  msgstr ""
8543
 
8544
+ #: languages/vue.php:2702
8545
  msgid "Classic mode"
8546
  msgstr ""
8547
 
8548
  #. Translators: Make text green and add smiley face.
8549
+ #: languages/vue.php:2706
8550
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
8551
  msgstr ""
8552
 
8553
  #. Translators: Make text green.
8554
+ #: languages/vue.php:2710
8555
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
8556
  msgstr ""
8557
 
8558
+ #: languages/vue.php:2713
8559
  msgid "Unlock PRO Features Now"
8560
  msgstr ""
8561
 
8562
  #. Translators: Add link to retrieve license from account area.
8563
+ #: languages/vue.php:2717
8564
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
8565
  msgstr ""
8566
 
8567
+ #: languages/vue.php:2720
8568
  msgid "Verifying Credentials"
8569
  msgstr ""
8570
 
8571
+ #: languages/vue.php:2723
8572
  msgid "Your site is connected to ExactMetrics!"
8573
  msgstr ""
8574
 
8575
+ #: languages/vue.php:2726
8576
  msgid "Deauthenticating"
8577
  msgstr ""
8578
 
8579
+ #: languages/vue.php:2729
8580
  msgid "You've disconnected your site from ExactMetrics. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
8581
  msgstr ""
8582
 
8583
+ #: languages/vue.php:2735
8584
  msgid "Verify Credentials"
8585
  msgstr ""
8586
 
8587
+ #: languages/vue.php:2741
8588
  msgid "Website Profile"
8589
  msgstr ""
8590
 
8591
+ #: languages/vue.php:2744
8592
  msgid "Active Profile"
8593
  msgstr ""
8594
 
8595
+ #: languages/vue.php:2747
8596
  msgid "Force Deauthenticate"
8597
  msgstr ""
8598
 
8599
+ #: languages/vue.php:2750
8600
  msgid "Disconnect ExactMetrics"
8601
  msgstr ""
8602
 
8603
+ #: languages/vue.php:2754
8604
  msgid "Site Speed Report"
8605
  msgstr ""
8606
 
8607
+ #: languages/vue.php:2757
8608
  msgid "Site Speed"
8609
  msgstr ""
8610
 
8611
+ #: languages/vue.php:2763
8612
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
8613
  msgstr ""
8614
 
8615
+ #: languages/vue.php:2766
8616
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
8617
  msgstr ""
8618
 
8619
+ #: languages/vue.php:2769
8620
  msgid "See Your Homepage's Overall Performance Score"
8621
  msgstr ""
8622
 
8623
+ #: languages/vue.php:2772
8624
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
8625
  msgstr ""
8626
 
8627
+ #: languages/vue.php:2775
8628
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
8629
  msgstr ""
8630
 
8631
+ #: languages/vue.php:2778
8632
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
8633
  msgstr ""
8634
 
8635
+ #: languages/vue.php:2782
8636
  msgid "2020 Year in Review"
8637
  msgstr ""
8638
 
8639
+ #: languages/vue.php:2785
8640
  msgid "Still Calculating..."
8641
  msgstr ""
8642
 
8643
+ #: languages/vue.php:2788
8644
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
8645
  msgstr ""
8646
 
8647
+ #: languages/vue.php:2791
8648
  msgid "Back to Overview Report"
8649
  msgstr ""
8650
 
8651
+ #: languages/vue.php:2794
8652
  msgid "Your 2020 Analytics Report"
8653
  msgstr ""
8654
 
8655
+ #: languages/vue.php:2800
8656
  msgid "Audience"
8657
  msgstr ""
8658
 
8659
+ #: languages/vue.php:2803
8660
  msgid "Congrats"
8661
  msgstr ""
8662
 
8663
+ #: languages/vue.php:2806
8664
  msgid "Your website was quite popular this year! "
8665
  msgstr ""
8666
 
8667
+ #: languages/vue.php:2809
8668
  msgid "You had "
8669
  msgstr ""
8670
 
8671
+ #: languages/vue.php:2812
8672
  msgid " visitors!"
8673
  msgstr ""
8674
 
8675
+ #: languages/vue.php:2815
8676
  msgid " visitors"
8677
  msgstr ""
8678
 
8679
+ #: languages/vue.php:2818
8680
  msgid "Total Visitors"
8681
  msgstr ""
8682
 
8683
+ #: languages/vue.php:2821
8684
  msgid "Total Sessions"
8685
  msgstr ""
8686
 
8687
+ #: languages/vue.php:2824
8688
  msgid "Visitors by Month"
8689
  msgstr ""
8690
 
8691
+ #: languages/vue.php:2827
8692
  msgid "January 1, 2020 - December 31, 2020"
8693
  msgstr ""
8694
 
8695
+ #: languages/vue.php:2830
8696
  msgid "A Tip for 2021"
8697
  msgstr ""
8698
 
8699
+ #: languages/vue.php:2833
8700
  msgid "#1"
8701
  msgstr ""
8702
 
8703
+ #: languages/vue.php:2836
8704
  msgid "You Top 5 Countries"
8705
  msgstr ""
8706
 
8707
+ #: languages/vue.php:2839
8708
  msgid "Let’s get to know your visitors a little better, shall we?"
8709
  msgstr ""
8710
 
8711
+ #: languages/vue.php:2842
8712
  msgid "Gender"
8713
  msgstr ""
8714
 
8715
+ #: languages/vue.php:2845
8716
  msgid "Female"
8717
  msgstr ""
8718
 
8719
+ #: languages/vue.php:2848
8720
  msgid "Women"
8721
  msgstr ""
8722
 
8723
+ #: languages/vue.php:2851
8724
  msgid "Male"
8725
  msgstr ""
8726
 
8727
+ #: languages/vue.php:2854
8728
  msgid "Average Age"
8729
  msgstr ""
8730
 
8731
+ #: languages/vue.php:2857
8732
  msgid "Your Top 5 Pages"
8733
  msgstr ""
8734
 
8735
+ #: languages/vue.php:2860
8736
  msgid "Time Spent on Site"
8737
  msgstr ""
8738
 
8739
+ #: languages/vue.php:2863
8740
  msgid "minutes"
8741
  msgstr ""
8742
 
8743
+ #: languages/vue.php:2866
8744
  msgid "Device Type"
8745
  msgstr ""
8746
 
8747
+ #: languages/vue.php:2869
8748
  msgid "A Tip For 2021"
8749
  msgstr ""
8750
 
8751
+ #: languages/vue.php:2872
8752
  msgid "Are you wondering, how do I get my Google to index my site? If your website isn’t showing up on Google search results then it could be that your webpages aren’t being indexed."
8753
  msgstr ""
8754
 
8755
+ #: languages/vue.php:2875
8756
  msgid "Read - 8 Ways to Get Google to Index Your Site Faster (Tried & Tested)"
8757
  msgstr ""
8758
 
8759
+ #: languages/vue.php:2878
8760
  msgid "So, where did all of these visitors come from?"
8761
  msgstr ""
8762
 
8763
+ #: languages/vue.php:2881
8764
  msgid "Clicks"
8765
  msgstr ""
8766
 
8767
+ #: languages/vue.php:2884
8768
  msgid "Your Top 5 Keywords"
8769
  msgstr ""
8770
 
8771
+ #: languages/vue.php:2887
8772
  msgid "What keywords visitors searched for to find your site"
8773
  msgstr ""
8774
 
8775
+ #: languages/vue.php:2890
8776
  msgid "Your Top 5 Referrals"
8777
  msgstr ""
8778
 
8779
+ #: languages/vue.php:2893
8780
  msgid "The websites that link back to your website"
8781
  msgstr ""
8782
 
8783
+ #: languages/vue.php:2896
8784
  msgid "Opportunity"
8785
  msgstr ""
8786
 
8787
+ #: languages/vue.php:2899
8788
  msgid "With Google Analytics, you can track and measure your site’s performance. Not only that, but you also get useful insights about your visitors."
8789
  msgstr ""
8790
 
8791
+ #: languages/vue.php:2902
8792
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
8793
  msgstr ""
8794
 
8795
+ #: languages/vue.php:2905
8796
  msgid "Thank you for using ExactMetrics!"
8797
  msgstr ""
8798
 
8799
+ #: languages/vue.php:2908
8800
  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."
8801
  msgstr ""
8802
 
8803
+ #: languages/vue.php:2911
8804
  msgid "Here's to an amazing 2021!"
8805
  msgstr ""
8806
 
8807
+ #: languages/vue.php:2914
8808
  msgid "Enjoying ExactMetrics"
8809
  msgstr ""
8810
 
8811
+ #: languages/vue.php:2917
8812
  msgid "Leave a five star review!"
8813
  msgstr ""
8814
 
8815
+ #: languages/vue.php:2920
8816
  msgid "Syed Balkhi"
8817
  msgstr ""
8818
 
8819
+ #: languages/vue.php:2923
8820
  msgid "Chris Christoff"
8821
  msgstr ""
8822
 
8823
+ #: languages/vue.php:2926
8824
  msgid "Write Review"
8825
  msgstr ""
8826
 
8827
+ #: languages/vue.php:2929
8828
  msgid "Did you know over 10 million websites use our plugins?"
8829
  msgstr ""
8830
 
8831
+ #: languages/vue.php:2932
8832
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
8833
  msgstr ""
8834
 
8835
+ #: languages/vue.php:2935
8836
  msgid "Join our Communities!"
8837
  msgstr ""
8838
 
8839
+ #: languages/vue.php:2938
8840
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
8841
  msgstr ""
8842
 
8843
+ #: languages/vue.php:2941
8844
  msgid "Facebook Group"
8845
  msgstr ""
8846
 
8847
+ #: languages/vue.php:2944
8848
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
8849
  msgstr ""
8850
 
8851
+ #: languages/vue.php:2947
8852
  msgid "Join Now...It’s Free!"
8853
  msgstr ""
8854
 
8855
+ #: languages/vue.php:2950
8856
  msgid "WordPress Tutorials by WPBeginner"
8857
  msgstr ""
8858
 
8859
+ #: languages/vue.php:2953
8860
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
8861
  msgstr ""
8862
 
8863
+ #: languages/vue.php:2956
8864
  msgid "Visit WPBeginner"
8865
  msgstr ""
8866
 
8867
+ #: languages/vue.php:2959
8868
  msgid "Follow Us!"
8869
  msgstr ""
8870
 
8871
+ #: languages/vue.php:2962
8872
  msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
8873
  msgstr ""
8874
 
8875
+ #: languages/vue.php:2965
8876
  msgid "Copyright ExactMetrics, 2021"
8877
  msgstr ""
8878
 
8879
+ #: languages/vue.php:2968
8880
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
8881
  msgstr ""
8882
 
8883
+ #: languages/vue.php:2974
8884
  msgid "January"
8885
  msgstr ""
8886
 
8887
+ #: languages/vue.php:2977
8888
  msgid "February"
8889
  msgstr ""
8890
 
8891
+ #: languages/vue.php:2980
8892
  msgid "March"
8893
  msgstr ""
8894
 
8895
+ #: languages/vue.php:2983
8896
  msgid "April"
8897
  msgstr ""
8898
 
8899
+ #: languages/vue.php:2986
8900
  msgid "May"
8901
  msgstr ""
8902
 
8903
+ #: languages/vue.php:2989
8904
  msgid "June"
8905
  msgstr ""
8906
 
8907
+ #: languages/vue.php:2992
8908
  msgid "July"
8909
  msgstr ""
8910
 
8911
+ #: languages/vue.php:2995
8912
  msgid "August"
8913
  msgstr ""
8914
 
8915
+ #: languages/vue.php:2998
8916
  msgid "September"
8917
  msgstr ""
8918
 
8919
+ #: languages/vue.php:3001
8920
  msgid "October"
8921
  msgstr ""
8922
 
8923
+ #: languages/vue.php:3004
8924
  msgid "November"
8925
  msgstr ""
8926
 
8927
+ #: languages/vue.php:3007
8928
  msgid "December"
8929
  msgstr ""
8930
 
8931
  #. Translators: Number of visitors.
8932
+ #: languages/vue.php:3011
8933
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
8934
  msgstr ""
8935
 
8936
+ #: languages/vue.php:3014
8937
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
8938
  msgstr ""
8939
 
8940
  #. Translators: Number of visitors.
8941
+ #: languages/vue.php:3018
8942
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
8943
  msgstr ""
8944
 
8945
  #. Translators: Number of visitors.
8946
+ #: languages/vue.php:3022
8947
  msgid "%s Visitors"
8948
  msgstr ""
8949
 
8950
  #. Translators: Percent and Number of visitors.
8951
+ #: languages/vue.php:3026
8952
  msgid "%1$s&#37 of your visitors were %2$s"
8953
  msgstr ""
8954
 
8955
  #. Translators: Number of visitors and their age.
8956
+ #: languages/vue.php:3030
8957
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
8958
  msgstr ""
8959
 
8960
  #. Translators: Number of visitors and number of pages.
8961
+ #: languages/vue.php:3034
8962
  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>"
8963
  msgstr ""
8964
 
8965
  #. Translators: Number of minutes spent on site.
8966
+ #: languages/vue.php:3038
8967
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
8968
  msgstr ""
8969
 
8970
  #. Translators: Name of device type.
8971
+ #: languages/vue.php:3042
8972
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
8973
  msgstr ""
8974
 
8975
  #. Translators: Number of visitors and device percentage.
8976
+ #: languages/vue.php:3046
8977
  msgid "%1$s&#37 of your visitors were on a %2$s device."
8978
  msgstr ""
8979
 
8980
  #. Translators: add link to blog.
8981
+ #: languages/vue.php:3050
8982
  msgid "To comply with Google's API policies we've had to remove the site speed report from the lite version. You can read about this decision and why it was made in %1$sthis blog post%2$s. To access the real time report in the WordPress backend, you will need to upgrade to Pro."
8983
  msgstr ""
8984
 
8985
  #. Translators: add link to blog.
8986
+ #: languages/vue.php:3054
8987
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. But what happens if a website doesn't load quickly for users?"
8988
  msgstr ""
8989
 
8990
  #. Translators: add link to blog.
8991
+ #: languages/vue.php:3058
8992
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly."
8993
  msgstr ""
8994
 
8995
  #. Translators: add link to blog.
8996
+ #: languages/vue.php:3062
8997
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
8998
  msgstr ""
8999
 
9000
+ #: languages/vue.php:3065
9001
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
9002
  msgstr ""
9003
 
9004
+ #: languages/vue.php:3068
9005
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
9006
  msgstr ""
9007
 
9008
+ #: languages/vue.php:3071
9009
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
9010
  msgstr ""
9011
 
9012
+ #: languages/vue.php:3074
9013
+ msgid "Tracking Mode"
9014
+ msgstr ""
9015
+
9016
+ #: languages/vue.php:3077
9017
+ msgid "Use Global Site Tag (gtag.js)"
9018
+ msgstr ""
9019
+
9020
+ #: languages/vue.php:3080
9021
+ msgid "Enable gtag tracking code to improve compatibility. Read more about what this change means in this %1$sarticle%2$s. Once you switch you won’t be able to go back."
9022
+ msgstr ""
9023
+
9024
+ #: languages/vue.php:3083
9025
+ msgid "Upgrade to the gtag.js tracking code for the latest Google Analytics tracking features. This will be the default in a future release and analytics.js tracking will no longer be supported. Tracking on your site should not be affected."
9026
+ msgstr ""
9027
+
9028
+ #: languages/vue.php:3086
9029
+ msgid "Compatibility mode"
9030
+ msgstr ""
9031
+
9032
+ #: languages/vue.php:3089
9033
+ msgid "Enable _gtagTracker Compatibility"
9034
+ msgstr ""
9035
+
9036
+ #. Translators: Placeholder gets replaced with default GA js function.
9037
+ #: languages/vue.php:3093
9038
+ msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9039
+ msgstr ""
9040
+
9041
+ #: languages/vue.php:3096
9042
+ 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."
9043
+ msgstr ""
9044
+
9045
+ #: languages/vue.php:3099
9046
+ msgid "Upgrade to the gtag.js tracking code for the latest Google Analytics tracking features. This will be the default %$1stracking%$2s option in a future release and analytics.js tracking will no longer be supported."
9047
+ msgstr ""
9048
+
9049
+ #. Translators: placeholders make the text bold.
9050
+ #: languages/vue.php:3103
9051
+ msgid "Upgrade to the gtag.js tracking code for the latest Google Analytics tracking features. This will be the default %1$stracking%2$s option in a future release and analytics.js tracking will no longer be supported."
9052
+ msgstr ""
9053
+
9054
+ #. Translators: placeholders make the text bold.
9055
+ #: languages/vue.php:3107
9056
+ msgid "Upgrade to the gtag.js tracking code for the latest Google Analytics tracking features. This will be the default %1$stracking option%2$s in a future release and analytics.js tracking will no longer be supported."
9057
+ msgstr ""
9058
+
9059
+ #: gadwp.php:259
9060
+ #: gadwp.php:273
9061
  msgid "Cheatin&#8217; huh?"
9062
  msgstr ""
9063
 
9064
  #. Translators: Make version number bold and add a link to return to the plugins page.
9065
+ #: gadwp.php:405
9066
  msgid "Sorry, but your version of WordPress does not meet ExactMetrics'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."
9067
  msgstr ""
9068
 
9069
  #. Translators: Adds a link to the plugins page.
9070
+ #: gadwp.php:431
9071
  msgid "Please %1$suninstall%2$s the ExactMetrics Lite Plugin. Your Pro version of ExactMetrics may not work as expected until the Lite version is uninstalled."
9072
  msgstr ""
9073
 
languages/vue.php CHANGED
@@ -7,7 +7,9 @@ $generated_i18n_strings = array(
7
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:97
8
  __( '2', 'google-analytics-dashboard-for-wp' ),
9
 
10
- // Reference: src/modules/reports/components/ReportReAuth.vue:45
 
 
11
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:150
12
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
13
 
@@ -17,7 +19,6 @@ $generated_i18n_strings = array(
17
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:223
18
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
19
 
20
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:67
21
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:229
22
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
23
 
@@ -36,6 +37,7 @@ $generated_i18n_strings = array(
36
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:116
37
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
38
 
 
39
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:130
40
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
41
 
@@ -68,6 +70,7 @@ $generated_i18n_strings = array(
68
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
69
  __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
70
 
 
71
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
72
  __( '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-dashboard-for-wp' ),
73
 
@@ -83,9 +86,11 @@ $generated_i18n_strings = array(
83
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
84
  __( 'Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what\'s working right inside your WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
85
 
 
86
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
87
  __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
88
 
 
89
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198
90
  __( '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-dashboard-for-wp' ),
91
 
@@ -193,8 +198,7 @@ $generated_i18n_strings = array(
193
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:146
194
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
195
 
196
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:199
197
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:147
198
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
199
 
200
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
@@ -228,23 +232,19 @@ $generated_i18n_strings = array(
228
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
229
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
230
 
231
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:90
232
- // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:61
233
- // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:22
234
- // Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:30
235
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:168
236
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
237
 
238
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:92
239
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:170
240
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
241
 
242
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:93
243
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:171
244
  __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
245
 
246
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:94
247
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:172
248
  __( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
249
 
250
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:95
@@ -264,10 +264,12 @@ $generated_i18n_strings = array(
264
  __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
265
 
266
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:101
 
267
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:179
268
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
269
 
270
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:102
 
271
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:180
272
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
273
 
@@ -317,17 +319,16 @@ $generated_i18n_strings = array(
317
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
318
  __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
319
 
320
- // Reference: src/modules/settings/routes/site.js:122
321
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
322
 
323
  // Reference: src/modules/settings/routes/site.js:130
324
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
325
 
326
- // Reference: src/modules/settings/routes/site.js:139
327
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
328
 
329
  // Reference: src/modules/settings/routes/site.js:100
330
- // Reference: src/modules/tools/components/ToolsNavigation.vue:14
331
  __( 'Import Export', 'google-analytics-dashboard-for-wp' ),
332
 
333
  // Reference: src/modules/settings/routes/site.js:108
@@ -345,29 +346,36 @@ $generated_i18n_strings = array(
345
  // Reference: src/modules/settings/routes/site.js:180
346
  __( 'Settings', 'google-analytics-dashboard-for-wp' ),
347
 
 
348
  // Reference: src/modules/settings/routes/site.js:35
349
  __( 'General', 'google-analytics-dashboard-for-wp' ),
350
 
 
351
  // Reference: src/modules/settings/routes/site.js:43
352
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
353
 
 
 
354
  // Reference: src/modules/settings/routes/site.js:51
355
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
356
 
 
357
  // Reference: src/modules/settings/routes/site.js:59
358
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
359
 
 
 
360
  // Reference: src/modules/settings/routes/site.js:67
361
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
362
 
 
363
  // Reference: src/modules/settings/routes/site.js:75
364
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
365
 
366
  // Reference: src/modules/settings/routes/site.js:92
367
- // Reference: src/modules/tools/components/ToolsNavigation.vue:15
368
  __( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
369
 
370
- // Reference: src/modules/widget/store/index.js:76
371
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
372
 
373
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:30
@@ -377,11 +385,9 @@ $generated_i18n_strings = array(
377
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
378
 
379
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:47
380
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:65
381
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
382
 
383
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:48
384
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:73
385
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
386
 
387
  // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
@@ -403,7 +409,7 @@ $generated_i18n_strings = array(
403
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
404
  __( 'Connect ExactMetrics and Setup Website Analytics', 'google-analytics-dashboard-for-wp' ),
405
 
406
- // Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
407
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
408
 
409
  // Reference: src/modules/reports/components/ReportNoAuth.vue:25
@@ -412,7 +418,7 @@ $generated_i18n_strings = array(
412
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
413
  __( 'ExactMetrics makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
414
 
415
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:121
416
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
417
 
418
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
@@ -457,14 +463,13 @@ $generated_i18n_strings = array(
457
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
458
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-dashboard-for-wp' ),
459
 
460
- // Reference: src/modules/reports/components/ReportReAuth.vue:21
461
  __( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
462
 
463
- // Reference: src/modules/reports/components/ReportReAuth.vue:30
464
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
465
 
466
- // Reference: src/modules/reports/components/ReportReAuth.vue:47
467
- // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:110
468
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
469
 
470
  // Reference: src/components/TheQuickLinks.vue:31
@@ -537,6 +542,7 @@ $generated_i18n_strings = array(
537
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
538
 
539
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:148
 
540
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
541
 
542
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:149
@@ -566,13 +572,14 @@ $generated_i18n_strings = array(
566
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:64
567
  __( 'Pro', 'google-analytics-dashboard-for-wp' ),
568
 
569
- // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:105
570
  __( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
571
 
572
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
573
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
574
 
575
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:67
 
576
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
577
 
578
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
@@ -705,7 +712,7 @@ $generated_i18n_strings = array(
705
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
706
  __( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
707
 
708
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46
709
  __( 'Installing...', 'google-analytics-dashboard-for-wp' ),
710
 
711
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:39
@@ -759,7 +766,7 @@ $generated_i18n_strings = array(
759
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
760
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
761
 
762
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55
763
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
764
 
765
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
@@ -775,7 +782,8 @@ $generated_i18n_strings = array(
775
  /* Translators: Make text bold. */
776
  __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
777
 
778
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:49
 
779
  __( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
780
 
781
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
@@ -784,10 +792,10 @@ $generated_i18n_strings = array(
784
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
785
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
786
 
787
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:50
788
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
789
 
790
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:51
791
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
792
 
793
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
@@ -812,7 +820,7 @@ $generated_i18n_strings = array(
812
  /* Translators: Add a link to upgrade and make the text green. */
813
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.%3$s As a valued ExactMetrics Lite user you %4$sreceive 50%% off%5$s, automatically applied at checkout!', 'google-analytics-dashboard-for-wp' ),
814
 
815
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
816
  __( 'Save and continue', 'google-analytics-dashboard-for-wp' ),
817
 
818
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:57
@@ -923,6 +931,7 @@ $generated_i18n_strings = array(
923
  __( 'These user roles will be able to access ExactMetrics\'s reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
924
 
925
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:92
 
926
  __( '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-dashboard-for-wp' ),
927
 
928
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91
@@ -932,6 +941,7 @@ $generated_i18n_strings = array(
932
  __( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
933
 
934
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:141
 
935
  __( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
936
 
937
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:38
@@ -1000,7 +1010,7 @@ $generated_i18n_strings = array(
1000
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105
1001
  __( 'Choose Theme', 'google-analytics-dashboard-for-wp' ),
1002
 
1003
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:106
1004
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1005
 
1006
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107
@@ -1041,7 +1051,7 @@ $generated_i18n_strings = array(
1041
  /* Translators: Placeholders make the text bold. */
1042
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-dashboard-for-wp' ),
1043
 
1044
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
1045
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
1046
 
1047
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
@@ -1148,8 +1158,7 @@ $generated_i18n_strings = array(
1148
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:102
1149
  __( 'Reports', 'google-analytics-dashboard-for-wp' ),
1150
 
1151
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:103
1152
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:117
1153
  __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
1154
 
1155
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:104
@@ -1219,58 +1228,58 @@ $generated_i18n_strings = array(
1219
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:99
1220
  __( 'Custom code', 'google-analytics-dashboard-for-wp' ),
1221
 
1222
- // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:27
1223
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
1224
 
1225
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:109
1226
  /* Translators: Adds link to the account area to retreive license key. */
1227
  __( 'Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
1228
 
1229
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:110
1230
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
1231
 
1232
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:111
1233
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
1234
 
1235
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:112
1236
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
1237
 
1238
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:118
1239
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
1240
 
1241
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:119
1242
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
1243
 
1244
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:120
1245
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
1246
 
1247
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:122
1248
  __( 'Connect ExactMetrics to Start Tracking Your Data', 'google-analytics-dashboard-for-wp' ),
1249
 
1250
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:126
1251
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
1252
 
1253
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:128
1254
  /* Translators: Adds link to upgrade. */
1255
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
1256
 
1257
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
1258
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
1259
 
1260
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:131
1261
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
1262
 
1263
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
1264
  __( 'Complete Upgrade', 'google-analytics-dashboard-for-wp' ),
1265
 
1266
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:133
1267
  __( 'Upgrade to Pro Version!', 'google-analytics-dashboard-for-wp' ),
1268
 
1269
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:135
1270
  /* Translators: Make text bold. */
1271
  __( '%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process.', 'google-analytics-dashboard-for-wp' ),
1272
 
1273
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:169
1274
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
1275
 
1276
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:42
@@ -1279,16 +1288,16 @@ $generated_i18n_strings = array(
1279
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:43
1280
  __( 'Your Website', 'google-analytics-dashboard-for-wp' ),
1281
 
1282
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:44
1283
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1284
 
1285
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:45
1286
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1287
 
1288
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:46
1289
  __( 'Avg. Duration', 'google-analytics-dashboard-for-wp' ),
1290
 
1291
- // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:47
1292
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1293
 
1294
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:56
@@ -1306,7 +1315,6 @@ $generated_i18n_strings = array(
1306
 
1307
  // Reference: src/modules/auth/api/index.js:123
1308
  // Reference: src/modules/license/api/index.js:149
1309
- // Reference: src/modules/wizard-onboarding/api/index.js:22
1310
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1311
 
1312
  // Reference: src/modules/auth/api/index.js:146
@@ -1372,8 +1380,9 @@ $generated_i18n_strings = array(
1372
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:32
1373
  __( 'Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value top products, top referral sources and more.', 'google-analytics-dashboard-for-wp' ),
1374
 
 
1375
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:35
1376
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:35
1377
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1378
 
1379
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:38
@@ -1406,28 +1415,25 @@ $generated_i18n_strings = array(
1406
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:160
1407
  __( 'Returning', 'google-analytics-dashboard-for-wp' ),
1408
 
1409
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:193
1410
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:507
1411
  __( 'Desktop', 'google-analytics-dashboard-for-wp' ),
1412
 
1413
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:194
1414
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:508
1415
  __( 'Tablet', 'google-analytics-dashboard-for-wp' ),
1416
 
1417
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:195
1418
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:509
1419
  __( 'Mobile', 'google-analytics-dashboard-for-wp' ),
1420
 
1421
- // Reference: src/modules/widget/store/index.js:14
1422
  __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
1423
 
1424
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:255
1425
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1426
 
1427
- // Reference: src/modules/widget/store/index.js:27
1428
  __( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
1429
 
1430
- // Reference: src/modules/widget/store/index.js:34
1431
  __( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
1432
 
1433
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:259
@@ -1442,7 +1448,7 @@ $generated_i18n_strings = array(
1442
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:262
1443
  __( 'View All Referral Sources', 'google-analytics-dashboard-for-wp' ),
1444
 
1445
- // Reference: src/modules/widget/store/index.js:20
1446
  __( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
1447
 
1448
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:264
@@ -1460,10 +1466,10 @@ $generated_i18n_strings = array(
1460
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:269
1461
  __( '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.', 'google-analytics-dashboard-for-wp' ),
1462
 
1463
- // Reference: src/modules/widget/store/index.js:28
1464
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
1465
 
1466
- // Reference: src/modules/widget/store/index.js:35
1467
  __( '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-dashboard-for-wp' ),
1468
 
1469
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:272
@@ -1472,7 +1478,7 @@ $generated_i18n_strings = array(
1472
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:273
1473
  __( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-dashboard-for-wp' ),
1474
 
1475
- // Reference: src/modules/widget/store/index.js:21
1476
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
1477
 
1478
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:31
@@ -1614,7 +1620,7 @@ $generated_i18n_strings = array(
1614
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:190
1615
  __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links.', 'google-analytics-dashboard-for-wp' ),
1616
 
1617
- // Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:191
1618
  __( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
1619
 
1620
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:192
@@ -1701,7 +1707,7 @@ $generated_i18n_strings = array(
1701
  /* Translators: Add links to documentation. */
1702
  __( '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.', 'google-analytics-dashboard-for-wp' ),
1703
 
1704
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:65
1705
  __( 'Demographics', 'google-analytics-dashboard-for-wp' ),
1706
 
1707
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:66
@@ -1920,7 +1926,7 @@ $generated_i18n_strings = array(
1920
  // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:22
1921
  __( 'View all Pro features', 'google-analytics-dashboard-for-wp' ),
1922
 
1923
- // Reference: src/modules/settings/components/input/SettingsInputNumber.vue:56
1924
  __( 'Reset to default', 'google-analytics-dashboard-for-wp' ),
1925
 
1926
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:47
@@ -1949,7 +1955,7 @@ $generated_i18n_strings = array(
1949
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
1950
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
1951
 
1952
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
1953
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
1954
 
1955
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
@@ -1962,7 +1968,7 @@ $generated_i18n_strings = array(
1962
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
1963
  __( '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-dashboard-for-wp' ),
1964
 
1965
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
1966
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
1967
 
1968
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
@@ -2006,10 +2012,10 @@ $generated_i18n_strings = array(
2006
  /* Translators: Adds link to activate/install plugin and documentation. */
2007
  __( 'In order for the ExactMetrics 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-dashboard-for-wp' ),
2008
 
2009
- // Reference: src/modules/addons/store/actions.js:49
2010
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
2011
 
2012
- // Reference: src/modules/addons/store/actions.js:49
2013
  __( 'Install', 'google-analytics-dashboard-for-wp' ),
2014
 
2015
  // Reference: src/modules/addons/store/actions.js:51
@@ -2035,8 +2041,7 @@ $generated_i18n_strings = array(
2035
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
2036
  __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-dashboard-for-wp' ),
2037
 
2038
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:46
2039
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:60
2040
  __( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
2041
 
2042
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
@@ -2045,25 +2050,25 @@ $generated_i18n_strings = array(
2045
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
2046
  __( 'Narrow', 'google-analytics-dashboard-for-wp' ),
2047
 
2048
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:51
2049
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
2050
 
2051
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:49
2052
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
2053
 
2054
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:50
2055
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
2056
 
2057
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:54
2058
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
2059
 
2060
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
2061
  __( 'Author/Date', 'google-analytics-dashboard-for-wp' ),
2062
 
2063
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:52
2064
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
2065
 
2066
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:53
2067
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
2068
 
2069
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:144
@@ -2241,6 +2246,7 @@ $generated_i18n_strings = array(
2241
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
2242
 
2243
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:65
 
2244
  /* Translators: Adds an arrow icon. */
2245
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
2246
 
@@ -2276,13 +2282,13 @@ $generated_i18n_strings = array(
2276
  /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2277
  __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-dashboard-for-wp' ),
2278
 
2279
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47
2280
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
2281
 
2282
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:48
2283
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
2284
 
2285
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:55
2286
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
2287
 
2288
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:75
@@ -2291,7 +2297,7 @@ $generated_i18n_strings = array(
2291
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:76
2292
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
2293
 
2294
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:77
2295
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
2296
 
2297
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:78
@@ -2306,22 +2312,22 @@ $generated_i18n_strings = array(
2306
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:81
2307
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
2308
 
2309
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83
2310
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
2311
 
2312
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84
2313
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
2314
 
2315
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:85
2316
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
2317
 
2318
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
2319
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
2320
 
2321
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:88
2322
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
2323
 
2324
- // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
2325
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
2326
 
2327
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
@@ -2504,7 +2510,8 @@ $generated_i18n_strings = array(
2504
  // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:23
2505
  __( 'Unlock with %s', 'google-analytics-dashboard-for-wp' ),
2506
 
2507
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputEmailSummaries-Lite.vue:16
 
2508
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
2509
 
2510
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputEmailSummaries-Lite.vue:17
@@ -2597,18 +2604,18 @@ $generated_i18n_strings = array(
2597
  // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:32
2598
  __( 'Unlock All Features and Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
2599
 
2600
- // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:38
2601
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2602
 
2603
  // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:27
2604
  /* Translators: The number of results. */
2605
  __( '%s results', 'google-analytics-dashboard-for-wp' ),
2606
 
2607
- // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:22
2608
  __( 'The EU Compliance addon allows you to improve compliance with GDPR
2609
  and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
2610
 
2611
- // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:23
2612
  __( 'EU Compliance', 'google-analytics-dashboard-for-wp' ),
2613
 
2614
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
@@ -2771,7 +2778,7 @@ $generated_i18n_strings = array(
2771
  __( 'Learn How to Improve the Core Metrics that Google Uses to Rank Your Site', 'google-analytics-dashboard-for-wp' ),
2772
 
2773
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
2774
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:94
2775
  __( '2020 Year in Review', 'google-analytics-dashboard-for-wp' ),
2776
 
2777
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:256
@@ -3061,6 +3068,42 @@ $generated_i18n_strings = array(
3061
  __( 'Read - How to Track Google Analytics Landing Page Conversions', 'google-analytics-dashboard-for-wp' ),
3062
 
3063
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:300
3064
- __( 'Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement.', 'google-analytics-dashboard-for-wp' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3065
  );
3066
  /* THIS IS THE END OF THE GENERATED FILE */
7
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:97
8
  __( '2', 'google-analytics-dashboard-for-wp' ),
9
 
10
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:154
11
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:190
12
+ // Reference: src/modules/widget/components/WidgetReportError.vue:25
13
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:150
14
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
15
 
19
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:223
20
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
21
 
 
22
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:229
23
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
24
 
37
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:116
38
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
39
 
40
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:173
41
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:130
42
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
43
 
70
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
71
  __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
72
 
73
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:32
74
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
75
  __( '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-dashboard-for-wp' ),
76
 
86
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:194
87
  __( '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-dashboard-for-wp' ),
88
 
89
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:31
90
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
91
  __( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
92
 
93
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:32
94
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:198
95
  __( '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-dashboard-for-wp' ),
96
 
198
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:146
199
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
200
 
201
+ // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:46
 
202
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
203
 
204
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
232
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
233
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
234
 
235
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:34
236
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:34
237
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:32
238
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:149
 
239
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
240
 
241
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:98
 
242
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
243
 
244
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:145
 
245
  __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
246
 
247
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:60
 
248
  __( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
249
 
250
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:95
264
  __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
265
 
266
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:101
267
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:47
268
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:179
269
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
270
 
271
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:102
272
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:45
273
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:180
274
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
275
 
319
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
320
  __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
321
 
322
+ // Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:36
323
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
324
 
325
  // Reference: src/modules/settings/routes/site.js:130
326
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
327
 
328
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:60
329
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
330
 
331
  // Reference: src/modules/settings/routes/site.js:100
 
332
  __( 'Import Export', 'google-analytics-dashboard-for-wp' ),
333
 
334
  // Reference: src/modules/settings/routes/site.js:108
346
  // Reference: src/modules/settings/routes/site.js:180
347
  __( 'Settings', 'google-analytics-dashboard-for-wp' ),
348
 
349
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:61
350
  // Reference: src/modules/settings/routes/site.js:35
351
  __( 'General', 'google-analytics-dashboard-for-wp' ),
352
 
353
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:62
354
  // Reference: src/modules/settings/routes/site.js:43
355
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
356
 
357
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:44
358
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:63
359
  // Reference: src/modules/settings/routes/site.js:51
360
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
361
 
362
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:64
363
  // Reference: src/modules/settings/routes/site.js:59
364
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
365
 
366
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:44
367
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:65
368
  // Reference: src/modules/settings/routes/site.js:67
369
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
370
 
371
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:66
372
  // Reference: src/modules/settings/routes/site.js:75
373
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
374
 
375
  // Reference: src/modules/settings/routes/site.js:92
 
376
  __( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
377
 
378
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:42
379
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
380
 
381
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:30
385
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
386
 
387
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:47
 
388
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
389
 
390
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:48
 
391
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
392
 
393
  // Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
409
  // Reference: src/modules/frontend/components/FrontendNoAuth.vue:26
410
  __( 'Connect ExactMetrics and Setup Website Analytics', 'google-analytics-dashboard-for-wp' ),
411
 
412
+ // Reference: src/modules/widget/components/WidgetFooter.vue:22
413
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
414
 
415
  // Reference: src/modules/reports/components/ReportNoAuth.vue:25
418
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
419
  __( 'ExactMetrics makes it "effortless" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard.', 'google-analytics-dashboard-for-wp' ),
420
 
421
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:140
422
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
423
 
424
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
463
  // Reference: src/modules/reports/components/ReportReAuth.vue:20
464
  __( 'There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.', 'google-analytics-dashboard-for-wp' ),
465
 
466
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:47
467
  __( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
468
 
469
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:108
470
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
471
 
472
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:126
 
473
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
474
 
475
  // Reference: src/components/TheQuickLinks.vue:31
542
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
543
 
544
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:148
545
+ // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:102
546
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
547
 
548
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:149
572
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:64
573
  __( 'Pro', 'google-analytics-dashboard-for-wp' ),
574
 
575
+ // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:65
576
  __( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
577
 
578
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
579
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
580
 
581
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:67
582
+ // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:60
583
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
584
 
585
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
712
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
713
  __( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
714
 
715
+ // Reference: src/modules/addons/components/AddonButton.vue:39
716
  __( 'Installing...', 'google-analytics-dashboard-for-wp' ),
717
 
718
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:39
766
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
767
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
768
 
769
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
770
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
771
 
772
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:35
782
  /* Translators: Make text bold. */
783
  __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
784
 
785
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:28
786
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:62
787
  __( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
788
 
789
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:48
792
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
793
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
794
 
795
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:134
796
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
797
 
798
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:135
799
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
800
 
801
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
820
  /* Translators: Add a link to upgrade and make the text green. */
821
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.%3$s As a valued ExactMetrics Lite user you %4$sreceive 50%% off%5$s, automatically applied at checkout!', 'google-analytics-dashboard-for-wp' ),
822
 
823
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:56
824
  __( 'Save and continue', 'google-analytics-dashboard-for-wp' ),
825
 
826
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:57
931
  __( 'These user roles will be able to access ExactMetrics\'s reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
932
 
933
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:92
934
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
935
  __( '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-dashboard-for-wp' ),
936
 
937
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91
941
  __( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
942
 
943
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:141
944
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
945
  __( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
946
 
947
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:38
1010
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:105
1011
  __( 'Choose Theme', 'google-analytics-dashboard-for-wp' ),
1012
 
1013
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:282
1014
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1015
 
1016
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:107
1051
  /* Translators: Placeholders make the text bold. */
1052
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-dashboard-for-wp' ),
1053
 
1054
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:109
1055
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
1056
 
1057
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
1158
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:102
1159
  __( 'Reports', 'google-analytics-dashboard-for-wp' ),
1160
 
1161
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:136
 
1162
  __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
1163
 
1164
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:104
1228
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:99
1229
  __( 'Custom code', 'google-analytics-dashboard-for-wp' ),
1230
 
1231
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:123
1232
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
1233
 
1234
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:125
1235
  /* Translators: Adds link to the account area to retreive license key. */
1236
  __( 'Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
1237
 
1238
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:126
1239
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
1240
 
1241
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:127
1242
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
1243
 
1244
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:131
1245
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
1246
 
1247
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:137
1248
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
1249
 
1250
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:138
1251
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
1252
 
1253
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:139
1254
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
1255
 
1256
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:141
1257
  __( 'Connect ExactMetrics to Start Tracking Your Data', 'google-analytics-dashboard-for-wp' ),
1258
 
1259
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:145
1260
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
1261
 
1262
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:147
1263
  /* Translators: Adds link to upgrade. */
1264
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
1265
 
1266
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:148
1267
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
1268
 
1269
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:150
1270
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
1271
 
1272
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:151
1273
  __( 'Complete Upgrade', 'google-analytics-dashboard-for-wp' ),
1274
 
1275
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:152
1276
  __( 'Upgrade to Pro Version!', 'google-analytics-dashboard-for-wp' ),
1277
 
1278
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:154
1279
  /* Translators: Make text bold. */
1280
  __( '%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process.', 'google-analytics-dashboard-for-wp' ),
1281
 
1282
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:188
1283
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
1284
 
1285
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:42
1288
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:43
1289
  __( 'Your Website', 'google-analytics-dashboard-for-wp' ),
1290
 
1291
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:253
1292
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1293
 
1294
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:297
1295
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1296
 
1297
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:46
1298
  __( 'Avg. Duration', 'google-analytics-dashboard-for-wp' ),
1299
 
1300
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:256
1301
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1302
 
1303
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:56
1315
 
1316
  // Reference: src/modules/auth/api/index.js:123
1317
  // Reference: src/modules/license/api/index.js:149
 
1318
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1319
 
1320
  // Reference: src/modules/auth/api/index.js:146
1380
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:32
1381
  __( 'Increase your sales & revenue with insights. ExactMetrics answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value top products, top referral sources and more.', 'google-analytics-dashboard-for-wp' ),
1382
 
1383
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:35
1384
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:35
1385
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:34
1386
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1387
 
1388
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:38
1415
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:160
1416
  __( 'Returning', 'google-analytics-dashboard-for-wp' ),
1417
 
 
1418
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:507
1419
  __( 'Desktop', 'google-analytics-dashboard-for-wp' ),
1420
 
 
1421
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:508
1422
  __( 'Tablet', 'google-analytics-dashboard-for-wp' ),
1423
 
 
1424
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:509
1425
  __( 'Mobile', 'google-analytics-dashboard-for-wp' ),
1426
 
1427
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:252
1428
  __( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
1429
 
1430
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:255
1431
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1432
 
1433
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:257
1434
  __( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
1435
 
1436
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:258
1437
  __( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
1438
 
1439
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:259
1448
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:262
1449
  __( 'View All Referral Sources', 'google-analytics-dashboard-for-wp' ),
1450
 
1451
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:263
1452
  __( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
1453
 
1454
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:264
1466
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:269
1467
  __( '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.', 'google-analytics-dashboard-for-wp' ),
1468
 
1469
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:270
1470
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
1471
 
1472
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:271
1473
  __( '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-dashboard-for-wp' ),
1474
 
1475
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:272
1478
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:273
1479
  __( 'This list shows the top websites that send your website traffic, known as referral traffic.', 'google-analytics-dashboard-for-wp' ),
1480
 
1481
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:274
1482
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
1483
 
1484
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:31
1620
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:190
1621
  __( 'Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links.', 'google-analytics-dashboard-for-wp' ),
1622
 
1623
+ // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:89
1624
  __( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
1625
 
1626
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:192
1707
  /* Translators: Add links to documentation. */
1708
  __( '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.', 'google-analytics-dashboard-for-wp' ),
1709
 
1710
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:273
1711
  __( 'Demographics', 'google-analytics-dashboard-for-wp' ),
1712
 
1713
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEngagement.vue:66
1926
  // Reference: src/modules/popular-posts/components/PopularPostsProductsUpsell.vue:22
1927
  __( 'View all Pro features', 'google-analytics-dashboard-for-wp' ),
1928
 
1929
+ // Reference: src/modules/settings/components/input/SettingsInputText.vue:46
1930
  __( 'Reset to default', 'google-analytics-dashboard-for-wp' ),
1931
 
1932
  // Reference: src/modules/settings/components/input/SettingsInputText.vue:47
1955
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
1956
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
1957
 
1958
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:48
1959
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
1960
 
1961
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
1968
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
1969
  __( '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-dashboard-for-wp' ),
1970
 
1971
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:53
1972
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
1973
 
1974
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
2012
  /* Translators: Adds link to activate/install plugin and documentation. */
2013
  __( 'In order for the ExactMetrics 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-dashboard-for-wp' ),
2014
 
2015
+ // Reference: src/modules/addons/components/AddonButton.vue:47
2016
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
2017
 
2018
+ // Reference: src/modules/addons/components/AddonButton.vue:51
2019
  __( 'Install', 'google-analytics-dashboard-for-wp' ),
2020
 
2021
  // Reference: src/modules/addons/store/actions.js:51
2041
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:38
2042
  __( 'Indexing completed, counts will update automatically every day.', 'google-analytics-dashboard-for-wp' ),
2043
 
2044
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:99
 
2045
  __( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
2046
 
2047
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:61
2050
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:62
2051
  __( 'Narrow', 'google-analytics-dashboard-for-wp' ),
2052
 
2053
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:104
2054
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
2055
 
2056
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:102
2057
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
2058
 
2059
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:103
2060
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
2061
 
2062
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:107
2063
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
2064
 
2065
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:141
2066
  __( 'Author/Date', 'google-analytics-dashboard-for-wp' ),
2067
 
2068
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:105
2069
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
2070
 
2071
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:106
2072
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
2073
 
2074
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:144
2246
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
2247
 
2248
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:65
2249
+ // Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:16
2250
  /* Translators: Adds an arrow icon. */
2251
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
2252
 
2282
  /* Translators: Page number of total pages. 1 & 2 make the first part of the text bold. */
2283
  __( '%1$sPage %3$s%2$s of %4$s', 'google-analytics-dashboard-for-wp' ),
2284
 
2285
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:100
2286
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
2287
 
2288
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
2289
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
2290
 
2291
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
2292
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
2293
 
2294
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:75
2297
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:76
2298
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
2299
 
2300
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:105
2301
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
2302
 
2303
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:78
2312
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:81
2313
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
2314
 
2315
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:113
2316
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
2317
 
2318
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:84
2319
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
2320
 
2321
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:115
2322
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
2323
 
2324
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
2325
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
2326
 
2327
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:123
2328
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
2329
 
2330
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:124
2331
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
2332
 
2333
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
2510
  // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:23
2511
  __( 'Unlock with %s', 'google-analytics-dashboard-for-wp' ),
2512
 
2513
+ // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:24
2514
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:16
2515
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
2516
 
2517
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputEmailSummaries-Lite.vue:17
2604
  // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:32
2605
  __( 'Unlock All Features and Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
2606
 
2607
+ // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:25
2608
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2609
 
2610
  // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:27
2611
  /* Translators: The number of results. */
2612
  __( '%s results', 'google-analytics-dashboard-for-wp' ),
2613
 
2614
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:29
2615
  __( 'The EU Compliance addon allows you to improve compliance with GDPR
2616
  and other privacy regulations.', 'google-analytics-dashboard-for-wp' ),
2617
 
2618
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:30
2619
  __( 'EU Compliance', 'google-analytics-dashboard-for-wp' ),
2620
 
2621
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
2778
  __( 'Learn How to Improve the Core Metrics that Google Uses to Rank Your Site', 'google-analytics-dashboard-for-wp' ),
2779
 
2780
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
2781
+ // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:260
2782
  __( '2020 Year in Review', 'google-analytics-dashboard-for-wp' ),
2783
 
2784
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:256
3068
  __( 'Read - How to Track Google Analytics Landing Page Conversions', 'google-analytics-dashboard-for-wp' ),
3069
 
3070
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:300
3071
+ __( 'Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement.', 'google-analytics-dashboard-for-wp' ),
3072
+
3073
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:128
3074
+ __( 'Tracking Mode', 'google-analytics-dashboard-for-wp' ),
3075
+
3076
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
3077
+ __( 'Use Global Site Tag (gtag.js)', 'google-analytics-dashboard-for-wp' ),
3078
+
3079
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:128
3080
+ __( 'Enable gtag tracking code to improve compatibility. Read more about what this change means in this %1$sarticle%2$s. Once you switch you won’t be able to go back.', 'google-analytics-dashboard-for-wp' ),
3081
+
3082
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:130
3083
+ __( 'Upgrade to the gtag.js tracking code for the latest Google Analytics tracking features. This will be the default in a future release and analytics.js tracking will no longer be supported. Tracking on your site should not be affected.', 'google-analytics-dashboard-for-wp' ),
3084
+
3085
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:31
3086
+ __( 'Compatibility mode', 'google-analytics-dashboard-for-wp' ),
3087
+
3088
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:32
3089
+ __( 'Enable _gtagTracker Compatibility', 'google-analytics-dashboard-for-wp' ),
3090
+
3091
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:34
3092
+ /* Translators: Placeholder gets replaced with default GA js function. */
3093
+ __( 'This enables ExactMetrics to work with plugins that use %1$s and don\'t support %2$s', 'google-analytics-dashboard-for-wp' ),
3094
+
3095
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:130
3096
+ __( '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-dashboard-for-wp' ),
3097
+
3098
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:130
3099
+ __( 'Upgrade to the gtag.js tracking code for the latest Google Analytics tracking features. This will be the default %$1stracking%$2s option in a future release and analytics.js tracking will no longer be supported.', 'google-analytics-dashboard-for-wp' ),
3100
+
3101
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:131
3102
+ /* Translators: placeholders make the text bold. */
3103
+ __( 'Upgrade to the gtag.js tracking code for the latest Google Analytics tracking features. This will be the default %1$stracking%2$s option in a future release and analytics.js tracking will no longer be supported.', 'google-analytics-dashboard-for-wp' ),
3104
+
3105
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:131
3106
+ /* Translators: placeholders make the text bold. */
3107
+ __( 'Upgrade to the gtag.js tracking code for the latest Google Analytics tracking features. This will be the default %1$stracking option%2$s in a future release and analytics.js tracking will no longer be supported.', 'google-analytics-dashboard-for-wp' )
3108
  );
3109
  /* THIS IS THE END OF THE GENERATED FILE */
lite/assets/vue/css/settings.css CHANGED
@@ -1 +1 @@
1
- .exactmetrics-dark[data-v-2ed93de5],.exactmetrics-dark[data-v-993e4e00],.exactmetrics-dark[data-v-4619bc56]{display:block}.exactmetrics-addons-navbar{text-align:left}.exactmetrics-addons-navbar h1{display:inline-block;font-size:32px;line-height:1.3;font-weight:600;margin:0;color:#210f59}@media (max-width:959px){.exactmetrics-addons-navbar h1{font-size:24px}}.exactmetrics-addons-navbar .exactmetrics-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:0;width:310px;position:relative}@media (max-width:750px){.exactmetrics-addons-navbar .exactmetrics-addons-filters{width:100%;margin-top:20px}}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]{height:40px;margin-right:0;padding-left:20px;padding-right:28px;font-size:14px;border-color:#f4f3f7;background:#f4f3f7;border-radius:3px}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]::-webkit-input-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]:-moz-placeholder,.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]::-moz-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]:-ms-input-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters>i{position:absolute;right:20px;top:10px;z-index:10;color:#210f59;font-size:15px}.exactmetrics-addon-inactive .exactmetrics-addon-status span,.exactmetrics-addon-not-available .exactmetrics-addon-status span,.exactmetrics-addon-not-installed .exactmetrics-addon-status span{color:#9087ac}.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}#exactmetrics-addons{width:1094px}@media (max-width:782px){#exactmetrics-addons{width:100%}}#exactmetrics-addons .exactmetrics-addons-area{margin:0 10px}@media (max-width:782px){#exactmetrics-addons .exactmetrics-addons-area{margin-left:24px;margin-right:24px}}#exactmetrics-addons .exactmetrics-addons-no-results{margin-top:25px;padding:0 10px}#exactmetrics-addons .exactmetrics-addons-no-results p{font-size:16px}#exactmetrics-addons .exactmetrics-addons-no-results>div{visibility:hidden;-webkit-animation:loadExactMetricsSettingsNoJSView 0s 2s forwards;animation:loadExactMetricsSettingsNoJSView 0s 2s forwards}.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button{background:#9087ac;color:#fff}.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button:hover{background:#fff;color:#37276a}.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{padding:0;width:100%;margin-left:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation{background:none;position:relative;-webkit-box-shadow:none;box-shadow:none}@media (max-width:959px){.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation{padding:0;left:0}}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation .exactmetrics-main-navigation-open{padding:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-logo-area{display:none}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-header{background:rgba(0,0,0,0);border-bottom:1px solid #e9e7ee;padding:32px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-full-width-upsell{min-height:360px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-upsell-title{padding:32px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-upsell-title h2{font-size:32px;margin:0}.exactmetrics-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:64px;margin-bottom:33px}@media (max-width:782px){.exactmetrics-addons-list{margin-top:24px}}.exactmetrics-addons-list .exactmetrics-addon{width:calc(50% - 16px);position:relative;background:#f4f3f7;padding:0 0 72px;margin-bottom:32px;border-radius:8px}@media (max-width:782px){.exactmetrics-addons-list .exactmetrics-addon{width:100%}}.exactmetrics-addons-list .exactmetrics-addon h3{color:#210f59;font-size:17px;line-height:1.5;margin-top:9px}.exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-excerpt{color:#210f59;font-weight:400;margin:12px 0 0;font-size:15px;line-height:1.75}.exactmetrics-addons-list .exactmetrics-addon-top{padding:30px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-addons-list .exactmetrics-addon-image{width:68px;height:68px;background:#fff;-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;border-radius:50%;text-align:center;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}.exactmetrics-addons-list .exactmetrics-addon-image i{font-size:23px;color:#210f59}.exactmetrics-addons-list .exactmetrics-addon-image.exactmetrics-addon-noicon{border-radius:4px;width:80px;height:80px;padding:12px}.exactmetrics-addons-list .exactmetrics-addon-image img{max-width:100%}.exactmetrics-addons-list .exactmetrics-addon-message{position:absolute;bottom:0;background:#e9e7ee;left:0;right:0;border-radius:0 0 8px 8px}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-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}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-addon-status{font-size:15px;color:#210f59}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-addon-action{-ms-flex-item-align:end;align-self:flex-end}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-button{padding-bottom:11px;padding-top:12px;min-width:146px;font-size:14px;line-height:1.2;border-radius:3px;text-align:center}.exactmetrics-addons-list .exactmetrics-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.exactmetrics-path-addons .exactmetrics-header{display:none}.exactmetrics-file-input{margin-bottom:20px}.exactmetrics-tools .exactmetrics-dark{margin-bottom:5px;display:block}.exactmetrics-admin-page .exactmetrics-tools-url-builder p .exactmetrics-info{margin-left:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text{margin-bottom:20px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text .exactmetrics-dark{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text input[type=text]{background:#f4f3f7;border:none;color:#9087ac}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area{width:750px;margin:0 auto;max-width:100%;display:block;padding-left:40px;padding-right:40px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area textarea{background-color:#fff}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area{padding-left:24px;padding-right:24px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area .exactmetrics-settings-block{margin-left:0;margin-right:0}}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-tools-small-text{font-size:13px;color:#9087ac;margin-left:9px;display:inline-block;font-weight:400}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-tools-description-top{font-size:15px;margin-top:10px;line-height:1.75;display:inline-block}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{margin-bottom:0}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span{color:#4d3f7a;line-height:1.75}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span.exactmetrics-dark{font-size:17px;color:#210f59}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span.exactmetrics-info{color:#9087ac}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled{margin-bottom:0}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled i{margin-right:13px}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled input{display:none}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label{display:block;background:#e9e7ee;border-radius:5px;padding:16px 24px;color:#6528f5;text-decoration:underline;text-align:center}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label>span{color:#6528f5}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label:focus,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label:hover{text-decoration:none}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-filename{font-size:13px;margin-top:8px;line-height:175%;color:#9087ac;text-overflow:ellipsis;overflow:hidden;white-space:pre}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-input-description{color:#9087ac;font-size:13px;line-height:1.7;margin-bottom:20px}.exactmetrics-required{color:#d4393d}textarea:-moz-read-only{background-color:#210f59}textarea:read-only{background-color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-row p{margin-top:0}.exactmetrics-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-tools-info-row .exactmetrics-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-tools-info-row .exactmetrics-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.exactmetrics-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content p{font-weight:400}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-description p{font-size:13px;margin:0;line-height:1.75}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-label p{margin:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-toolsadditional-info{margin-bottom:15px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-toolsadditional-info i{margin-right:10px;color:#6528f5}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad{background-color:#6528f5;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){.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad{padding-bottom:50px}}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-title,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-description,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-description{color:#fff;font-family:Roboto,sans-serif;line-height:20px}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button{background:#4615bd;border:0;font-size:16px;font-weight:700;border-radius:5px;font-family:Roboto,sans-serif;position:relative;padding-right:76px;padding-left:60px}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:hover{background:#4b11d7;border-color:#4b11d7;outline:none}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:after,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:after{position:absolute;content:"";right:53px;top:50%;width:16px;height:17px;margin-top:-8px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACESURBVHgB3ZPRDYAgDESrE+gGjuIIjshGjlA3kA3OkmAEQgvGP19S7ud6NA0QKQBgPLDmG4wAZEah5hvpI38KkJ1tydZRGpGzUsUwSe1o49RxOkIctTBC2s1GiLPMXLktNC9RnTEVE3TuEHMvQzioHy81JfrqIXn5T7PoEdVbO9A4C+ULdv1uYZMCHL8AAAAASUVORK5CYII=);background-repeat:no-repeat}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-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){.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo{right:10px;bottom:0}}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks{position:relative;background:#4b11d6;border-color:#4b11d6;margin-left:15px;padding-right:48px;padding-left:23px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:active,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:hover{background:rgba(75,17,214,.8);border-color:rgba(75,17,214,.8);outline:none}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-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.exactmetrics-prettylinks-flow-page{background:#fff}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{max-width:770px;margin:0 auto}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{padding:0 30px}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{max-width:700px}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow a,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow div,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h1,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h2,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h3,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h4,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow p,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow span{font-family:Roboto,sans-serif}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow p{font-size:16px;line-height:21px;color:#393f4c}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header{text-align:center;max-width:680px;margin:0 auto;padding-top:75px;padding-bottom:20px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-tools-prettylinks-flow-header-logo{min-height:56px;background-image:url(../img/em-pl-logo.svg);background-repeat:no-repeat;background-position:50%}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-prettylinks-flow-title{font-size:39px;font-weight:900;line-height:46px;text-align:center;color:#393f4c;margin-top:60px;margin-bottom:18px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-prettylinks-flow-description{max-width:560px;margin:0 auto}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:25px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-image{margin-left:-35px}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-image{margin-left:0}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-description{padding-left:16px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-description h3{margin-top:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard{border-radius:5px;border:1px solid #e2e4e9;margin-bottom:36px}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard{text-align:center;padding:30px 30px 0}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated{border-width:2px;border-color:#6528f5}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-prettylinks-flow-counter,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-prettylinks-flow-counter{background:#6528f5}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-tools-prettylinks-action .exactmetrics-button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-tools-prettylinks-action .exactmetrics-button{background:#6528f5;border-color:#6528f5;color:#fff}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button{pointer-events:auto}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-status-active .exactmetrics-prettylinks-flow-counter{background:#1ec185}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-status-active .exactmetrics-tools-prettylinks-action .exactmetrics-button{pointer-events:none}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-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.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action{padding:30px 0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action h3{font-size:18px;line-height:18px;color:#393f4c;font-weight:700;margin-top:12px;margin-bottom:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action p{margin-top:6px;margin-bottom:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action .exactmetrics-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;position:relative}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button{pointer-events:none}.exactmetrics-about-block{padding:0;background:#fff;margin-top:40px}@media (max-width:782px){.exactmetrics-about-block{padding:0 24px}}.exactmetrics-about-block h3{color:#210f59;font-size:24px;margin:0 0 20px;line-height:1.4;padding-top:25px}.exactmetrics-about-block p{font-size:15px;line-height:1.75;font-weight:500;color:#210f59}.exactmetrics-about-block:after{content:"";display:table;clear:both}div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{width:1094px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{padding-left:24px;padding-right:24px}}div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-left:20px;padding-right:20px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-left:0;padding-right:0}}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{margin-left:-163px}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar .exactmetrics-container{width:auto}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list{padding:0 20px}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:calc(33.3333% - 21px)}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:100%}}div[class*=" exactmetrics-path-about-"] .exactmetrics-addon-image,div[class^=exactmetrics-path-about-] .exactmetrics-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*=" exactmetrics-path-about-"] .monstericon-star:before,div[class^=exactmetrics-path-about-] .monstericon-star:before{color:#fdb72c}.exactmetrics-lite-vs-pro-table{padding:0}.exactmetrics-lite-vs-pro-table .exactmetrics-lite-vs-pro-footer{background:#e9e7ee}.exactmetrics-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.exactmetrics-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.exactmetrics-features-table{width:100%;border-collapse:collapse;position:relative;margin-bottom:95px}.exactmetrics-features-table tr{position:relative}.exactmetrics-features-table tr:first-child td{border-radius:0 10px 0 0}.exactmetrics-features-table tr:first-child .exactmetrics-features-table-feature-title+td{border-radius:10px 0 0 0}.exactmetrics-features-table tr:first-child:after{display:none}.exactmetrics-features-table tr:after{display:block;border-top:1px solid #bcb7cd;opacity:.5;content:"";position:absolute;left:0;right:40px}.exactmetrics-features-table tbody tr:last-child td{padding:0;background:none}.exactmetrics-features-table tbody tr:last-child:after{display:none}.exactmetrics-features-table td,.exactmetrics-features-table th{width:33.33333%;padding:40px;vertical-align:top}.exactmetrics-features-table td p,.exactmetrics-features-table th p{margin:0}.exactmetrics-features-table th{text-align:left;border-right:none;font-size:24px;line-height:1.4}.exactmetrics-features-table th i{width:40px;height:40px;border-radius:50%;color:#210f59;background-color:rgba(33,15,89,.1);display:inline-block;text-align:center;line-height:40px;font-size:15px;margin-right:30px}.exactmetrics-features-table td{background:#f4f3f7}.exactmetrics-features-table td p{font-size:17px;line-height:1.5}.exactmetrics-features-table td p>span{margin-top:16px;display:block}.exactmetrics-features-table .exactmetrics-features-table-feature-title{background:none;padding-left:0}.exactmetrics-features-table .exactmetrics-features-table-feature-title i{float:left;font-size:23px;color:#6528f5;margin-right:18px}.exactmetrics-features-table .exactmetrics-features-table-feature-title p{font-weight:700;font-size:17px;color:#37276a;line-height:1.5;margin-left:41px}.exactmetrics-features-full:before,.exactmetrics-features-none:before,.exactmetrics-features-partial:before{display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f026";font-size:20px;margin-right:10px;color:#d4393d;position:relative;top:2px;margin-bottom:16px}.exactmetrics-features-full:before,.exactmetrics-features-partial:before{content:"\f022";color:#19865f}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer{padding:40px;text-align:center;border-radius:0 0 10px 10px;border-top:1px solid #bcb7cd}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer h3{color:#210f59;font-size:17px;max-width:350px;line-height:1.5;margin:0 auto 16px}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer p{margin-bottom:24px;font-size:15px;line-height:1.75;color:#210f59;max-width:350px;margin-left:auto;margin-right:auto}.exactmetrics-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-two-column>div{width:50%}.exactmetrics-about-docs-row:after{display:table;clear:both;content:""}.exactmetrics-about-docs-image{width:158px;float:left;margin-right:32px}.exactmetrics-about-docs-image .exactmetrics-bg-img{width:158px;background-color:#fff;border-radius:5px;height:158px;padding-top:0}.exactmetrics-about-docs-image .exactmetrics-bg-img:after{background-position:50%;left:10px;right:10px;top:10px;bottom:10px}.exactmetrics-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.exactmetrics-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.exactmetrics-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.exactmetrics-about-docs-4:after{background-image:url(../img/about-icon-addons-em.png)}.exactmetrics-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.exactmetrics-bg-img.exactmetrics-about-team{padding-top:70%}.exactmetrics-bg-img.exactmetrics-about-team:after{background-image:url(../img/about-team-photo.png)}.exactmetrics-about-docs-text h3{color:#210f59;font-size:17px;line-height:1.5}.exactmetrics-about-docs-text p{margin:16px 0 24px}.exactmetrics-about-page-right-image{float:right;width:48%;text-align:center;margin:0 0 0 20px}@media (max-width:782px){.exactmetrics-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.exactmetrics-about-page-right-image img{width:100%}.exactmetrics-about-page-right-image figcaption{color:#4d3f7a;margin-top:5px}.exactmetrics-about-page-right-image iframe{max-width:100%}.exactmetrics-page-title{padding:32px;line-height:1.3;border-bottom:1px solid #e9e7ee}.exactmetrics-page-title h2{margin:0;font-size:32px;color:#210f59}.exactmetrics-about .exactmetrics-addon-top{padding:40px 40px 24px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-about .exactmetrics-addon-noicon{margin-bottom:10px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon{padding-bottom:145px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message{padding:24px 40px 40px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior{border-top:1px solid #ccc;padding:24px 0 0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-status{margin-bottom:24px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-action{-ms-flex-item-align:start;align-self:start}.exactmetrics-about .exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-upsell-list-item>i{min-width:23px}.exactmetrics-about .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-left:14px;font-size:15px}.exactmetrics-bg-img.exactmetrics-em-logo-color{padding-top:8%;width:387px;max-width:100%}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-em-logo-color{width:133px;padding-top:10%}}.exactmetrics-bg-img.exactmetrics-em-logo-color:after{background-position:50%;background-image:url(../img/em-logo.png)}.exactmetrics-about-page-top{padding:60px 0;background:radial-gradient(64.37% 131.18% at 50.04% 32.71%,hsla(0,0%,100%,.1) 0,hsla(0,0%,100%,0) 100%),rgba(101,40,245,.1);border-bottom:1px solid #e9e7ee;margin-bottom:635px}@media (max-width:782px){.exactmetrics-about-page-top{margin-bottom:0}}.exactmetrics-about-page-top h3{color:#6528f5;margin:0 0 0 135px;font-size:20px;line-height:1.3;font-weight:400}@media (max-width:782px){.exactmetrics-about-page-top h3{margin-left:0}}.exactmetrics-about-page-top h2{max-width:570px;margin-left:135px;margin-top:9px}@media (max-width:782px){.exactmetrics-about-page-top h2{margin-left:0;margin-right:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button{width:750px;max-width:100%;margin-left:135px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button{margin-left:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button p{max-width:300px;margin-right:100px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button p{margin-right:24px}}.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:right;margin-top:10px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:none}}.exactmetrics-about-page-top .exactmetrics-container{width:1094px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-635px;padding-top:52%;cursor:pointer}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:0}}.exactmetrics-bg-img.exactmetrics-about-getting-started-video:after{background-position:100% 100%;background-image:url(../img/about-getting-started-video.png)}.exactmetrics-about-page-top h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:20px}@media (max-width:782px){.exactmetrics-about-page-top h2{font-size:20px}}.exactmetrics-about-page-top p{font-size:15px;line-height:1.7;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title{text-align:center;margin-top:-100px}@media (max-width:782px){.exactmetrics-container.exactmetrics-about-middle-title{margin-top:0;padding:0 24px}}.exactmetrics-container.exactmetrics-about-middle-title p{max-width:500px;margin:0 auto;font-size:15px;line-height:1.75;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:19px}.exactmetrics-admin-page .exactmetrics-wide-purple{background:#6528f5;padding:72px 0;margin-bottom:100px}.exactmetrics-admin-page .exactmetrics-wide-purple .exactmetrics-separator{background:rgba(0,0,0,.2)}.exactmetrics-about-upgrade-box-flex{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:45px}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box{width:334px;padding:65px 93px 56px;background:#210f59;border-radius:10px;color:#fff;text-align:center;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span{font-size:17px;line-height:1.5;display:inline-block}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-large{font-size:48px;line-height:1.3;font-weight:700}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-term{font-size:15px;line-height:1.75;opacity:.5}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box .exactmetrics-button{background-color:#fff;color:#210f59;margin-top:27px;font-weight:500}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes{padding-left:95px;max-width:650px;width:100%}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes h3{color:#fff;font-size:24px;line-height:1.4;font-weight:500;margin-top:17px}.exactmetrics-testimonials-slider{position:relative;padding:0 40px;margin-top:60px}.exactmetrics-testimonials-slides{position:relative;overflow:hidden}.exactmetrics-testimonials-slide{visibility:hidden;position:absolute;top:0;left:0;width:100%;-webkit-transition:.5s;transition:.5s;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image{padding:0 60px 0 80px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image .exactmetrics-bg-img{width:90px;border-radius:50%;height:90px;border:5px solid #37276a;overflow:hidden}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-1:after{background-image:url(../img/testimonial-image-1.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-2:after{background-image:url(../img/testimonial-image-2.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-3:after{background-image:url(../img/testimonial-image-3.jpg)}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text{padding-right:70px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p{color:#fff;font-size:20px;line-height:1.5;margin:0 0 20px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p.exactmetrics-testimonial-text-author{font-size:16px;line-height:1.75;color:#e9e7ee}.exactmetrics-testimonials-slide.exactmetrics-testimonials-slide-active{visibility:visible;position:static}.exactmetrics-testimonials-slide h2{margin:0}.exactmetrics-testimonials-slide img{width:300px}.exactmetrics-testimonials-slider-control{border:none;background:none;color:#fff;font-size:40px;line-height:1;position:absolute;top:45px;margin-top:-20px;padding:0;cursor:pointer}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left{left:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left i:before{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right{right:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right i:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-about-documentation{background:#f4f3f7;border-radius:10px;padding:72px 100px;margin:40px 0 95px}@media (max-width:782px){.exactmetrics-about-documentation{margin:40px 0;padding:32px 24px}.exactmetrics-about-documentation .exactmetrics-about-docs-image{float:none}}.exactmetrics-dark[data-v-281ea3e0]{display:block}.exactmetrics-colorpicker-preview span{width:40px;height:40px;display:inline-block;border:1px solid #b9c9d7;border-radius:5px}.exactmetrics-colorpicker-picker{position:absolute;z-index:100}.exactmetrics-colorpicker-picker .hu-color-picker{min-width:218px!important}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block{z-index:auto}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block:not(:first-child){margin-top:50px}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block:not(:first-child):before{content:"";position:absolute;top:-25px;background:#d6e2ed;display:block;height:1px;left:-100%;right:-100%}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{display:none}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-right:0}.exactmetrics-pp-theme-picker-container{background:#f4f3f7;border-radius:10px;padding:25px 25px 0;margin-bottom:15px}.exactmetrics-pp-theme-picker{overflow:hidden}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-carousel,.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide:after{content:"";margin-left:48%}.exactmetrics-pp-theme-picker .exactmetrics-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)}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-option-selected,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option:focus,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option:hover{border:3px solid #6528f5;padding:15px 18px;outline:none}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-not-available .exactmetrics-pp-theme-icon,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-not-available .exactmetrics-pp-theme-name{opacity:.6}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-active-icon{position:absolute;right:5px;top:5px}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-icon{display:block;width:110px;height:94px}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-name{color:#210f59;font-size:14px;margin-top:8px;display:block;text-align:left}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-icon{background:url(../img/pp-theme-icons.png) no-repeat 0 0;background-size:488px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{background-position-x:-378px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-echo .exactmetrics-pp-theme-icon{background-position:0 -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-foxtrot .exactmetrics-pp-theme-icon{background-position:-126px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-golf .exactmetrics-pp-theme-icon{background-position:-252px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-hotel .exactmetrics-pp-theme-icon{background-position:-378px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-india .exactmetrics-pp-theme-icon{background-position:0 -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-juliett .exactmetrics-pp-theme-icon{background-position:-126px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-kilo .exactmetrics-pp-theme-icon{background-position:-252px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-lima .exactmetrics-pp-theme-icon{background-position:-378px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-mike .exactmetrics-pp-theme-icon{background-position:0 -378px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-november .exactmetrics-pp-theme-icon{background-position:-126px -378px}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls{text-align:center;font-size:14px;color:#626d83;margin-bottom:25px}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls>span{display:inline-block;margin:0 11px;vertical-align:middle}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button{border:none;border-radius:3px;background:rgba(33,15,89,.1);width:20px;height:20px;text-align:center;color:#626d83;font-size:8px;cursor:pointer}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:focus,.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:hover{background:rgba(33,15,89,.3)}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:disabled{opacity:.5;cursor:default}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button i{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button.exactmetrics-pp-themes-slider-button-next i{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-option{text-align:center}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-name{position:absolute;left:18px;bottom:10px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-icon{width:74px;height:46px;background:url(data:image/png;base64,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) no-repeat 0 0;background-size:392px;display:inline-block}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-212px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-106px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{height:43px;background-position:-318px 0}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-echo .exactmetrics-pp-theme-icon{height:76px;background-position:0 -73px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-foxtrot .exactmetrics-pp-theme-icon{background-position:-106px -90px;height:41px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-golf .exactmetrics-pp-theme-icon{background-position:-212px -83px;height:56px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-hotel .exactmetrics-pp-theme-icon{height:50px;background-position:-318px -86px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-option{text-align:center}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-name{position:absolute;left:18px;bottom:10px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-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}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-74px;background-position-y:-6px;height:66px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-148px;height:50px;background-position-y:-14px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{height:78px;background-position:-222px 0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-preview{position:relative}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls{margin-right:22px;margin-bottom:20px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls input[type=number]{width:40px;height:40px;border-radius:5px;border:1px solid #b9c9d7;padding:2px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls-inputs{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label{font-size:14px;width:auto;margin-right:9px;color:#210f59;margin-bottom:8px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label span{display:block}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-pp-control-label{margin-bottom:4px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input{border-radius:5px 0 0 5px;text-align:center;-moz-appearance:textfield}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input::-webkit-inner-spin-button,.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow{background:#b9d8f3;padding:3px 5px;border:1px solid #b9c9d7;border-left-width:0;cursor:pointer}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow:focus,.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow:hover{background:#fff}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-up{border-radius:0 5px 0 0;border-bottom:0;padding-bottom:4px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-up i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-down{border-radius:0 0 5px 0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-unit{font-size:14px;color:#210f59;margin-left:5px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls-description{font-weight:700}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline{display:-webkit-box;display:-ms-flexbox;display:flex;padding-right:9px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline .exactmetrics-colorpicker-preview span{border-top-right-radius:0;border-bottom-right-radius:0;border-right-width:0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline input[type=text]{border-top-left-radius:0;border-bottom-left-radius:0;max-width:108px}.exactmetrics-admin-page .exactmetrics-color-picker{position:relative;max-width:40px}.exactmetrics-admin-page .exactmetrics-color-picker .exactmetrics-colorpicker-picker{bottom:-120px;margin-left:10px;left:100%}.exactmetrics-admin-page .exactmetrics-pp-posts-picker .multiselect__input{border:none;height:auto;padding:2px 0 0;font-size:14px;line-height:1.4em;background:rgba(0,0,0,0);min-height:0;margin-bottom:10px}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block .exactmetrics-settings-input-select+p{margin-top:25px}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#fff;color:#210f59;border-bottom-width:1px;border-color:#b9c9d7;border-radius:0;line-height:18px;border-right:0;margin:0}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#6528f5;color:#fff;border-color:#b9c9d7}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative;border-radius:0;outline:none}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#6528f5;color:#fff;font-weight:400}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-notice-no-posts{padding-top:15px;cursor:default}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-notice-no-posts span{color:#d83638;font-weight:400}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-beta{width:144px;height:100px;padding:0}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-beta:after{background-image:url(../img/theme-preview-beta.png)}.exactmetrics-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}.exactmetrics-inline-popular-posts-widget{margin-bottom:24px}.exactmetrics-inline-popular-posts-alpha{padding:24px 27px}.exactmetrics-inline-popular-posts-alpha .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1;display:block;margin-bottom:6px}.exactmetrics-inline-popular-posts-alpha .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:1;text-decoration:none}.exactmetrics-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}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-text{margin-left:19px}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-border{display:block;border-bottom:1px solid;margin:16px 0}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-list{list-style:disc inside none}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-list li{font-style:normal;font-weight:400;font-size:16px;line-height:130%}.exactmetrics-inline-popular-posts-delta{border:1px solid #d6e2ed;padding:16px 18px;border-radius:5px}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-icon{margin-right:8px}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;vertical-align:top}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-title{display:block;font-weight:700;font-size:18px;line-height:1;text-decoration:none;margin-top:4px}.exactmetrics-inline-popular-posts-echo{padding:13px 16px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-icon{margin-right:8px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;margin-right:8px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:130%;text-decoration:none}.exactmetrics-inline-popular-posts-foxtrot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-inline-popular-posts-foxtrot .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;display:block}.exactmetrics-inline-popular-posts-foxtrot .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image{padding-top:57%}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image:after{background-image:url(../img/theme-preview-image.jpg)}.exactmetrics-inline-popular-posts-golf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;float:left;background:#fff;padding-right:20px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;clear:both;margin-top:14px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-title:before{width:100%}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-border{display:block;border-width:2px 0 0;border-style:solid;margin-top:10px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-border-2{border-top:1px solid #e2e4e9;margin-top:20px;display:block}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-text{width:100%}.exactmetrics-inline-popular-posts-hotel .exactmetrics-inline-popular-posts-icon{margin-right:10px;vertical-align:middle}.exactmetrics-inline-popular-posts-hotel .exactmetrics-inline-popular-posts-title{font-style:normal;font-weight:700;font-size:18px;text-decoration:none;line-height:130%}.exactmetrics-inline-popular-posts-india{padding:13px 12px 13px 16px;position:relative}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-border{border-width:0 0 0 4px;border-style:solid;position:absolute;left:0;top:0;bottom:0}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-title{font-size:14px;text-decoration:none;font-weight:700}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-label{font-size:14px;text-decoration:none;font-weight:700;margin-right:4px}.exactmetrics-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%}.exactmetrics-inline-popular-posts-juliett .exactmetrics-inline-popular-posts-border{border-width:1px 0 0;border-style:solid;position:absolute;left:0;top:0;right:0}.exactmetrics-inline-popular-posts-juliett .exactmetrics-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%}.exactmetrics-inline-popular-posts-juliett .exactmetrics-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}.exactmetrics-inline-popular-posts-kilo{position:relative;padding:30px 0}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none;display:block;clear:both;margin-top:6px}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-title:before{width:100%}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border,.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border-2{display:block;position:absolute;left:0;right:0;top:0;border-bottom:4px dashed #e2e4e9}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border-2{bottom:0;top:auto}.exactmetrics-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}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-text{margin-left:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:120%;text-decoration:none;display:block;max-width:420px;margin-top:7px}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-image{width:144px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-right:0;margin-left:20px}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image-2{padding-top:69%}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image-2:after{background-image:url(../img/theme-preview-image-2.jpg)}.exactmetrics-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}.exactmetrics-inline-popular-posts-mike .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none;display:block;max-width:380px}.exactmetrics-inline-popular-posts-mike .exactmetrics-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}.exactmetrics-inline-popular-posts-mike .exactmetrics-inline-popular-posts-image{margin-right:20px}.exactmetrics-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}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-text{width:100%}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;margin-top:4px}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-label{display:block;font-size:16px;font-weight:700}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-image{margin-right:20px}.exactmetrics-inline-popular-posts-november .exactmetrics-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}.exactmetrics-sharedcount-status{font-size:12px;color:#777;margin-top:12px;line-height:1.5}.exactmetrics-pp-manual-placement-options{margin-left:-12px;margin-right:-12px}.exactmetrics-pp-manual-placement-option{width:150px;height:150px;border-radius:10px;border:1px solid #9087ac;font-size:14px;line-height:17px;color:#210f59;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)}.exactmetrics-pp-manual-placement-option,.exactmetrics-pp-manual-placement-option .exactmetrics-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}.exactmetrics-pp-manual-placement-option .exactmetrics-pp-manual-placement-options-icon{min-height:40px;margin-bottom:23px}.exactmetrics-pp-manual-placement-option .exactmetrics-pp-manual-placement-options-icon svg path{fill:#6528f5}.exactmetrics-pp-manual-placement-option.exactmetrics-pp-manual-placement-option-active{border:3px solid #6528f5;font-weight:700;background:#f1f7fe}.exactmetrics-pp-placement-options-accordion svg path{fill:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps .exactmetrics-button{margin-top:10px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps input[type=text]{border-color:#9087ac;color:#210f59}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps{width:100%;margin-top:30px}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps li{color:#777}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps li b{color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block{width:calc(50% - 12px);border-radius:10px;background:-webkit-gradient(linear,left top,left bottom,color-stop(17.51%,rgba(101,40,245,.6)),color-stop(74.11%,#37276a));background:linear-gradient(180deg,rgba(101,40,245,.6) 17.51%,#37276a 74.11%);color:#fff;position:relative;height:198px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;text-align:center}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block>div{position:absolute;bottom:0;padding:20px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block .exactmetrics-welcome-overlay{position:fixed;bottom:0}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block .exactmetrics-pp-video-block-icon{margin-bottom:30px;display:inline-block}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block p{color:#fff;margin:0;text-align:left}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block{width:100%}}.exactmetrics-settings-content-pp-inline input[type=number]{max-width:80px}.exactmetrics-settings-content-pp-inline .exactmetrics-collapsible-content .settings-input-text{margin-bottom:20px}.exactmetrics-inline-desc{margin-left:5px}.exactmetrics-widget-popular-posts-widget{margin-bottom:24px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-alpha .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-alpha .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:24px;background:rgba(33,15,89,.1);border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-beta .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-beta .exactmetrics-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:#210f59;font-weight:700;border-left:4px solid #1ec185;padding-left:16px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-charlie .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-charlie .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:24px;background:rgba(33,15,89,.1);border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700;border-top:4px solid #6528f5}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-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:#210f59;font-weight:700;border-top:2px solid #d3d7de}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-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:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:16px;background:rgba(33,15,89,.1);border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:16px;background:rgba(33,15,89,.1);border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-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}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-title{display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-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}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-text{position:absolute;bottom:0;padding:0 14px 14px;left:0;z-index:15}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-bg-img{margin-bottom:0;padding-top:50%;width:100%}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-bg-img:after{z-index:5;border-radius:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-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}.exactmetrics-pp-products-theme-preview-output,.exactmetrics-pp-widget-theme-preview-output{margin-top:28px}.exactmetrics-dummy-text{padding-right:24px}.exactmetrics-dummy-text p{margin-bottom:40px;line-height:180%}.exactmetrics-pp-widget-controls,.exactmetrics-pp-widget-theme-preview{position:relative}.exactmetrics-pp-widget-controls .exactmetrics-settings-input-select-simple select{min-width:50px}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-1 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-1 .exactmetrics-widget-popular-posts-list li{width:100%}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list li{width:calc(33.33333% - 12px)}@media (max-width:767px){.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-2 .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-2 .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.exactmetrics-pp-widget-theme-preview-render h3{font-size:14px;margin-top:14px;margin-bottom:14px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio .exactmetrics-styled-radio{display:none}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio>span{display:inline-block;margin-right:8px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio>span label{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column>span{background:#99a1b2;display:inline-block;width:8px;height:8px;border-radius:1px;margin-bottom:2px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column.exactmetrics-wide-column-two>span{width:12px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column.exactmetrics-wide-column-one>span{width:100%}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-styled-radio-label-checked .exactmetrics-wide-column{border:2px solid #6528f5;background:#ecf4fe;padding:9px 4px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-styled-radio-label-checked .exactmetrics-wide-column>span{background:#6528f5}.exactmetrics-pp-theme-active-icon svg path{fill:#6528f5}.exactmetrics-inline-checkboxes .exactmetrics-settings-input-checkbox{display:inline-block;margin-right:32px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-bg-img{width:121px;height:121px;padding:0;float:left;margin-right:16px;margin-bottom:12px}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-1:after{background-image:url(../img/theme-widget-1.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-2:after{background-image:url(../img/theme-widget-2.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-3:after{background-image:url(../img/theme-widget-3.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-4:after{background-image:url(../img/theme-widget-4.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-5:after{background-image:url(../img/theme-widget-5.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-6:after{background-image:url(../img/theme-widget-6.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-7:after{background-image:url(../img/theme-widget-7.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-8:after{background-image:url(../img/theme-widget-8.jpg)}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-bg-img{width:80px;height:80px;padding:0;float:left;margin-right:18px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-bg-img{padding-top:74%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-1:after{background-image:url(data:image/jpeg;base64,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)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-2:after{background-image:url(../img/theme-products-2.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-3:after{background-image:url(../img/theme-products-3.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-4:after{background-image:url(../img/theme-products-4.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-5{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-5:after{background-image:url(../img/theme-products-5.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-6{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-6:after{background-image:url(../img/theme-products-6.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-7{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-7:after{background-image:url(../img/theme-products-7.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-8{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-8:after{background-image:url(../img/theme-products-8.jpg)}.exactmetrics-widget-popular-posts-products.exactmetrics-widget-popular-posts-echo .exactmetrics-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.exactmetrics-input-text-small{margin-top:24px}.exactmetrics-input-text-small .settings-input-text-input{max-width:350px}.exactmetrics-input-text-extra-small .settings-input-text{display:inline-block;margin-right:5px}.exactmetrics-input-text-extra-small .settings-input-text-input{max-width:80px}.exactmetrics-widget-popular-posts-products{margin-bottom:24px}.exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-rating{display:block}.exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-rating svg{margin-right:2px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-products-popular-posts-list{margin:0 -12px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-products-popular-posts-price{display:block;margin:10px 0 7px;font-weight:400}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-list,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-list li,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-price,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{display:block;font-weight:400;position:absolute;right:12px;bottom:10px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-title,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-title{margin-top:12px;display:block}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-rating,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-rating{margin-top:13px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-price{display:block;font-weight:400;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-top:4px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:4px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-rating{margin-top:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-bg-img{padding-top:74%}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{position:relative;margin-top:8px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list li{padding:0}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{right:auto;bottom:auto;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-rating{margin-top:8px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-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}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-1 .exactmetrics-products-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-1 .exactmetrics-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list li{width:calc(33.33333% - 24px)}@media (max-width:767px){.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-2 .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-2 .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.exactmetrics-pp-blurred{-webkit-filter:blur(3px);filter:blur(3px)}.exactmetrics-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}.exactmetrics-pp-upgrade-overlay>span{margin:0 10px}.exactmetrics-pp-theme-controls-holder{position:relative}.exactmetrics-pro-pill{font-style:normal;font-weight:700;font-size:11px;background:#1ec185;border-radius:5px;color:#fff;padding:3px 8px;margin-left:8px}.exactmetrics-bg-img.exactmetrics-popular-posts-products-upsell{position:relative;width:750px;height:815px;max-width:100%}.exactmetrics-bg-img.exactmetrics-popular-posts-products-upsell:after{background-image:url(../img/popular-products-bg.jpg)}.exactmetrics-bg-img.exactmetrics-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))}.exactmetrics-bg-img.exactmetrics-popular-products-upsell-browser:after{background-image:url(../img/popular-products-browser.jpg)}.exactmetrics-popular-posts-products-upsell{margin-top:20px}.exactmetrics-popular-posts-products-upsell .exactmetrics-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)}.exactmetrics-popular-posts-products-upsell h2{margin-top:0;font-size:22px;line-height:1.2}.exactmetrics-popular-posts-products-upsell p{font-size:16px;line-height:1.2;color:#626d83;margin-bottom:32px}.exactmetrics-popular-posts-products-upsell .exactmetrics-button-text{margin:28px 0;color:#99a1b2;font-size:16px;display:inline-block}.exactmetrics-popular-posts-widget-category{margin-top:25px}.exactmetrics-popular-posts-widget-category.exactmetrics-popular-posts-widget-category-lite .exactmetrics-settings-input-select{pointer-events:none;opacity:.6}.exactmetrics-popular-posts-products-no-woocommerce{margin-top:72px}.exactmetrics-popular-posts-products-no-woocommerce .exactmetrics-settings-block{opacity:.6;pointer-events:none}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice{position:absolute;top:-72px;left:0;right:0;padding:16px 24px;background:#d7930f;color:#fff;font-size:12px}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a{color:#fff;text-decoration:underline;font-weight:700}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a:focus,.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a:hover{text-decoration:none}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice span{margin-left:8px}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice svg{vertical-align:middle}.exactmetrics-popular-posts-products-top{position:relative}.exactmetrics-pp-sharedcount-controls .inline-field{margin-bottom:25px}.exactmetrics-settings-content-pp-products{width:750px;margin-left:auto;margin-right:auto}.exactmetrics-radio-sub-panel .exactmetrics-pp-posts-picker{margin-top:15px}.exactmetrics-pp-placement-options-accordion{padding-left:30px}.exactmetrics-pp-accordion-item-title{border-bottom:1px solid #d6e2ed;padding:24px 0;position:relative}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-toggle *{cursor:pointer}.exactmetrics-pp-accordion-item-title .exactmetrics-settings-input-toggle-collapsible{position:absolute;right:0;top:40%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics-pp-accordion-item-title .exactmetrics-settings-input-toggle-collapsible i{-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-active{border-bottom:0}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-active .exactmetrics-settings-input-toggle-collapsible i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.exactmetrics-pp-accordion-item-title .exactmetrics-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}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-top>span{margin-right:8px;margin-left:8px}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-top .exactmetrics-settings-input-checkbox{display:inline-block}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-bottom{color:#777;padding-right:45px}.exactmetrics-pp-accordion-item-content{border-bottom:1px solid #d6e2ed;padding:0 0 24px}.exactmetrics-dummy-text p,.exactmetrics-pp-inline-theme-preview-render>p{opacity:.5}.exactmetrics-pp-products-theme-preview-output-narrow,.exactmetrics-pp-widget-theme-preview-output-narrow{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-dummy-text,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-dummy-text{width:60%}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget{width:40%}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list li{width:100%}.exactmetrics-dark[data-v-0fc0f471]{display:block}.exactmetrics-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}.exactmetrics-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}.exactmetrics-dark[data-v-62bc6c18]{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:32px 32px 30px;border-radius:5px;background:#f4f3f7;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:10px 15px 10px 27px;border-radius:5px;margin-right:10px;color:#fff;line-height:1;background:#6528f5;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;font-size:14px}.multiselect__tag.exactmetrics-tag-forced{padding-left:15px}.multiselect__tag.exactmetrics-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;left:0;top:0;bottom:0;font-weight:400;font-style:normal;width:32px;text-align:center;line-height:38px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\f046";color:#fff;line-height:2;margin-top:1px;font-size:16px;display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.multiselect__tag-icon:hover:after{color:#9087ac}.multiselect__tag-icon:focus{outline:none}.multiselect__tag-icon:focus:after{text-decoration:underline;color:#fff}.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;max-height:240px;overflow:auto;border:1px solid #f4f3f7;border-top:none;border-radius:3px;z-index:1;-webkit-overflow-scrolling:touch;padding:6px}.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:#f4f3f7;outline:none;color:#210f59}.multiselect__option--highlight:after{content:attr(data-select);background:#f4f3f7;color:#210f59}.multiselect__option--selected{background:#f4f3f7;color:#210f59;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#6528f5;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#6528f5;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:#6528f5;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#6528f5;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)}}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-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;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-right:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-left:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-right:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-left:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-left:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-left:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;left:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;left:-16%;right:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-right:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;left:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-left:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-left:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-bottom .exactmetrics-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){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{left:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:100% 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:100% 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-left:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);left:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-left:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-left:32px;padding-right:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;right:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:100% 100%;background-image:url(../img/forms-wpforms-upsell.png)}.update-nag{display:none}.exactmetrics-admin-page{min-height:100vh;font-size:15px;color:#4d3f7a;overflow:hidden}.exactmetrics-admin-page a{color:#6528f5}.exactmetrics-admin-page a:focus,.exactmetrics-admin-page a:hover{color:#393f4c}.exactmetrics-admin-page .exactmetrics-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.exactmetrics-admin-page .exactmetrics-settings-content{margin-bottom:75px}@media (min-width:783px) and (max-width:790px){.exactmetrics-admin-page .exactmetrics-settings-content{padding:0 10px}}.exactmetrics-admin-page input.exactmetrics-has-error{border-color:red}.exactmetrics-admin-page input[type=number],.exactmetrics-admin-page input[type=text],.exactmetrics-admin-page textarea{border:1px solid #9087ac;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#210f59}.exactmetrics-admin-page input[type=number]::-webkit-input-placeholder,.exactmetrics-admin-page input[type=text]::-webkit-input-placeholder,.exactmetrics-admin-page textarea::-webkit-input-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number]:-moz-placeholder,.exactmetrics-admin-page input[type=number]::-moz-placeholder,.exactmetrics-admin-page input[type=text]:-moz-placeholder,.exactmetrics-admin-page input[type=text]::-moz-placeholder,.exactmetrics-admin-page textarea:-moz-placeholder,.exactmetrics-admin-page textarea::-moz-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number]:-ms-input-placeholder,.exactmetrics-admin-page input[type=text]:-ms-input-placeholder,.exactmetrics-admin-page textarea:-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number].exactmetrics-has-error,.exactmetrics-admin-page input[type=text].exactmetrics-has-error,.exactmetrics-admin-page textarea.exactmetrics-has-error{border-color:#d83638}.exactmetrics-admin-page input[type=text]:-moz-read-only{background:#fff;color:#9087ac}.exactmetrics-admin-page input[type=text]:read-only{background:#fff;color:#9087ac}.exactmetrics-admin-page textarea{height:150px;background:#f4f3f7;border:none}.exactmetrics-admin-page label{width:100%;font-size:15px;display:inline-block;color:#210f59;margin:2px 0 17px}.exactmetrics-admin-page label>.exactmetrics-dark{margin-bottom:20px}.exactmetrics-admin-page .inline-field{position:relative}.exactmetrics-admin-page .inline-field input{width:100%;background:#f4f3f7;border:none;height:60px;border-radius:3px;padding:6px 20px;font-size:18px}.exactmetrics-admin-page .inline-field input::-moz-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input:-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input:-moz-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::-webkit-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field .exactmetrics-button{position:absolute;right:6px;top:6px;padding:16px 24px 14px}.exactmetrics-admin-page .inline-field .exactmetrics-button [class*=monstericon-]{margin-right:12px}.exactmetrics-admin-page .exactmetrics-error{margin:18px 0 0;color:#d83638;cursor:default}.exactmetrics-admin-page .exactmetrics-error i{margin-right:10px}.exactmetrics-admin-page .exactmetrics-license-type-text{color:#210f59;font-weight:500;margin-bottom:30px}.exactmetrics-admin-page .exactmetrics-license-type-text a{color:#6528f5;font-weight:400;margin-left:10px;position:relative}.exactmetrics-admin-page .exactmetrics-license-type-text a:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f058";right:100%;margin-right:6px}.exactmetrics-admin-page .exactmetrics-settings-license-network .exactmetrics-button-text,.exactmetrics-admin-page .exactmetrics-settings-license-site .exactmetrics-button-text{color:#9087ac;margin-top:16px;font-size:15px}.exactmetrics-admin-page .exactmetrics-dark{color:#210f59;text-transform:capitalize;font-weight:700}.exactmetrics-admin-page .exactmetrics-settings-block{margin:32px auto;width:750px;max-width:100%;position:relative;z-index:50}@media screen and (max-width:830px){.exactmetrics-admin-page .exactmetrics-settings-block{margin-left:24px;margin-right:24px;width:auto}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title{font-weight:700;font-size:24px;padding:12px 0;color:#210f59;position:relative;-webkit-transition:color .2s ease;transition:color .2s ease}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.2}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title:before{position:absolute;width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);right:100%;top:2px;margin-right:30px;color:#210f59;text-align:center;line-height:40px;font-size:15px;-webkit-transition:background .2s ease 0ms,color .2s ease 0ms;transition:background .2s ease 0ms,color .2s ease 0ms;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}@media (max-width:1062px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title:before{right:auto;left:0;margin-top:-6px;position:relative;top:auto;display:inline-block;margin-right:15px;vertical-align:text-top}}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title{cursor:pointer}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus:before,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover:before{background:#6528f5;color:#fff}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus .exactmetrics-settings-input-toggle-collapsible,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover .exactmetrics-settings-input-toggle-collapsible{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content:before{position:relative;display:block;content:"";height:28px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content p{font-size:15px;color:#210f59;font-weight:500;margin:0 0 30px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content h3{font-size:17px;color:#210f59;line-height:1.5;margin:0 0 15px}.exactmetrics-admin-page .exactmetrics-settings-input-radio input[type=radio]{opacity:0;position:absolute}.exactmetrics-admin-page .exactmetrics-settings-input-radio label{color:#210f59;font-size:15px}.exactmetrics-admin-page .exactmetrics-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.exactmetrics-admin-page .exactmetrics-settings-input-radio label>span{vertical-align:middle;font-weight:500}.exactmetrics-admin-page .exactmetrics-settings-input-radio span:last-child label{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-right:16px}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked{border-color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked:after{left:2px;right:2px;top:2px;bottom:2px;position:absolute;content:"";background:#6528f5;display:block;border-radius:50%}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label{color:#210f59;font-size:15px;margin:0;line-height:1.75}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux{cursor:default}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox{background-color:#e9e7ee}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked{background-color:#b9d8f3}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label input{display:none}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label>span{vertical-align:middle}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label:last-child{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox input:checked+.exactmetrics-checkbox-label{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{width:40px;height:23px;position:relative;display:inline-block;border-radius:20px;margin-right:16px;background-color:#e9e7ee}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{right:3px;left:auto;background:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{left:3px;top:3px;bottom:3px;width:17px;position:absolute;content:"";background:#bcb7cd;display:block;border-radius:50%;line-height:1}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{border-radius:3px;background:#fff;width:20px;height:20px}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{display:none;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:rgba(0,0,0,0);color:#6528f5;content:"\f015";left:3px;top:2px}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{display:inline-block}.exactmetrics-admin-page .exactmetrics-info{color:#9087ac;margin-left:10px;cursor:help}.exactmetrics-admin-page .exactmetrics-settings-input-repeater .exactmetrics-error{margin-top:0;margin-bottom:18px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-labels label{color:#210f59;font-weight:700;margin-bottom:6px;font-size:17px}.exactmetrics-admin-page .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row>span{width:100%;margin-right:18px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(33,15,89,.1);color:#210f59;width:32px;height:32px;border-radius:50%;cursor:pointer;display:block;position:relative;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button i{position:absolute;left:10px;top:7px;font-size:15px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button i:before{content:"\f065"}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row input[type=number]{width:30%;margin-right:15px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row select{width:70%;height:40px;margin-right:15px;border:1px solid #9087ac;border-radius:3px;margin-top:0;margin-bottom:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row input[type=text]{border-color:rgba(0,0,0,0)}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-error input{border-color:#e43462}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid{position:relative}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid:after{position:absolute;right:8px;height:26px;width:26px;background:rgba(50,162,122,.1);top:7px;content:"\f015";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#32a27a;border-radius:50%;text-align:center;line-height:26px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-admin-page .exactmetrics-dimensions-count{color:#4d3f7a;font-size:13px;float:right;line-height:1.7;margin-right:46px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-dimensions-count{float:none;margin-top:5px;display:block}}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-settings-input-repeater-labels label{margin-bottom:0;width:auto}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-error{margin:0 0 20px}.exactmetrics-admin-page .exactmetrics-settings-input-select .exactmetrics-dark{margin-bottom:5px}.exactmetrics-admin-page .exactmetrics-settings-input-select label{margin-top:-4px}.exactmetrics-admin-page .exactmetrics-collapsible .exactmetrics-collapsible-content{padding-left:30px}@media screen and (max-width:767px){.exactmetrics-admin-page .exactmetrics-collapsible .exactmetrics-collapsible-content{padding-left:15px}}.exactmetrics-admin-page .exactmetrics-collapsible>p{margin-top:0}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible{color:#210f59;float:right;font-size:22px;padding-left:20px;-webkit-transition:color .2s ease;transition:color .2s ease;margin-top:6px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible{margin-left:auto;margin-top:3px}}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible:hover{color:#393f4c}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible:focus{outline:none}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible i{cursor:pointer}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-dark{display:block;margin-bottom:9px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate p{margin:0}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-ua,.exactmetrics-admin-page .exactmetrics-settings-input-authenticate button{margin-top:14px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-manual-ua+.exactmetrics-error{margin-top:15px}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-paragraph{padding-top:5px}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-text{color:#4d3f7a;font-size:12px;text-decoration:none}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-text:hover{text-decoration:underline}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-upgrade-icon{display:none}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-settings-addon-message{margin-right:25px;width:100%;line-height:1.7}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-settings-addon-message>span{display:block;max-width:468px}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .settings-addons-upgrade-button{-ms-flex-negative:0;flex-shrink:0}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-button{padding:14px 30px;font-weight:500}.exactmetrics-admin-page .exactmetrics-icon-warning{width:48px}.exactmetrics-admin-page .exactmetrics-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=)}.exactmetrics-admin-page .exactmetrics-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;line-height:1.5}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-bg-img{margin-right:25px}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message{width:100%;color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message strong{margin-bottom:10px}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message span{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-icon-warning{display:none}.exactmetrics-admin-page .exactmetrics-undo-redo{float:right;margin-top:16px}.exactmetrics-admin-page .exactmetrics-undo-redo button{border:none;background:rgba(0,0,0,0);color:#6528f5;padding:0;margin-left:5px}.exactmetrics-admin-page #exactmetrics-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:#9087ac;padding-top:7px}.exactmetrics-admin-page #exactmetrics-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page #exactmetrics-license-key-valid:-moz-placeholder,.exactmetrics-admin-page #exactmetrics-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page #exactmetrics-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page .exactmetrics-grey-settings-area{background:#f4f3f7;border-radius:10px;padding:40px 0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-admin-page .exactmetrics-grey-settings-area.exactmetrics-area-spaced-top{margin-top:72px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-auth-actions{max-width:320px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{width:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;padding:0 40px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{width:auto;margin:0 40px -30px;padding:0}}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half:first-child{border-right:1px solid #bcb7cd}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half:first-child{border-bottom:1px solid #bcb7cd;border-right:0;padding-bottom:40px;margin-bottom:40px}}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full{padding:0 40px;max-width:460px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;position:relative}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full h2{font-size:24px;line-height:1.4;margin-top:0;max-width:340px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full p{line-height:1.7;margin:8px 0 18px;font-size:15px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-icon-background-large{left:auto;right:54px;top:45px;font-size:170px}.exactmetrics-admin-page .exactmetrics-grey-settings-area h3{font-size:17px;color:#210f59;line-height:1.5;margin:0 0 20px}.exactmetrics-admin-page .exactmetrics-grey-settings-area p{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-highlight{font-size:17px;font-weight:700;color:#210f59;display:block}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-button-text{font-size:15px;margin-bottom:0;margin-top:11px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-button-text.exactmetrics-spaced-top{margin-top:20px}.exactmetrics-admin-page .exactmetrics-grey-settings-area a>[class*=monstericon-]{margin-left:15px;display:inline-block;font-size:.8em}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area{background:#f4f3f7;border-radius:10px;padding:32px}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button{background:rgba(0,0,0,0);padding:0 0 0 24px;color:#6528f5;text-decoration:underline;position:relative;font-size:15px;outline:none}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:hover{color:#210f59}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:before{content:"+";position:absolute;left:0;font-size:20px;top:0;line-height:13px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-grey-settings-area p{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-settings-full-width-gray{background-color:#f4f3f7;border-top:1px solid #e9e7ee;border-bottom:1px solid #e9e7ee;padding-top:32px;padding-bottom:32px}.exactmetrics-admin-page .exactmetrics-settings-full-width-gray .exactmetrics-settings-block{margin-top:0;margin-bottom:0}.exactmetrics-admin-page .exactmetrics-inline-gray-box{background:#f4f3f7;padding:22px 32px;border-radius:10px;display:inline-block;margin-top:20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-inline-gray-box{width:100%}.exactmetrics-admin-page .exactmetrics-inline-gray-box:first-child{margin-top:0}}.exactmetrics-admin-page .exactmetrics-inline-gray-box .exactmetrics-settings-input-checkbox{padding:10px 0}.exactmetrics-admin-page .settings-input-text-input{margin-top:12px}.exactmetrics-admin-page .edd-logo,.exactmetrics-admin-page .formidable-forms-logo,.exactmetrics-admin-page .gravity-forms-logo,.exactmetrics-admin-page .lifer-lms-logo,.exactmetrics-admin-page .memberpress-logo,.exactmetrics-admin-page .woocommerce-logo,.exactmetrics-admin-page .wpforms-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.exactmetrics-admin-page .edd-logo,.exactmetrics-admin-page .formidable-forms-logo,.exactmetrics-admin-page .gravity-forms-logo,.exactmetrics-admin-page .lifer-lms-logo,.exactmetrics-admin-page .memberpress-logo,.exactmetrics-admin-page .woocommerce-logo,.exactmetrics-admin-page .wpforms-logo{margin-top:18px}}.exactmetrics-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.exactmetrics-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.exactmetrics-admin-page .lifer-lms-logo{background-image:url(data:image/png;base64,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);width:116px}.exactmetrics-admin-page .wpforms-logo{background-image:url(../img/logo-wp-forms.png);width:115px}.exactmetrics-admin-page .formidable-forms-logo{background-image:url(../img/logo-formidable-forms.png);width:110px}.exactmetrics-admin-page .gravity-forms-logo{background-image:url(data:image/png;base64,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);width:115px}.exactmetrics-admin-page .misc-forms-logo:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\0049";color:#bcb7cd;font-size:40px}.exactmetrics-admin-page .exactmetrics-plugin-blocks{margin:30px 0;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}.exactmetrics-admin-page .misc-forms-logo{content:"\f01e";height:25px;line-height:31px;width:34px}.exactmetrics-admin-page .exactmetrics-spaced-input{margin-bottom:50px}.exactmetrics-admin-page .exactmetrics-plugin-block{background:#f4f3f7;border-radius:10px;padding:10px;text-align:center;width:calc(50% - 7px);margin-bottom:15px}@media (max-width:665px){.exactmetrics-admin-page .exactmetrics-plugin-block{width:100%}}.exactmetrics-admin-page .exactmetrics-plugin-block.exactmetrics-plugin-block-active{border:2px solid #32a27a;background:#fff}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo{background:#fff;border-radius:5px;padding:12px 10px;text-align:center}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo .exactmetrics-bg-img{padding-top:0;display:inline-block}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo .exactmetrics-bg-img.memberpress-logo{width:198px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content h4{color:#210f59;font-size:15px;line-height:1.7;margin:20px 0 5px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content p{color:#9087ac;line-height:1.7;margin-bottom:20px;margin-top:5px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content .monsterinsgights-plugin-check{margin-top:10px;background:rgba(50,162,122,.1);width:40px;height:40px;display:inline-block;border-radius:50%;text-align:center;color:#32a27a;font-size:15px;line-height:40px}.exactmetrics-admin-page .exactmetrics-settings-callout{background:#fff;border-radius:5px;border:1px solid #f4f3f7;padding:19px 14px 26px 78px;position:relative;-webkit-box-shadow:0 10px 22px 0 rgba(0,0,0,.1);box-shadow:0 10px 22px 0 rgba(0,0,0,.1)}.exactmetrics-admin-page .exactmetrics-settings-callout:before{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-style:solid;border-width:0 8px 10px;content:"";bottom:100%;left:22px;z-index:15}.exactmetrics-admin-page .exactmetrics-settings-callout:after{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #f4f3f7;border-style:solid;border-width:0 9px 11px;content:"";bottom:100%;left:21px;margin-bottom:1px;z-index:10}.exactmetrics-admin-page .exactmetrics-settings-callout .monstericon-info-circle-regular{position:absolute;font-size:24px;left:23px;top:20px;color:#bcb7cd}.exactmetrics-admin-page .exactmetrics-settings-callout h4{color:#210f59;font-size:15px;line-height:1.5;margin:0 0 13px}.exactmetrics-admin-page .exactmetrics-settings-callout a{font-weight:700}.exactmetrics-admin-page .exactmetrics-settings-callout .exactmetrics-close-button{border:none;padding:0;background:rgba(0,0,0,0);color:#bcb7cd;top:11px;right:14px;position:absolute}.exactmetrics-admin-page .exactmetrics-settings-callout .exactmetrics-grey-link{margin-left:16px}.exactmetrics-admin-page .exactmetrics-settings-callout.exactmetrics-settings-callout-arrow-bottom:after,.exactmetrics-admin-page .exactmetrics-settings-callout.exactmetrics-settings-callout-arrow-bottom:before{top:100%;bottom:auto;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.exactmetrics-admin-page .exactmetrics-grey-link{color:#9087ac}.exactmetrics-first-time-notice .exactmetrics-notice-button{margin-top:20px}.exactmetrics-settings-blur .exactmetrics-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.exactmetrics-settings-blur.exactmetrics-path-general .exactmetrics-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.exactmetrics-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 .exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-left:-375px}}.exactmetrics-not-authenticated-notice .exactmetrics-auth-manual-connect-paragraph{display:none}.exactmetrics-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-button{margin:0 20px}.exactmetrics-not-authenticated-notice .exactmetrics-dark{font-weight:400;margin-bottom:20px}.exactmetrics-settings-content.settings-advanced .exactmetrics-settings-block:first-child{z-index:60}.exactmetrics-admin-page .exactmetrics-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){.exactmetrics-admin-page .exactmetrics-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}}.exactmetrics-admin-page .exactmetrics-logos-row .exactmetrics-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%}.exactmetrics-admin-page .exactmetrics-report-ecommerce:after{background-image:url(../img/exactmetrics-report-ecommerce.png)}.exactmetrics-admin-page .exactmetrics-addon-ads,.exactmetrics-admin-page .exactmetrics-addon-amp,.exactmetrics-admin-page .exactmetrics-addon-dimensions,.exactmetrics-admin-page .exactmetrics-addon-eu-compliance,.exactmetrics-admin-page .exactmetrics-addon-forms,.exactmetrics-admin-page .exactmetrics-addon-instant-articles,.exactmetrics-admin-page .exactmetrics-addon-optimize,.exactmetrics-admin-page .exactmetrics-addon-performance,.exactmetrics-admin-page .exactmetrics-addon-scroll{width:48px;padding-top:110%}.exactmetrics-admin-page .exactmetrics-addon-eu-compliance{padding-top:100%}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmBAMAAADG74kWAAAAFVBMVEXW4urW4urW4uoAAADW4uqsvclQn+ITLWFyAAAABHRSTlPsoxwAEnMmfgAAAIFJREFUWMPt2LEJgDAUBNCvOICFAwhu4AQKP06QbCDuP4J9sPCKwOm/KwOvusCHs3V0IN1is0PpbcLAbgMGNnMwvwGp1MmPj7EBYXGEgLA4QkBYHCFI5VVybEBYHCEgLE5AQEBAIAQgPIqE4LjqnAJtwNe+RlMAz0XwIAVPXvCodgNhA6kmkI3HfAAAAABJRU5ErkJggg==)}.exactmetrics-admin-page .exactmetrics-addon-optimize{padding-top:100%}.exactmetrics-admin-page .exactmetrics-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=)}.exactmetrics-admin-page .exactmetrics-addon-dimensions{padding-top:105%}.exactmetrics-admin-page .exactmetrics-addon-dimensions:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABmCAMAAACa572iAAAB0VBMVEUAAABQn+JQn+KMttlQn+KsvclQn+JQn+KsvcmsvcmsvcmsvcmsvcnW4uqsvcmsvclQn+KsvclQn+KsvcnW4upQn+JQn+K90+XW4upQn+KsvcnW4upQn+KsvclQn+LW4uqsvcmsvcnW4uqsvclQn+LW4uqsvclQn+KsvcmsvcnW4upQn+KsvcnW4upQn+KsvcnW4uqsvcmsvclQn+KsvcmsvclQn+KsvcnW4uqsvcnW4uq1xdDW4upQn+JQn+KsvcmsvcmsvcnW4uqsvcmsvcmsvcmsvclQn+LW4uqsvcmsvcnW4urW4urW4uq9zNbW4upQn+KsvcnW4uqsvclQn+LW4uqsvcmsvclQn+LW4uqsvcnW4uqsvclQn+KsvcmsvcmsvcnW4uqsvclQn+KsvclQn+KsvcmsvclQn+LW4upQn+LW4urW4urW4upQn+JQn+LW4uqsvcnW4uqsvcnW4urW4urW4urW4urW4upQn+KIsdPW4urW4urW4urW4urW4upQn+LW4upQn+JQn+JQn+KsvcnW4uqsvcnW4upQn+KsvclQn+LW4upfpN58rdaZt86rvclSoOFjpd1sqNuku8xZouB2rNiDsNWRtNFzq9h5rNcaIjehAAAAinRSTlMAabQCIv5m/PZpVbUj+/vxwzkR7mBeMQbs6+TZ08vHppMoIBQM9uvn29LOpaGZj4BmUUZBPywaGhQRDwnx8N/e1ca8uKadmZV3cE0zKhkM483Cwb28rq6phn98e3RwZ2NbQ0I4MSweD+ze19PHtbOckYuKh3BqUkk48tK4n5OMiHhVVU9KQzk0MSjF3zbcAAAEo0lEQVRo3u2XZ1cTQRSGX12DMYQESDQQQAhRBAFBiooiihRpIoiAFJFq7733OglNsf5aYZOdZPfuZnez+eIxz6c9M+c8O3PvzJ0ZJMH2lpA2LRmwyLtQYt7CGjd1/JthjWwdf+E/7t8Ja5zT8Z+DNXZlJx7+LlhEqM8ojMoqMyJUSrHPqBeQAjZHfZsQYVPc2kz70/60P+1P+9P+/9S/q0XDv4cc7pauKNyfITXsQwr4slXS1SPCnNSwdQHWOcvvOgJpyhZgle18sDsgscCntN1ycvdIqpOIsU9q3JMLa3BTfq7GXy2xg0SCRs0CQjZJLu1IaXLpxCw88XLzSZhpYi7rptg52TFUXmZ3efyt7Q7EcZIml5PLU3xLR99gZ3F06sWAxm4OCSliMnJ4DndKhqtb1CiUugcSp9gu90+BlzGjbEIimJxtUoAvG/YfPZCE/1bIOJXm/XMhM9Sb9QsDpvyFWim+1F2h8LtLAgDOh8xxHjGCkzXRRXhk3MMotnbngaOhdb7/WVo06H8SS/FB/7ojsxFA3TGmjv3paii0urTG2MoPsyn2tUYG2eG8Z2OaLC/+XhM/Vr6ZTHEnDwMzxJrBEF31iXoHM8vyasgQr8Xge5hpfhrcxRtFNpOZZ+Wr4TXaw5Jh2Zj/LITjLCmMraF8ktwUTwCD2gqbx860WTSUYGgtnorugABcnM60WQnQANqYGn4HJD6pJ2jluxH/PjjLGWUwiBj9Q2r+pZARFoCmGjdT4DkoL9gVxP7L2Pq/iQ2a7in+0A05jS5Tdk7+Aak+s3jKjkBBp6zfaH3O5zdIJ4unBEpyaOj1yY6dL3UsHgcIbpPFbWtL5XsBnP2K6xqhNb6/CmaZlvkbQZDV2HaYRH/8RdbG/0Hmn6aPljKSf1NclPk7Sf+8rH8SZmmUFTF3EApKZP5xmCPQLtPTAATtitrqEGAYZ5WLFP79kDHKlByX9sjhB8NeiHwcHitVfwpRXI745NYwFUbFi9lEczgc7hXvlafD4aznh1RXHsXWwUtoj8YB3QCU7g1vcKa0t+9Ql/iZN0N3vjr20QsNjTmOkmNMgwvA9TBh92GyM5PDFgD2Un+W0l+XpL8NwBvqv62eAPPMAioTyKIJzrElox/BOo+zwkrug1DFzGN3AhCuqeT3FPE3+c25+YvPK0lvdHlv50W/X4AwazpCmfB1VVdfiRhP94obuTg6gerqu8o58A1anvBPx1zSRxBjsZR+hoivgDcVqx9PZVNCj0dbX3Uk0BYJ/jwwTGUPeFMBefIOMua607RxEmjtN79Y83rK14dRB+AMl9VKkj7e1AzC/GxQOisrGMVd0x8tdjkN4u3oBJd5JUVpbBEhIXUjCnt5dxMUFHPZS0R5yJtOQweyGgkTXJYXrThCLGTPrPtLr8US7BP1d2N/fGTJz3klLZfavj6vVIquQ8Ky/1BzmDIDA7jJUaJKLdUXQw966LicUEG7Puvj9Mfrt0GD3jDhPgzR7xjvaGstKhoauTMVgBYnqD+vH6mjIEw5hdTxKFL0r3gnxmpvROLfhVRySozQQ3HD7d7YCY+RYmZOZFVHF2tzgddH+v8CoAfi/0AbqdkAAAAASUVORK5CYII=)}.exactmetrics-admin-page .exactmetrics-addon-performance{padding-top:105%}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-addon-scroll{padding-top:105%}.exactmetrics-admin-page .exactmetrics-addon-scroll:after{background-image:url(data:image/png;base64,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)}.exactmetrics-admin-page .exactmetrics-upsell-large{padding-bottom:35px}@media (max-width:767px){.exactmetrics-admin-page .exactmetrics-upsell-large{padding-left:10px;padding-right:10px;line-height:1.2}}.exactmetrics-admin-page .exactmetrics-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.exactmetrics-admin-page .exactmetrics-upsell-large h2{font-size:18px;margin-top:0}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-coupon{color:#6528f5;border:1px dashed #6528f5;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:left;margin:10px 0}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .settings-input-license p{color:#210f59;margin-bottom:15px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .settings-input-license p a{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-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)}.exactmetrics-admin-page .exactmetrics-settings-ecommerce .exactmetrics-upsell-left p{max-width:350px;line-height:1.7;margin-bottom:22px}.exactmetrics-admin-page .exactmetrics-settings-ecommerce .exactmetrics-full-width-upsell{margin-bottom:0}.exactmetrics-admin-page #em-upgrade-confirmation .exactmetrics-welcome-overlay-inner{width:742px;max-width:calc(100% - 64px);border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5);height:auto;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation{display:-webkit-box;display:-ms-flexbox;display:flex;padding-bottom:26px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation h2{font-size:24px;line-height:1.4;color:#210f59;margin-top:9px;margin-bottom:19px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation p{font-size:15px;line-height:1.75;color:#4d3f7a;margin-bottom:16px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation .exactmetrics-button i{margin-left:15px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons{position:relative;width:250px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;text-align:center;padding:0 50px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light{color:#6528f5;font-size:40px;opacity:.5;position:absolute;top:99px;left:0}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:first-child{font-size:70px;opacity:1;position:relative;top:47px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:nth-child(2){left:105px;top:114px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:nth-child(3){left:52px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:nth-child(4){left:158px}
1
+ .exactmetrics-dark[data-v-217bce3e],.exactmetrics-dark[data-v-993e4e00],.exactmetrics-dark[data-v-4619bc56]{display:block}.exactmetrics-addons-navbar{text-align:left}.exactmetrics-addons-navbar h1{display:inline-block;font-size:32px;line-height:1.3;font-weight:600;margin:0;color:#210f59}@media (max-width:959px){.exactmetrics-addons-navbar h1{font-size:24px}}.exactmetrics-addons-navbar .exactmetrics-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:0;width:310px;position:relative}@media (max-width:750px){.exactmetrics-addons-navbar .exactmetrics-addons-filters{width:100%;margin-top:20px}}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]{height:40px;margin-right:0;padding-left:20px;padding-right:28px;font-size:14px;border-color:#f4f3f7;background:#f4f3f7;border-radius:3px}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]::-webkit-input-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]:-moz-placeholder,.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]::-moz-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]:-ms-input-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters>i{position:absolute;right:20px;top:10px;z-index:10;color:#210f59;font-size:15px}.exactmetrics-addon-inactive .exactmetrics-addon-status span,.exactmetrics-addon-not-available .exactmetrics-addon-status span,.exactmetrics-addon-not-installed .exactmetrics-addon-status span{color:#9087ac}.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}#exactmetrics-addons{width:1094px}@media (max-width:782px){#exactmetrics-addons{width:100%}}#exactmetrics-addons .exactmetrics-addons-area{margin:0 10px}@media (max-width:782px){#exactmetrics-addons .exactmetrics-addons-area{margin-left:24px;margin-right:24px}}#exactmetrics-addons .exactmetrics-addons-no-results{margin-top:25px;padding:0 10px}#exactmetrics-addons .exactmetrics-addons-no-results p{font-size:16px}#exactmetrics-addons .exactmetrics-addons-no-results>div{visibility:hidden;-webkit-animation:loadExactMetricsSettingsNoJSView 0s 2s forwards;animation:loadExactMetricsSettingsNoJSView 0s 2s forwards}.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button{background:#9087ac;color:#fff}.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button:hover{background:#fff;color:#37276a}.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{padding:0;width:100%;margin-left:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation{background:none;position:relative;-webkit-box-shadow:none;box-shadow:none}@media (max-width:959px){.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation{padding:0;left:0}}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation .exactmetrics-main-navigation-open{padding:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-logo-area{display:none}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-header{background:rgba(0,0,0,0);border-bottom:1px solid #e9e7ee;padding:32px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-full-width-upsell{min-height:360px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-upsell-title{padding:32px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-upsell-title h2{font-size:32px;margin:0}.exactmetrics-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:64px;margin-bottom:33px}@media (max-width:782px){.exactmetrics-addons-list{margin-top:24px}}.exactmetrics-addons-list .exactmetrics-addon{width:calc(50% - 16px);position:relative;background:#f4f3f7;padding:0 0 72px;margin-bottom:32px;border-radius:8px}@media (max-width:782px){.exactmetrics-addons-list .exactmetrics-addon{width:100%}}.exactmetrics-addons-list .exactmetrics-addon h3{color:#210f59;font-size:17px;line-height:1.5;margin-top:9px}.exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-excerpt{color:#210f59;font-weight:400;margin:12px 0 0;font-size:15px;line-height:1.75}.exactmetrics-addons-list .exactmetrics-addon-top{padding:30px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-addons-list .exactmetrics-addon-image{width:68px;height:68px;background:#fff;-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;border-radius:50%;text-align:center;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}.exactmetrics-addons-list .exactmetrics-addon-image i{font-size:23px;color:#210f59}.exactmetrics-addons-list .exactmetrics-addon-image.exactmetrics-addon-noicon{border-radius:4px;width:80px;height:80px;padding:12px}.exactmetrics-addons-list .exactmetrics-addon-image img{max-width:100%}.exactmetrics-addons-list .exactmetrics-addon-message{position:absolute;bottom:0;background:#e9e7ee;left:0;right:0;border-radius:0 0 8px 8px}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-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}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-addon-status{font-size:15px;color:#210f59}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-addon-action{-ms-flex-item-align:end;align-self:flex-end}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-button{padding-bottom:11px;padding-top:12px;min-width:146px;font-size:14px;line-height:1.2;border-radius:3px;text-align:center}.exactmetrics-addons-list .exactmetrics-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.exactmetrics-path-addons .exactmetrics-header{display:none}.exactmetrics-file-input{margin-bottom:20px}.exactmetrics-tools .exactmetrics-dark{margin-bottom:5px;display:block}.exactmetrics-admin-page .exactmetrics-tools-url-builder p .exactmetrics-info{margin-left:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text{margin-bottom:20px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text .exactmetrics-dark{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text input[type=text]{background:#f4f3f7;border:none;color:#9087ac}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area{width:750px;margin:0 auto;max-width:100%;display:block;padding-left:40px;padding-right:40px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area textarea{background-color:#fff}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area{padding-left:24px;padding-right:24px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area .exactmetrics-settings-block{margin-left:0;margin-right:0}}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-tools-small-text{font-size:13px;color:#9087ac;margin-left:9px;display:inline-block;font-weight:400}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-tools-description-top{font-size:15px;margin-top:10px;line-height:1.75;display:inline-block}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{margin-bottom:0}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span{color:#4d3f7a;line-height:1.75}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span.exactmetrics-dark{font-size:17px;color:#210f59}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span.exactmetrics-info{color:#9087ac}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled{margin-bottom:0}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled i{margin-right:13px}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled input{display:none}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label{display:block;background:#e9e7ee;border-radius:5px;padding:16px 24px;color:#6528f5;text-decoration:underline;text-align:center}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label>span{color:#6528f5}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label:focus,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label:hover{text-decoration:none}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-filename{font-size:13px;margin-top:8px;line-height:175%;color:#9087ac;text-overflow:ellipsis;overflow:hidden;white-space:pre}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-input-description{color:#9087ac;font-size:13px;line-height:1.7;margin-bottom:20px}.exactmetrics-required{color:#d4393d}textarea:-moz-read-only{background-color:#210f59}textarea:read-only{background-color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-row p{margin-top:0}.exactmetrics-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-tools-info-row .exactmetrics-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-tools-info-row .exactmetrics-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.exactmetrics-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content p{font-weight:400}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-description p{font-size:13px;margin:0;line-height:1.75}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-label p{margin:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-toolsadditional-info{margin-bottom:15px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-toolsadditional-info i{margin-right:10px;color:#6528f5}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad{background-color:#6528f5;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){.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad{padding-bottom:50px}}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-title,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-description,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-description{color:#fff;font-family:Roboto,sans-serif;line-height:20px}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button{background:#4615bd;border:0;font-size:16px;font-weight:700;border-radius:5px;font-family:Roboto,sans-serif;position:relative;padding-right:76px;padding-left:60px}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:hover{background:#4b11d7;border-color:#4b11d7;outline:none}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:after,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:after{position:absolute;content:"";right:53px;top:50%;width:16px;height:17px;margin-top:-8px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACESURBVHgB3ZPRDYAgDESrE+gGjuIIjshGjlA3kA3OkmAEQgvGP19S7ud6NA0QKQBgPLDmG4wAZEah5hvpI38KkJ1tydZRGpGzUsUwSe1o49RxOkIctTBC2s1GiLPMXLktNC9RnTEVE3TuEHMvQzioHy81JfrqIXn5T7PoEdVbO9A4C+ULdv1uYZMCHL8AAAAASUVORK5CYII=);background-repeat:no-repeat}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-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){.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo{right:10px;bottom:0}}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks{position:relative;background:#4b11d6;border-color:#4b11d6;margin-left:15px;padding-right:48px;padding-left:23px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:active,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:hover{background:rgba(75,17,214,.8);border-color:rgba(75,17,214,.8);outline:none}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-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.exactmetrics-prettylinks-flow-page{background:#fff}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{max-width:770px;margin:0 auto}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{padding:0 30px}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{max-width:700px}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow a,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow div,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h1,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h2,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h3,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h4,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow p,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow span{font-family:Roboto,sans-serif}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow p{font-size:16px;line-height:21px;color:#393f4c}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header{text-align:center;max-width:680px;margin:0 auto;padding-top:75px;padding-bottom:20px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-tools-prettylinks-flow-header-logo{min-height:56px;background-image:url(../img/em-pl-logo.svg);background-repeat:no-repeat;background-position:50%}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-prettylinks-flow-title{font-size:39px;font-weight:900;line-height:46px;text-align:center;color:#393f4c;margin-top:60px;margin-bottom:18px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-prettylinks-flow-description{max-width:560px;margin:0 auto}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:25px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-image{margin-left:-35px}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-image{margin-left:0}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-description{padding-left:16px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-description h3{margin-top:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard{border-radius:5px;border:1px solid #e2e4e9;margin-bottom:36px}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard{text-align:center;padding:30px 30px 0}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated{border-width:2px;border-color:#6528f5}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-prettylinks-flow-counter,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-prettylinks-flow-counter{background:#6528f5}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-tools-prettylinks-action .exactmetrics-button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-tools-prettylinks-action .exactmetrics-button{background:#6528f5;border-color:#6528f5;color:#fff}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button{pointer-events:auto}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-status-active .exactmetrics-prettylinks-flow-counter{background:#1ec185}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-status-active .exactmetrics-tools-prettylinks-action .exactmetrics-button{pointer-events:none}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-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.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action{padding:30px 0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action h3{font-size:18px;line-height:18px;color:#393f4c;font-weight:700;margin-top:12px;margin-bottom:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action p{margin-top:6px;margin-bottom:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action .exactmetrics-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;position:relative}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button{pointer-events:none}.exactmetrics-about-block{padding:0;background:#fff;margin-top:40px}@media (max-width:782px){.exactmetrics-about-block{padding:0 24px}}.exactmetrics-about-block h3{color:#210f59;font-size:24px;margin:0 0 20px;line-height:1.4;padding-top:25px}.exactmetrics-about-block p{font-size:15px;line-height:1.75;font-weight:500;color:#210f59}.exactmetrics-about-block:after{content:"";display:table;clear:both}div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{width:1094px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{padding-left:24px;padding-right:24px}}div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-left:20px;padding-right:20px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-left:0;padding-right:0}}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{margin-left:-163px}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar .exactmetrics-container{width:auto}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list{padding:0 20px}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:calc(33.3333% - 21px)}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:100%}}div[class*=" exactmetrics-path-about-"] .exactmetrics-addon-image,div[class^=exactmetrics-path-about-] .exactmetrics-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*=" exactmetrics-path-about-"] .monstericon-star:before,div[class^=exactmetrics-path-about-] .monstericon-star:before{color:#fdb72c}.exactmetrics-lite-vs-pro-table{padding:0}.exactmetrics-lite-vs-pro-table .exactmetrics-lite-vs-pro-footer{background:#e9e7ee}.exactmetrics-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.exactmetrics-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.exactmetrics-features-table{width:100%;border-collapse:collapse;position:relative;margin-bottom:95px}.exactmetrics-features-table tr{position:relative}.exactmetrics-features-table tr:first-child td{border-radius:0 10px 0 0}.exactmetrics-features-table tr:first-child .exactmetrics-features-table-feature-title+td{border-radius:10px 0 0 0}.exactmetrics-features-table tr:first-child:after{display:none}.exactmetrics-features-table tr:after{display:block;border-top:1px solid #bcb7cd;opacity:.5;content:"";position:absolute;left:0;right:40px}.exactmetrics-features-table tbody tr:last-child td{padding:0;background:none}.exactmetrics-features-table tbody tr:last-child:after{display:none}.exactmetrics-features-table td,.exactmetrics-features-table th{width:33.33333%;padding:40px;vertical-align:top}.exactmetrics-features-table td p,.exactmetrics-features-table th p{margin:0}.exactmetrics-features-table th{text-align:left;border-right:none;font-size:24px;line-height:1.4}.exactmetrics-features-table th i{width:40px;height:40px;border-radius:50%;color:#210f59;background-color:rgba(33,15,89,.1);display:inline-block;text-align:center;line-height:40px;font-size:15px;margin-right:30px}.exactmetrics-features-table td{background:#f4f3f7}.exactmetrics-features-table td p{font-size:17px;line-height:1.5}.exactmetrics-features-table td p>span{margin-top:16px;display:block}.exactmetrics-features-table .exactmetrics-features-table-feature-title{background:none;padding-left:0}.exactmetrics-features-table .exactmetrics-features-table-feature-title i{float:left;font-size:23px;color:#6528f5;margin-right:18px}.exactmetrics-features-table .exactmetrics-features-table-feature-title p{font-weight:700;font-size:17px;color:#37276a;line-height:1.5;margin-left:41px}.exactmetrics-features-full:before,.exactmetrics-features-none:before,.exactmetrics-features-partial:before{display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f026";font-size:20px;margin-right:10px;color:#d4393d;position:relative;top:2px;margin-bottom:16px}.exactmetrics-features-full:before,.exactmetrics-features-partial:before{content:"\f022";color:#19865f}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer{padding:40px;text-align:center;border-radius:0 0 10px 10px;border-top:1px solid #bcb7cd}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer h3{color:#210f59;font-size:17px;max-width:350px;line-height:1.5;margin:0 auto 16px}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer p{margin-bottom:24px;font-size:15px;line-height:1.75;color:#210f59;max-width:350px;margin-left:auto;margin-right:auto}.exactmetrics-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-two-column>div{width:50%}.exactmetrics-about-docs-row:after{display:table;clear:both;content:""}.exactmetrics-about-docs-image{width:158px;float:left;margin-right:32px}.exactmetrics-about-docs-image .exactmetrics-bg-img{width:158px;background-color:#fff;border-radius:5px;height:158px;padding-top:0}.exactmetrics-about-docs-image .exactmetrics-bg-img:after{background-position:50%;left:10px;right:10px;top:10px;bottom:10px}.exactmetrics-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.exactmetrics-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.exactmetrics-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.exactmetrics-about-docs-4:after{background-image:url(../img/about-icon-addons-em.png)}.exactmetrics-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.exactmetrics-bg-img.exactmetrics-about-team{padding-top:70%}.exactmetrics-bg-img.exactmetrics-about-team:after{background-image:url(../img/about-team-photo.png)}.exactmetrics-about-docs-text h3{color:#210f59;font-size:17px;line-height:1.5}.exactmetrics-about-docs-text p{margin:16px 0 24px}.exactmetrics-about-page-right-image{float:right;width:48%;text-align:center;margin:0 0 0 20px}@media (max-width:782px){.exactmetrics-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.exactmetrics-about-page-right-image img{width:100%}.exactmetrics-about-page-right-image figcaption{color:#4d3f7a;margin-top:5px}.exactmetrics-about-page-right-image iframe{max-width:100%}.exactmetrics-page-title{padding:32px;line-height:1.3;border-bottom:1px solid #e9e7ee}.exactmetrics-page-title h2{margin:0;font-size:32px;color:#210f59}.exactmetrics-about .exactmetrics-addon-top{padding:40px 40px 24px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-about .exactmetrics-addon-noicon{margin-bottom:10px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon{padding-bottom:145px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message{padding:24px 40px 40px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior{border-top:1px solid #ccc;padding:24px 0 0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-status{margin-bottom:24px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-action{-ms-flex-item-align:start;align-self:start}.exactmetrics-about .exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-upsell-list-item>i{min-width:23px}.exactmetrics-about .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-left:14px;font-size:15px}.exactmetrics-bg-img.exactmetrics-em-logo-color{padding-top:8%;width:387px;max-width:100%}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-em-logo-color{width:133px;padding-top:10%}}.exactmetrics-bg-img.exactmetrics-em-logo-color:after{background-position:50%;background-image:url(../img/em-logo.png)}.exactmetrics-about-page-top{padding:60px 0;background:radial-gradient(64.37% 131.18% at 50.04% 32.71%,hsla(0,0%,100%,.1) 0,hsla(0,0%,100%,0) 100%),rgba(101,40,245,.1);border-bottom:1px solid #e9e7ee;margin-bottom:635px}@media (max-width:782px){.exactmetrics-about-page-top{margin-bottom:0}}.exactmetrics-about-page-top h3{color:#6528f5;margin:0 0 0 135px;font-size:20px;line-height:1.3;font-weight:400}@media (max-width:782px){.exactmetrics-about-page-top h3{margin-left:0}}.exactmetrics-about-page-top h2{max-width:570px;margin-left:135px;margin-top:9px}@media (max-width:782px){.exactmetrics-about-page-top h2{margin-left:0;margin-right:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button{width:750px;max-width:100%;margin-left:135px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button{margin-left:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button p{max-width:300px;margin-right:100px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button p{margin-right:24px}}.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:right;margin-top:10px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:none}}.exactmetrics-about-page-top .exactmetrics-container{width:1094px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-635px;padding-top:52%;cursor:pointer}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:0}}.exactmetrics-bg-img.exactmetrics-about-getting-started-video:after{background-position:100% 100%;background-image:url(../img/about-getting-started-video.png)}.exactmetrics-about-page-top h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:20px}@media (max-width:782px){.exactmetrics-about-page-top h2{font-size:20px}}.exactmetrics-about-page-top p{font-size:15px;line-height:1.7;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title{text-align:center;margin-top:-100px}@media (max-width:782px){.exactmetrics-container.exactmetrics-about-middle-title{margin-top:0;padding:0 24px}}.exactmetrics-container.exactmetrics-about-middle-title p{max-width:500px;margin:0 auto;font-size:15px;line-height:1.75;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:19px}.exactmetrics-admin-page .exactmetrics-wide-purple{background:#6528f5;padding:72px 0;margin-bottom:100px}.exactmetrics-admin-page .exactmetrics-wide-purple .exactmetrics-separator{background:rgba(0,0,0,.2)}.exactmetrics-about-upgrade-box-flex{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:45px}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box{width:334px;padding:65px 93px 56px;background:#210f59;border-radius:10px;color:#fff;text-align:center;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span{font-size:17px;line-height:1.5;display:inline-block}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-large{font-size:48px;line-height:1.3;font-weight:700}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-term{font-size:15px;line-height:1.75;opacity:.5}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box .exactmetrics-button{background-color:#fff;color:#210f59;margin-top:27px;font-weight:500}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes{padding-left:95px;max-width:650px;width:100%}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes h3{color:#fff;font-size:24px;line-height:1.4;font-weight:500;margin-top:17px}.exactmetrics-testimonials-slider{position:relative;padding:0 40px;margin-top:60px}.exactmetrics-testimonials-slides{position:relative;overflow:hidden}.exactmetrics-testimonials-slide{visibility:hidden;position:absolute;top:0;left:0;width:100%;-webkit-transition:.5s;transition:.5s;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image{padding:0 60px 0 80px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image .exactmetrics-bg-img{width:90px;border-radius:50%;height:90px;border:5px solid #37276a;overflow:hidden}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-1:after{background-image:url(../img/testimonial-image-1.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-2:after{background-image:url(../img/testimonial-image-2.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-3:after{background-image:url(../img/testimonial-image-3.jpg)}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text{padding-right:70px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p{color:#fff;font-size:20px;line-height:1.5;margin:0 0 20px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p.exactmetrics-testimonial-text-author{font-size:16px;line-height:1.75;color:#e9e7ee}.exactmetrics-testimonials-slide.exactmetrics-testimonials-slide-active{visibility:visible;position:static}.exactmetrics-testimonials-slide h2{margin:0}.exactmetrics-testimonials-slide img{width:300px}.exactmetrics-testimonials-slider-control{border:none;background:none;color:#fff;font-size:40px;line-height:1;position:absolute;top:45px;margin-top:-20px;padding:0;cursor:pointer}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left{left:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left i:before{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right{right:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right i:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-about-documentation{background:#f4f3f7;border-radius:10px;padding:72px 100px;margin:40px 0 95px}@media (max-width:782px){.exactmetrics-about-documentation{margin:40px 0;padding:32px 24px}.exactmetrics-about-documentation .exactmetrics-about-docs-image{float:none}}.exactmetrics-dark[data-v-281ea3e0]{display:block}.exactmetrics-colorpicker-preview span{width:40px;height:40px;display:inline-block;border:1px solid #b9c9d7;border-radius:5px}.exactmetrics-colorpicker-picker{position:absolute;z-index:100}.exactmetrics-colorpicker-picker .hu-color-picker{min-width:218px!important}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block{z-index:auto}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block:not(:first-child){margin-top:50px}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block:not(:first-child):before{content:"";position:absolute;top:-25px;background:#d6e2ed;display:block;height:1px;left:-100%;right:-100%}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{display:none}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-right:0}.exactmetrics-pp-theme-picker-container{background:#f4f3f7;border-radius:10px;padding:25px 25px 0;margin-bottom:15px}.exactmetrics-pp-theme-picker{overflow:hidden}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-carousel,.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide:after{content:"";margin-left:48%}.exactmetrics-pp-theme-picker .exactmetrics-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)}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-option-selected,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option:focus,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option:hover{border:3px solid #6528f5;padding:15px 18px;outline:none}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-not-available .exactmetrics-pp-theme-icon,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-not-available .exactmetrics-pp-theme-name{opacity:.6}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-active-icon{position:absolute;right:5px;top:5px}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-icon{display:block;width:110px;height:94px}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-name{color:#210f59;font-size:14px;margin-top:8px;display:block;text-align:left}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-icon{background:url(../img/pp-theme-icons.png) no-repeat 0 0;background-size:488px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{background-position-x:-378px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-echo .exactmetrics-pp-theme-icon{background-position:0 -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-foxtrot .exactmetrics-pp-theme-icon{background-position:-126px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-golf .exactmetrics-pp-theme-icon{background-position:-252px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-hotel .exactmetrics-pp-theme-icon{background-position:-378px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-india .exactmetrics-pp-theme-icon{background-position:0 -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-juliett .exactmetrics-pp-theme-icon{background-position:-126px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-kilo .exactmetrics-pp-theme-icon{background-position:-252px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-lima .exactmetrics-pp-theme-icon{background-position:-378px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-mike .exactmetrics-pp-theme-icon{background-position:0 -378px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-november .exactmetrics-pp-theme-icon{background-position:-126px -378px}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls{text-align:center;font-size:14px;color:#626d83;margin-bottom:25px}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls>span{display:inline-block;margin:0 11px;vertical-align:middle}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button{border:none;border-radius:3px;background:rgba(33,15,89,.1);width:20px;height:20px;text-align:center;color:#626d83;font-size:8px;cursor:pointer}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:focus,.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:hover{background:rgba(33,15,89,.3)}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:disabled{opacity:.5;cursor:default}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button i{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button.exactmetrics-pp-themes-slider-button-next i{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-option{text-align:center}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-name{position:absolute;left:18px;bottom:10px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-icon{width:74px;height:46px;background:url(data:image/png;base64,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) no-repeat 0 0;background-size:392px;display:inline-block}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-212px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-106px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{height:43px;background-position:-318px 0}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-echo .exactmetrics-pp-theme-icon{height:76px;background-position:0 -73px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-foxtrot .exactmetrics-pp-theme-icon{background-position:-106px -90px;height:41px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-golf .exactmetrics-pp-theme-icon{background-position:-212px -83px;height:56px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-hotel .exactmetrics-pp-theme-icon{height:50px;background-position:-318px -86px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-option{text-align:center}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-name{position:absolute;left:18px;bottom:10px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-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}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-74px;background-position-y:-6px;height:66px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-148px;height:50px;background-position-y:-14px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{height:78px;background-position:-222px 0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-preview{position:relative}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls{margin-right:22px;margin-bottom:20px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls input[type=number]{width:40px;height:40px;border-radius:5px;border:1px solid #b9c9d7;padding:2px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls-inputs{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label{font-size:14px;width:auto;margin-right:9px;color:#210f59;margin-bottom:8px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label span{display:block}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-pp-control-label{margin-bottom:4px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input{border-radius:5px 0 0 5px;text-align:center;-moz-appearance:textfield}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input::-webkit-inner-spin-button,.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow{background:#b9d8f3;padding:3px 5px;border:1px solid #b9c9d7;border-left-width:0;cursor:pointer}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow:focus,.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow:hover{background:#fff}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-up{border-radius:0 5px 0 0;border-bottom:0;padding-bottom:4px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-up i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-down{border-radius:0 0 5px 0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-unit{font-size:14px;color:#210f59;margin-left:5px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls-description{font-weight:700}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline{display:-webkit-box;display:-ms-flexbox;display:flex;padding-right:9px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline .exactmetrics-colorpicker-preview span{border-top-right-radius:0;border-bottom-right-radius:0;border-right-width:0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline input[type=text]{border-top-left-radius:0;border-bottom-left-radius:0;max-width:108px}.exactmetrics-admin-page .exactmetrics-color-picker{position:relative;max-width:40px}.exactmetrics-admin-page .exactmetrics-color-picker .exactmetrics-colorpicker-picker{bottom:-120px;margin-left:10px;left:100%}.exactmetrics-admin-page .exactmetrics-pp-posts-picker .multiselect__input{border:none;height:auto;padding:2px 0 0;font-size:14px;line-height:1.4em;background:rgba(0,0,0,0);min-height:0;margin-bottom:10px}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block .exactmetrics-settings-input-select+p{margin-top:25px}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#fff;color:#210f59;border-bottom-width:1px;border-color:#b9c9d7;border-radius:0;line-height:18px;border-right:0;margin:0}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#6528f5;color:#fff;border-color:#b9c9d7}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative;border-radius:0;outline:none}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#6528f5;color:#fff;font-weight:400}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-notice-no-posts{padding-top:15px;cursor:default}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-notice-no-posts span{color:#d83638;font-weight:400}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-beta{width:144px;height:100px;padding:0}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-beta:after{background-image:url(../img/theme-preview-beta.png)}.exactmetrics-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}.exactmetrics-inline-popular-posts-widget{margin-bottom:24px}.exactmetrics-inline-popular-posts-alpha{padding:24px 27px}.exactmetrics-inline-popular-posts-alpha .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1;display:block;margin-bottom:6px}.exactmetrics-inline-popular-posts-alpha .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:1;text-decoration:none}.exactmetrics-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}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-text{margin-left:19px}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-border{display:block;border-bottom:1px solid;margin:16px 0}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-list{list-style:disc inside none}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-list li{font-style:normal;font-weight:400;font-size:16px;line-height:130%}.exactmetrics-inline-popular-posts-delta{border:1px solid #d6e2ed;padding:16px 18px;border-radius:5px}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-icon{margin-right:8px}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;vertical-align:top}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-title{display:block;font-weight:700;font-size:18px;line-height:1;text-decoration:none;margin-top:4px}.exactmetrics-inline-popular-posts-echo{padding:13px 16px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-icon{margin-right:8px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;margin-right:8px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:130%;text-decoration:none}.exactmetrics-inline-popular-posts-foxtrot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-inline-popular-posts-foxtrot .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;display:block}.exactmetrics-inline-popular-posts-foxtrot .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image{padding-top:57%}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image:after{background-image:url(../img/theme-preview-image.jpg)}.exactmetrics-inline-popular-posts-golf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;float:left;background:#fff;padding-right:20px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;clear:both;margin-top:14px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-title:before{width:100%}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-border{display:block;border-width:2px 0 0;border-style:solid;margin-top:10px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-border-2{border-top:1px solid #e2e4e9;margin-top:20px;display:block}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-text{width:100%}.exactmetrics-inline-popular-posts-hotel .exactmetrics-inline-popular-posts-icon{margin-right:10px;vertical-align:middle}.exactmetrics-inline-popular-posts-hotel .exactmetrics-inline-popular-posts-title{font-style:normal;font-weight:700;font-size:18px;text-decoration:none;line-height:130%}.exactmetrics-inline-popular-posts-india{padding:13px 12px 13px 16px;position:relative}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-border{border-width:0 0 0 4px;border-style:solid;position:absolute;left:0;top:0;bottom:0}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-title{font-size:14px;text-decoration:none;font-weight:700}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-label{font-size:14px;text-decoration:none;font-weight:700;margin-right:4px}.exactmetrics-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%}.exactmetrics-inline-popular-posts-juliett .exactmetrics-inline-popular-posts-border{border-width:1px 0 0;border-style:solid;position:absolute;left:0;top:0;right:0}.exactmetrics-inline-popular-posts-juliett .exactmetrics-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%}.exactmetrics-inline-popular-posts-juliett .exactmetrics-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}.exactmetrics-inline-popular-posts-kilo{position:relative;padding:30px 0}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none;display:block;clear:both;margin-top:6px}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-title:before{width:100%}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border,.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border-2{display:block;position:absolute;left:0;right:0;top:0;border-bottom:4px dashed #e2e4e9}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border-2{bottom:0;top:auto}.exactmetrics-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}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-text{margin-left:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:120%;text-decoration:none;display:block;max-width:420px;margin-top:7px}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-image{width:144px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-right:0;margin-left:20px}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image-2{padding-top:69%}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image-2:after{background-image:url(../img/theme-preview-image-2.jpg)}.exactmetrics-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}.exactmetrics-inline-popular-posts-mike .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none;display:block;max-width:380px}.exactmetrics-inline-popular-posts-mike .exactmetrics-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}.exactmetrics-inline-popular-posts-mike .exactmetrics-inline-popular-posts-image{margin-right:20px}.exactmetrics-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}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-text{width:100%}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;margin-top:4px}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-label{display:block;font-size:16px;font-weight:700}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-image{margin-right:20px}.exactmetrics-inline-popular-posts-november .exactmetrics-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}.exactmetrics-sharedcount-status{font-size:12px;color:#777;margin-top:12px;line-height:1.5}.exactmetrics-pp-manual-placement-options{margin-left:-12px;margin-right:-12px}.exactmetrics-pp-manual-placement-option{width:150px;height:150px;border-radius:10px;border:1px solid #9087ac;font-size:14px;line-height:17px;color:#210f59;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)}.exactmetrics-pp-manual-placement-option,.exactmetrics-pp-manual-placement-option .exactmetrics-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}.exactmetrics-pp-manual-placement-option .exactmetrics-pp-manual-placement-options-icon{min-height:40px;margin-bottom:23px}.exactmetrics-pp-manual-placement-option .exactmetrics-pp-manual-placement-options-icon svg path{fill:#6528f5}.exactmetrics-pp-manual-placement-option.exactmetrics-pp-manual-placement-option-active{border:3px solid #6528f5;font-weight:700;background:#f1f7fe}.exactmetrics-pp-placement-options-accordion svg path{fill:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps .exactmetrics-button{margin-top:10px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps input[type=text]{border-color:#9087ac;color:#210f59}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps{width:100%;margin-top:30px}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps li{color:#777}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps li b{color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block{width:calc(50% - 12px);border-radius:10px;background:-webkit-gradient(linear,left top,left bottom,color-stop(17.51%,rgba(101,40,245,.6)),color-stop(74.11%,#37276a));background:linear-gradient(180deg,rgba(101,40,245,.6) 17.51%,#37276a 74.11%);color:#fff;position:relative;height:198px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;text-align:center}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block>div{position:absolute;bottom:0;padding:20px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block .exactmetrics-welcome-overlay{position:fixed;bottom:0}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block .exactmetrics-pp-video-block-icon{margin-bottom:30px;display:inline-block}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block p{color:#fff;margin:0;text-align:left}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block{width:100%}}.exactmetrics-settings-content-pp-inline input[type=number]{max-width:80px}.exactmetrics-settings-content-pp-inline .exactmetrics-collapsible-content .settings-input-text{margin-bottom:20px}.exactmetrics-inline-desc{margin-left:5px}.exactmetrics-widget-popular-posts-widget{margin-bottom:24px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-alpha .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-alpha .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:24px;background:rgba(33,15,89,.1);border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-beta .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-beta .exactmetrics-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:#210f59;font-weight:700;border-left:4px solid #1ec185;padding-left:16px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-charlie .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-charlie .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:24px;background:rgba(33,15,89,.1);border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700;border-top:4px solid #6528f5}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-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:#210f59;font-weight:700;border-top:2px solid #d3d7de}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-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:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:16px;background:rgba(33,15,89,.1);border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:16px;background:rgba(33,15,89,.1);border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-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}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-title{display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-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}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-text{position:absolute;bottom:0;padding:0 14px 14px;left:0;z-index:15}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-right:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-bg-img{margin-bottom:0;padding-top:50%;width:100%}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-bg-img:after{z-index:5;border-radius:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-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}.exactmetrics-pp-products-theme-preview-output,.exactmetrics-pp-widget-theme-preview-output{margin-top:28px}.exactmetrics-dummy-text{padding-right:24px}.exactmetrics-dummy-text p{margin-bottom:40px;line-height:180%}.exactmetrics-pp-widget-controls,.exactmetrics-pp-widget-theme-preview{position:relative}.exactmetrics-pp-widget-controls .exactmetrics-settings-input-select-simple select{min-width:50px}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-1 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-1 .exactmetrics-widget-popular-posts-list li{width:100%}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list li{width:calc(33.33333% - 12px)}@media (max-width:767px){.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-2 .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-2 .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.exactmetrics-pp-widget-theme-preview-render h3{font-size:14px;margin-top:14px;margin-bottom:14px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio .exactmetrics-styled-radio{display:none}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio>span{display:inline-block;margin-right:8px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio>span label{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column>span{background:#99a1b2;display:inline-block;width:8px;height:8px;border-radius:1px;margin-bottom:2px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column.exactmetrics-wide-column-two>span{width:12px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column.exactmetrics-wide-column-one>span{width:100%}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-styled-radio-label-checked .exactmetrics-wide-column{border:2px solid #6528f5;background:#ecf4fe;padding:9px 4px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-styled-radio-label-checked .exactmetrics-wide-column>span{background:#6528f5}.exactmetrics-pp-theme-active-icon svg path{fill:#6528f5}.exactmetrics-inline-checkboxes .exactmetrics-settings-input-checkbox{display:inline-block;margin-right:32px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-bg-img{width:121px;height:121px;padding:0;float:left;margin-right:16px;margin-bottom:12px}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-1:after{background-image:url(../img/theme-widget-1.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-2:after{background-image:url(../img/theme-widget-2.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-3:after{background-image:url(../img/theme-widget-3.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-4:after{background-image:url(../img/theme-widget-4.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-5:after{background-image:url(../img/theme-widget-5.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-6:after{background-image:url(../img/theme-widget-6.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-7:after{background-image:url(../img/theme-widget-7.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-8:after{background-image:url(../img/theme-widget-8.jpg)}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-bg-img{width:80px;height:80px;padding:0;float:left;margin-right:18px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-bg-img{padding-top:74%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-1:after{background-image:url(data:image/jpeg;base64,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)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-2:after{background-image:url(../img/theme-products-2.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-3:after{background-image:url(../img/theme-products-3.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-4:after{background-image:url(../img/theme-products-4.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-5{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-5:after{background-image:url(../img/theme-products-5.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-6{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-6:after{background-image:url(../img/theme-products-6.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-7{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-7:after{background-image:url(../img/theme-products-7.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-8{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-8:after{background-image:url(../img/theme-products-8.jpg)}.exactmetrics-widget-popular-posts-products.exactmetrics-widget-popular-posts-echo .exactmetrics-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.exactmetrics-input-text-small{margin-top:24px}.exactmetrics-input-text-small .settings-input-text-input{max-width:350px}.exactmetrics-input-text-extra-small .settings-input-text{display:inline-block;margin-right:5px}.exactmetrics-input-text-extra-small .settings-input-text-input{max-width:80px}.exactmetrics-widget-popular-posts-products{margin-bottom:24px}.exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-rating{display:block}.exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-rating svg{margin-right:2px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-products-popular-posts-list{margin:0 -12px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-products-popular-posts-price{display:block;margin:10px 0 7px;font-weight:400}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-list,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-list li,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-price,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{display:block;font-weight:400;position:absolute;right:12px;bottom:10px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-title,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-title{margin-top:12px;display:block}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-rating,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-rating{margin-top:13px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-price{display:block;font-weight:400;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-top:4px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:4px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-rating{margin-top:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-bg-img{padding-top:74%}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{position:relative;margin-top:8px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list li{padding:0}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{right:auto;bottom:auto;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-rating{margin-top:8px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-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}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-1 .exactmetrics-products-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-1 .exactmetrics-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list li{width:calc(33.33333% - 24px)}@media (max-width:767px){.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-2 .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-2 .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list li{width:100%;margin-left:0;margin-right:0}}.exactmetrics-pp-blurred{-webkit-filter:blur(3px);filter:blur(3px)}.exactmetrics-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}.exactmetrics-pp-upgrade-overlay>span{margin:0 10px}.exactmetrics-pp-theme-controls-holder{position:relative}.exactmetrics-pro-pill{font-style:normal;font-weight:700;font-size:11px;background:#1ec185;border-radius:5px;color:#fff;padding:3px 8px;margin-left:8px}.exactmetrics-bg-img.exactmetrics-popular-posts-products-upsell{position:relative;width:750px;height:815px;max-width:100%}.exactmetrics-bg-img.exactmetrics-popular-posts-products-upsell:after{background-image:url(../img/popular-products-bg.jpg)}.exactmetrics-bg-img.exactmetrics-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))}.exactmetrics-bg-img.exactmetrics-popular-products-upsell-browser:after{background-image:url(../img/popular-products-browser.jpg)}.exactmetrics-popular-posts-products-upsell{margin-top:20px}.exactmetrics-popular-posts-products-upsell .exactmetrics-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)}.exactmetrics-popular-posts-products-upsell h2{margin-top:0;font-size:22px;line-height:1.2}.exactmetrics-popular-posts-products-upsell p{font-size:16px;line-height:1.2;color:#626d83;margin-bottom:32px}.exactmetrics-popular-posts-products-upsell .exactmetrics-button-text{margin:28px 0;color:#99a1b2;font-size:16px;display:inline-block}.exactmetrics-popular-posts-widget-category{margin-top:25px}.exactmetrics-popular-posts-widget-category.exactmetrics-popular-posts-widget-category-lite .exactmetrics-settings-input-select{pointer-events:none;opacity:.6}.exactmetrics-popular-posts-products-no-woocommerce{margin-top:72px}.exactmetrics-popular-posts-products-no-woocommerce .exactmetrics-settings-block{opacity:.6;pointer-events:none}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice{position:absolute;top:-72px;left:0;right:0;padding:16px 24px;background:#d7930f;color:#fff;font-size:12px}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a{color:#fff;text-decoration:underline;font-weight:700}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a:focus,.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a:hover{text-decoration:none}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice span{margin-left:8px}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice svg{vertical-align:middle}.exactmetrics-popular-posts-products-top{position:relative}.exactmetrics-pp-sharedcount-controls .inline-field{margin-bottom:25px}.exactmetrics-settings-content-pp-products{width:750px;margin-left:auto;margin-right:auto}.exactmetrics-radio-sub-panel .exactmetrics-pp-posts-picker{margin-top:15px}.exactmetrics-pp-placement-options-accordion{padding-left:30px}.exactmetrics-pp-accordion-item-title{border-bottom:1px solid #d6e2ed;padding:24px 0;position:relative}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-toggle *{cursor:pointer}.exactmetrics-pp-accordion-item-title .exactmetrics-settings-input-toggle-collapsible{position:absolute;right:0;top:40%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics-pp-accordion-item-title .exactmetrics-settings-input-toggle-collapsible i{-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-active{border-bottom:0}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-active .exactmetrics-settings-input-toggle-collapsible i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.exactmetrics-pp-accordion-item-title .exactmetrics-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}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-top>span{margin-right:8px;margin-left:8px}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-top .exactmetrics-settings-input-checkbox{display:inline-block}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-bottom{color:#777;padding-right:45px}.exactmetrics-pp-accordion-item-content{border-bottom:1px solid #d6e2ed;padding:0 0 24px}.exactmetrics-dummy-text p,.exactmetrics-pp-inline-theme-preview-render>p{opacity:.5}.exactmetrics-pp-products-theme-preview-output-narrow,.exactmetrics-pp-widget-theme-preview-output-narrow{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-dummy-text,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-dummy-text{width:60%}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget{width:40%}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list li{width:100%}.exactmetrics-dark[data-v-0fc0f471]{display:block}.exactmetrics-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}.exactmetrics-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}.exactmetrics-dark[data-v-62bc6c18]{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:32px 32px 30px;border-radius:5px;background:#f4f3f7;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:10px 15px 10px 27px;border-radius:5px;margin-right:10px;color:#fff;line-height:1;background:#6528f5;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;font-size:14px}.multiselect__tag.exactmetrics-tag-forced{padding-left:15px}.multiselect__tag.exactmetrics-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;left:0;top:0;bottom:0;font-weight:400;font-style:normal;width:32px;text-align:center;line-height:38px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\f046";color:#fff;line-height:2;margin-top:1px;font-size:16px;display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.multiselect__tag-icon:hover:after{color:#9087ac}.multiselect__tag-icon:focus{outline:none}.multiselect__tag-icon:focus:after{text-decoration:underline;color:#fff}.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;max-height:240px;overflow:auto;border:1px solid #f4f3f7;border-top:none;border-radius:3px;z-index:1;-webkit-overflow-scrolling:touch;padding:6px}.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:#f4f3f7;outline:none;color:#210f59}.multiselect__option--highlight:after{content:attr(data-select);background:#f4f3f7;color:#210f59}.multiselect__option--selected{background:#f4f3f7;color:#210f59;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#6528f5;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#6528f5;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:#6528f5;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#6528f5;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)}}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-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;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-right:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-left:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-right:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-left:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-left:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-left:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;left:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;left:-16%;right:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-right:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;left:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-left:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-left:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-bottom .exactmetrics-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){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{left:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:100% 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:100% 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-left:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);left:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-left:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-left:32px;padding-right:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;right:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:100% 100%;background-image:url(../img/forms-wpforms-upsell.png)}.update-nag{display:none}.exactmetrics-admin-page{min-height:100vh;font-size:15px;color:#4d3f7a;overflow:hidden}.exactmetrics-admin-page a{color:#6528f5}.exactmetrics-admin-page a:focus,.exactmetrics-admin-page a:hover{color:#393f4c}.exactmetrics-admin-page .exactmetrics-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.exactmetrics-admin-page .exactmetrics-settings-content{margin-bottom:75px}@media (min-width:783px) and (max-width:790px){.exactmetrics-admin-page .exactmetrics-settings-content{padding:0 10px}}.exactmetrics-admin-page input.exactmetrics-has-error{border-color:red}.exactmetrics-admin-page input[type=number],.exactmetrics-admin-page input[type=text],.exactmetrics-admin-page textarea{border:1px solid #9087ac;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#210f59}.exactmetrics-admin-page input[type=number]::-webkit-input-placeholder,.exactmetrics-admin-page input[type=text]::-webkit-input-placeholder,.exactmetrics-admin-page textarea::-webkit-input-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number]:-moz-placeholder,.exactmetrics-admin-page input[type=number]::-moz-placeholder,.exactmetrics-admin-page input[type=text]:-moz-placeholder,.exactmetrics-admin-page input[type=text]::-moz-placeholder,.exactmetrics-admin-page textarea:-moz-placeholder,.exactmetrics-admin-page textarea::-moz-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number]:-ms-input-placeholder,.exactmetrics-admin-page input[type=text]:-ms-input-placeholder,.exactmetrics-admin-page textarea:-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number].exactmetrics-has-error,.exactmetrics-admin-page input[type=text].exactmetrics-has-error,.exactmetrics-admin-page textarea.exactmetrics-has-error{border-color:#d83638}.exactmetrics-admin-page input[type=text]:-moz-read-only{background:#fff;color:#9087ac}.exactmetrics-admin-page input[type=text]:read-only{background:#fff;color:#9087ac}.exactmetrics-admin-page textarea{height:150px;background:#f4f3f7;border:none}.exactmetrics-admin-page label{width:100%;font-size:15px;display:inline-block;color:#210f59;margin:2px 0 17px}.exactmetrics-admin-page label>.exactmetrics-dark{margin-bottom:20px}.exactmetrics-admin-page .inline-field{position:relative}.exactmetrics-admin-page .inline-field input{width:100%;background:#f4f3f7;border:none;height:60px;border-radius:3px;padding:6px 20px;font-size:18px}.exactmetrics-admin-page .inline-field input::-moz-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input:-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input:-moz-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::-webkit-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field .exactmetrics-button{position:absolute;right:6px;top:6px;padding:16px 24px 14px}.exactmetrics-admin-page .inline-field .exactmetrics-button [class*=monstericon-]{margin-right:12px}.exactmetrics-admin-page .exactmetrics-error{margin:18px 0 0;color:#d83638;cursor:default}.exactmetrics-admin-page .exactmetrics-error i{margin-right:10px}.exactmetrics-admin-page .exactmetrics-license-type-text{color:#210f59;font-weight:500;margin-bottom:30px}.exactmetrics-admin-page .exactmetrics-license-type-text a{color:#6528f5;font-weight:400;margin-left:10px;position:relative}.exactmetrics-admin-page .exactmetrics-license-type-text a:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f058";right:100%;margin-right:6px}.exactmetrics-admin-page .exactmetrics-settings-license-network .exactmetrics-button-text,.exactmetrics-admin-page .exactmetrics-settings-license-site .exactmetrics-button-text{color:#9087ac;margin-top:16px;font-size:15px}.exactmetrics-admin-page .exactmetrics-dark{color:#210f59;text-transform:capitalize;font-weight:700}.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-enter-active,.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-leave-active{-webkit-transition:opacity 1s;transition:opacity 1s}.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-enter,.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-leave-to{opacity:0}.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-enter .exactmetrics-styled-checkbox,.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-leave-to .exactmetrics-styled-checkbox{background-color:#509fe2!important}.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-enter .exactmetrics-styled-checkbox:after,.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-leave-to .exactmetrics-styled-checkbox:after{right:2px!important;left:auto!important}.exactmetrics-admin-page .exactmetrics-settings-block{margin:32px auto;width:750px;max-width:100%;position:relative;z-index:50}@media screen and (max-width:830px){.exactmetrics-admin-page .exactmetrics-settings-block{margin-left:24px;margin-right:24px;width:auto}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title{font-weight:700;font-size:24px;padding:12px 0;color:#210f59;position:relative;-webkit-transition:color .2s ease;transition:color .2s ease}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.2}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title:before{position:absolute;width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);right:100%;top:2px;margin-right:30px;color:#210f59;text-align:center;line-height:40px;font-size:15px;-webkit-transition:background .2s ease 0ms,color .2s ease 0ms;transition:background .2s ease 0ms,color .2s ease 0ms;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}@media (max-width:1062px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title:before{right:auto;left:0;margin-top:-6px;position:relative;top:auto;display:inline-block;margin-right:15px;vertical-align:text-top}}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title{cursor:pointer}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus:before,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover:before{background:#6528f5;color:#fff}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus .exactmetrics-settings-input-toggle-collapsible,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover .exactmetrics-settings-input-toggle-collapsible{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content:before{position:relative;display:block;content:"";height:28px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content p{font-size:15px;color:#210f59;font-weight:500;margin:0 0 30px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content h3{font-size:17px;color:#210f59;line-height:1.5;margin:0 0 15px}.exactmetrics-admin-page .exactmetrics-settings-input-radio input[type=radio]{opacity:0;position:absolute}.exactmetrics-admin-page .exactmetrics-settings-input-radio label{color:#210f59;font-size:15px}.exactmetrics-admin-page .exactmetrics-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.exactmetrics-admin-page .exactmetrics-settings-input-radio label>span{vertical-align:middle;font-weight:500}.exactmetrics-admin-page .exactmetrics-settings-input-radio span:last-child label{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-right:16px}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked{border-color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked:after{left:2px;right:2px;top:2px;bottom:2px;position:absolute;content:"";background:#6528f5;display:block;border-radius:50%}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label{color:#210f59;font-size:15px;margin:0;line-height:1.75}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux{cursor:default}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox{background-color:#e9e7ee}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked{background-color:#b9d8f3}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label input{display:none}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label>span{vertical-align:middle}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label:last-child{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox input:checked+.exactmetrics-checkbox-label{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{width:40px;height:23px;position:relative;display:inline-block;border-radius:20px;margin-right:16px;background-color:#e9e7ee}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{right:3px;left:auto;background:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{left:3px;top:3px;bottom:3px;width:17px;position:absolute;content:"";background:#bcb7cd;display:block;border-radius:50%;line-height:1}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{border-radius:3px;background:#fff;width:20px;height:20px}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{display:none;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:rgba(0,0,0,0);color:#6528f5;content:"\f015";left:3px;top:2px}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{display:inline-block}.exactmetrics-admin-page .exactmetrics-info{color:#9087ac;margin-left:10px;cursor:help}.exactmetrics-admin-page .exactmetrics-settings-input-repeater .exactmetrics-error{margin-top:0;margin-bottom:18px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-labels label{color:#210f59;font-weight:700;margin-bottom:6px;font-size:17px}.exactmetrics-admin-page .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row>span{width:100%;margin-right:18px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(33,15,89,.1);color:#210f59;width:32px;height:32px;border-radius:50%;cursor:pointer;display:block;position:relative;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button i{position:absolute;left:10px;top:7px;font-size:15px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button i:before{content:"\f065"}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row input[type=number]{width:30%;margin-right:15px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row select{width:70%;height:40px;margin-right:15px;border:1px solid #9087ac;border-radius:3px;margin-top:0;margin-bottom:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row input[type=text]{border-color:rgba(0,0,0,0)}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-error input{border-color:#e43462}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid{position:relative}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid:after{position:absolute;right:8px;height:26px;width:26px;background:rgba(50,162,122,.1);top:7px;content:"\f015";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#32a27a;border-radius:50%;text-align:center;line-height:26px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-admin-page .exactmetrics-dimensions-count{color:#4d3f7a;font-size:13px;float:right;line-height:1.7;margin-right:46px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-dimensions-count{float:none;margin-top:5px;display:block}}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-settings-input-repeater-labels label{margin-bottom:0;width:auto}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-error{margin:0 0 20px}.exactmetrics-admin-page .exactmetrics-settings-input-select .exactmetrics-dark{margin-bottom:5px}.exactmetrics-admin-page .exactmetrics-settings-input-select label{margin-top:-4px}.exactmetrics-admin-page .exactmetrics-collapsible .exactmetrics-collapsible-content{padding-left:30px}@media screen and (max-width:767px){.exactmetrics-admin-page .exactmetrics-collapsible .exactmetrics-collapsible-content{padding-left:15px}}.exactmetrics-admin-page .exactmetrics-collapsible>p{margin-top:0}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible{color:#210f59;float:right;font-size:22px;padding-left:20px;-webkit-transition:color .2s ease;transition:color .2s ease;margin-top:6px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible{margin-left:auto;margin-top:3px}}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible:hover{color:#393f4c}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible:focus{outline:none}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible i{cursor:pointer}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-dark{display:block;margin-bottom:9px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate p{margin:0}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-ua,.exactmetrics-admin-page .exactmetrics-settings-input-authenticate button{margin-top:14px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-manual-ua+.exactmetrics-error{margin-top:15px}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-paragraph{padding-top:5px}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-text{color:#4d3f7a;font-size:12px;text-decoration:none}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-text:hover{text-decoration:underline}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-upgrade-icon{display:none}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-settings-addon-message{margin-right:25px;width:100%;line-height:1.7}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-settings-addon-message>span{display:block;max-width:468px}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .settings-addons-upgrade-button{-ms-flex-negative:0;flex-shrink:0}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-button{padding:14px 30px;font-weight:500}.exactmetrics-admin-page .exactmetrics-icon-warning{width:48px}.exactmetrics-admin-page .exactmetrics-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=)}.exactmetrics-admin-page .exactmetrics-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;line-height:1.5}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-bg-img{margin-right:25px}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message{width:100%;color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message strong{margin-bottom:10px}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message span{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-icon-warning{display:none}.exactmetrics-admin-page .exactmetrics-undo-redo{float:right;margin-top:16px}.exactmetrics-admin-page .exactmetrics-undo-redo button{border:none;background:rgba(0,0,0,0);color:#6528f5;padding:0;margin-left:5px}.exactmetrics-admin-page #exactmetrics-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:#9087ac;padding-top:7px}.exactmetrics-admin-page #exactmetrics-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page #exactmetrics-license-key-valid:-moz-placeholder,.exactmetrics-admin-page #exactmetrics-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page #exactmetrics-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page .exactmetrics-grey-settings-area{background:#f4f3f7;border-radius:10px;padding:40px 0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-admin-page .exactmetrics-grey-settings-area.exactmetrics-area-spaced-top{margin-top:72px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-auth-actions{max-width:320px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{width:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;padding:0 40px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{width:auto;margin:0 40px -30px;padding:0}}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half:first-child{border-right:1px solid #bcb7cd}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half:first-child{border-bottom:1px solid #bcb7cd;border-right:0;padding-bottom:40px;margin-bottom:40px}}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full{padding:0 40px;max-width:460px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;position:relative}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full h2{font-size:24px;line-height:1.4;margin-top:0;max-width:340px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full p{line-height:1.7;margin:8px 0 18px;font-size:15px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-icon-background-large{left:auto;right:54px;top:45px;font-size:170px}.exactmetrics-admin-page .exactmetrics-grey-settings-area h3{font-size:17px;color:#210f59;line-height:1.5;margin:0 0 20px}.exactmetrics-admin-page .exactmetrics-grey-settings-area p{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-highlight{font-size:17px;font-weight:700;color:#210f59;display:block}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-button-text{font-size:15px;margin-bottom:0;margin-top:11px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-button-text.exactmetrics-spaced-top{margin-top:20px}.exactmetrics-admin-page .exactmetrics-grey-settings-area a>[class*=monstericon-]{margin-left:15px;display:inline-block;font-size:.8em}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area{background:#f4f3f7;border-radius:10px;padding:32px}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button{background:rgba(0,0,0,0);padding:0 0 0 24px;color:#6528f5;text-decoration:underline;position:relative;font-size:15px;outline:none}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:hover{color:#210f59}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:before{content:"+";position:absolute;left:0;font-size:20px;top:0;line-height:13px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-grey-settings-area p{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-settings-full-width-gray{background-color:#f4f3f7;border-top:1px solid #e9e7ee;border-bottom:1px solid #e9e7ee;padding-top:32px;padding-bottom:32px}.exactmetrics-admin-page .exactmetrics-settings-full-width-gray .exactmetrics-settings-block{margin-top:0;margin-bottom:0}.exactmetrics-admin-page .exactmetrics-inline-gray-box{background:#f4f3f7;padding:22px 32px;border-radius:10px;display:inline-block;margin-top:20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-inline-gray-box{width:100%}.exactmetrics-admin-page .exactmetrics-inline-gray-box:first-child{margin-top:0}}.exactmetrics-admin-page .exactmetrics-inline-gray-box .exactmetrics-settings-input-checkbox{padding:10px 0}.exactmetrics-admin-page .settings-input-text-input{margin-top:12px}.exactmetrics-admin-page .edd-logo,.exactmetrics-admin-page .formidable-forms-logo,.exactmetrics-admin-page .gravity-forms-logo,.exactmetrics-admin-page .lifer-lms-logo,.exactmetrics-admin-page .memberpress-logo,.exactmetrics-admin-page .woocommerce-logo,.exactmetrics-admin-page .wpforms-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.exactmetrics-admin-page .edd-logo,.exactmetrics-admin-page .formidable-forms-logo,.exactmetrics-admin-page .gravity-forms-logo,.exactmetrics-admin-page .lifer-lms-logo,.exactmetrics-admin-page .memberpress-logo,.exactmetrics-admin-page .woocommerce-logo,.exactmetrics-admin-page .wpforms-logo{margin-top:18px}}.exactmetrics-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.exactmetrics-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.exactmetrics-admin-page .lifer-lms-logo{background-image:url(data:image/png;base64,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);width:116px}.exactmetrics-admin-page .wpforms-logo{background-image:url(../img/logo-wp-forms.png);width:115px}.exactmetrics-admin-page .formidable-forms-logo{background-image:url(../img/logo-formidable-forms.png);width:110px}.exactmetrics-admin-page .gravity-forms-logo{background-image:url(data:image/png;base64,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);width:115px}.exactmetrics-admin-page .misc-forms-logo:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\0049";color:#bcb7cd;font-size:40px}.exactmetrics-admin-page .exactmetrics-plugin-blocks{margin:30px 0;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}.exactmetrics-admin-page .misc-forms-logo{content:"\f01e";height:25px;line-height:31px;width:34px}.exactmetrics-admin-page .exactmetrics-spaced-input{margin-bottom:50px}.exactmetrics-admin-page .exactmetrics-plugin-block{background:#f4f3f7;border-radius:10px;padding:10px;text-align:center;width:calc(50% - 7px);margin-bottom:15px}@media (max-width:665px){.exactmetrics-admin-page .exactmetrics-plugin-block{width:100%}}.exactmetrics-admin-page .exactmetrics-plugin-block.exactmetrics-plugin-block-active{border:2px solid #32a27a;background:#fff}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo{background:#fff;border-radius:5px;padding:12px 10px;text-align:center}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo .exactmetrics-bg-img{padding-top:0;display:inline-block}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo .exactmetrics-bg-img.memberpress-logo{width:198px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content h4{color:#210f59;font-size:15px;line-height:1.7;margin:20px 0 5px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content p{color:#9087ac;line-height:1.7;margin-bottom:20px;margin-top:5px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content .monsterinsgights-plugin-check{margin-top:10px;background:rgba(50,162,122,.1);width:40px;height:40px;display:inline-block;border-radius:50%;text-align:center;color:#32a27a;font-size:15px;line-height:40px}.exactmetrics-admin-page .exactmetrics-settings-callout{background:#fff;border-radius:5px;border:1px solid #f4f3f7;padding:19px 14px 26px 78px;position:relative;-webkit-box-shadow:0 10px 22px 0 rgba(0,0,0,.1);box-shadow:0 10px 22px 0 rgba(0,0,0,.1)}.exactmetrics-admin-page .exactmetrics-settings-callout:before{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-style:solid;border-width:0 8px 10px;content:"";bottom:100%;left:22px;z-index:15}.exactmetrics-admin-page .exactmetrics-settings-callout:after{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #f4f3f7;border-style:solid;border-width:0 9px 11px;content:"";bottom:100%;left:21px;margin-bottom:1px;z-index:10}.exactmetrics-admin-page .exactmetrics-settings-callout .monstericon-info-circle-regular{position:absolute;font-size:24px;left:23px;top:20px;color:#bcb7cd}.exactmetrics-admin-page .exactmetrics-settings-callout h4{color:#210f59;font-size:15px;line-height:1.5;margin:0 0 13px}.exactmetrics-admin-page .exactmetrics-settings-callout a{font-weight:700}.exactmetrics-admin-page .exactmetrics-settings-callout .exactmetrics-close-button{border:none;padding:0;background:rgba(0,0,0,0);color:#bcb7cd;top:11px;right:14px;position:absolute}.exactmetrics-admin-page .exactmetrics-settings-callout .exactmetrics-grey-link{margin-left:16px}.exactmetrics-admin-page .exactmetrics-settings-callout.exactmetrics-settings-callout-arrow-bottom:after,.exactmetrics-admin-page .exactmetrics-settings-callout.exactmetrics-settings-callout-arrow-bottom:before{top:100%;bottom:auto;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.exactmetrics-admin-page .exactmetrics-grey-link{color:#9087ac}.exactmetrics-first-time-notice .exactmetrics-notice-button{margin-top:20px}.exactmetrics-settings-blur .exactmetrics-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.exactmetrics-settings-blur.exactmetrics-path-general .exactmetrics-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.exactmetrics-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 .exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-left:-375px}}.exactmetrics-not-authenticated-notice .exactmetrics-auth-manual-connect-paragraph{display:none}.exactmetrics-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-button{margin:0 20px}.exactmetrics-not-authenticated-notice .exactmetrics-dark{font-weight:400;margin-bottom:20px}.exactmetrics-settings-content.settings-advanced .exactmetrics-settings-block:first-child{z-index:60}.exactmetrics-admin-page .exactmetrics-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){.exactmetrics-admin-page .exactmetrics-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}}.exactmetrics-admin-page .exactmetrics-logos-row .exactmetrics-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%}.exactmetrics-admin-page .exactmetrics-report-ecommerce:after{background-image:url(../img/exactmetrics-report-ecommerce.png)}.exactmetrics-admin-page .exactmetrics-addon-ads,.exactmetrics-admin-page .exactmetrics-addon-amp,.exactmetrics-admin-page .exactmetrics-addon-dimensions,.exactmetrics-admin-page .exactmetrics-addon-eu-compliance,.exactmetrics-admin-page .exactmetrics-addon-forms,.exactmetrics-admin-page .exactmetrics-addon-instant-articles,.exactmetrics-admin-page .exactmetrics-addon-optimize,.exactmetrics-admin-page .exactmetrics-addon-performance,.exactmetrics-admin-page .exactmetrics-addon-scroll{width:48px;padding-top:110%}.exactmetrics-admin-page .exactmetrics-addon-eu-compliance{padding-top:100%}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmBAMAAADG74kWAAAAFVBMVEXW4urW4urW4uoAAADW4uqsvclQn+ITLWFyAAAABHRSTlPsoxwAEnMmfgAAAIFJREFUWMPt2LEJgDAUBNCvOICFAwhu4AQKP06QbCDuP4J9sPCKwOm/KwOvusCHs3V0IN1is0PpbcLAbgMGNnMwvwGp1MmPj7EBYXGEgLA4QkBYHCFI5VVybEBYHCEgLE5AQEBAIAQgPIqE4LjqnAJtwNe+RlMAz0XwIAVPXvCodgNhA6kmkI3HfAAAAABJRU5ErkJggg==)}.exactmetrics-admin-page .exactmetrics-addon-optimize{padding-top:100%}.exactmetrics-admin-page .exactmetrics-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=)}.exactmetrics-admin-page .exactmetrics-addon-dimensions{padding-top:105%}.exactmetrics-admin-page .exactmetrics-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.exactmetrics-admin-page .exactmetrics-addon-performance{padding-top:105%}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-addon-scroll{padding-top:105%}.exactmetrics-admin-page .exactmetrics-addon-scroll:after{background-image:url(data:image/png;base64,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)}.exactmetrics-admin-page .exactmetrics-upsell-large{padding-bottom:35px}@media (max-width:767px){.exactmetrics-admin-page .exactmetrics-upsell-large{padding-left:10px;padding-right:10px;line-height:1.2}}.exactmetrics-admin-page .exactmetrics-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.exactmetrics-admin-page .exactmetrics-upsell-large h2{font-size:18px;margin-top:0}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-coupon{color:#6528f5;border:1px dashed #6528f5;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:left;margin:10px 0}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .settings-input-license p{color:#210f59;margin-bottom:15px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .settings-input-license p a{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-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)}.exactmetrics-admin-page .exactmetrics-settings-ecommerce .exactmetrics-upsell-left p{max-width:350px;line-height:1.7;margin-bottom:22px}.exactmetrics-admin-page .exactmetrics-settings-ecommerce .exactmetrics-full-width-upsell{margin-bottom:0}.exactmetrics-admin-page #em-upgrade-confirmation .exactmetrics-welcome-overlay-inner{width:742px;max-width:calc(100% - 64px);border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5);height:auto;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation{display:-webkit-box;display:-ms-flexbox;display:flex;padding-bottom:26px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation h2{font-size:24px;line-height:1.4;color:#210f59;margin-top:9px;margin-bottom:19px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation p{font-size:15px;line-height:1.75;color:#4d3f7a;margin-bottom:16px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation .exactmetrics-button i{margin-left:15px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons{position:relative;width:250px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;text-align:center;padding:0 50px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light{color:#6528f5;font-size:40px;opacity:.5;position:absolute;top:99px;left:0}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:first-child{font-size:70px;opacity:1;position:relative;top:47px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:nth-child(2){left:105px;top:114px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:nth-child(3){left:52px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:nth-child(4){left:158px}
lite/assets/vue/css/settings.rtl.css CHANGED
@@ -1 +1 @@
1
- .exactmetrics-dark[data-v-2ed93de5],.exactmetrics-dark[data-v-993e4e00],.exactmetrics-dark[data-v-4619bc56]{display:block}.exactmetrics-addons-navbar{text-align:right}.exactmetrics-addons-navbar h1{display:inline-block;font-size:32px;line-height:1.3;font-weight:600;margin:0;color:#210f59}@media (max-width:959px){.exactmetrics-addons-navbar h1{font-size:24px}}.exactmetrics-addons-navbar .exactmetrics-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:0;width:310px;position:relative}@media (max-width:750px){.exactmetrics-addons-navbar .exactmetrics-addons-filters{width:100%;margin-top:20px}}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]{height:40px;margin-left:0;padding-right:20px;padding-left:28px;font-size:14px;border-color:#f4f3f7;background:#f4f3f7;border-radius:3px}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]::-webkit-input-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]:-moz-placeholder,.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]::-moz-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]:-ms-input-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters>i{position:absolute;left:20px;top:10px;z-index:10;color:#210f59;font-size:15px}.exactmetrics-addon-inactive .exactmetrics-addon-status span,.exactmetrics-addon-not-available .exactmetrics-addon-status span,.exactmetrics-addon-not-installed .exactmetrics-addon-status span{color:#9087ac}.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}#exactmetrics-addons{width:1094px}@media (max-width:782px){#exactmetrics-addons{width:100%}}#exactmetrics-addons .exactmetrics-addons-area{margin:0 10px}@media (max-width:782px){#exactmetrics-addons .exactmetrics-addons-area{margin-right:24px;margin-left:24px}}#exactmetrics-addons .exactmetrics-addons-no-results{margin-top:25px;padding:0 10px}#exactmetrics-addons .exactmetrics-addons-no-results p{font-size:16px}#exactmetrics-addons .exactmetrics-addons-no-results>div{visibility:hidden;-webkit-animation:loadExactMetricsSettingsNoJSView 0s 2s forwards;animation:loadExactMetricsSettingsNoJSView 0s 2s forwards}.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button{background:#9087ac;color:#fff}.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button:hover{background:#fff;color:#37276a}.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{padding:0;width:100%;margin-right:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation{background:none;position:relative;-webkit-box-shadow:none;box-shadow:none}@media (max-width:959px){.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation{padding:0;right:0}}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation .exactmetrics-main-navigation-open{padding:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-logo-area{display:none}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-header{background:rgba(0,0,0,0);border-bottom:1px solid #e9e7ee;padding:32px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-full-width-upsell{min-height:360px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-upsell-title{padding:32px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-upsell-title h2{font-size:32px;margin:0}.exactmetrics-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:64px;margin-bottom:33px}@media (max-width:782px){.exactmetrics-addons-list{margin-top:24px}}.exactmetrics-addons-list .exactmetrics-addon{width:calc(50% - 16px);position:relative;background:#f4f3f7;padding:0 0 72px;margin-bottom:32px;border-radius:8px}@media (max-width:782px){.exactmetrics-addons-list .exactmetrics-addon{width:100%}}.exactmetrics-addons-list .exactmetrics-addon h3{color:#210f59;font-size:17px;line-height:1.5;margin-top:9px}.exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-excerpt{color:#210f59;font-weight:400;margin:12px 0 0;font-size:15px;line-height:1.75}.exactmetrics-addons-list .exactmetrics-addon-top{padding:30px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-addons-list .exactmetrics-addon-image{width:68px;height:68px;background:#fff;-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;border-radius:50%;text-align:center;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}.exactmetrics-addons-list .exactmetrics-addon-image i{font-size:23px;color:#210f59}.exactmetrics-addons-list .exactmetrics-addon-image.exactmetrics-addon-noicon{border-radius:4px;width:80px;height:80px;padding:12px}.exactmetrics-addons-list .exactmetrics-addon-image img{max-width:100%}.exactmetrics-addons-list .exactmetrics-addon-message{position:absolute;bottom:0;background:#e9e7ee;right:0;left:0;border-radius:0 0 8px 8px}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-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}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-addon-status{font-size:15px;color:#210f59}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-addon-action{-ms-flex-item-align:end;align-self:flex-end}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-button{padding-bottom:11px;padding-top:12px;min-width:146px;font-size:14px;line-height:1.2;border-radius:3px;text-align:center}.exactmetrics-addons-list .exactmetrics-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.exactmetrics-path-addons .exactmetrics-header{display:none}.exactmetrics-file-input{margin-bottom:20px}.exactmetrics-tools .exactmetrics-dark{margin-bottom:5px;display:block}.exactmetrics-admin-page .exactmetrics-tools-url-builder p .exactmetrics-info{margin-right:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text{margin-bottom:20px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text .exactmetrics-dark{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text input[type=text]{background:#f4f3f7;border:none;color:#9087ac}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area{width:750px;margin:0 auto;max-width:100%;display:block;padding-right:40px;padding-left:40px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area textarea{background-color:#fff}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area{padding-right:24px;padding-left:24px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area .exactmetrics-settings-block{margin-right:0;margin-left:0}}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-tools-small-text{font-size:13px;color:#9087ac;margin-right:9px;display:inline-block;font-weight:400}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-tools-description-top{font-size:15px;margin-top:10px;line-height:1.75;display:inline-block}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{margin-bottom:0}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span{color:#4d3f7a;line-height:1.75}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span.exactmetrics-dark{font-size:17px;color:#210f59}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span.exactmetrics-info{color:#9087ac}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled{margin-bottom:0}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled i{margin-left:13px}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled input{display:none}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label{display:block;background:#e9e7ee;border-radius:5px;padding:16px 24px;color:#6528f5;text-decoration:underline;text-align:center}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label>span{color:#6528f5}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label:focus,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label:hover{text-decoration:none}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-filename{font-size:13px;margin-top:8px;line-height:175%;color:#9087ac;text-overflow:ellipsis;overflow:hidden;white-space:pre}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-input-description{color:#9087ac;font-size:13px;line-height:1.7;margin-bottom:20px}.exactmetrics-required{color:#d4393d}textarea:-moz-read-only{background-color:#210f59}textarea:read-only{background-color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-row p{margin-top:0}.exactmetrics-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-tools-info-row .exactmetrics-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-tools-info-row .exactmetrics-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.exactmetrics-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content p{font-weight:400}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-description p{font-size:13px;margin:0;line-height:1.75}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-label p{margin:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-toolsadditional-info{margin-bottom:15px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-toolsadditional-info i{margin-left:10px;color:#6528f5}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad{background-color:#6528f5;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){.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad{padding-bottom:50px}}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-title,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-description,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-description{color:#fff;font-family:Roboto,sans-serif;line-height:20px}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button{background:#4615bd;border:0;font-size:16px;font-weight:700;border-radius:5px;font-family:Roboto,sans-serif;position:relative;padding-left:76px;padding-right:60px}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:hover{background:#4b11d7;border-color:#4b11d7;outline:none}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:after,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:after{position:absolute;content:"";left:53px;top:50%;width:16px;height:17px;margin-top:-8px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACESURBVHgB3ZPRDYAgDESrE+gGjuIIjshGjlA3kA3OkmAEQgvGP19S7ud6NA0QKQBgPLDmG4wAZEah5hvpI38KkJ1tydZRGpGzUsUwSe1o49RxOkIctTBC2s1GiLPMXLktNC9RnTEVE3TuEHMvQzioHy81JfrqIXn5T7PoEdVbO9A4C+ULdv1uYZMCHL8AAAAASUVORK5CYII=);background-repeat:no-repeat}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-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){.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo{left:10px;bottom:0}}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks{position:relative;background:#4b11d6;border-color:#4b11d6;margin-right:15px;padding-left:48px;padding-right:23px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:active,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:hover{background:rgba(75,17,214,.8);border-color:rgba(75,17,214,.8);outline:none}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-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.exactmetrics-prettylinks-flow-page{background:#fff}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{max-width:770px;margin:0 auto}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{padding:0 30px}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{max-width:700px}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow a,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow div,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h1,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h2,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h3,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h4,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow p,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow span{font-family:Roboto,sans-serif}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow p{font-size:16px;line-height:21px;color:#393f4c}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header{text-align:center;max-width:680px;margin:0 auto;padding-top:75px;padding-bottom:20px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-tools-prettylinks-flow-header-logo{min-height:56px;background-image:url(../img/em-pl-logo.svg);background-repeat:no-repeat;background-position:50%}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-prettylinks-flow-title{font-size:39px;font-weight:900;line-height:46px;text-align:center;color:#393f4c;margin-top:60px;margin-bottom:18px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-prettylinks-flow-description{max-width:560px;margin:0 auto}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:25px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-image{margin-right:-35px}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-image{margin-right:0}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-description{padding-right:16px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-description h3{margin-top:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard{border-radius:5px;border:1px solid #e2e4e9;margin-bottom:36px}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard{text-align:center;padding:30px 30px 0}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated{border-width:2px;border-color:#6528f5}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-prettylinks-flow-counter,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-prettylinks-flow-counter{background:#6528f5}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-tools-prettylinks-action .exactmetrics-button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-tools-prettylinks-action .exactmetrics-button{background:#6528f5;border-color:#6528f5;color:#fff}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button{pointer-events:auto}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-status-active .exactmetrics-prettylinks-flow-counter{background:#1ec185}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-status-active .exactmetrics-tools-prettylinks-action .exactmetrics-button{pointer-events:none}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-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.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action{padding:30px 0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action h3{font-size:18px;line-height:18px;color:#393f4c;font-weight:700;margin-top:12px;margin-bottom:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action p{margin-top:6px;margin-bottom:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action .exactmetrics-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;position:relative}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button{pointer-events:none}.exactmetrics-about-block{padding:0;background:#fff;margin-top:40px}@media (max-width:782px){.exactmetrics-about-block{padding:0 24px}}.exactmetrics-about-block h3{color:#210f59;font-size:24px;margin:0 0 20px;line-height:1.4;padding-top:25px}.exactmetrics-about-block p{font-size:15px;line-height:1.75;font-weight:500;color:#210f59}.exactmetrics-about-block:after{content:"";display:table;clear:both}div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{width:1094px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{padding-right:24px;padding-left:24px}}div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-right:20px;padding-left:20px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-right:0;padding-left:0}}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{margin-right:-163px}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar .exactmetrics-container{width:auto}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list{padding:0 20px}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:calc(33.3333% - 21px)}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:100%}}div[class*=" exactmetrics-path-about-"] .exactmetrics-addon-image,div[class^=exactmetrics-path-about-] .exactmetrics-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*=" exactmetrics-path-about-"] .monstericon-star:before,div[class^=exactmetrics-path-about-] .monstericon-star:before{color:#fdb72c}.exactmetrics-lite-vs-pro-table{padding:0}.exactmetrics-lite-vs-pro-table .exactmetrics-lite-vs-pro-footer{background:#e9e7ee}.exactmetrics-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.exactmetrics-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.exactmetrics-features-table{width:100%;border-collapse:collapse;position:relative;margin-bottom:95px}.exactmetrics-features-table tr{position:relative}.exactmetrics-features-table tr:first-child td{border-radius:10px 0 0 0}.exactmetrics-features-table tr:first-child .exactmetrics-features-table-feature-title+td{border-radius:0 10px 0 0}.exactmetrics-features-table tr:first-child:after{display:none}.exactmetrics-features-table tr:after{display:block;border-top:1px solid #bcb7cd;opacity:.5;content:"";position:absolute;right:0;left:40px}.exactmetrics-features-table tbody tr:last-child td{padding:0;background:none}.exactmetrics-features-table tbody tr:last-child:after{display:none}.exactmetrics-features-table td,.exactmetrics-features-table th{width:33.33333%;padding:40px;vertical-align:top}.exactmetrics-features-table td p,.exactmetrics-features-table th p{margin:0}.exactmetrics-features-table th{text-align:right;border-left:none;font-size:24px;line-height:1.4}.exactmetrics-features-table th i{width:40px;height:40px;border-radius:50%;color:#210f59;background-color:rgba(33,15,89,.1);display:inline-block;text-align:center;line-height:40px;font-size:15px;margin-left:30px}.exactmetrics-features-table td{background:#f4f3f7}.exactmetrics-features-table td p{font-size:17px;line-height:1.5}.exactmetrics-features-table td p>span{margin-top:16px;display:block}.exactmetrics-features-table .exactmetrics-features-table-feature-title{background:none;padding-right:0}.exactmetrics-features-table .exactmetrics-features-table-feature-title i{float:right;font-size:23px;color:#6528f5;margin-left:18px}.exactmetrics-features-table .exactmetrics-features-table-feature-title p{font-weight:700;font-size:17px;color:#37276a;line-height:1.5;margin-right:41px}.exactmetrics-features-full:before,.exactmetrics-features-none:before,.exactmetrics-features-partial:before{display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f026";font-size:20px;margin-left:10px;color:#d4393d;position:relative;top:2px;margin-bottom:16px}.exactmetrics-features-full:before,.exactmetrics-features-partial:before{content:"\f022";color:#19865f}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer{padding:40px;text-align:center;border-radius:0 0 10px 10px;border-top:1px solid #bcb7cd}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer h3{color:#210f59;font-size:17px;max-width:350px;line-height:1.5;margin:0 auto 16px}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer p{margin-bottom:24px;font-size:15px;line-height:1.75;color:#210f59;max-width:350px;margin-right:auto;margin-left:auto}.exactmetrics-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-two-column>div{width:50%}.exactmetrics-about-docs-row:after{display:table;clear:both;content:""}.exactmetrics-about-docs-image{width:158px;float:right;margin-left:32px}.exactmetrics-about-docs-image .exactmetrics-bg-img{width:158px;background-color:#fff;border-radius:5px;height:158px;padding-top:0}.exactmetrics-about-docs-image .exactmetrics-bg-img:after{background-position:50%;right:10px;left:10px;top:10px;bottom:10px}.exactmetrics-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.exactmetrics-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.exactmetrics-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.exactmetrics-about-docs-4:after{background-image:url(../img/about-icon-addons-em.png)}.exactmetrics-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.exactmetrics-bg-img.exactmetrics-about-team{padding-top:70%}.exactmetrics-bg-img.exactmetrics-about-team:after{background-image:url(../img/about-team-photo.png)}.exactmetrics-about-docs-text h3{color:#210f59;font-size:17px;line-height:1.5}.exactmetrics-about-docs-text p{margin:16px 0 24px}.exactmetrics-about-page-right-image{float:left;width:48%;text-align:center;margin:0 20px 0 0}@media (max-width:782px){.exactmetrics-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.exactmetrics-about-page-right-image img{width:100%}.exactmetrics-about-page-right-image figcaption{color:#4d3f7a;margin-top:5px}.exactmetrics-about-page-right-image iframe{max-width:100%}.exactmetrics-page-title{padding:32px;line-height:1.3;border-bottom:1px solid #e9e7ee}.exactmetrics-page-title h2{margin:0;font-size:32px;color:#210f59}.exactmetrics-about .exactmetrics-addon-top{padding:40px 40px 24px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-about .exactmetrics-addon-noicon{margin-bottom:10px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon{padding-bottom:145px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message{padding:24px 40px 40px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior{border-top:1px solid #ccc;padding:24px 0 0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-status{margin-bottom:24px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-action{-ms-flex-item-align:start;align-self:start}.exactmetrics-about .exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-upsell-list-item>i{min-width:23px}.exactmetrics-about .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-right:14px;font-size:15px}.exactmetrics-bg-img.exactmetrics-em-logo-color{padding-top:8%;width:387px;max-width:100%}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-em-logo-color{width:133px;padding-top:10%}}.exactmetrics-bg-img.exactmetrics-em-logo-color:after{background-position:50%;background-image:url(../img/em-logo.png)}.exactmetrics-about-page-top{padding:60px 0;background:radial-gradient(64.37% 131.18% at 50.04% 32.71%,hsla(0,0%,100%,.1) 0,hsla(0,0%,100%,0) 100%),rgba(101,40,245,.1);border-bottom:1px solid #e9e7ee;margin-bottom:635px}@media (max-width:782px){.exactmetrics-about-page-top{margin-bottom:0}}.exactmetrics-about-page-top h3{color:#6528f5;margin:0 135px 0 0;font-size:20px;line-height:1.3;font-weight:400}@media (max-width:782px){.exactmetrics-about-page-top h3{margin-right:0}}.exactmetrics-about-page-top h2{max-width:570px;margin-right:135px;margin-top:9px}@media (max-width:782px){.exactmetrics-about-page-top h2{margin-right:0;margin-left:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button{width:750px;max-width:100%;margin-right:135px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button{margin-right:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button p{max-width:300px;margin-left:100px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button p{margin-left:24px}}.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:left;margin-top:10px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:none}}.exactmetrics-about-page-top .exactmetrics-container{width:1094px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-635px;padding-top:52%;cursor:pointer}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:0}}.exactmetrics-bg-img.exactmetrics-about-getting-started-video:after{background-position:0 100%;background-image:url(../img/about-getting-started-video.png)}.exactmetrics-about-page-top h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:20px}@media (max-width:782px){.exactmetrics-about-page-top h2{font-size:20px}}.exactmetrics-about-page-top p{font-size:15px;line-height:1.7;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title{text-align:center;margin-top:-100px}@media (max-width:782px){.exactmetrics-container.exactmetrics-about-middle-title{margin-top:0;padding:0 24px}}.exactmetrics-container.exactmetrics-about-middle-title p{max-width:500px;margin:0 auto;font-size:15px;line-height:1.75;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:19px}.exactmetrics-admin-page .exactmetrics-wide-purple{background:#6528f5;padding:72px 0;margin-bottom:100px}.exactmetrics-admin-page .exactmetrics-wide-purple .exactmetrics-separator{background:rgba(0,0,0,.2)}.exactmetrics-about-upgrade-box-flex{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:45px}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box{width:334px;padding:65px 93px 56px;background:#210f59;border-radius:10px;color:#fff;text-align:center;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span{font-size:17px;line-height:1.5;display:inline-block}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-large{font-size:48px;line-height:1.3;font-weight:700}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-term{font-size:15px;line-height:1.75;opacity:.5}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box .exactmetrics-button{background-color:#fff;color:#210f59;margin-top:27px;font-weight:500}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes{padding-right:95px;max-width:650px;width:100%}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes h3{color:#fff;font-size:24px;line-height:1.4;font-weight:500;margin-top:17px}.exactmetrics-testimonials-slider{position:relative;padding:0 40px;margin-top:60px}.exactmetrics-testimonials-slides{position:relative;overflow:hidden}.exactmetrics-testimonials-slide{visibility:hidden;position:absolute;top:0;right:0;width:100%;-webkit-transition:.5s;transition:.5s;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image{padding:0 80px 0 60px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image .exactmetrics-bg-img{width:90px;border-radius:50%;height:90px;border:5px solid #37276a;overflow:hidden}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-1:after{background-image:url(../img/testimonial-image-1.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-2:after{background-image:url(../img/testimonial-image-2.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-3:after{background-image:url(../img/testimonial-image-3.jpg)}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text{padding-left:70px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p{color:#fff;font-size:20px;line-height:1.5;margin:0 0 20px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p.exactmetrics-testimonial-text-author{font-size:16px;line-height:1.75;color:#e9e7ee}.exactmetrics-testimonials-slide.exactmetrics-testimonials-slide-active{visibility:visible;position:static}.exactmetrics-testimonials-slide h2{margin:0}.exactmetrics-testimonials-slide img{width:300px}.exactmetrics-testimonials-slider-control{border:none;background:none;color:#fff;font-size:40px;line-height:1;position:absolute;top:45px;margin-top:-20px;padding:0;cursor:pointer}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left{right:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left i:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right{left:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right i:before{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-about-documentation{background:#f4f3f7;border-radius:10px;padding:72px 100px;margin:40px 0 95px}@media (max-width:782px){.exactmetrics-about-documentation{margin:40px 0;padding:32px 24px}.exactmetrics-about-documentation .exactmetrics-about-docs-image{float:none}}.exactmetrics-dark[data-v-281ea3e0]{display:block}.exactmetrics-colorpicker-preview span{width:40px;height:40px;display:inline-block;border:1px solid #b9c9d7;border-radius:5px}.exactmetrics-colorpicker-picker{position:absolute;z-index:100}.exactmetrics-colorpicker-picker .hu-color-picker{min-width:218px!important}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block{z-index:auto}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block:not(:first-child){margin-top:50px}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block:not(:first-child):before{content:"";position:absolute;top:-25px;background:#d6e2ed;display:block;height:1px;right:-100%;left:-100%}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{display:none}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-left:0}.exactmetrics-pp-theme-picker-container{background:#f4f3f7;border-radius:10px;padding:25px 25px 0;margin-bottom:15px}.exactmetrics-pp-theme-picker{overflow:hidden}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-carousel,.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide:after{content:"";margin-right:48%}.exactmetrics-pp-theme-picker .exactmetrics-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)}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-option-selected,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option:focus,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option:hover{border:3px solid #6528f5;padding:15px 18px;outline:none}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-not-available .exactmetrics-pp-theme-icon,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-not-available .exactmetrics-pp-theme-name{opacity:.6}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-active-icon{position:absolute;left:5px;top:5px}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-icon{display:block;width:110px;height:94px}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-name{color:#210f59;font-size:14px;margin-top:8px;display:block;text-align:right}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-icon{background:url(../img/pp-theme-icons.png) no-repeat 100% 0;background-size:488px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{background-position-x:-378px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-echo .exactmetrics-pp-theme-icon{background-position:100% -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-foxtrot .exactmetrics-pp-theme-icon{background-position:-126px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-golf .exactmetrics-pp-theme-icon{background-position:-252px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-hotel .exactmetrics-pp-theme-icon{background-position:-378px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-india .exactmetrics-pp-theme-icon{background-position:100% -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-juliett .exactmetrics-pp-theme-icon{background-position:-126px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-kilo .exactmetrics-pp-theme-icon{background-position:-252px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-lima .exactmetrics-pp-theme-icon{background-position:-378px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-mike .exactmetrics-pp-theme-icon{background-position:100% -378px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-november .exactmetrics-pp-theme-icon{background-position:-126px -378px}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls{text-align:center;font-size:14px;color:#626d83;margin-bottom:25px}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls>span{display:inline-block;margin:0 11px;vertical-align:middle}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button{border:none;border-radius:3px;background:rgba(33,15,89,.1);width:20px;height:20px;text-align:center;color:#626d83;font-size:8px;cursor:pointer}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:focus,.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:hover{background:rgba(33,15,89,.3)}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:disabled{opacity:.5;cursor:default}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button i{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button.exactmetrics-pp-themes-slider-button-next i{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-option{text-align:center}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-name{position:absolute;right:18px;bottom:10px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-icon{width:74px;height:46px;background:url(data:image/png;base64,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) no-repeat 100% 0;background-size:392px;display:inline-block}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-212px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-106px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{height:43px;background-position:-318px 0}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-echo .exactmetrics-pp-theme-icon{height:76px;background-position:100% -73px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-foxtrot .exactmetrics-pp-theme-icon{background-position:-106px -90px;height:41px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-golf .exactmetrics-pp-theme-icon{background-position:-212px -83px;height:56px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-hotel .exactmetrics-pp-theme-icon{height:50px;background-position:-318px -86px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-option{text-align:center}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-name{position:absolute;right:18px;bottom:10px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-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}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-74px;background-position-y:-6px;height:66px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-148px;height:50px;background-position-y:-14px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{height:78px;background-position:-222px 0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-preview{position:relative}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls{margin-left:22px;margin-bottom:20px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls input[type=number]{width:40px;height:40px;border-radius:5px;border:1px solid #b9c9d7;padding:2px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls-inputs{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label{font-size:14px;width:auto;margin-left:9px;color:#210f59;margin-bottom:8px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label span{display:block}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-pp-control-label{margin-bottom:4px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input{border-radius:0 5px 5px 0;text-align:center;-moz-appearance:textfield}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input::-webkit-inner-spin-button,.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow{background:#b9d8f3;padding:3px 5px;border:1px solid #b9c9d7;border-right-width:0;cursor:pointer}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow:focus,.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow:hover{background:#fff}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-up{border-radius:5px 0 0 0;border-bottom:0;padding-bottom:4px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-up i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-down{border-radius:0 0 0 5px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-unit{font-size:14px;color:#210f59;margin-right:5px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls-description{font-weight:700}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:9px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline .exactmetrics-colorpicker-preview span{border-top-left-radius:0;border-bottom-left-radius:0;border-left-width:0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline input[type=text]{border-top-right-radius:0;border-bottom-right-radius:0;max-width:108px}.exactmetrics-admin-page .exactmetrics-color-picker{position:relative;max-width:40px}.exactmetrics-admin-page .exactmetrics-color-picker .exactmetrics-colorpicker-picker{bottom:-120px;margin-right:10px;right:100%}.exactmetrics-admin-page .exactmetrics-pp-posts-picker .multiselect__input{border:none;height:auto;padding:2px 0 0;font-size:14px;line-height:1.4em;background:rgba(0,0,0,0);min-height:0;margin-bottom:10px}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block .exactmetrics-settings-input-select+p{margin-top:25px}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#fff;color:#210f59;border-bottom-width:1px;border-color:#b9c9d7;border-radius:0;line-height:18px;border-left:0;margin:0}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#6528f5;color:#fff;border-color:#b9c9d7}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative;border-radius:0;outline:none}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#6528f5;color:#fff;font-weight:400}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-notice-no-posts{padding-top:15px;cursor:default}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-notice-no-posts span{color:#d83638;font-weight:400}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-beta{width:144px;height:100px;padding:0}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-beta:after{background-image:url(../img/theme-preview-beta.png)}.exactmetrics-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}.exactmetrics-inline-popular-posts-widget{margin-bottom:24px}.exactmetrics-inline-popular-posts-alpha{padding:24px 27px}.exactmetrics-inline-popular-posts-alpha .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1;display:block;margin-bottom:6px}.exactmetrics-inline-popular-posts-alpha .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:1;text-decoration:none}.exactmetrics-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}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-text{margin-right:19px}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-border{display:block;border-bottom:1px solid;margin:16px 0}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-list{list-style:disc inside none}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-list li{font-style:normal;font-weight:400;font-size:16px;line-height:130%}.exactmetrics-inline-popular-posts-delta{border:1px solid #d6e2ed;padding:16px 18px;border-radius:5px}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-icon{margin-left:8px}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;vertical-align:top}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-title{display:block;font-weight:700;font-size:18px;line-height:1;text-decoration:none;margin-top:4px}.exactmetrics-inline-popular-posts-echo{padding:13px 16px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-icon{margin-left:8px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;margin-left:8px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:130%;text-decoration:none}.exactmetrics-inline-popular-posts-foxtrot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-inline-popular-posts-foxtrot .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;display:block}.exactmetrics-inline-popular-posts-foxtrot .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image{padding-top:57%}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image:after{background-image:url(../img/theme-preview-image.jpg)}.exactmetrics-inline-popular-posts-golf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;float:right;background:#fff;padding-left:20px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;clear:both;margin-top:14px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-title:before{width:100%}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-border{display:block;border-width:2px 0 0;border-style:solid;margin-top:10px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-border-2{border-top:1px solid #e2e4e9;margin-top:20px;display:block}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-text{width:100%}.exactmetrics-inline-popular-posts-hotel .exactmetrics-inline-popular-posts-icon{margin-left:10px;vertical-align:middle}.exactmetrics-inline-popular-posts-hotel .exactmetrics-inline-popular-posts-title{font-style:normal;font-weight:700;font-size:18px;text-decoration:none;line-height:130%}.exactmetrics-inline-popular-posts-india{padding:13px 16px 13px 12px;position:relative}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-border{border-width:0 4px 0 0;border-style:solid;position:absolute;right:0;top:0;bottom:0}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-title{font-size:14px;text-decoration:none;font-weight:700}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-label{font-size:14px;text-decoration:none;font-weight:700;margin-left:4px}.exactmetrics-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%}.exactmetrics-inline-popular-posts-juliett .exactmetrics-inline-popular-posts-border{border-width:1px 0 0;border-style:solid;position:absolute;right:0;top:0;left:0}.exactmetrics-inline-popular-posts-juliett .exactmetrics-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%}.exactmetrics-inline-popular-posts-juliett .exactmetrics-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}.exactmetrics-inline-popular-posts-kilo{position:relative;padding:30px 0}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none;display:block;clear:both;margin-top:6px}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-title:before{width:100%}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border,.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border-2{display:block;position:absolute;right:0;left:0;top:0;border-bottom:4px dashed #e2e4e9}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border-2{bottom:0;top:auto}.exactmetrics-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}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-text{margin-right:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:120%;text-decoration:none;display:block;max-width:420px;margin-top:7px}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-image{width:144px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-left:0;margin-right:20px}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image-2{padding-top:69%}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image-2:after{background-image:url(../img/theme-preview-image-2.jpg)}.exactmetrics-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}.exactmetrics-inline-popular-posts-mike .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none;display:block;max-width:380px}.exactmetrics-inline-popular-posts-mike .exactmetrics-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}.exactmetrics-inline-popular-posts-mike .exactmetrics-inline-popular-posts-image{margin-left:20px}.exactmetrics-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}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-text{width:100%}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;margin-top:4px}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-label{display:block;font-size:16px;font-weight:700}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-image{margin-left:20px}.exactmetrics-inline-popular-posts-november .exactmetrics-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}.exactmetrics-sharedcount-status{font-size:12px;color:#777;margin-top:12px;line-height:1.5}.exactmetrics-pp-manual-placement-options{margin-right:-12px;margin-left:-12px}.exactmetrics-pp-manual-placement-option{width:150px;height:150px;border-radius:10px;border:1px solid #9087ac;font-size:14px;line-height:17px;color:#210f59;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)}.exactmetrics-pp-manual-placement-option,.exactmetrics-pp-manual-placement-option .exactmetrics-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}.exactmetrics-pp-manual-placement-option .exactmetrics-pp-manual-placement-options-icon{min-height:40px;margin-bottom:23px}.exactmetrics-pp-manual-placement-option .exactmetrics-pp-manual-placement-options-icon svg path{fill:#6528f5}.exactmetrics-pp-manual-placement-option.exactmetrics-pp-manual-placement-option-active{border:3px solid #6528f5;font-weight:700;background:#f1f7fe}.exactmetrics-pp-placement-options-accordion svg path{fill:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps .exactmetrics-button{margin-top:10px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps input[type=text]{border-color:#9087ac;color:#210f59}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps{width:100%;margin-top:30px}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps li{color:#777}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps li b{color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block{width:calc(50% - 12px);border-radius:10px;background:-webkit-gradient(linear,right top,right bottom,color-stop(17.51%,rgba(101,40,245,.6)),color-stop(74.11%,#37276a));background:linear-gradient(-180deg,rgba(101,40,245,.6) 17.51%,#37276a 74.11%);color:#fff;position:relative;height:198px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;text-align:center}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block>div{position:absolute;bottom:0;padding:20px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block .exactmetrics-welcome-overlay{position:fixed;bottom:0}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block .exactmetrics-pp-video-block-icon{margin-bottom:30px;display:inline-block}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block p{color:#fff;margin:0;text-align:right}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block{width:100%}}.exactmetrics-settings-content-pp-inline input[type=number]{max-width:80px}.exactmetrics-settings-content-pp-inline .exactmetrics-collapsible-content .settings-input-text{margin-bottom:20px}.exactmetrics-inline-desc{margin-right:5px}.exactmetrics-widget-popular-posts-widget{margin-bottom:24px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-alpha .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-alpha .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:24px;background:rgba(33,15,89,.1);border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-beta .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-beta .exactmetrics-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:#210f59;font-weight:700;border-right:4px solid #1ec185;padding-right:16px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-charlie .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-charlie .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:24px;background:rgba(33,15,89,.1);border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700;border-top:4px solid #6528f5}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-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:#210f59;font-weight:700;border-top:2px solid #d3d7de}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-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:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:16px;background:rgba(33,15,89,.1);border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:16px;background:rgba(33,15,89,.1);border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-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}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-title{display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-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}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-text{position:absolute;bottom:0;padding:0 14px 14px;right:0;z-index:15}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-bg-img{margin-bottom:0;padding-top:50%;width:100%}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-bg-img:after{z-index:5;border-radius:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-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}.exactmetrics-pp-products-theme-preview-output,.exactmetrics-pp-widget-theme-preview-output{margin-top:28px}.exactmetrics-dummy-text{padding-left:24px}.exactmetrics-dummy-text p{margin-bottom:40px;line-height:180%}.exactmetrics-pp-widget-controls,.exactmetrics-pp-widget-theme-preview{position:relative}.exactmetrics-pp-widget-controls .exactmetrics-settings-input-select-simple select{min-width:50px}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-1 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-1 .exactmetrics-widget-popular-posts-list li{width:100%}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list li{width:calc(33.33333% - 12px)}@media (max-width:767px){.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-2 .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-2 .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list li{width:100%;margin-right:0;margin-left:0}}.exactmetrics-pp-widget-theme-preview-render h3{font-size:14px;margin-top:14px;margin-bottom:14px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio .exactmetrics-styled-radio{display:none}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio>span{display:inline-block;margin-left:8px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio>span label{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column>span{background:#99a1b2;display:inline-block;width:8px;height:8px;border-radius:1px;margin-bottom:2px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column.exactmetrics-wide-column-two>span{width:12px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column.exactmetrics-wide-column-one>span{width:100%}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-styled-radio-label-checked .exactmetrics-wide-column{border:2px solid #6528f5;background:#ecf4fe;padding:9px 4px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-styled-radio-label-checked .exactmetrics-wide-column>span{background:#6528f5}.exactmetrics-pp-theme-active-icon svg path{fill:#6528f5}.exactmetrics-inline-checkboxes .exactmetrics-settings-input-checkbox{display:inline-block;margin-left:32px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-bg-img{width:121px;height:121px;padding:0;float:right;margin-left:16px;margin-bottom:12px}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-1:after{background-image:url(../img/theme-widget-1.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-2:after{background-image:url(../img/theme-widget-2.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-3:after{background-image:url(../img/theme-widget-3.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-4:after{background-image:url(../img/theme-widget-4.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-5:after{background-image:url(../img/theme-widget-5.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-6:after{background-image:url(../img/theme-widget-6.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-7:after{background-image:url(../img/theme-widget-7.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-8:after{background-image:url(../img/theme-widget-8.jpg)}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-bg-img{width:80px;height:80px;padding:0;float:right;margin-left:18px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-bg-img{padding-top:74%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-1:after{background-image:url(data:image/jpeg;base64,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)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-2:after{background-image:url(../img/theme-products-2.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-3:after{background-image:url(../img/theme-products-3.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-4:after{background-image:url(../img/theme-products-4.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-5{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-5:after{background-image:url(../img/theme-products-5.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-6{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-6:after{background-image:url(../img/theme-products-6.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-7{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-7:after{background-image:url(../img/theme-products-7.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-8{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-8:after{background-image:url(../img/theme-products-8.jpg)}.exactmetrics-widget-popular-posts-products.exactmetrics-widget-popular-posts-echo .exactmetrics-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.exactmetrics-input-text-small{margin-top:24px}.exactmetrics-input-text-small .settings-input-text-input{max-width:350px}.exactmetrics-input-text-extra-small .settings-input-text{display:inline-block;margin-left:5px}.exactmetrics-input-text-extra-small .settings-input-text-input{max-width:80px}.exactmetrics-widget-popular-posts-products{margin-bottom:24px}.exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-rating{display:block}.exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-rating svg{margin-left:2px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-products-popular-posts-list{margin:0 -12px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-products-popular-posts-price{display:block;margin:10px 0 7px;font-weight:400}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-list,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-list li,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-price,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{display:block;font-weight:400;position:absolute;left:12px;bottom:10px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-title,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-title{margin-top:12px;display:block}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-rating,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-rating{margin-top:13px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-price{display:block;font-weight:400;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-top:4px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:4px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-rating{margin-top:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-bg-img{padding-top:74%}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{position:relative;margin-top:8px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list li{padding:0}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{left:auto;bottom:auto;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-rating{margin-top:8px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-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}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-1 .exactmetrics-products-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-1 .exactmetrics-products-popular-posts-list li{width:100%;margin-right:0;margin-left:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list li{width:calc(33.33333% - 24px)}@media (max-width:767px){.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-2 .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-2 .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list li{width:100%;margin-right:0;margin-left:0}}.exactmetrics-pp-blurred{-webkit-filter:blur(3px);filter:blur(3px)}.exactmetrics-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}.exactmetrics-pp-upgrade-overlay>span{margin:0 10px}.exactmetrics-pp-theme-controls-holder{position:relative}.exactmetrics-pro-pill{font-style:normal;font-weight:700;font-size:11px;background:#1ec185;border-radius:5px;color:#fff;padding:3px 8px;margin-right:8px}.exactmetrics-bg-img.exactmetrics-popular-posts-products-upsell{position:relative;width:750px;height:815px;max-width:100%}.exactmetrics-bg-img.exactmetrics-popular-posts-products-upsell:after{background-image:url(../img/popular-products-bg.jpg)}.exactmetrics-bg-img.exactmetrics-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))}.exactmetrics-bg-img.exactmetrics-popular-products-upsell-browser:after{background-image:url(../img/popular-products-browser.jpg)}.exactmetrics-popular-posts-products-upsell{margin-top:20px}.exactmetrics-popular-posts-products-upsell .exactmetrics-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)}.exactmetrics-popular-posts-products-upsell h2{margin-top:0;font-size:22px;line-height:1.2}.exactmetrics-popular-posts-products-upsell p{font-size:16px;line-height:1.2;color:#626d83;margin-bottom:32px}.exactmetrics-popular-posts-products-upsell .exactmetrics-button-text{margin:28px 0;color:#99a1b2;font-size:16px;display:inline-block}.exactmetrics-popular-posts-widget-category{margin-top:25px}.exactmetrics-popular-posts-widget-category.exactmetrics-popular-posts-widget-category-lite .exactmetrics-settings-input-select{pointer-events:none;opacity:.6}.exactmetrics-popular-posts-products-no-woocommerce{margin-top:72px}.exactmetrics-popular-posts-products-no-woocommerce .exactmetrics-settings-block{opacity:.6;pointer-events:none}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice{position:absolute;top:-72px;right:0;left:0;padding:16px 24px;background:#d7930f;color:#fff;font-size:12px}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a{color:#fff;text-decoration:underline;font-weight:700}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a:focus,.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a:hover{text-decoration:none}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice span{margin-right:8px}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice svg{vertical-align:middle}.exactmetrics-popular-posts-products-top{position:relative}.exactmetrics-pp-sharedcount-controls .inline-field{margin-bottom:25px}.exactmetrics-settings-content-pp-products{width:750px;margin-right:auto;margin-left:auto}.exactmetrics-radio-sub-panel .exactmetrics-pp-posts-picker{margin-top:15px}.exactmetrics-pp-placement-options-accordion{padding-right:30px}.exactmetrics-pp-accordion-item-title{border-bottom:1px solid #d6e2ed;padding:24px 0;position:relative}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-toggle *{cursor:pointer}.exactmetrics-pp-accordion-item-title .exactmetrics-settings-input-toggle-collapsible{position:absolute;left:0;top:40%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics-pp-accordion-item-title .exactmetrics-settings-input-toggle-collapsible i{-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-active{border-bottom:0}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-active .exactmetrics-settings-input-toggle-collapsible i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.exactmetrics-pp-accordion-item-title .exactmetrics-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}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-top>span{margin-left:8px;margin-right:8px}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-top .exactmetrics-settings-input-checkbox{display:inline-block}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-bottom{color:#777;padding-left:45px}.exactmetrics-pp-accordion-item-content{border-bottom:1px solid #d6e2ed;padding:0 0 24px}.exactmetrics-dummy-text p,.exactmetrics-pp-inline-theme-preview-render>p{opacity:.5}.exactmetrics-pp-products-theme-preview-output-narrow,.exactmetrics-pp-widget-theme-preview-output-narrow{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-dummy-text,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-dummy-text{width:60%}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget{width:40%}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list li{width:100%}.exactmetrics-dark[data-v-0fc0f471]{display:block}.exactmetrics-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}.exactmetrics-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}.exactmetrics-dark[data-v-62bc6c18]{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:32px 32px 30px;border-radius:5px;background:#f4f3f7;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:10px 27px 10px 15px;border-radius:5px;margin-left:10px;color:#fff;line-height:1;background:#6528f5;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;font-size:14px}.multiselect__tag.exactmetrics-tag-forced{padding-right:15px}.multiselect__tag.exactmetrics-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;right:0;top:0;bottom:0;font-weight:400;font-style:normal;width:32px;text-align:center;line-height:38px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\f046";color:#fff;line-height:2;margin-top:1px;font-size:16px;display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.multiselect__tag-icon:hover:after{color:#9087ac}.multiselect__tag-icon:focus{outline:none}.multiselect__tag-icon:focus:after{text-decoration:underline;color:#fff}.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;max-height:240px;overflow:auto;border:1px solid #f4f3f7;border-top:none;border-radius:3px;z-index:1;-webkit-overflow-scrolling:touch;padding:6px}.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:#f4f3f7;outline:none;color:#210f59}.multiselect__option--highlight:after{content:attr(data-select);background:#f4f3f7;color:#210f59}.multiselect__option--selected{background:#f4f3f7;color:#210f59;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#6528f5;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#6528f5;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:#6528f5;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#6528f5;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)}}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-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;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-left:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-right:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-left:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-right:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-right:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-right:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;right:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;right:-16%;left:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-left:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;right:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-right:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-right:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-right:20px;padding-left:20px}}.exactmetrics-upsell-bottom .exactmetrics-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){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{right:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:0 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:0 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-right:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);right:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-right:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-right:-32px;margin-left:-32px;padding-right:32px;padding-left:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-right:32px;padding-left:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;left:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:0 100%;background-image:url(../img/forms-wpforms-upsell.png)}.update-nag{display:none}.exactmetrics-admin-page{min-height:100vh;font-size:15px;color:#4d3f7a;overflow:hidden}.exactmetrics-admin-page a{color:#6528f5}.exactmetrics-admin-page a:focus,.exactmetrics-admin-page a:hover{color:#393f4c}.exactmetrics-admin-page .exactmetrics-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.exactmetrics-admin-page .exactmetrics-settings-content{margin-bottom:75px}@media (min-width:783px) and (max-width:790px){.exactmetrics-admin-page .exactmetrics-settings-content{padding:0 10px}}.exactmetrics-admin-page input.exactmetrics-has-error{border-color:red}.exactmetrics-admin-page input[type=number],.exactmetrics-admin-page input[type=text],.exactmetrics-admin-page textarea{border:1px solid #9087ac;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#210f59}.exactmetrics-admin-page input[type=number]::-webkit-input-placeholder,.exactmetrics-admin-page input[type=text]::-webkit-input-placeholder,.exactmetrics-admin-page textarea::-webkit-input-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number]:-moz-placeholder,.exactmetrics-admin-page input[type=number]::-moz-placeholder,.exactmetrics-admin-page input[type=text]:-moz-placeholder,.exactmetrics-admin-page input[type=text]::-moz-placeholder,.exactmetrics-admin-page textarea:-moz-placeholder,.exactmetrics-admin-page textarea::-moz-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number]:-ms-input-placeholder,.exactmetrics-admin-page input[type=text]:-ms-input-placeholder,.exactmetrics-admin-page textarea:-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number].exactmetrics-has-error,.exactmetrics-admin-page input[type=text].exactmetrics-has-error,.exactmetrics-admin-page textarea.exactmetrics-has-error{border-color:#d83638}.exactmetrics-admin-page input[type=text]:-moz-read-only{background:#fff;color:#9087ac}.exactmetrics-admin-page input[type=text]:read-only{background:#fff;color:#9087ac}.exactmetrics-admin-page textarea{height:150px;background:#f4f3f7;border:none}.exactmetrics-admin-page label{width:100%;font-size:15px;display:inline-block;color:#210f59;margin:2px 0 17px}.exactmetrics-admin-page label>.exactmetrics-dark{margin-bottom:20px}.exactmetrics-admin-page .inline-field{position:relative}.exactmetrics-admin-page .inline-field input{width:100%;background:#f4f3f7;border:none;height:60px;border-radius:3px;padding:6px 20px;font-size:18px}.exactmetrics-admin-page .inline-field input::-moz-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input:-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input:-moz-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::-webkit-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field .exactmetrics-button{position:absolute;left:6px;top:6px;padding:16px 24px 14px}.exactmetrics-admin-page .inline-field .exactmetrics-button [class*=monstericon-]{margin-left:12px}.exactmetrics-admin-page .exactmetrics-error{margin:18px 0 0;color:#d83638;cursor:default}.exactmetrics-admin-page .exactmetrics-error i{margin-left:10px}.exactmetrics-admin-page .exactmetrics-license-type-text{color:#210f59;font-weight:500;margin-bottom:30px}.exactmetrics-admin-page .exactmetrics-license-type-text a{color:#6528f5;font-weight:400;margin-right:10px;position:relative}.exactmetrics-admin-page .exactmetrics-license-type-text a:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f058";left:100%;margin-left:6px}.exactmetrics-admin-page .exactmetrics-settings-license-network .exactmetrics-button-text,.exactmetrics-admin-page .exactmetrics-settings-license-site .exactmetrics-button-text{color:#9087ac;margin-top:16px;font-size:15px}.exactmetrics-admin-page .exactmetrics-dark{color:#210f59;text-transform:capitalize;font-weight:700}.exactmetrics-admin-page .exactmetrics-settings-block{margin:32px auto;width:750px;max-width:100%;position:relative;z-index:50}@media screen and (max-width:830px){.exactmetrics-admin-page .exactmetrics-settings-block{margin-right:24px;margin-left:24px;width:auto}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title{font-weight:700;font-size:24px;padding:12px 0;color:#210f59;position:relative;-webkit-transition:color .2s ease;transition:color .2s ease}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.2}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title:before{position:absolute;width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);left:100%;top:2px;margin-left:30px;color:#210f59;text-align:center;line-height:40px;font-size:15px;-webkit-transition:background .2s ease 0ms,color .2s ease 0ms;transition:background .2s ease 0ms,color .2s ease 0ms;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}@media (max-width:1062px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title:before{left:auto;right:0;margin-top:-6px;position:relative;top:auto;display:inline-block;margin-left:15px;vertical-align:text-top}}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title{cursor:pointer}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus:before,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover:before{background:#6528f5;color:#fff}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus .exactmetrics-settings-input-toggle-collapsible,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover .exactmetrics-settings-input-toggle-collapsible{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content:before{position:relative;display:block;content:"";height:28px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content p{font-size:15px;color:#210f59;font-weight:500;margin:0 0 30px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content h3{font-size:17px;color:#210f59;line-height:1.5;margin:0 0 15px}.exactmetrics-admin-page .exactmetrics-settings-input-radio input[type=radio]{opacity:0;position:absolute}.exactmetrics-admin-page .exactmetrics-settings-input-radio label{color:#210f59;font-size:15px}.exactmetrics-admin-page .exactmetrics-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.exactmetrics-admin-page .exactmetrics-settings-input-radio label>span{vertical-align:middle;font-weight:500}.exactmetrics-admin-page .exactmetrics-settings-input-radio span:last-child label{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-left:16px}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked{border-color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked:after{right:2px;left:2px;top:2px;bottom:2px;position:absolute;content:"";background:#6528f5;display:block;border-radius:50%}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label{color:#210f59;font-size:15px;margin:0;line-height:1.75}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux{cursor:default}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox{background-color:#e9e7ee}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked{background-color:#b9d8f3}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label input{display:none}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label>span{vertical-align:middle}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label:last-child{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox input:checked+.exactmetrics-checkbox-label{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{width:40px;height:23px;position:relative;display:inline-block;border-radius:20px;margin-left:16px;background-color:#e9e7ee}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{left:3px;right:auto;background:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{right:3px;top:3px;bottom:3px;width:17px;position:absolute;content:"";background:#bcb7cd;display:block;border-radius:50%;line-height:1}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{border-radius:3px;background:#fff;width:20px;height:20px}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{display:none;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:rgba(0,0,0,0);color:#6528f5;content:"\f015";right:3px;top:2px}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{display:inline-block}.exactmetrics-admin-page .exactmetrics-info{color:#9087ac;margin-right:10px;cursor:help}.exactmetrics-admin-page .exactmetrics-settings-input-repeater .exactmetrics-error{margin-top:0;margin-bottom:18px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-labels label{color:#210f59;font-weight:700;margin-bottom:6px;font-size:17px}.exactmetrics-admin-page .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row>span{width:100%;margin-left:18px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(33,15,89,.1);color:#210f59;width:32px;height:32px;border-radius:50%;cursor:pointer;display:block;position:relative;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button i{position:absolute;right:10px;top:7px;font-size:15px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button i:before{content:"\f065"}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row input[type=number]{width:30%;margin-left:15px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row select{width:70%;height:40px;margin-left:15px;border:1px solid #9087ac;border-radius:3px;margin-top:0;margin-bottom:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row input[type=text]{border-color:rgba(0,0,0,0)}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-error input{border-color:#e43462}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid{position:relative}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid:after{position:absolute;left:8px;height:26px;width:26px;background:rgba(50,162,122,.1);top:7px;content:"\f015";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#32a27a;border-radius:50%;text-align:center;line-height:26px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-admin-page .exactmetrics-dimensions-count{color:#4d3f7a;font-size:13px;float:left;line-height:1.7;margin-left:46px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-dimensions-count{float:none;margin-top:5px;display:block}}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-settings-input-repeater-labels label{margin-bottom:0;width:auto}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-error{margin:0 0 20px}.exactmetrics-admin-page .exactmetrics-settings-input-select .exactmetrics-dark{margin-bottom:5px}.exactmetrics-admin-page .exactmetrics-settings-input-select label{margin-top:-4px}.exactmetrics-admin-page .exactmetrics-collapsible .exactmetrics-collapsible-content{padding-right:30px}@media screen and (max-width:767px){.exactmetrics-admin-page .exactmetrics-collapsible .exactmetrics-collapsible-content{padding-right:15px}}.exactmetrics-admin-page .exactmetrics-collapsible>p{margin-top:0}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible{color:#210f59;float:left;font-size:22px;padding-right:20px;-webkit-transition:color .2s ease;transition:color .2s ease;margin-top:6px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible{margin-right:auto;margin-top:3px}}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible:hover{color:#393f4c}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible:focus{outline:none}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible i{cursor:pointer}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-dark{display:block;margin-bottom:9px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate p{margin:0}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-ua,.exactmetrics-admin-page .exactmetrics-settings-input-authenticate button{margin-top:14px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-manual-ua+.exactmetrics-error{margin-top:15px}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-paragraph{padding-top:5px}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-text{color:#4d3f7a;font-size:12px;text-decoration:none}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-text:hover{text-decoration:underline}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-upgrade-icon{display:none}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-settings-addon-message{margin-left:25px;width:100%;line-height:1.7}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-settings-addon-message>span{display:block;max-width:468px}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .settings-addons-upgrade-button{-ms-flex-negative:0;flex-shrink:0}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-button{padding:14px 30px;font-weight:500}.exactmetrics-admin-page .exactmetrics-icon-warning{width:48px}.exactmetrics-admin-page .exactmetrics-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=)}.exactmetrics-admin-page .exactmetrics-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;line-height:1.5}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-bg-img{margin-left:25px}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message{width:100%;color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message strong{margin-bottom:10px}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message span{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-icon-warning{display:none}.exactmetrics-admin-page .exactmetrics-undo-redo{float:left;margin-top:16px}.exactmetrics-admin-page .exactmetrics-undo-redo button{border:none;background:rgba(0,0,0,0);color:#6528f5;padding:0;margin-right:5px}.exactmetrics-admin-page #exactmetrics-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:#9087ac;padding-top:7px}.exactmetrics-admin-page #exactmetrics-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page #exactmetrics-license-key-valid:-moz-placeholder,.exactmetrics-admin-page #exactmetrics-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page #exactmetrics-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page .exactmetrics-grey-settings-area{background:#f4f3f7;border-radius:10px;padding:40px 0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-admin-page .exactmetrics-grey-settings-area.exactmetrics-area-spaced-top{margin-top:72px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-auth-actions{max-width:320px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{width:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;padding:0 40px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{width:auto;margin:0 40px -30px;padding:0}}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half:first-child{border-left:1px solid #bcb7cd}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half:first-child{border-bottom:1px solid #bcb7cd;border-left:0;padding-bottom:40px;margin-bottom:40px}}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full{padding:0 40px;max-width:460px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;position:relative}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full h2{font-size:24px;line-height:1.4;margin-top:0;max-width:340px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full p{line-height:1.7;margin:8px 0 18px;font-size:15px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-icon-background-large{right:auto;left:54px;top:45px;font-size:170px}.exactmetrics-admin-page .exactmetrics-grey-settings-area h3{font-size:17px;color:#210f59;line-height:1.5;margin:0 0 20px}.exactmetrics-admin-page .exactmetrics-grey-settings-area p{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-highlight{font-size:17px;font-weight:700;color:#210f59;display:block}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-button-text{font-size:15px;margin-bottom:0;margin-top:11px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-button-text.exactmetrics-spaced-top{margin-top:20px}.exactmetrics-admin-page .exactmetrics-grey-settings-area a>[class*=monstericon-]{margin-right:15px;display:inline-block;font-size:.8em}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area{background:#f4f3f7;border-radius:10px;padding:32px}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button{background:rgba(0,0,0,0);padding:0 24px 0 0;color:#6528f5;text-decoration:underline;position:relative;font-size:15px;outline:none}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:hover{color:#210f59}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:before{content:"+";position:absolute;right:0;font-size:20px;top:0;line-height:13px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-grey-settings-area p{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-settings-full-width-gray{background-color:#f4f3f7;border-top:1px solid #e9e7ee;border-bottom:1px solid #e9e7ee;padding-top:32px;padding-bottom:32px}.exactmetrics-admin-page .exactmetrics-settings-full-width-gray .exactmetrics-settings-block{margin-top:0;margin-bottom:0}.exactmetrics-admin-page .exactmetrics-inline-gray-box{background:#f4f3f7;padding:22px 32px;border-radius:10px;display:inline-block;margin-top:20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-inline-gray-box{width:100%}.exactmetrics-admin-page .exactmetrics-inline-gray-box:first-child{margin-top:0}}.exactmetrics-admin-page .exactmetrics-inline-gray-box .exactmetrics-settings-input-checkbox{padding:10px 0}.exactmetrics-admin-page .settings-input-text-input{margin-top:12px}.exactmetrics-admin-page .edd-logo,.exactmetrics-admin-page .formidable-forms-logo,.exactmetrics-admin-page .gravity-forms-logo,.exactmetrics-admin-page .lifer-lms-logo,.exactmetrics-admin-page .memberpress-logo,.exactmetrics-admin-page .woocommerce-logo,.exactmetrics-admin-page .wpforms-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.exactmetrics-admin-page .edd-logo,.exactmetrics-admin-page .formidable-forms-logo,.exactmetrics-admin-page .gravity-forms-logo,.exactmetrics-admin-page .lifer-lms-logo,.exactmetrics-admin-page .memberpress-logo,.exactmetrics-admin-page .woocommerce-logo,.exactmetrics-admin-page .wpforms-logo{margin-top:18px}}.exactmetrics-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.exactmetrics-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.exactmetrics-admin-page .lifer-lms-logo{background-image:url(data:image/png;base64,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);width:116px}.exactmetrics-admin-page .wpforms-logo{background-image:url(../img/logo-wp-forms.png);width:115px}.exactmetrics-admin-page .formidable-forms-logo{background-image:url(../img/logo-formidable-forms.png);width:110px}.exactmetrics-admin-page .gravity-forms-logo{background-image:url(data:image/png;base64,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);width:115px}.exactmetrics-admin-page .misc-forms-logo:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\0049";color:#bcb7cd;font-size:40px}.exactmetrics-admin-page .exactmetrics-plugin-blocks{margin:30px 0;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}.exactmetrics-admin-page .misc-forms-logo{content:"\f01e";height:25px;line-height:31px;width:34px}.exactmetrics-admin-page .exactmetrics-spaced-input{margin-bottom:50px}.exactmetrics-admin-page .exactmetrics-plugin-block{background:#f4f3f7;border-radius:10px;padding:10px;text-align:center;width:calc(50% - 7px);margin-bottom:15px}@media (max-width:665px){.exactmetrics-admin-page .exactmetrics-plugin-block{width:100%}}.exactmetrics-admin-page .exactmetrics-plugin-block.exactmetrics-plugin-block-active{border:2px solid #32a27a;background:#fff}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo{background:#fff;border-radius:5px;padding:12px 10px;text-align:center}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo .exactmetrics-bg-img{padding-top:0;display:inline-block}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo .exactmetrics-bg-img.memberpress-logo{width:198px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content h4{color:#210f59;font-size:15px;line-height:1.7;margin:20px 0 5px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content p{color:#9087ac;line-height:1.7;margin-bottom:20px;margin-top:5px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content .monsterinsgights-plugin-check{margin-top:10px;background:rgba(50,162,122,.1);width:40px;height:40px;display:inline-block;border-radius:50%;text-align:center;color:#32a27a;font-size:15px;line-height:40px}.exactmetrics-admin-page .exactmetrics-settings-callout{background:#fff;border-radius:5px;border:1px solid #f4f3f7;padding:19px 78px 26px 14px;position:relative;-webkit-box-shadow:0 10px 22px 0 rgba(0,0,0,.1);box-shadow:0 10px 22px 0 rgba(0,0,0,.1)}.exactmetrics-admin-page .exactmetrics-settings-callout:before{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-style:solid;border-width:0 8px 10px;content:"";bottom:100%;right:22px;z-index:15}.exactmetrics-admin-page .exactmetrics-settings-callout:after{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #f4f3f7;border-style:solid;border-width:0 9px 11px;content:"";bottom:100%;right:21px;margin-bottom:1px;z-index:10}.exactmetrics-admin-page .exactmetrics-settings-callout .monstericon-info-circle-regular{position:absolute;font-size:24px;right:23px;top:20px;color:#bcb7cd}.exactmetrics-admin-page .exactmetrics-settings-callout h4{color:#210f59;font-size:15px;line-height:1.5;margin:0 0 13px}.exactmetrics-admin-page .exactmetrics-settings-callout a{font-weight:700}.exactmetrics-admin-page .exactmetrics-settings-callout .exactmetrics-close-button{border:none;padding:0;background:rgba(0,0,0,0);color:#bcb7cd;top:11px;left:14px;position:absolute}.exactmetrics-admin-page .exactmetrics-settings-callout .exactmetrics-grey-link{margin-right:16px}.exactmetrics-admin-page .exactmetrics-settings-callout.exactmetrics-settings-callout-arrow-bottom:after,.exactmetrics-admin-page .exactmetrics-settings-callout.exactmetrics-settings-callout-arrow-bottom:before{top:100%;bottom:auto;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.exactmetrics-admin-page .exactmetrics-grey-link{color:#9087ac}.exactmetrics-first-time-notice .exactmetrics-notice-button{margin-top:20px}.exactmetrics-settings-blur .exactmetrics-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.exactmetrics-settings-blur.exactmetrics-path-general .exactmetrics-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.exactmetrics-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 .exactmetrics-not-authenticated-notice{margin-right:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-right:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{right:0;margin-right:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-right:-375px}}.exactmetrics-not-authenticated-notice .exactmetrics-auth-manual-connect-paragraph{display:none}.exactmetrics-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-button{margin:0 20px}.exactmetrics-not-authenticated-notice .exactmetrics-dark{font-weight:400;margin-bottom:20px}.exactmetrics-settings-content.settings-advanced .exactmetrics-settings-block:first-child{z-index:60}.exactmetrics-admin-page .exactmetrics-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){.exactmetrics-admin-page .exactmetrics-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}}.exactmetrics-admin-page .exactmetrics-logos-row .exactmetrics-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%}.exactmetrics-admin-page .exactmetrics-report-ecommerce:after{background-image:url(../img/exactmetrics-report-ecommerce.png)}.exactmetrics-admin-page .exactmetrics-addon-ads,.exactmetrics-admin-page .exactmetrics-addon-amp,.exactmetrics-admin-page .exactmetrics-addon-dimensions,.exactmetrics-admin-page .exactmetrics-addon-eu-compliance,.exactmetrics-admin-page .exactmetrics-addon-forms,.exactmetrics-admin-page .exactmetrics-addon-instant-articles,.exactmetrics-admin-page .exactmetrics-addon-optimize,.exactmetrics-admin-page .exactmetrics-addon-performance,.exactmetrics-admin-page .exactmetrics-addon-scroll{width:48px;padding-top:110%}.exactmetrics-admin-page .exactmetrics-addon-eu-compliance{padding-top:100%}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmBAMAAADG74kWAAAAFVBMVEXW4urW4urW4uoAAADW4uqsvclQn+ITLWFyAAAABHRSTlPsoxwAEnMmfgAAAIFJREFUWMPt2LEJgDAUBNCvOICFAwhu4AQKP06QbCDuP4J9sPCKwOm/KwOvusCHs3V0IN1is0PpbcLAbgMGNnMwvwGp1MmPj7EBYXGEgLA4QkBYHCFI5VVybEBYHCEgLE5AQEBAIAQgPIqE4LjqnAJtwNe+RlMAz0XwIAVPXvCodgNhA6kmkI3HfAAAAABJRU5ErkJggg==)}.exactmetrics-admin-page .exactmetrics-addon-optimize{padding-top:100%}.exactmetrics-admin-page .exactmetrics-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=)}.exactmetrics-admin-page .exactmetrics-addon-dimensions{padding-top:105%}.exactmetrics-admin-page .exactmetrics-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.exactmetrics-admin-page .exactmetrics-addon-performance{padding-top:105%}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-addon-scroll{padding-top:105%}.exactmetrics-admin-page .exactmetrics-addon-scroll:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABdCAMAAAD0WkrMAAACH1BMVEUAAACNn7OOoLSOoLOQoraOoLSOobSNn7OOoLSNoLONn7SOoLSPoraOoLOOoLRKkOKPoLSNoLOQpbiOoLOOn7SNn7OOn7SNoLVKkeONn7SOn7RKkOOcpdpKkeOQoLSNn7OOn7N6puB9n8VKkONLkeRLkeNKkONKkONOleZKkOKNn7NSluxJkOJKkeNKkOONn7NLkeSQobVIj+NQlOlKkOJNlelKkONKkeKPobRLkuRMkeWSo7OUpLaRobOOoLVJlOpKkOOOoLRKkeNKkeRLkeNPlehAjuiNn7ZMkeZJkeVOkeVLkeVLk+NKkeOOoLRKkeNMkuVKkuNLkeSOoLRNk+WYoq1LkeROkudGkOZPlORJkuZOl+Y+iOBKkONLkeOOoLRKkORMkeROk+SNoLGOoLSOoLRLkeNMkuVMkuVMkeSPoLSPobWNna5PmuqOoLM0g99Hj99LkuJOlepLkeRQluxNkeWOorWOobVQmOxLkuOiyfRPludHjeCPobSSqLiOobSPoLSaotsugN+QoLRQm+6PorZgofVMk+Sls8WOobVFjuK/wuSLl66DmKk/iN9Li+WOobSWp7o8ieBCgN82iOSUosZ0qOc6h+A9jed0quhSluFQles3huE7j+yQorezvNqVve2SocCOn7SqyvCUv8Vgj/aZwu/F3PVjqvdr1PWNn7NKkOKMn7KOoLSJnahKkeNJj+JJkOJIjeBIj+CLnq7WZLCEAAAAqnRSTlMA/aILDZvF9bTj4hjBmSL1gtwHN07sneBGJF+Vf8Ao+dACBMd9g+r4B/zxGvvl2b5YGxYK3R3uy8ikTy4lHxIF8urUua9hV0tJPS8uzcSvm5B3cGQ6NTQyJyUPCf7z4Nm9s62qpqSfbmdcWkE7Evfy4Kmdi3psa2haVQ0N97iokoiGVFJRPzo2NTUiGvbk1tPSzsi7tbGkopOHhIF8bm5rY2NWTUs/OjApH9TI5RQAAAWsSURBVGje1Zn5VxJRFICvgpUtJmBFK80gQggiGAiKmqalaWpWpraZS6Zp+77v+77v+zqjBdkf2NxHOiPO1GOYzrHvB3Hg8L3Hfffe9wYgSZjj5vkL8wIzRdyFlU2tG0EbBrJz+PEssW+rcYAGHNnDK2BvyIWksbl4ZayrIEnmR2NTDbjrVltHyctZtoRHlo4OwBp1iaBnATkwHJtnkx/GsNHcEFuUwtyYPXzodFoidO4EgSIiWdZTBuNZ1U4+QgMusu7wLC4xht6hoxKj4zaDLAUhHMC+DsCYmcLFGKSlHOdfZcdELAIJjHSAdl5gmwMu7iJyZ/ocWmZNLwaAUER4vw0kbMgfAJFaDJ+9FerRnrK4z8tAIrTUYXSaQSS3kG9iQWS7ECFXD6QLessMPSRI70zBP19SpL7VwhM7JJM0LxOeqITJgt/DQqI0CW8erhKvjy/HeEWPSNIUA1SIfucVFaWLtgvicm6L1ZrrKIxSIVxvEfyDdxkVtYu20eR07OV/s7kaRliIl4I/5ZRK//cRP7PvBz9Czkepfyb6U4HAzqUjXGKM8z8hemsogA97Lin4velTqXB6Fo31P92E3i21sJ/001uf5f0ZQxwdW9eP8b84gVb3ZYwaaTv3WrT0r9lMwl4TKyoeaa+V85fOpqMr0yvxX84jbbQaCGwskWwb4/3q88dmFzRFYiFgVW0A7fywxsX3YpK2Nrdhn2gftvpBSz8834F7TP6W7yHcsK7t84Osn9FTomNG/SK+Cml/k13fNDq6M0tk/KuW4ro6AEky/w1ifkoI8XygBv6d35cdMrN/8k8LTqLiTldY4o9H2Q9GOnRGUOWnZ2L6SzPlOfPKS+PPrTpQU6Yqf6bupPFvj0QC61T5Df0U/g1/rS/vYnkM9cUUfn9elOd72D/42UUKZBj/7PcV4N+evJzlfrIQZdrmz7HHjQMkQtVt+FC93Mxo6T/2aFOksQBGWOeO7nnPaOf3PxBOD5FnDuky764q08zfTPbfHwdiQf9yO4oHR5tDu/hUu8kALzF1vtbhSSvScFyr+Ig3YpveMOC7j/poqE3b/pMfwIvd59o6eKRyQOv+VrUMvUutM/FhuQ/k/eGzC6g4+/q61I8c3MyPsNoPCv6sb5Tc7I8//8ManDoOWdcCSv6VXAL77360iXeneIpDKiRfOtThsVTiv5huoKL85CJhwpiHR0CkcQme0aUN2o3jSfcXEx39xTqAHYIukg0ibIMwW2lDbQngYqvNnxrsA4WtILJx7+5zgEgitsSm1g8deD/aCxKufToGIgXYN+zNqv3Z6M+rBSUaXfh6gfR8dT6Ljr4w7iKrSTHlgjwHMWFdvYzEv3PyLDoGZ+sx5YdJOcl+Akc2qYfCAlCT/9yND3ic7yADLLWtYuPsvvxKF7lpugRSf9YQLYOndBgha5QnI3TMt2WL7N++MFbMw1XsGL937TxKDmfpQaDV+oOIIryIeHniYBmIflXk7nPxSlRcYCFZP7QVLZS359hqGUjWj/iPNlbY+e+jYvzXXdm0jgWI97P6xNAxgDhaaqqP5gusIOQXmZt9+Mo4vyk4KSGCD9/q4S+oyH+Rn87g6bUr+03YT5GwyVRsVPZncWpImWwxFANhRvrUSV5lf/HsGQmTlpra1TmjBAgejps1V9nP6NTCAGEKx03NkPUny4TwXwlOV0WwPkzlXzmoEqeJzs+pxHmVyn/VM0UVnu4MKr9xmlrYCZE//7u/VPbLjUyTVv4Siwycc60WfuXvNyyHNJv/kBy7DmvlZzNkmJuhn/D50wXacFLez3lAG4IK/nIvaMEig4LfkgZakMrJ+cs5DmsoeQ458aeZEojDQ3aItGRDNG32LhTVl0Icay3klFTu6U5VT7ennCP0QTy6+hSOkJIMXIzUUhhHSaeF04ahzusgg65vytb05DFMOa+DcfwCnfF+X2DgUlQAAAAASUVORK5CYII=)}.exactmetrics-admin-page .exactmetrics-upsell-large{padding-bottom:35px}@media (max-width:767px){.exactmetrics-admin-page .exactmetrics-upsell-large{padding-right:10px;padding-left:10px;line-height:1.2}}.exactmetrics-admin-page .exactmetrics-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.exactmetrics-admin-page .exactmetrics-upsell-large h2{font-size:18px;margin-top:0}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-coupon{color:#6528f5;border:1px dashed #6528f5;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:right;margin:10px 0}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .settings-input-license p{color:#210f59;margin-bottom:15px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .settings-input-license p a{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-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)}.exactmetrics-admin-page .exactmetrics-settings-ecommerce .exactmetrics-upsell-left p{max-width:350px;line-height:1.7;margin-bottom:22px}.exactmetrics-admin-page .exactmetrics-settings-ecommerce .exactmetrics-full-width-upsell{margin-bottom:0}.exactmetrics-admin-page #em-upgrade-confirmation .exactmetrics-welcome-overlay-inner{width:742px;max-width:calc(100% - 64px);border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5);height:auto;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation{display:-webkit-box;display:-ms-flexbox;display:flex;padding-bottom:26px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation h2{font-size:24px;line-height:1.4;color:#210f59;margin-top:9px;margin-bottom:19px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation p{font-size:15px;line-height:1.75;color:#4d3f7a;margin-bottom:16px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation .exactmetrics-button i{margin-right:15px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons{position:relative;width:250px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;text-align:center;padding:0 50px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light{color:#6528f5;font-size:40px;opacity:.5;position:absolute;top:99px;right:0}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:first-child{font-size:70px;opacity:1;position:relative;top:47px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:nth-child(2){right:105px;top:114px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:nth-child(3){right:52px}.exactmetrics-admin-page .exactmetrics-upgrade-confirmation-icons .monstericon-arrow-circle-up-light:nth-child(4){right:158px}
1
+ .exactmetrics-dark[data-v-217bce3e],.exactmetrics-dark[data-v-993e4e00],.exactmetrics-dark[data-v-4619bc56]{display:block}.exactmetrics-addons-navbar{text-align:right}.exactmetrics-addons-navbar h1{display:inline-block;font-size:32px;line-height:1.3;font-weight:600;margin:0;color:#210f59}@media (max-width:959px){.exactmetrics-addons-navbar h1{font-size:24px}}.exactmetrics-addons-navbar .exactmetrics-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:0;width:310px;position:relative}@media (max-width:750px){.exactmetrics-addons-navbar .exactmetrics-addons-filters{width:100%;margin-top:20px}}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]{height:40px;margin-left:0;padding-right:20px;padding-left:28px;font-size:14px;border-color:#f4f3f7;background:#f4f3f7;border-radius:3px}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]::-webkit-input-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]:-moz-placeholder,.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]::-moz-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters input[type=text]:-ms-input-placeholder{color:#210f59}.exactmetrics-addons-navbar .exactmetrics-addons-filters>i{position:absolute;left:20px;top:10px;z-index:10;color:#210f59;font-size:15px}.exactmetrics-addon-inactive .exactmetrics-addon-status span,.exactmetrics-addon-not-available .exactmetrics-addon-status span,.exactmetrics-addon-not-installed .exactmetrics-addon-status span{color:#9087ac}.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}#exactmetrics-addons{width:1094px}@media (max-width:782px){#exactmetrics-addons{width:100%}}#exactmetrics-addons .exactmetrics-addons-area{margin:0 10px}@media (max-width:782px){#exactmetrics-addons .exactmetrics-addons-area{margin-right:24px;margin-left:24px}}#exactmetrics-addons .exactmetrics-addons-no-results{margin-top:25px;padding:0 10px}#exactmetrics-addons .exactmetrics-addons-no-results p{font-size:16px}#exactmetrics-addons .exactmetrics-addons-no-results>div{visibility:hidden;-webkit-animation:loadExactMetricsSettingsNoJSView 0s 2s forwards;animation:loadExactMetricsSettingsNoJSView 0s 2s forwards}.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button{background:#9087ac;color:#fff}.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-active .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-not-available .exactmetrics-button:hover{background:#fff;color:#37276a}.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-inactive .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-addon-not-installed .exactmetrics-button:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{padding:0;width:100%;margin-right:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation{background:none;position:relative;-webkit-box-shadow:none;box-shadow:none}@media (max-width:959px){.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation{padding:0;right:0}}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar .exactmetrics-main-navigation .exactmetrics-main-navigation-open{padding:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-logo-area{display:none}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-header{background:rgba(0,0,0,0);border-bottom:1px solid #e9e7ee;padding:32px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-full-width-upsell{min-height:360px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-upsell-title{padding:32px}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-upsell-title h2{font-size:32px;margin:0}.exactmetrics-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:64px;margin-bottom:33px}@media (max-width:782px){.exactmetrics-addons-list{margin-top:24px}}.exactmetrics-addons-list .exactmetrics-addon{width:calc(50% - 16px);position:relative;background:#f4f3f7;padding:0 0 72px;margin-bottom:32px;border-radius:8px}@media (max-width:782px){.exactmetrics-addons-list .exactmetrics-addon{width:100%}}.exactmetrics-addons-list .exactmetrics-addon h3{color:#210f59;font-size:17px;line-height:1.5;margin-top:9px}.exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-excerpt{color:#210f59;font-weight:400;margin:12px 0 0;font-size:15px;line-height:1.75}.exactmetrics-addons-list .exactmetrics-addon-top{padding:30px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-addons-list .exactmetrics-addon-image{width:68px;height:68px;background:#fff;-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;border-radius:50%;text-align:center;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}.exactmetrics-addons-list .exactmetrics-addon-image i{font-size:23px;color:#210f59}.exactmetrics-addons-list .exactmetrics-addon-image.exactmetrics-addon-noicon{border-radius:4px;width:80px;height:80px;padding:12px}.exactmetrics-addons-list .exactmetrics-addon-image img{max-width:100%}.exactmetrics-addons-list .exactmetrics-addon-message{position:absolute;bottom:0;background:#e9e7ee;right:0;left:0;border-radius:0 0 8px 8px}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-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}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-addon-status{font-size:15px;color:#210f59}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-addon-action{-ms-flex-item-align:end;align-self:flex-end}.exactmetrics-addons-list .exactmetrics-addon-message .exactmetrics-button{padding-bottom:11px;padding-top:12px;min-width:146px;font-size:14px;line-height:1.2;border-radius:3px;text-align:center}.exactmetrics-addons-list .exactmetrics-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.exactmetrics-path-addons .exactmetrics-header{display:none}.exactmetrics-file-input{margin-bottom:20px}.exactmetrics-tools .exactmetrics-dark{margin-bottom:5px;display:block}.exactmetrics-admin-page .exactmetrics-tools-url-builder p .exactmetrics-info{margin-right:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text{margin-bottom:20px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text .exactmetrics-dark{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-input-text input[type=text]{background:#f4f3f7;border:none;color:#9087ac}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area{width:750px;margin:0 auto;max-width:100%;display:block;padding-right:40px;padding-left:40px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area textarea{background-color:#fff}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area{padding-right:24px;padding-left:24px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-grey-settings-area .exactmetrics-settings-block{margin-right:0;margin-left:0}}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-tools-small-text{font-size:13px;color:#9087ac;margin-right:9px;display:inline-block;font-weight:400}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-tools-description-top{font-size:15px;margin-top:10px;line-height:1.75;display:inline-block}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{margin-bottom:0}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span{color:#4d3f7a;line-height:1.75}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span.exactmetrics-dark{font-size:17px;color:#210f59}.exactmetrics-admin-page.exactmetrics-path-tools-import-export label span.exactmetrics-info{color:#9087ac}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled{margin-bottom:0}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled i{margin-left:13px}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled input{display:none}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label{display:block;background:#e9e7ee;border-radius:5px;padding:16px 24px;color:#6528f5;text-decoration:underline;text-align:center}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label>span{color:#6528f5}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label:focus,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-label:hover{text-decoration:none}.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-file-input-styled-filename{font-size:13px;margin-top:8px;line-height:175%;color:#9087ac;text-overflow:ellipsis;overflow:hidden;white-space:pre}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-input-description{color:#9087ac;font-size:13px;line-height:1.7;margin-bottom:20px}.exactmetrics-required{color:#d4393d}textarea:-moz-read-only{background-color:#210f59}textarea:read-only{background-color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-row p{margin-top:0}.exactmetrics-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-tools-info-row .exactmetrics-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-tools-info-row .exactmetrics-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.exactmetrics-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content p{font-weight:400}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-description p{font-size:13px;margin:0;line-height:1.75}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-tools-info-label p{margin:0}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-toolsadditional-info{margin-bottom:15px}.exactmetrics-admin-page .exactmetrics-tools-url-builder .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-toolsadditional-info i{margin-left:10px;color:#6528f5}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad{background-color:#6528f5;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){.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad{padding-bottom:50px}}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-title,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-description,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-description{color:#fff;font-family:Roboto,sans-serif;line-height:20px}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button{background:#4615bd;border:0;font-size:16px;font-weight:700;border-radius:5px;font-family:Roboto,sans-serif;position:relative;padding-left:76px;padding-right:60px}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:hover,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:hover{background:#4b11d7;border-color:#4b11d7;outline:none}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-button:after,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-button:after{position:absolute;content:"";left:53px;top:50%;width:16px;height:17px;margin-top:-8px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACESURBVHgB3ZPRDYAgDESrE+gGjuIIjshGjlA3kA3OkmAEQgvGP19S7ud6NA0QKQBgPLDmG4wAZEah5hvpI38KkJ1tydZRGpGzUsUwSe1o49RxOkIctTBC2s1GiLPMXLktNC9RnTEVE3TuEHMvQzioHy81JfrqIXn5T7PoEdVbO9A4C+ULdv1uYZMCHL8AAAAASUVORK5CYII=);background-repeat:no-repeat}.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-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){.exactmetrics-admin-page .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo,.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-prettylinks-flow-ad .exactmetrics-prettylinks-flow-ad-logo{left:10px;bottom:0}}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks{position:relative;background:#4b11d6;border-color:#4b11d6;margin-right:15px;padding-left:48px;padding-right:23px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:active,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-copy-to-prettylinks:hover{background:rgba(75,17,214,.8);border-color:rgba(75,17,214,.8);outline:none}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-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.exactmetrics-prettylinks-flow-page{background:#fff}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{max-width:770px;margin:0 auto}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{padding:0 30px}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow{max-width:700px}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow a,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow div,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h1,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h2,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h3,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow h4,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow p,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow span{font-family:Roboto,sans-serif}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow p{font-size:16px;line-height:21px;color:#393f4c}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header{text-align:center;max-width:680px;margin:0 auto;padding-top:75px;padding-bottom:20px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-tools-prettylinks-flow-header-logo{min-height:56px;background-image:url(../img/em-pl-logo.svg);background-repeat:no-repeat;background-position:50%}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-prettylinks-flow-title{font-size:39px;font-weight:900;line-height:46px;text-align:center;color:#393f4c;margin-top:60px;margin-bottom:18px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-header .exactmetrics-prettylinks-flow-description{max-width:560px;margin:0 auto}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:25px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-image{margin-right:-35px}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-image{margin-right:0}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-description{padding-right:16px}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row .exactmetrics-tools-prettylinks-row-description h3{margin-top:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard{border-radius:5px;border:1px solid #e2e4e9;margin-bottom:36px}@media (max-width:782px){body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard{text-align:center;padding:30px 30px 0}}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated{border-width:2px;border-color:#6528f5}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-prettylinks-flow-counter,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-prettylinks-flow-counter{background:#6528f5}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-tools-prettylinks-action .exactmetrics-button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-tools-prettylinks-action .exactmetrics-button{background:#6528f5;border-color:#6528f5;color:#fff}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-activated .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button,body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-not-activated .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button{pointer-events:auto}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-status-active .exactmetrics-prettylinks-flow-counter{background:#1ec185}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard.prettylinks-status-active .exactmetrics-tools-prettylinks-action .exactmetrics-button{pointer-events:none}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-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.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action{padding:30px 0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action h3{font-size:18px;line-height:18px;color:#393f4c;font-weight:700;margin-top:12px;margin-bottom:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action p{margin-top:6px;margin-bottom:0}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action .exactmetrics-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;position:relative}body.exactmetrics-prettylinks-flow-page .exactmetrics-settings-content.exactmetrics-tools-prettylinks-flow .exactmetrics-tools-prettylinks-flow-content .exactmetrics-tools-info-row.exactmetrics-prettylinks-flow-install-wizard .exactmetrics-tools-prettylinks-action.exactmetrics-tools-create-prettylinks .exactmetrics-button{pointer-events:none}.exactmetrics-about-block{padding:0;background:#fff;margin-top:40px}@media (max-width:782px){.exactmetrics-about-block{padding:0 24px}}.exactmetrics-about-block h3{color:#210f59;font-size:24px;margin:0 0 20px;line-height:1.4;padding-top:25px}.exactmetrics-about-block p{font-size:15px;line-height:1.75;font-weight:500;color:#210f59}.exactmetrics-about-block:after{content:"";display:table;clear:both}div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{width:1094px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-container{padding-right:24px;padding-left:24px}}div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-right:20px;padding-left:20px}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-header,div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-header,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{padding-right:0;padding-left:0}}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar{margin-right:-163px}div[class*=" exactmetrics-path-about-"] .exactmetrics-navigation-bar .exactmetrics-container,div[class^=exactmetrics-path-about-] .exactmetrics-navigation-bar .exactmetrics-container{width:auto}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list{padding:0 20px}div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:calc(33.3333% - 21px)}@media (max-width:782px){div[class*=" exactmetrics-path-about-"] .exactmetrics-addons-list .exactmetrics-addon,div[class^=exactmetrics-path-about-] .exactmetrics-addons-list .exactmetrics-addon{width:100%}}div[class*=" exactmetrics-path-about-"] .exactmetrics-addon-image,div[class^=exactmetrics-path-about-] .exactmetrics-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*=" exactmetrics-path-about-"] .monstericon-star:before,div[class^=exactmetrics-path-about-] .monstericon-star:before{color:#fdb72c}.exactmetrics-lite-vs-pro-table{padding:0}.exactmetrics-lite-vs-pro-table .exactmetrics-lite-vs-pro-footer{background:#e9e7ee}.exactmetrics-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.exactmetrics-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.exactmetrics-features-table{width:100%;border-collapse:collapse;position:relative;margin-bottom:95px}.exactmetrics-features-table tr{position:relative}.exactmetrics-features-table tr:first-child td{border-radius:10px 0 0 0}.exactmetrics-features-table tr:first-child .exactmetrics-features-table-feature-title+td{border-radius:0 10px 0 0}.exactmetrics-features-table tr:first-child:after{display:none}.exactmetrics-features-table tr:after{display:block;border-top:1px solid #bcb7cd;opacity:.5;content:"";position:absolute;right:0;left:40px}.exactmetrics-features-table tbody tr:last-child td{padding:0;background:none}.exactmetrics-features-table tbody tr:last-child:after{display:none}.exactmetrics-features-table td,.exactmetrics-features-table th{width:33.33333%;padding:40px;vertical-align:top}.exactmetrics-features-table td p,.exactmetrics-features-table th p{margin:0}.exactmetrics-features-table th{text-align:right;border-left:none;font-size:24px;line-height:1.4}.exactmetrics-features-table th i{width:40px;height:40px;border-radius:50%;color:#210f59;background-color:rgba(33,15,89,.1);display:inline-block;text-align:center;line-height:40px;font-size:15px;margin-left:30px}.exactmetrics-features-table td{background:#f4f3f7}.exactmetrics-features-table td p{font-size:17px;line-height:1.5}.exactmetrics-features-table td p>span{margin-top:16px;display:block}.exactmetrics-features-table .exactmetrics-features-table-feature-title{background:none;padding-right:0}.exactmetrics-features-table .exactmetrics-features-table-feature-title i{float:right;font-size:23px;color:#6528f5;margin-left:18px}.exactmetrics-features-table .exactmetrics-features-table-feature-title p{font-weight:700;font-size:17px;color:#37276a;line-height:1.5;margin-right:41px}.exactmetrics-features-full:before,.exactmetrics-features-none:before,.exactmetrics-features-partial:before{display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f026";font-size:20px;margin-left:10px;color:#d4393d;position:relative;top:2px;margin-bottom:16px}.exactmetrics-features-full:before,.exactmetrics-features-partial:before{content:"\f022";color:#19865f}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer{padding:40px;text-align:center;border-radius:0 0 10px 10px;border-top:1px solid #bcb7cd}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer h3{color:#210f59;font-size:17px;max-width:350px;line-height:1.5;margin:0 auto 16px}.exactmetrics-features-table .exactmetrics-lite-vs-pro-footer p{margin-bottom:24px;font-size:15px;line-height:1.75;color:#210f59;max-width:350px;margin-right:auto;margin-left:auto}.exactmetrics-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-two-column>div{width:50%}.exactmetrics-about-docs-row:after{display:table;clear:both;content:""}.exactmetrics-about-docs-image{width:158px;float:right;margin-left:32px}.exactmetrics-about-docs-image .exactmetrics-bg-img{width:158px;background-color:#fff;border-radius:5px;height:158px;padding-top:0}.exactmetrics-about-docs-image .exactmetrics-bg-img:after{background-position:50%;right:10px;left:10px;top:10px;bottom:10px}.exactmetrics-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.exactmetrics-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.exactmetrics-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.exactmetrics-about-docs-4:after{background-image:url(../img/about-icon-addons-em.png)}.exactmetrics-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.exactmetrics-bg-img.exactmetrics-about-team{padding-top:70%}.exactmetrics-bg-img.exactmetrics-about-team:after{background-image:url(../img/about-team-photo.png)}.exactmetrics-about-docs-text h3{color:#210f59;font-size:17px;line-height:1.5}.exactmetrics-about-docs-text p{margin:16px 0 24px}.exactmetrics-about-page-right-image{float:left;width:48%;text-align:center;margin:0 20px 0 0}@media (max-width:782px){.exactmetrics-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.exactmetrics-about-page-right-image img{width:100%}.exactmetrics-about-page-right-image figcaption{color:#4d3f7a;margin-top:5px}.exactmetrics-about-page-right-image iframe{max-width:100%}.exactmetrics-page-title{padding:32px;line-height:1.3;border-bottom:1px solid #e9e7ee}.exactmetrics-page-title h2{margin:0;font-size:32px;color:#210f59}.exactmetrics-about .exactmetrics-addon-top{padding:40px 40px 24px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-about .exactmetrics-addon-noicon{margin-bottom:10px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon{padding-bottom:145px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message{padding:24px 40px 40px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior{border-top:1px solid #ccc;padding:24px 0 0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:start;-ms-flex-align:start;align-items:start;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-status{margin-bottom:24px}.exactmetrics-about .exactmetrics-addons-list .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-interior .exactmetrics-addon-action{-ms-flex-item-align:start;align-self:start}.exactmetrics-about .exactmetrics-upsell-row{margin-top:70px;background:rgba(0,0,0,0)}.exactmetrics-about .exactmetrics-upsell-list-item>i{min-width:23px}.exactmetrics-about .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text i{margin-right:14px;font-size:15px}.exactmetrics-bg-img.exactmetrics-em-logo-color{padding-top:8%;width:387px;max-width:100%}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-em-logo-color{width:133px;padding-top:10%}}.exactmetrics-bg-img.exactmetrics-em-logo-color:after{background-position:50%;background-image:url(../img/em-logo.png)}.exactmetrics-about-page-top{padding:60px 0;background:radial-gradient(64.37% 131.18% at 50.04% 32.71%,hsla(0,0%,100%,.1) 0,hsla(0,0%,100%,0) 100%),rgba(101,40,245,.1);border-bottom:1px solid #e9e7ee;margin-bottom:635px}@media (max-width:782px){.exactmetrics-about-page-top{margin-bottom:0}}.exactmetrics-about-page-top h3{color:#6528f5;margin:0 135px 0 0;font-size:20px;line-height:1.3;font-weight:400}@media (max-width:782px){.exactmetrics-about-page-top h3{margin-right:0}}.exactmetrics-about-page-top h2{max-width:570px;margin-right:135px;margin-top:9px}@media (max-width:782px){.exactmetrics-about-page-top h2{margin-right:0;margin-left:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button{width:750px;max-width:100%;margin-right:135px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button{margin-right:0}}.exactmetrics-about-page-top .exactmetrics-about-top-button p{max-width:300px;margin-left:100px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button p{margin-left:24px}}.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:left;margin-top:10px}@media (max-width:782px){.exactmetrics-about-page-top .exactmetrics-about-top-button .exactmetrics-button{float:none}}.exactmetrics-about-page-top .exactmetrics-container{width:1094px}.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:-635px;padding-top:52%;cursor:pointer}@media (max-width:782px){.exactmetrics-bg-img.exactmetrics-about-getting-started-video{margin-bottom:0}}.exactmetrics-bg-img.exactmetrics-about-getting-started-video:after{background-position:0 100%;background-image:url(../img/about-getting-started-video.png)}.exactmetrics-about-page-top h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:20px}@media (max-width:782px){.exactmetrics-about-page-top h2{font-size:20px}}.exactmetrics-about-page-top p{font-size:15px;line-height:1.7;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title{text-align:center;margin-top:-100px}@media (max-width:782px){.exactmetrics-container.exactmetrics-about-middle-title{margin-top:0;padding:0 24px}}.exactmetrics-container.exactmetrics-about-middle-title p{max-width:500px;margin:0 auto;font-size:15px;line-height:1.75;color:#210f59}.exactmetrics-container.exactmetrics-about-middle-title h2{font-size:24px;color:#210f59;line-height:1.4;margin-bottom:19px}.exactmetrics-admin-page .exactmetrics-wide-purple{background:#6528f5;padding:72px 0;margin-bottom:100px}.exactmetrics-admin-page .exactmetrics-wide-purple .exactmetrics-separator{background:rgba(0,0,0,.2)}.exactmetrics-about-upgrade-box-flex{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:45px}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box{width:334px;padding:65px 93px 56px;background:#210f59;border-radius:10px;color:#fff;text-align:center;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span{font-size:17px;line-height:1.5;display:inline-block}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-large{font-size:48px;line-height:1.3;font-weight:700}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box span.exactmetrics-price-term{font-size:15px;line-height:1.75;opacity:.5}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-plan-box .exactmetrics-button{background-color:#fff;color:#210f59;margin-top:27px;font-weight:500}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes{padding-right:95px;max-width:650px;width:100%}.exactmetrics-about-upgrade-box-flex .exactmetrics-about-pro-checkboxes h3{color:#fff;font-size:24px;line-height:1.4;font-weight:500;margin-top:17px}.exactmetrics-testimonials-slider{position:relative;padding:0 40px;margin-top:60px}.exactmetrics-testimonials-slides{position:relative;overflow:hidden}.exactmetrics-testimonials-slide{visibility:hidden;position:absolute;top:0;right:0;width:100%;-webkit-transition:.5s;transition:.5s;color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image{padding:0 80px 0 60px;-ms-flex-negative:0;flex-shrink:0;margin-top:5px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-image .exactmetrics-bg-img{width:90px;border-radius:50%;height:90px;border:5px solid #37276a;overflow:hidden}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-1:after{background-image:url(../img/testimonial-image-1.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-2:after{background-image:url(../img/testimonial-image-2.png)}.exactmetrics-testimonials-slide .exactmetrics-about-testimonial-avatar-3:after{background-image:url(../img/testimonial-image-3.jpg)}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text{padding-left:70px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p{color:#fff;font-size:20px;line-height:1.5;margin:0 0 20px}.exactmetrics-testimonials-slide .exactmetrics-testimonial-text p.exactmetrics-testimonial-text-author{font-size:16px;line-height:1.75;color:#e9e7ee}.exactmetrics-testimonials-slide.exactmetrics-testimonials-slide-active{visibility:visible;position:static}.exactmetrics-testimonials-slide h2{margin:0}.exactmetrics-testimonials-slide img{width:300px}.exactmetrics-testimonials-slider-control{border:none;background:none;color:#fff;font-size:40px;line-height:1;position:absolute;top:45px;margin-top:-20px;padding:0;cursor:pointer}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left{right:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-left i:before{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right{left:0}.exactmetrics-testimonials-slider-control.exactmetrics-testimonials-slider-control-right i:before{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-about-documentation{background:#f4f3f7;border-radius:10px;padding:72px 100px;margin:40px 0 95px}@media (max-width:782px){.exactmetrics-about-documentation{margin:40px 0;padding:32px 24px}.exactmetrics-about-documentation .exactmetrics-about-docs-image{float:none}}.exactmetrics-dark[data-v-281ea3e0]{display:block}.exactmetrics-colorpicker-preview span{width:40px;height:40px;display:inline-block;border:1px solid #b9c9d7;border-radius:5px}.exactmetrics-colorpicker-picker{position:absolute;z-index:100}.exactmetrics-colorpicker-picker .hu-color-picker{min-width:218px!important}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block{z-index:auto}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block:not(:first-child){margin-top:50px}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block:not(:first-child):before{content:"";position:absolute;top:-25px;background:#d6e2ed;display:block;height:1px;right:-100%;left:-100%}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{display:none}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-left:0}.exactmetrics-pp-theme-picker-container{background:#f4f3f7;border-radius:10px;padding:25px 25px 0;margin-bottom:15px}.exactmetrics-pp-theme-picker{overflow:hidden}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-carousel,.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-negative:0;flex-shrink:0}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slide:after{content:"";margin-right:48%}.exactmetrics-pp-theme-picker .exactmetrics-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)}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-option-selected,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option:focus,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option:hover{border:3px solid #6528f5;padding:15px 18px;outline:none}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-not-available .exactmetrics-pp-theme-icon,.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-option.exactmetrics-pp-theme-not-available .exactmetrics-pp-theme-name{opacity:.6}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-active-icon{position:absolute;left:5px;top:5px}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-icon{display:block;width:110px;height:94px}.exactmetrics-pp-theme-picker .exactmetrics-pp-theme-name{color:#210f59;font-size:14px;margin-top:8px;display:block;text-align:right}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-icon{background:url(../img/pp-theme-icons.png) no-repeat 100% 0;background-size:488px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{background-position-x:-378px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-echo .exactmetrics-pp-theme-icon{background-position:100% -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-foxtrot .exactmetrics-pp-theme-icon{background-position:-126px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-golf .exactmetrics-pp-theme-icon{background-position:-252px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-hotel .exactmetrics-pp-theme-icon{background-position:-378px -126px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-india .exactmetrics-pp-theme-icon{background-position:100% -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-juliett .exactmetrics-pp-theme-icon{background-position:-126px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-kilo .exactmetrics-pp-theme-icon{background-position:-252px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-lima .exactmetrics-pp-theme-icon{background-position:-378px -252px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-mike .exactmetrics-pp-theme-icon{background-position:100% -378px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_inline_theme .exactmetrics-pp-theme-november .exactmetrics-pp-theme-icon{background-position:-126px -378px}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls{text-align:center;font-size:14px;color:#626d83;margin-bottom:25px}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls>span{display:inline-block;margin:0 11px;vertical-align:middle}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button{border:none;border-radius:3px;background:rgba(33,15,89,.1);width:20px;height:20px;text-align:center;color:#626d83;font-size:8px;cursor:pointer}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:focus,.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:hover{background:rgba(33,15,89,.3)}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button:disabled{opacity:.5;cursor:default}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button i{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.exactmetrics-pp-theme-picker .exactmetrics-pp-themes-slider-controls button.exactmetrics-pp-themes-slider-button-next i{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg)}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-option{text-align:center}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-name{position:absolute;right:18px;bottom:10px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-icon{width:74px;height:46px;background:url(data:image/png;base64,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) no-repeat 100% 0;background-size:392px;display:inline-block}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-212px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-106px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{height:43px;background-position:-318px 0}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-echo .exactmetrics-pp-theme-icon{height:76px;background-position:100% -73px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-foxtrot .exactmetrics-pp-theme-icon{background-position:-106px -90px;height:41px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-golf .exactmetrics-pp-theme-icon{background-position:-212px -83px;height:56px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_widget_theme .exactmetrics-pp-theme-hotel .exactmetrics-pp-theme-icon{height:50px;background-position:-318px -86px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-option{text-align:center}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-name{position:absolute;right:18px;bottom:10px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-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}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-beta .exactmetrics-pp-theme-icon{background-position-x:-74px;background-position-y:-6px;height:66px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-charlie .exactmetrics-pp-theme-icon{background-position-x:-148px;height:50px;background-position-y:-14px}.exactmetrics-pp-theme-picker.exactmetrics-pp-theme-picker-popular_posts_products_theme .exactmetrics-pp-theme-delta .exactmetrics-pp-theme-icon{height:78px;background-position:-222px 0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-preview{position:relative}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls{margin-left:22px;margin-bottom:20px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls input[type=number]{width:40px;height:40px;border-radius:5px;border:1px solid #b9c9d7;padding:2px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls-inputs{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label{font-size:14px;width:auto;margin-left:9px;color:#210f59;margin-bottom:8px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label span{display:block}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-pp-control-label{margin-bottom:4px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input{border-radius:0 5px 5px 0;text-align:center;-moz-appearance:textfield}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input::-webkit-inner-spin-button,.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow{background:#b9d8f3;padding:3px 5px;border:1px solid #b9c9d7;border-right-width:0;cursor:pointer}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow:focus,.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow:hover{background:#fff}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-up{border-radius:5px 0 0 0;border-bottom:0;padding-bottom:4px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-up i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-arrows .exactmetrics-number-input-arrow.exactmetrics-number-input-arrow-down{border-radius:0 0 0 5px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls label .exactmetrics-number-input-no-arrows .exactmetrics-number-input-unit{font-size:14px;color:#210f59;margin-right:5px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-controls-description{font-weight:700}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline{display:-webkit-box;display:-ms-flexbox;display:flex;padding-left:9px}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline .exactmetrics-colorpicker-preview span{border-top-left-radius:0;border-bottom-left-radius:0;border-left-width:0}.exactmetrics-admin-page .exactmetrics-pp-inline-theme-controls .exactmetrics-pp-color-input-inline input[type=text]{border-top-right-radius:0;border-bottom-right-radius:0;max-width:108px}.exactmetrics-admin-page .exactmetrics-color-picker{position:relative;max-width:40px}.exactmetrics-admin-page .exactmetrics-color-picker .exactmetrics-colorpicker-picker{bottom:-120px;margin-right:10px;right:100%}.exactmetrics-admin-page .exactmetrics-pp-posts-picker .multiselect__input{border:none;height:auto;padding:2px 0 0;font-size:14px;line-height:1.4em;background:rgba(0,0,0,0);min-height:0;margin-bottom:10px}.exactmetrics-admin-page .exactmetrics-popular-posts .exactmetrics-settings-block .exactmetrics-settings-input-select+p{margin-top:25px}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#fff;color:#210f59;border-bottom-width:1px;border-color:#b9c9d7;border-radius:0;line-height:18px;border-left:0;margin:0}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#6528f5;color:#fff;border-color:#b9c9d7}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative;border-radius:0;outline:none}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}.exactmetrics-admin-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#6528f5;color:#fff;font-weight:400}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-notice-no-posts{padding-top:15px;cursor:default}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-notice-no-posts span{color:#d83638;font-weight:400}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-beta{width:144px;height:100px;padding:0}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-beta:after{background-image:url(../img/theme-preview-beta.png)}.exactmetrics-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}.exactmetrics-inline-popular-posts-widget{margin-bottom:24px}.exactmetrics-inline-popular-posts-alpha{padding:24px 27px}.exactmetrics-inline-popular-posts-alpha .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1;display:block;margin-bottom:6px}.exactmetrics-inline-popular-posts-alpha .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:1;text-decoration:none}.exactmetrics-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}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-text{margin-right:19px}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.exactmetrics-inline-popular-posts-beta .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-border{display:block;border-bottom:1px solid;margin:16px 0}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-list{list-style:disc inside none}.exactmetrics-inline-popular-posts-charlie .exactmetrics-inline-popular-posts-list li{font-style:normal;font-weight:400;font-size:16px;line-height:130%}.exactmetrics-inline-popular-posts-delta{border:1px solid #d6e2ed;padding:16px 18px;border-radius:5px}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-icon{margin-left:8px}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;vertical-align:top}.exactmetrics-inline-popular-posts-delta .exactmetrics-inline-popular-posts-title{display:block;font-weight:700;font-size:18px;line-height:1;text-decoration:none;margin-top:4px}.exactmetrics-inline-popular-posts-echo{padding:13px 16px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-icon{margin-left:8px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;margin-left:8px}.exactmetrics-inline-popular-posts-echo .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:130%;text-decoration:none}.exactmetrics-inline-popular-posts-foxtrot{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-inline-popular-posts-foxtrot .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1.1;display:block}.exactmetrics-inline-popular-posts-foxtrot .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image{padding-top:57%}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image:after{background-image:url(../img/theme-preview-image.jpg)}.exactmetrics-inline-popular-posts-golf{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:16px;line-height:1.1;float:right;background:#fff;padding-left:20px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;clear:both;margin-top:14px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-title:before{width:100%}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-border{display:block;border-width:2px 0 0;border-style:solid;margin-top:10px}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-border-2{border-top:1px solid #e2e4e9;margin-top:20px;display:block}.exactmetrics-inline-popular-posts-golf .exactmetrics-inline-popular-posts-text{width:100%}.exactmetrics-inline-popular-posts-hotel .exactmetrics-inline-popular-posts-icon{margin-left:10px;vertical-align:middle}.exactmetrics-inline-popular-posts-hotel .exactmetrics-inline-popular-posts-title{font-style:normal;font-weight:700;font-size:18px;text-decoration:none;line-height:130%}.exactmetrics-inline-popular-posts-india{padding:13px 16px 13px 12px;position:relative}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-border{border-width:0 4px 0 0;border-style:solid;position:absolute;right:0;top:0;bottom:0}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-title{font-size:14px;text-decoration:none;font-weight:700}.exactmetrics-inline-popular-posts-india .exactmetrics-inline-popular-posts-label{font-size:14px;text-decoration:none;font-weight:700;margin-left:4px}.exactmetrics-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%}.exactmetrics-inline-popular-posts-juliett .exactmetrics-inline-popular-posts-border{border-width:1px 0 0;border-style:solid;position:absolute;right:0;top:0;left:0}.exactmetrics-inline-popular-posts-juliett .exactmetrics-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%}.exactmetrics-inline-popular-posts-juliett .exactmetrics-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}.exactmetrics-inline-popular-posts-kilo{position:relative;padding:30px 0}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-label{font-style:normal;font-weight:700;font-size:18px;line-height:1}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:130%;text-decoration:none;display:block;clear:both;margin-top:6px}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-title:before{width:100%}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border,.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border-2{display:block;position:absolute;right:0;left:0;top:0;border-bottom:4px dashed #e2e4e9}.exactmetrics-inline-popular-posts-kilo .exactmetrics-inline-popular-posts-border-2{bottom:0;top:auto}.exactmetrics-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}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-text{margin-right:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-label{display:block;font-weight:700;font-size:18px;line-height:18px}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:120%;text-decoration:none;display:block;max-width:420px;margin-top:7px}.exactmetrics-inline-popular-posts-lima .exactmetrics-inline-popular-posts-image{width:144px;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-left:0;margin-right:20px}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image-2{padding-top:69%}.exactmetrics-bg-img.exactmetrics-pp-theme-preview-image-2:after{background-image:url(../img/theme-preview-image-2.jpg)}.exactmetrics-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}.exactmetrics-inline-popular-posts-mike .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:18px;line-height:125%;text-decoration:none;display:block;max-width:380px}.exactmetrics-inline-popular-posts-mike .exactmetrics-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}.exactmetrics-inline-popular-posts-mike .exactmetrics-inline-popular-posts-image{margin-left:20px}.exactmetrics-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}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-text{width:100%}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-title{font-weight:700;font-size:16px;line-height:125%;text-decoration:none;display:block;margin-top:4px}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-label{display:block;font-size:16px;font-weight:700}.exactmetrics-inline-popular-posts-november .exactmetrics-inline-popular-posts-image{margin-left:20px}.exactmetrics-inline-popular-posts-november .exactmetrics-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}.exactmetrics-sharedcount-status{font-size:12px;color:#777;margin-top:12px;line-height:1.5}.exactmetrics-pp-manual-placement-options{margin-right:-12px;margin-left:-12px}.exactmetrics-pp-manual-placement-option{width:150px;height:150px;border-radius:10px;border:1px solid #9087ac;font-size:14px;line-height:17px;color:#210f59;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)}.exactmetrics-pp-manual-placement-option,.exactmetrics-pp-manual-placement-option .exactmetrics-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}.exactmetrics-pp-manual-placement-option .exactmetrics-pp-manual-placement-options-icon{min-height:40px;margin-bottom:23px}.exactmetrics-pp-manual-placement-option .exactmetrics-pp-manual-placement-options-icon svg path{fill:#6528f5}.exactmetrics-pp-manual-placement-option.exactmetrics-pp-manual-placement-option-active{border:3px solid #6528f5;font-weight:700;background:#f1f7fe}.exactmetrics-pp-placement-options-accordion svg path{fill:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps .exactmetrics-button{margin-top:10px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps input[type=text]{border-color:#9087ac;color:#210f59}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps{width:100%;margin-top:30px}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps li{color:#777}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-manual-placement-content-steps li b{color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block{width:calc(50% - 12px);border-radius:10px;background:-webkit-gradient(linear,right top,right bottom,color-stop(17.51%,rgba(101,40,245,.6)),color-stop(74.11%,#37276a));background:linear-gradient(-180deg,rgba(101,40,245,.6) 17.51%,#37276a 74.11%);color:#fff;position:relative;height:198px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;text-align:center}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block>div{position:absolute;bottom:0;padding:20px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block .exactmetrics-welcome-overlay{position:fixed;bottom:0}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block .exactmetrics-pp-video-block-icon{margin-bottom:30px;display:inline-block}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block p{color:#fff;margin:0;text-align:right}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-pp-manual-placement-content-columns .exactmetrics-pp-video-block{width:100%}}.exactmetrics-settings-content-pp-inline input[type=number]{max-width:80px}.exactmetrics-settings-content-pp-inline .exactmetrics-collapsible-content .settings-input-text{margin-bottom:20px}.exactmetrics-inline-desc{margin-right:5px}.exactmetrics-widget-popular-posts-widget{margin-bottom:24px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-alpha .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-alpha .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:24px;background:rgba(33,15,89,.1);border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-beta .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-beta .exactmetrics-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:#210f59;font-weight:700;border-right:4px solid #1ec185;padding-right:16px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-charlie .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-charlie .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:24px;background:rgba(33,15,89,.1);border-radius:3px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700;border-top:4px solid #6528f5}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-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:#210f59;font-weight:700;border-top:2px solid #d3d7de}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-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:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:16px;background:rgba(33,15,89,.1);border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-foxtrot .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list li{display:inline-block;padding:16px;background:rgba(33,15,89,.1);border-radius:5px;margin:0 6px 12px;width:calc(50% - 12px);vertical-align:top;font-size:16px;line-height:1.2;color:#210f59;font-weight:700}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-comments{font-size:16px;font-weight:700;margin-top:14px;display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-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}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-golf .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-title{display:block}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-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}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-text{position:absolute;bottom:0;padding:0 14px 14px;right:0;z-index:15}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta{font-size:12px;margin-top:8px;font-weight:400}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-widget-popular-posts-list .exactmetrics-widget-popular-posts-meta span{display:inline-block;margin-left:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-bg-img{margin-bottom:0;padding-top:50%;width:100%}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-bg-img:after{z-index:5;border-radius:5px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-hotel .exactmetrics-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}.exactmetrics-pp-products-theme-preview-output,.exactmetrics-pp-widget-theme-preview-output{margin-top:28px}.exactmetrics-dummy-text{padding-left:24px}.exactmetrics-dummy-text p{margin-bottom:40px;line-height:180%}.exactmetrics-pp-widget-controls,.exactmetrics-pp-widget-theme-preview{position:relative}.exactmetrics-pp-widget-controls .exactmetrics-settings-input-select-simple select{min-width:50px}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-1 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-1 .exactmetrics-widget-popular-posts-list li{width:100%}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list li{width:calc(33.33333% - 12px)}@media (max-width:767px){.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-2 .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-2 .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-wide .exactmetrics-widget-popular-posts-columns-3 .exactmetrics-widget-popular-posts-list li{width:100%;margin-right:0;margin-left:0}}.exactmetrics-pp-widget-theme-preview-render h3{font-size:14px;margin-top:14px;margin-bottom:14px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio .exactmetrics-styled-radio{display:none}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio>span{display:inline-block;margin-left:8px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-settings-input-radio>span label{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column>span{background:#99a1b2;display:inline-block;width:8px;height:8px;border-radius:1px;margin-bottom:2px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column.exactmetrics-wide-column-two>span{width:12px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-wide-column.exactmetrics-wide-column-one>span{width:100%}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-styled-radio-label-checked .exactmetrics-wide-column{border:2px solid #6528f5;background:#ecf4fe;padding:9px 4px}.exactmetrics-admin-page .exactmetrics-wide-column-options .exactmetrics-styled-radio-label-checked .exactmetrics-wide-column>span{background:#6528f5}.exactmetrics-pp-theme-active-icon svg path{fill:#6528f5}.exactmetrics-inline-checkboxes .exactmetrics-settings-input-checkbox{display:inline-block;margin-left:32px}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-delta .exactmetrics-bg-img{width:121px;height:121px;padding:0;float:right;margin-left:16px;margin-bottom:12px}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-1:after{background-image:url(../img/theme-widget-1.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-2:after{background-image:url(../img/theme-widget-2.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-3:after{background-image:url(../img/theme-widget-3.jpg)}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-4:after{background-image:url(../img/theme-widget-4.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-widget-popular-posts-echo .exactmetrics-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.exactmetrics-widget-popular-posts-widget .exactmetrics-bg-img.exactmetrics-pp-theme-widget-5:after{background-image:url(../img/theme-widget-5.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-6:after{background-image:url(../img/theme-widget-6.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-7:after{background-image:url(../img/theme-widget-7.jpg)}.exactmetrics-widget-popular-posts-widget.exactmetrics-pp-theme-widget-8:after{background-image:url(../img/theme-widget-8.jpg)}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-bg-img{width:80px;height:80px;padding:0;float:right;margin-left:18px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-bg-img{padding-top:74%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-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==)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-2:after{background-image:url(../img/theme-products-2.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-3:after{background-image:url(../img/theme-products-3.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-4:after{background-image:url(../img/theme-products-4.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-5{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-5:after{background-image:url(../img/theme-products-5.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-6{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-6:after{background-image:url(../img/theme-products-6.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-7{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-7:after{background-image:url(../img/theme-products-7.jpg)}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-8{padding-top:73%}.exactmetrics-widget-popular-posts-products .exactmetrics-bg-img.exactmetrics-pp-theme-products-8:after{background-image:url(../img/theme-products-8.jpg)}.exactmetrics-widget-popular-posts-products.exactmetrics-widget-popular-posts-echo .exactmetrics-bg-img{padding-top:50%;margin-bottom:14px;width:100%}.exactmetrics-input-text-small{margin-top:24px}.exactmetrics-input-text-small .settings-input-text-input{max-width:350px}.exactmetrics-input-text-extra-small .settings-input-text{display:inline-block;margin-left:5px}.exactmetrics-input-text-extra-small .settings-input-text-input{max-width:80px}.exactmetrics-widget-popular-posts-products{margin-bottom:24px}.exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-rating{display:block}.exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-rating svg{margin-left:2px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-products-popular-posts-list{margin:0 -12px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-alpha .exactmetrics-products-popular-posts-price{display:block;margin:10px 0 7px;font-weight:400}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-list,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-list li,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-price,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{display:block;font-weight:400;position:absolute;left:12px;bottom:10px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-title,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-title{margin-top:12px;display:block}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-beta .exactmetrics-products-popular-posts-rating,.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-rating{margin-top:13px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-price{display:block;font-weight:400;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin-top:4px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin-top:4px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-products-popular-posts-rating{margin-top:13px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-bg-img{padding-top:74%}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-charlie .exactmetrics-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}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{position:relative;margin-top:8px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list{margin:0 -6px}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-list li{padding:0}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-price{left:auto;bottom:auto;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-rating{margin-top:8px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-products-popular-posts-title{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.exactmetrics-widget-popular-posts-products.exactmetrics-products-popular-posts-delta .exactmetrics-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}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-1 .exactmetrics-products-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-1 .exactmetrics-products-popular-posts-list li{width:100%;margin-right:0;margin-left:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list li{width:calc(33.33333% - 24px)}@media (max-width:767px){.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-2 .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-2 .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-wide .exactmetrics-products-popular-posts-columns-3 .exactmetrics-products-popular-posts-list li{width:100%;margin-right:0;margin-left:0}}.exactmetrics-pp-blurred{-webkit-filter:blur(3px);filter:blur(3px)}.exactmetrics-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}.exactmetrics-pp-upgrade-overlay>span{margin:0 10px}.exactmetrics-pp-theme-controls-holder{position:relative}.exactmetrics-pro-pill{font-style:normal;font-weight:700;font-size:11px;background:#1ec185;border-radius:5px;color:#fff;padding:3px 8px;margin-right:8px}.exactmetrics-bg-img.exactmetrics-popular-posts-products-upsell{position:relative;width:750px;height:815px;max-width:100%}.exactmetrics-bg-img.exactmetrics-popular-posts-products-upsell:after{background-image:url(../img/popular-products-bg.jpg)}.exactmetrics-bg-img.exactmetrics-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))}.exactmetrics-bg-img.exactmetrics-popular-products-upsell-browser:after{background-image:url(../img/popular-products-browser.jpg)}.exactmetrics-popular-posts-products-upsell{margin-top:20px}.exactmetrics-popular-posts-products-upsell .exactmetrics-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)}.exactmetrics-popular-posts-products-upsell h2{margin-top:0;font-size:22px;line-height:1.2}.exactmetrics-popular-posts-products-upsell p{font-size:16px;line-height:1.2;color:#626d83;margin-bottom:32px}.exactmetrics-popular-posts-products-upsell .exactmetrics-button-text{margin:28px 0;color:#99a1b2;font-size:16px;display:inline-block}.exactmetrics-popular-posts-widget-category{margin-top:25px}.exactmetrics-popular-posts-widget-category.exactmetrics-popular-posts-widget-category-lite .exactmetrics-settings-input-select{pointer-events:none;opacity:.6}.exactmetrics-popular-posts-products-no-woocommerce{margin-top:72px}.exactmetrics-popular-posts-products-no-woocommerce .exactmetrics-settings-block{opacity:.6;pointer-events:none}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice{position:absolute;top:-72px;right:0;left:0;padding:16px 24px;background:#d7930f;color:#fff;font-size:12px}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a{color:#fff;text-decoration:underline;font-weight:700}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a:focus,.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice a:hover{text-decoration:none}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice span{margin-right:8px}.exactmetrics-admin-page .exactmetrics-popular-products-woocommerce-notice svg{vertical-align:middle}.exactmetrics-popular-posts-products-top{position:relative}.exactmetrics-pp-sharedcount-controls .inline-field{margin-bottom:25px}.exactmetrics-settings-content-pp-products{width:750px;margin-right:auto;margin-left:auto}.exactmetrics-radio-sub-panel .exactmetrics-pp-posts-picker{margin-top:15px}.exactmetrics-pp-placement-options-accordion{padding-right:30px}.exactmetrics-pp-accordion-item-title{border-bottom:1px solid #d6e2ed;padding:24px 0;position:relative}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-toggle *{cursor:pointer}.exactmetrics-pp-accordion-item-title .exactmetrics-settings-input-toggle-collapsible{position:absolute;left:0;top:40%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics-pp-accordion-item-title .exactmetrics-settings-input-toggle-collapsible i{-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-active{border-bottom:0}.exactmetrics-pp-accordion-item-title.exactmetrics-pp-accordion-item-title-active .exactmetrics-settings-input-toggle-collapsible i{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg)}.exactmetrics-pp-accordion-item-title .exactmetrics-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}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-top>span{margin-left:8px;margin-right:8px}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-top .exactmetrics-settings-input-checkbox{display:inline-block}.exactmetrics-pp-accordion-item-title .exactmetrics-pp-accordion-item-title-bottom{color:#777;padding-left:45px}.exactmetrics-pp-accordion-item-content{border-bottom:1px solid #d6e2ed;padding:0 0 24px}.exactmetrics-dummy-text p,.exactmetrics-pp-inline-theme-preview-render>p{opacity:.5}.exactmetrics-pp-products-theme-preview-output-narrow,.exactmetrics-pp-widget-theme-preview-output-narrow{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-dummy-text,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-dummy-text{width:60%}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget{width:40%}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list{margin:0}.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-products-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-products .exactmetrics-widget-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-products-popular-posts-list li,.exactmetrics-pp-widget-theme-preview-output-narrow .exactmetrics-widget-popular-posts-widget .exactmetrics-widget-popular-posts-list li{width:100%}.exactmetrics-dark[data-v-0fc0f471]{display:block}.exactmetrics-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}.exactmetrics-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}.exactmetrics-dark[data-v-62bc6c18]{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:32px 32px 30px;border-radius:5px;background:#f4f3f7;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:10px 27px 10px 15px;border-radius:5px;margin-left:10px;color:#fff;line-height:1;background:#6528f5;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;font-size:14px}.multiselect__tag.exactmetrics-tag-forced{padding-right:15px}.multiselect__tag.exactmetrics-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;right:0;top:0;bottom:0;font-weight:400;font-style:normal;width:32px;text-align:center;line-height:38px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\f046";color:#fff;line-height:2;margin-top:1px;font-size:16px;display:block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.multiselect__tag-icon:hover:after{color:#9087ac}.multiselect__tag-icon:focus{outline:none}.multiselect__tag-icon:focus:after{text-decoration:underline;color:#fff}.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;max-height:240px;overflow:auto;border:1px solid #f4f3f7;border-top:none;border-radius:3px;z-index:1;-webkit-overflow-scrolling:touch;padding:6px}.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:#f4f3f7;outline:none;color:#210f59}.multiselect__option--highlight:after{content:attr(data-select);background:#f4f3f7;color:#210f59}.multiselect__option--selected{background:#f4f3f7;color:#210f59;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#6528f5;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#6528f5;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:#6528f5;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#6528f5;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)}}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-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;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-left:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-right:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-left:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-right:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-right:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-right:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;right:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;right:-16%;left:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-left:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;right:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-right:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-right:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-right:20px;padding-left:20px}}.exactmetrics-upsell-bottom .exactmetrics-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){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{right:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:0 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:0 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-right:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);right:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-right:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-right:-32px;margin-left:-32px;padding-right:32px;padding-left:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-right:32px;padding-left:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;left:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:0 100%;background-image:url(../img/forms-wpforms-upsell.png)}.update-nag{display:none}.exactmetrics-admin-page{min-height:100vh;font-size:15px;color:#4d3f7a;overflow:hidden}.exactmetrics-admin-page a{color:#6528f5}.exactmetrics-admin-page a:focus,.exactmetrics-admin-page a:hover{color:#393f4c}.exactmetrics-admin-page .exactmetrics-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.exactmetrics-admin-page .exactmetrics-settings-content{margin-bottom:75px}@media (min-width:783px) and (max-width:790px){.exactmetrics-admin-page .exactmetrics-settings-content{padding:0 10px}}.exactmetrics-admin-page input.exactmetrics-has-error{border-color:red}.exactmetrics-admin-page input[type=number],.exactmetrics-admin-page input[type=text],.exactmetrics-admin-page textarea{border:1px solid #9087ac;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#210f59}.exactmetrics-admin-page input[type=number]::-webkit-input-placeholder,.exactmetrics-admin-page input[type=text]::-webkit-input-placeholder,.exactmetrics-admin-page textarea::-webkit-input-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number]:-moz-placeholder,.exactmetrics-admin-page input[type=number]::-moz-placeholder,.exactmetrics-admin-page input[type=text]:-moz-placeholder,.exactmetrics-admin-page input[type=text]::-moz-placeholder,.exactmetrics-admin-page textarea:-moz-placeholder,.exactmetrics-admin-page textarea::-moz-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number]:-ms-input-placeholder,.exactmetrics-admin-page input[type=text]:-ms-input-placeholder,.exactmetrics-admin-page textarea:-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page input[type=number].exactmetrics-has-error,.exactmetrics-admin-page input[type=text].exactmetrics-has-error,.exactmetrics-admin-page textarea.exactmetrics-has-error{border-color:#d83638}.exactmetrics-admin-page input[type=text]:-moz-read-only{background:#fff;color:#9087ac}.exactmetrics-admin-page input[type=text]:read-only{background:#fff;color:#9087ac}.exactmetrics-admin-page textarea{height:150px;background:#f4f3f7;border:none}.exactmetrics-admin-page label{width:100%;font-size:15px;display:inline-block;color:#210f59;margin:2px 0 17px}.exactmetrics-admin-page label>.exactmetrics-dark{margin-bottom:20px}.exactmetrics-admin-page .inline-field{position:relative}.exactmetrics-admin-page .inline-field input{width:100%;background:#f4f3f7;border:none;height:60px;border-radius:3px;padding:6px 20px;font-size:18px}.exactmetrics-admin-page .inline-field input::-moz-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input:-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::-ms-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input:-moz-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field input::-webkit-input-placeholder{color:#9087ac}.exactmetrics-admin-page .inline-field .exactmetrics-button{position:absolute;left:6px;top:6px;padding:16px 24px 14px}.exactmetrics-admin-page .inline-field .exactmetrics-button [class*=monstericon-]{margin-left:12px}.exactmetrics-admin-page .exactmetrics-error{margin:18px 0 0;color:#d83638;cursor:default}.exactmetrics-admin-page .exactmetrics-error i{margin-left:10px}.exactmetrics-admin-page .exactmetrics-license-type-text{color:#210f59;font-weight:500;margin-bottom:30px}.exactmetrics-admin-page .exactmetrics-license-type-text a{color:#6528f5;font-weight:400;margin-right:10px;position:relative}.exactmetrics-admin-page .exactmetrics-license-type-text a:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f058";left:100%;margin-left:6px}.exactmetrics-admin-page .exactmetrics-settings-license-network .exactmetrics-button-text,.exactmetrics-admin-page .exactmetrics-settings-license-site .exactmetrics-button-text{color:#9087ac;margin-top:16px;font-size:15px}.exactmetrics-admin-page .exactmetrics-dark{color:#210f59;text-transform:capitalize;font-weight:700}.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-enter-active,.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-leave-active{-webkit-transition:opacity 1s;transition:opacity 1s}.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-enter,.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-leave-to{opacity:0}.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-enter .exactmetrics-styled-checkbox,.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-leave-to .exactmetrics-styled-checkbox{background-color:#509fe2!important}.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-enter .exactmetrics-styled-checkbox:after,.exactmetrics-admin-page .exactmetrics-tracking-mode-settings-leave-to .exactmetrics-styled-checkbox:after{left:2px!important;right:auto!important}.exactmetrics-admin-page .exactmetrics-settings-block{margin:32px auto;width:750px;max-width:100%;position:relative;z-index:50}@media screen and (max-width:830px){.exactmetrics-admin-page .exactmetrics-settings-block{margin-right:24px;margin-left:24px;width:auto}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title{font-weight:700;font-size:24px;padding:12px 0;color:#210f59;position:relative;-webkit-transition:color .2s ease;transition:color .2s ease}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title{display:-webkit-box;display:-ms-flexbox;display:flex;line-height:1.2}}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title:before{position:absolute;width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);left:100%;top:2px;margin-left:30px;color:#210f59;text-align:center;line-height:40px;font-size:15px;-webkit-transition:background .2s ease 0ms,color .2s ease 0ms;transition:background .2s ease 0ms,color .2s ease 0ms;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}@media (max-width:1062px){.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-title:before{left:auto;right:0;margin-top:-6px;position:relative;top:auto;display:inline-block;margin-left:15px;vertical-align:text-top}}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title{cursor:pointer}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus:before,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover:before{background:#6528f5;color:#fff}.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:focus .exactmetrics-settings-input-toggle-collapsible,.exactmetrics-admin-page .exactmetrics-settings-block.exactmetrics-settings-block-collapsible .exactmetrics-settings-block-title:hover .exactmetrics-settings-input-toggle-collapsible{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content:before{position:relative;display:block;content:"";height:28px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content p{font-size:15px;color:#210f59;font-weight:500;margin:0 0 30px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content h3{font-size:17px;color:#210f59;line-height:1.5;margin:0 0 15px}.exactmetrics-admin-page .exactmetrics-settings-input-radio input[type=radio]{opacity:0;position:absolute}.exactmetrics-admin-page .exactmetrics-settings-input-radio label{color:#210f59;font-size:15px}.exactmetrics-admin-page .exactmetrics-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.exactmetrics-admin-page .exactmetrics-settings-input-radio label>span{vertical-align:middle;font-weight:500}.exactmetrics-admin-page .exactmetrics-settings-input-radio span:last-child label{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-left:16px}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked{border-color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-radio .exactmetrics-styled-radio.exactmetrics-styled-radio-checked:after{right:2px;left:2px;top:2px;bottom:2px;position:absolute;content:"";background:#6528f5;display:block;border-radius:50%}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label{color:#210f59;font-size:15px;margin:0;line-height:1.75}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux{cursor:default}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox{background-color:#e9e7ee}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label.exactmetrics-styled-checkbox-faux .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked{background-color:#b9d8f3}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label input{display:none}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label>span{vertical-align:middle}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox>label:last-child{margin-bottom:0}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox input:checked+.exactmetrics-checkbox-label{color:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{width:40px;height:23px;position:relative;display:inline-block;border-radius:20px;margin-left:16px;background-color:#e9e7ee}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{left:3px;right:auto;background:#6528f5}.exactmetrics-admin-page .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{right:3px;top:3px;bottom:3px;width:17px;position:absolute;content:"";background:#bcb7cd;display:block;border-radius:50%;line-height:1}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox{border-radius:3px;background:#fff;width:20px;height:20px}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox:after{display:none;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background:rgba(0,0,0,0);color:#6528f5;content:"\f015";right:3px;top:2px}.exactmetrics-admin-page .exactmetrics-simple-checkboxes .exactmetrics-settings-input-checkbox .exactmetrics-styled-checkbox.exactmetrics-styled-checkbox-checked:after{display:inline-block}.exactmetrics-admin-page .exactmetrics-info{color:#9087ac;margin-right:10px;cursor:help}.exactmetrics-admin-page .exactmetrics-settings-input-repeater .exactmetrics-error{margin-top:0;margin-bottom:18px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-labels label{color:#210f59;font-weight:700;margin-bottom:6px;font-size:17px}.exactmetrics-admin-page .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row>span{width:100%;margin-left:18px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button{padding:0;border:none;background:rgba(33,15,89,.1);color:#210f59;width:32px;height:32px;border-radius:50%;cursor:pointer;display:block;position:relative;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button i{position:absolute;right:10px;top:7px;font-size:15px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row button i:before{content:"\f065"}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row input[type=number]{width:30%;margin-left:15px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row select{width:70%;height:40px;margin-left:15px;border:1px solid #9087ac;border-radius:3px;margin-top:0;margin-bottom:0;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row.exactmetrics-disabled-row{opacity:.5}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row input[type=text]{border-color:rgba(0,0,0,0)}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-error input{border-color:#e43462}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid{position:relative}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid:after{position:absolute;left:8px;height:26px;width:26px;background:rgba(50,162,122,.1);top:7px;content:"\f015";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#32a27a;border-radius:50%;text-align:center;line-height:26px}.exactmetrics-admin-page .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-admin-page .exactmetrics-dimensions-count{color:#4d3f7a;font-size:13px;float:left;line-height:1.7;margin-left:46px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-dimensions-count{float:none;margin-top:5px;display:block}}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-settings-input-repeater-labels label{margin-bottom:0;width:auto}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.exactmetrics-admin-page .exactmetrics-settings-input-dimensions .exactmetrics-error{margin:0 0 20px}.exactmetrics-admin-page .exactmetrics-settings-input-select .exactmetrics-dark{margin-bottom:5px}.exactmetrics-admin-page .exactmetrics-settings-input-select label{margin-top:-4px}.exactmetrics-admin-page .exactmetrics-collapsible .exactmetrics-collapsible-content{padding-right:30px}@media screen and (max-width:767px){.exactmetrics-admin-page .exactmetrics-collapsible .exactmetrics-collapsible-content{padding-right:15px}}.exactmetrics-admin-page .exactmetrics-collapsible>p{margin-top:0}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible{color:#210f59;float:left;font-size:22px;padding-right:20px;-webkit-transition:color .2s ease;transition:color .2s ease;margin-top:6px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible{margin-right:auto;margin-top:3px}}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible:hover{color:#393f4c}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible:focus{outline:none}.exactmetrics-admin-page .exactmetrics-settings-input-toggle-collapsible i{cursor:pointer}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-dark{display:block;margin-bottom:9px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate p{margin:0}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-ua,.exactmetrics-admin-page .exactmetrics-settings-input-authenticate button{margin-top:14px}.exactmetrics-admin-page .exactmetrics-settings-input-authenticate .exactmetrics-manual-ua+.exactmetrics-error{margin-top:15px}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-paragraph{padding-top:5px}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-text{color:#4d3f7a;font-size:12px;text-decoration:none}.exactmetrics-admin-page .exactmetrics-auth-manual-connect-text:hover{text-decoration:underline}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-upgrade-icon{display:none}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-settings-addon-message{margin-left:25px;width:100%;line-height:1.7}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-settings-addon-message>span{display:block;max-width:468px}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .settings-addons-upgrade-button{-ms-flex-negative:0;flex-shrink:0}.exactmetrics-admin-page .exactmetrics-settings-addon-upgrade .exactmetrics-button{padding:14px 30px;font-weight:500}.exactmetrics-admin-page .exactmetrics-icon-warning{width:48px}.exactmetrics-admin-page .exactmetrics-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=)}.exactmetrics-admin-page .exactmetrics-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;line-height:1.5}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-bg-img{margin-left:25px}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message{width:100%;color:#210f59}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message strong{margin-bottom:10px}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-network-message span{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-settings-network-notice .exactmetrics-icon-warning{display:none}.exactmetrics-admin-page .exactmetrics-undo-redo{float:left;margin-top:16px}.exactmetrics-admin-page .exactmetrics-undo-redo button{border:none;background:rgba(0,0,0,0);color:#6528f5;padding:0;margin-right:5px}.exactmetrics-admin-page #exactmetrics-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:#9087ac;padding-top:7px}.exactmetrics-admin-page #exactmetrics-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page #exactmetrics-license-key-valid:-moz-placeholder,.exactmetrics-admin-page #exactmetrics-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page #exactmetrics-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.exactmetrics-admin-page .exactmetrics-grey-settings-area{background:#f4f3f7;border-radius:10px;padding:40px 0;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-admin-page .exactmetrics-grey-settings-area.exactmetrics-area-spaced-top{margin-top:72px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-auth-actions{max-width:320px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{width:50%;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;padding:0 40px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half{width:auto;margin:0 40px -30px;padding:0}}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half:first-child{border-left:1px solid #bcb7cd}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-half:first-child{border-bottom:1px solid #bcb7cd;border-left:0;padding-bottom:40px;margin-bottom:40px}}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full{padding:0 40px;max-width:460px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;position:relative}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full h2{font-size:24px;line-height:1.4;margin-top:0;max-width:340px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-grey-settings-area-full p{line-height:1.7;margin:8px 0 18px;font-size:15px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-icon-background-large{right:auto;left:54px;top:45px;font-size:170px}.exactmetrics-admin-page .exactmetrics-grey-settings-area h3{font-size:17px;color:#210f59;line-height:1.5;margin:0 0 20px}.exactmetrics-admin-page .exactmetrics-grey-settings-area p{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-highlight{font-size:17px;font-weight:700;color:#210f59;display:block}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-button-text{font-size:15px;margin-bottom:0;margin-top:11px}.exactmetrics-admin-page .exactmetrics-grey-settings-area .exactmetrics-button-text.exactmetrics-spaced-top{margin-top:20px}.exactmetrics-admin-page .exactmetrics-grey-settings-area a>[class*=monstericon-]{margin-right:15px;display:inline-block;font-size:.8em}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area{background:#f4f3f7;border-radius:10px;padding:32px}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button{background:rgba(0,0,0,0);padding:0 24px 0 0;color:#6528f5;text-decoration:underline;position:relative;font-size:15px;outline:none}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:hover{color:#210f59}.exactmetrics-admin-page .exactmetrics-grey-settings-input-area .exactmetrics-settings-input-repeater .exactmetrics-button:before{content:"+";position:absolute;right:0;font-size:20px;top:0;line-height:13px}.exactmetrics-admin-page .exactmetrics-settings-block .exactmetrics-settings-block-content .exactmetrics-grey-settings-area p{color:#4d3f7a}.exactmetrics-admin-page .exactmetrics-settings-full-width-gray{background-color:#f4f3f7;border-top:1px solid #e9e7ee;border-bottom:1px solid #e9e7ee;padding-top:32px;padding-bottom:32px}.exactmetrics-admin-page .exactmetrics-settings-full-width-gray .exactmetrics-settings-block{margin-top:0;margin-bottom:0}.exactmetrics-admin-page .exactmetrics-inline-gray-box{background:#f4f3f7;padding:22px 32px;border-radius:10px;display:inline-block;margin-top:20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-inline-gray-box{width:100%}.exactmetrics-admin-page .exactmetrics-inline-gray-box:first-child{margin-top:0}}.exactmetrics-admin-page .exactmetrics-inline-gray-box .exactmetrics-settings-input-checkbox{padding:10px 0}.exactmetrics-admin-page .settings-input-text-input{margin-top:12px}.exactmetrics-admin-page .edd-logo,.exactmetrics-admin-page .formidable-forms-logo,.exactmetrics-admin-page .gravity-forms-logo,.exactmetrics-admin-page .lifer-lms-logo,.exactmetrics-admin-page .memberpress-logo,.exactmetrics-admin-page .woocommerce-logo,.exactmetrics-admin-page .wpforms-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.exactmetrics-admin-page .edd-logo,.exactmetrics-admin-page .formidable-forms-logo,.exactmetrics-admin-page .gravity-forms-logo,.exactmetrics-admin-page .lifer-lms-logo,.exactmetrics-admin-page .memberpress-logo,.exactmetrics-admin-page .woocommerce-logo,.exactmetrics-admin-page .wpforms-logo{margin-top:18px}}.exactmetrics-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.exactmetrics-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.exactmetrics-admin-page .lifer-lms-logo{background-image:url(data:image/png;base64,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);width:116px}.exactmetrics-admin-page .wpforms-logo{background-image:url(../img/logo-wp-forms.png);width:115px}.exactmetrics-admin-page .formidable-forms-logo{background-image:url(../img/logo-formidable-forms.png);width:110px}.exactmetrics-admin-page .gravity-forms-logo{background-image:url(data:image/png;base64,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);width:115px}.exactmetrics-admin-page .misc-forms-logo:after{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\0049";color:#bcb7cd;font-size:40px}.exactmetrics-admin-page .exactmetrics-plugin-blocks{margin:30px 0;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}.exactmetrics-admin-page .misc-forms-logo{content:"\f01e";height:25px;line-height:31px;width:34px}.exactmetrics-admin-page .exactmetrics-spaced-input{margin-bottom:50px}.exactmetrics-admin-page .exactmetrics-plugin-block{background:#f4f3f7;border-radius:10px;padding:10px;text-align:center;width:calc(50% - 7px);margin-bottom:15px}@media (max-width:665px){.exactmetrics-admin-page .exactmetrics-plugin-block{width:100%}}.exactmetrics-admin-page .exactmetrics-plugin-block.exactmetrics-plugin-block-active{border:2px solid #32a27a;background:#fff}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo{background:#fff;border-radius:5px;padding:12px 10px;text-align:center}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo .exactmetrics-bg-img{padding-top:0;display:inline-block}.exactmetrics-admin-page .exactmetrics-plugin-block .exactmetrics-plugin-block-logo .exactmetrics-bg-img.memberpress-logo{width:198px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content h4{color:#210f59;font-size:15px;line-height:1.7;margin:20px 0 5px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content p{color:#9087ac;line-height:1.7;margin-bottom:20px;margin-top:5px}.exactmetrics-admin-page .exactmetrics-plugin-block .monsterinsgights-plugin-block-content .monsterinsgights-plugin-check{margin-top:10px;background:rgba(50,162,122,.1);width:40px;height:40px;display:inline-block;border-radius:50%;text-align:center;color:#32a27a;font-size:15px;line-height:40px}.exactmetrics-admin-page .exactmetrics-settings-callout{background:#fff;border-radius:5px;border:1px solid #f4f3f7;padding:19px 78px 26px 14px;position:relative;-webkit-box-shadow:0 10px 22px 0 rgba(0,0,0,.1);box-shadow:0 10px 22px 0 rgba(0,0,0,.1)}.exactmetrics-admin-page .exactmetrics-settings-callout:before{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff;border-style:solid;border-width:0 8px 10px;content:"";bottom:100%;right:22px;z-index:15}.exactmetrics-admin-page .exactmetrics-settings-callout:after{position:absolute;width:0;height:0;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #f4f3f7;border-style:solid;border-width:0 9px 11px;content:"";bottom:100%;right:21px;margin-bottom:1px;z-index:10}.exactmetrics-admin-page .exactmetrics-settings-callout .monstericon-info-circle-regular{position:absolute;font-size:24px;right:23px;top:20px;color:#bcb7cd}.exactmetrics-admin-page .exactmetrics-settings-callout h4{color:#210f59;font-size:15px;line-height:1.5;margin:0 0 13px}.exactmetrics-admin-page .exactmetrics-settings-callout a{font-weight:700}.exactmetrics-admin-page .exactmetrics-settings-callout .exactmetrics-close-button{border:none;padding:0;background:rgba(0,0,0,0);color:#bcb7cd;top:11px;left:14px;position:absolute}.exactmetrics-admin-page .exactmetrics-settings-callout .exactmetrics-grey-link{margin-right:16px}.exactmetrics-admin-page .exactmetrics-settings-callout.exactmetrics-settings-callout-arrow-bottom:after,.exactmetrics-admin-page .exactmetrics-settings-callout.exactmetrics-settings-callout-arrow-bottom:before{top:100%;bottom:auto;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.exactmetrics-admin-page .exactmetrics-grey-link{color:#9087ac}.exactmetrics-first-time-notice .exactmetrics-notice-button{margin-top:20px}.exactmetrics-settings-blur .exactmetrics-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.exactmetrics-settings-blur.exactmetrics-path-general .exactmetrics-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.exactmetrics-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 .exactmetrics-not-authenticated-notice{margin-right:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-right:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{right:0;margin-right:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-right:-375px}}.exactmetrics-not-authenticated-notice .exactmetrics-auth-manual-connect-paragraph{display:none}.exactmetrics-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate .exactmetrics-button{margin:0 20px}.exactmetrics-not-authenticated-notice .exactmetrics-dark{font-weight:400;margin-bottom:20px}.exactmetrics-settings-content.settings-advanced .exactmetrics-settings-block:first-child{z-index:60}.exactmetrics-admin-page .exactmetrics-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){.exactmetrics-admin-page .exactmetrics-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}}.exactmetrics-admin-page .exactmetrics-logos-row .exactmetrics-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%}.exactmetrics-admin-page .exactmetrics-report-ecommerce:after{background-image:url(../img/exactmetrics-report-ecommerce.png)}.exactmetrics-admin-page .exactmetrics-addon-ads,.exactmetrics-admin-page .exactmetrics-addon-amp,.exactmetrics-admin-page .exactmetrics-addon-dimensions,.exactmetrics-admin-page .exactmetrics-addon-eu-compliance,.exactmetrics-admin-page .exactmetrics-addon-forms,.exactmetrics-admin-page .exactmetrics-addon-instant-articles,.exactmetrics-admin-page .exactmetrics-addon-optimize,.exactmetrics-admin-page .exactmetrics-addon-performance,.exactmetrics-admin-page .exactmetrics-addon-scroll{width:48px;padding-top:110%}.exactmetrics-admin-page .exactmetrics-addon-eu-compliance{padding-top:100%}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmBAMAAADG74kWAAAAFVBMVEXW4urW4urW4uoAAADW4uqsvclQn+ITLWFyAAAABHRSTlPsoxwAEnMmfgAAAIFJREFUWMPt2LEJgDAUBNCvOICFAwhu4AQKP06QbCDuP4J9sPCKwOm/KwOvusCHs3V0IN1is0PpbcLAbgMGNnMwvwGp1MmPj7EBYXGEgLA4QkBYHCFI5VVybEBYHCEgLE5AQEBAIAQgPIqE4LjqnAJtwNe+RlMAz0XwIAVPXvCodgNhA6kmkI3HfAAAAABJRU5ErkJggg==)}.exactmetrics-admin-page .exactmetrics-addon-optimize{padding-top:100%}.exactmetrics-admin-page .exactmetrics-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=)}.exactmetrics-admin-page .exactmetrics-addon-dimensions{padding-top:105%}.exactmetrics-admin-page .exactmetrics-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.exactmetrics-admin-page .exactmetrics-addon-performance{padding-top:105%}.exactmetrics-admin-page .exactmetrics-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==)}.exactmetrics-admin-page .exactmetrics-addon-scroll{padding-top:105%}.exactmetrics-admin-page .exactmetrics-addon-scroll:after{background-image:url(data:image/png;base64,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)}.exactmetrics-admin-page .exactmetrics-upsell-large{padding-bottom:35px}@media (max-width:767px){.exactmetrics-admin-page .exactmetrics-upsell-large{padding-right:10px;padding-left:10px;line-height:1.2}}.exactmetrics-admin-page .exactmetrics-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.exactmetrics-admin-page .exactmetrics-upsell-large h2{font-size:18px;margin-top:0}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-coupon{color:#6528f5;border:1px dashed #6528f5;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-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}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:right;margin:10px 0}.exactmetrics-admin-page .exactmetrics-upsell-large .exactmetrics-features span:before{content:"";background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAElBMVEUAAABQn+JQn+JQn+JQn+JQn+KxowiZ