Version Description
Download this release
Release Info
Developer | chriscct7 |
Plugin | Google Analytics Dashboard for WP (GADWP) |
Version | 6.0.2 |
Comparing to | |
See all releases |
Code changes from version 6.0.1 to 6.0.2
- gadwp.php +2 -2
- includes/admin/admin.php +21 -12
- includes/admin/common.php +1 -0
- includes/admin/reports/abstract-report.php +1 -1
- includes/admin/review.php +5 -1
- includes/em-install.php +0 -3
- includes/frontend/frontend.php +3 -0
- languages/google-analytics-dashboard-for-wp.pot +743 -701
- languages/vue.php +167 -134
- lite/assets/vue/css/chunk-common.css +1 -1
- lite/assets/vue/css/chunk-common.rtl.css +1 -1
- lite/assets/vue/css/reports.css +1 -1
- lite/assets/vue/css/reports.rtl.css +1 -1
- lite/assets/vue/css/settings.css +1 -1
- lite/assets/vue/css/settings.rtl.css +0 -1
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.0.
|
8 |
* Author URI: https://exactmetrics.com
|
9 |
* Text Domain: google-analytics-dashboard-for-wp
|
10 |
* Domain Path: /languages
|
@@ -42,7 +42,7 @@ final class ExactMetrics_Lite {
|
|
42 |
* @access public
|
43 |
* @var string $version Plugin version.
|
44 |
*/
|
45 |
-
public $version = '6.0.
|
46 |
|
47 |
/**
|
48 |
* Plugin file.
|
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.0.2
|
8 |
* Author URI: https://exactmetrics.com
|
9 |
* Text Domain: google-analytics-dashboard-for-wp
|
10 |
* Domain Path: /languages
|
42 |
* @access public
|
43 |
* @var string $version Plugin version.
|
44 |
*/
|
45 |
+
public $version = '6.0.2';
|
46 |
|
47 |
/**
|
48 |
* Plugin file.
|
includes/admin/admin.php
CHANGED
@@ -389,18 +389,27 @@ function exactmetrics_admin_setup_notices() {
|
|
389 |
}
|
390 |
|
391 |
// 6. Authenticate, not manual
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
404 |
|
405 |
// 7. Automatic updates not configured
|
406 |
// if ( ! is_network_admin() ) {
|
389 |
}
|
390 |
|
391 |
// 6. Authenticate, not manual
|
392 |
+
$authed = ExactMetrics()->auth->is_authed() || ExactMetrics()->auth->is_network_authed();
|
393 |
+
$url = is_network_admin() ? network_admin_url( 'admin.php?page=exactmetrics_network' ) : admin_url( 'admin.php?page=exactmetrics_settings' );
|
394 |
+
// Translators: Placeholders add links to the settings panel.
|
395 |
+
$manual_text = sprintf( esc_html__( 'Important: You are currently using manual UA code output. We highly recommend %1$sauthenticating with ExactMetrics%2$s so that you can access our new reporting area and take advantage of new ExactMetrics features.', 'google-analytics-dashboard-for-wp' ), '<a href="' . $url . '">', '</a>' );
|
396 |
+
$migrated = exactmetrics_get_option( 'gadwp_migrated', 0 );
|
397 |
+
if ( $migrated > 0 ) {
|
398 |
+
$url = admin_url( 'admin.php?page=exactmetrics-getting-started&exactmetrics-migration=1' );
|
399 |
+
// Translators: Placeholders add links to the settings panel.
|
400 |
+
$text = esc_html__( 'Click %1$shere%2$s to reauthenticate to be able to access reports. For more information why this is required, see our %3$sblog post%4$s.', 'google-analytics-dashboard-for-wp' );
|
401 |
+
$manual_text = sprintf( $text, '<a href="' . $url . '">', '</a>', '<a href="' . exactmetrics_get_url( 'notice', 'manual-ua', 'https://www.exactmetrics.com/why-did-we-implement-the-new-google-analytics-authentication-flow-challenges-explained/' ) . '" target="_blank">', '</a>' );
|
402 |
+
}
|
403 |
+
|
404 |
+
if ( empty( $authed ) && ! isset( $notices['exactmetrics_auth_not_manual'] ) ) {
|
405 |
+
echo '<div class="notice notice-info is-dismissible exactmetrics-notice" data-notice="exactmetrics_auth_not_manual">';
|
406 |
+
echo '<p>';
|
407 |
+
echo $manual_text;
|
408 |
+
echo '</p>';
|
409 |
+
echo '</div>';
|
410 |
+
|
411 |
+
return;
|
412 |
+
}
|
413 |
|
414 |
// 7. Automatic updates not configured
|
415 |
// if ( ! is_network_admin() ) {
|
includes/admin/common.php
CHANGED
@@ -310,6 +310,7 @@ function exactmetrics_admin_scripts() {
|
|
310 |
'activate_nonce' => wp_create_nonce( 'exactmetrics-activate' ),
|
311 |
'deactivate_nonce'=> wp_create_nonce( 'exactmetrics-deactivate' ),
|
312 |
'update_settings' => current_user_can( 'exactmetrics_save_settings' ),
|
|
|
313 |
)
|
314 |
);
|
315 |
|
310 |
'activate_nonce' => wp_create_nonce( 'exactmetrics-activate' ),
|
311 |
'deactivate_nonce'=> wp_create_nonce( 'exactmetrics-deactivate' ),
|
312 |
'update_settings' => current_user_can( 'exactmetrics_save_settings' ),
|
313 |
+
'migrated' => exactmetrics_get_option( 'gadwp_migrated', 0 ),
|
314 |
)
|
315 |
);
|
316 |
|
includes/admin/reports/abstract-report.php
CHANGED
@@ -182,7 +182,7 @@ class ExactMetrics_Report {
|
|
182 |
$ms_auth = is_multisite() && ExactMetrics()->auth->get_network_viewname();
|
183 |
$transient = 'exactmetrics_report_' . $this->name . '_' . $start . '_' . $end;
|
184 |
// Set to same time as MI cache. MI caches same day to 15 and others to 1 day, so there's no point pinging MI before then.
|
185 |
-
$expiration = date( 'Y-m-d' ) === $end ? apply_filters( 'exactmetrics_report_transient_expiration', 15 * MINUTE_IN_SECONDS, $this->name ) :
|
186 |
|
187 |
// Default date range, check.
|
188 |
if ( $site_auth || $ms_auth ) {
|
182 |
$ms_auth = is_multisite() && ExactMetrics()->auth->get_network_viewname();
|
183 |
$transient = 'exactmetrics_report_' . $this->name . '_' . $start . '_' . $end;
|
184 |
// Set to same time as MI cache. MI caches same day to 15 and others to 1 day, so there's no point pinging MI before then.
|
185 |
+
$expiration = date( 'Y-m-d' ) === $end ? apply_filters( 'exactmetrics_report_transient_expiration', 15 * MINUTE_IN_SECONDS, $this->name ) : HOUR_IN_SECONDS;
|
186 |
|
187 |
// Default date range, check.
|
188 |
if ( $site_auth || $ms_auth ) {
|
includes/admin/review.php
CHANGED
@@ -73,7 +73,11 @@ class ExactMetrics_Review {
|
|
73 |
|
74 |
if ( ! empty( $activated['connected_date'] ) ) {
|
75 |
// Only continue if plugin has been tracking for at least 14 days.
|
76 |
-
|
|
|
|
|
|
|
|
|
77 |
return;
|
78 |
}
|
79 |
} else {
|
73 |
|
74 |
if ( ! empty( $activated['connected_date'] ) ) {
|
75 |
// Only continue if plugin has been tracking for at least 14 days.
|
76 |
+
$days = 14;
|
77 |
+
if ( exactmetrics_get_option( 'gadwp_migrated', 0 ) > 0 ) {
|
78 |
+
$days = 21;
|
79 |
+
}
|
80 |
+
if ( ( $activated['connected_date'] + ( DAY_IN_SECONDS * $days ) ) > time() ) {
|
81 |
return;
|
82 |
}
|
83 |
} else {
|
includes/em-install.php
CHANGED
@@ -395,9 +395,6 @@ class ExactMetrics_Install {
|
|
395 |
update_user_meta( get_current_user_id(), 'exactmetrics_user_preferences', $dashboard_settings );
|
396 |
}
|
397 |
|
398 |
-
// Add transient to trigger redirect.
|
399 |
-
set_transient( '_exactmetrics_activation_redirect', 1, 60 );
|
400 |
-
|
401 |
return $settings;
|
402 |
}
|
403 |
|
395 |
update_user_meta( get_current_user_id(), 'exactmetrics_user_preferences', $dashboard_settings );
|
396 |
}
|
397 |
|
|
|
|
|
|
|
398 |
return $settings;
|
399 |
}
|
400 |
|
includes/frontend/frontend.php
CHANGED
@@ -227,6 +227,9 @@ function exactmetrics_administrator_tracking_notice() {
|
|
227 |
return;
|
228 |
}
|
229 |
|
|
|
|
|
|
|
230 |
?>
|
231 |
<div class="exactmetrics-tracking-notice exactmetrics-tracking-notice-hide">
|
232 |
<div class="exactmetrics-tracking-notice-icon">
|
227 |
return;
|
228 |
}
|
229 |
|
230 |
+
// Automatically dismiss when loaded.
|
231 |
+
update_option( 'exactmetrics_frontend_tracking_notice_viewed', 1 );
|
232 |
+
|
233 |
?>
|
234 |
<div class="exactmetrics-tracking-notice exactmetrics-tracking-notice-hide">
|
235 |
<div class="exactmetrics-tracking-notice-icon">
|
languages/google-analytics-dashboard-for-wp.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the ExactMetrics Pro plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: ExactMetrics Pro 6.0.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2020-02-
|
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"
|
@@ -36,7 +36,7 @@ msgstr ""
|
|
36 |
#: lite/includes/admin/wp-site-health.php:343
|
37 |
#: lite/includes/admin/wp-site-health.php:368
|
38 |
#: lite/includes/admin/wp-site-health.php:407
|
39 |
-
#: lite/includes/admin/dashboard-widget.php:
|
40 |
#: includes/admin/admin.php:31
|
41 |
#: includes/admin/admin.php:34
|
42 |
#: includes/admin/admin.php:42
|
@@ -152,7 +152,7 @@ msgstr ""
|
|
152 |
#: lite/includes/admin/wp-site-health.php:298
|
153 |
#: lite/includes/admin/wp-site-health.php:324
|
154 |
#: lite/includes/admin/wp-site-health.php:351
|
155 |
-
#: languages/vue.php:
|
156 |
msgid "View Addons"
|
157 |
msgstr ""
|
158 |
|
@@ -247,19 +247,19 @@ msgstr ""
|
|
247 |
msgid "Pro version installed but needs to be activated from the Plugins page inside your WordPress admin."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: lite/includes/admin/dashboard-widget.php:
|
251 |
msgid "Website Analytics is not Setup"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: lite/includes/admin/dashboard-widget.php:
|
255 |
msgid "To see your website stats, please connect ExactMetrics to Google Analytics."
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: lite/includes/admin/dashboard-widget.php:
|
259 |
msgid "Setup Website Analytics"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: lite/includes/admin/dashboard-widget.php:
|
263 |
msgid "To see your website stats, please ask your webmaster to connect ExactMetrics to Google Analytics."
|
264 |
msgstr ""
|
265 |
|
@@ -301,12 +301,12 @@ msgid "You are not allowed to install plugins"
|
|
301 |
msgstr ""
|
302 |
|
303 |
#: lite/includes/admin/reports/report-queries.php:22
|
304 |
-
#: languages/vue.php:
|
305 |
msgid "Search Console"
|
306 |
msgstr ""
|
307 |
|
308 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
309 |
-
#: languages/vue.php:
|
310 |
msgid "eCommerce"
|
311 |
msgstr ""
|
312 |
|
@@ -319,17 +319,17 @@ msgid "Real Time"
|
|
319 |
msgstr ""
|
320 |
|
321 |
#: lite/includes/admin/reports/report-publisher.php:22
|
322 |
-
#: languages/vue.php:
|
323 |
msgid "Publishers"
|
324 |
msgstr ""
|
325 |
|
326 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
327 |
-
#: languages/vue.php:
|
328 |
msgid "Dimensions"
|
329 |
msgstr ""
|
330 |
|
331 |
#: lite/includes/admin/reports/report-forms.php:22
|
332 |
-
#: languages/vue.php:
|
333 |
msgid "Forms"
|
334 |
msgstr ""
|
335 |
|
@@ -362,47 +362,47 @@ msgstr ""
|
|
362 |
msgid "because you are not being tracked."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: includes/admin/review.php:
|
366 |
msgid "Are you enjoying ExactMetrics?"
|
367 |
msgstr ""
|
368 |
|
369 |
-
#: includes/admin/review.php:
|
370 |
msgid "Yes"
|
371 |
msgstr ""
|
372 |
|
373 |
-
#: includes/admin/review.php:
|
374 |
msgid "Not Really"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: includes/admin/review.php:
|
378 |
msgid "We're sorry to hear you aren't enjoying ExactMetrics. We would love a chance to improve. Could you take a minute and let us know what we can do better?"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: includes/admin/review.php:
|
382 |
msgid "Give Feedback"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: includes/admin/review.php:
|
386 |
msgid "No thanks"
|
387 |
msgstr ""
|
388 |
|
389 |
-
#: includes/admin/review.php:
|
390 |
msgid "That’s awesome! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
391 |
msgstr ""
|
392 |
|
393 |
-
#: includes/admin/review.php:
|
394 |
msgid "~ Syed Balkhi<br>Co-Founder of ExactMetrics"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: includes/admin/review.php:
|
398 |
msgid "Ok, you deserve it"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: includes/admin/review.php:
|
402 |
msgid "Nope, maybe later"
|
403 |
msgstr ""
|
404 |
|
405 |
-
#: includes/admin/review.php:
|
406 |
msgid "I already did"
|
407 |
msgstr ""
|
408 |
|
@@ -566,19 +566,19 @@ msgid "There was an error installing the addon: %s"
|
|
566 |
msgstr ""
|
567 |
|
568 |
#. Translators: Placeholders are for links to fix the issue.
|
569 |
-
#: includes/admin/common.php:
|
570 |
msgid "ExactMetrics has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of ExactMetrics. To solve this, ensure ExactMetrics is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: includes/admin/common.php:
|
574 |
msgid "Your 2019 Analytics Report"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: includes/admin/common.php:
|
578 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#: includes/admin/common.php:
|
582 |
msgid "View 2019 Year in Review report!"
|
583 |
msgstr ""
|
584 |
|
@@ -600,7 +600,7 @@ msgstr ""
|
|
600 |
|
601 |
#: includes/admin/admin.php:39
|
602 |
#: includes/admin/admin.php:95
|
603 |
-
#: languages/vue.php:
|
604 |
msgid "Reports"
|
605 |
msgstr ""
|
606 |
|
@@ -629,7 +629,7 @@ msgstr ""
|
|
629 |
|
630 |
#: includes/admin/admin.php:60
|
631 |
#: includes/admin/admin.php:103
|
632 |
-
#: languages/vue.php:
|
633 |
msgid "About Us"
|
634 |
msgstr ""
|
635 |
|
@@ -657,7 +657,7 @@ msgstr ""
|
|
657 |
|
658 |
#: includes/admin/admin.php:175
|
659 |
#: includes/admin/admin.php:178
|
660 |
-
#: languages/vue.php:
|
661 |
msgid "Support"
|
662 |
msgstr ""
|
663 |
|
@@ -667,22 +667,22 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
|
|
667 |
msgstr ""
|
668 |
|
669 |
#: includes/admin/admin.php:277
|
670 |
-
#: languages/vue.php:
|
671 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
672 |
msgstr ""
|
673 |
|
674 |
#: includes/admin/admin.php:278
|
675 |
-
#: languages/vue.php:
|
676 |
msgid "Connect ExactMetrics and Setup Website Analytics"
|
677 |
msgstr ""
|
678 |
|
679 |
#: includes/admin/admin.php:280
|
680 |
-
#: languages/vue.php:
|
681 |
msgid "Learn More"
|
682 |
msgstr ""
|
683 |
|
684 |
#: includes/admin/admin.php:282
|
685 |
-
#: languages/vue.php:
|
686 |
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."
|
687 |
msgstr ""
|
688 |
|
@@ -693,17 +693,17 @@ msgstr ""
|
|
693 |
|
694 |
#. Translators: Adds a link to the license renewal.
|
695 |
#: includes/admin/admin.php:303
|
696 |
-
#: languages/vue.php:
|
697 |
msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
698 |
msgstr ""
|
699 |
|
700 |
#: includes/admin/admin.php:305
|
701 |
-
#: languages/vue.php:
|
702 |
msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
|
703 |
msgstr ""
|
704 |
|
705 |
#: includes/admin/admin.php:307
|
706 |
-
#: languages/vue.php:
|
707 |
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."
|
708 |
msgstr ""
|
709 |
|
@@ -731,18 +731,23 @@ msgid "Your site is running an outdated version of WordPress (%1$s).%4$sExactMet
|
|
731 |
msgstr ""
|
732 |
|
733 |
#. Translators: Placeholders add links to the settings panel.
|
734 |
-
#: includes/admin/admin.php:
|
735 |
msgid "Important: You are currently using manual UA code output. We highly recommend %1$sauthenticating with ExactMetrics%2$s so that you can access our new reporting area and take advantage of new ExactMetrics features."
|
736 |
msgstr ""
|
737 |
|
|
|
|
|
|
|
|
|
|
|
738 |
#. Translators: Placeholders add a link to the ExactMetrics website.
|
739 |
-
#: includes/admin/admin.php:
|
740 |
-
#: includes/admin/admin.php:
|
741 |
msgid "%1$sGet ExactMetrics Pro%2$s"
|
742 |
msgstr ""
|
743 |
|
744 |
#. Translators: Adds a link to the settings panel.
|
745 |
-
#: includes/admin/admin.php:
|
746 |
msgid "Warning: ExactMetrics found cross-domain settings in the custom code field and converted them to the new settings structure. %1$sPlease click here to review and remove the code no longer needed.%2$s"
|
747 |
msgstr ""
|
748 |
|
@@ -784,7 +789,7 @@ msgid "View supported browsers"
|
|
784 |
msgstr ""
|
785 |
|
786 |
#: includes/admin/reports/overview.php:34
|
787 |
-
#: languages/vue.php:
|
788 |
msgid "Overview"
|
789 |
msgstr ""
|
790 |
|
@@ -876,7 +881,7 @@ msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, pur
|
|
876 |
msgstr ""
|
877 |
|
878 |
#: includes/admin/reports/abstract-report.php:375
|
879 |
-
#: languages/vue.php:
|
880 |
msgid "Upgrade Now"
|
881 |
msgstr ""
|
882 |
|
@@ -1957,222 +1962,222 @@ msgstr ""
|
|
1957 |
msgid "%1$s is %3$sdeprecated%4$s since ExactMetrics version %2$s."
|
1958 |
msgstr ""
|
1959 |
|
1960 |
-
#: languages/vue.php:
|
1961 |
msgid "Error"
|
1962 |
msgstr ""
|
1963 |
|
1964 |
-
#: languages/vue.php:
|
1965 |
msgid "Please try again."
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#: languages/vue.php:
|
1969 |
msgid "Loading Settings"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
-
#: languages/vue.php:
|
1973 |
msgid "Please wait..."
|
1974 |
msgstr ""
|
1975 |
|
1976 |
-
#: languages/vue.php:
|
1977 |
msgid "Saving Changes..."
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#: languages/vue.php:
|
1981 |
msgid "Settings Updated"
|
1982 |
msgstr ""
|
1983 |
|
1984 |
#. Translators: Add a link to the onboarding wizard.
|
1985 |
-
#: languages/vue.php:
|
1986 |
msgid "You need to %1$sconnect ExactMetrics%2$s first"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
-
#: languages/vue.php:
|
1990 |
msgid "Could Not Save Changes"
|
1991 |
msgstr ""
|
1992 |
|
1993 |
-
#: languages/vue.php:
|
1994 |
msgid "Loading new report data"
|
1995 |
msgstr ""
|
1996 |
|
1997 |
#. Translators: Adds an arrow icon.
|
1998 |
-
#: languages/vue.php:
|
1999 |
msgid "Continue %s"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#: languages/vue.php:
|
2003 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#: languages/vue.php:
|
2007 |
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."
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#: languages/vue.php:
|
2011 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#: languages/vue.php:
|
2015 |
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."
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#: languages/vue.php:
|
2019 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#: languages/vue.php:
|
2023 |
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."
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#: languages/vue.php:
|
2027 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
2028 |
msgstr ""
|
2029 |
|
2030 |
-
#: languages/vue.php:
|
2031 |
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."
|
2032 |
msgstr ""
|
2033 |
|
2034 |
-
#: languages/vue.php:
|
2035 |
msgid "Unlock the Forms Report and Improve Conversions"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
-
#: languages/vue.php:
|
2039 |
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."
|
2040 |
msgstr ""
|
2041 |
|
2042 |
-
#: languages/vue.php:
|
2043 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#: languages/vue.php:
|
2047 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#: languages/vue.php:
|
2051 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: languages/vue.php:
|
2055 |
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."
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: languages/vue.php:
|
2059 |
msgid "Success! "
|
2060 |
msgstr ""
|
2061 |
|
2062 |
-
#: languages/vue.php:
|
2063 |
msgid "You're now using ExactMetrics Pro with all the features."
|
2064 |
msgstr ""
|
2065 |
|
2066 |
#. Translators: Placeholder gets replaced with an arrow icon.
|
2067 |
-
#: languages/vue.php:
|
2068 |
msgid "Get Started %s"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
-
#: languages/vue.php:
|
2072 |
msgid "Overview Report"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
#. Translators: Current WordPress version.
|
2076 |
-
#: languages/vue.php:
|
2077 |
msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
2078 |
msgstr ""
|
2079 |
|
2080 |
-
#: languages/vue.php:
|
2081 |
msgid "Yikes! PHP Update Required"
|
2082 |
msgstr ""
|
2083 |
|
2084 |
#. Translators: Current PHP version and recommended PHP version.
|
2085 |
-
#: languages/vue.php:
|
2086 |
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."
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: languages/vue.php:
|
2090 |
msgid "Learn more about updating PHP"
|
2091 |
msgstr ""
|
2092 |
|
2093 |
-
#: languages/vue.php:
|
2094 |
msgid "Yikes! WordPress Update Required"
|
2095 |
msgstr ""
|
2096 |
|
2097 |
#. Translators: Current WordPress version.
|
2098 |
-
#: languages/vue.php:
|
2099 |
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 October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: languages/vue.php:
|
2103 |
msgid "Learn more about updating WordPress"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
#. Translators: Makes text bold.
|
2107 |
-
#: languages/vue.php:
|
2108 |
msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
2109 |
msgstr ""
|
2110 |
|
2111 |
#. Translators: Makes text bold.
|
2112 |
-
#: languages/vue.php:
|
2113 |
msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
|
2114 |
msgstr ""
|
2115 |
|
2116 |
#. Translators: Makes text bold.
|
2117 |
-
#: languages/vue.php:
|
2118 |
msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
|
2119 |
msgstr ""
|
2120 |
|
2121 |
#. Translators: Makes text bold.
|
2122 |
-
#: languages/vue.php:
|
2123 |
msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
|
2124 |
msgstr ""
|
2125 |
|
2126 |
#. Translators: Makes text bold.
|
2127 |
-
#: languages/vue.php:
|
2128 |
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."
|
2129 |
msgstr ""
|
2130 |
|
2131 |
#. Translators: Makes text bold.
|
2132 |
-
#: languages/vue.php:
|
2133 |
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."
|
2134 |
msgstr ""
|
2135 |
|
2136 |
#. Translators: Makes text bold.
|
2137 |
-
#: languages/vue.php:
|
2138 |
msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
2139 |
msgstr ""
|
2140 |
|
2141 |
#. Translators: Makes text bold.
|
2142 |
-
#: languages/vue.php:
|
2143 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
#. Translators: Adds link to the features page.
|
2147 |
-
#: languages/vue.php:
|
2148 |
msgid "%1$sSee All Features%2$s"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: languages/vue.php:
|
2152 |
msgid "Pro Plan"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
#: languages/vue.php:
|
2156 |
msgid "per year"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
-
#: languages/vue.php:
|
2160 |
msgid "Upgrade to ExactMetrics Pro Now"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
-
#: languages/vue.php:
|
2164 |
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!"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
-
#: languages/vue.php:
|
2168 |
msgid "Daniel Monaghan - Experienced"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
#: languages/vue.php:
|
2172 |
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."
|
2173 |
msgstr ""
|
2174 |
|
2175 |
-
#: languages/vue.php:
|
2176 |
msgid "Naomi Spirit - From This Day"
|
2177 |
msgstr ""
|
2178 |
|
@@ -2180,164 +2185,164 @@ msgstr ""
|
|
2180 |
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!"
|
2181 |
msgstr ""
|
2182 |
|
2183 |
-
#: languages/vue.php:
|
2184 |
msgid "Julie Dupuis - Faraway Land Travel"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: languages/vue.php:
|
2188 |
msgid "Guides and Documentation:"
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#: languages/vue.php:
|
2192 |
msgid "Upgrade to PRO"
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#: languages/vue.php:
|
2196 |
msgid "eCommerce Tracking"
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: languages/vue.php:
|
2200 |
msgid "Custom Dimensions"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: languages/vue.php:
|
2204 |
msgid "Form Tracking"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: languages/vue.php:
|
2208 |
msgid "AMP Support"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: languages/vue.php:
|
2212 |
msgid "Author Tracking"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: languages/vue.php:
|
2216 |
msgid "EU Compliance Addon"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: languages/vue.php:
|
2220 |
msgid "Real Time Report"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: languages/vue.php:
|
2224 |
msgid "Google Optimize"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: languages/vue.php:
|
2228 |
msgid "Custom Date Ranges"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: languages/vue.php:
|
2232 |
msgid "Getting Started with ExactMetrics"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: languages/vue.php:
|
2236 |
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."
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: languages/vue.php:
|
2240 |
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."
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: languages/vue.php:
|
2244 |
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!."
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: languages/vue.php:
|
2248 |
msgid "Launch the wizard!"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: languages/vue.php:
|
2252 |
msgid "Welcome to"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
#. Translators: Adds a line break.
|
2256 |
-
#: languages/vue.php:
|
2257 |
msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
#. Translators: Makes text bold.
|
2261 |
-
#: languages/vue.php:
|
2262 |
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."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: languages/vue.php:
|
2266 |
msgid "ExactMetrics Features & Addons"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: languages/vue.php:
|
2270 |
msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
#. Translators: Number of visitors.
|
2274 |
-
#: languages/vue.php:
|
2275 |
msgid "See how %s visitors found your site!"
|
2276 |
msgstr ""
|
2277 |
|
2278 |
#. Translators: Number of visitors.
|
2279 |
-
#: languages/vue.php:
|
2280 |
msgid "Your website was visited by %s users in the last 30 days."
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#: languages/vue.php:
|
2284 |
msgid "See the full analytics report!"
|
2285 |
msgstr ""
|
2286 |
|
2287 |
#. Translators: Error status and error text.
|
2288 |
-
#: languages/vue.php:
|
2289 |
msgid "Can't load report data. Error: %1$s, %2$s"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: languages/vue.php:
|
2293 |
msgid "Error loading report data"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
#. Translators: Placeholder is replaced with WPForms.
|
2297 |
-
#: languages/vue.php:
|
2298 |
msgid "Recommended Plugin: %s"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: languages/vue.php:
|
2302 |
msgid "Install"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: languages/vue.php:
|
2306 |
msgid "Activate"
|
2307 |
msgstr ""
|
2308 |
|
2309 |
#. Translators: Gets replaced with the number of days.
|
2310 |
-
#: languages/vue.php:
|
2311 |
msgid "Last %s days"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
#: languages/vue.php:
|
2315 |
msgid "ExactMetrics encountered an error loading your report data"
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#: languages/vue.php:
|
2319 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#: languages/vue.php:
|
2323 |
-
#: languages/vue.php:
|
2324 |
msgid "Reconnect ExactMetrics"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
-
#: languages/vue.php:
|
2328 |
msgid "Re-Authenticating"
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: languages/vue.php:
|
2332 |
msgid "Ok"
|
2333 |
msgstr ""
|
2334 |
|
2335 |
-
#: languages/vue.php:
|
2336 |
msgid "Analytics"
|
2337 |
msgstr ""
|
2338 |
|
2339 |
#. Translators: Adds an arrow icon.
|
2340 |
-
#: languages/vue.php:
|
2341 |
msgid "View All Reports %s"
|
2342 |
msgstr ""
|
2343 |
|
@@ -2345,2348 +2350,2385 @@ msgstr ""
|
|
2345 |
msgid "Getting Started"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: languages/vue.php:
|
2349 |
msgid "Lite vs Pro"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: languages/vue.php:
|
2353 |
msgid "General"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#: languages/vue.php:
|
2357 |
msgid "Engagement"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: languages/vue.php:
|
2361 |
msgid "Publisher"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: languages/vue.php:
|
2365 |
msgid "Conversions"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: languages/vue.php:
|
2369 |
msgid "Advanced"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
#: languages/vue.php:
|
2373 |
msgid "URL Builder"
|
2374 |
msgstr ""
|
2375 |
|
2376 |
-
#: languages/vue.php:
|
2377 |
msgid "Import Export"
|
2378 |
msgstr ""
|
2379 |
|
2380 |
-
#: languages/vue.php:
|
2381 |
msgid "Go back"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
#. Translators: Placeholders are replaced with the current step number out of the total number of steps.
|
2385 |
-
#: languages/vue.php:
|
2386 |
msgid "Step %1$s of %2$s"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: languages/vue.php:
|
2390 |
msgid "Exit Setup"
|
2391 |
msgstr ""
|
2392 |
|
2393 |
-
#: languages/vue.php:
|
2394 |
msgid "Dimensions Report"
|
2395 |
msgstr ""
|
2396 |
|
2397 |
-
#: languages/vue.php:
|
2398 |
msgid "Real-Time"
|
2399 |
msgstr ""
|
2400 |
|
2401 |
-
#: languages/vue.php:
|
2402 |
msgid "See Quick Links"
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#: languages/vue.php:
|
2406 |
msgid "Suggest a Feature"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: languages/vue.php:
|
2410 |
msgid "Join Our Community"
|
2411 |
msgstr ""
|
2412 |
|
2413 |
-
#: languages/vue.php:
|
2414 |
msgid "Support & Docs"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#: languages/vue.php:
|
2418 |
msgid "Upgrade to Pro »"
|
2419 |
msgstr ""
|
2420 |
|
2421 |
-
#: languages/vue.php:
|
2422 |
msgid "Time to Purchase"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#: languages/vue.php:
|
2426 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: languages/vue.php:
|
2430 |
msgid "Sessions to Purchase"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: languages/vue.php:
|
2434 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: languages/vue.php:
|
2438 |
msgid "Top Posts/Pages"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: languages/vue.php:
|
2442 |
msgid "This list shows the most viewed posts and pages on your website."
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: languages/vue.php:
|
2446 |
msgid "New vs. Returning Visitors"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#: languages/vue.php:
|
2450 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: languages/vue.php:
|
2454 |
msgid "Device Breakdown"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: languages/vue.php:
|
2458 |
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."
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: languages/vue.php:
|
2462 |
msgid "Top Landing Pages"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#: languages/vue.php:
|
2466 |
msgid "This list shows the top pages users first land on when visiting your website."
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: languages/vue.php:
|
2470 |
msgid "Top Exit Pages"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: languages/vue.php:
|
2474 |
msgid "This list shows the top pages users exit your website from."
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#: languages/vue.php:
|
2478 |
msgid "Top Outbound Links"
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: languages/vue.php:
|
2482 |
msgid "This list shows the top links clicked on your website that go to another website."
|
2483 |
msgstr ""
|
2484 |
|
2485 |
-
#: languages/vue.php:
|
2486 |
msgid "Top Affiliate Links"
|
2487 |
msgstr ""
|
2488 |
|
2489 |
-
#: languages/vue.php:
|
2490 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#: languages/vue.php:
|
2494 |
msgid "Top Download Links"
|
2495 |
msgstr ""
|
2496 |
|
2497 |
-
#: languages/vue.php:
|
2498 |
msgid "This list shows the download links your visitors clicked the most."
|
2499 |
msgstr ""
|
2500 |
|
2501 |
-
#: languages/vue.php:
|
2502 |
msgid "Top Products"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#: languages/vue.php:
|
2506 |
msgid "This list shows the top selling products on your website."
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#: languages/vue.php:
|
2510 |
msgid "Top Conversion Sources"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#: languages/vue.php:
|
2514 |
msgid "This list shows the top referral websites in terms of product revenue."
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: languages/vue.php:
|
2518 |
msgid "Total Add/Remove"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: languages/vue.php:
|
2522 |
msgid "Save Changes"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: languages/vue.php:
|
2526 |
msgid "You must connect with ExactMetrics before you can view reports."
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: languages/vue.php:
|
2530 |
msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
2531 |
msgstr ""
|
2532 |
|
2533 |
-
#: languages/vue.php:
|
2534 |
msgid "Launch Setup Wizard"
|
2535 |
msgstr ""
|
2536 |
|
2537 |
-
#: languages/vue.php:
|
2538 |
msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
|
2539 |
msgstr ""
|
2540 |
|
2541 |
#. Translators: Adds a link to documentation.
|
2542 |
-
#: languages/vue.php:
|
2543 |
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"
|
2544 |
msgstr ""
|
2545 |
|
2546 |
#. Translators: Adds link to activate/install plugin and documentation.
|
2547 |
-
#: languages/vue.php:
|
2548 |
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"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
#. Translators: Adds a link to documentation.
|
2552 |
-
#: languages/vue.php:
|
2553 |
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"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
#. Translators: Adds link to activate/install plugin and documentation.
|
2557 |
-
#: languages/vue.php:
|
2558 |
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"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
#. Translators: Placeholders make the text highlighted.
|
2562 |
-
#: languages/vue.php:
|
2563 |
msgid "%1$sNeed%2$s to Grow FASTER??"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
-
#: languages/vue.php:
|
2567 |
msgid "Get additional, actionable insights by going Pro."
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#: languages/vue.php:
|
2571 |
msgid "Skip"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#: languages/vue.php:
|
2575 |
msgid "See All Features"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
#: languages/vue.php:
|
2579 |
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."
|
2580 |
msgstr ""
|
2581 |
|
2582 |
-
#: languages/vue.php:
|
2583 |
msgid "Our Pro plan includes:"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
-
#: languages/vue.php:
|
2587 |
msgid "Connect ExactMetrics to Your Website"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#: languages/vue.php:
|
2591 |
msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
|
2592 |
msgstr ""
|
2593 |
|
2594 |
-
#: languages/vue.php:
|
2595 |
msgid "Connect Google Analytics + WordPress"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
-
#: languages/vue.php:
|
2599 |
msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#: languages/vue.php:
|
2603 |
msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: languages/vue.php:
|
2607 |
msgid "Manually enter your UA code"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: languages/vue.php:
|
2611 |
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."
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: languages/vue.php:
|
2615 |
msgid "Save and Continue"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: languages/vue.php:
|
2619 |
msgid "UA code can't be empty"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: languages/vue.php:
|
2623 |
msgid "Saving UA code..."
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: languages/vue.php:
|
2627 |
msgid "Welcome to the all-new ExactMetrics"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
-
#: languages/vue.php:
|
2631 |
msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
|
2632 |
msgstr ""
|
2633 |
|
2634 |
-
#: languages/vue.php:
|
2635 |
msgid "The New & Improved ExactMetrics includes:"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
-
#: languages/vue.php:
|
2639 |
msgid "All-New Design"
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: languages/vue.php:
|
2643 |
msgid "Better Reporting"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
-
#: languages/vue.php:
|
2647 |
msgid "Better Tracking"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: languages/vue.php:
|
2651 |
msgid "Better Support"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
-
#: languages/vue.php:
|
2655 |
msgid "Continue"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: languages/vue.php:
|
2659 |
msgid "Your settings have been automatically transferred."
|
2660 |
msgstr ""
|
2661 |
|
2662 |
-
#: languages/vue.php:
|
2663 |
msgid "Recommended Settings"
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: languages/vue.php:
|
2667 |
msgid "ExactMetrics recommends the following settings based on your configuration."
|
2668 |
msgstr ""
|
2669 |
|
2670 |
-
#: languages/vue.php:
|
2671 |
msgid "Events Tracking"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
-
#: languages/vue.php:
|
2675 |
msgid "Must have for all click tracking on site."
|
2676 |
msgstr ""
|
2677 |
|
2678 |
-
#: languages/vue.php:
|
2679 |
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."
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: languages/vue.php:
|
2683 |
msgid "Enhanced Link Attribution"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: languages/vue.php:
|
2687 |
msgid "Improves the accuracy of your In-Page Analytics."
|
2688 |
msgstr ""
|
2689 |
|
2690 |
-
#: languages/vue.php:
|
2691 |
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."
|
2692 |
msgstr ""
|
2693 |
|
2694 |
-
#: languages/vue.php:
|
2695 |
msgid "Install Updates Automatically"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#: languages/vue.php:
|
2699 |
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#: languages/vue.php:
|
2703 |
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."
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: languages/vue.php:
|
2707 |
msgid "File Download Tracking"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: languages/vue.php:
|
2711 |
msgid "Helps you see file downloads data."
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: languages/vue.php:
|
2715 |
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."
|
2716 |
msgstr ""
|
2717 |
|
2718 |
#. Translators: Example path (/go/).
|
2719 |
-
#: languages/vue.php:
|
2720 |
msgid "Path (example: %s)"
|
2721 |
msgstr ""
|
2722 |
|
2723 |
-
#: languages/vue.php:
|
2724 |
msgid "Path has to start with a / and have no spaces"
|
2725 |
msgstr ""
|
2726 |
|
2727 |
#. Translators: Example label (aff).
|
2728 |
-
#: languages/vue.php:
|
2729 |
msgid "Label (example: %s)"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#: languages/vue.php:
|
2733 |
msgid "Label can't contain any spaces"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#: languages/vue.php:
|
2737 |
msgid "Helps you increase affiliate revenue."
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#: languages/vue.php:
|
2741 |
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."
|
2742 |
msgstr ""
|
2743 |
|
2744 |
-
#: languages/vue.php:
|
2745 |
msgid "Affiliate Link Tracking"
|
2746 |
msgstr ""
|
2747 |
|
2748 |
-
#: languages/vue.php:
|
2749 |
msgid "Who Can See Reports"
|
2750 |
msgstr ""
|
2751 |
|
2752 |
-
#: languages/vue.php:
|
2753 |
msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
|
2754 |
msgstr ""
|
2755 |
|
2756 |
-
#: languages/vue.php:
|
2757 |
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."
|
2758 |
msgstr ""
|
2759 |
|
2760 |
-
#: languages/vue.php:
|
2761 |
msgid "Save and continue"
|
2762 |
msgstr ""
|
2763 |
|
2764 |
-
#: languages/vue.php:
|
2765 |
msgid "Events Tracking is enabled the moment you set up ExactMetrics"
|
2766 |
msgstr ""
|
2767 |
|
2768 |
-
#: languages/vue.php:
|
2769 |
msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
|
2770 |
msgstr ""
|
2771 |
|
2772 |
-
#: languages/vue.php:
|
2773 |
msgid "+ Add Role"
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#: languages/vue.php:
|
2777 |
msgid "Awesome, You're All Set!"
|
2778 |
msgstr ""
|
2779 |
|
2780 |
-
#: languages/vue.php:
|
2781 |
msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
2782 |
msgstr ""
|
2783 |
|
2784 |
#. Translators: Make the text bold.
|
2785 |
-
#: languages/vue.php:
|
2786 |
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."
|
2787 |
msgstr ""
|
2788 |
|
2789 |
#. Translators: Add link to blog.
|
2790 |
-
#: languages/vue.php:
|
2791 |
msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
|
2792 |
msgstr ""
|
2793 |
|
2794 |
-
#: languages/vue.php:
|
2795 |
msgid "Finish Setup & Exit Wizard"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
-
#: languages/vue.php:
|
2799 |
msgid "Google Analytics"
|
2800 |
msgstr ""
|
2801 |
|
2802 |
-
#: languages/vue.php:
|
2803 |
msgid "Subscribe"
|
2804 |
msgstr ""
|
2805 |
|
2806 |
-
#: languages/vue.php:
|
2807 |
msgid "Checking your website..."
|
2808 |
msgstr ""
|
2809 |
|
2810 |
-
#: languages/vue.php:
|
2811 |
msgid "Show Overview Reports"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
-
#: languages/vue.php:
|
2815 |
msgid "Show Publishers Reports"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
-
#: languages/vue.php:
|
2819 |
msgid "Show eCommerce Reports"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
-
#: languages/vue.php:
|
2823 |
msgid "Available in PRO version"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
-
#: languages/vue.php:
|
2827 |
msgid "Show in widget mode"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
-
#: languages/vue.php:
|
2831 |
msgid "Show in full-width mode"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
#. Translators: Placeholder adds a line break.
|
2835 |
-
#: languages/vue.php:
|
2836 |
msgid "You can customize your %sdate range only in the PRO version."
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: languages/vue.php:
|
2840 |
msgid "See All Reports"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: languages/vue.php:
|
2844 |
msgid "Go to the Analytics Dashboard"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
-
#: languages/vue.php:
|
2848 |
msgid "Ecommerce"
|
2849 |
msgstr ""
|
2850 |
|
2851 |
#. Translators: Add line break.
|
2852 |
-
#: languages/vue.php:
|
2853 |
msgid "See All Your Important Store%s Metrics in One Place"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#: languages/vue.php:
|
2857 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
-
#: languages/vue.php:
|
2861 |
msgid "Here's what you get:"
|
2862 |
msgstr ""
|
2863 |
|
2864 |
-
#: languages/vue.php:
|
2865 |
msgid "See Your Conversion Rate to Improve Funnel"
|
2866 |
msgstr ""
|
2867 |
|
2868 |
-
#: languages/vue.php:
|
2869 |
msgid "See The Number of Transactions and Make Data-Driven Decisions"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
-
#: languages/vue.php:
|
2873 |
msgid "See The Total Revenue to Track Growth"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
-
#: languages/vue.php:
|
2877 |
msgid "See Average Order Value to Find Offer Opportunities"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: languages/vue.php:
|
2881 |
msgid "See Your Top Products to See Individual Performance"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
-
#: languages/vue.php:
|
2885 |
msgid "See your Top Conversion Sources and Focus on what's Working"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#: languages/vue.php:
|
2889 |
msgid "See The Time it Takes for Customers to Purchase"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
-
#: languages/vue.php:
|
2893 |
msgid "See How Many Sessions are Needed for a Purchase"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#: languages/vue.php:
|
2897 |
msgid "Affiliate Links"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
#. Translators: Add links to documentation.
|
2901 |
-
#: languages/vue.php:
|
2902 |
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."
|
2903 |
msgstr ""
|
2904 |
|
2905 |
-
#: languages/vue.php:
|
2906 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
2907 |
msgstr ""
|
2908 |
|
2909 |
-
#: languages/vue.php:
|
2910 |
msgid "Cross Domain Tracking"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
#. Translators: Add links to documentation.
|
2914 |
-
#: languages/vue.php:
|
2915 |
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."
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: languages/vue.php:
|
2919 |
msgid "Demographics"
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: languages/vue.php:
|
2923 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: languages/vue.php:
|
2927 |
msgid "Anonymize IP Addresses"
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: languages/vue.php:
|
2931 |
msgid "Link Attribution"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: languages/vue.php:
|
2935 |
msgid "Enable Enhanced Link Attribution"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: languages/vue.php:
|
2939 |
msgid "Enable Anchor Tracking"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: languages/vue.php:
|
2943 |
msgid "Enable allowAnchor"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: languages/vue.php:
|
2947 |
msgid "Enable allowLinker"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: languages/vue.php:
|
2951 |
msgid "Enable Tag Links in RSS"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: languages/vue.php:
|
2955 |
msgid "File Downloads"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: languages/vue.php:
|
2959 |
msgid "Extensions of Files to Track as Downloads"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: languages/vue.php:
|
2963 |
msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
|
2964 |
msgstr ""
|
2965 |
|
2966 |
#. Translators: Add links to documentation.
|
2967 |
-
#: languages/vue.php:
|
2968 |
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."
|
2969 |
msgstr ""
|
2970 |
|
2971 |
#. Translators: Add links to documentation.
|
2972 |
-
#: languages/vue.php:
|
2973 |
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."
|
2974 |
msgstr ""
|
2975 |
|
2976 |
#. Translators: Add links to documentation.
|
2977 |
-
#: languages/vue.php:
|
2978 |
msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: languages/vue.php:
|
2982 |
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."
|
2983 |
msgstr ""
|
2984 |
|
2985 |
#. Translators: Add links to documentation.
|
2986 |
-
#: languages/vue.php:
|
2987 |
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."
|
2988 |
msgstr ""
|
2989 |
|
2990 |
#. Translators: Add links to documentation.
|
2991 |
-
#: languages/vue.php:
|
2992 |
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."
|
2993 |
msgstr ""
|
2994 |
|
2995 |
#. Translators: Add links to documentation.
|
2996 |
-
#: languages/vue.php:
|
2997 |
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."
|
2998 |
msgstr ""
|
2999 |
|
3000 |
-
#: languages/vue.php:
|
3001 |
msgid "Add domain"
|
3002 |
msgstr ""
|
3003 |
|
3004 |
#. Translators: Domain name example.
|
3005 |
-
#: languages/vue.php:
|
3006 |
msgid "Domain (example: %s)"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
#. Translators: Current domain name that should not be used.
|
3010 |
-
#: languages/vue.php:
|
3011 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: languages/vue.php:
|
3015 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: languages/vue.php:
|
3019 |
msgid "No addons found."
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: languages/vue.php:
|
3023 |
msgid "Refresh Addons"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: languages/vue.php:
|
3027 |
-
#: languages/vue.php:
|
3028 |
msgid "ExactMetrics Addons"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
#. Translators: Adds a line break.
|
3032 |
-
#: languages/vue.php:
|
3033 |
msgid "Upgrade to Pro to unlock addons and other great features."
|
3034 |
msgstr ""
|
3035 |
|
3036 |
-
#: languages/vue.php:
|
3037 |
msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: languages/vue.php:
|
3041 |
msgid "Refreshing Addons"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
#. Translators: placeholders make text small.
|
3045 |
-
#: languages/vue.php:
|
3046 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
#. Translators: placeholders make text small.
|
3050 |
-
#: languages/vue.php:
|
3051 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
#. Translators: placeholders make text small.
|
3055 |
-
#: languages/vue.php:
|
3056 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
#. Translators: placeholders make text small.
|
3060 |
-
#: languages/vue.php:
|
3061 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
#. Translators: placeholders make text small.
|
3065 |
-
#: languages/vue.php:
|
3066 |
msgid "None %1$s- Manually update everything.%2$s"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
#. Translators: Adds a link to the general settings tab.
|
3070 |
-
#: languages/vue.php:
|
3071 |
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."
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: languages/vue.php:
|
3075 |
msgid "Permissions"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: languages/vue.php:
|
3079 |
msgid "Allow These User Roles to See Reports"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: languages/vue.php:
|
3083 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: languages/vue.php:
|
3087 |
msgid "Allow These User Roles to Save Settings"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: languages/vue.php:
|
3091 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: languages/vue.php:
|
3095 |
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."
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: languages/vue.php:
|
3099 |
msgid "Exclude These User Roles From Tracking"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: languages/vue.php:
|
3103 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: languages/vue.php:
|
3107 |
msgid "Custom code"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
#. Translators: Adds a link to the Google reference.
|
3111 |
-
#: languages/vue.php:
|
3112 |
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."
|
3113 |
msgstr ""
|
3114 |
|
3115 |
-
#: languages/vue.php:
|
3116 |
msgid "Automatic Updates"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
-
#: languages/vue.php:
|
3120 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
3121 |
msgstr ""
|
3122 |
|
3123 |
-
#: languages/vue.php:
|
3124 |
msgid "Hide Admin Bar Reports"
|
3125 |
msgstr ""
|
3126 |
|
3127 |
#. Translators: placeholders make text small.
|
3128 |
-
#: languages/vue.php:
|
3129 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
-
#: languages/vue.php:
|
3133 |
msgid "Unlock Form Tracking"
|
3134 |
msgstr ""
|
3135 |
|
3136 |
-
#: languages/vue.php:
|
3137 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
3138 |
msgstr ""
|
3139 |
|
3140 |
-
#: languages/vue.php:
|
3141 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
3142 |
msgstr ""
|
3143 |
|
3144 |
-
#: languages/vue.php:
|
3145 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
3146 |
msgstr ""
|
3147 |
|
3148 |
-
#: languages/vue.php:
|
3149 |
msgid "One-click Complete eCommerce tracking"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#: languages/vue.php:
|
3153 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#: languages/vue.php:
|
3157 |
msgid "Forms Tracking"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
-
#: languages/vue.php:
|
3161 |
msgid "One-click Form Events Tracking"
|
3162 |
msgstr ""
|
3163 |
|
3164 |
-
#: languages/vue.php:
|
3165 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
3166 |
msgstr ""
|
3167 |
|
3168 |
-
#: languages/vue.php:
|
3169 |
msgid "WordPress Admin Area Reports"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
-
#: languages/vue.php:
|
3173 |
msgid "Standard Reports"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: languages/vue.php:
|
3177 |
msgid "Overview Reports for the last 30 days."
|
3178 |
msgstr ""
|
3179 |
|
3180 |
-
#: languages/vue.php:
|
3181 |
msgid "Advanced Reports"
|
3182 |
msgstr ""
|
3183 |
|
3184 |
-
#: languages/vue.php:
|
3185 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
3186 |
msgstr ""
|
3187 |
|
3188 |
-
#: languages/vue.php:
|
3189 |
msgid "Dashboard Widget"
|
3190 |
msgstr ""
|
3191 |
|
3192 |
-
#: languages/vue.php:
|
3193 |
msgid "Basic Widget"
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#: languages/vue.php:
|
3197 |
msgid "Overview Report Synopsis"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#: languages/vue.php:
|
3201 |
msgid "Advanced Dashboard Widget"
|
3202 |
msgstr ""
|
3203 |
|
3204 |
-
#: languages/vue.php:
|
3205 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
3206 |
msgstr ""
|
3207 |
|
3208 |
-
#: languages/vue.php:
|
3209 |
msgid "Publisher Reports"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
-
#: languages/vue.php:
|
3213 |
msgid "Advanced Publisher Reports & Tracking"
|
3214 |
msgstr ""
|
3215 |
|
3216 |
-
#: languages/vue.php:
|
3217 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
3218 |
msgstr ""
|
3219 |
|
3220 |
-
#: languages/vue.php:
|
3221 |
msgid "Not Available"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: languages/vue.php:
|
3225 |
msgid "Complete Custom Dimensions Tracking"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: languages/vue.php:
|
3229 |
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"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
-
#: languages/vue.php:
|
3233 |
msgid "Limited Support"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
-
#: languages/vue.php:
|
3237 |
msgid "Priority Support"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
-
#: languages/vue.php:
|
3241 |
msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
|
3242 |
msgstr ""
|
3243 |
|
3244 |
-
#: languages/vue.php:
|
3245 |
msgid "Feature"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: languages/vue.php:
|
3249 |
msgid "Lite"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
-
#: languages/vue.php:
|
3253 |
msgid "Pro"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
-
#: languages/vue.php:
|
3257 |
msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
|
3258 |
msgstr ""
|
3259 |
|
3260 |
-
#: languages/vue.php:
|
3261 |
msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
|
3262 |
msgstr ""
|
3263 |
|
3264 |
-
#: languages/vue.php:
|
3265 |
msgid "Upgrade to Pro"
|
3266 |
msgstr ""
|
3267 |
|
3268 |
-
#: languages/vue.php:
|
3269 |
msgid "Universal Tracking"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#: languages/vue.php:
|
3273 |
msgid "Included"
|
3274 |
msgstr ""
|
3275 |
|
3276 |
-
#: languages/vue.php:
|
3277 |
msgid "Custom Google Analytics Link Tracking"
|
3278 |
msgstr ""
|
3279 |
|
3280 |
-
#: languages/vue.php:
|
3281 |
msgid "Standard Tracking"
|
3282 |
msgstr ""
|
3283 |
|
3284 |
-
#: languages/vue.php:
|
3285 |
msgid "Advanced Tracking"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
-
#: languages/vue.php:
|
3289 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
3290 |
msgstr ""
|
3291 |
|
3292 |
-
#: languages/vue.php:
|
3293 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
3294 |
msgstr ""
|
3295 |
|
3296 |
-
#: languages/vue.php:
|
3297 |
msgid "No-Code-Needed Tracking Features"
|
3298 |
msgstr ""
|
3299 |
|
3300 |
-
#: languages/vue.php:
|
3301 |
msgid "Basic Tracking Options"
|
3302 |
msgstr ""
|
3303 |
|
3304 |
-
#: languages/vue.php:
|
3305 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
-
#: languages/vue.php:
|
3309 |
msgid "Advanced Tracking Options"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
-
#: languages/vue.php:
|
3313 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
3314 |
msgstr ""
|
3315 |
|
3316 |
-
#: languages/vue.php:
|
3317 |
msgid "Sessions"
|
3318 |
msgstr ""
|
3319 |
|
3320 |
#. Translators: Line break.
|
3321 |
-
#: languages/vue.php:
|
3322 |
msgid "Unique %s Sessions"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: languages/vue.php:
|
3326 |
msgid "Pageviews"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
#. Translators: Line break.
|
3330 |
-
#: languages/vue.php:
|
3331 |
msgid "Unique %s Pageviews"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: languages/vue.php:
|
3335 |
msgid "A session is the browsing session of a single user to your site."
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: languages/vue.php:
|
3339 |
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."
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: languages/vue.php:
|
3343 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: languages/vue.php:
|
3347 |
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."
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: languages/vue.php:
|
3351 |
msgid "Avg. Session Duration"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: languages/vue.php:
|
3355 |
msgid "Bounce Rate"
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: languages/vue.php:
|
3359 |
msgid "ExactMetrics Recommends WPForms"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#: languages/vue.php:
|
3363 |
msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
|
3364 |
msgstr ""
|
3365 |
|
3366 |
-
#: languages/vue.php:
|
3367 |
msgid "Used on over 3,000,000 websites!"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
-
#: languages/vue.php:
|
3371 |
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!"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
-
#: languages/vue.php:
|
3375 |
msgid "Skip this Step"
|
3376 |
msgstr ""
|
3377 |
|
3378 |
-
#: languages/vue.php:
|
3379 |
msgid "Continue & Install WPForms"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
-
#: languages/vue.php:
|
3383 |
msgid "Installing..."
|
3384 |
msgstr ""
|
3385 |
|
3386 |
-
#: languages/vue.php:
|
3387 |
msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
|
3388 |
msgstr ""
|
3389 |
|
3390 |
-
#: languages/vue.php:
|
3391 |
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."
|
3392 |
msgstr ""
|
3393 |
|
3394 |
-
#: languages/vue.php:
|
3395 |
msgid "The ExactMetrics Team"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
-
#: languages/vue.php:
|
3399 |
msgid "Welcome to ExactMetrics!"
|
3400 |
msgstr ""
|
3401 |
|
3402 |
-
#: languages/vue.php:
|
3403 |
msgid "Let's get you set up."
|
3404 |
msgstr ""
|
3405 |
|
3406 |
-
#: languages/vue.php:
|
3407 |
msgid "Which category best describes your website?"
|
3408 |
msgstr ""
|
3409 |
|
3410 |
-
#: languages/vue.php:
|
3411 |
msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
|
3412 |
msgstr ""
|
3413 |
|
3414 |
-
#: languages/vue.php:
|
3415 |
msgid "Business Website"
|
3416 |
msgstr ""
|
3417 |
|
3418 |
#. Translators: Make text bold.
|
3419 |
-
#: languages/vue.php:
|
3420 |
msgid "Publisher %1$s(Blog)%2$s"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
#. Translators: Placeholders make the text green.
|
3424 |
-
#: languages/vue.php:
|
3425 |
msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: languages/vue.php:
|
3429 |
msgid "How to Connect to Google Analytics"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: languages/vue.php:
|
3433 |
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."
|
3434 |
msgstr ""
|
3435 |
|
3436 |
-
#: languages/vue.php:
|
3437 |
msgid "Guide and Checklist for Advanced Insights"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
-
#: languages/vue.php:
|
3441 |
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."
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: languages/vue.php:
|
3445 |
msgid "GDPR Guide"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
#: languages/vue.php:
|
3449 |
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. "
|
3450 |
msgstr ""
|
3451 |
|
3452 |
-
#: languages/vue.php:
|
3453 |
msgid "How to Install and Activate ExactMetrics Addons"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
-
#: languages/vue.php:
|
3457 |
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."
|
3458 |
msgstr ""
|
3459 |
|
3460 |
-
#: languages/vue.php:
|
3461 |
msgid "Enabling eCommerce Tracking and Reports"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
-
#: languages/vue.php:
|
3465 |
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."
|
3466 |
msgstr ""
|
3467 |
|
3468 |
-
#: languages/vue.php:
|
3469 |
msgid "Read Documentation"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
#. Translators: Makes the text bold.
|
3473 |
-
#: languages/vue.php:
|
3474 |
msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
|
3475 |
msgstr ""
|
3476 |
|
3477 |
#. Translators: Makes the text bold.
|
3478 |
-
#: languages/vue.php:
|
3479 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
#: languages/vue.php:
|
3483 |
msgid "Loading settings"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
-
#: languages/vue.php:
|
3487 |
msgid "Forms Report"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
-
#: languages/vue.php:
|
3491 |
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
-
#: languages/vue.php:
|
3495 |
msgid "See Your Top Converting Forms and Optimize"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
-
#: languages/vue.php:
|
3499 |
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
3500 |
msgstr ""
|
3501 |
|
3502 |
-
#: languages/vue.php:
|
3503 |
msgid "Real-Time Report"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
-
#: languages/vue.php:
|
3507 |
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."
|
3508 |
msgstr ""
|
3509 |
|
3510 |
-
#: languages/vue.php:
|
3511 |
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
-
#: languages/vue.php:
|
3515 |
msgid "See Your Top Pages Immediately After Making Changes"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: languages/vue.php:
|
3519 |
msgid "See Your Top Referral Sources and Adapt Faster"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
-
#: languages/vue.php:
|
3523 |
msgid "See Your Traffic Demographics"
|
3524 |
msgstr ""
|
3525 |
|
3526 |
-
#: languages/vue.php:
|
3527 |
msgid "Get Fresh Reports Data Every 60 Seconds"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: languages/vue.php:
|
3531 |
msgid "See Where Your Visitors are Connecting From (country & city)"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: languages/vue.php:
|
3535 |
msgid "Custom Dimensions Report"
|
3536 |
msgstr ""
|
3537 |
|
3538 |
-
#: languages/vue.php:
|
3539 |
msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
|
3540 |
msgstr ""
|
3541 |
|
3542 |
-
#: languages/vue.php:
|
3543 |
msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
|
3544 |
msgstr ""
|
3545 |
|
3546 |
-
#: languages/vue.php:
|
3547 |
msgid "Author tracking to see which author’s posts generate the most traffic"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: languages/vue.php:
|
3551 |
msgid "Post Type tracking to see which WordPress post types perform better"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: languages/vue.php:
|
3555 |
msgid "Category tracking to see which sections of your sites are the most popular"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: languages/vue.php:
|
3559 |
msgid "SEO score tracking to see which blog SEO scores are the most popular"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
-
#: languages/vue.php:
|
3563 |
msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#: languages/vue.php:
|
3567 |
msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#: languages/vue.php:
|
3571 |
msgid "Search Console Report"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: languages/vue.php:
|
3575 |
msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: languages/vue.php:
|
3579 |
msgid "See Your Top Google Search Terms and Optimize Content"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: languages/vue.php:
|
3583 |
msgid "See The Number of Clicks and Track Interests"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: languages/vue.php:
|
3587 |
msgid "See The Click-Through-Ratio and Improve SEO"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: languages/vue.php:
|
3591 |
msgid "See The Average Results Position and Focus on what works."
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: languages/vue.php:
|
3595 |
msgid "Ecommerce Report"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: languages/vue.php:
|
3599 |
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."
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: languages/vue.php:
|
3603 |
msgid "See Your Top Conversion Sources and Focus on what's Working"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#: languages/vue.php:
|
3607 |
msgid "File imported"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: languages/vue.php:
|
3611 |
msgid "Settings successfully updated!"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: languages/vue.php:
|
3615 |
msgid "Error importing settings"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: languages/vue.php:
|
3619 |
msgid "Please choose a .json file generated by a ExactMetrics settings export."
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#: languages/vue.php:
|
3623 |
msgid "Import/Export"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: languages/vue.php:
|
3627 |
msgid "Import"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: languages/vue.php:
|
3631 |
msgid "Import settings from another ExactMetrics website."
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#: languages/vue.php:
|
3635 |
msgid "Export"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#: languages/vue.php:
|
3639 |
msgid "Export settings to import into another ExactMetrics install."
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
#: languages/vue.php:
|
3643 |
msgid "Import Settings"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
-
#: languages/vue.php:
|
3647 |
msgid "Export Settings"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
-
#: languages/vue.php:
|
3651 |
msgid "Please choose a file to import"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
-
#: languages/vue.php:
|
3655 |
msgid "Use the filepicker below to select the settings export file from another site."
|
3656 |
msgstr ""
|
3657 |
|
3658 |
-
#: languages/vue.php:
|
3659 |
msgid "Use the button below to export a file with your ExactMetrics settings."
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: languages/vue.php:
|
3663 |
msgid "Choose file"
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: languages/vue.php:
|
3667 |
msgid "No file chosen"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: languages/vue.php:
|
3671 |
msgid "Uploading file..."
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#: languages/vue.php:
|
3675 |
msgid "Custom Campaign Parameters"
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#: languages/vue.php:
|
3679 |
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
3680 |
msgstr ""
|
3681 |
|
3682 |
-
#: languages/vue.php:
|
3683 |
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."
|
3684 |
msgstr ""
|
3685 |
|
3686 |
#. Translators: Marks the field as required.
|
3687 |
-
#: languages/vue.php:
|
3688 |
msgid "Website URL %s"
|
3689 |
msgstr ""
|
3690 |
|
3691 |
#. Translators: Display the current website url in italic.
|
3692 |
-
#: languages/vue.php:
|
3693 |
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
#. Translators: Marks the field as required.
|
3697 |
-
#: languages/vue.php:
|
3698 |
msgid "Campaign Source %s"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
#. Translators: Make the text italic.
|
3702 |
-
#: languages/vue.php:
|
3703 |
msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
#. Translators: Make the text italic.
|
3707 |
-
#: languages/vue.php:
|
3708 |
msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
#. Translators: Make the text italic.
|
3712 |
-
#: languages/vue.php:
|
3713 |
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#: languages/vue.php:
|
3717 |
msgid "Enter the paid keyword"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
-
#: languages/vue.php:
|
3721 |
msgid "Enter something to differentiate ads"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
-
#: languages/vue.php:
|
3725 |
msgid "Use Fragment"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
#. Translators: Make the text bold.
|
3729 |
-
#: languages/vue.php:
|
3730 |
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#: languages/vue.php:
|
3734 |
msgid "URL to use"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: languages/vue.php:
|
3738 |
msgid "(Updates automatically)"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#: languages/vue.php:
|
3742 |
msgid "Copy to Clipboard"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#: languages/vue.php:
|
3746 |
msgid "More Information & Examples"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#: languages/vue.php:
|
3750 |
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: languages/vue.php:
|
3754 |
msgid "Campaign Source"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#: languages/vue.php:
|
3758 |
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: languages/vue.php:
|
3762 |
msgid "Campaign Medium"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: languages/vue.php:
|
3766 |
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: languages/vue.php:
|
3770 |
msgid "Campaign Name"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: languages/vue.php:
|
3774 |
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#: languages/vue.php:
|
3778 |
msgid "Campaign Term"
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#: languages/vue.php:
|
3782 |
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: languages/vue.php:
|
3786 |
msgid "Campaign Content"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#: languages/vue.php:
|
3790 |
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
3791 |
msgstr ""
|
3792 |
|
3793 |
#. Translators: Example.
|
3794 |
-
#: languages/vue.php:
|
3795 |
msgid "Example: %s"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
#. Translators: Examples.
|
3799 |
-
#: languages/vue.php:
|
3800 |
msgid "Examples: %s"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
-
#: languages/vue.php:
|
3804 |
msgid "About Campaigns"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: languages/vue.php:
|
3808 |
msgid "About Custom Campaigns"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
-
#: languages/vue.php:
|
3812 |
msgid "Best Practices for Creating Custom Campaigns"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
-
#: languages/vue.php:
|
3816 |
msgid "About the Referral Traffic Report"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
-
#: languages/vue.php:
|
3820 |
msgid "About Traffic Source Dimensions"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
-
#: languages/vue.php:
|
3824 |
msgid "AdWords Auto-Tagging"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
-
#: languages/vue.php:
|
3828 |
msgid "Additional Information"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: languages/vue.php:
|
3832 |
msgid "Unlock the Publisher Report and Focus on the Content That Matters"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
-
#: languages/vue.php:
|
3836 |
msgid "See Your Top Landing Pages to Improve Engagement"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
-
#: languages/vue.php:
|
3840 |
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
-
#: languages/vue.php:
|
3844 |
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
3845 |
msgstr ""
|
3846 |
|
3847 |
-
#: languages/vue.php:
|
3848 |
msgid "See Your Top Affiliate Links and Focus on what’s working"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
-
#: languages/vue.php:
|
3852 |
msgid "See Your Top Downloads and Improve Conversions"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
-
#: languages/vue.php:
|
3856 |
msgid "See Audience Demographic Report (Age / Gender / Interests)"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
3860 |
-
#: languages/vue.php:
|
3861 |
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
3862 |
msgstr ""
|
3863 |
|
3864 |
-
#: languages/vue.php:
|
3865 |
msgid "Recommended Addons"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
#. Translators: Add a link to upgrade and make the text green.
|
3869 |
-
#: languages/vue.php:
|
3870 |
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!"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#: languages/vue.php:
|
3874 |
msgid "Upgrade to PRO Now"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
-
#: languages/vue.php:
|
3878 |
msgid "See who’s viewing and submitting your forms, so you can increase your converion rate. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#: languages/vue.php:
|
3882 |
msgid "See All Your Important Store Metrics in One Place. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#: languages/vue.php:
|
3886 |
msgid "... and more:"
|
3887 |
msgstr ""
|
3888 |
|
3889 |
-
#: languages/vue.php:
|
3890 |
msgid "Dimensions- Track authors, categories, trags, searches, users and more."
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#: languages/vue.php:
|
3894 |
msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#: languages/vue.php:
|
3898 |
msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
|
3899 |
msgstr ""
|
3900 |
|
3901 |
-
#: languages/vue.php:
|
3902 |
msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#: languages/vue.php:
|
3906 |
msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: languages/vue.php:
|
3910 |
msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: languages/vue.php:
|
3914 |
msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#: languages/vue.php:
|
3918 |
msgid "Ads- See who’s clicking on your Google Adsense banner ads."
|
3919 |
msgstr ""
|
3920 |
|
3921 |
-
#: languages/vue.php:
|
3922 |
msgid "Search Addons"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
#. Translators: Error status and error text.
|
3926 |
-
#: languages/vue.php:
|
3927 |
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
#. Translators: Error status and error text.
|
3931 |
-
#: languages/vue.php:
|
3932 |
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#: languages/vue.php:
|
3936 |
msgid "You appear to be offline."
|
3937 |
msgstr ""
|
3938 |
|
3939 |
#. Translators: Error status and error text.
|
3940 |
-
#: languages/vue.php:
|
3941 |
msgid "Can't load license details. Error: %1$s, %2$s"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
-
#: languages/vue.php:
|
3945 |
msgid "Error loading license details"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
#. Translators: Error status and error text.
|
3949 |
-
#: languages/vue.php:
|
3950 |
msgid "Can't verify the license. Error: %1$s, %2$s"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
#. Translators: Error status and error text.
|
3954 |
-
#: languages/vue.php:
|
3955 |
msgid "Can't validate the license. Error: %1$s, %2$s"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#: languages/vue.php:
|
3959 |
msgid "Last 30 Days Analytics for "
|
3960 |
msgstr ""
|
3961 |
|
3962 |
-
#: languages/vue.php:
|
3963 |
msgid "Your Website"
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: languages/vue.php:
|
3967 |
msgid "Avg. Duration"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: languages/vue.php:
|
3971 |
msgid "More data is available"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: languages/vue.php:
|
3975 |
msgid "Want to see page-specific stats?"
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: languages/vue.php:
|
3979 |
msgid "You appear to be offline. WPForms not installed."
|
3980 |
msgstr ""
|
3981 |
|
3982 |
#. Translators: Error status and error text.
|
3983 |
-
#: languages/vue.php:
|
3984 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
-
#: languages/vue.php:
|
3988 |
msgid "You appear to be offline. Addon not activated."
|
3989 |
msgstr ""
|
3990 |
|
3991 |
#. Translators: Error status and error text.
|
3992 |
-
#: languages/vue.php:
|
3993 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
-
#: languages/vue.php:
|
3997 |
msgid "You appear to be offline. Addon not deactivated."
|
3998 |
msgstr ""
|
3999 |
|
4000 |
#. Translators: Error status and error text.
|
4001 |
-
#: languages/vue.php:
|
4002 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: languages/vue.php:
|
4006 |
msgid "You appear to be offline. Plugin not installed."
|
4007 |
msgstr ""
|
4008 |
|
4009 |
#. Translators: Error status and error text.
|
4010 |
-
#: languages/vue.php:
|
4011 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: languages/vue.php:
|
4015 |
msgid "You appear to be offline. Addon not installed."
|
4016 |
msgstr ""
|
4017 |
|
4018 |
#. Translators: Error status and error text.
|
4019 |
-
#: languages/vue.php:
|
4020 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
-
#: languages/vue.php:
|
4024 |
msgid "Installing Addon"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
-
#: languages/vue.php:
|
4028 |
msgid "Activating Addon"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
-
#: languages/vue.php:
|
4032 |
msgid "Addon Activated"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: languages/vue.php:
|
4036 |
msgid "Loading report data"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: languages/vue.php:
|
4040 |
msgid "Please activate manually"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
#. Translators: Adds the error status and status text.
|
4044 |
-
#: languages/vue.php:
|
4045 |
msgid "Error: %1$s, %2$s"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: languages/vue.php:
|
4049 |
msgid "Error Activating Addon"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
-
#: languages/vue.php:
|
4053 |
msgid "Dismiss"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
-
#: languages/vue.php:
|
4057 |
msgid "Redirecting"
|
4058 |
msgstr ""
|
4059 |
|
4060 |
-
#: languages/vue.php:
|
4061 |
msgid "Please wait"
|
4062 |
msgstr ""
|
4063 |
|
4064 |
-
#: languages/vue.php:
|
4065 |
msgid "activate"
|
4066 |
msgstr ""
|
4067 |
|
4068 |
-
#: languages/vue.php:
|
4069 |
msgid "install"
|
4070 |
msgstr ""
|
4071 |
|
4072 |
-
#: languages/vue.php:
|
4073 |
msgid "Visit addons page"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
-
#: languages/vue.php:
|
4077 |
msgid "Report Unavailable"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
#. Translators: Install/Activate the addon.
|
4081 |
-
#: languages/vue.php:
|
4082 |
msgid "%s Addon"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
-
#: languages/vue.php:
|
4086 |
msgid "Go Back To Reports"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
-
#: languages/vue.php:
|
4090 |
msgid "Enable Enhanced eCommerce"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#: languages/vue.php:
|
4094 |
msgid "Help Us Improve"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
-
#: languages/vue.php:
|
4098 |
msgid "Help us better understand our users and their website needs."
|
4099 |
msgstr ""
|
4100 |
|
4101 |
#. Translators: Adds a link to the documentation.
|
4102 |
-
#: languages/vue.php:
|
4103 |
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"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: languages/vue.php:
|
4107 |
msgid "License Key"
|
4108 |
msgstr ""
|
4109 |
|
4110 |
#. Translators: Makes text bold and adds smiley.
|
4111 |
-
#: languages/vue.php:
|
4112 |
msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
#. Translators: Makes text green.
|
4116 |
-
#: languages/vue.php:
|
4117 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: languages/vue.php:
|
4121 |
msgid "Unlock All Features and Upgrade to Pro"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: languages/vue.php:
|
4125 |
-
#: languages/vue.php:
|
4126 |
msgid "Connect ExactMetrics"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#: languages/vue.php:
|
4130 |
msgid "Website profile"
|
4131 |
msgstr ""
|
4132 |
|
4133 |
-
#: languages/vue.php:
|
4134 |
msgid "Active profile"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
-
#: languages/vue.php:
|
4138 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
4139 |
msgstr ""
|
4140 |
|
4141 |
-
#: languages/vue.php:
|
4142 |
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
4143 |
msgstr ""
|
4144 |
|
4145 |
-
#: languages/vue.php:
|
4146 |
msgid "Skip and Keep Connection"
|
4147 |
msgstr ""
|
4148 |
|
4149 |
-
#: languages/vue.php:
|
4150 |
msgid "Authenticating"
|
4151 |
msgstr ""
|
4152 |
|
4153 |
-
#: languages/vue.php:
|
4154 |
msgid "New"
|
4155 |
msgstr ""
|
4156 |
|
4157 |
-
#: languages/vue.php:
|
4158 |
msgid "Returning"
|
4159 |
msgstr ""
|
4160 |
|
4161 |
-
#: languages/vue.php:
|
4162 |
msgid "Desktop"
|
4163 |
msgstr ""
|
4164 |
|
4165 |
-
#: languages/vue.php:
|
4166 |
msgid "Tablet"
|
4167 |
msgstr ""
|
4168 |
|
4169 |
-
#: languages/vue.php:
|
4170 |
msgid "Mobile"
|
4171 |
msgstr ""
|
4172 |
|
4173 |
-
#: languages/vue.php:
|
4174 |
msgid "Top 10 Countries"
|
4175 |
msgstr ""
|
4176 |
|
4177 |
-
#: languages/vue.php:
|
4178 |
msgid "View Countries Report"
|
4179 |
msgstr ""
|
4180 |
|
4181 |
-
#: languages/vue.php:
|
4182 |
msgid "Top 10 Referrals"
|
4183 |
msgstr ""
|
4184 |
|
4185 |
-
#: languages/vue.php:
|
4186 |
msgid "View All Referral Sources"
|
4187 |
msgstr ""
|
4188 |
|
4189 |
-
#: languages/vue.php:
|
4190 |
msgid "View Full Posts/Pages Report"
|
4191 |
msgstr ""
|
4192 |
|
4193 |
-
#: languages/vue.php:
|
4194 |
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."
|
4195 |
msgstr ""
|
4196 |
|
4197 |
-
#: languages/vue.php:
|
4198 |
msgid "This list shows the top countries your website visitors are from."
|
4199 |
msgstr ""
|
4200 |
|
4201 |
-
#: languages/vue.php:
|
4202 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
4203 |
msgstr ""
|
4204 |
|
4205 |
-
#: languages/vue.php:
|
4206 |
msgid "No options available"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
-
#: languages/vue.php:
|
4210 |
msgid "Network Active"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
-
#: languages/vue.php:
|
4214 |
msgid "Active"
|
4215 |
msgstr ""
|
4216 |
|
4217 |
-
#: languages/vue.php:
|
4218 |
msgid "Inactive"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
#. Translators: Placeholder for the addon status (installed, active, etc).
|
4222 |
-
#: languages/vue.php:
|
4223 |
msgid "Status: %s"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: languages/vue.php:
|
4227 |
msgid "Not Installed"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
#. Translators: The name of the field that is throwing a validation error.
|
4231 |
-
#: languages/vue.php:
|
4232 |
msgid "%s can't be empty."
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#: languages/vue.php:
|
4236 |
msgid "Duplicate values are not allowed."
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#: languages/vue.php:
|
4240 |
msgid "Add Another Link Path"
|
4241 |
msgstr ""
|
4242 |
|
4243 |
-
#: languages/vue.php:
|
4244 |
msgid "Remove row"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
-
#: languages/vue.php:
|
4248 |
msgid "Proceed"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
-
#: languages/vue.php:
|
4252 |
msgid "Connection Information"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
-
#: languages/vue.php:
|
4256 |
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."
|
4257 |
msgstr ""
|
4258 |
|
4259 |
-
#: languages/vue.php:
|
4260 |
msgid "Hostname"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
-
#: languages/vue.php:
|
4264 |
msgid "FTP Username"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
-
#: languages/vue.php:
|
4268 |
msgid "FTP Password"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
-
#: languages/vue.php:
|
4272 |
msgid "This password will not be stored on the server."
|
4273 |
msgstr ""
|
4274 |
|
4275 |
-
#: languages/vue.php:
|
4276 |
msgid "Connection Type"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
-
#: languages/vue.php:
|
4280 |
msgid "Cancel"
|
4281 |
msgstr ""
|
4282 |
|
4283 |
-
#: languages/vue.php:
|
4284 |
msgid "Reset to default"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
-
#: languages/vue.php:
|
4288 |
msgid "The value entered does not match the required format"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
-
#: languages/vue.php:
|
4292 |
msgid "Google AMP"
|
4293 |
msgstr ""
|
4294 |
|
4295 |
-
#: languages/vue.php:
|
4296 |
msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
|
4297 |
msgstr ""
|
4298 |
|
4299 |
-
#: languages/vue.php:
|
4300 |
msgid "Facebook Instant Articles"
|
4301 |
msgstr ""
|
4302 |
|
4303 |
-
#: languages/vue.php:
|
4304 |
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
|
4305 |
msgstr ""
|
4306 |
|
4307 |
-
#: languages/vue.php:
|
4308 |
msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
|
4309 |
msgstr ""
|
4310 |
|
4311 |
-
#: languages/vue.php:
|
4312 |
msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
|
4313 |
msgstr ""
|
4314 |
|
4315 |
-
#: languages/vue.php:
|
4316 |
msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
|
4317 |
msgstr ""
|
4318 |
|
4319 |
-
#: languages/vue.php:
|
4320 |
msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
|
4321 |
msgstr ""
|
4322 |
|
4323 |
-
#: languages/vue.php:
|
4324 |
msgid "Use Google Optimize to easily perform A/B split tests on your site."
|
4325 |
msgstr ""
|
4326 |
|
4327 |
-
#: languages/vue.php:
|
4328 |
msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
|
4329 |
msgstr ""
|
4330 |
|
4331 |
-
#: languages/vue.php:
|
4332 |
msgid "Unlock search console report to see your top performing keywords in Google."
|
4333 |
msgstr ""
|
4334 |
|
4335 |
-
#: languages/vue.php:
|
4336 |
msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
|
4337 |
msgstr ""
|
4338 |
|
4339 |
-
#: languages/vue.php:
|
4340 |
msgid "Publishers Report shows your top performing pages, audience demographics, and more."
|
4341 |
msgstr ""
|
4342 |
|
4343 |
-
#: languages/vue.php:
|
4344 |
msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
|
4345 |
msgstr ""
|
4346 |
|
4347 |
-
#: languages/vue.php:
|
4348 |
msgid "Upgrade to Pro »"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: languages/vue.php:
|
4352 |
msgid "Pro Tip:"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
#. Translators: Number of days.
|
4356 |
-
#: languages/vue.php:
|
4357 |
msgid "vs. Previous Day"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
-
#: languages/vue.php:
|
4361 |
msgid "No change"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
-
#: languages/vue.php:
|
4365 |
msgid "Ads Tracking"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
-
#: languages/vue.php:
|
4369 |
msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
4370 |
msgstr ""
|
4371 |
|
4372 |
-
#: languages/vue.php:
|
4373 |
msgid ""
|
4374 |
"The EU Compliance addon allows you to improve compliance with GDPR\n"
|
4375 |
" and other privacy regulations."
|
4376 |
msgstr ""
|
4377 |
|
4378 |
-
#: languages/vue.php:
|
4379 |
msgid "EU Compliance"
|
4380 |
msgstr ""
|
4381 |
|
4382 |
#. Translators: Error status and error text.
|
4383 |
-
#: languages/vue.php:
|
4384 |
msgid "Can't load errors. Error: %1$s, %2$s"
|
4385 |
msgstr ""
|
4386 |
|
4387 |
#. Translators: Error status and error text.
|
4388 |
-
#: languages/vue.php:
|
4389 |
msgid "Can't load settings. Error: %1$s, %2$s"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
#. Translators: Error status and error text.
|
4393 |
-
#: languages/vue.php:
|
4394 |
msgid "Can't save settings. Error: %1$s, %2$s"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
#: languages/vue.php:
|
4398 |
msgid "Network error encountered. Settings not saved."
|
4399 |
msgstr ""
|
4400 |
|
4401 |
-
#: languages/vue.php:
|
4402 |
msgid "Scroll Tracking"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
-
#: languages/vue.php:
|
4406 |
msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
|
4407 |
msgstr ""
|
4408 |
|
4409 |
-
#: languages/vue.php:
|
4410 |
msgid "Performance"
|
4411 |
msgstr ""
|
4412 |
|
4413 |
-
#: languages/vue.php:
|
4414 |
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."
|
4415 |
msgstr ""
|
4416 |
|
4417 |
-
#: languages/vue.php:
|
4418 |
msgid "Miscellaneous"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
-
#: languages/vue.php:
|
4422 |
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
4423 |
msgstr ""
|
4424 |
|
4425 |
-
#: languages/vue.php:
|
4426 |
msgid "Hide Announcements"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
-
#: languages/vue.php:
|
4430 |
msgid "Usage Tracking"
|
4431 |
msgstr ""
|
4432 |
|
4433 |
-
#: languages/vue.php:
|
4434 |
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."
|
4435 |
msgstr ""
|
4436 |
|
4437 |
-
#: languages/vue.php:
|
4438 |
msgid "Allow usage tracking"
|
4439 |
msgstr ""
|
4440 |
|
4441 |
#. Translators: Adds a link to the documentation.
|
4442 |
-
#: languages/vue.php:
|
4443 |
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
4444 |
msgstr ""
|
4445 |
|
4446 |
-
#: languages/vue.php:
|
4447 |
msgid "Hide dashboard widget"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
-
#: languages/vue.php:
|
4451 |
msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
|
4452 |
msgstr ""
|
4453 |
|
4454 |
-
#: languages/vue.php:
|
4455 |
msgid "Yes, hide it!"
|
4456 |
msgstr ""
|
4457 |
|
4458 |
-
#: languages/vue.php:
|
4459 |
msgid "No, cancel!"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
-
#: languages/vue.php:
|
4463 |
msgid "ExactMetrics Widget Hidden"
|
4464 |
msgstr ""
|
4465 |
|
4466 |
-
#: languages/vue.php:
|
4467 |
msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
|
4468 |
msgstr ""
|
4469 |
|
4470 |
#. Translators: Adds link to the account area to retreive license key.
|
4471 |
-
#: languages/vue.php:
|
4472 |
msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
|
4473 |
msgstr ""
|
4474 |
|
4475 |
-
#: languages/vue.php:
|
4476 |
msgid "Paste your license key here"
|
4477 |
msgstr ""
|
4478 |
|
4479 |
-
#: languages/vue.php:
|
4480 |
msgid "Google Authentication"
|
4481 |
msgstr ""
|
4482 |
|
4483 |
-
#: languages/vue.php:
|
4484 |
msgid "Verify"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
-
#: languages/vue.php:
|
4488 |
msgid "Setup Wizard"
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#: languages/vue.php:
|
4492 |
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#: languages/vue.php:
|
4496 |
msgid "Relaunch Setup Wizard"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#: languages/vue.php:
|
4500 |
msgid "Connect ExactMetrics to Start Tracking Your Data"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#: languages/vue.php:
|
4504 |
msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
-
#. Translators:
|
4508 |
-
#: languages/vue.php:
|
4509 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
4510 |
msgstr ""
|
4511 |
|
4512 |
-
#: languages/vue.php:
|
4513 |
msgid "Receive 50% off automatically applied at the checkout!"
|
4514 |
msgstr ""
|
4515 |
|
4516 |
-
#: languages/vue.php:
|
4517 |
msgid "See all features"
|
4518 |
msgstr ""
|
4519 |
|
4520 |
-
#: languages/vue.php:
|
4521 |
msgid "Complete Upgrade"
|
4522 |
msgstr ""
|
4523 |
|
4524 |
-
#: languages/vue.php:
|
4525 |
msgid "Upgrade to Pro Version!"
|
4526 |
msgstr ""
|
4527 |
|
4528 |
#. Translators: Make text bold.
|
4529 |
-
#: languages/vue.php:
|
4530 |
msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
|
4531 |
msgstr ""
|
4532 |
|
4533 |
-
#: languages/vue.php:
|
4534 |
msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
|
4535 |
msgstr ""
|
4536 |
|
4537 |
-
#: languages/vue.php:
|
4538 |
msgid "Activating..."
|
4539 |
msgstr ""
|
4540 |
|
4541 |
-
#: languages/vue.php:
|
4542 |
msgid "Deactivating..."
|
4543 |
msgstr ""
|
4544 |
|
4545 |
-
#: languages/vue.php:
|
4546 |
msgid "Deactivate"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
-
#: languages/vue.php:
|
4550 |
msgid "Upgrade"
|
4551 |
msgstr ""
|
4552 |
|
4553 |
#. Translators: Make text green.
|
4554 |
-
#: languages/vue.php:
|
4555 |
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
-
#: languages/vue.php:
|
4559 |
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!"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
-
#: languages/vue.php:
|
4563 |
msgid "To unlock more features consider upgrading to PRO."
|
4564 |
msgstr ""
|
4565 |
|
4566 |
-
#: languages/vue.php:
|
4567 |
msgid "Upgrade to"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
-
#: languages/vue.php:
|
4571 |
msgid "Last 30 days"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
#. Translators: Add link to retrieve license key from account.
|
4575 |
-
#: languages/vue.php:
|
4576 |
msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
4577 |
msgstr ""
|
4578 |
|
4579 |
#. Translators: Error status and error text.
|
4580 |
-
#: languages/vue.php:
|
4581 |
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: languages/vue.php:
|
4585 |
msgid "You appear to be offline. Settings not saved."
|
4586 |
msgstr ""
|
4587 |
|
4588 |
#. Translators: Error status and error text.
|
4589 |
-
#: languages/vue.php:
|
4590 |
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
#. Translators: Error status and error text.
|
4594 |
-
#: languages/vue.php:
|
4595 |
msgid "Can't authenticate. Error: %1$s, %2$s"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
#. Translators: Error status and error text.
|
4599 |
-
#: languages/vue.php:
|
4600 |
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
#. Translators: Error status and error text.
|
4604 |
-
#: languages/vue.php:
|
4605 |
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
-
#: languages/vue.php:
|
4609 |
msgid "Show"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
#. Translators: The number of results.
|
4613 |
-
#: languages/vue.php:
|
4614 |
msgid "%s results"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
-
#: languages/vue.php:
|
4618 |
msgid "Verifying Credentials"
|
4619 |
msgstr ""
|
4620 |
|
4621 |
-
#: languages/vue.php:
|
4622 |
msgid "Your site is connected to ExactMetrics!"
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: languages/vue.php:
|
4626 |
msgid "Deauthenticating"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
-
#: languages/vue.php:
|
4630 |
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."
|
4631 |
msgstr ""
|
4632 |
|
4633 |
-
#: languages/vue.php:
|
4634 |
msgid "Verify Credentials"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
-
#: languages/vue.php:
|
4638 |
msgid "Website Profile"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
-
#: languages/vue.php:
|
4642 |
msgid "Active Profile"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
-
#: languages/vue.php:
|
4646 |
msgid "Force Deauthenticate"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
-
#: languages/vue.php:
|
4650 |
msgid "Disconnect ExactMetrics"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
#. Translators: Make text bold.
|
4654 |
-
#: languages/vue.php:
|
4655 |
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
-
#: languages/vue.php:
|
4659 |
msgid "On the next step you will need to re-authenticate with Google Analytics"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
-
#: languages/vue.php:
|
4663 |
msgid "On the next step you will need to re-authenticate with Google Analytics, please see our post to learn why (don't worry"
|
4664 |
msgstr ""
|
4665 |
|
4666 |
-
#: languages/vue.php:
|
4667 |
msgid "On the next step you will need to re-authenticate with Google Analytics, please see our post to learn why (don't worry your site will continue tracking until you do this)."
|
4668 |
msgstr ""
|
4669 |
|
4670 |
-
#: languages/vue.php:
|
4671 |
msgid "On the next step you will need to re-authenticate with Google Analytics, please see %1$sour post%2$s to learn why (don't worry your site will continue tracking until you do this)."
|
4672 |
msgstr ""
|
4673 |
|
4674 |
-
#: languages/vue.php:
|
4675 |
msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
|
4676 |
msgstr ""
|
4677 |
|
4678 |
-
#: languages/vue.php:
|
4679 |
msgid "See All Your Important Store Metrics in One Place."
|
4680 |
msgstr ""
|
4681 |
|
4682 |
-
#: languages/vue.php:
|
4683 |
msgid "On the next step, you will be asked to re-authenticate with Google Analytics. Please see our detailed post to learn why we need your help %1$shere%2$s. 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."
|
4684 |
msgstr ""
|
4685 |
|
4686 |
-
#: languages/vue.php:
|
4687 |
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."
|
4688 |
msgstr ""
|
4689 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4690 |
#: exactmetrics.php:228
|
4691 |
#: exactmetrics.php:242
|
4692 |
#: googleanalytics.php:254
|
2 |
# This file is distributed under the same license as the ExactMetrics Pro plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: ExactMetrics Pro 6.0.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2020-02-25T11:32:20+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"
|
36 |
#: lite/includes/admin/wp-site-health.php:343
|
37 |
#: lite/includes/admin/wp-site-health.php:368
|
38 |
#: lite/includes/admin/wp-site-health.php:407
|
39 |
+
#: lite/includes/admin/dashboard-widget.php:97
|
40 |
#: includes/admin/admin.php:31
|
41 |
#: includes/admin/admin.php:34
|
42 |
#: includes/admin/admin.php:42
|
152 |
#: lite/includes/admin/wp-site-health.php:298
|
153 |
#: lite/includes/admin/wp-site-health.php:324
|
154 |
#: lite/includes/admin/wp-site-health.php:351
|
155 |
+
#: languages/vue.php:1689
|
156 |
msgid "View Addons"
|
157 |
msgstr ""
|
158 |
|
247 |
msgid "Pro version installed but needs to be activated from the Plugins page inside your WordPress admin."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: lite/includes/admin/dashboard-widget.php:136
|
251 |
msgid "Website Analytics is not Setup"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: lite/includes/admin/dashboard-widget.php:138
|
255 |
msgid "To see your website stats, please connect ExactMetrics to Google Analytics."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: lite/includes/admin/dashboard-widget.php:139
|
259 |
msgid "Setup Website Analytics"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: lite/includes/admin/dashboard-widget.php:141
|
263 |
msgid "To see your website stats, please ask your webmaster to connect ExactMetrics to Google Analytics."
|
264 |
msgstr ""
|
265 |
|
301 |
msgstr ""
|
302 |
|
303 |
#: lite/includes/admin/reports/report-queries.php:22
|
304 |
+
#: languages/vue.php:221
|
305 |
msgid "Search Console"
|
306 |
msgstr ""
|
307 |
|
308 |
#: lite/includes/admin/reports/report-ecommerce.php:22
|
309 |
+
#: languages/vue.php:345
|
310 |
msgid "eCommerce"
|
311 |
msgstr ""
|
312 |
|
319 |
msgstr ""
|
320 |
|
321 |
#: lite/includes/admin/reports/report-publisher.php:22
|
322 |
+
#: languages/vue.php:382
|
323 |
msgid "Publishers"
|
324 |
msgstr ""
|
325 |
|
326 |
#: lite/includes/admin/reports/report-dimensions.php:22
|
327 |
+
#: languages/vue.php:517
|
328 |
msgid "Dimensions"
|
329 |
msgstr ""
|
330 |
|
331 |
#: lite/includes/admin/reports/report-forms.php:22
|
332 |
+
#: languages/vue.php:389
|
333 |
msgid "Forms"
|
334 |
msgstr ""
|
335 |
|
362 |
msgid "because you are not being tracked."
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: includes/admin/review.php:118
|
366 |
msgid "Are you enjoying ExactMetrics?"
|
367 |
msgstr ""
|
368 |
|
369 |
+
#: includes/admin/review.php:120
|
370 |
msgid "Yes"
|
371 |
msgstr ""
|
372 |
|
373 |
+
#: includes/admin/review.php:121
|
374 |
msgid "Not Really"
|
375 |
msgstr ""
|
376 |
|
377 |
+
#: includes/admin/review.php:125
|
378 |
msgid "We're sorry to hear you aren't enjoying ExactMetrics. We would love a chance to improve. Could you take a minute and let us know what we can do better?"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: includes/admin/review.php:127
|
382 |
msgid "Give Feedback"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: includes/admin/review.php:128
|
386 |
msgid "No thanks"
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: includes/admin/review.php:132
|
390 |
msgid "That’s awesome! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
391 |
msgstr ""
|
392 |
|
393 |
+
#: includes/admin/review.php:133
|
394 |
msgid "~ Syed Balkhi<br>Co-Founder of ExactMetrics"
|
395 |
msgstr ""
|
396 |
|
397 |
+
#: includes/admin/review.php:135
|
398 |
msgid "Ok, you deserve it"
|
399 |
msgstr ""
|
400 |
|
401 |
+
#: includes/admin/review.php:136
|
402 |
msgid "Nope, maybe later"
|
403 |
msgstr ""
|
404 |
|
405 |
+
#: includes/admin/review.php:137
|
406 |
msgid "I already did"
|
407 |
msgstr ""
|
408 |
|
566 |
msgstr ""
|
567 |
|
568 |
#. Translators: Placeholders are for links to fix the issue.
|
569 |
+
#: includes/admin/common.php:752
|
570 |
msgid "ExactMetrics has detected that it's files are being blocked. This is usually caused by a adblock browser plugin (particularly uBlock Origin), or a conflicting WordPress theme or plugin. This issue only affects the admin side of ExactMetrics. To solve this, ensure ExactMetrics is whitelisted for your website URL in any adblock browser plugin you use. For step by step directions on how to do this, %1$sclick here%2$s. If this doesn't solve the issue (rare), send us a ticket %3$shere%2$s and we'll be happy to help diagnose the issue."
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: includes/admin/common.php:872
|
574 |
msgid "Your 2019 Analytics Report"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: includes/admin/common.php:878
|
578 |
msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: includes/admin/common.php:880
|
582 |
msgid "View 2019 Year in Review report!"
|
583 |
msgstr ""
|
584 |
|
600 |
|
601 |
#: includes/admin/admin.php:39
|
602 |
#: includes/admin/admin.php:95
|
603 |
+
#: languages/vue.php:970
|
604 |
msgid "Reports"
|
605 |
msgstr ""
|
606 |
|
629 |
|
630 |
#: includes/admin/admin.php:60
|
631 |
#: includes/admin/admin.php:103
|
632 |
+
#: languages/vue.php:321
|
633 |
msgid "About Us"
|
634 |
msgstr ""
|
635 |
|
657 |
|
658 |
#: includes/admin/admin.php:175
|
659 |
#: includes/admin/admin.php:178
|
660 |
+
#: languages/vue.php:1061
|
661 |
msgid "Support"
|
662 |
msgstr ""
|
663 |
|
667 |
msgstr ""
|
668 |
|
669 |
#: includes/admin/admin.php:277
|
670 |
+
#: languages/vue.php:536
|
671 |
msgid "Please Setup Website Analytics to See Audience Insights"
|
672 |
msgstr ""
|
673 |
|
674 |
#: includes/admin/admin.php:278
|
675 |
+
#: languages/vue.php:542
|
676 |
msgid "Connect ExactMetrics and Setup Website Analytics"
|
677 |
msgstr ""
|
678 |
|
679 |
#: includes/admin/admin.php:280
|
680 |
+
#: languages/vue.php:287
|
681 |
msgid "Learn More"
|
682 |
msgstr ""
|
683 |
|
684 |
#: includes/admin/admin.php:282
|
685 |
+
#: languages/vue.php:539
|
686 |
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."
|
687 |
msgstr ""
|
688 |
|
693 |
|
694 |
#. Translators: Adds a link to the license renewal.
|
695 |
#: includes/admin/admin.php:303
|
696 |
+
#: languages/vue.php:496
|
697 |
msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
|
698 |
msgstr ""
|
699 |
|
700 |
#: includes/admin/admin.php:305
|
701 |
+
#: languages/vue.php:499
|
702 |
msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
|
703 |
msgstr ""
|
704 |
|
705 |
#: includes/admin/admin.php:307
|
706 |
+
#: languages/vue.php:502
|
707 |
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."
|
708 |
msgstr ""
|
709 |
|
731 |
msgstr ""
|
732 |
|
733 |
#. Translators: Placeholders add links to the settings panel.
|
734 |
+
#: includes/admin/admin.php:395
|
735 |
msgid "Important: You are currently using manual UA code output. We highly recommend %1$sauthenticating with ExactMetrics%2$s so that you can access our new reporting area and take advantage of new ExactMetrics features."
|
736 |
msgstr ""
|
737 |
|
738 |
+
#. Translators: Placeholders add links to the settings panel.
|
739 |
+
#: includes/admin/admin.php:400
|
740 |
+
msgid "Click %1$shere%2$s to reauthenticate to be able to access reports. For more information why this is required, see our %3$sblog post%4$s."
|
741 |
+
msgstr ""
|
742 |
+
|
743 |
#. Translators: Placeholders add a link to the ExactMetrics website.
|
744 |
+
#: includes/admin/admin.php:451
|
745 |
+
#: includes/admin/admin.php:482
|
746 |
msgid "%1$sGet ExactMetrics Pro%2$s"
|
747 |
msgstr ""
|
748 |
|
749 |
#. Translators: Adds a link to the settings panel.
|
750 |
+
#: includes/admin/admin.php:496
|
751 |
msgid "Warning: ExactMetrics found cross-domain settings in the custom code field and converted them to the new settings structure. %1$sPlease click here to review and remove the code no longer needed.%2$s"
|
752 |
msgstr ""
|
753 |
|
789 |
msgstr ""
|
790 |
|
791 |
#: includes/admin/reports/overview.php:34
|
792 |
+
#: languages/vue.php:377
|
793 |
msgid "Overview"
|
794 |
msgstr ""
|
795 |
|
881 |
msgstr ""
|
882 |
|
883 |
#: includes/admin/reports/abstract-report.php:375
|
884 |
+
#: languages/vue.php:167
|
885 |
msgid "Upgrade Now"
|
886 |
msgstr ""
|
887 |
|
1962 |
msgid "%1$s is %3$sdeprecated%4$s since ExactMetrics version %2$s."
|
1963 |
msgstr ""
|
1964 |
|
1965 |
+
#: languages/vue.php:7
|
1966 |
msgid "Error"
|
1967 |
msgstr ""
|
1968 |
|
1969 |
+
#: languages/vue.php:10
|
1970 |
msgid "Please try again."
|
1971 |
msgstr ""
|
1972 |
|
1973 |
+
#: languages/vue.php:13
|
1974 |
msgid "Loading Settings"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
+
#: languages/vue.php:18
|
1978 |
msgid "Please wait..."
|
1979 |
msgstr ""
|
1980 |
|
1981 |
+
#: languages/vue.php:21
|
1982 |
msgid "Saving Changes..."
|
1983 |
msgstr ""
|
1984 |
|
1985 |
+
#: languages/vue.php:24
|
1986 |
msgid "Settings Updated"
|
1987 |
msgstr ""
|
1988 |
|
1989 |
#. Translators: Add a link to the onboarding wizard.
|
1990 |
+
#: languages/vue.php:28
|
1991 |
msgid "You need to %1$sconnect ExactMetrics%2$s first"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
+
#: languages/vue.php:31
|
1995 |
msgid "Could Not Save Changes"
|
1996 |
msgstr ""
|
1997 |
|
1998 |
+
#: languages/vue.php:34
|
1999 |
msgid "Loading new report data"
|
2000 |
msgstr ""
|
2001 |
|
2002 |
#. Translators: Adds an arrow icon.
|
2003 |
+
#: languages/vue.php:39
|
2004 |
msgid "Continue %s"
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: languages/vue.php:42
|
2008 |
msgid "Unlock the Publishers Report and Focus on the Content that Matters"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: languages/vue.php:45
|
2012 |
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."
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: languages/vue.php:48
|
2016 |
msgid "Unlock the Publishers Report and Focus on the Content That Matters"
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: languages/vue.php:51
|
2020 |
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."
|
2021 |
msgstr ""
|
2022 |
|
2023 |
+
#: languages/vue.php:54
|
2024 |
msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
+
#: languages/vue.php:57
|
2028 |
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."
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: languages/vue.php:60
|
2032 |
msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
|
2033 |
msgstr ""
|
2034 |
|
2035 |
+
#: languages/vue.php:63
|
2036 |
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."
|
2037 |
msgstr ""
|
2038 |
|
2039 |
+
#: languages/vue.php:67
|
2040 |
msgid "Unlock the Forms Report and Improve Conversions"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: languages/vue.php:71
|
2044 |
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."
|
2045 |
msgstr ""
|
2046 |
|
2047 |
+
#: languages/vue.php:74
|
2048 |
msgid "Unlock the Search Console Report and See How People Find Your Website"
|
2049 |
msgstr ""
|
2050 |
|
2051 |
+
#: languages/vue.php:77
|
2052 |
msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
|
2053 |
msgstr ""
|
2054 |
|
2055 |
+
#: languages/vue.php:80
|
2056 |
msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
+
#: languages/vue.php:83
|
2060 |
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."
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: languages/vue.php:86
|
2064 |
msgid "Success! "
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: languages/vue.php:89
|
2068 |
msgid "You're now using ExactMetrics Pro with all the features."
|
2069 |
msgstr ""
|
2070 |
|
2071 |
#. Translators: Placeholder gets replaced with an arrow icon.
|
2072 |
+
#: languages/vue.php:93
|
2073 |
msgid "Get Started %s"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
+
#: languages/vue.php:97
|
2077 |
msgid "Overview Report"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
#. Translators: Current WordPress version.
|
2081 |
+
#: languages/vue.php:101
|
2082 |
msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
2083 |
msgstr ""
|
2084 |
|
2085 |
+
#: languages/vue.php:104
|
2086 |
msgid "Yikes! PHP Update Required"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
#. Translators: Current PHP version and recommended PHP version.
|
2090 |
+
#: languages/vue.php:108
|
2091 |
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."
|
2092 |
msgstr ""
|
2093 |
|
2094 |
+
#: languages/vue.php:111
|
2095 |
msgid "Learn more about updating PHP"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: languages/vue.php:114
|
2099 |
msgid "Yikes! WordPress Update Required"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
#. Translators: Current WordPress version.
|
2103 |
+
#: languages/vue.php:118
|
2104 |
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 October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: languages/vue.php:121
|
2108 |
msgid "Learn more about updating WordPress"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
#. Translators: Makes text bold.
|
2112 |
+
#: languages/vue.php:125
|
2113 |
msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
|
2114 |
msgstr ""
|
2115 |
|
2116 |
#. Translators: Makes text bold.
|
2117 |
+
#: languages/vue.php:129
|
2118 |
msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
|
2119 |
msgstr ""
|
2120 |
|
2121 |
#. Translators: Makes text bold.
|
2122 |
+
#: languages/vue.php:133
|
2123 |
msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
|
2124 |
msgstr ""
|
2125 |
|
2126 |
#. Translators: Makes text bold.
|
2127 |
+
#: languages/vue.php:137
|
2128 |
msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
|
2129 |
msgstr ""
|
2130 |
|
2131 |
#. Translators: Makes text bold.
|
2132 |
+
#: languages/vue.php:141
|
2133 |
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."
|
2134 |
msgstr ""
|
2135 |
|
2136 |
#. Translators: Makes text bold.
|
2137 |
+
#: languages/vue.php:145
|
2138 |
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."
|
2139 |
msgstr ""
|
2140 |
|
2141 |
#. Translators: Makes text bold.
|
2142 |
+
#: languages/vue.php:149
|
2143 |
msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
|
2144 |
msgstr ""
|
2145 |
|
2146 |
#. Translators: Makes text bold.
|
2147 |
+
#: languages/vue.php:153
|
2148 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
|
2149 |
msgstr ""
|
2150 |
|
2151 |
#. Translators: Adds link to the features page.
|
2152 |
+
#: languages/vue.php:157
|
2153 |
msgid "%1$sSee All Features%2$s"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: languages/vue.php:160
|
2157 |
msgid "Pro Plan"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: languages/vue.php:163
|
2161 |
msgid "per year"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: languages/vue.php:170
|
2165 |
msgid "Upgrade to ExactMetrics Pro Now"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: languages/vue.php:173
|
2169 |
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!"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: languages/vue.php:176
|
2173 |
msgid "Daniel Monaghan - Experienced"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: languages/vue.php:179
|
2177 |
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."
|
2178 |
msgstr ""
|
2179 |
|
2180 |
+
#: languages/vue.php:182
|
2181 |
msgid "Naomi Spirit - From This Day"
|
2182 |
msgstr ""
|
2183 |
|
2185 |
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!"
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: languages/vue.php:188
|
2189 |
msgid "Julie Dupuis - Faraway Land Travel"
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: languages/vue.php:191
|
2193 |
msgid "Guides and Documentation:"
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: languages/vue.php:194
|
2197 |
msgid "Upgrade to PRO"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: languages/vue.php:197
|
2201 |
msgid "eCommerce Tracking"
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: languages/vue.php:200
|
2205 |
msgid "Custom Dimensions"
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: languages/vue.php:203
|
2209 |
msgid "Form Tracking"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: languages/vue.php:206
|
2213 |
msgid "AMP Support"
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: languages/vue.php:209
|
2217 |
msgid "Author Tracking"
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: languages/vue.php:212
|
2221 |
msgid "EU Compliance Addon"
|
2222 |
msgstr ""
|
2223 |
|
2224 |
+
#: languages/vue.php:215
|
2225 |
msgid "Real Time Report"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
+
#: languages/vue.php:218
|
2229 |
msgid "Google Optimize"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
+
#: languages/vue.php:224
|
2233 |
msgid "Custom Date Ranges"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
+
#: languages/vue.php:227
|
2237 |
msgid "Getting Started with ExactMetrics"
|
2238 |
msgstr ""
|
2239 |
|
2240 |
+
#: languages/vue.php:230
|
2241 |
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."
|
2242 |
msgstr ""
|
2243 |
|
2244 |
+
#: languages/vue.php:233
|
2245 |
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."
|
2246 |
msgstr ""
|
2247 |
|
2248 |
+
#: languages/vue.php:236
|
2249 |
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!."
|
2250 |
msgstr ""
|
2251 |
|
2252 |
+
#: languages/vue.php:239
|
2253 |
msgid "Launch the wizard!"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
+
#: languages/vue.php:242
|
2257 |
msgid "Welcome to"
|
2258 |
msgstr ""
|
2259 |
|
2260 |
#. Translators: Adds a line break.
|
2261 |
+
#: languages/vue.php:246
|
2262 |
msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
|
2263 |
msgstr ""
|
2264 |
|
2265 |
#. Translators: Makes text bold.
|
2266 |
+
#: languages/vue.php:250
|
2267 |
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."
|
2268 |
msgstr ""
|
2269 |
|
2270 |
+
#: languages/vue.php:253
|
2271 |
msgid "ExactMetrics Features & Addons"
|
2272 |
msgstr ""
|
2273 |
|
2274 |
+
#: languages/vue.php:256
|
2275 |
msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
|
2276 |
msgstr ""
|
2277 |
|
2278 |
#. Translators: Number of visitors.
|
2279 |
+
#: languages/vue.php:260
|
2280 |
msgid "See how %s visitors found your site!"
|
2281 |
msgstr ""
|
2282 |
|
2283 |
#. Translators: Number of visitors.
|
2284 |
+
#: languages/vue.php:264
|
2285 |
msgid "Your website was visited by %s users in the last 30 days."
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: languages/vue.php:267
|
2289 |
msgid "See the full analytics report!"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
#. Translators: Error status and error text.
|
2293 |
+
#: languages/vue.php:271
|
2294 |
msgid "Can't load report data. Error: %1$s, %2$s"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: languages/vue.php:274
|
2298 |
msgid "Error loading report data"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
#. Translators: Placeholder is replaced with WPForms.
|
2302 |
+
#: languages/vue.php:278
|
2303 |
msgid "Recommended Plugin: %s"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
+
#: languages/vue.php:281
|
2307 |
msgid "Install"
|
2308 |
msgstr ""
|
2309 |
|
2310 |
+
#: languages/vue.php:284
|
2311 |
msgid "Activate"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
#. Translators: Gets replaced with the number of days.
|
2315 |
+
#: languages/vue.php:292
|
2316 |
msgid "Last %s days"
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: languages/vue.php:295
|
2320 |
msgid "ExactMetrics encountered an error loading your report data"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: languages/vue.php:298
|
2324 |
msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
|
2325 |
msgstr ""
|
2326 |
|
2327 |
+
#: languages/vue.php:301
|
2328 |
+
#: languages/vue.php:2138
|
2329 |
msgid "Reconnect ExactMetrics"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
+
#: languages/vue.php:305
|
2333 |
msgid "Re-Authenticating"
|
2334 |
msgstr ""
|
2335 |
|
2336 |
+
#: languages/vue.php:308
|
2337 |
msgid "Ok"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
+
#: languages/vue.php:311
|
2341 |
msgid "Analytics"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
#. Translators: Adds an arrow icon.
|
2345 |
+
#: languages/vue.php:316
|
2346 |
msgid "View All Reports %s"
|
2347 |
msgstr ""
|
2348 |
|
2350 |
msgid "Getting Started"
|
2351 |
msgstr ""
|
2352 |
|
2353 |
+
#: languages/vue.php:331
|
2354 |
msgid "Lite vs Pro"
|
2355 |
msgstr ""
|
2356 |
|
2357 |
+
#: languages/vue.php:335
|
2358 |
msgid "General"
|
2359 |
msgstr ""
|
2360 |
|
2361 |
+
#: languages/vue.php:339
|
2362 |
msgid "Engagement"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
+
#: languages/vue.php:349
|
2366 |
msgid "Publisher"
|
2367 |
msgstr ""
|
2368 |
|
2369 |
+
#: languages/vue.php:354
|
2370 |
msgid "Conversions"
|
2371 |
msgstr ""
|
2372 |
|
2373 |
+
#: languages/vue.php:358
|
2374 |
msgid "Advanced"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
+
#: languages/vue.php:361
|
2378 |
msgid "URL Builder"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
+
#: languages/vue.php:364
|
2382 |
msgid "Import Export"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
+
#: languages/vue.php:367
|
2386 |
msgid "Go back"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
#. Translators: Placeholders are replaced with the current step number out of the total number of steps.
|
2390 |
+
#: languages/vue.php:371
|
2391 |
msgid "Step %1$s of %2$s"
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: languages/vue.php:374
|
2395 |
msgid "Exit Setup"
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: languages/vue.php:385
|
2399 |
msgid "Dimensions Report"
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: languages/vue.php:393
|
2403 |
msgid "Real-Time"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: languages/vue.php:396
|
2407 |
msgid "See Quick Links"
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: languages/vue.php:399
|
2411 |
msgid "Suggest a Feature"
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: languages/vue.php:402
|
2415 |
msgid "Join Our Community"
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: languages/vue.php:405
|
2419 |
msgid "Support & Docs"
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: languages/vue.php:408
|
2423 |
msgid "Upgrade to Pro »"
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: languages/vue.php:411
|
2427 |
msgid "Time to Purchase"
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: languages/vue.php:414
|
2431 |
msgid "This list shows how many days from first visit it took users to purchase products from your site."
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: languages/vue.php:417
|
2435 |
msgid "Sessions to Purchase"
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: languages/vue.php:420
|
2439 |
msgid "This list shows the number of sessions it took users before they purchased a product from your website."
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: languages/vue.php:424
|
2443 |
msgid "Top Posts/Pages"
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: languages/vue.php:428
|
2447 |
msgid "This list shows the most viewed posts and pages on your website."
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: languages/vue.php:432
|
2451 |
msgid "New vs. Returning Visitors"
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: languages/vue.php:436
|
2455 |
msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: languages/vue.php:440
|
2459 |
msgid "Device Breakdown"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: languages/vue.php:444
|
2463 |
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."
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: languages/vue.php:447
|
2467 |
msgid "Top Landing Pages"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: languages/vue.php:450
|
2471 |
msgid "This list shows the top pages users first land on when visiting your website."
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: languages/vue.php:453
|
2475 |
msgid "Top Exit Pages"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: languages/vue.php:456
|
2479 |
msgid "This list shows the top pages users exit your website from."
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: languages/vue.php:459
|
2483 |
msgid "Top Outbound Links"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: languages/vue.php:462
|
2487 |
msgid "This list shows the top links clicked on your website that go to another website."
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: languages/vue.php:465
|
2491 |
msgid "Top Affiliate Links"
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: languages/vue.php:468
|
2495 |
msgid "This list shows the top affiliate links your visitors clicked on."
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: languages/vue.php:471
|
2499 |
msgid "Top Download Links"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: languages/vue.php:474
|
2503 |
msgid "This list shows the download links your visitors clicked the most."
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: languages/vue.php:477
|
2507 |
msgid "Top Products"
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: languages/vue.php:480
|
2511 |
msgid "This list shows the top selling products on your website."
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: languages/vue.php:483
|
2515 |
msgid "Top Conversion Sources"
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: languages/vue.php:486
|
2519 |
msgid "This list shows the top referral websites in terms of product revenue."
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: languages/vue.php:489
|
2523 |
msgid "Total Add/Remove"
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: languages/vue.php:492
|
2527 |
msgid "Save Changes"
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: languages/vue.php:505
|
2531 |
msgid "You must connect with ExactMetrics before you can view reports."
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: languages/vue.php:508
|
2535 |
msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: languages/vue.php:511
|
2539 |
msgid "Launch Setup Wizard"
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: languages/vue.php:514
|
2543 |
msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
|
2544 |
msgstr ""
|
2545 |
|
2546 |
#. Translators: Adds a link to documentation.
|
2547 |
+
#: languages/vue.php:521
|
2548 |
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"
|
2549 |
msgstr ""
|
2550 |
|
2551 |
#. Translators: Adds link to activate/install plugin and documentation.
|
2552 |
+
#: languages/vue.php:525
|
2553 |
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"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
#. Translators: Adds a link to documentation.
|
2557 |
+
#: languages/vue.php:529
|
2558 |
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"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
#. Translators: Adds link to activate/install plugin and documentation.
|
2562 |
+
#: languages/vue.php:533
|
2563 |
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"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
#. Translators: Placeholders make the text highlighted.
|
2567 |
+
#: languages/vue.php:546
|
2568 |
msgid "%1$sNeed%2$s to Grow FASTER??"
|
2569 |
msgstr ""
|
2570 |
|
2571 |
+
#: languages/vue.php:549
|
2572 |
msgid "Get additional, actionable insights by going Pro."
|
2573 |
msgstr ""
|
2574 |
|
2575 |
+
#: languages/vue.php:552
|
2576 |
msgid "Skip"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
+
#: languages/vue.php:555
|
2580 |
msgid "See All Features"
|
2581 |
msgstr ""
|
2582 |
|
2583 |
+
#: languages/vue.php:558
|
2584 |
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."
|
2585 |
msgstr ""
|
2586 |
|
2587 |
+
#: languages/vue.php:561
|
2588 |
msgid "Our Pro plan includes:"
|
2589 |
msgstr ""
|
2590 |
|
2591 |
+
#: languages/vue.php:564
|
2592 |
msgid "Connect ExactMetrics to Your Website"
|
2593 |
msgstr ""
|
2594 |
|
2595 |
+
#: languages/vue.php:567
|
2596 |
msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
|
2597 |
msgstr ""
|
2598 |
|
2599 |
+
#: languages/vue.php:570
|
2600 |
msgid "Connect Google Analytics + WordPress"
|
2601 |
msgstr ""
|
2602 |
|
2603 |
+
#: languages/vue.php:573
|
2604 |
msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
|
2605 |
msgstr ""
|
2606 |
|
2607 |
+
#: languages/vue.php:576
|
2608 |
msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
|
2609 |
msgstr ""
|
2610 |
|
2611 |
+
#: languages/vue.php:579
|
2612 |
msgid "Manually enter your UA code"
|
2613 |
msgstr ""
|
2614 |
|
2615 |
+
#: languages/vue.php:582
|
2616 |
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."
|
2617 |
msgstr ""
|
2618 |
|
2619 |
+
#: languages/vue.php:585
|
2620 |
msgid "Save and Continue"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
+
#: languages/vue.php:588
|
2624 |
msgid "UA code can't be empty"
|
2625 |
msgstr ""
|
2626 |
|
2627 |
+
#: languages/vue.php:591
|
2628 |
msgid "Saving UA code..."
|
2629 |
msgstr ""
|
2630 |
|
2631 |
+
#: languages/vue.php:594
|
2632 |
msgid "Welcome to the all-new ExactMetrics"
|
2633 |
msgstr ""
|
2634 |
|
2635 |
+
#: languages/vue.php:597
|
2636 |
msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
|
2637 |
msgstr ""
|
2638 |
|
2639 |
+
#: languages/vue.php:600
|
2640 |
msgid "The New & Improved ExactMetrics includes:"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
+
#: languages/vue.php:603
|
2644 |
msgid "All-New Design"
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: languages/vue.php:606
|
2648 |
msgid "Better Reporting"
|
2649 |
msgstr ""
|
2650 |
|
2651 |
+
#: languages/vue.php:609
|
2652 |
msgid "Better Tracking"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
+
#: languages/vue.php:612
|
2656 |
msgid "Better Support"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: languages/vue.php:615
|
2660 |
msgid "Continue"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
+
#: languages/vue.php:618
|
2664 |
msgid "Your settings have been automatically transferred."
|
2665 |
msgstr ""
|
2666 |
|
2667 |
+
#: languages/vue.php:621
|
2668 |
msgid "Recommended Settings"
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: languages/vue.php:624
|
2672 |
msgid "ExactMetrics recommends the following settings based on your configuration."
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: languages/vue.php:627
|
2676 |
msgid "Events Tracking"
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: languages/vue.php:630
|
2680 |
msgid "Must have for all click tracking on site."
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: languages/vue.php:633
|
2684 |
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."
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: languages/vue.php:636
|
2688 |
msgid "Enhanced Link Attribution"
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: languages/vue.php:639
|
2692 |
msgid "Improves the accuracy of your In-Page Analytics."
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: languages/vue.php:642
|
2696 |
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."
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: languages/vue.php:645
|
2700 |
msgid "Install Updates Automatically"
|
2701 |
msgstr ""
|
2702 |
|
2703 |
+
#: languages/vue.php:648
|
2704 |
msgid "Get the latest features, bug fixes, and security updates as they are released."
|
2705 |
msgstr ""
|
2706 |
|
2707 |
+
#: languages/vue.php:651
|
2708 |
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."
|
2709 |
msgstr ""
|
2710 |
|
2711 |
+
#: languages/vue.php:654
|
2712 |
msgid "File Download Tracking"
|
2713 |
msgstr ""
|
2714 |
|
2715 |
+
#: languages/vue.php:657
|
2716 |
msgid "Helps you see file downloads data."
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: languages/vue.php:660
|
2720 |
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."
|
2721 |
msgstr ""
|
2722 |
|
2723 |
#. Translators: Example path (/go/).
|
2724 |
+
#: languages/vue.php:665
|
2725 |
msgid "Path (example: %s)"
|
2726 |
msgstr ""
|
2727 |
|
2728 |
+
#: languages/vue.php:669
|
2729 |
msgid "Path has to start with a / and have no spaces"
|
2730 |
msgstr ""
|
2731 |
|
2732 |
#. Translators: Example label (aff).
|
2733 |
+
#: languages/vue.php:674
|
2734 |
msgid "Label (example: %s)"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: languages/vue.php:678
|
2738 |
msgid "Label can't contain any spaces"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
+
#: languages/vue.php:681
|
2742 |
msgid "Helps you increase affiliate revenue."
|
2743 |
msgstr ""
|
2744 |
|
2745 |
+
#: languages/vue.php:684
|
2746 |
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."
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: languages/vue.php:687
|
2750 |
msgid "Affiliate Link Tracking"
|
2751 |
msgstr ""
|
2752 |
|
2753 |
+
#: languages/vue.php:690
|
2754 |
msgid "Who Can See Reports"
|
2755 |
msgstr ""
|
2756 |
|
2757 |
+
#: languages/vue.php:693
|
2758 |
msgid "These user roles will be able to access ExactMetrics's reports in the WordPress admin area."
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: languages/vue.php:696
|
2762 |
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."
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: languages/vue.php:699
|
2766 |
msgid "Save and continue"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: languages/vue.php:702
|
2770 |
msgid "Events Tracking is enabled the moment you set up ExactMetrics"
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: languages/vue.php:705
|
2774 |
msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
+
#: languages/vue.php:708
|
2778 |
msgid "+ Add Role"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
+
#: languages/vue.php:711
|
2782 |
msgid "Awesome, You're All Set!"
|
2783 |
msgstr ""
|
2784 |
|
2785 |
+
#: languages/vue.php:714
|
2786 |
msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
|
2787 |
msgstr ""
|
2788 |
|
2789 |
#. Translators: Make the text bold.
|
2790 |
+
#: languages/vue.php:718
|
2791 |
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."
|
2792 |
msgstr ""
|
2793 |
|
2794 |
#. Translators: Add link to blog.
|
2795 |
+
#: languages/vue.php:722
|
2796 |
msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: languages/vue.php:725
|
2800 |
msgid "Finish Setup & Exit Wizard"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#: languages/vue.php:728
|
2804 |
msgid "Google Analytics"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: languages/vue.php:731
|
2808 |
msgid "Subscribe"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: languages/vue.php:734
|
2812 |
msgid "Checking your website..."
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: languages/vue.php:737
|
2816 |
msgid "Show Overview Reports"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: languages/vue.php:740
|
2820 |
msgid "Show Publishers Reports"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: languages/vue.php:743
|
2824 |
msgid "Show eCommerce Reports"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
#: languages/vue.php:746
|
2828 |
msgid "Available in PRO version"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: languages/vue.php:749
|
2832 |
msgid "Show in widget mode"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: languages/vue.php:752
|
2836 |
msgid "Show in full-width mode"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
#. Translators: Placeholder adds a line break.
|
2840 |
+
#: languages/vue.php:756
|
2841 |
msgid "You can customize your %sdate range only in the PRO version."
|
2842 |
msgstr ""
|
2843 |
|
2844 |
+
#: languages/vue.php:759
|
2845 |
msgid "See All Reports"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
+
#: languages/vue.php:762
|
2849 |
msgid "Go to the Analytics Dashboard"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: languages/vue.php:765
|
2853 |
msgid "Ecommerce"
|
2854 |
msgstr ""
|
2855 |
|
2856 |
#. Translators: Add line break.
|
2857 |
+
#: languages/vue.php:769
|
2858 |
msgid "See All Your Important Store%s Metrics in One Place"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
+
#: languages/vue.php:772
|
2862 |
msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
+
#: languages/vue.php:775
|
2866 |
msgid "Here's what you get:"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
+
#: languages/vue.php:778
|
2870 |
msgid "See Your Conversion Rate to Improve Funnel"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
+
#: languages/vue.php:781
|
2874 |
msgid "See The Number of Transactions and Make Data-Driven Decisions"
|
2875 |
msgstr ""
|
2876 |
|
2877 |
+
#: languages/vue.php:784
|
2878 |
msgid "See The Total Revenue to Track Growth"
|
2879 |
msgstr ""
|
2880 |
|
2881 |
+
#: languages/vue.php:787
|
2882 |
msgid "See Average Order Value to Find Offer Opportunities"
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: languages/vue.php:790
|
2886 |
msgid "See Your Top Products to See Individual Performance"
|
2887 |
msgstr ""
|
2888 |
|
2889 |
+
#: languages/vue.php:793
|
2890 |
msgid "See your Top Conversion Sources and Focus on what's Working"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
+
#: languages/vue.php:796
|
2894 |
msgid "See The Time it Takes for Customers to Purchase"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: languages/vue.php:799
|
2898 |
msgid "See How Many Sessions are Needed for a Purchase"
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: languages/vue.php:802
|
2902 |
msgid "Affiliate Links"
|
2903 |
msgstr ""
|
2904 |
|
2905 |
#. Translators: Add links to documentation.
|
2906 |
+
#: languages/vue.php:806
|
2907 |
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."
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: languages/vue.php:809
|
2911 |
msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: languages/vue.php:812
|
2915 |
msgid "Cross Domain Tracking"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
#. Translators: Add links to documentation.
|
2919 |
+
#: languages/vue.php:816
|
2920 |
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."
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: languages/vue.php:819
|
2924 |
msgid "Demographics"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
+
#: languages/vue.php:822
|
2928 |
msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
+
#: languages/vue.php:825
|
2932 |
msgid "Anonymize IP Addresses"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
+
#: languages/vue.php:828
|
2936 |
msgid "Link Attribution"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
+
#: languages/vue.php:831
|
2940 |
msgid "Enable Enhanced Link Attribution"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
+
#: languages/vue.php:834
|
2944 |
msgid "Enable Anchor Tracking"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: languages/vue.php:837
|
2948 |
msgid "Enable allowAnchor"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: languages/vue.php:840
|
2952 |
msgid "Enable allowLinker"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
+
#: languages/vue.php:843
|
2956 |
msgid "Enable Tag Links in RSS"
|
2957 |
msgstr ""
|
2958 |
|
2959 |
+
#: languages/vue.php:846
|
2960 |
msgid "File Downloads"
|
2961 |
msgstr ""
|
2962 |
|
2963 |
+
#: languages/vue.php:849
|
2964 |
msgid "Extensions of Files to Track as Downloads"
|
2965 |
msgstr ""
|
2966 |
|
2967 |
+
#: languages/vue.php:852
|
2968 |
msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
|
2969 |
msgstr ""
|
2970 |
|
2971 |
#. Translators: Add links to documentation.
|
2972 |
+
#: languages/vue.php:856
|
2973 |
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."
|
2974 |
msgstr ""
|
2975 |
|
2976 |
#. Translators: Add links to documentation.
|
2977 |
+
#: languages/vue.php:860
|
2978 |
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."
|
2979 |
msgstr ""
|
2980 |
|
2981 |
#. Translators: Add links to documentation.
|
2982 |
+
#: languages/vue.php:864
|
2983 |
msgid "Add %1$sEnhanced Link Attribution%2$s to your tracking code."
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: languages/vue.php:867
|
2987 |
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."
|
2988 |
msgstr ""
|
2989 |
|
2990 |
#. Translators: Add links to documentation.
|
2991 |
+
#: languages/vue.php:871
|
2992 |
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."
|
2993 |
msgstr ""
|
2994 |
|
2995 |
#. Translators: Add links to documentation.
|
2996 |
+
#: languages/vue.php:875
|
2997 |
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."
|
2998 |
msgstr ""
|
2999 |
|
3000 |
#. Translators: Add links to documentation.
|
3001 |
+
#: languages/vue.php:879
|
3002 |
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."
|
3003 |
msgstr ""
|
3004 |
|
3005 |
+
#: languages/vue.php:882
|
3006 |
msgid "Add domain"
|
3007 |
msgstr ""
|
3008 |
|
3009 |
#. Translators: Domain name example.
|
3010 |
+
#: languages/vue.php:886
|
3011 |
msgid "Domain (example: %s)"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
#. Translators: Current domain name that should not be used.
|
3015 |
+
#: languages/vue.php:890
|
3016 |
msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
|
3017 |
msgstr ""
|
3018 |
|
3019 |
+
#: languages/vue.php:893
|
3020 |
msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
#: languages/vue.php:896
|
3024 |
msgid "No addons found."
|
3025 |
msgstr ""
|
3026 |
|
3027 |
+
#: languages/vue.php:899
|
3028 |
msgid "Refresh Addons"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
+
#: languages/vue.php:902
|
3032 |
+
#: languages/vue.php:1585
|
3033 |
msgid "ExactMetrics Addons"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
#. Translators: Adds a line break.
|
3037 |
+
#: languages/vue.php:906
|
3038 |
msgid "Upgrade to Pro to unlock addons and other great features."
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: languages/vue.php:909
|
3042 |
msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
+
#: languages/vue.php:912
|
3046 |
msgid "Refreshing Addons"
|
3047 |
msgstr ""
|
3048 |
|
3049 |
#. Translators: placeholders make text small.
|
3050 |
+
#: languages/vue.php:916
|
3051 |
msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
#. Translators: placeholders make text small.
|
3055 |
+
#: languages/vue.php:920
|
3056 |
msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
#. Translators: placeholders make text small.
|
3060 |
+
#: languages/vue.php:924
|
3061 |
msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
|
3062 |
msgstr ""
|
3063 |
|
3064 |
#. Translators: placeholders make text small.
|
3065 |
+
#: languages/vue.php:928
|
3066 |
msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
|
3067 |
msgstr ""
|
3068 |
|
3069 |
#. Translators: placeholders make text small.
|
3070 |
+
#: languages/vue.php:932
|
3071 |
msgid "None %1$s- Manually update everything.%2$s"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
#. Translators: Adds a link to the general settings tab.
|
3075 |
+
#: languages/vue.php:936
|
3076 |
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."
|
3077 |
msgstr ""
|
3078 |
|
3079 |
+
#: languages/vue.php:939
|
3080 |
msgid "Permissions"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
+
#: languages/vue.php:942
|
3084 |
msgid "Allow These User Roles to See Reports"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
+
#: languages/vue.php:945
|
3088 |
msgid "Users that have at least one of these roles will be able to view the reports."
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: languages/vue.php:948
|
3092 |
msgid "Allow These User Roles to Save Settings"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: languages/vue.php:951
|
3096 |
msgid "Users that have at least one of these roles will be able to view and save the settings panel."
|
3097 |
msgstr ""
|
3098 |
|
3099 |
+
#: languages/vue.php:954
|
3100 |
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."
|
3101 |
msgstr ""
|
3102 |
|
3103 |
+
#: languages/vue.php:957
|
3104 |
msgid "Exclude These User Roles From Tracking"
|
3105 |
msgstr ""
|
3106 |
|
3107 |
+
#: languages/vue.php:960
|
3108 |
msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: languages/vue.php:963
|
3112 |
msgid "Custom code"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
#. Translators: Adds a link to the Google reference.
|
3116 |
+
#: languages/vue.php:967
|
3117 |
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."
|
3118 |
msgstr ""
|
3119 |
|
3120 |
+
#: languages/vue.php:973
|
3121 |
msgid "Automatic Updates"
|
3122 |
msgstr ""
|
3123 |
|
3124 |
+
#: languages/vue.php:976
|
3125 |
msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
|
3126 |
msgstr ""
|
3127 |
|
3128 |
+
#: languages/vue.php:979
|
3129 |
msgid "Hide Admin Bar Reports"
|
3130 |
msgstr ""
|
3131 |
|
3132 |
#. Translators: placeholders make text small.
|
3133 |
+
#: languages/vue.php:983
|
3134 |
msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
+
#: languages/vue.php:986
|
3138 |
msgid "Unlock Form Tracking"
|
3139 |
msgstr ""
|
3140 |
|
3141 |
+
#: languages/vue.php:989
|
3142 |
msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
|
3143 |
msgstr ""
|
3144 |
|
3145 |
+
#: languages/vue.php:992
|
3146 |
msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
|
3147 |
msgstr ""
|
3148 |
|
3149 |
+
#: languages/vue.php:995
|
3150 |
msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
|
3151 |
msgstr ""
|
3152 |
|
3153 |
+
#: languages/vue.php:998
|
3154 |
msgid "One-click Complete eCommerce tracking"
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: languages/vue.php:1001
|
3158 |
msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
|
3159 |
msgstr ""
|
3160 |
|
3161 |
+
#: languages/vue.php:1004
|
3162 |
msgid "Forms Tracking"
|
3163 |
msgstr ""
|
3164 |
|
3165 |
+
#: languages/vue.php:1007
|
3166 |
msgid "One-click Form Events Tracking"
|
3167 |
msgstr ""
|
3168 |
|
3169 |
+
#: languages/vue.php:1010
|
3170 |
msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
+
#: languages/vue.php:1013
|
3174 |
msgid "WordPress Admin Area Reports"
|
3175 |
msgstr ""
|
3176 |
|
3177 |
+
#: languages/vue.php:1016
|
3178 |
msgid "Standard Reports"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: languages/vue.php:1019
|
3182 |
msgid "Overview Reports for the last 30 days."
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: languages/vue.php:1022
|
3186 |
msgid "Advanced Reports"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
+
#: languages/vue.php:1025
|
3190 |
msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
+
#: languages/vue.php:1028
|
3194 |
msgid "Dashboard Widget"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
+
#: languages/vue.php:1031
|
3198 |
msgid "Basic Widget"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
+
#: languages/vue.php:1034
|
3202 |
msgid "Overview Report Synopsis"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
+
#: languages/vue.php:1037
|
3206 |
msgid "Advanced Dashboard Widget"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
+
#: languages/vue.php:1040
|
3210 |
msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
+
#: languages/vue.php:1043
|
3214 |
msgid "Publisher Reports"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
+
#: languages/vue.php:1046
|
3218 |
msgid "Advanced Publisher Reports & Tracking"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
+
#: languages/vue.php:1049
|
3222 |
msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
|
3223 |
msgstr ""
|
3224 |
|
3225 |
+
#: languages/vue.php:1052
|
3226 |
msgid "Not Available"
|
3227 |
msgstr ""
|
3228 |
|
3229 |
+
#: languages/vue.php:1055
|
3230 |
msgid "Complete Custom Dimensions Tracking"
|
3231 |
msgstr ""
|
3232 |
|
3233 |
+
#: languages/vue.php:1058
|
3234 |
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"
|
3235 |
msgstr ""
|
3236 |
|
3237 |
+
#: languages/vue.php:1064
|
3238 |
msgid "Limited Support"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
+
#: languages/vue.php:1067
|
3242 |
msgid "Priority Support"
|
3243 |
msgstr ""
|
3244 |
|
3245 |
+
#: languages/vue.php:1070
|
3246 |
msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
|
3247 |
msgstr ""
|
3248 |
|
3249 |
+
#: languages/vue.php:1073
|
3250 |
msgid "Feature"
|
3251 |
msgstr ""
|
3252 |
|
3253 |
+
#: languages/vue.php:1076
|
3254 |
msgid "Lite"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
+
#: languages/vue.php:1079
|
3258 |
msgid "Pro"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: languages/vue.php:1082
|
3262 |
msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
+
#: languages/vue.php:1085
|
3266 |
msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
|
3267 |
msgstr ""
|
3268 |
|
3269 |
+
#: languages/vue.php:1088
|
3270 |
msgid "Upgrade to Pro"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
+
#: languages/vue.php:1091
|
3274 |
msgid "Universal Tracking"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
+
#: languages/vue.php:1094
|
3278 |
msgid "Included"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
+
#: languages/vue.php:1097
|
3282 |
msgid "Custom Google Analytics Link Tracking"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
+
#: languages/vue.php:1100
|
3286 |
msgid "Standard Tracking"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: languages/vue.php:1103
|
3290 |
msgid "Advanced Tracking"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: languages/vue.php:1106
|
3294 |
msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: languages/vue.php:1109
|
3298 |
msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: languages/vue.php:1112
|
3302 |
msgid "No-Code-Needed Tracking Features"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: languages/vue.php:1115
|
3306 |
msgid "Basic Tracking Options"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: languages/vue.php:1118
|
3310 |
msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
+
#: languages/vue.php:1121
|
3314 |
msgid "Advanced Tracking Options"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: languages/vue.php:1124
|
3318 |
msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: languages/vue.php:1127
|
3322 |
msgid "Sessions"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
#. Translators: Line break.
|
3326 |
+
#: languages/vue.php:1131
|
3327 |
msgid "Unique %s Sessions"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: languages/vue.php:1134
|
3331 |
msgid "Pageviews"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
#. Translators: Line break.
|
3335 |
+
#: languages/vue.php:1138
|
3336 |
msgid "Unique %s Pageviews"
|
3337 |
msgstr ""
|
3338 |
|
3339 |
+
#: languages/vue.php:1141
|
3340 |
msgid "A session is the browsing session of a single user to your site."
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: languages/vue.php:1144
|
3344 |
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."
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: languages/vue.php:1147
|
3348 |
msgid "Total duration of all sessions (in seconds) / number of sessions."
|
3349 |
msgstr ""
|
3350 |
|
3351 |
+
#: languages/vue.php:1150
|
3352 |
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."
|
3353 |
msgstr ""
|
3354 |
|
3355 |
+
#: languages/vue.php:1153
|
3356 |
msgid "Avg. Session Duration"
|
3357 |
msgstr ""
|
3358 |
|
3359 |
+
#: languages/vue.php:1156
|
3360 |
msgid "Bounce Rate"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: languages/vue.php:1159
|
3364 |
msgid "ExactMetrics Recommends WPForms"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
+
#: languages/vue.php:1162
|
3368 |
msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
|
3369 |
msgstr ""
|
3370 |
|
3371 |
+
#: languages/vue.php:1165
|
3372 |
msgid "Used on over 3,000,000 websites!"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
+
#: languages/vue.php:1168
|
3376 |
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!"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: languages/vue.php:1171
|
3380 |
msgid "Skip this Step"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
#: languages/vue.php:1174
|
3384 |
msgid "Continue & Install WPForms"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: languages/vue.php:1177
|
3388 |
msgid "Installing..."
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: languages/vue.php:1180
|
3392 |
msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: languages/vue.php:1183
|
3396 |
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."
|
3397 |
msgstr ""
|
3398 |
|
3399 |
+
#: languages/vue.php:1186
|
3400 |
msgid "The ExactMetrics Team"
|
3401 |
msgstr ""
|
3402 |
|
3403 |
+
#: languages/vue.php:1189
|
3404 |
msgid "Welcome to ExactMetrics!"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
+
#: languages/vue.php:1192
|
3408 |
msgid "Let's get you set up."
|
3409 |
msgstr ""
|
3410 |
|
3411 |
+
#: languages/vue.php:1195
|
3412 |
msgid "Which category best describes your website?"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
+
#: languages/vue.php:1198
|
3416 |
msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
|
3417 |
msgstr ""
|
3418 |
|
3419 |
+
#: languages/vue.php:1201
|
3420 |
msgid "Business Website"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
#. Translators: Make text bold.
|
3424 |
+
#: languages/vue.php:1205
|
3425 |
msgid "Publisher %1$s(Blog)%2$s"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
#. Translators: Placeholders make the text green.
|
3429 |
+
#: languages/vue.php:1209
|
3430 |
msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
#: languages/vue.php:1212
|
3434 |
msgid "How to Connect to Google Analytics"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: languages/vue.php:1215
|
3438 |
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."
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: languages/vue.php:1218
|
3442 |
msgid "Guide and Checklist for Advanced Insights"
|
3443 |
msgstr ""
|
3444 |
|
3445 |
+
#: languages/vue.php:1221
|
3446 |
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."
|
3447 |
msgstr ""
|
3448 |
|
3449 |
+
#: languages/vue.php:1224
|
3450 |
msgid "GDPR Guide"
|
3451 |
msgstr ""
|
3452 |
|
3453 |
+
#: languages/vue.php:1227
|
3454 |
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. "
|
3455 |
msgstr ""
|
3456 |
|
3457 |
+
#: languages/vue.php:1230
|
3458 |
msgid "How to Install and Activate ExactMetrics Addons"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
+
#: languages/vue.php:1233
|
3462 |
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."
|
3463 |
msgstr ""
|
3464 |
|
3465 |
+
#: languages/vue.php:1236
|
3466 |
msgid "Enabling eCommerce Tracking and Reports"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
+
#: languages/vue.php:1239
|
3470 |
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."
|
3471 |
msgstr ""
|
3472 |
|
3473 |
+
#: languages/vue.php:1242
|
3474 |
msgid "Read Documentation"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
#. Translators: Makes the text bold.
|
3478 |
+
#: languages/vue.php:1246
|
3479 |
msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
|
3480 |
msgstr ""
|
3481 |
|
3482 |
#. Translators: Makes the text bold.
|
3483 |
+
#: languages/vue.php:1250
|
3484 |
msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
|
3485 |
msgstr ""
|
3486 |
|
3487 |
+
#: languages/vue.php:1253
|
3488 |
msgid "Loading settings"
|
3489 |
msgstr ""
|
3490 |
|
3491 |
+
#: languages/vue.php:1256
|
3492 |
msgid "Forms Report"
|
3493 |
msgstr ""
|
3494 |
|
3495 |
+
#: languages/vue.php:1259
|
3496 |
msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
|
3497 |
msgstr ""
|
3498 |
|
3499 |
+
#: languages/vue.php:1262
|
3500 |
msgid "See Your Top Converting Forms and Optimize"
|
3501 |
msgstr ""
|
3502 |
|
3503 |
+
#: languages/vue.php:1265
|
3504 |
msgid "See Your Forms Impressions Count to Find the Best Placement"
|
3505 |
msgstr ""
|
3506 |
|
3507 |
+
#: languages/vue.php:1268
|
3508 |
msgid "Real-Time Report"
|
3509 |
msgstr ""
|
3510 |
|
3511 |
+
#: languages/vue.php:1271
|
3512 |
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."
|
3513 |
msgstr ""
|
3514 |
|
3515 |
+
#: languages/vue.php:1274
|
3516 |
msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: languages/vue.php:1277
|
3520 |
msgid "See Your Top Pages Immediately After Making Changes"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: languages/vue.php:1280
|
3524 |
msgid "See Your Top Referral Sources and Adapt Faster"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: languages/vue.php:1283
|
3528 |
msgid "See Your Traffic Demographics"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
+
#: languages/vue.php:1286
|
3532 |
msgid "Get Fresh Reports Data Every 60 Seconds"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: languages/vue.php:1289
|
3536 |
msgid "See Where Your Visitors are Connecting From (country & city)"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: languages/vue.php:1292
|
3540 |
msgid "Custom Dimensions Report"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
+
#: languages/vue.php:1295
|
3544 |
msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: languages/vue.php:1298
|
3548 |
msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
|
3549 |
msgstr ""
|
3550 |
|
3551 |
+
#: languages/vue.php:1301
|
3552 |
msgid "Author tracking to see which author’s posts generate the most traffic"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: languages/vue.php:1304
|
3556 |
msgid "Post Type tracking to see which WordPress post types perform better"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: languages/vue.php:1307
|
3560 |
msgid "Category tracking to see which sections of your sites are the most popular"
|
3561 |
msgstr ""
|
3562 |
|
3563 |
+
#: languages/vue.php:1310
|
3564 |
msgid "SEO score tracking to see which blog SEO scores are the most popular"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
+
#: languages/vue.php:1313
|
3568 |
msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
|
3569 |
msgstr ""
|
3570 |
|
3571 |
+
#: languages/vue.php:1316
|
3572 |
msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
|
3573 |
msgstr ""
|
3574 |
|
3575 |
+
#: languages/vue.php:1319
|
3576 |
msgid "Search Console Report"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: languages/vue.php:1322
|
3580 |
msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: languages/vue.php:1325
|
3584 |
msgid "See Your Top Google Search Terms and Optimize Content"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: languages/vue.php:1328
|
3588 |
msgid "See The Number of Clicks and Track Interests"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: languages/vue.php:1331
|
3592 |
msgid "See The Click-Through-Ratio and Improve SEO"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: languages/vue.php:1334
|
3596 |
msgid "See The Average Results Position and Focus on what works."
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: languages/vue.php:1337
|
3600 |
msgid "Ecommerce Report"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: languages/vue.php:1340
|
3604 |
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."
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: languages/vue.php:1343
|
3608 |
msgid "See Your Top Conversion Sources and Focus on what's Working"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: languages/vue.php:1346
|
3612 |
msgid "File imported"
|
3613 |
msgstr ""
|
3614 |
|
3615 |
+
#: languages/vue.php:1349
|
3616 |
msgid "Settings successfully updated!"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: languages/vue.php:1352
|
3620 |
msgid "Error importing settings"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: languages/vue.php:1355
|
3624 |
msgid "Please choose a .json file generated by a ExactMetrics settings export."
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: languages/vue.php:1358
|
3628 |
msgid "Import/Export"
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: languages/vue.php:1361
|
3632 |
msgid "Import"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: languages/vue.php:1364
|
3636 |
msgid "Import settings from another ExactMetrics website."
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: languages/vue.php:1367
|
3640 |
msgid "Export"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: languages/vue.php:1370
|
3644 |
msgid "Export settings to import into another ExactMetrics install."
|
3645 |
msgstr ""
|
3646 |
|
3647 |
+
#: languages/vue.php:1373
|
3648 |
msgid "Import Settings"
|
3649 |
msgstr ""
|
3650 |
|
3651 |
+
#: languages/vue.php:1376
|
3652 |
msgid "Export Settings"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
+
#: languages/vue.php:1379
|
3656 |
msgid "Please choose a file to import"
|
3657 |
msgstr ""
|
3658 |
|
3659 |
+
#: languages/vue.php:1382
|
3660 |
msgid "Use the filepicker below to select the settings export file from another site."
|
3661 |
msgstr ""
|
3662 |
|
3663 |
+
#: languages/vue.php:1385
|
3664 |
msgid "Use the button below to export a file with your ExactMetrics settings."
|
3665 |
msgstr ""
|
3666 |
|
3667 |
+
#: languages/vue.php:1388
|
3668 |
msgid "Choose file"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
+
#: languages/vue.php:1391
|
3672 |
msgid "No file chosen"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: languages/vue.php:1394
|
3676 |
msgid "Uploading file..."
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: languages/vue.php:1397
|
3680 |
msgid "Custom Campaign Parameters"
|
3681 |
msgstr ""
|
3682 |
|
3683 |
+
#: languages/vue.php:1400
|
3684 |
msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
|
3685 |
msgstr ""
|
3686 |
|
3687 |
+
#: languages/vue.php:1403
|
3688 |
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."
|
3689 |
msgstr ""
|
3690 |
|
3691 |
#. Translators: Marks the field as required.
|
3692 |
+
#: languages/vue.php:1407
|
3693 |
msgid "Website URL %s"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
#. Translators: Display the current website url in italic.
|
3697 |
+
#: languages/vue.php:1411
|
3698 |
msgid "The full website URL (e.g. %1$s %2$s%3$s)"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
#. Translators: Marks the field as required.
|
3702 |
+
#: languages/vue.php:1415
|
3703 |
msgid "Campaign Source %s"
|
3704 |
msgstr ""
|
3705 |
|
3706 |
#. Translators: Make the text italic.
|
3707 |
+
#: languages/vue.php:1419
|
3708 |
msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
|
3709 |
msgstr ""
|
3710 |
|
3711 |
#. Translators: Make the text italic.
|
3712 |
+
#: languages/vue.php:1423
|
3713 |
msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
#. Translators: Make the text italic.
|
3717 |
+
#: languages/vue.php:1427
|
3718 |
msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
+
#: languages/vue.php:1430
|
3722 |
msgid "Enter the paid keyword"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
+
#: languages/vue.php:1433
|
3726 |
msgid "Enter something to differentiate ads"
|
3727 |
msgstr ""
|
3728 |
|
3729 |
+
#: languages/vue.php:1436
|
3730 |
msgid "Use Fragment"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
#. Translators: Make the text bold.
|
3734 |
+
#: languages/vue.php:1440
|
3735 |
msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
|
3736 |
msgstr ""
|
3737 |
|
3738 |
+
#: languages/vue.php:1443
|
3739 |
msgid "URL to use"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: languages/vue.php:1446
|
3743 |
msgid "(Updates automatically)"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: languages/vue.php:1449
|
3747 |
msgid "Copy to Clipboard"
|
3748 |
msgstr ""
|
3749 |
|
3750 |
+
#: languages/vue.php:1452
|
3751 |
msgid "More Information & Examples"
|
3752 |
msgstr ""
|
3753 |
|
3754 |
+
#: languages/vue.php:1455
|
3755 |
msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
|
3756 |
msgstr ""
|
3757 |
|
3758 |
+
#: languages/vue.php:1458
|
3759 |
msgid "Campaign Source"
|
3760 |
msgstr ""
|
3761 |
|
3762 |
+
#: languages/vue.php:1461
|
3763 |
msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: languages/vue.php:1464
|
3767 |
msgid "Campaign Medium"
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: languages/vue.php:1467
|
3771 |
msgid "Use utm_medium to identify a medium such as email or cost-per-click."
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: languages/vue.php:1470
|
3775 |
msgid "Campaign Name"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: languages/vue.php:1473
|
3779 |
msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: languages/vue.php:1476
|
3783 |
msgid "Campaign Term"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: languages/vue.php:1479
|
3787 |
msgid "Used for paid search. Use utm_term to note the keywords for this ad."
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: languages/vue.php:1482
|
3791 |
msgid "Campaign Content"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: languages/vue.php:1485
|
3795 |
msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
|
3796 |
msgstr ""
|
3797 |
|
3798 |
#. Translators: Example.
|
3799 |
+
#: languages/vue.php:1489
|
3800 |
msgid "Example: %s"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
#. Translators: Examples.
|
3804 |
+
#: languages/vue.php:1493
|
3805 |
msgid "Examples: %s"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: languages/vue.php:1496
|
3809 |
msgid "About Campaigns"
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: languages/vue.php:1499
|
3813 |
msgid "About Custom Campaigns"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: languages/vue.php:1502
|
3817 |
msgid "Best Practices for Creating Custom Campaigns"
|
3818 |
msgstr ""
|
3819 |
|
3820 |
+
#: languages/vue.php:1505
|
3821 |
msgid "About the Referral Traffic Report"
|
3822 |
msgstr ""
|
3823 |
|
3824 |
+
#: languages/vue.php:1508
|
3825 |
msgid "About Traffic Source Dimensions"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
+
#: languages/vue.php:1511
|
3829 |
msgid "AdWords Auto-Tagging"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: languages/vue.php:1514
|
3833 |
msgid "Additional Information"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: languages/vue.php:1517
|
3837 |
msgid "Unlock the Publisher Report and Focus on the Content That Matters"
|
3838 |
msgstr ""
|
3839 |
|
3840 |
+
#: languages/vue.php:1520
|
3841 |
msgid "See Your Top Landing Pages to Improve Engagement"
|
3842 |
msgstr ""
|
3843 |
|
3844 |
+
#: languages/vue.php:1523
|
3845 |
msgid "See Your Top Exit Pages to Reduce Abandonment"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: languages/vue.php:1526
|
3849 |
msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: languages/vue.php:1529
|
3853 |
msgid "See Your Top Affiliate Links and Focus on what’s working"
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: languages/vue.php:1532
|
3857 |
msgid "See Your Top Downloads and Improve Conversions"
|
3858 |
msgstr ""
|
3859 |
|
3860 |
+
#: languages/vue.php:1535
|
3861 |
msgid "See Audience Demographic Report (Age / Gender / Interests)"
|
3862 |
msgstr ""
|
3863 |
|
3864 |
#. Translators: Placeholders are used for making text bold and adding a link.
|
3865 |
+
#: languages/vue.php:1539
|
3866 |
msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
|
3867 |
msgstr ""
|
3868 |
|
3869 |
+
#: languages/vue.php:1542
|
3870 |
msgid "Recommended Addons"
|
3871 |
msgstr ""
|
3872 |
|
3873 |
#. Translators: Add a link to upgrade and make the text green.
|
3874 |
+
#: languages/vue.php:1546
|
3875 |
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!"
|
3876 |
msgstr ""
|
3877 |
|
3878 |
+
#: languages/vue.php:1549
|
3879 |
msgid "Upgrade to PRO Now"
|
3880 |
msgstr ""
|
3881 |
|
3882 |
+
#: languages/vue.php:1552
|
3883 |
msgid "See who’s viewing and submitting your forms, so you can increase your converion rate. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: languages/vue.php:1555
|
3887 |
msgid "See All Your Important Store Metrics in One Place. Lorem ipsum dolor sit amet, consectetur adipiscing elit."
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: languages/vue.php:1558
|
3891 |
msgid "... and more:"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: languages/vue.php:1561
|
3895 |
msgid "Dimensions- Track authors, categories, trags, searches, users and more."
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: languages/vue.php:1564
|
3899 |
msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
|
3900 |
msgstr ""
|
3901 |
|
3902 |
+
#: languages/vue.php:1567
|
3903 |
msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
|
3904 |
msgstr ""
|
3905 |
|
3906 |
+
#: languages/vue.php:1570
|
3907 |
msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
|
3908 |
msgstr ""
|
3909 |
|
3910 |
+
#: languages/vue.php:1573
|
3911 |
msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
|
3912 |
msgstr ""
|
3913 |
|
3914 |
+
#: languages/vue.php:1576
|
3915 |
msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
|
3916 |
msgstr ""
|
3917 |
|
3918 |
+
#: languages/vue.php:1579
|
3919 |
msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
|
3920 |
msgstr ""
|
3921 |
|
3922 |
+
#: languages/vue.php:1582
|
3923 |
msgid "Ads- See who’s clicking on your Google Adsense banner ads."
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: languages/vue.php:1588
|
3927 |
msgid "Search Addons"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
#. Translators: Error status and error text.
|
3931 |
+
#: languages/vue.php:1592
|
3932 |
msgid "Can't deactivate the license. Error: %1$s, %2$s"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
#. Translators: Error status and error text.
|
3936 |
+
#: languages/vue.php:1596
|
3937 |
msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: languages/vue.php:1599
|
3941 |
msgid "You appear to be offline."
|
3942 |
msgstr ""
|
3943 |
|
3944 |
#. Translators: Error status and error text.
|
3945 |
+
#: languages/vue.php:1603
|
3946 |
msgid "Can't load license details. Error: %1$s, %2$s"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#: languages/vue.php:1606
|
3950 |
msgid "Error loading license details"
|
3951 |
msgstr ""
|
3952 |
|
3953 |
#. Translators: Error status and error text.
|
3954 |
+
#: languages/vue.php:1610
|
3955 |
msgid "Can't verify the license. Error: %1$s, %2$s"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
#. Translators: Error status and error text.
|
3959 |
+
#: languages/vue.php:1614
|
3960 |
msgid "Can't validate the license. Error: %1$s, %2$s"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: languages/vue.php:1617
|
3964 |
msgid "Last 30 Days Analytics for "
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: languages/vue.php:1620
|
3968 |
msgid "Your Website"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: languages/vue.php:1623
|
3972 |
msgid "Avg. Duration"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: languages/vue.php:1626
|
3976 |
msgid "More data is available"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
+
#: languages/vue.php:1629
|
3980 |
msgid "Want to see page-specific stats?"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: languages/vue.php:1632
|
3984 |
msgid "You appear to be offline. WPForms not installed."
|
3985 |
msgstr ""
|
3986 |
|
3987 |
#. Translators: Error status and error text.
|
3988 |
+
#: languages/vue.php:1636
|
3989 |
msgid "Can't activate addon. Error: %1$s, %2$s"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: languages/vue.php:1639
|
3993 |
msgid "You appear to be offline. Addon not activated."
|
3994 |
msgstr ""
|
3995 |
|
3996 |
#. Translators: Error status and error text.
|
3997 |
+
#: languages/vue.php:1643
|
3998 |
msgid "Can't deactivate addon. Error: %1$s, %2$s"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: languages/vue.php:1646
|
4002 |
msgid "You appear to be offline. Addon not deactivated."
|
4003 |
msgstr ""
|
4004 |
|
4005 |
#. Translators: Error status and error text.
|
4006 |
+
#: languages/vue.php:1650
|
4007 |
msgid "Can't install plugin. Error: %1$s, %2$s"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: languages/vue.php:1653
|
4011 |
msgid "You appear to be offline. Plugin not installed."
|
4012 |
msgstr ""
|
4013 |
|
4014 |
#. Translators: Error status and error text.
|
4015 |
+
#: languages/vue.php:1657
|
4016 |
msgid "Can't install addon. Error: %1$s, %2$s"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: languages/vue.php:1660
|
4020 |
msgid "You appear to be offline. Addon not installed."
|
4021 |
msgstr ""
|
4022 |
|
4023 |
#. Translators: Error status and error text.
|
4024 |
+
#: languages/vue.php:1664
|
4025 |
msgid "Can't install WPForms. Error: %1$s, %2$s"
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: languages/vue.php:1667
|
4029 |
msgid "Installing Addon"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
+
#: languages/vue.php:1670
|
4033 |
msgid "Activating Addon"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: languages/vue.php:1673
|
4037 |
msgid "Addon Activated"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: languages/vue.php:1676
|
4041 |
msgid "Loading report data"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: languages/vue.php:1679
|
4045 |
msgid "Please activate manually"
|
4046 |
msgstr ""
|
4047 |
|
4048 |
#. Translators: Adds the error status and status text.
|
4049 |
+
#: languages/vue.php:1683
|
4050 |
msgid "Error: %1$s, %2$s"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: languages/vue.php:1686
|
4054 |
msgid "Error Activating Addon"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: languages/vue.php:1692
|
4058 |
msgid "Dismiss"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
+
#: languages/vue.php:1695
|
4062 |
msgid "Redirecting"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: languages/vue.php:1698
|
4066 |
msgid "Please wait"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: languages/vue.php:1701
|
4070 |
msgid "activate"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: languages/vue.php:1704
|
4074 |
msgid "install"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: languages/vue.php:1707
|
4078 |
msgid "Visit addons page"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: languages/vue.php:1710
|
4082 |
msgid "Report Unavailable"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
#. Translators: Install/Activate the addon.
|
4086 |
+
#: languages/vue.php:1714
|
4087 |
msgid "%s Addon"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
+
#: languages/vue.php:1717
|
4091 |
msgid "Go Back To Reports"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
+
#: languages/vue.php:1720
|
4095 |
msgid "Enable Enhanced eCommerce"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: languages/vue.php:1723
|
4099 |
msgid "Help Us Improve"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: languages/vue.php:1726
|
4103 |
msgid "Help us better understand our users and their website needs."
|
4104 |
msgstr ""
|
4105 |
|
4106 |
#. Translators: Adds a link to the documentation.
|
4107 |
+
#: languages/vue.php:1730
|
4108 |
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"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: languages/vue.php:1733
|
4112 |
msgid "License Key"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
#. Translators: Makes text bold and adds smiley.
|
4116 |
+
#: languages/vue.php:1737
|
4117 |
msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
#. Translators: Makes text green.
|
4121 |
+
#: languages/vue.php:1741
|
4122 |
msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
|
4123 |
msgstr ""
|
4124 |
|
4125 |
+
#: languages/vue.php:1744
|
4126 |
msgid "Unlock All Features and Upgrade to Pro"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
+
#: languages/vue.php:1747
|
4130 |
+
#: languages/vue.php:2132
|
4131 |
msgid "Connect ExactMetrics"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
+
#: languages/vue.php:1750
|
4135 |
msgid "Website profile"
|
4136 |
msgstr ""
|
4137 |
|
4138 |
+
#: languages/vue.php:1753
|
4139 |
msgid "Active profile"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: languages/vue.php:1756
|
4143 |
msgid "Your website profile has been set at the network level of your WordPress Multisite."
|
4144 |
msgstr ""
|
4145 |
|
4146 |
+
#: languages/vue.php:1759
|
4147 |
msgid "If you would like to use a different profile for this subsite, you can authenticate below."
|
4148 |
msgstr ""
|
4149 |
|
4150 |
+
#: languages/vue.php:1762
|
4151 |
msgid "Skip and Keep Connection"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
+
#: languages/vue.php:1765
|
4155 |
msgid "Authenticating"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: languages/vue.php:1768
|
4159 |
msgid "New"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: languages/vue.php:1771
|
4163 |
msgid "Returning"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
+
#: languages/vue.php:1774
|
4167 |
msgid "Desktop"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
+
#: languages/vue.php:1777
|
4171 |
msgid "Tablet"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
+
#: languages/vue.php:1780
|
4175 |
msgid "Mobile"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
+
#: languages/vue.php:1783
|
4179 |
msgid "Top 10 Countries"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: languages/vue.php:1786
|
4183 |
msgid "View Countries Report"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: languages/vue.php:1789
|
4187 |
msgid "Top 10 Referrals"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
+
#: languages/vue.php:1792
|
4191 |
msgid "View All Referral Sources"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
+
#: languages/vue.php:1795
|
4195 |
msgid "View Full Posts/Pages Report"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
+
#: languages/vue.php:1798
|
4199 |
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."
|
4200 |
msgstr ""
|
4201 |
|
4202 |
+
#: languages/vue.php:1801
|
4203 |
msgid "This list shows the top countries your website visitors are from."
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: languages/vue.php:1804
|
4207 |
msgid "This list shows the top websites that send your website traffic, known as referral traffic."
|
4208 |
msgstr ""
|
4209 |
|
4210 |
+
#: languages/vue.php:1807
|
4211 |
msgid "No options available"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
+
#: languages/vue.php:1810
|
4215 |
msgid "Network Active"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
+
#: languages/vue.php:1813
|
4219 |
msgid "Active"
|
4220 |
msgstr ""
|
4221 |
|
4222 |
+
#: languages/vue.php:1816
|
4223 |
msgid "Inactive"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
#. Translators: Placeholder for the addon status (installed, active, etc).
|
4227 |
+
#: languages/vue.php:1820
|
4228 |
msgid "Status: %s"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
+
#: languages/vue.php:1823
|
4232 |
msgid "Not Installed"
|
4233 |
msgstr ""
|
4234 |
|
4235 |
#. Translators: The name of the field that is throwing a validation error.
|
4236 |
+
#: languages/vue.php:1827
|
4237 |
msgid "%s can't be empty."
|
4238 |
msgstr ""
|
4239 |
|
4240 |
+
#: languages/vue.php:1830
|
4241 |
msgid "Duplicate values are not allowed."
|
4242 |
msgstr ""
|
4243 |
|
4244 |
+
#: languages/vue.php:1833
|
4245 |
msgid "Add Another Link Path"
|
4246 |
msgstr ""
|
4247 |
|
4248 |
+
#: languages/vue.php:1836
|
4249 |
msgid "Remove row"
|
4250 |
msgstr ""
|
4251 |
|
4252 |
+
#: languages/vue.php:1839
|
4253 |
msgid "Proceed"
|
4254 |
msgstr ""
|
4255 |
|
4256 |
+
#: languages/vue.php:1842
|
4257 |
msgid "Connection Information"
|
4258 |
msgstr ""
|
4259 |
|
4260 |
+
#: languages/vue.php:1845
|
4261 |
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."
|
4262 |
msgstr ""
|
4263 |
|
4264 |
+
#: languages/vue.php:1848
|
4265 |
msgid "Hostname"
|
4266 |
msgstr ""
|
4267 |
|
4268 |
+
#: languages/vue.php:1851
|
4269 |
msgid "FTP Username"
|
4270 |
msgstr ""
|
4271 |
|
4272 |
+
#: languages/vue.php:1854
|
4273 |
msgid "FTP Password"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
+
#: languages/vue.php:1857
|
4277 |
msgid "This password will not be stored on the server."
|
4278 |
msgstr ""
|
4279 |
|
4280 |
+
#: languages/vue.php:1860
|
4281 |
msgid "Connection Type"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: languages/vue.php:1863
|
4285 |
msgid "Cancel"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
+
#: languages/vue.php:1866
|
4289 |
msgid "Reset to default"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
+
#: languages/vue.php:1869
|
4293 |
msgid "The value entered does not match the required format"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
+
#: languages/vue.php:1872
|
4297 |
msgid "Google AMP"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
+
#: languages/vue.php:1875
|
4301 |
msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
|
4302 |
msgstr ""
|
4303 |
|
4304 |
+
#: languages/vue.php:1878
|
4305 |
msgid "Facebook Instant Articles"
|
4306 |
msgstr ""
|
4307 |
|
4308 |
+
#: languages/vue.php:1881
|
4309 |
msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
|
4310 |
msgstr ""
|
4311 |
|
4312 |
+
#: languages/vue.php:1884
|
4313 |
msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
|
4314 |
msgstr ""
|
4315 |
|
4316 |
+
#: languages/vue.php:1887
|
4317 |
msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
|
4318 |
msgstr ""
|
4319 |
|
4320 |
+
#: languages/vue.php:1890
|
4321 |
msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
|
4322 |
msgstr ""
|
4323 |
|
4324 |
+
#: languages/vue.php:1893
|
4325 |
msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
|
4326 |
msgstr ""
|
4327 |
|
4328 |
+
#: languages/vue.php:1896
|
4329 |
msgid "Use Google Optimize to easily perform A/B split tests on your site."
|
4330 |
msgstr ""
|
4331 |
|
4332 |
+
#: languages/vue.php:1899
|
4333 |
msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
|
4334 |
msgstr ""
|
4335 |
|
4336 |
+
#: languages/vue.php:1902
|
4337 |
msgid "Unlock search console report to see your top performing keywords in Google."
|
4338 |
msgstr ""
|
4339 |
|
4340 |
+
#: languages/vue.php:1905
|
4341 |
msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
|
4342 |
msgstr ""
|
4343 |
|
4344 |
+
#: languages/vue.php:1908
|
4345 |
msgid "Publishers Report shows your top performing pages, audience demographics, and more."
|
4346 |
msgstr ""
|
4347 |
|
4348 |
+
#: languages/vue.php:1911
|
4349 |
msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
|
4350 |
msgstr ""
|
4351 |
|
4352 |
+
#: languages/vue.php:1914
|
4353 |
msgid "Upgrade to Pro »"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
+
#: languages/vue.php:1917
|
4357 |
msgid "Pro Tip:"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
#. Translators: Number of days.
|
4361 |
+
#: languages/vue.php:1921
|
4362 |
msgid "vs. Previous Day"
|
4363 |
msgstr ""
|
4364 |
|
4365 |
+
#: languages/vue.php:1924
|
4366 |
msgid "No change"
|
4367 |
msgstr ""
|
4368 |
|
4369 |
+
#: languages/vue.php:1927
|
4370 |
msgid "Ads Tracking"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: languages/vue.php:1930
|
4374 |
msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
|
4375 |
msgstr ""
|
4376 |
|
4377 |
+
#: languages/vue.php:1933
|
4378 |
msgid ""
|
4379 |
"The EU Compliance addon allows you to improve compliance with GDPR\n"
|
4380 |
" and other privacy regulations."
|
4381 |
msgstr ""
|
4382 |
|
4383 |
+
#: languages/vue.php:1937
|
4384 |
msgid "EU Compliance"
|
4385 |
msgstr ""
|
4386 |
|
4387 |
#. Translators: Error status and error text.
|
4388 |
+
#: languages/vue.php:1941
|
4389 |
msgid "Can't load errors. Error: %1$s, %2$s"
|
4390 |
msgstr ""
|
4391 |
|
4392 |
#. Translators: Error status and error text.
|
4393 |
+
#: languages/vue.php:1945
|
4394 |
msgid "Can't load settings. Error: %1$s, %2$s"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
#. Translators: Error status and error text.
|
4398 |
+
#: languages/vue.php:1949
|
4399 |
msgid "Can't save settings. Error: %1$s, %2$s"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: languages/vue.php:1952
|
4403 |
msgid "Network error encountered. Settings not saved."
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: languages/vue.php:1955
|
4407 |
msgid "Scroll Tracking"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#: languages/vue.php:1958
|
4411 |
msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: languages/vue.php:1961
|
4415 |
msgid "Performance"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
+
#: languages/vue.php:1964
|
4419 |
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."
|
4420 |
msgstr ""
|
4421 |
|
4422 |
+
#: languages/vue.php:1967
|
4423 |
msgid "Miscellaneous"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
+
#: languages/vue.php:1970
|
4427 |
msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
|
4428 |
msgstr ""
|
4429 |
|
4430 |
+
#: languages/vue.php:1973
|
4431 |
msgid "Hide Announcements"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: languages/vue.php:1976
|
4435 |
msgid "Usage Tracking"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
+
#: languages/vue.php:1979
|
4439 |
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."
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: languages/vue.php:1982
|
4443 |
msgid "Allow usage tracking"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
#. Translators: Adds a link to the documentation.
|
4447 |
+
#: languages/vue.php:1986
|
4448 |
msgid "Complete documentation on usage tracking is available %1$shere%2$s."
|
4449 |
msgstr ""
|
4450 |
|
4451 |
+
#: languages/vue.php:1989
|
4452 |
msgid "Hide dashboard widget"
|
4453 |
msgstr ""
|
4454 |
|
4455 |
+
#: languages/vue.php:1992
|
4456 |
msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
|
4457 |
msgstr ""
|
4458 |
|
4459 |
+
#: languages/vue.php:1995
|
4460 |
msgid "Yes, hide it!"
|
4461 |
msgstr ""
|
4462 |
|
4463 |
+
#: languages/vue.php:1998
|
4464 |
msgid "No, cancel!"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
+
#: languages/vue.php:2001
|
4468 |
msgid "ExactMetrics Widget Hidden"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
+
#: languages/vue.php:2004
|
4472 |
msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
|
4473 |
msgstr ""
|
4474 |
|
4475 |
#. Translators: Adds link to the account area to retreive license key.
|
4476 |
+
#: languages/vue.php:2008
|
4477 |
msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
|
4478 |
msgstr ""
|
4479 |
|
4480 |
+
#: languages/vue.php:2011
|
4481 |
msgid "Paste your license key here"
|
4482 |
msgstr ""
|
4483 |
|
4484 |
+
#: languages/vue.php:2014
|
4485 |
msgid "Google Authentication"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
+
#: languages/vue.php:2017
|
4489 |
msgid "Verify"
|
4490 |
msgstr ""
|
4491 |
|
4492 |
+
#: languages/vue.php:2020
|
4493 |
msgid "Setup Wizard"
|
4494 |
msgstr ""
|
4495 |
|
4496 |
+
#: languages/vue.php:2023
|
4497 |
msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
|
4498 |
msgstr ""
|
4499 |
|
4500 |
+
#: languages/vue.php:2026
|
4501 |
msgid "Relaunch Setup Wizard"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
+
#: languages/vue.php:2029
|
4505 |
msgid "Connect ExactMetrics to Start Tracking Your Data"
|
4506 |
msgstr ""
|
4507 |
|
4508 |
+
#: languages/vue.php:2032
|
4509 |
msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
|
4510 |
msgstr ""
|
4511 |
|
4512 |
+
#. Translators: Make text bold.
|
4513 |
+
#: languages/vue.php:2036
|
4514 |
msgid "To unlock more features consider %1$supgrading to PRO%2$s."
|
4515 |
msgstr ""
|
4516 |
|
4517 |
+
#: languages/vue.php:2039
|
4518 |
msgid "Receive 50% off automatically applied at the checkout!"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
+
#: languages/vue.php:2042
|
4522 |
msgid "See all features"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
+
#: languages/vue.php:2045
|
4526 |
msgid "Complete Upgrade"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
+
#: languages/vue.php:2048
|
4530 |
msgid "Upgrade to Pro Version!"
|
4531 |
msgstr ""
|
4532 |
|
4533 |
#. Translators: Make text bold.
|
4534 |
+
#: languages/vue.php:2052
|
4535 |
msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
|
4536 |
msgstr ""
|
4537 |
|
4538 |
+
#: languages/vue.php:2055
|
4539 |
msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
|
4540 |
msgstr ""
|
4541 |
|
4542 |
+
#: languages/vue.php:2058
|
4543 |
msgid "Activating..."
|
4544 |
msgstr ""
|
4545 |
|
4546 |
+
#: languages/vue.php:2061
|
4547 |
msgid "Deactivating..."
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: languages/vue.php:2064
|
4551 |
msgid "Deactivate"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: languages/vue.php:2067
|
4555 |
msgid "Upgrade"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
#. Translators: Make text green.
|
4559 |
+
#: languages/vue.php:2071
|
4560 |
msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
+
#: languages/vue.php:2074
|
4564 |
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!"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#: languages/vue.php:2077
|
4568 |
msgid "To unlock more features consider upgrading to PRO."
|
4569 |
msgstr ""
|
4570 |
|
4571 |
+
#: languages/vue.php:2080
|
4572 |
msgid "Upgrade to"
|
4573 |
msgstr ""
|
4574 |
|
4575 |
+
#: languages/vue.php:2083
|
4576 |
msgid "Last 30 days"
|
4577 |
msgstr ""
|
4578 |
|
4579 |
#. Translators: Add link to retrieve license key from account.
|
4580 |
+
#: languages/vue.php:2087
|
4581 |
msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
|
4582 |
msgstr ""
|
4583 |
|
4584 |
#. Translators: Error status and error text.
|
4585 |
+
#: languages/vue.php:2091
|
4586 |
msgid "Can't deauthenticate. Error: %1$s, %2$s"
|
4587 |
msgstr ""
|
4588 |
|
4589 |
+
#: languages/vue.php:2094
|
4590 |
msgid "You appear to be offline. Settings not saved."
|
4591 |
msgstr ""
|
4592 |
|
4593 |
#. Translators: Error status and error text.
|
4594 |
+
#: languages/vue.php:2098
|
4595 |
msgid "Can't load authentication details. Error: %1$s, %2$s"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
#. Translators: Error status and error text.
|
4599 |
+
#: languages/vue.php:2102
|
4600 |
msgid "Can't authenticate. Error: %1$s, %2$s"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
#. Translators: Error status and error text.
|
4604 |
+
#: languages/vue.php:2106
|
4605 |
msgid "Can't reauthenticate. Error: %1$s, %2$s"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
#. Translators: Error status and error text.
|
4609 |
+
#: languages/vue.php:2110
|
4610 |
msgid "Can't verify credentials. Error: %1$s, %2$s"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
+
#: languages/vue.php:2113
|
4614 |
msgid "Show"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
#. Translators: The number of results.
|
4618 |
+
#: languages/vue.php:2117
|
4619 |
msgid "%s results"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: languages/vue.php:2120
|
4623 |
msgid "Verifying Credentials"
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: languages/vue.php:2123
|
4627 |
msgid "Your site is connected to ExactMetrics!"
|
4628 |
msgstr ""
|
4629 |
|
4630 |
+
#: languages/vue.php:2126
|
4631 |
msgid "Deauthenticating"
|
4632 |
msgstr ""
|
4633 |
|
4634 |
+
#: languages/vue.php:2129
|
4635 |
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."
|
4636 |
msgstr ""
|
4637 |
|
4638 |
+
#: languages/vue.php:2135
|
4639 |
msgid "Verify Credentials"
|
4640 |
msgstr ""
|
4641 |
|
4642 |
+
#: languages/vue.php:2141
|
4643 |
msgid "Website Profile"
|
4644 |
msgstr ""
|
4645 |
|
4646 |
+
#: languages/vue.php:2144
|
4647 |
msgid "Active Profile"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#: languages/vue.php:2147
|
4651 |
msgid "Force Deauthenticate"
|
4652 |
msgstr ""
|
4653 |
|
4654 |
+
#: languages/vue.php:2150
|
4655 |
msgid "Disconnect ExactMetrics"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
#. Translators: Make text bold.
|
4659 |
+
#: languages/vue.php:2154
|
4660 |
msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy!"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
+
#: languages/vue.php:2157
|
4664 |
msgid "On the next step you will need to re-authenticate with Google Analytics"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
+
#: languages/vue.php:2160
|
4668 |
msgid "On the next step you will need to re-authenticate with Google Analytics, please see our post to learn why (don't worry"
|
4669 |
msgstr ""
|
4670 |
|
4671 |
+
#: languages/vue.php:2163
|
4672 |
msgid "On the next step you will need to re-authenticate with Google Analytics, please see our post to learn why (don't worry your site will continue tracking until you do this)."
|
4673 |
msgstr ""
|
4674 |
|
4675 |
+
#: languages/vue.php:2166
|
4676 |
msgid "On the next step you will need to re-authenticate with Google Analytics, please see %1$sour post%2$s to learn why (don't worry your site will continue tracking until you do this)."
|
4677 |
msgstr ""
|
4678 |
|
4679 |
+
#: languages/vue.php:2169
|
4680 |
msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
|
4681 |
msgstr ""
|
4682 |
|
4683 |
+
#: languages/vue.php:2172
|
4684 |
msgid "See All Your Important Store Metrics in One Place."
|
4685 |
msgstr ""
|
4686 |
|
4687 |
+
#: languages/vue.php:2175
|
4688 |
msgid "On the next step, you will be asked to re-authenticate with Google Analytics. Please see our detailed post to learn why we need your help %1$shere%2$s. 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."
|
4689 |
msgstr ""
|
4690 |
|
4691 |
+
#: languages/vue.php:2178
|
4692 |
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."
|
4693 |
msgstr ""
|
4694 |
|
4695 |
+
#: languages/vue.php:2181
|
4696 |
+
msgid "Desktop Visitors"
|
4697 |
+
msgstr ""
|
4698 |
+
|
4699 |
+
#: languages/vue.php:2184
|
4700 |
+
msgid "Tablet Visitors"
|
4701 |
+
msgstr ""
|
4702 |
+
|
4703 |
+
#: languages/vue.php:2187
|
4704 |
+
msgid "Mobile Visitors"
|
4705 |
+
msgstr ""
|
4706 |
+
|
4707 |
+
#. Translators: add link to blog.
|
4708 |
+
#: languages/vue.php:2191
|
4709 |
+
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."
|
4710 |
+
msgstr ""
|
4711 |
+
|
4712 |
+
#: languages/vue.php:2194
|
4713 |
+
msgid "New Visitors"
|
4714 |
+
msgstr ""
|
4715 |
+
|
4716 |
+
#: languages/vue.php:2197
|
4717 |
+
msgid "Returning Visitors"
|
4718 |
+
msgstr ""
|
4719 |
+
|
4720 |
+
#: languages/vue.php:2200
|
4721 |
+
msgid "Check out the newly added compact mode"
|
4722 |
+
msgstr ""
|
4723 |
+
|
4724 |
+
#: languages/vue.php:2203
|
4725 |
+
msgid "Classic mode"
|
4726 |
+
msgstr ""
|
4727 |
+
|
4728 |
+
#: languages/vue.php:2206
|
4729 |
+
msgid "Check out the newly added classic mode"
|
4730 |
+
msgstr ""
|
4731 |
+
|
4732 |
#: exactmetrics.php:228
|
4733 |
#: exactmetrics.php:242
|
4734 |
#: googleanalytics.php:254
|
languages/vue.php
CHANGED
@@ -1,17 +1,20 @@
|
|
1 |
<?php
|
2 |
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
|
3 |
$generated_i18n_strings = array(
|
4 |
-
// Reference: src/modules/
|
5 |
-
// Reference: src/
|
|
|
6 |
__( 'Error', 'google-analytics-dashboard-for-wp' ),
|
7 |
|
8 |
-
// Reference: src/plugins/exactmetrics-
|
9 |
__( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
|
10 |
|
11 |
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:112
|
12 |
__( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
|
13 |
|
14 |
-
// Reference: src/
|
|
|
|
|
15 |
__( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
|
16 |
|
17 |
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
|
@@ -44,10 +47,10 @@ $generated_i18n_strings = array(
|
|
44 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:184
|
45 |
__( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
|
46 |
|
47 |
-
// Reference: src/
|
48 |
__( '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' ),
|
49 |
|
50 |
-
// Reference: src/
|
51 |
__( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-dashboard-for-wp' ),
|
52 |
|
53 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
|
@@ -59,13 +62,15 @@ $generated_i18n_strings = array(
|
|
59 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:193
|
60 |
__( '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' ),
|
61 |
|
|
|
62 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:196
|
63 |
__( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
|
64 |
|
|
|
65 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
|
66 |
__( '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' ),
|
67 |
|
68 |
-
// Reference: src/
|
69 |
__( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
|
70 |
|
71 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
|
@@ -87,7 +92,8 @@ $generated_i18n_strings = array(
|
|
87 |
/* Translators: Placeholder gets replaced with an arrow icon. */
|
88 |
__( 'Get Started %s', 'google-analytics-dashboard-for-wp' ),
|
89 |
|
90 |
-
// Reference: src/modules/
|
|
|
91 |
__( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
|
92 |
|
93 |
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:27
|
@@ -151,82 +157,70 @@ $generated_i18n_strings = array(
|
|
151 |
__( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
|
152 |
|
153 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:41
|
154 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:145
|
155 |
__( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
|
156 |
|
157 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:42
|
158 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:146
|
159 |
__( 'per year', 'google-analytics-dashboard-for-wp' ),
|
160 |
|
161 |
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
|
|
|
162 |
__( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
|
163 |
|
164 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
|
165 |
__( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
|
166 |
|
167 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:63
|
168 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:153
|
169 |
__( '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!', 'google-analytics-dashboard-for-wp' ),
|
170 |
|
171 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:64
|
172 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:154
|
173 |
__( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
|
174 |
|
175 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:68
|
176 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
|
177 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
178 |
|
179 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:69
|
180 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:159
|
181 |
__( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
|
182 |
|
183 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:73
|
184 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:163
|
185 |
__( '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!', 'google-analytics-dashboard-for-wp' ),
|
186 |
|
187 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:74
|
188 |
-
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:164
|
189 |
__( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
|
190 |
|
191 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
|
192 |
__( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
|
193 |
|
194 |
-
// Reference: src/modules/
|
195 |
-
// Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
|
196 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:33
|
197 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:127
|
198 |
__( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
|
199 |
|
200 |
-
// Reference: src/modules/
|
201 |
-
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:42
|
202 |
__( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
|
203 |
|
204 |
-
// Reference: src/modules/
|
205 |
-
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:44
|
206 |
__( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
|
207 |
|
208 |
-
// Reference: src/modules/wizard-onboarding/components/
|
209 |
__( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
210 |
|
211 |
-
// Reference: src/modules/wizard-onboarding/components/
|
212 |
__( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
|
213 |
|
214 |
-
// Reference: src/modules/wizard-onboarding/components/
|
215 |
__( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
|
216 |
|
217 |
-
// Reference: src/modules/wizard-onboarding/components/
|
218 |
__( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
|
219 |
|
220 |
-
// Reference: src/modules/wizard-onboarding/components/
|
221 |
__( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
|
222 |
|
223 |
-
// Reference: src/modules/wizard-onboarding/components/
|
224 |
__( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
|
225 |
|
226 |
-
// Reference: src/modules/wizard-onboarding/components/
|
227 |
__( 'Search Console', 'google-analytics-dashboard-for-wp' ),
|
228 |
|
229 |
-
// Reference: src/modules/wizard-onboarding/components/
|
230 |
__( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
|
231 |
|
232 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
|
@@ -244,7 +238,6 @@ $generated_i18n_strings = array(
|
|
244 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
|
245 |
__( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
|
246 |
|
247 |
-
// Reference: src/components/ContentIntroFullWidth.vue:46
|
248 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:90
|
249 |
__( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
|
250 |
|
@@ -284,15 +277,16 @@ $generated_i18n_strings = array(
|
|
284 |
/* Translators: Placeholder is replaced with WPForms. */
|
285 |
__( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
|
286 |
|
287 |
-
// Reference: src/modules/
|
288 |
__( 'Install', 'google-analytics-dashboard-for-wp' ),
|
289 |
|
290 |
-
// Reference: src/modules/
|
291 |
__( 'Activate', 'google-analytics-dashboard-for-wp' ),
|
292 |
|
293 |
-
// Reference: src/modules/
|
294 |
__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
|
295 |
|
|
|
296 |
// Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:27
|
297 |
/* Translators: Gets replaced with the number of days. */
|
298 |
__( 'Last %s days', 'google-analytics-dashboard-for-wp' ),
|
@@ -307,57 +301,66 @@ $generated_i18n_strings = array(
|
|
307 |
__( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
308 |
|
309 |
// Reference: src/modules/reports/components/ReportReAuth.vue:30
|
|
|
310 |
__( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
|
311 |
|
312 |
// Reference: src/modules/reports/components/ReportReAuth.vue:47
|
313 |
__( 'Ok', 'google-analytics-dashboard-for-wp' ),
|
314 |
|
315 |
-
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:
|
316 |
__( 'Analytics', 'google-analytics-dashboard-for-wp' ),
|
317 |
|
318 |
-
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:
|
|
|
319 |
/* Translators: Adds an arrow icon. */
|
320 |
__( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
|
321 |
|
|
|
322 |
// Reference: src/modules/settings/routes/network.js:35
|
|
|
323 |
__( 'About Us', 'google-analytics-dashboard-for-wp' ),
|
324 |
|
|
|
325 |
// Reference: src/modules/settings/routes/network.js:43
|
|
|
326 |
__( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
|
327 |
|
328 |
-
// Reference: src/modules/about/components/
|
329 |
// Reference: src/modules/settings/routes/network.js:52
|
|
|
330 |
__( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
|
331 |
|
332 |
-
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:
|
333 |
// Reference: src/modules/settings/routes/site.js:29
|
334 |
__( 'General', 'google-analytics-dashboard-for-wp' ),
|
335 |
|
336 |
-
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:
|
337 |
// Reference: src/modules/settings/routes/site.js:37
|
338 |
__( 'Engagement', 'google-analytics-dashboard-for-wp' ),
|
339 |
|
340 |
-
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:
|
341 |
-
// Reference: src/modules/
|
|
|
342 |
// Reference: src/modules/settings/routes/site.js:45
|
343 |
__( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
|
344 |
|
345 |
-
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:
|
346 |
// Reference: src/modules/settings/routes/site.js:53
|
347 |
__( 'Publisher', 'google-analytics-dashboard-for-wp' ),
|
348 |
|
349 |
-
// Reference: src/modules/settings/components/tabs/
|
|
|
350 |
// Reference: src/modules/settings/routes/site.js:61
|
351 |
__( 'Conversions', 'google-analytics-dashboard-for-wp' ),
|
352 |
|
353 |
-
// Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:
|
354 |
// Reference: src/modules/settings/routes/site.js:69
|
355 |
__( 'Advanced', 'google-analytics-dashboard-for-wp' ),
|
356 |
|
357 |
-
// Reference: src/modules/
|
358 |
__( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
|
359 |
|
360 |
-
// Reference: src/modules/
|
361 |
__( 'Import Export', 'google-analytics-dashboard-for-wp' ),
|
362 |
|
363 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBelowContent.vue:17
|
@@ -370,20 +373,23 @@ $generated_i18n_strings = array(
|
|
370 |
// Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
|
371 |
__( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
|
372 |
|
373 |
-
// Reference: src/modules/widget/store/index.js:
|
374 |
__( 'Overview', 'google-analytics-dashboard-for-wp' ),
|
375 |
|
376 |
-
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:
|
377 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:30
|
|
|
378 |
__( 'Publishers', 'google-analytics-dashboard-for-wp' ),
|
379 |
|
380 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:54
|
381 |
__( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
|
382 |
|
383 |
-
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:
|
|
|
384 |
__( 'Forms', 'google-analytics-dashboard-for-wp' ),
|
385 |
|
386 |
-
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:
|
|
|
387 |
__( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
|
388 |
|
389 |
// Reference: src/components/TheQuickLinks.vue:31
|
@@ -401,79 +407,85 @@ $generated_i18n_strings = array(
|
|
401 |
// Reference: src/components/TheQuickLinks.vue:78
|
402 |
__( 'Upgrade to Pro »', 'google-analytics-dashboard-for-wp' ),
|
403 |
|
404 |
-
// Reference: src/modules/widget/store/index.js:
|
405 |
__( 'Time to Purchase', 'google-analytics-dashboard-for-wp' ),
|
406 |
|
407 |
-
// Reference: src/modules/widget/store/index.js:
|
408 |
__( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-dashboard-for-wp' ),
|
409 |
|
410 |
-
// Reference: src/modules/widget/store/index.js:
|
411 |
__( 'Sessions to Purchase', 'google-analytics-dashboard-for-wp' ),
|
412 |
|
413 |
-
// Reference: src/modules/widget/store/index.js:
|
414 |
__( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-dashboard-for-wp' ),
|
415 |
|
416 |
-
// Reference: src/modules/
|
|
|
417 |
__( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
|
418 |
|
419 |
-
// Reference: src/modules/
|
|
|
420 |
__( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
|
421 |
|
422 |
-
// Reference: src/modules/
|
|
|
423 |
__( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
|
424 |
|
425 |
-
// Reference: src/modules/
|
|
|
426 |
__( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
|
427 |
|
428 |
-
// Reference: src/modules/
|
|
|
429 |
__( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
|
430 |
|
431 |
-
// Reference: src/modules/
|
|
|
432 |
__( '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' ),
|
433 |
|
434 |
-
// Reference: src/modules/widget/store/index.js:
|
435 |
__( 'Top Landing Pages', 'google-analytics-dashboard-for-wp' ),
|
436 |
|
437 |
-
// Reference: src/modules/widget/store/index.js:
|
438 |
__( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-dashboard-for-wp' ),
|
439 |
|
440 |
-
// Reference: src/modules/widget/store/index.js:
|
441 |
__( 'Top Exit Pages', 'google-analytics-dashboard-for-wp' ),
|
442 |
|
443 |
-
// Reference: src/modules/widget/store/index.js:
|
444 |
__( 'This list shows the top pages users exit your website from.', 'google-analytics-dashboard-for-wp' ),
|
445 |
|
446 |
-
// Reference: src/modules/widget/store/index.js:
|
447 |
__( 'Top Outbound Links', 'google-analytics-dashboard-for-wp' ),
|
448 |
|
449 |
-
// Reference: src/modules/widget/store/index.js:
|
450 |
__( 'This list shows the top links clicked on your website that go to another website.', 'google-analytics-dashboard-for-wp' ),
|
451 |
|
452 |
-
// Reference: src/modules/widget/store/index.js:
|
453 |
__( 'Top Affiliate Links', 'google-analytics-dashboard-for-wp' ),
|
454 |
|
455 |
-
// Reference: src/modules/widget/store/index.js:
|
456 |
__( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-dashboard-for-wp' ),
|
457 |
|
458 |
-
// Reference: src/modules/widget/store/index.js:
|
459 |
__( 'Top Download Links', 'google-analytics-dashboard-for-wp' ),
|
460 |
|
461 |
-
// Reference: src/modules/widget/store/index.js:
|
462 |
__( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
|
463 |
|
464 |
-
// Reference: src/modules/widget/store/index.js:
|
465 |
__( 'Top Products', 'google-analytics-dashboard-for-wp' ),
|
466 |
|
467 |
-
// Reference: src/modules/widget/store/index.js:
|
468 |
__( 'This list shows the top selling products on your website.', 'google-analytics-dashboard-for-wp' ),
|
469 |
|
470 |
-
// Reference: src/modules/widget/store/index.js:
|
471 |
__( 'Top Conversion Sources', 'google-analytics-dashboard-for-wp' ),
|
472 |
|
473 |
-
// Reference: src/modules/widget/store/index.js:
|
474 |
__( 'This list shows the top referral websites in terms of product revenue.', 'google-analytics-dashboard-for-wp' ),
|
475 |
|
476 |
-
// Reference: src/modules/widget/store/index.js:
|
477 |
__( 'Total Add/Remove', 'google-analytics-dashboard-for-wp' ),
|
478 |
|
479 |
// Reference: src/modules/settings/components/SettingsButtonSave.vue:46
|
@@ -495,13 +507,13 @@ $generated_i18n_strings = array(
|
|
495 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:26
|
496 |
__( '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' ),
|
497 |
|
498 |
-
// Reference: src/modules/
|
499 |
__( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
500 |
|
501 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:28
|
502 |
__( 'Please ask your webmaster to connect ExactMetrics to Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
503 |
|
504 |
-
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:
|
505 |
__( 'Dimensions', 'google-analytics-dashboard-for-wp' ),
|
506 |
|
507 |
// Reference: src/modules/addons/store/actions.js:33
|
@@ -554,10 +566,10 @@ $generated_i18n_strings = array(
|
|
554 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
|
555 |
__( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
|
556 |
|
557 |
-
// Reference: src/modules/settings/components/
|
558 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
|
559 |
|
560 |
-
// Reference: src/modules/settings/components/
|
561 |
__( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
|
562 |
|
563 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
|
@@ -721,16 +733,16 @@ $generated_i18n_strings = array(
|
|
721 |
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:61
|
722 |
__( 'Checking your website...', 'google-analytics-dashboard-for-wp' ),
|
723 |
|
724 |
-
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:
|
725 |
__( 'Show Overview Reports', 'google-analytics-dashboard-for-wp' ),
|
726 |
|
727 |
-
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:
|
728 |
__( 'Show Publishers Reports', 'google-analytics-dashboard-for-wp' ),
|
729 |
|
730 |
-
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:
|
731 |
__( 'Show eCommerce Reports', 'google-analytics-dashboard-for-wp' ),
|
732 |
|
733 |
-
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:
|
734 |
__( 'Available in PRO version', 'google-analytics-dashboard-for-wp' ),
|
735 |
|
736 |
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
@@ -739,7 +751,7 @@ $generated_i18n_strings = array(
|
|
739 |
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
740 |
__( 'Show in full-width mode', 'google-analytics-dashboard-for-wp' ),
|
741 |
|
742 |
-
// Reference: src/modules/
|
743 |
/* Translators: Placeholder adds a line break. */
|
744 |
__( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
|
745 |
|
@@ -759,31 +771,31 @@ $generated_i18n_strings = array(
|
|
759 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:31
|
760 |
__( 'Get an Answer to All Your Top Ecommerce Questions From a Single Report', 'google-analytics-dashboard-for-wp' ),
|
761 |
|
762 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-
|
763 |
__( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
|
764 |
|
765 |
-
// Reference: src/modules/
|
766 |
__( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
|
767 |
|
768 |
-
// Reference: src/modules/
|
769 |
__( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
|
770 |
|
771 |
-
// Reference: src/modules/
|
772 |
__( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
|
773 |
|
774 |
-
// Reference: src/modules/
|
775 |
__( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
|
776 |
|
777 |
-
// Reference: src/modules/
|
778 |
__( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
|
779 |
|
780 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:58
|
781 |
__( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
|
782 |
|
783 |
-
// Reference: src/modules/
|
784 |
__( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
|
785 |
|
786 |
-
// Reference: src/modules/
|
787 |
__( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
|
788 |
|
789 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:56
|
@@ -957,7 +969,7 @@ $generated_i18n_strings = array(
|
|
957 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:88
|
958 |
__( 'Reports', 'google-analytics-dashboard-for-wp' ),
|
959 |
|
960 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-
|
961 |
__( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
|
962 |
|
963 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
|
@@ -1036,7 +1048,7 @@ $generated_i18n_strings = array(
|
|
1036 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:141
|
1037 |
__( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
|
1038 |
|
1039 |
-
// Reference: src/modules/
|
1040 |
__( 'Not Available', 'google-analytics-dashboard-for-wp' ),
|
1041 |
|
1042 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:149
|
@@ -1066,13 +1078,13 @@ $generated_i18n_strings = array(
|
|
1066 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:64
|
1067 |
__( 'Pro', 'google-analytics-dashboard-for-wp' ),
|
1068 |
|
1069 |
-
// Reference: src/modules/about/components/exactmetrics-
|
1070 |
__( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
|
1071 |
|
1072 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
|
1073 |
__( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
1074 |
|
1075 |
-
// Reference: src/modules/
|
1076 |
__( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
1077 |
|
1078 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
|
@@ -1111,36 +1123,36 @@ $generated_i18n_strings = array(
|
|
1111 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:94
|
1112 |
__( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-dashboard-for-wp' ),
|
1113 |
|
1114 |
-
// Reference: src/modules/
|
1115 |
__( 'Sessions', 'google-analytics-dashboard-for-wp' ),
|
1116 |
|
1117 |
-
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:
|
1118 |
/* Translators: Line break. */
|
1119 |
__( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
|
1120 |
|
1121 |
-
// Reference: src/modules/
|
1122 |
__( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
|
1123 |
|
1124 |
-
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:
|
1125 |
/* Translators: Line break. */
|
1126 |
__( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
|
1127 |
|
1128 |
-
// Reference: src/modules/
|
1129 |
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
|
1130 |
|
1131 |
-
// Reference: src/modules/
|
1132 |
__( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-dashboard-for-wp' ),
|
1133 |
|
1134 |
-
// Reference: src/modules/
|
1135 |
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
|
1136 |
|
1137 |
-
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:
|
1138 |
__( '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' ),
|
1139 |
|
1140 |
-
// Reference: src/modules/
|
1141 |
__( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
|
1142 |
|
1143 |
-
// Reference: src/modules/
|
1144 |
__( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
|
1145 |
|
1146 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40
|
@@ -1161,7 +1173,7 @@ $generated_i18n_strings = array(
|
|
1161 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
|
1162 |
__( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
|
1163 |
|
1164 |
-
// Reference: src/modules/
|
1165 |
__( 'Installing...', 'google-analytics-dashboard-for-wp' ),
|
1166 |
|
1167 |
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:33
|
@@ -1258,22 +1270,22 @@ $generated_i18n_strings = array(
|
|
1258 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:32
|
1259 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1260 |
|
1261 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:
|
1262 |
__( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-dashboard-for-wp' ),
|
1263 |
|
1264 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:
|
1265 |
__( 'See Your Top Pages Immediately After Making Changes', 'google-analytics-dashboard-for-wp' ),
|
1266 |
|
1267 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:
|
1268 |
__( 'See Your Top Referral Sources and Adapt Faster', 'google-analytics-dashboard-for-wp' ),
|
1269 |
|
1270 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:
|
1271 |
__( 'See Your Traffic Demographics', 'google-analytics-dashboard-for-wp' ),
|
1272 |
|
1273 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:
|
1274 |
__( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-dashboard-for-wp' ),
|
1275 |
|
1276 |
-
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:
|
1277 |
__( 'See Where Your Visitors are Connecting From (country & city)', 'google-analytics-dashboard-for-wp' ),
|
1278 |
|
1279 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:30
|
@@ -1583,7 +1595,7 @@ $generated_i18n_strings = array(
|
|
1583 |
/* Translators: Error status and error text. */
|
1584 |
__( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1585 |
|
1586 |
-
// Reference: src/modules/
|
1587 |
__( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
|
1588 |
|
1589 |
// Reference: src/modules/license/api/index.js:18
|
@@ -1717,7 +1729,7 @@ $generated_i18n_strings = array(
|
|
1717 |
/* Translators: Adds a link to the documentation. */
|
1718 |
__( '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', 'google-analytics-dashboard-for-wp' ),
|
1719 |
|
1720 |
-
// Reference: src/modules/settings/components/
|
1721 |
__( 'License Key', 'google-analytics-dashboard-for-wp' ),
|
1722 |
|
1723 |
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:29
|
@@ -1740,16 +1752,16 @@ $generated_i18n_strings = array(
|
|
1740 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
|
1741 |
__( 'Active profile', 'google-analytics-dashboard-for-wp' ),
|
1742 |
|
1743 |
-
// Reference: src/modules/
|
1744 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
|
1745 |
|
1746 |
-
// Reference: src/modules/
|
1747 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
|
1748 |
|
1749 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
|
1750 |
__( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
|
1751 |
|
1752 |
-
// Reference: src/modules/
|
1753 |
__( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
|
1754 |
|
1755 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:157
|
@@ -1904,13 +1916,11 @@ $generated_i18n_strings = array(
|
|
1904 |
// Reference: src/modules/widget/components/WidgetTips.vue:70
|
1905 |
__( 'Pro Tip:', 'google-analytics-dashboard-for-wp' ),
|
1906 |
|
1907 |
-
// Reference: src/modules/
|
1908 |
-
// Reference: src/modules/reports/components/ReportInfobox.vue:36
|
1909 |
/* Translators: Number of days. */
|
1910 |
__( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
|
1911 |
|
1912 |
-
// Reference: src/modules/
|
1913 |
-
// Reference: src/modules/reports/components/ReportInfobox.vue:53
|
1914 |
__( 'No change', 'google-analytics-dashboard-for-wp' ),
|
1915 |
|
1916 |
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:25
|
@@ -1954,15 +1964,12 @@ $generated_i18n_strings = array(
|
|
1954 |
__( 'Adjust the sample rate so you don\'t exceed Google Analytics\' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization.', 'google-analytics-dashboard-for-wp' ),
|
1955 |
|
1956 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:41
|
1957 |
-
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:32
|
1958 |
__( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
|
1959 |
|
1960 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:43
|
1961 |
-
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:34
|
1962 |
__( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-dashboard-for-wp' ),
|
1963 |
|
1964 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:44
|
1965 |
-
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:35
|
1966 |
__( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
|
1967 |
|
1968 |
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:36
|
@@ -2003,7 +2010,7 @@ $generated_i18n_strings = array(
|
|
2003 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:107
|
2004 |
__( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
|
2005 |
|
2006 |
-
// Reference: src/modules/settings/components/
|
2007 |
__( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
|
2008 |
|
2009 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:109
|
@@ -2025,15 +2032,13 @@ $generated_i18n_strings = array(
|
|
2025 |
__( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
|
2026 |
|
2027 |
// Reference: src/modules/settings/components/network/exactmetrics-SettingsInputLicenseNetwork-Lite.vue:23
|
2028 |
-
|
2029 |
-
/* Translators: Adds link to upgrade. */
|
2030 |
__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
|
2031 |
|
2032 |
-
// Reference: src/modules/
|
2033 |
-
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:126
|
2034 |
__( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
|
2035 |
|
2036 |
-
// Reference: src/modules/
|
2037 |
__( 'See all features', 'google-analytics-dashboard-for-wp' ),
|
2038 |
|
2039 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
|
@@ -2170,6 +2175,34 @@ $generated_i18n_strings = array(
|
|
2170 |
__( 'On the next step, you will be asked to re-authenticate with Google Analytics. Please see our detailed post to learn why we need your help %1$shere%2$s. 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.', 'google-analytics-dashboard-for-wp' ),
|
2171 |
|
2172 |
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:49
|
2173 |
-
__( '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.', 'google-analytics-dashboard-for-wp' )
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2174 |
);
|
2175 |
/* THIS IS THE END OF THE GENERATED FILE */
|
1 |
<?php
|
2 |
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
|
3 |
$generated_i18n_strings = array(
|
4 |
+
// Reference: src/modules/reports/components/ReportReAuth.vue:45
|
5 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:225
|
6 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:149
|
7 |
__( 'Error', 'google-analytics-dashboard-for-wp' ),
|
8 |
|
9 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:150
|
10 |
__( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
|
11 |
|
12 |
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:112
|
13 |
__( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
|
14 |
|
15 |
+
// Reference: src/components/TheAppFTPForm.vue:110
|
16 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
|
17 |
+
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:113
|
18 |
__( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
|
19 |
|
20 |
// Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
|
47 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:184
|
48 |
__( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
|
49 |
|
50 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:185
|
51 |
__( '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' ),
|
52 |
|
53 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:188
|
54 |
__( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-dashboard-for-wp' ),
|
55 |
|
56 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
|
62 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:193
|
63 |
__( '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' ),
|
64 |
|
65 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:31
|
66 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:196
|
67 |
__( 'Unlock the Forms Report and Improve Conversions', 'google-analytics-dashboard-for-wp' ),
|
68 |
|
69 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:32
|
70 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:197
|
71 |
__( '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' ),
|
72 |
|
73 |
+
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:200
|
74 |
__( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
|
75 |
|
76 |
// Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
|
92 |
/* Translators: Placeholder gets replaced with an arrow icon. */
|
93 |
__( 'Get Started %s', 'google-analytics-dashboard-for-wp' ),
|
94 |
|
95 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:250
|
96 |
+
// Reference: src/modules/widget/store/index.js:14
|
97 |
__( 'Overview Report', 'google-analytics-dashboard-for-wp' ),
|
98 |
|
99 |
// Reference: src/plugins/exactmetrics-compatibility-plugin.js:27
|
157 |
__( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
|
158 |
|
159 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:41
|
|
|
160 |
__( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
|
161 |
|
162 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:42
|
|
|
163 |
__( 'per year', 'google-analytics-dashboard-for-wp' ),
|
164 |
|
165 |
// Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:22
|
166 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:43
|
167 |
__( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
|
168 |
|
169 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
|
170 |
__( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
|
171 |
|
172 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:63
|
|
|
173 |
__( '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!', 'google-analytics-dashboard-for-wp' ),
|
174 |
|
175 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:64
|
|
|
176 |
__( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
|
177 |
|
178 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:68
|
|
|
179 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
180 |
|
181 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:69
|
|
|
182 |
__( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
|
183 |
|
184 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:73
|
|
|
185 |
__( '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!', 'google-analytics-dashboard-for-wp' ),
|
186 |
|
187 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:74
|
|
|
188 |
__( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
|
189 |
|
190 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
|
191 |
__( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
|
192 |
|
193 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:35
|
|
|
|
|
|
|
194 |
__( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
|
195 |
|
196 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:47
|
|
|
197 |
__( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
|
198 |
|
199 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:48
|
|
|
200 |
__( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
|
201 |
|
202 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:49
|
203 |
__( 'Form Tracking', 'google-analytics-dashboard-for-wp' ),
|
204 |
|
205 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:50
|
206 |
__( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
|
207 |
|
208 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:51
|
209 |
__( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
|
210 |
|
211 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:54
|
212 |
__( 'EU Compliance Addon', 'google-analytics-dashboard-for-wp' ),
|
213 |
|
214 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:55
|
215 |
__( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
|
216 |
|
217 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:56
|
218 |
__( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
|
219 |
|
220 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:57
|
221 |
__( 'Search Console', 'google-analytics-dashboard-for-wp' ),
|
222 |
|
223 |
+
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:58
|
224 |
__( 'Custom Date Ranges', 'google-analytics-dashboard-for-wp' ),
|
225 |
|
226 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:84
|
238 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
|
239 |
__( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
|
240 |
|
|
|
241 |
// Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:90
|
242 |
__( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
|
243 |
|
277 |
/* Translators: Placeholder is replaced with WPForms. */
|
278 |
__( 'Recommended Plugin: %s', 'google-analytics-dashboard-for-wp' ),
|
279 |
|
280 |
+
// Reference: src/modules/addons/store/actions.js:49
|
281 |
__( 'Install', 'google-analytics-dashboard-for-wp' ),
|
282 |
|
283 |
+
// Reference: src/modules/addons/store/actions.js:49
|
284 |
__( 'Activate', 'google-analytics-dashboard-for-wp' ),
|
285 |
|
286 |
+
// Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
|
287 |
__( 'Learn More', 'google-analytics-dashboard-for-wp' ),
|
288 |
|
289 |
+
// Reference: src/modules/widget/components/WidgetSettings-Lite.vue:22
|
290 |
// Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:27
|
291 |
/* Translators: Gets replaced with the number of days. */
|
292 |
__( 'Last %s days', 'google-analytics-dashboard-for-wp' ),
|
301 |
__( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
|
302 |
|
303 |
// Reference: src/modules/reports/components/ReportReAuth.vue:30
|
304 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:127
|
305 |
__( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
|
306 |
|
307 |
// Reference: src/modules/reports/components/ReportReAuth.vue:47
|
308 |
__( 'Ok', 'google-analytics-dashboard-for-wp' ),
|
309 |
|
310 |
+
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:210
|
311 |
__( 'Analytics', 'google-analytics-dashboard-for-wp' ),
|
312 |
|
313 |
+
// Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:65
|
314 |
+
// Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:16
|
315 |
/* Translators: Adds an arrow icon. */
|
316 |
__( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
|
317 |
|
318 |
+
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:15
|
319 |
// Reference: src/modules/settings/routes/network.js:35
|
320 |
+
// Reference: src/modules/settings/routes/site.js:109
|
321 |
__( 'About Us', 'google-analytics-dashboard-for-wp' ),
|
322 |
|
323 |
+
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:16
|
324 |
// Reference: src/modules/settings/routes/network.js:43
|
325 |
+
// Reference: src/modules/settings/routes/site.js:117
|
326 |
__( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
|
327 |
|
328 |
+
// Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
|
329 |
// Reference: src/modules/settings/routes/network.js:52
|
330 |
+
// Reference: src/modules/settings/routes/site.js:126
|
331 |
__( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
|
332 |
|
333 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:56
|
334 |
// Reference: src/modules/settings/routes/site.js:29
|
335 |
__( 'General', 'google-analytics-dashboard-for-wp' ),
|
336 |
|
337 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:57
|
338 |
// Reference: src/modules/settings/routes/site.js:37
|
339 |
__( 'Engagement', 'google-analytics-dashboard-for-wp' ),
|
340 |
|
341 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:37
|
342 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:38
|
343 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:58
|
344 |
// Reference: src/modules/settings/routes/site.js:45
|
345 |
__( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
|
346 |
|
347 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:59
|
348 |
// Reference: src/modules/settings/routes/site.js:53
|
349 |
__( 'Publisher', 'google-analytics-dashboard-for-wp' ),
|
350 |
|
351 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:44
|
352 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:60
|
353 |
// Reference: src/modules/settings/routes/site.js:61
|
354 |
__( 'Conversions', 'google-analytics-dashboard-for-wp' ),
|
355 |
|
356 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:61
|
357 |
// Reference: src/modules/settings/routes/site.js:69
|
358 |
__( 'Advanced', 'google-analytics-dashboard-for-wp' ),
|
359 |
|
360 |
+
// Reference: src/modules/settings/routes/site.js:86
|
361 |
__( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
|
362 |
|
363 |
+
// Reference: src/modules/settings/routes/site.js:94
|
364 |
__( 'Import Export', 'google-analytics-dashboard-for-wp' ),
|
365 |
|
366 |
// Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBelowContent.vue:17
|
373 |
// Reference: src/modules/wizard-onboarding/components/TheWizardHeader.vue:24
|
374 |
__( 'Exit Setup', 'google-analytics-dashboard-for-wp' ),
|
375 |
|
376 |
+
// Reference: src/modules/widget/store/index.js:76
|
377 |
__( 'Overview', 'google-analytics-dashboard-for-wp' ),
|
378 |
|
379 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:36
|
380 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:30
|
381 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:30
|
382 |
__( 'Publishers', 'google-analytics-dashboard-for-wp' ),
|
383 |
|
384 |
// Reference: src/modules/reports/routes/exactmetrics-routes.js:54
|
385 |
__( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
|
386 |
|
387 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:40
|
388 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:62
|
389 |
__( 'Forms', 'google-analytics-dashboard-for-wp' ),
|
390 |
|
391 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:41
|
392 |
+
// Reference: src/modules/reports/routes/exactmetrics-routes.js:70
|
393 |
__( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
|
394 |
|
395 |
// Reference: src/components/TheQuickLinks.vue:31
|
407 |
// Reference: src/components/TheQuickLinks.vue:78
|
408 |
__( 'Upgrade to Pro »', 'google-analytics-dashboard-for-wp' ),
|
409 |
|
410 |
+
// Reference: src/modules/widget/store/index.js:102
|
411 |
__( 'Time to Purchase', 'google-analytics-dashboard-for-wp' ),
|
412 |
|
413 |
+
// Reference: src/modules/widget/store/index.js:103
|
414 |
__( 'This list shows how many days from first visit it took users to purchase products from your site.', 'google-analytics-dashboard-for-wp' ),
|
415 |
|
416 |
+
// Reference: src/modules/widget/store/index.js:109
|
417 |
__( 'Sessions to Purchase', 'google-analytics-dashboard-for-wp' ),
|
418 |
|
419 |
+
// Reference: src/modules/widget/store/index.js:110
|
420 |
__( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-dashboard-for-wp' ),
|
421 |
|
422 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:261
|
423 |
+
// Reference: src/modules/widget/store/index.js:20
|
424 |
__( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
|
425 |
|
426 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:272
|
427 |
+
// Reference: src/modules/widget/store/index.js:21
|
428 |
__( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
|
429 |
|
430 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:255
|
431 |
+
// Reference: src/modules/widget/store/index.js:27
|
432 |
__( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
|
433 |
|
434 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:268
|
435 |
+
// Reference: src/modules/widget/store/index.js:28
|
436 |
__( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
|
437 |
|
438 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:256
|
439 |
+
// Reference: src/modules/widget/store/index.js:34
|
440 |
__( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
|
441 |
|
442 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:269
|
443 |
+
// Reference: src/modules/widget/store/index.js:35
|
444 |
__( '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' ),
|
445 |
|
446 |
+
// Reference: src/modules/widget/store/index.js:41
|
447 |
__( 'Top Landing Pages', 'google-analytics-dashboard-for-wp' ),
|
448 |
|
449 |
+
// Reference: src/modules/widget/store/index.js:42
|
450 |
__( 'This list shows the top pages users first land on when visiting your website.', 'google-analytics-dashboard-for-wp' ),
|
451 |
|
452 |
+
// Reference: src/modules/widget/store/index.js:48
|
453 |
__( 'Top Exit Pages', 'google-analytics-dashboard-for-wp' ),
|
454 |
|
455 |
+
// Reference: src/modules/widget/store/index.js:49
|
456 |
__( 'This list shows the top pages users exit your website from.', 'google-analytics-dashboard-for-wp' ),
|
457 |
|
458 |
+
// Reference: src/modules/widget/store/index.js:55
|
459 |
__( 'Top Outbound Links', 'google-analytics-dashboard-for-wp' ),
|
460 |
|
461 |
+
// Reference: src/modules/widget/store/index.js:56
|
462 |
__( 'This list shows the top links clicked on your website that go to another website.', 'google-analytics-dashboard-for-wp' ),
|
463 |
|
464 |
+
// Reference: src/modules/widget/store/index.js:62
|
465 |
__( 'Top Affiliate Links', 'google-analytics-dashboard-for-wp' ),
|
466 |
|
467 |
+
// Reference: src/modules/widget/store/index.js:63
|
468 |
__( 'This list shows the top affiliate links your visitors clicked on.', 'google-analytics-dashboard-for-wp' ),
|
469 |
|
470 |
+
// Reference: src/modules/widget/store/index.js:69
|
471 |
__( 'Top Download Links', 'google-analytics-dashboard-for-wp' ),
|
472 |
|
473 |
+
// Reference: src/modules/widget/store/index.js:70
|
474 |
__( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
|
475 |
|
476 |
+
// Reference: src/modules/widget/store/index.js:82
|
477 |
__( 'Top Products', 'google-analytics-dashboard-for-wp' ),
|
478 |
|
479 |
+
// Reference: src/modules/widget/store/index.js:83
|
480 |
__( 'This list shows the top selling products on your website.', 'google-analytics-dashboard-for-wp' ),
|
481 |
|
482 |
+
// Reference: src/modules/widget/store/index.js:89
|
483 |
__( 'Top Conversion Sources', 'google-analytics-dashboard-for-wp' ),
|
484 |
|
485 |
+
// Reference: src/modules/widget/store/index.js:90
|
486 |
__( 'This list shows the top referral websites in terms of product revenue.', 'google-analytics-dashboard-for-wp' ),
|
487 |
|
488 |
+
// Reference: src/modules/widget/store/index.js:96
|
489 |
__( 'Total Add/Remove', 'google-analytics-dashboard-for-wp' ),
|
490 |
|
491 |
// Reference: src/modules/settings/components/SettingsButtonSave.vue:46
|
507 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:26
|
508 |
__( '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' ),
|
509 |
|
510 |
+
// Reference: src/modules/reports/components/ReportNoAuth.vue:27
|
511 |
__( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
|
512 |
|
513 |
// Reference: src/modules/reports/components/ReportNoAuth.vue:28
|
514 |
__( 'Please ask your webmaster to connect ExactMetrics to Google Analytics.', 'google-analytics-dashboard-for-wp' ),
|
515 |
|
516 |
+
// Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:39
|
517 |
__( 'Dimensions', 'google-analytics-dashboard-for-wp' ),
|
518 |
|
519 |
// Reference: src/modules/addons/store/actions.js:33
|
566 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:49
|
567 |
__( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
|
568 |
|
569 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:39
|
570 |
__( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
|
571 |
|
572 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:40
|
573 |
__( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
|
574 |
|
575 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:52
|
733 |
// Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:61
|
734 |
__( 'Checking your website...', 'google-analytics-dashboard-for-wp' ),
|
735 |
|
736 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:68
|
737 |
__( 'Show Overview Reports', 'google-analytics-dashboard-for-wp' ),
|
738 |
|
739 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:69
|
740 |
__( 'Show Publishers Reports', 'google-analytics-dashboard-for-wp' ),
|
741 |
|
742 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:70
|
743 |
__( 'Show eCommerce Reports', 'google-analytics-dashboard-for-wp' ),
|
744 |
|
745 |
+
// Reference: src/modules/widget/components/settings/WidgetSettingsReports-Lite.vue:72
|
746 |
__( 'Available in PRO version', 'google-analytics-dashboard-for-wp' ),
|
747 |
|
748 |
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
751 |
// Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
|
752 |
__( 'Show in full-width mode', 'google-analytics-dashboard-for-wp' ),
|
753 |
|
754 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:50
|
755 |
/* Translators: Placeholder adds a line break. */
|
756 |
__( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
|
757 |
|
771 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:31
|
772 |
__( 'Get an Answer to All Your Top Ecommerce Questions From a Single Report', 'google-analytics-dashboard-for-wp' ),
|
773 |
|
774 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:35
|
775 |
__( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
|
776 |
|
777 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:38
|
778 |
__( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
|
779 |
|
780 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:42
|
781 |
__( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
|
782 |
|
783 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:46
|
784 |
__( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
|
785 |
|
786 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:50
|
787 |
__( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
|
788 |
|
789 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:54
|
790 |
__( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
|
791 |
|
792 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:58
|
793 |
__( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
|
794 |
|
795 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:62
|
796 |
__( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
|
797 |
|
798 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:66
|
799 |
__( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
|
800 |
|
801 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:56
|
969 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:88
|
970 |
__( 'Reports', 'google-analytics-dashboard-for-wp' ),
|
971 |
|
972 |
+
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:89
|
973 |
__( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
|
974 |
|
975 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
|
1048 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:141
|
1049 |
__( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
|
1050 |
|
1051 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:102
|
1052 |
__( 'Not Available', 'google-analytics-dashboard-for-wp' ),
|
1053 |
|
1054 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:149
|
1078 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:64
|
1079 |
__( 'Pro', 'google-analytics-dashboard-for-wp' ),
|
1080 |
|
1081 |
+
// Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:105
|
1082 |
__( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
|
1083 |
|
1084 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
|
1085 |
__( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
|
1086 |
|
1087 |
+
// Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:60
|
1088 |
__( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
|
1089 |
|
1090 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
|
1123 |
// Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:94
|
1124 |
__( 'Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors', 'google-analytics-dashboard-for-wp' ),
|
1125 |
|
1126 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:251
|
1127 |
__( 'Sessions', 'google-analytics-dashboard-for-wp' ),
|
1128 |
|
1129 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:65
|
1130 |
/* Translators: Line break. */
|
1131 |
__( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
|
1132 |
|
1133 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:252
|
1134 |
__( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
|
1135 |
|
1136 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:68
|
1137 |
/* Translators: Line break. */
|
1138 |
__( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
|
1139 |
|
1140 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:264
|
1141 |
__( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
|
1142 |
|
1143 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:265
|
1144 |
__( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-dashboard-for-wp' ),
|
1145 |
|
1146 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:266
|
1147 |
__( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
|
1148 |
|
1149 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:72
|
1150 |
__( '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' ),
|
1151 |
|
1152 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:253
|
1153 |
__( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
|
1154 |
|
1155 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:254
|
1156 |
__( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
|
1157 |
|
1158 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:40
|
1173 |
// Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
|
1174 |
__( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
|
1175 |
|
1176 |
+
// Reference: src/modules/addons/components/AddonButton.vue:35
|
1177 |
__( 'Installing...', 'google-analytics-dashboard-for-wp' ),
|
1178 |
|
1179 |
// Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:33
|
1270 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:32
|
1271 |
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
1272 |
|
1273 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
|
1274 |
__( 'See Your Active Visitors and Track Their Behaviour to Optimize', 'google-analytics-dashboard-for-wp' ),
|
1275 |
|
1276 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:45
|
1277 |
__( 'See Your Top Pages Immediately After Making Changes', 'google-analytics-dashboard-for-wp' ),
|
1278 |
|
1279 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:49
|
1280 |
__( 'See Your Top Referral Sources and Adapt Faster', 'google-analytics-dashboard-for-wp' ),
|
1281 |
|
1282 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:53
|
1283 |
__( 'See Your Traffic Demographics', 'google-analytics-dashboard-for-wp' ),
|
1284 |
|
1285 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:57
|
1286 |
__( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-dashboard-for-wp' ),
|
1287 |
|
1288 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:61
|
1289 |
__( 'See Where Your Visitors are Connecting From (country & city)', 'google-analytics-dashboard-for-wp' ),
|
1290 |
|
1291 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportDimensions-Lite.vue:30
|
1595 |
/* Translators: Error status and error text. */
|
1596 |
__( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
|
1597 |
|
1598 |
+
// Reference: src/modules/wizard-onboarding/api/index.js:22
|
1599 |
__( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
|
1600 |
|
1601 |
// Reference: src/modules/license/api/index.js:18
|
1729 |
/* Translators: Adds a link to the documentation. */
|
1730 |
__( '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', 'google-analytics-dashboard-for-wp' ),
|
1731 |
|
1732 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:35
|
1733 |
__( 'License Key', 'google-analytics-dashboard-for-wp' ),
|
1734 |
|
1735 |
// Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:29
|
1752 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:49
|
1753 |
__( 'Active profile', 'google-analytics-dashboard-for-wp' ),
|
1754 |
|
1755 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:60
|
1756 |
__( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
|
1757 |
|
1758 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:61
|
1759 |
__( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
|
1760 |
|
1761 |
// Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:52
|
1762 |
__( 'Skip and Keep Connection', 'google-analytics-dashboard-for-wp' ),
|
1763 |
|
1764 |
+
// Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
|
1765 |
__( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
|
1766 |
|
1767 |
// Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:157
|
1916 |
// Reference: src/modules/widget/components/WidgetTips.vue:70
|
1917 |
__( 'Pro Tip:', 'google-analytics-dashboard-for-wp' ),
|
1918 |
|
1919 |
+
// Reference: src/modules/reports/components/ReportInfobox.vue:39
|
|
|
1920 |
/* Translators: Number of days. */
|
1921 |
__( 'vs. Previous Day', 'google-analytics-dashboard-for-wp' ),
|
1922 |
|
1923 |
+
// Reference: src/modules/reports/components/ReportInfobox.vue:56
|
|
|
1924 |
__( 'No change', 'google-analytics-dashboard-for-wp' ),
|
1925 |
|
1926 |
// Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:25
|
1964 |
__( 'Adjust the sample rate so you don\'t exceed Google Analytics\' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization.', 'google-analytics-dashboard-for-wp' ),
|
1965 |
|
1966 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:41
|
|
|
1967 |
__( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
|
1968 |
|
1969 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:43
|
|
|
1970 |
__( 'Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes.', 'google-analytics-dashboard-for-wp' ),
|
1971 |
|
1972 |
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:44
|
|
|
1973 |
__( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
|
1974 |
|
1975 |
// Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:36
|
2010 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:107
|
2011 |
__( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
|
2012 |
|
2013 |
+
// Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:38
|
2014 |
__( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
|
2015 |
|
2016 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:109
|
2032 |
__( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
|
2033 |
|
2034 |
// Reference: src/modules/settings/components/network/exactmetrics-SettingsInputLicenseNetwork-Lite.vue:23
|
2035 |
+
/* Translators: Make text bold. */
|
|
|
2036 |
__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
|
2037 |
|
2038 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:34
|
|
|
2039 |
__( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
|
2040 |
|
2041 |
+
// Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:37
|
2042 |
__( 'See all features', 'google-analytics-dashboard-for-wp' ),
|
2043 |
|
2044 |
// Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
|
2175 |
__( 'On the next step, you will be asked to re-authenticate with Google Analytics. Please see our detailed post to learn why we need your help %1$shere%2$s. 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.', 'google-analytics-dashboard-for-wp' ),
|
2176 |
|
2177 |
// Reference: src/modules/wizard-onboarding/components/steps/MigrationStepWelcome.vue:49
|
2178 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
2179 |
+
|
2180 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:81
|
2181 |
+
__( 'Desktop Visitors', 'google-analytics-dashboard-for-wp' ),
|
2182 |
+
|
2183 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:82
|
2184 |
+
__( 'Tablet Visitors', 'google-analytics-dashboard-for-wp' ),
|
2185 |
+
|
2186 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:83
|
2187 |
+
__( 'Mobile Visitors', 'google-analytics-dashboard-for-wp' ),
|
2188 |
+
|
2189 |
+
// Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:34
|
2190 |
+
/* Translators: add link to blog. */
|
2191 |
+
__( '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.', 'google-analytics-dashboard-for-wp' ),
|
2192 |
+
|
2193 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:84
|
2194 |
+
__( 'New Visitors', 'google-analytics-dashboard-for-wp' ),
|
2195 |
+
|
2196 |
+
// Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:85
|
2197 |
+
__( 'Returning Visitors', 'google-analytics-dashboard-for-wp' ),
|
2198 |
+
|
2199 |
+
// Reference: src/modules/widget/components/WidgetNoticeCompact.vue:15
|
2200 |
+
__( 'Check out the newly added compact mode', 'google-analytics-dashboard-for-wp' ),
|
2201 |
+
|
2202 |
+
// Reference: src/modules/widget/components/settings/exactmetrics-WidgetSettingsCompact.vue:16
|
2203 |
+
__( 'Classic mode', 'google-analytics-dashboard-for-wp' ),
|
2204 |
+
|
2205 |
+
// Reference: src/modules/widget/components/WidgetNoticeCompact.vue:15
|
2206 |
+
__( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' )
|
2207 |
);
|
2208 |
/* THIS IS THE END OF THE GENERATED FILE */
|
lite/assets/vue/css/chunk-common.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-left:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:15px;position:absolute;right:15px;top:50%;margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-db2d076c]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;right:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;left:6px;right:2px;top:6px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPh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);background-size:auto 85%;background-position:0 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;right:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;right:100%;margin-right:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-left:10px;margin-right:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-left:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;left:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-left-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-right:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:right}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-left:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-left:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-left:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;right:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;left:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{right:auto;left:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-left:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip[x-placement^=left]{padding-right:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px 0 0 -4px}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;left:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;left:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;left:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;left:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;left:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;left:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;left:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:right}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:right;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:right;width:100%}}.exactmetrics-logo-area{float:left;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block;margin-left:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{margin-right:23px;margin-bottom:20px;left:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-right:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;left:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:left}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-left:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-left:0;margin-right:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-left:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-left:45px;padding-right:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-left:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;left:24px;right:24px;text-align:left;border-radius:5px 0 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-left:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-left:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-left:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:left;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-left:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-left:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons{position:absolute;left:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){left:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){left:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(3){top:147px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(4){left:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-left:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-left:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-right:10px;color:#fff;position:absolute;left:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{left:30px}
|
1 |
+
strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-left:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:15px;position:absolute;right:15px;top:50%;margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-db2d076c]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;right:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;left:6px;right:2px;top:6px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPh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);background-size:auto 85%;background-position:0 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;right:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;right:100%;margin-right:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-left:10px;margin-right:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-left:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;left:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-left-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-right:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:right}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-right:-20px;margin-left:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-left:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-left:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;right:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-left:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;right:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;left:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}to{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}to{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}5%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}12%{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}to{-webkit-transform:rotate(-405deg);transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;left:-.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;-webkit-transform-origin:0 2em;-ms-transform-origin:0 2em;transform-origin:0 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(2deg);transform:translateY(-.625em) rotate(2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(-2deg);transform:translateY(0) rotate(-2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(2deg);transform:translateY(.3125em) rotate(2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(1deg);transform:rotate(1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}to{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}to{top:.9375em;right:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;right:0;bottom:0;left:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;left:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-left:5px;border-radius:50%;border:3px solid #999;border-right-color:rgba(0,0,0,0);-webkit-box-shadow:1px 1px 1px #fff;box-shadow:1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;right:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0 3.75em;-ms-transform-origin:0 3.75em;transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;left:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;left:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{right:auto;left:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-left-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;left:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-left:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip[x-placement^=left]{padding-right:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-top-color:rgba(0,0,0,0)!important;border-right-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-left:0;margin-right:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px 0 0 -4px}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;left:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;left:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;left:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;left:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;left:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;left:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;left:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-left:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:right}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:right;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:right;width:100%}}.exactmetrics-logo-area{float:left;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block;margin-left:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{display:none;margin-right:23px;margin-bottom:20px;left:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-right:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;left:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:left}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-left:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-left:0;margin-right:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-left:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-left:45px;padding-right:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-left:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;left:24px;right:24px;text-align:left;border-radius:5px 0 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-left:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-left:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-left:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-left:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:left;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-left:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-left:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons{position:absolute;left:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){left:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){left:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(3){top:147px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(4){left:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-left:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-left:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-right:10px;color:#fff;position:absolute;left:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{left:30px}
|
lite/assets/vue/css/chunk-common.rtl.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-right:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:15px;position:absolute;left:15px;top:50%;margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-db2d076c]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;left:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;right:6px;left:2px;top:6px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPh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);background-size:auto 85%;background-position:100% 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;left:100%;margin-left:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-right:10px;margin-left:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-right:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;right:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-right-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-left:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:left}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-left:-20px;margin-right:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-right:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-right:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-right:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;left:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-right:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;left:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;right:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;left:auto;bottom:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;left:auto;bottom:auto;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;left:auto;bottom:auto;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;left:0;bottom:auto;right:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;left:auto;bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;right:-.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;right:.9375em;-webkit-transform-origin:100% 2em;-ms-transform-origin:100% 2em;transform-origin:100% 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;left:0;bottom:0;right:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;right:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-right:5px;border-radius:50%;border:3px solid #999;border-left-color:rgba(0,0,0,0);-webkit-box-shadow:-1px 1px 1px #fff;box-shadow:-1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:100% 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;right:-2.0635em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;right:1.875em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:100% 3.75em;-ms-transform-origin:100% 3.75em;transform-origin:100% 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;right:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;right:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;right:.875em;width:1.5625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;left:.5em;width:2.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{left:auto;right:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-right:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip[x-placement^=left]{padding-left:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-top-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px -4px 0 0}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;right:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;right:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;right:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;right:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;right:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;right:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;right:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-right:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:left}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:left;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:left;width:100%}}.exactmetrics-logo-area{float:right;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block;margin-right:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{margin-left:23px;margin-bottom:20px;right:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-left:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;right:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:right}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-right:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-right:0;margin-left:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-right:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-right:45px;padding-left:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-right:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;right:24px;left:24px;text-align:right;border-radius:0 5px 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-right:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-right:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-right:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:right}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:right;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-right:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-right:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons{position:absolute;right:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){right:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){right:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(3){top:147px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(4){right:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-right:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-right:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-left:10px;color:#fff;position:absolute;right:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{right:30px}
|
1 |
+
strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-493c7577]{display:block}.exactmetrics-reset-default[data-v-493c7577]{margin-right:5px}.exactmetrics-dark[data-v-2327c40a]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -20px 20px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.exactmetrics-admin-page .exactmetrics-floating-bar>span>span{font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a{text-decoration:underline;color:#fff;font-weight:700}.exactmetrics-admin-page .exactmetrics-floating-bar a:focus,.exactmetrics-admin-page .exactmetrics-floating-bar a:hover{color:#fff;text-decoration:none}.exactmetrics-admin-page .exactmetrics-floating-bar .exactmetrics-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:15px;position:absolute;left:15px;top:50%;margin-top:-10px;opacity:.5;cursor:pointer}.exactmetrics-admin-page .exactmetrics-slide-enter-active,.exactmetrics-admin-page .exactmetrics-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.exactmetrics-admin-page .exactmetrics-slide-enter-to,.exactmetrics-admin-page .exactmetrics-slide-leave{max-height:100px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-slide-enter,.exactmetrics-admin-page .exactmetrics-slide-leave-to{overflow:hidden;max-height:0}.exactmetrics-container[data-v-db2d076c]:after{display:table;clear:both;content:""}.exactmetrics-quick-links{position:fixed;bottom:25px;left:25px;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;width:60px;height:60px;border-radius:50%;background:#6528f5;z-index:1000;padding:5px 10px}.exactmetrics-quick-links.exactmetrics-quick-links-open,.exactmetrics-quick-links:focus,.exactmetrics-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-label{border-radius:50%;background:rgba(0,0,0,0);position:absolute;right:6px;left:2px;top:6px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:44px;outline:none;cursor:pointer;border:none}.exactmetrics-quick-links-open .exactmetrics-quick-links-label .exactmetrics-quick-link-title{opacity:0;pointer-events:none}.exactmetrics-bg-img.exactmetrics-quick-links-mascot{padding-top:100%;-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;display:block}.exactmetrics-bg-img.exactmetrics-quick-links-mascot:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUUAAABKCAMAAAAbi7YOAAAAn1BMVEUAAAD///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////8Kd3m4AAAANHRSTlMAQN8ggL9g758QMLB5cwNv+5BQz14J9tSPF/HkxgdXSA0B7aqbpCkk2oRouDvLloobEug208uV8wAACFtJREFUeNrs1+1yojAUBuATIEBABVHU+t1aa+u222597//a1hgJKFaFdWY70zw/nCmaCX3nnHxQRX/ePyFZ63sy6km7I2Q6M5NjLa9jFC1sMqp6WuBI71GQUcXk3UPZaN0i41rz7ie0uINcn5FRY0EcBzTrI7c0y+M1Vo8xtP5U9nCrOYIWN/6QcV7qDKENnTkpH7970J7dCRlfm3RHhQz9YtGtFjG0N7M8fm0zRu5XQAfukzdosf9Exil3y2LXTstdO18/HHa7cWze7BUjmpwOuh1Ds1xzKTySWMj5Nn0l4MjxDRm5YIwcD+iMVvIMrbdYkaGIZQxtlKQXe/8TmmeWx71W0T1ddvfYg8ZTMurZcGihibGu+2kfGXMEr++uMYKyIOOsdMWm04R9TM4d00f000ymDed6v/sxpOH4ZdOishdIHv0w818x6onDgEqaPzPFF1TysFizJzuYRb96QK/dMinu9CtlGH1Qxn5/AMZ39VIM+KGQbsnnnNERm3MuqCqbo2PTZc8VWng5p6IVB55FrRQZDll0Sx7A6YgDIKCqfAA+XdbE1abH/dsaAH3xHVJs+1sJKeLUkdUC4J4pOgBUFgLgdNk8jHGV3pTKHGDxHVK0sOWQEqD8v7vYiiqnGHjwEroGa1w2Vu9YFgLsu6WYQGLlH7Qrp0g2E3Qr9gjjlE5JH9Bp1U0xdDPJLVOMIPmlUkRYJcXbawCvOrdZ4yV61cl1Ec/qpuiQdssU24D82z783gM6/zXF9A18H9v9bBwDiPkTKXMLi2+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPh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);background-size:auto 85%;background-position:100% 0}.exactmetrics-quick-links-menu{position:absolute;bottom:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse;left:6px;margin-bottom:10px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item{display:block;width:48px;height:48px;background:#6528f5;border-radius:50%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:relative;-webkit-box-shadow:0 0 10px 0 #ababab;box-shadow:0 0 10px 0 #ababab;margin-bottom:6px;color:#fff;text-decoration:none;text-align:center;font-size:18px;line-height:48px}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item:hover{color:#fff;background:#37276a;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade{background-color:#32a27a}.exactmetrics-quick-links-menu .exactmetrics-quick-links-menu-item.exactmetrics-quick-links-item-upgrade:hover{background-color:#19865f}.exactmetrics-quick-link-title{position:absolute;left:100%;margin-left:12px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-14px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-tag:before{content:"\f060"}.monstericon-check-circle-em:before{content:"\f061"}.monstericon-bullseye:before{content:"\f062"}.monstericon-rocket:before{content:"\f063"}.monstericon-exclamation-square:before{content:"\f064"}.monstericon-trash:before{content:"\f065"}.monstericon-user-em:before{content:"\f066"}.monstericon-unlock:before{content:"\f067"}.monstericon-exclamation-em-solid:before{content:"\f068"}.monstericon-key-em:before{content:"\f069"}.monstericon-long-arrow-right-light:before{content:"\f06a"}.monstericon-plug-light:before{content:"\f06b"}.monstericon-align-left-regular:before{content:"\f06c"}.monstericon-envelope-solid:before{content:"\f06f"}.monstericon-comment-alt-lines-solid:before{content:"\f06e"}.monstericon-arrow-circle-up-light:before{content:"\f071"}.monstericon-megaphone-solid:before{content:"\f070"}.monstericon-arrow-circle-up-light :before{content:"\f071"}@media (max-width:782px){.exactmetrics-notices-area{margin-right:10px;margin-left:10px}}.exactmetrics-notice .exactmetrics-notice-inner{position:relative;color:#210f59;padding:32px 45px;border:1px solid #f4f3f7;border-bottom:3px solid;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);border-radius:10px;background:#fff;margin-top:40px}.exactmetrics-notice .exactmetrics-notice-inner .notice-title{color:#fff;font-weight:700;display:block;margin:0 0 6px;padding:0;font-size:17px}@media (max-width:782px){.exactmetrics-notice .exactmetrics-notice-inner{padding:10px}}.exactmetrics-notice .exactmetrics-notice-inner .notice-content{padding-right:92px;background:#fff;line-height:1.75;font-size:15px;position:relative}.exactmetrics-notice .exactmetrics-notice-inner .notice-content:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:48px;right:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner{border-bottom-color:#d83638}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-notice-inner .notice-content:before{content:"\f064";color:#d83638}.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-inner{border-bottom-color:#fa0}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-inner{border-bottom-color:#4d3f7a}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner{border:1px solid #6528f5;border-right-width:3px;color:#777}.exactmetrics-notice.exactmetrics-notice-info-xl .exactmetrics-notice-inner .exactmetrics-button{color:#fff;margin:15px 0 0}.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-inner{border-bottom-color:#32a27a}.exactmetrics-notice .notice-content{margin-left:20px}.exactmetrics-notice .notice-content a{color:#210f59}.exactmetrics-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#e9e7ee;position:relative;float:left}.exactmetrics-notice .dismiss-notice:focus,.exactmetrics-notice .dismiss-notice:hover{color:#210f59}.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.exactmetrics-notice.exactmetrics-notice-info .notice-content,.exactmetrics-notice.exactmetrics-notice-success .notice-content,.exactmetrics-notice.exactmetrics-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;margin-left:-20px;margin-right:auto}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-notice-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-notice-button{margin-right:0}}.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.exactmetrics-notice.exactmetrics-notice-info .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-success .exactmetrics-button,.exactmetrics-notice.exactmetrics-notice-warning .exactmetrics-button{margin-top:10px;margin-right:0}}.exactmetrics-notice.exactmetrics-notice-error .exactmetrics-button{margin-top:10px;margin-right:0;color:#fff}body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-end,body.swal2-toast-shown.exactmetrics_page .swal2-container.swal2-top-right{top:42px;left:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{border-radius:5px;padding:17px 28px;border:1px solid #f4f3f7;-webkit-box-shadow:0 20px 30px rgba(48,44,62,.05);box-shadow:0 20px 30px rgba(48,44,62,.05);min-width:380px}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{color:#210f59;font-size:15px;font-weight:700;line-height:1.5;margin-right:32px;margin-top:-3px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{font-size:26px;width:18px;height:18px;line-height:10px;position:absolute;left:14px;top:19px;color:#9087ac}@media screen and (max-width:767px){body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:27px;height:24px;min-width:27px;margin:0;border:0;color:#9087ac}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{top:0;right:0;border:none}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;line-height:1;font-size:24px}body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success [class^=swal2-success-line]{display:none}@-webkit-keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes swal2-show{0%{-webkit-transform:scale(.7);transform:scale(.7)}45%{-webkit-transform:scale(1.05);transform:scale(1.05)}80%{-webkit-transform:scale(.95);transform:scale(.95)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.5);transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;right:.0625em;width:0}54%{top:1.0625em;right:.125em;width:0}70%{top:2.1875em;right:-.375em;width:3.125em}84%{top:3em;right:1.3125em;width:1.0625em}to{top:2.8125em;right:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;left:2.875em;width:0}65%{top:3.375em;left:2.875em;width:0}84%{top:2.1875em;left:0;width:3.4375em}to{top:2.375em;left:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@keyframes swal2-rotate-success-circular-line{0%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}5%{-webkit-transform:rotate(45deg);transform:rotate(45deg)}12%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}to{-webkit-transform:rotate(405deg);transform:rotate(405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}50%{margin-top:1.625em;-webkit-transform:scale(.4);transform:scale(.4);opacity:0}80%{margin-top:-.375em;-webkit-transform:scale(1.15);transform:scale(1.15)}to{margin-top:0;-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{-webkit-transform:rotateX(100deg);transform:rotateX(100deg);opacity:0}to{-webkit-transform:rotateX(0);transform:rotateX(0);opacity:1}}.exactmetrics_page body.swal2-toast-shown .swal2-container,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top{top:0;left:auto;bottom:auto;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;left:auto;bottom:auto;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center{top:50%;left:auto;bottom:auto;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;left:0;bottom:auto;right:auto;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;left:auto;bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.exactmetrics_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.exactmetrics_page body.swal2-toast-column .swal2-toast{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;height:2.2em;margin-top:.3125em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.exactmetrics_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:auto;padding:.625em;-webkit-box-shadow:0 0 .625em #d9d9d9;box-shadow:0 0 .625em #d9d9d9;overflow-y:hidden}.exactmetrics_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;width:100%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-title{-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;margin:0 .6em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.exactmetrics_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-styled:focus{-webkit-box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4);box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:2em;height:2.8125em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.25em;right:-.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:2em 2em;-ms-transform-origin:2em 2em;transform-origin:2em 2em;border-radius:0 4em 4em 0}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;right:.9375em;-webkit-transform-origin:100% 2em;-ms-transform-origin:100% 2em;transform-origin:100% 2em;border-radius:4em 0 0 4em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.exactmetrics_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.exactmetrics_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.exactmetrics_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:animate-toast-success-tip .75s;animation:animate-toast-success-tip .75s}.exactmetrics_page .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:animate-toast-success-long .75s;animation:animate-toast-success-long .75s}@-webkit-keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@keyframes showSweetToast{0%{-webkit-transform:translateY(-.625em) rotate(-2deg);transform:translateY(-.625em) rotate(-2deg);opacity:0}33%{-webkit-transform:translateY(0) rotate(2deg);transform:translateY(0) rotate(2deg);opacity:.5}66%{-webkit-transform:translateY(.3125em) rotate(-2deg);transform:translateY(.3125em) rotate(-2deg);opacity:.7}to{-webkit-transform:translateY(0) rotate(0);transform:translateY(0) rotate(0);opacity:1}}@-webkit-keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@keyframes hideSweetToast{0%{opacity:1}33%{opacity:.5}to{-webkit-transform:rotate(-1deg);transform:rotate(-1deg);opacity:0}}@-webkit-keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@keyframes animate-toast-success-tip{0%{top:.5625em;right:.0625em;width:0}54%{top:.125em;right:.125em;width:0}70%{top:.625em;right:-.25em;width:1.625em}84%{top:1.0625em;right:.75em;width:.5em}to{top:1.125em;right:.1875em;width:.75em}}@-webkit-keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}@keyframes animate-toast-success-long{0%{top:1.625em;left:1.375em;width:0}65%{top:1.25em;left:.9375em;width:0}84%{top:.9375em;left:0;width:1.125em}to{top:.9375em;left:.1875em;width:1.375em}}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.exactmetrics_page body.swal2-height-auto{height:auto!important}.exactmetrics_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown>.swal2-modal{-webkit-box-shadow:0 0 10px rgba(0,0,0,.4);box-shadow:0 0 10px rgba(0,0,0,.4)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;right:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;left:0;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.exactmetrics_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.exactmetrics_page .swal2-container{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;top:0;left:0;bottom:0;right:0;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:10px;background-color:rgba(0,0,0,0);z-index:1060;overflow-x:hidden;-webkit-overflow-scrolling:touch}.exactmetrics_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-top-left,.exactmetrics_page .swal2-container.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-top-end,.exactmetrics_page .swal2-container.swal2-top-right{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-center-left,.exactmetrics_page .swal2-container.swal2-center-start{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-center-end,.exactmetrics_page .swal2-container.swal2-center-right{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-bottom-start{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.exactmetrics_page .swal2-container.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-bottom-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-item-align:stretch;align-self:stretch;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-webkit-box-pack:center;justify-content:center}.exactmetrics_page .swal2-container.swal2-grow-row>.swal2-modal{-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-ms-flex-pack:center}.exactmetrics_page .swal2-container.swal2-grow-column{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-start,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-left,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-bottom-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-center-right,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-end,.exactmetrics_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics_page .swal2-container.swal2-grow-column>.swal2-modal{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-flex:1;-ms-flex:1;flex:1;-ms-flex-line-pack:center;align-content:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-container .swal2-modal{margin:0!important}}.exactmetrics_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.exactmetrics_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.exactmetrics_page .swal2-popup{display:none;position:relative;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:32em;max-width:100%;padding:1.25em;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem;-webkit-box-sizing:border-box;box-sizing:border-box;right:0;top:0}.exactmetrics_page .swal2-popup:focus{outline:0}.exactmetrics_page .swal2-popup.swal2-loading{overflow-y:hidden}.exactmetrics_page .swal2-popup .swal2-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics_page .swal2-popup .swal2-title{display:block;position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.exactmetrics_page .swal2-popup .swal2-actions{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em auto 0;z-index:1}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.1)),to(rgba(0,0,0,.1)));background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.exactmetrics_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:-webkit-gradient(linear,right top,right bottom,from(rgba(0,0,0,.2)),to(rgba(0,0,0,.2)));background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm{width:2.5em;height:2.5em;margin:.46875em;padding:0;border-radius:100%;border:.25em solid rgba(0,0,0,0);background-color:rgba(0,0,0,0)!important;color:rgba(0,0,0,0);cursor:default;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.exactmetrics_page .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm:after{display:inline-block;width:15px;height:15px;margin-right:5px;border-radius:50%;border:3px solid #999;border-left-color:rgba(0,0,0,0);-webkit-box-shadow:-1px 1px 1px #fff;box-shadow:-1px 1px 1px #fff;content:"";-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal}.exactmetrics_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.exactmetrics_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.exactmetrics_page .swal2-popup .swal2-styled:focus{outline:0;-webkit-box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4);box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.exactmetrics_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.exactmetrics_page .swal2-popup .swal2-footer{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.exactmetrics_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.exactmetrics_page .swal2-popup .swal2-close{position:absolute;top:0;left:0;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:1.2em;height:1.2em;padding:0;-webkit-transition:color .1s ease-out;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:100% 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.exactmetrics_page .swal2-popup>.swal2-checkbox,.exactmetrics_page .swal2-popup>.swal2-file,.exactmetrics_page .swal2-popup>.swal2-input,.exactmetrics_page .swal2-popup>.swal2-radio,.exactmetrics_page .swal2-popup>.swal2-select,.exactmetrics_page .swal2-popup>.swal2-textarea{display:none}.exactmetrics_page .swal2-popup .swal2-content{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:300;line-height:normal;z-index:1;word-wrap:break-word}.exactmetrics_page .swal2-popup #swal2-content{text-align:center}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-radio,.exactmetrics_page .swal2-popup .swal2-select,.exactmetrics_page .swal2-popup .swal2-textarea{margin:1em auto}.exactmetrics_page .swal2-popup .swal2-file,.exactmetrics_page .swal2-popup .swal2-input,.exactmetrics_page .swal2-popup .swal2-textarea{width:100%;-webkit-transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,-webkit-box-shadow .3s;transition:border-color .3s,box-shadow .3s;transition:border-color .3s,box-shadow .3s,-webkit-box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;font-size:1.125em;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.06);box-shadow:inset 0 1px 1px rgba(0,0,0,.06);-webkit-box-sizing:border-box;box-sizing:border-box}.exactmetrics_page .swal2-popup .swal2-file.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-input.swal2-inputerror,.exactmetrics_page .swal2-popup .swal2-textarea.swal2-inputerror{border-color:#f27474!important;-webkit-box-shadow:0 0 2px #f27474!important;box-shadow:0 0 2px #f27474!important}.exactmetrics_page .swal2-popup .swal2-file:focus,.exactmetrics_page .swal2-popup .swal2-input:focus,.exactmetrics_page .swal2-popup .swal2-textarea:focus{border:1px solid #b4dbed;outline:0;-webkit-box-shadow:0 0 3px #c4e6f5;box-shadow:0 0 3px #c4e6f5}.exactmetrics_page .swal2-popup .swal2-file::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-webkit-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-moz-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input:-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-input::-ms-input-placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-file::placeholder,.exactmetrics_page .swal2-popup .swal2-input::placeholder,.exactmetrics_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.exactmetrics_page .swal2-popup .swal2-range input{width:80%}.exactmetrics_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.exactmetrics_page .swal2-popup .swal2-range input,.exactmetrics_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.exactmetrics_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.exactmetrics_page .swal2-popup .swal2-input[type=number]{max-width:10em}.exactmetrics_page .swal2-popup .swal2-file{font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.exactmetrics_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox,.exactmetrics_page .swal2-popup .swal2-radio{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics_page .swal2-popup .swal2-checkbox label,.exactmetrics_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.exactmetrics_page .swal2-popup .swal2-checkbox input,.exactmetrics_page .swal2-popup .swal2-radio input{margin:0 .4em}.exactmetrics_page .swal2-popup .swal2-validation-message{display:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:.625em;background:#f0f0f0;color:#666;font-size:1em;font-weight:300;overflow:hidden}.exactmetrics_page .swal2-popup .swal2-validation-message:before{display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center;content:"!";zoom:normal}@supports (-ms-accelerator:true){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.exactmetrics_page .swal2-range input{width:100%!important}.exactmetrics_page .swal2-range output{display:none}}@-moz-document url-prefix(){.exactmetrics_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.exactmetrics_page .swal2-icon{position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid rgba(0,0,0,0);border-radius:50%;line-height:5em;cursor:default;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;zoom:normal}.exactmetrics_page .swal2-icon-text{font-size:3.75em}.exactmetrics_page .swal2-icon.swal2-error{border-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:1.0625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:1em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.exactmetrics_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.exactmetrics_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.exactmetrics_page .swal2-icon.swal2-success{border-color:#a5dc86}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);border-radius:50%}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;right:-2.0635em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:3.75em 3.75em;-ms-transform-origin:3.75em 3.75em;transform-origin:3.75em 3.75em;border-radius:0 7.5em 7.5em 0}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;right:1.875em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:100% 3.75em;-ms-transform-origin:100% 3.75em;transform-origin:100% 3.75em;border-radius:7.5em 0 0 7.5em}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-ring{position:absolute;top:-.25em;right:-.25em;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%;z-index:2;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics_page .swal2-icon.swal2-success .swal2-success-fix{position:absolute;top:.5em;right:1.625em;width:.4375em;height:5.625em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);z-index:1}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;right:.875em;width:1.5625em;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.exactmetrics_page .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;left:.5em;width:2.9375em;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.exactmetrics_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.exactmetrics_page .swal2-progresssteps li{display:inline-block;position:relative}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle{width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center;z-index:20}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.exactmetrics_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.exactmetrics_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.exactmetrics_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.exactmetrics_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.exactmetrics_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.exactmetrics_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.exactmetrics_page .swal2-rtl .swal2-close{left:auto;right:0}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.exactmetrics_page .swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.exactmetrics_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.exactmetrics_page .swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes swal2-rotate-loading{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@media print{.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.exactmetrics_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.exactmetrics-tooltip{display:block!important;z-index:10000;max-width:350px}.exactmetrics-tooltip .exactmetrics-tooltip-inner{background:#6528f5;color:#fff;border-radius:5px;padding:16px 20px;font-size:15px;line-height:1.5;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;text-align:center}.exactmetrics-tooltip .exactmetrics-tooltip-inner a{color:#fff;font-weight:700}.exactmetrics-tooltip .exactmetrics-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:8px;border-color:#6528f5;z-index:1}.exactmetrics-tooltip[x-placement^=top]{padding-bottom:8px}.exactmetrics-tooltip[x-placement^=top] .exactmetrics-tooltip-arrow{border-width:8px 8px 0;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;bottom:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=bottom]{padding-top:8px}.exactmetrics-tooltip[x-placement^=bottom] .exactmetrics-tooltip-arrow{border-width:0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;top:0;right:calc(50% - 8px);margin-top:0;margin-bottom:0}.exactmetrics-tooltip[x-placement^=right]{padding-right:8px}.exactmetrics-tooltip[x-placement^=right] .exactmetrics-tooltip-arrow{border-width:8px 0 8px 8px;border-right-color:rgba(0,0,0,0)!important;border-top-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;right:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip[x-placement^=left]{padding-left:8px}.exactmetrics-tooltip[x-placement^=left] .exactmetrics-tooltip-arrow{border-width:8px 8px 8px 0;border-top-color:rgba(0,0,0,0)!important;border-left-color:rgba(0,0,0,0)!important;border-bottom-color:rgba(0,0,0,0)!important;left:0;top:calc(50% - 8px);margin-right:0;margin-left:0}.exactmetrics-tooltip.popover .popover-inner{background:#fff;color:#6528f5;padding:24px;border-radius:5px;-webkit-box-shadow:0 5px 30px rgba(0,0,0,.1);box-shadow:0 5px 30px rgba(0,0,0,.1)}.exactmetrics-tooltip.popover .popover-arrow{border-color:#fff}.exactmetrics-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.exactmetrics-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.exactmetrics-roller{display:inline-block;position:relative;width:58px;height:58px}.exactmetrics-roller div{-webkit-animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;animation:exactmetrics-roller 1.4s cubic-bezier(.5,0,.5,1) infinite;-webkit-transform-origin:29px 29px;-ms-transform-origin:29px 29px;transform-origin:29px 29px}.exactmetrics-roller div:after{content:" ";display:block;position:absolute;width:8px;height:8px;border-radius:50%;background:#6528f5;margin:-4px -4px 0 0}.exactmetrics-roller div:first-child{-webkit-animation-delay:-36ms;animation-delay:-36ms}.exactmetrics-roller div:nth-child(2){-webkit-animation-delay:-72ms;animation-delay:-72ms}.exactmetrics-roller div:nth-child(3){-webkit-animation-delay:-.108s;animation-delay:-.108s}.exactmetrics-roller div:nth-child(4){-webkit-animation-delay:-.144s;animation-delay:-.144s}.exactmetrics-roller div:nth-child(5){-webkit-animation-delay:-.18s;animation-delay:-.18s}.exactmetrics-roller div:nth-child(6){-webkit-animation-delay:-.216s;animation-delay:-.216s}.exactmetrics-roller div:nth-child(7){-webkit-animation-delay:-.252s;animation-delay:-.252s}.exactmetrics-roller div:first-child:after{top:49px;right:44px}.exactmetrics-roller div:nth-child(2):after{top:54px;right:28px}.exactmetrics-roller div:nth-child(3):after{top:48px;right:13px}.exactmetrics-roller div:nth-child(4):after{top:35px;right:5px}.exactmetrics-roller div:nth-child(5):after{top:19px;right:6px}.exactmetrics-roller div:nth-child(6):after{top:8px;right:15px}.exactmetrics-roller div:nth-child(7):after{top:4px;right:29px}@-webkit-keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}@keyframes exactmetrics-roller{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(-1turn);transform:rotate(-1turn)}}body{background:#fff;margin:0}.exactmetrics-admin-page,.exactmetrics-admin-page *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}#wpcontent,.auto-fold #wpcontent{padding-right:0}.exactmetrics-highlighted-text{color:#64bfa5;font-weight:700}.exactmetrics-bold{font-weight:700}.exactmetrics-bg-img{width:100%;padding-top:66%;position:relative}.exactmetrics-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.exactmetrics-header{padding:20px;background-color:#210f59;position:relative;z-index:90}.exactmetrics-header .exactmetrics-container{width:100%}@media (max-width:959px){.exactmetrics-header .exactmetrics-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}.exactmetrics-header .exactmetrics-float-right{text-align:center}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right{text-align:left}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{float:left;background:#fff;color:#210f59}@media (max-width:1099px){.exactmetrics-header .exactmetrics-float-right .exactmetrics-button{display:none}}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:focus,.exactmetrics-header .exactmetrics-float-right .exactmetrics-button:hover{color:#6528f5;background:#fff}.exactmetrics-header .exactmetrics-float-right .exactmetrics-button.exactmetrics-button-disabled{color:#9087ac}@media (max-width:959px){.exactmetrics-header .exactmetrics-float-right{text-align:left;width:100%}}.exactmetrics-logo-area{float:right;max-width:calc(100vw - 170px)}.exactmetrics-logo-area img{display:block;max-width:100%}@media (max-width:959px){.exactmetrics-logo-area{width:140px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}}@media (max-width:959px){.exactmetrics-header .exactmetrics-container,.exactmetrics-navigation-bar .exactmetrics-container{padding:0;width:100%}}.exactmetrics-navigation-bar{background:rgba(0,0,0,0);display:inline-block;margin-right:-163px}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none}}.exactmetrics-admin-page{position:relative}.exactmetrics-admin-page .exactmetrics-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-header{padding:20px 24px}.exactmetrics-admin-page .exactmetrics-header .exactmetrics-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#210f59}#footer-left .exactmetrics-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#6528f5}#wpfooter{display:none;margin-left:23px;margin-bottom:20px;right:23px;background:rgba(101,40,245,.05);padding:14px 20px;border-radius:5px}#wpfooter a{color:#6528f5}.exactmetrics-container{margin:0 auto;max-width:100%;width:750px}.exactmetrics-admin-page .exactmetrics-navigation-tab-link{text-decoration:none;padding:12px 4px 11px;font-size:15px;color:#fff;display:inline-block;margin-left:20px;line-height:1;outline:none;font-family:Lato,sans-serif;position:relative}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:after{content:"";width:100%;right:0;position:absolute;top:100%;height:2px;border-radius:20px;background:#fff;display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover{border-bottom-color:#fff;color:#fff;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus:after,.exactmetrics-admin-page .exactmetrics-navigation-tab-link:hover:after{display:block}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:focus,.exactmetrics-admin-page .exactmetrics-navigation-tab-link.exactmetrics-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#fff;cursor:default}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-navigation-tab-link{width:100%;padding:20px 0;color:#fff;font-size:16px;border-top:1px solid #4d3f7a;text-align:right}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:first-child{border-top:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active:first-child+.exactmetrics-navigation-tab-link{border-top:0}.exactmetrics-admin-page .exactmetrics-navigation-tab-link.router-link-exact-active{display:none}.exactmetrics-admin-page .exactmetrics-navigation-tab-link:focus{color:#fff;text-decoration:none}}.exactmetrics-admin-page .exactmetrics-button{background:#6528f5;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics-admin-page .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-button:hover{background-color:#37276a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;color:#9087ac}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary{background:#e9e7ee;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-secondary:hover{background-color:#f4f3f7;color:#37276a}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green{background:#32a27a;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-green:hover{background-color:#19865f;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text{background:rgba(0,0,0,0);border:none;color:#6528f5;padding:0;border-radius:0;text-decoration:underline}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]{margin-right:10px;min-width:16px;display:inline-block}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text [class*=monstericon-]:first-child{margin-right:0;margin-left:10px}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark{color:#210f59}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:focus,.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-text.exactmetrics-button-text-dark:hover{color:#6528f5}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-red{background:#e43462;border-color:#e43462;color:#fff}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-large{font-size:15px;padding:14px 30px 12px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{font-size:20px;padding:23px 67px;font-weight:500}.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl i{margin-right:10px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-button.exactmetrics-button-xl{padding-right:45px;padding-left:45px}}.exactmetrics-admin-page .exactmetrics-spaced-top{margin-top:20px}.exactmetrics-green-text{color:#32a27a;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.exactmetrics-mobile-nav-trigger{color:#fff;font-size:15px;font-weight:500;display:inline-block;border:none;background:#37276a;padding:7px 18px;line-height:1.7;margin:0;border-radius:5px}@media (min-width:960px){.exactmetrics-mobile-nav-trigger{display:none}}.exactmetrics-mobile-nav-trigger i{color:#fff;margin-right:25px;vertical-align:middle}.exactmetrics-mobile-nav-trigger.exactmetrics-mobile-nav-trigger-open{border-radius:5px 5px 0 0}@media (max-width:959px){.exactmetrics-main-navigation{background:#37276a;height:0;overflow:hidden;position:absolute;right:24px;left:24px;text-align:right;border-radius:0 5px 5px 5px}.exactmetrics-main-navigation.exactmetrics-main-navigation-open{padding:17px 40px;height:auto;-webkit-box-shadow:0 40px 30px rgba(33,15,89,.1);box-shadow:0 40px 30px rgba(33,15,89,.1)}}@media (min-width:782px){.exactmetrics_page .exactmetrics-swal{margin-right:160px}.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .exactmetrics_page .exactmetrics-swal{margin-right:160px}.folded .exactmetrics_page .exactmetrics-swal{margin-right:36px}}.exactmetrics_page .exactmetrics-swal .swal2-footer{border-top:none;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;margin-top:0;font-size:15px}.exactmetrics_page .exactmetrics-swal .swal2-footer a{color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-footer a:focus,.exactmetrics_page .exactmetrics-swal .swal2-footer a:hover{color:#37276a}.exactmetrics-modal{position:fixed;top:0;right:0;left:0;bottom:0;background:rgba(0,0,0,.8);z-index:99999;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-modal .exactmetrics-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.exactmetrics-modal .exactmetrics-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.exactmetrics-modal .exactmetrics-modal-inner p{margin-bottom:0}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-modal-buttons{margin-top:50px}.exactmetrics-modal .exactmetrics-modal-inner .exactmetrics-button{margin:0 10px}.exactmetrics-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(33,15,89,.9)}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%;border-radius:10px;-webkit-box-shadow:0 20px 80px rgba(13,7,36,.5);box-shadow:0 20px 80px rgba(13,7,36,.5)}.exactmetrics-welcome-overlay .exactmetrics-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content{height:100%}.exactmetrics-welcome-overlay .exactmetrics-welcome-overlay-content iframe{height:100%;width:100%}.swal2-container.exactmetrics-swal-loading{background:#fff;padding:20px;top:112px;height:auto}.swal2-container.exactmetrics-swal-loading.exactmetrics-swal-full-height{top:32px}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal{width:100%;height:100%;border-radius:10px;background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;background-size:cover;-webkit-animation-duration:1ms;animation-duration:1ms}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-icon{visibility:hidden;height:0;padding:0}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-header{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-title{font-size:17px;color:#210f59}.swal2-container.exactmetrics-swal-loading .swal2-popup.swal2-modal .swal2-content{color:#9087ac;margin-top:6px;font-size:15px;line-height:1.75;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}.swal2-container.exactmetrics-swal-loading .swal2-actions button{display:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess{padding:0;background:#f8f6ff}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-icon{visibility:hidden;height:0;width:0;margin:0;padding:0}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal{width:750px;background:none;padding-right:260px;position:relative}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-header{display:block}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-title{font-size:32px;line-height:1.3;color:#210f59;text-align:right}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content{font-size:15px;line-height:1.75;color:#210f59;text-align:right;margin-bottom:20px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal #swal2-content p{font-size:15px;margin:0;font-weight:500}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-actions{margin:0;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled{margin:0;font-size:15px;padding:16px 23px 14px;outline:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled .monstericon-long-arrow-right-light{margin-right:14px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled:hover{border:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm{background:#32a27a}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-confirm:hover{background:#19865f}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .swal2-styled.swal2-cancel{margin-right:15px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons{position:absolute;right:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]{position:absolute;color:#6528f5;opacity:.5;font-size:41px;top:114px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:first-child{font-size:108px;opacity:1;top:-22px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(2){right:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){right:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(3){top:147px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .monsterinsigts-swal-icons [class^=monstericon-]:nth-child(4){right:185px}.exactmetrics_page .exactmetrics-swal .swal2-title{line-height:1.2}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info{border:none;border-radius:0}.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-error:before,.exactmetrics_page .exactmetrics-swal .swal2-icon.swal2-info:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f064";font-size:80px;color:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-icon-text,.exactmetrics_page .exactmetrics-swal .swal2-icon .swal2-x-mark{display:none}.exactmetrics_page .exactmetrics-swal .swal2-styled{border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:12px 24px;text-decoration:none;border:0}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm{background:#6528f5}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-confirm:hover{background-color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel{background:#e9e7ee;color:#37276a}.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:focus,.exactmetrics_page .exactmetrics-swal .swal2-styled.swal2-cancel:hover{background-color:#f4f3f7;color:#37276a;-webkit-box-shadow:none;box-shadow:none}.exactmetrics_page .exactmetrics-swal .swal2-popup{border-radius:10px;padding:40px}.exactmetrics-list-check ul{margin:0;list-style:none;padding-right:0}.exactmetrics-list-check li{font-size:15px;margin-top:18px;padding-right:30px;position:relative;color:#fff}.exactmetrics-list-check li:first-child{margin-top:0}.exactmetrics-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f045";font-size:15px;margin-left:10px;color:#fff;position:absolute;right:0;top:0}.exactmetrics-settings-input-select-input .multiselect__tags-wrap{position:relative}.exactmetrics-settings-input-select-input .multiselect__tags-wrap:after{content:attr(data-text);display:inline-block;position:relative;color:#9087ac;bottom:0;background:#fff;border-radius:4px;font-size:14px;vertical-align:top;padding:8px 15px}.exactmetrics-settings-input-select-input .multiselect__placeholder{display:none}.multiselect__content-wrapper{right:30px}
|
lite/assets/vue/css/reports.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
-
*/.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position:0 -32px}.exactmetrics-flag.exactmetrics-flag-ba{background-position:-32px -32px}.exactmetrics-flag.exactmetrics-flag-bb{background-position:-64px -32px}.exactmetrics-flag.exactmetrics-flag-bd{background-position:-96px -32px}.exactmetrics-flag.exactmetrics-flag-be{background-position:-128px -32px}.exactmetrics-flag.exactmetrics-flag-bf{background-position:-160px -32px}.exactmetrics-flag.exactmetrics-flag-bg{background-position:-192px -32px}.exactmetrics-flag.exactmetrics-flag-bh{background-position:-224px -32px}.exactmetrics-flag.exactmetrics-flag-bi{background-position:-256px -32px}.exactmetrics-flag.exactmetrics-flag-bj{background-position:-288px -32px}.exactmetrics-flag.exactmetrics-flag-bl{background-position:-320px -32px}.exactmetrics-flag.exactmetrics-flag-bm{background-position:-352px -32px}.exactmetrics-flag.exactmetrics-flag-bn{background-position:-384px -32px}.exactmetrics-flag.exactmetrics-flag-bo{background-position:-416px -32px}.exactmetrics-flag.exactmetrics-flag-br{background-position:-448px -32px}.exactmetrics-flag.exactmetrics-flag-bs{background-position:-480px -32px}.exactmetrics-flag.exactmetrics-flag-bt{background-position:0 -64px}.exactmetrics-flag.exactmetrics-flag-bw{background-position:-32px -64px}.exactmetrics-flag.exactmetrics-flag-by{background-position:-64px -64px}.exactmetrics-flag.exactmetrics-flag-bz{background-position:-96px -64px}.exactmetrics-flag.exactmetrics-flag-ca{background-position:-128px -64px}.exactmetrics-flag.exactmetrics-flag-cd{background-position:-160px -64px}.exactmetrics-flag.exactmetrics-flag-cf{background-position:-192px -64px}.exactmetrics-flag.exactmetrics-flag-cg{background-position:-224px -64px}.exactmetrics-flag.exactmetrics-flag-ch{background-position:-256px -64px}.exactmetrics-flag.exactmetrics-flag-ci{background-position:-288px -64px}.exactmetrics-flag.exactmetrics-flag-ck{background-position:-320px -64px}.exactmetrics-flag.exactmetrics-flag-cl{background-position:-352px -64px}.exactmetrics-flag.exactmetrics-flag-cm{background-position:-384px -64px}.exactmetrics-flag.exactmetrics-flag-cn{background-position:-416px -64px}.exactmetrics-flag.exactmetrics-flag-co{background-position:-448px -64px}.exactmetrics-flag.exactmetrics-flag-cr{background-position:-480px -64px}.exactmetrics-flag.exactmetrics-flag-cu{background-position:0 -96px}.exactmetrics-flag.exactmetrics-flag-cv{background-position:-32px -96px}.exactmetrics-flag.exactmetrics-flag-cw{background-position:-64px -96px}.exactmetrics-flag.exactmetrics-flag-cy{background-position:-96px -96px}.exactmetrics-flag.exactmetrics-flag-cz{background-position:-128px -96px}.exactmetrics-flag.exactmetrics-flag-de{background-position:-160px -96px}.exactmetrics-flag.exactmetrics-flag-dj{background-position:-192px -96px}.exactmetrics-flag.exactmetrics-flag-dk{background-position:-224px -96px}.exactmetrics-flag.exactmetrics-flag-dm{background-position:-256px -96px}.exactmetrics-flag.exactmetrics-flag-do{background-position:-288px -96px}.exactmetrics-flag.exactmetrics-flag-dz{background-position:-320px -96px}.exactmetrics-flag.exactmetrics-flag-ec{background-position:-352px -96px}.exactmetrics-flag.exactmetrics-flag-ee{background-position:-384px -96px}.exactmetrics-flag.exactmetrics-flag-eg{background-position:-416px -96px}.exactmetrics-flag.exactmetrics-flag-eh{background-position:-448px -96px}.exactmetrics-flag.exactmetrics-flag-er{background-position:-480px -96px}.exactmetrics-flag.exactmetrics-flag-es{background-position:0 -128px}.exactmetrics-flag.exactmetrics-flag-et{background-position:-32px -128px}.exactmetrics-flag.exactmetrics-flag-eu{background-position:-64px -128px}.exactmetrics-flag.exactmetrics-flag-fi{background-position:-96px -128px}.exactmetrics-flag.exactmetrics-flag-fj{background-position:-128px -128px}.exactmetrics-flag.exactmetrics-flag-fk{background-position:-160px -128px}.exactmetrics-flag.exactmetrics-flag-fm{background-position:-192px -128px}.exactmetrics-flag.exactmetrics-flag-fo{background-position:-224px -128px}.exactmetrics-flag.exactmetrics-flag-fr{background-position:-256px -128px}.exactmetrics-flag.exactmetrics-flag-ga{background-position:-288px -128px}.exactmetrics-flag.exactmetrics-flag-gb{background-position:-320px -128px}.exactmetrics-flag.exactmetrics-flag-gd{background-position:-352px -128px}.exactmetrics-flag.exactmetrics-flag-ge{background-position:-384px -128px}.exactmetrics-flag.exactmetrics-flag-gg{background-position:-416px -128px}.exactmetrics-flag.exactmetrics-flag-gh{background-position:-448px -128px}.exactmetrics-flag.exactmetrics-flag-gi{background-position:-480px -128px}.exactmetrics-flag.exactmetrics-flag-gl{background-position:0 -160px}.exactmetrics-flag.exactmetrics-flag-gm{background-position:-32px -160px}.exactmetrics-flag.exactmetrics-flag-gn{background-position:-64px -160px}.exactmetrics-flag.exactmetrics-flag-gp{background-position:-96px -160px}.exactmetrics-flag.exactmetrics-flag-gq{background-position:-128px -160px}.exactmetrics-flag.exactmetrics-flag-gr{background-position:-160px -160px}.exactmetrics-flag.exactmetrics-flag-gs{background-position:-192px -160px}.exactmetrics-flag.exactmetrics-flag-gt{background-position:-224px -160px}.exactmetrics-flag.exactmetrics-flag-gu{background-position:-256px -160px}.exactmetrics-flag.exactmetrics-flag-gw{background-position:-288px -160px}.exactmetrics-flag.exactmetrics-flag-gy{background-position:-320px -160px}.exactmetrics-flag.exactmetrics-flag-hk{background-position:-352px -160px}.exactmetrics-flag.exactmetrics-flag-hn{background-position:-384px -160px}.exactmetrics-flag.exactmetrics-flag-hr{background-position:-416px -160px}.exactmetrics-flag.exactmetrics-flag-ht{background-position:-448px -160px}.exactmetrics-flag.exactmetrics-flag-hu{background-position:-480px -160px}.exactmetrics-flag.exactmetrics-flag-ic{background-position:0 -192px}.exactmetrics-flag.exactmetrics-flag-id{background-position:-32px -192px}.exactmetrics-flag.exactmetrics-flag-ie{background-position:-64px -192px}.exactmetrics-flag.exactmetrics-flag-il{background-position:-96px -192px}.exactmetrics-flag.exactmetrics-flag-im{background-position:-128px -192px}.exactmetrics-flag.exactmetrics-flag-in{background-position:-160px -192px}.exactmetrics-flag.exactmetrics-flag-iq{background-position:-192px -192px}.exactmetrics-flag.exactmetrics-flag-ir{background-position:-224px -192px}.exactmetrics-flag.exactmetrics-flag-is{background-position:-256px -192px}.exactmetrics-flag.exactmetrics-flag-it{background-position:-288px -192px}.exactmetrics-flag.exactmetrics-flag-je{background-position:-320px -192px}.exactmetrics-flag.exactmetrics-flag-jm{background-position:-352px -192px}.exactmetrics-flag.exactmetrics-flag-jo{background-position:-384px -192px}.exactmetrics-flag.exactmetrics-flag-jp{background-position:-416px -192px}.exactmetrics-flag.exactmetrics-flag-ke{background-position:-448px -192px}.exactmetrics-flag.exactmetrics-flag-kg{background-position:-480px -192px}.exactmetrics-flag.exactmetrics-flag-kh{background-position:0 -224px}.exactmetrics-flag.exactmetrics-flag-ki{background-position:-32px -224px}.exactmetrics-flag.exactmetrics-flag-km{background-position:-64px -224px}.exactmetrics-flag.exactmetrics-flag-kn{background-position:-96px -224px}.exactmetrics-flag.exactmetrics-flag-kp{background-position:-128px -224px}.exactmetrics-flag.exactmetrics-flag-kr{background-position:-160px -224px}.exactmetrics-flag.exactmetrics-flag-kw{background-position:-192px -224px}.exactmetrics-flag.exactmetrics-flag-ky{background-position:-224px -224px}.exactmetrics-flag.exactmetrics-flag-kz{background-position:-256px -224px}.exactmetrics-flag.exactmetrics-flag-la{background-position:-288px -224px}.exactmetrics-flag.exactmetrics-flag-lb{background-position:-320px -224px}.exactmetrics-flag.exactmetrics-flag-lc{background-position:-352px -224px}.exactmetrics-flag.exactmetrics-flag-li{background-position:-384px -224px}.exactmetrics-flag.exactmetrics-flag-lk{background-position:-416px -224px}.exactmetrics-flag.exactmetrics-flag-lr{background-position:-448px -224px}.exactmetrics-flag.exactmetrics-flag-ls{background-position:-480px -224px}.exactmetrics-flag.exactmetrics-flag-lt{background-position:0 -256px}.exactmetrics-flag.exactmetrics-flag-lu{background-position:-32px -256px}.exactmetrics-flag.exactmetrics-flag-lv{background-position:-64px -256px}.exactmetrics-flag.exactmetrics-flag-ly{background-position:-96px -256px}.exactmetrics-flag.exactmetrics-flag-ma{background-position:-128px -256px}.exactmetrics-flag.exactmetrics-flag-mc{background-position:-160px -256px}.exactmetrics-flag.exactmetrics-flag-md{background-position:-192px -256px}.exactmetrics-flag.exactmetrics-flag-me{background-position:-224px -256px}.exactmetrics-flag.exactmetrics-flag-mf{background-position:-256px -256px}.exactmetrics-flag.exactmetrics-flag-mg{background-position:-288px -256px}.exactmetrics-flag.exactmetrics-flag-mh{background-position:-320px -256px}.exactmetrics-flag.exactmetrics-flag-mk{background-position:-352px -256px}.exactmetrics-flag.exactmetrics-flag-ml{background-position:-384px -256px}.exactmetrics-flag.exactmetrics-flag-mm{background-position:-416px -256px}.exactmetrics-flag.exactmetrics-flag-mn{background-position:-448px -256px}.exactmetrics-flag.exactmetrics-flag-mo{background-position:-480px -256px}.exactmetrics-flag.exactmetrics-flag-mp{background-position:0 -288px}.exactmetrics-flag.exactmetrics-flag-mq{background-position:-32px -288px}.exactmetrics-flag.exactmetrics-flag-mr{background-position:-64px -288px}.exactmetrics-flag.exactmetrics-flag-ms{background-position:-96px -288px}.exactmetrics-flag.exactmetrics-flag-mt{background-position:-128px -288px}.exactmetrics-flag.exactmetrics-flag-mu{background-position:-160px -288px}.exactmetrics-flag.exactmetrics-flag-mv{background-position:-192px -288px}.exactmetrics-flag.exactmetrics-flag-mw{background-position:-224px -288px}.exactmetrics-flag.exactmetrics-flag-mx{background-position:-256px -288px}.exactmetrics-flag.exactmetrics-flag-my{background-position:-288px -288px}.exactmetrics-flag.exactmetrics-flag-mz{background-position:-320px -288px}.exactmetrics-flag.exactmetrics-flag-na{background-position:-352px -288px}.exactmetrics-flag.exactmetrics-flag-nc{background-position:-384px -288px}.exactmetrics-flag.exactmetrics-flag-ne{background-position:-416px -288px}.exactmetrics-flag.exactmetrics-flag-nf{background-position:-448px -288px}.exactmetrics-flag.exactmetrics-flag-ng{background-position:-480px -288px}.exactmetrics-flag.exactmetrics-flag-ni{background-position:0 -320px}.exactmetrics-flag.exactmetrics-flag-nl{background-position:-32px -320px}.exactmetrics-flag.exactmetrics-flag-no{background-position:-64px -320px}.exactmetrics-flag.exactmetrics-flag-np{background-position:-96px -320px}.exactmetrics-flag.exactmetrics-flag-nr{background-position:-128px -320px}.exactmetrics-flag.exactmetrics-flag-nu{background-position:-160px -320px}.exactmetrics-flag.exactmetrics-flag-nz{background-position:-192px -320px}.exactmetrics-flag.exactmetrics-flag-om{background-position:-224px -320px}.exactmetrics-flag.exactmetrics-flag-pa{background-position:-256px -320px}.exactmetrics-flag.exactmetrics-flag-pe{background-position:-288px -320px}.exactmetrics-flag.exactmetrics-flag-pf{background-position:-320px -320px}.exactmetrics-flag.exactmetrics-flag-pg{background-position:-352px -320px}.exactmetrics-flag.exactmetrics-flag-ph{background-position:-384px -320px}.exactmetrics-flag.exactmetrics-flag-pk{background-position:-416px -320px}.exactmetrics-flag.exactmetrics-flag-pl{background-position:-448px -320px}.exactmetrics-flag.exactmetrics-flag-pn{background-position:-480px -320px}.exactmetrics-flag.exactmetrics-flag-pr{background-position:0 -352px}.exactmetrics-flag.exactmetrics-flag-ps{background-position:-32px -352px}.exactmetrics-flag.exactmetrics-flag-pt{background-position:-64px -352px}.exactmetrics-flag.exactmetrics-flag-pw{background-position:-96px -352px}.exactmetrics-flag.exactmetrics-flag-py{background-position:-128px -352px}.exactmetrics-flag.exactmetrics-flag-qa{background-position:-160px -352px}.exactmetrics-flag.exactmetrics-flag-re{background-position:-192px -352px}.exactmetrics-flag.exactmetrics-flag-ro{background-position:-224px -352px}.exactmetrics-flag.exactmetrics-flag-rs{background-position:-256px -352px}.exactmetrics-flag.exactmetrics-flag-ru{background-position:-288px -352px}.exactmetrics-flag.exactmetrics-flag-rw{background-position:-320px -352px}.exactmetrics-flag.exactmetrics-flag-sa{background-position:-352px -352px}.exactmetrics-flag.exactmetrics-flag-sb{background-position:-384px -352px}.exactmetrics-flag.exactmetrics-flag-sc{background-position:-416px -352px}.exactmetrics-flag.exactmetrics-flag-sd{background-position:-448px -352px}.exactmetrics-flag.exactmetrics-flag-se{background-position:-480px -352px}.exactmetrics-flag.exactmetrics-flag-sg{background-position:0 -384px}.exactmetrics-flag.exactmetrics-flag-sh{background-position:-32px -384px}.exactmetrics-flag.exactmetrics-flag-si{background-position:-64px -384px}.exactmetrics-flag.exactmetrics-flag-sk{background-position:-96px -384px}.exactmetrics-flag.exactmetrics-flag-sl{background-position:-128px -384px}.exactmetrics-flag.exactmetrics-flag-sm{background-position:-160px -384px}.exactmetrics-flag.exactmetrics-flag-sn{background-position:-192px -384px}.exactmetrics-flag.exactmetrics-flag-so{background-position:-224px -384px}.exactmetrics-flag.exactmetrics-flag-sr{background-position:-256px -384px}.exactmetrics-flag.exactmetrics-flag-ss{background-position:-288px -384px}.exactmetrics-flag.exactmetrics-flag-st{background-position:-320px -384px}.exactmetrics-flag.exactmetrics-flag-sv{background-position:-352px -384px}.exactmetrics-flag.exactmetrics-flag-sy{background-position:-384px -384px}.exactmetrics-flag.exactmetrics-flag-sz{background-position:-416px -384px}.exactmetrics-flag.exactmetrics-flag-tc{background-position:-448px -384px}.exactmetrics-flag.exactmetrics-flag-td{background-position:-480px -384px}.exactmetrics-flag.exactmetrics-flag-tf{background-position:0 -416px}.exactmetrics-flag.exactmetrics-flag-tg{background-position:-32px -416px}.exactmetrics-flag.exactmetrics-flag-th{background-position:-64px -416px}.exactmetrics-flag.exactmetrics-flag-tj{background-position:-96px -416px}.exactmetrics-flag.exactmetrics-flag-tk{background-position:-128px -416px}.exactmetrics-flag.exactmetrics-flag-tl{background-position:-160px -416px}.exactmetrics-flag.exactmetrics-flag-tm{background-position:-192px -416px}.exactmetrics-flag.exactmetrics-flag-tn{background-position:-224px -416px}.exactmetrics-flag.exactmetrics-flag-to{background-position:-256px -416px}.exactmetrics-flag.exactmetrics-flag-tr{background-position:-288px -416px}.exactmetrics-flag.exactmetrics-flag-tt{background-position:-320px -416px}.exactmetrics-flag.exactmetrics-flag-tv{background-position:-352px -416px}.exactmetrics-flag.exactmetrics-flag-tw{background-position:-384px -416px}.exactmetrics-flag.exactmetrics-flag-tz{background-position:-416px -416px}.exactmetrics-flag.exactmetrics-flag-ua{background-position:-448px -416px}.exactmetrics-flag.exactmetrics-flag-ug{background-position:-480px -416px}.exactmetrics-flag.exactmetrics-flag-us{background-position:0 -448px}.exactmetrics-flag.exactmetrics-flag-uy{background-position:-32px -448px}.exactmetrics-flag.exactmetrics-flag-uz{background-position:-64px -448px}.exactmetrics-flag.exactmetrics-flag-va{background-position:-96px -448px}.exactmetrics-flag.exactmetrics-flag-vc{background-position:-128px -448px}.exactmetrics-flag.exactmetrics-flag-ve{background-position:-160px -448px}.exactmetrics-flag.exactmetrics-flag-vg{background-position:-192px -448px}.exactmetrics-flag.exactmetrics-flag-vi{background-position:-224px -448px}.exactmetrics-flag.exactmetrics-flag-vn{background-position:-256px -448px}.exactmetrics-flag.exactmetrics-flag-vu{background-position:-288px -448px}.exactmetrics-flag.exactmetrics-flag-wf{background-position:-320px -448px}.exactmetrics-flag.exactmetrics-flag-ws{background-position:-352px -448px}.exactmetrics-flag.exactmetrics-flag-ye{background-position:-384px -448px}.exactmetrics-flag.exactmetrics-flag-yt{background-position:-416px -448px}.exactmetrics-flag.exactmetrics-flag-za{background-position:-448px -448px}.exactmetrics-flag.exactmetrics-flag-zm{background-position:-480px -448px}.exactmetrics-flag.exactmetrics-flag-zw{background-position:0 -480px}.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 .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-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)}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-left:24px;padding-right:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:24px}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-datepicker{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{background:#e9e7ee;border-radius:3px;font-size:15px;color:#210f59;line-height:1.75;padding:8px 28px 8px 20px;border:none;position:relative;text-align:left}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{max-width:100%;line-height:1.4}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:super}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;right:20px}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0;top:100%}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button{display:block;border:none;padding:8px 12px;font-size:15px;line-height:1.75;color:#210f59;width:100%;text-align:left;border-radius:2px;background:#fff}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button.exactmetrics-interval-active,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:focus,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:hover{background:#e9e7ee}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button i{margin-right:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-left:0;font-weight:700}@media (min-width:783px){body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{display:none}}body.exactmetrics-reporting-page .exactmetrics-info{color:#9087ac;cursor:help;font-size:15px;position:relative;display:inline-block;vertical-align:top;margin-left:10px}body.exactmetrics-reporting-page .exactmetrics-report-row{margin-bottom:25px}body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-bottom:0;margin-left:-32px;margin-right:-32px;padding:0 32px;border-top:1px solid #e9e7ee}@media (max-width:991px){body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-24px;margin-right:-24px;padding-left:24px;padding-right:24px}}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border:1px solid #bcb7cd;-webkit-box-shadow:0 10px 20px rgba(57,15,157,.15);box-shadow:0 10px 20px rgba(57,15,157,.15);border-radius:5px;display:block}.exactmetrics-pie-chart-tooltip{left:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{left:50%;margin-left:-97px}}.exactmetrics-reports-doughnut-tooltip{-webkit-box-shadow:none;box-shadow:none;border:none;width:172px;border-radius:50%;height:172px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-title{font-size:30px;color:#6528f5;margin-bottom:18px;font-weight:700}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number{color:#6528f5;font-size:15px;font-weight:500}#exactmetrics-chartjs-line-overview-tooltip{min-width:100px}.exactmetrics-reports-overview-datagraph-tooltip-number{color:#210f59;font-size:24px;font-weight:400;margin-bottom:5px;display:inline-block;margin-right:5px}.exactmetrics-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:14px;font-weight:400;display:inline-block}.exactmetrics-reports-overview-datagraph-tooltip-descriptor{color:#9087ac;font-size:12px;font-weight:400;width:100%;clear:both}.exactmetrics-reports-overview-datagraph-tooltip-title{color:#210f59;font-size:12px;font-weight:400;width:100%}#exactmetrics-chartjs-bar-tooltip,.exactmetrics-line-chart-tooltip{opacity:1;position:absolute;-webkit-transform:translate(-50%,-100%);-ms-transform:translate(-50%,-100%);transform:translate(-50%,-100%);margin-top:-20px}#exactmetrics-chartjs-bar-tooltip:after,.exactmetrics-line-chart-tooltip:after{position:absolute;top:100%;width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 9.5px 0;content:"";left:50%;margin-left:-9px;margin-top:-7px}#exactmetrics-chartjs-bar-tooltip:before,.exactmetrics-line-chart-tooltip:before{position:absolute;top:100%;width:0;height:0;border-color:#bcb7cd rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 10.5px 0;content:"";left:50%;margin-left:-10px;margin-top:-6px}#exactmetrics-chartjs-line-age-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number:after{content:"%"}.exactmetrics-report-tabs-navigation{border-bottom:1px solid #e9e7ee}.exactmetrics-report-tabs-navigation button{color:#4d3f7a;font-weight:700;text-align:left;font-size:15px;padding:15px 24px 17px;cursor:pointer;margin:0 0 -1px;position:relative;line-height:1;border-radius:5px 5px 0 0;background:#fff;border:1px solid;border-color:#fff #fff #e9e7ee}@media (max-width:782px){.exactmetrics-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.exactmetrics-report-tabs-navigation button:focus{z-index:10}.exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{background:#fff;color:#6528f5;border-color:#e9e7ee #e9e7ee #fff}.exactmetrics-report-tabs{background:#fff}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-top:20px}#mi-custom-line{max-height:330px}.exactmetrics-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;background:#f4f3f7;border-radius:10px;padding:24px 60px}@media (max-width:782px){.exactmetrics-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap;padding:20px}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;padding:0 0 0 80px;position:relative}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-left:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-left:none;border-top:1px solid #bcb7cd;padding:24px 0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-top:0;padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:last-child{padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2;color:#4d3f7a;font-size:13px;display:inline-block;vertical-align:middle;padding-left:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-left:0}}.exactmetrics-report-title{font-size:24px;color:#210f59;font-weight:700;margin-top:0;line-height:1.4;display:inline-block}@media (max-width:762px){.exactmetrics-report-title{padding-left:60px}.exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:80px}}.exactmetrics-report-title:before{width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);right:100%;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;vertical-align:middle;margin-top:-2px}@media (max-width:762px){.exactmetrics-report-title:before{position:absolute;left:0}}.exactmetrics-reports-infobox-number{font-size:32px;font-weight:500;line-height:1;margin-top:4px;color:#210f59;width:100%;display:block}@media (max-width:782px){.exactmetrics-reports-infobox-number{font-size:36px;float:none}}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none;clear:both}}.exactmetrics-reports-infobox-prev{font-size:14px;margin-top:4px;margin-right:5px}.exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}.exactmetrics-reports-infobox-compare{font-size:12px;color:#9087ac;display:inline-block}.exactmetrics-buttons-toggle{margin-right:25px}.exactmetrics-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.exactmetrics-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-reports-pie-chart{width:50%;padding:32px 20px 32px 32px;background:#fff;position:relative}.exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee;padding-left:0}@media (max-width:991px){.exactmetrics-reports-pie-chart:first-child{border-right:0}}@media (max-width:991px){.exactmetrics-reports-pie-chart{width:100%;border:none;padding-left:0;padding-right:0}}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;margin-left:20px}@media (max-width:781px){.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 12px 0 0}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{margin:24px 12px;-ms-flex-negative:0;flex-shrink:0;-ms-flex-item-align:center;align-self:center}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend li{background:#f4f3f7;border-radius:10px;padding:10px 20px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-pie-chart-legend-color{width:25px;height:25px;display:inline-block;border-radius:50%;margin:7px 17px 7px 0;float:left}.exactmetrics-pie-chart-legend-text{display:inline-block;font-size:15px;color:#9087ac;width:calc(100% - 50px)}.exactmetrics-pie-chart-legend-value{color:#210f59;font-size:18px;font-weight:500;display:inline-block;width:calc(100% - 50px)}.exactmetrics-table-box{background:#fff;width:100%;padding-top:32px;position:relative}.exactmetrics-table-box:first-child{margin-left:0;margin-top:0}@media (max-width:991px){.exactmetrics-table-box{margin-left:0;margin-top:20px}}.exactmetrics-table-box-footer{background:#fff;padding:20px 0 21px;text-align:right}.exactmetrics-report-row-border-top .exactmetrics-table-box-footer{padding-bottom:46px}.exactmetrics-table-box-footer:after{display:table;clear:both;content:""}.exactmetrics-table-box-footer .exactmetrics-button [class*=monstericon-]{margin-left:18px}@media (max-width:782px){.exactmetrics-table-box-footer>.exactmetrics-button{width:100%;text-align:center}}.exactmetrics-table-list-item{padding:12px 20px;min-height:42px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:3px}table .exactmetrics-table-list-item{display:table-row}.exactmetrics-table-list-item:nth-child(odd){background-color:#f4f3f7}.exactmetrics-table-list-item .exactmetrics-reports-list-text{color:#210f59;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px;font-weight:500}.exactmetrics-table-list-item .exactmetrics-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;color:#210f59}.exactmetrics-table-list-item .exactmetrics-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.exactmetrics-table-list-item .exactmetrics-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-6px 0 -10px -8px}.exactmetrics-table-list-item a{text-decoration:none;color:#393f4c}.exactmetrics-table-list-item a:focus,.exactmetrics-table-list-item a:hover{color:#777}.exactmetrics-table-list-item .exactmetrics-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:32px;right:0}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;top:65px}}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination span{color:#9087ac}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle{position:absolute;top:100%;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button{width:100%;border-radius:3px;border:none;background:#fff}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#f4f3f7}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-pagination-selector span{color:#37276a}.exactmetrics-pagination-selector{background:#f4f3f7;padding:8px 35px 8px 20px;border:none;border-radius:3px;font-size:15px;line-height:1.7;cursor:pointer}.exactmetrics-pagination-selector:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-1px;right:20px}@media (max-width:792px){.exactmetrics-pagination-selector{width:100%;text-align:left;top:65px}}.exactmetrics-table-box-list{min-height:calc(100% - 147px);position:relative}.exactmetrics-table-box-list .exactmetrics-table-no-data{top:0;bottom:0;left:0;right:0}.exactmetrics-table-box-table .exactmetrics-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.exactmetrics-table-box-table .exactmetrics-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-table-box-mobile .exactmetrics-table-box-table{overflow:auto}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#210f59;padding-top:12px;padding-bottom:12px;border-top:none}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th{display:none;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1{display:block;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#9087ac;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-mobile-heading{min-width:125px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-list-item-empty td:first-child .exactmetrics-table-item-content:after{display:none}.exactmetrics-table-box-table table{width:100%;border-collapse:collapse}.exactmetrics-table-box-mobile .exactmetrics-table-box-table table{table-layout:fixed}.exactmetrics-table-box-table th{text-align:left;font-size:12px;color:#9087ac;text-transform:uppercase;letter-spacing:.08em}.exactmetrics-table-box-table td,.exactmetrics-table-box-table th{border:none;padding:12px 10px;line-height:19px}.exactmetrics-table-box-table td:first-child,.exactmetrics-table-box-table th:first-child{padding-left:20px}.exactmetrics-table-box-table td:last-child,.exactmetrics-table-box-table th:last-child{padding-right:20px}.exactmetrics-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-report-2-columns .exactmetrics-table-box{width:50%}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box{width:100%}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%}@media (max-width:782px){.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:32px;border-right:1px solid #e9e7ee}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:0;border-right:none}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:32px}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:0}}.exactmetrics-report-dimensions .exactmetrics-table-box{border-top:1px solid #e9e7ee;padding-left:32px;padding-right:32px}.exactmetrics-report-dimensions .exactmetrics-report-2-columns{margin-left:-32px;margin-right:-32px}.exactmetrics-report-flex .exactmetrics-report-box{width:50%}@media (max-width:782px){.exactmetrics-report-flex .exactmetrics-report-box{width:100%;margin-top:20px}.exactmetrics-report-flex .exactmetrics-report-box:first-child{margin-top:0}}.exactmetrics-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}.exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.exactmetrics-reports-overview-datagraph-tooltip-trend{font-weight:700}.exactmetrics-report-box{background:#fff;padding:32px 0;position:relative}.exactmetrics-realtime-large{font-size:120px;text-align:center;line-height:1.4;color:#32a27a}.exactmetrics-realtime-active{text-align:center;width:100%;font-size:17px;line-height:1;margin-top:-2px;color:#210f59;font-weight:500}.exactmetrics-realtime-box-content .exactmetrics-line-chart-tooltip{max-width:115px}.exactmetrics-realtime-count-box{width:357px;height:357px;margin:50px auto;border-radius:50%;border:15px solid #e9e7ee;text-align:center;padding-top:52px}@media (max-width:782px){.exactmetrics-realtime-count-box{width:300px;height:300px;padding-top:40px}}.exactmetrics-realtime-count-box h3{display:inline-block;font-size:24px;color:#210f59;line-height:1.4;margin:0}#exactmetrics-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-blur .exactmetrics-report{min-height:850px}.exactmetrics-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.exactmetrics-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.exactmetrics-upsell-inline .exactmetrics-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.exactmetrics-upsell-content{max-width:750px}.exactmetrics-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.exactmetrics-upsell-content .exactmetrics-light{color:#657086}.exactmetrics-upsell-content .exactmetrics-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.exactmetrics-upsell-content .exactmetrics-button{font-size:15px}}.exactmetrics-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 20px}}@media (max-width:782px){.exactmetrics-upsell-overlay{top:70px;width:calc(100% - 40px)}}.exactmetrics-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.exactmetrics-upsell-overlay p{margin:20px 0}.exactmetrics-upsell-overlay .exactmetrics-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{margin:0 auto;max-width:520px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-left:40px;position:relative;line-height:1.2}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;left:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#210f59;font-size:14px;text-align:center;line-height:20px;top:-1px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content .exactmetrics-button{font-weight:400;font-size:16px;margin-top:10px}.exactmetrics-upsell-overlay a{color:#393f4c}.exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-center,.exactmetrics-mobile-upsell{text-align:center}.exactmetrics-mobile-upsell .exactmetrics-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.exactmetrics-mobile-upsell .exactmetrics-notice-inner{margin-top:0}@media (min-width:783px){.exactmetrics-mobile-upsell{display:none}}.exactmetrics-mobile-upsell .exactmetrics-notice-success .exactmetrics-notice-button{margin-right:0}.exactmetrics-overview-upsell-desktop{margin:0 -32px}@media (max-width:782px){.exactmetrics-overview-upsell-desktop{display:none}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:55%}@media (max-width:969px){.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right{width:45%}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{bottom:auto;height:490px;width:779px;left:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-right:142px}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text:before{content:"";height:48px;width:127px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAP4AAABgCAMAAAAKJD9QAAAAV1BMVEUAAAAgD1ghD1kgC1ghD1khD1ogD1ggEFEgDlkgDlggDlghDlkgDlkiDlkgEFghD1kgDlggEF0gDlggD1ogD1chD1kgD1kgDVgiDlkgD1ggEFogEFUhD1k1ONBfAAAAHHRSTlMAv98g/u9AEHCAYI+vnyHPUBGggDDuvkF/vjExfxARwwAABb9JREFUeNrlnO3O2yAMhfkIhAJp0y7tuo37v85p0qRqC+XENm+Wbed3hXhiY4NNUf+ElpgmbUz5IXPRU5it2ia9VVMKfsugSW9Tnk6zl5OPPmlX1nI5LAqrkGRytOh7Fop08iL27FqzTQvEJ0tHgE+UmSwP3ieHB48jGR+PCfCp4nwAr3t83cKSmQE+/QOw4bGSBfh0pRHg8z0Ky956DV64MrYrfhmem+mD6zbbwpZbAD5Vj3ET/Fl3/LqlN78ubF228M+OO7rF+HJ+XQT8mP5U2DILxJevKF0ESgD+OhWBhoDw5ebSsgm26S8FiBoAikyf+uKXu20FPUDP4C9C2b745dGwvSlFzt8XX3fGHzzw/L78RSrfF7+Yd/hT6aIhAnyzFsH8esOADpifl/GM0VobB8PL0sQ39ZN1MO/MD/FtrT6Taat/bmegFO34mmo2W9M1wftifdCE8UnnlmGpBf0GkD6td4v+5kB4JeMrW13Xjoj/kjUwmeKIov2bwaPBuwuMj2fhMT7gh3up8NbrPWeDfLc8/NEA78f4mH8YN7v+iXk4fPDwlQexn4ivfCM1vXQDZxiyAwyRgA/o3EjCx2TpdyOCEyzjfHwfefixrLUI8O2Gxa8b1QGor3X+Tzz8sTJaJOFjtrv6RZ8BPYv/PjbwadM9SfBjLfZh4xtE/1Ksm5+Hn8pKkwT/XMG3qx+AQgsj/t15+KEzvnJg239DyQFL14aYWfgRZD4y/qWNf3UFfHCsc22MBwvf98bXbfzIc328axzGvwFfV8MWVaY2Sifnzx+If61XRLBw8nxw8E+9Q59p4s/A+ALzDyMDP3fO+9d24ruBvChIfkOs4pM/Y0D4RLccVnmBGfZBApno+As48GN8fOa5tH1jVhzpKinGxye0EeOTTvy57RsjACVsrqn4FgRiMv6z3ek6kRoh1BjjMT42fhbgW1DqBoEWCGWYQMR/lopi52KXQZuChmiWSxgfVxytpNQJNvROsPTx5DMFf0ygzUPF9wa2eUAtBAg1Si7b8e3TlaoiE99r3OQ716bM1Leykqngu9NaaTKgJUnCH5eY3JYW5Fka+Ntj3VWR6tNHdng/A3xp5hPjG9sXf4gAf1JcfQR+VH3xv6i/Cd90v9uDwlU+EL6zAJ/j+n9P6AuqL/4nPGXTN/ExhTvx8vHk2x6YRbrfwdRy+j02vXL8pBC+/EbnZY8jj9xWcnyzoDnje6/Udkpg4xuveuK7yvWk/csd8v+yKN31rzxztTXN0QyKXQTpxvrTQsvj/q/vtfSNYuC7ySvVDd8kT62rp16F7kzGdzkC39Mk+BEarZP3R9DmgOAmp7iw6unR/1AAyQ5Nu3+Ty4I6P0W43JHRDdaXdmlxXtSu+KPjuL8GPsM3ftgXX82cfy+Fwlr9eAkNdj/8hvt7GLLFwf9sRJdb5PgC90+Flfvx7agd8Vvu/wBRS3yxLVRHUDviN90/wBFFO/+vsmuNcnywku+Wbv4yiRZ+MXZP/Lb7X8CQgB/R142/J37b/UtimL9M4xbPN63d9v74V0eP5LkUZvwLrllR3h9fzfSzz9nxXrwYE2hP7IUvdP/AevIkvm2j2p3xsfvPYFTyB/AalCl3xMfuf7fY/evKc8Xtnwb0EXfDH1Zgmb6RmdtFmOBfwcPOSYOm9O742JZDkD3aYbSepklfHOonLOoP46uA5oXPLYJuyh/HB39PAs8XCPuSB8A/O3r2u5ou9EfAf+P+Hm3f5fTHwAfuD/yfT38U/Lr7Z1D5ysKodxh8FcAM+z9a5dWB8JUGmz/whAZVX6w6FH7d/R+9H6x73YM/Fv6bc1z6iOcKL4s6HL7SIPv1eqzyHpQ6IP7ZgewnXAGv+wOHxG+4P5TXBPiD4r9x/3nje604CegwKnVc/LNrZD+s2H6k+uTpT5TfZPhpNeCXlgGCrulEeapav6mAWPWfaJlP+ecD9c6YfNv8QP13jdUZgGL72MYAAAAASUVORK5CYII=);background-size:contain;position:absolute;left:100%;top:0;margin-left:15px}.exactmetrics-report-realtime .exactmetrics-table-box th:first-child{width:auto}.exactmetrics-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.exactmetrics-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;padding-top:32px}.exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-left:0}}.exactmetrics-report-scroll>h3{position:absolute;top:0}.exactmetrics-report-scroll .exactmetrics-realtime-active{margin:0 0 50px}.exactmetrics-report-scroll .exactmetrics-realtime-box-content{margin:25px 0}.exactmetrics-report-scroll .exactmetrics-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}@media (max-width:782px){.exactmetrics-report-scroll .exactmetrics-realtime-large{margin-top:25px}}.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-settings-input-authenticate{text-align:center}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#e9e7ee;border-color:#e9e7ee;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:hover{background-color:#f4f3f7;border-color:#f4f3f7;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt{background:#6528f5;border-color:#6528f5;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;border-color:#e9e7ee;color:#9087ac}.exactmetrics-reports-list-has-overflow{cursor:pointer}.exactmetrics-reports-ecommerce-pie-chart{padding:130px 0 0;width:40%;max-width:100%}@media (max-width:792px){.exactmetrics-reports-ecommerce-pie-chart{width:100%;padding-top:32px}}.exactmetrics-reports-ecommerce-pie-chart .exactmetrics-reports-pie-chart{position:relative;width:225px;text-align:center;padding:0;margin:0 auto;border:none}.exactmetrics-table-no-data{background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;height:100%;min-height:300px;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;background-size:cover;border-radius:10px;padding:20px}.exactmetrics-table-no-data h3{font-size:17px;line-height:1.5;color:#210f59}.exactmetrics-product-color{display:inline-block;width:14px;height:14px;margin-right:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-left:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;left:50px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#9087ac}@media (max-width:782px){.exactmetrics-report-row-icon-left{padding-left:20px}.exactmetrics-report-row-icon-left:before{display:none}}.exactmetrics-admin-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px}.exactmetrics-admin-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f}
|
1 |
/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
+
*/.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position:0 -32px}.exactmetrics-flag.exactmetrics-flag-ba{background-position:-32px -32px}.exactmetrics-flag.exactmetrics-flag-bb{background-position:-64px -32px}.exactmetrics-flag.exactmetrics-flag-bd{background-position:-96px -32px}.exactmetrics-flag.exactmetrics-flag-be{background-position:-128px -32px}.exactmetrics-flag.exactmetrics-flag-bf{background-position:-160px -32px}.exactmetrics-flag.exactmetrics-flag-bg{background-position:-192px -32px}.exactmetrics-flag.exactmetrics-flag-bh{background-position:-224px -32px}.exactmetrics-flag.exactmetrics-flag-bi{background-position:-256px -32px}.exactmetrics-flag.exactmetrics-flag-bj{background-position:-288px -32px}.exactmetrics-flag.exactmetrics-flag-bl{background-position:-320px -32px}.exactmetrics-flag.exactmetrics-flag-bm{background-position:-352px -32px}.exactmetrics-flag.exactmetrics-flag-bn{background-position:-384px -32px}.exactmetrics-flag.exactmetrics-flag-bo{background-position:-416px -32px}.exactmetrics-flag.exactmetrics-flag-br{background-position:-448px -32px}.exactmetrics-flag.exactmetrics-flag-bs{background-position:-480px -32px}.exactmetrics-flag.exactmetrics-flag-bt{background-position:0 -64px}.exactmetrics-flag.exactmetrics-flag-bw{background-position:-32px -64px}.exactmetrics-flag.exactmetrics-flag-by{background-position:-64px -64px}.exactmetrics-flag.exactmetrics-flag-bz{background-position:-96px -64px}.exactmetrics-flag.exactmetrics-flag-ca{background-position:-128px -64px}.exactmetrics-flag.exactmetrics-flag-cd{background-position:-160px -64px}.exactmetrics-flag.exactmetrics-flag-cf{background-position:-192px -64px}.exactmetrics-flag.exactmetrics-flag-cg{background-position:-224px -64px}.exactmetrics-flag.exactmetrics-flag-ch{background-position:-256px -64px}.exactmetrics-flag.exactmetrics-flag-ci{background-position:-288px -64px}.exactmetrics-flag.exactmetrics-flag-ck{background-position:-320px -64px}.exactmetrics-flag.exactmetrics-flag-cl{background-position:-352px -64px}.exactmetrics-flag.exactmetrics-flag-cm{background-position:-384px -64px}.exactmetrics-flag.exactmetrics-flag-cn{background-position:-416px -64px}.exactmetrics-flag.exactmetrics-flag-co{background-position:-448px -64px}.exactmetrics-flag.exactmetrics-flag-cr{background-position:-480px -64px}.exactmetrics-flag.exactmetrics-flag-cu{background-position:0 -96px}.exactmetrics-flag.exactmetrics-flag-cv{background-position:-32px -96px}.exactmetrics-flag.exactmetrics-flag-cw{background-position:-64px -96px}.exactmetrics-flag.exactmetrics-flag-cy{background-position:-96px -96px}.exactmetrics-flag.exactmetrics-flag-cz{background-position:-128px -96px}.exactmetrics-flag.exactmetrics-flag-de{background-position:-160px -96px}.exactmetrics-flag.exactmetrics-flag-dj{background-position:-192px -96px}.exactmetrics-flag.exactmetrics-flag-dk{background-position:-224px -96px}.exactmetrics-flag.exactmetrics-flag-dm{background-position:-256px -96px}.exactmetrics-flag.exactmetrics-flag-do{background-position:-288px -96px}.exactmetrics-flag.exactmetrics-flag-dz{background-position:-320px -96px}.exactmetrics-flag.exactmetrics-flag-ec{background-position:-352px -96px}.exactmetrics-flag.exactmetrics-flag-ee{background-position:-384px -96px}.exactmetrics-flag.exactmetrics-flag-eg{background-position:-416px -96px}.exactmetrics-flag.exactmetrics-flag-eh{background-position:-448px -96px}.exactmetrics-flag.exactmetrics-flag-er{background-position:-480px -96px}.exactmetrics-flag.exactmetrics-flag-es{background-position:0 -128px}.exactmetrics-flag.exactmetrics-flag-et{background-position:-32px -128px}.exactmetrics-flag.exactmetrics-flag-eu{background-position:-64px -128px}.exactmetrics-flag.exactmetrics-flag-fi{background-position:-96px -128px}.exactmetrics-flag.exactmetrics-flag-fj{background-position:-128px -128px}.exactmetrics-flag.exactmetrics-flag-fk{background-position:-160px -128px}.exactmetrics-flag.exactmetrics-flag-fm{background-position:-192px -128px}.exactmetrics-flag.exactmetrics-flag-fo{background-position:-224px -128px}.exactmetrics-flag.exactmetrics-flag-fr{background-position:-256px -128px}.exactmetrics-flag.exactmetrics-flag-ga{background-position:-288px -128px}.exactmetrics-flag.exactmetrics-flag-gb{background-position:-320px -128px}.exactmetrics-flag.exactmetrics-flag-gd{background-position:-352px -128px}.exactmetrics-flag.exactmetrics-flag-ge{background-position:-384px -128px}.exactmetrics-flag.exactmetrics-flag-gg{background-position:-416px -128px}.exactmetrics-flag.exactmetrics-flag-gh{background-position:-448px -128px}.exactmetrics-flag.exactmetrics-flag-gi{background-position:-480px -128px}.exactmetrics-flag.exactmetrics-flag-gl{background-position:0 -160px}.exactmetrics-flag.exactmetrics-flag-gm{background-position:-32px -160px}.exactmetrics-flag.exactmetrics-flag-gn{background-position:-64px -160px}.exactmetrics-flag.exactmetrics-flag-gp{background-position:-96px -160px}.exactmetrics-flag.exactmetrics-flag-gq{background-position:-128px -160px}.exactmetrics-flag.exactmetrics-flag-gr{background-position:-160px -160px}.exactmetrics-flag.exactmetrics-flag-gs{background-position:-192px -160px}.exactmetrics-flag.exactmetrics-flag-gt{background-position:-224px -160px}.exactmetrics-flag.exactmetrics-flag-gu{background-position:-256px -160px}.exactmetrics-flag.exactmetrics-flag-gw{background-position:-288px -160px}.exactmetrics-flag.exactmetrics-flag-gy{background-position:-320px -160px}.exactmetrics-flag.exactmetrics-flag-hk{background-position:-352px -160px}.exactmetrics-flag.exactmetrics-flag-hn{background-position:-384px -160px}.exactmetrics-flag.exactmetrics-flag-hr{background-position:-416px -160px}.exactmetrics-flag.exactmetrics-flag-ht{background-position:-448px -160px}.exactmetrics-flag.exactmetrics-flag-hu{background-position:-480px -160px}.exactmetrics-flag.exactmetrics-flag-ic{background-position:0 -192px}.exactmetrics-flag.exactmetrics-flag-id{background-position:-32px -192px}.exactmetrics-flag.exactmetrics-flag-ie{background-position:-64px -192px}.exactmetrics-flag.exactmetrics-flag-il{background-position:-96px -192px}.exactmetrics-flag.exactmetrics-flag-im{background-position:-128px -192px}.exactmetrics-flag.exactmetrics-flag-in{background-position:-160px -192px}.exactmetrics-flag.exactmetrics-flag-iq{background-position:-192px -192px}.exactmetrics-flag.exactmetrics-flag-ir{background-position:-224px -192px}.exactmetrics-flag.exactmetrics-flag-is{background-position:-256px -192px}.exactmetrics-flag.exactmetrics-flag-it{background-position:-288px -192px}.exactmetrics-flag.exactmetrics-flag-je{background-position:-320px -192px}.exactmetrics-flag.exactmetrics-flag-jm{background-position:-352px -192px}.exactmetrics-flag.exactmetrics-flag-jo{background-position:-384px -192px}.exactmetrics-flag.exactmetrics-flag-jp{background-position:-416px -192px}.exactmetrics-flag.exactmetrics-flag-ke{background-position:-448px -192px}.exactmetrics-flag.exactmetrics-flag-kg{background-position:-480px -192px}.exactmetrics-flag.exactmetrics-flag-kh{background-position:0 -224px}.exactmetrics-flag.exactmetrics-flag-ki{background-position:-32px -224px}.exactmetrics-flag.exactmetrics-flag-km{background-position:-64px -224px}.exactmetrics-flag.exactmetrics-flag-kn{background-position:-96px -224px}.exactmetrics-flag.exactmetrics-flag-kp{background-position:-128px -224px}.exactmetrics-flag.exactmetrics-flag-kr{background-position:-160px -224px}.exactmetrics-flag.exactmetrics-flag-kw{background-position:-192px -224px}.exactmetrics-flag.exactmetrics-flag-ky{background-position:-224px -224px}.exactmetrics-flag.exactmetrics-flag-kz{background-position:-256px -224px}.exactmetrics-flag.exactmetrics-flag-la{background-position:-288px -224px}.exactmetrics-flag.exactmetrics-flag-lb{background-position:-320px -224px}.exactmetrics-flag.exactmetrics-flag-lc{background-position:-352px -224px}.exactmetrics-flag.exactmetrics-flag-li{background-position:-384px -224px}.exactmetrics-flag.exactmetrics-flag-lk{background-position:-416px -224px}.exactmetrics-flag.exactmetrics-flag-lr{background-position:-448px -224px}.exactmetrics-flag.exactmetrics-flag-ls{background-position:-480px -224px}.exactmetrics-flag.exactmetrics-flag-lt{background-position:0 -256px}.exactmetrics-flag.exactmetrics-flag-lu{background-position:-32px -256px}.exactmetrics-flag.exactmetrics-flag-lv{background-position:-64px -256px}.exactmetrics-flag.exactmetrics-flag-ly{background-position:-96px -256px}.exactmetrics-flag.exactmetrics-flag-ma{background-position:-128px -256px}.exactmetrics-flag.exactmetrics-flag-mc{background-position:-160px -256px}.exactmetrics-flag.exactmetrics-flag-md{background-position:-192px -256px}.exactmetrics-flag.exactmetrics-flag-me{background-position:-224px -256px}.exactmetrics-flag.exactmetrics-flag-mf{background-position:-256px -256px}.exactmetrics-flag.exactmetrics-flag-mg{background-position:-288px -256px}.exactmetrics-flag.exactmetrics-flag-mh{background-position:-320px -256px}.exactmetrics-flag.exactmetrics-flag-mk{background-position:-352px -256px}.exactmetrics-flag.exactmetrics-flag-ml{background-position:-384px -256px}.exactmetrics-flag.exactmetrics-flag-mm{background-position:-416px -256px}.exactmetrics-flag.exactmetrics-flag-mn{background-position:-448px -256px}.exactmetrics-flag.exactmetrics-flag-mo{background-position:-480px -256px}.exactmetrics-flag.exactmetrics-flag-mp{background-position:0 -288px}.exactmetrics-flag.exactmetrics-flag-mq{background-position:-32px -288px}.exactmetrics-flag.exactmetrics-flag-mr{background-position:-64px -288px}.exactmetrics-flag.exactmetrics-flag-ms{background-position:-96px -288px}.exactmetrics-flag.exactmetrics-flag-mt{background-position:-128px -288px}.exactmetrics-flag.exactmetrics-flag-mu{background-position:-160px -288px}.exactmetrics-flag.exactmetrics-flag-mv{background-position:-192px -288px}.exactmetrics-flag.exactmetrics-flag-mw{background-position:-224px -288px}.exactmetrics-flag.exactmetrics-flag-mx{background-position:-256px -288px}.exactmetrics-flag.exactmetrics-flag-my{background-position:-288px -288px}.exactmetrics-flag.exactmetrics-flag-mz{background-position:-320px -288px}.exactmetrics-flag.exactmetrics-flag-na{background-position:-352px -288px}.exactmetrics-flag.exactmetrics-flag-nc{background-position:-384px -288px}.exactmetrics-flag.exactmetrics-flag-ne{background-position:-416px -288px}.exactmetrics-flag.exactmetrics-flag-nf{background-position:-448px -288px}.exactmetrics-flag.exactmetrics-flag-ng{background-position:-480px -288px}.exactmetrics-flag.exactmetrics-flag-ni{background-position:0 -320px}.exactmetrics-flag.exactmetrics-flag-nl{background-position:-32px -320px}.exactmetrics-flag.exactmetrics-flag-no{background-position:-64px -320px}.exactmetrics-flag.exactmetrics-flag-np{background-position:-96px -320px}.exactmetrics-flag.exactmetrics-flag-nr{background-position:-128px -320px}.exactmetrics-flag.exactmetrics-flag-nu{background-position:-160px -320px}.exactmetrics-flag.exactmetrics-flag-nz{background-position:-192px -320px}.exactmetrics-flag.exactmetrics-flag-om{background-position:-224px -320px}.exactmetrics-flag.exactmetrics-flag-pa{background-position:-256px -320px}.exactmetrics-flag.exactmetrics-flag-pe{background-position:-288px -320px}.exactmetrics-flag.exactmetrics-flag-pf{background-position:-320px -320px}.exactmetrics-flag.exactmetrics-flag-pg{background-position:-352px -320px}.exactmetrics-flag.exactmetrics-flag-ph{background-position:-384px -320px}.exactmetrics-flag.exactmetrics-flag-pk{background-position:-416px -320px}.exactmetrics-flag.exactmetrics-flag-pl{background-position:-448px -320px}.exactmetrics-flag.exactmetrics-flag-pn{background-position:-480px -320px}.exactmetrics-flag.exactmetrics-flag-pr{background-position:0 -352px}.exactmetrics-flag.exactmetrics-flag-ps{background-position:-32px -352px}.exactmetrics-flag.exactmetrics-flag-pt{background-position:-64px -352px}.exactmetrics-flag.exactmetrics-flag-pw{background-position:-96px -352px}.exactmetrics-flag.exactmetrics-flag-py{background-position:-128px -352px}.exactmetrics-flag.exactmetrics-flag-qa{background-position:-160px -352px}.exactmetrics-flag.exactmetrics-flag-re{background-position:-192px -352px}.exactmetrics-flag.exactmetrics-flag-ro{background-position:-224px -352px}.exactmetrics-flag.exactmetrics-flag-rs{background-position:-256px -352px}.exactmetrics-flag.exactmetrics-flag-ru{background-position:-288px -352px}.exactmetrics-flag.exactmetrics-flag-rw{background-position:-320px -352px}.exactmetrics-flag.exactmetrics-flag-sa{background-position:-352px -352px}.exactmetrics-flag.exactmetrics-flag-sb{background-position:-384px -352px}.exactmetrics-flag.exactmetrics-flag-sc{background-position:-416px -352px}.exactmetrics-flag.exactmetrics-flag-sd{background-position:-448px -352px}.exactmetrics-flag.exactmetrics-flag-se{background-position:-480px -352px}.exactmetrics-flag.exactmetrics-flag-sg{background-position:0 -384px}.exactmetrics-flag.exactmetrics-flag-sh{background-position:-32px -384px}.exactmetrics-flag.exactmetrics-flag-si{background-position:-64px -384px}.exactmetrics-flag.exactmetrics-flag-sk{background-position:-96px -384px}.exactmetrics-flag.exactmetrics-flag-sl{background-position:-128px -384px}.exactmetrics-flag.exactmetrics-flag-sm{background-position:-160px -384px}.exactmetrics-flag.exactmetrics-flag-sn{background-position:-192px -384px}.exactmetrics-flag.exactmetrics-flag-so{background-position:-224px -384px}.exactmetrics-flag.exactmetrics-flag-sr{background-position:-256px -384px}.exactmetrics-flag.exactmetrics-flag-ss{background-position:-288px -384px}.exactmetrics-flag.exactmetrics-flag-st{background-position:-320px -384px}.exactmetrics-flag.exactmetrics-flag-sv{background-position:-352px -384px}.exactmetrics-flag.exactmetrics-flag-sy{background-position:-384px -384px}.exactmetrics-flag.exactmetrics-flag-sz{background-position:-416px -384px}.exactmetrics-flag.exactmetrics-flag-tc{background-position:-448px -384px}.exactmetrics-flag.exactmetrics-flag-td{background-position:-480px -384px}.exactmetrics-flag.exactmetrics-flag-tf{background-position:0 -416px}.exactmetrics-flag.exactmetrics-flag-tg{background-position:-32px -416px}.exactmetrics-flag.exactmetrics-flag-th{background-position:-64px -416px}.exactmetrics-flag.exactmetrics-flag-tj{background-position:-96px -416px}.exactmetrics-flag.exactmetrics-flag-tk{background-position:-128px -416px}.exactmetrics-flag.exactmetrics-flag-tl{background-position:-160px -416px}.exactmetrics-flag.exactmetrics-flag-tm{background-position:-192px -416px}.exactmetrics-flag.exactmetrics-flag-tn{background-position:-224px -416px}.exactmetrics-flag.exactmetrics-flag-to{background-position:-256px -416px}.exactmetrics-flag.exactmetrics-flag-tr{background-position:-288px -416px}.exactmetrics-flag.exactmetrics-flag-tt{background-position:-320px -416px}.exactmetrics-flag.exactmetrics-flag-tv{background-position:-352px -416px}.exactmetrics-flag.exactmetrics-flag-tw{background-position:-384px -416px}.exactmetrics-flag.exactmetrics-flag-tz{background-position:-416px -416px}.exactmetrics-flag.exactmetrics-flag-ua{background-position:-448px -416px}.exactmetrics-flag.exactmetrics-flag-ug{background-position:-480px -416px}.exactmetrics-flag.exactmetrics-flag-us{background-position:0 -448px}.exactmetrics-flag.exactmetrics-flag-uy{background-position:-32px -448px}.exactmetrics-flag.exactmetrics-flag-uz{background-position:-64px -448px}.exactmetrics-flag.exactmetrics-flag-va{background-position:-96px -448px}.exactmetrics-flag.exactmetrics-flag-vc{background-position:-128px -448px}.exactmetrics-flag.exactmetrics-flag-ve{background-position:-160px -448px}.exactmetrics-flag.exactmetrics-flag-vg{background-position:-192px -448px}.exactmetrics-flag.exactmetrics-flag-vi{background-position:-224px -448px}.exactmetrics-flag.exactmetrics-flag-vn{background-position:-256px -448px}.exactmetrics-flag.exactmetrics-flag-vu{background-position:-288px -448px}.exactmetrics-flag.exactmetrics-flag-wf{background-position:-320px -448px}.exactmetrics-flag.exactmetrics-flag-ws{background-position:-352px -448px}.exactmetrics-flag.exactmetrics-flag-ye{background-position:-384px -448px}.exactmetrics-flag.exactmetrics-flag-yt{background-position:-416px -448px}.exactmetrics-flag.exactmetrics-flag-za{background-position:-448px -448px}.exactmetrics-flag.exactmetrics-flag-zm{background-position:-480px -448px}.exactmetrics-flag.exactmetrics-flag-zw{background-position:0 -480px}.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-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)}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-left:24px;padding-right:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:24px}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-right:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-datepicker{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 10px 0 5px;min-height:25px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{background:#e9e7ee;border-radius:3px;font-size:15px;color:#210f59;line-height:1.75;padding:8px 28px 8px 20px;border:none;position:relative;text-align:left}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{max-width:100%;line-height:1.4}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:38px;margin-right:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-left:10px;margin-right:10px;vertical-align:super}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;right:20px}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0;top:100%}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button{display:block;border:none;padding:8px 12px;font-size:15px;line-height:1.75;color:#210f59;width:100%;text-align:left;border-radius:2px;background:#fff}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button.exactmetrics-interval-active,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:focus,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:hover{background:#e9e7ee}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button i{margin-right:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-left:0;font-weight:700}@media (min-width:783px){body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{display:none}}body.exactmetrics-reporting-page .exactmetrics-info{color:#9087ac;cursor:help;font-size:15px;position:relative;display:inline-block;vertical-align:top;margin-left:10px}body.exactmetrics-reporting-page .exactmetrics-report-row{margin-bottom:25px}body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-bottom:0;margin-left:-32px;margin-right:-32px;padding:0 32px;border-top:1px solid #e9e7ee}@media (max-width:991px){body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-24px;margin-right:-24px;padding-left:24px;padding-right:24px}}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-right:0;margin:0}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #d6e2ed}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border:1px solid #bcb7cd;-webkit-box-shadow:0 10px 20px rgba(57,15,157,.15);box-shadow:0 10px 20px rgba(57,15,157,.15);border-radius:5px;display:block}.exactmetrics-pie-chart-tooltip{left:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{left:50%;margin-left:-97px}}.exactmetrics-reports-doughnut-tooltip{-webkit-box-shadow:none;box-shadow:none;border:none;width:172px;border-radius:50%;height:172px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-title{font-size:30px;color:#6528f5;margin-bottom:18px;font-weight:700}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number{color:#6528f5;font-size:15px;font-weight:500}#exactmetrics-chartjs-line-overview-tooltip{min-width:100px}.exactmetrics-reports-overview-datagraph-tooltip-number{color:#210f59;font-size:24px;font-weight:400;margin-bottom:5px;display:inline-block;margin-right:5px}.exactmetrics-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:14px;font-weight:400;display:inline-block}.exactmetrics-reports-overview-datagraph-tooltip-descriptor{color:#9087ac;font-size:12px;font-weight:400;width:100%;clear:both}.exactmetrics-reports-overview-datagraph-tooltip-title{color:#210f59;font-size:12px;font-weight:400;width:100%}#exactmetrics-chartjs-bar-tooltip,.exactmetrics-line-chart-tooltip{opacity:1;position:absolute;-webkit-transform:translate(-50%,-100%);-ms-transform:translate(-50%,-100%);transform:translate(-50%,-100%);margin-top:-20px}#exactmetrics-chartjs-bar-tooltip:after,.exactmetrics-line-chart-tooltip:after{position:absolute;top:100%;width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 9.5px 0;content:"";left:50%;margin-left:-9px;margin-top:-7px}#exactmetrics-chartjs-bar-tooltip:before,.exactmetrics-line-chart-tooltip:before{position:absolute;top:100%;width:0;height:0;border-color:#bcb7cd rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 10.5px 0;content:"";left:50%;margin-left:-10px;margin-top:-6px}#exactmetrics-chartjs-line-age-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number:after{content:"%"}.exactmetrics-report-tabs-navigation{border-bottom:1px solid #e9e7ee}.exactmetrics-report-tabs-navigation button{color:#4d3f7a;font-weight:700;text-align:left;font-size:15px;padding:15px 24px 17px;cursor:pointer;margin:0 0 -1px;position:relative;line-height:1;border-radius:5px 5px 0 0;background:#fff;border:1px solid;border-color:#fff #fff #e9e7ee}@media (max-width:782px){.exactmetrics-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.exactmetrics-report-tabs-navigation button:focus{z-index:10}.exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{background:#fff;color:#6528f5;border-color:#e9e7ee #e9e7ee #fff}.exactmetrics-report-tabs{background:#fff}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-top:20px}#mi-custom-line{max-height:330px}.exactmetrics-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;background:#f4f3f7;border-radius:10px;padding:24px 60px}@media (max-width:782px){.exactmetrics-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap;padding:20px}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;padding:0 0 0 80px;position:relative}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-left:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-left:none;border-top:1px solid #bcb7cd;padding:24px 0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-top:0;padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:last-child{padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2;color:#4d3f7a;font-size:13px;display:inline-block;vertical-align:middle;padding-left:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-left:0}}.exactmetrics-report-title{font-size:24px;color:#210f59;font-weight:700;margin-top:0;line-height:1.4;display:inline-block}@media (max-width:762px){.exactmetrics-report-title{padding-left:60px}.exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:80px}}.exactmetrics-report-title:before{width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);right:100%;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;vertical-align:middle;margin-top:-2px}@media (max-width:762px){.exactmetrics-report-title:before{position:absolute;left:0}}.exactmetrics-reports-infobox-number{font-size:32px;font-weight:500;line-height:1;margin-top:4px;color:#210f59;width:100%;display:block}@media (max-width:782px){.exactmetrics-reports-infobox-number{font-size:36px;float:none}}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none;clear:both}}.exactmetrics-reports-infobox-prev{font-size:14px;margin-top:4px;margin-right:5px}.exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}.exactmetrics-reports-infobox-compare{font-size:12px;color:#9087ac;display:inline-block}.exactmetrics-buttons-toggle{margin-right:25px}.exactmetrics-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.exactmetrics-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-reports-pie-chart{width:50%;padding:32px 20px 32px 32px;background:#fff;position:relative}.exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee;padding-left:0}@media (max-width:991px){.exactmetrics-reports-pie-chart:first-child{border-right:0}}@media (max-width:991px){.exactmetrics-reports-pie-chart{width:100%;border:none;padding-left:0;padding-right:0}}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;margin-left:20px}@media (max-width:781px){.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 12px 0 0}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{margin:24px 12px;-ms-flex-negative:0;flex-shrink:0;-ms-flex-item-align:center;align-self:center}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend li{background:#f4f3f7;border-radius:10px;padding:10px 20px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-pie-chart-legend-color{width:25px;height:25px;display:inline-block;border-radius:50%;margin:7px 17px 7px 0;float:left}.exactmetrics-pie-chart-legend-text{display:inline-block;font-size:15px;color:#9087ac;width:calc(100% - 50px)}.exactmetrics-pie-chart-legend-value{color:#210f59;font-size:18px;font-weight:500;display:inline-block;width:calc(100% - 50px)}.exactmetrics-table-box{background:#fff;width:100%;padding-top:32px;position:relative}.exactmetrics-table-box:first-child{margin-left:0;margin-top:0}@media (max-width:991px){.exactmetrics-table-box{margin-left:0;margin-top:20px}}.exactmetrics-table-box-footer{background:#fff;padding:20px 0 21px;text-align:right}.exactmetrics-report-row-border-top .exactmetrics-table-box-footer{padding-bottom:46px}.exactmetrics-table-box-footer:after{display:table;clear:both;content:""}.exactmetrics-table-box-footer .exactmetrics-button [class*=monstericon-]{margin-left:18px}@media (max-width:782px){.exactmetrics-table-box-footer>.exactmetrics-button{width:100%;text-align:center}}.exactmetrics-table-list-item{padding:12px 20px;min-height:42px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:3px}table .exactmetrics-table-list-item{display:table-row}.exactmetrics-table-list-item:nth-child(odd){background-color:#f4f3f7}.exactmetrics-table-list-item .exactmetrics-reports-list-text{color:#210f59;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px;font-weight:500}.exactmetrics-table-list-item .exactmetrics-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;color:#210f59}.exactmetrics-table-list-item .exactmetrics-reports-list-text img{display:inline-block;margin-right:10px;vertical-align:middle}.exactmetrics-table-list-item .exactmetrics-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-6px 0 -10px -8px}.exactmetrics-table-list-item a{text-decoration:none;color:#393f4c}.exactmetrics-table-list-item a:focus,.exactmetrics-table-list-item a:hover{color:#777}.exactmetrics-table-list-item .exactmetrics-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#393f4c;font-size:15px;text-align:right;display:block;padding-left:5px}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:32px;right:0}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;top:65px}}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination span{color:#9087ac}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle{position:absolute;top:100%;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;left:0}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button{width:100%;border-radius:3px;border:none;background:#fff}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#f4f3f7}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-pagination-selector span{color:#37276a}.exactmetrics-pagination-selector{background:#f4f3f7;padding:8px 35px 8px 20px;border:none;border-radius:3px;font-size:15px;line-height:1.7;cursor:pointer}.exactmetrics-pagination-selector:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-1px;right:20px}@media (max-width:792px){.exactmetrics-pagination-selector{width:100%;text-align:left;top:65px}}.exactmetrics-table-box-list{min-height:calc(100% - 147px);position:relative}.exactmetrics-table-box-list .exactmetrics-table-no-data{top:0;bottom:0;left:0;right:0}.exactmetrics-table-box-table .exactmetrics-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.exactmetrics-table-box-table .exactmetrics-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-table-box-mobile .exactmetrics-table-box-table{overflow:auto}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-left:0;margin-left:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1{margin-left:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-left:20px;font-size:15px;color:#210f59;padding-top:12px;padding-bottom:12px;border-top:none}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th{display:none;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1{display:block;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content{padding-right:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;right:10px;top:50%;-webkit-transform:translateY(-50%) rotate(180deg);-ms-transform:translateY(-50%) rotate(180deg);transform:translateY(-50%) rotate(180deg);color:#9087ac;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-mobile-heading{min-width:125px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-list-item-empty td:first-child .exactmetrics-table-item-content:after{display:none}.exactmetrics-table-box-table table{width:100%;border-collapse:collapse}.exactmetrics-table-box-mobile .exactmetrics-table-box-table table{table-layout:fixed}.exactmetrics-table-box-table th{text-align:left;font-size:12px;color:#9087ac;text-transform:uppercase;letter-spacing:.08em}.exactmetrics-table-box-table td,.exactmetrics-table-box-table th{border:none;padding:12px 10px;line-height:19px}.exactmetrics-table-box-table td:first-child,.exactmetrics-table-box-table th:first-child{padding-left:20px}.exactmetrics-table-box-table td:last-child,.exactmetrics-table-box-table th:last-child{padding-right:20px}.exactmetrics-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-report-2-columns .exactmetrics-table-box{width:50%}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box{width:100%}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%}@media (max-width:782px){.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:32px;border-right:1px solid #e9e7ee}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-right:0;border-right:none}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:32px}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-left:0}}.exactmetrics-report-dimensions .exactmetrics-table-box{border-top:1px solid #e9e7ee;padding-left:32px;padding-right:32px}.exactmetrics-report-dimensions .exactmetrics-report-2-columns{margin-left:-32px;margin-right:-32px}.exactmetrics-report-flex .exactmetrics-report-box{width:50%}@media (max-width:782px){.exactmetrics-report-flex .exactmetrics-report-box{width:100%;margin-top:20px}.exactmetrics-report-flex .exactmetrics-report-box:first-child{margin-top:0}}.exactmetrics-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}.exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.exactmetrics-reports-overview-datagraph-tooltip-trend{font-weight:700}.exactmetrics-report-box{background:#fff;padding:32px 0;position:relative}.exactmetrics-realtime-large{font-size:120px;text-align:center;line-height:1.4;color:#32a27a}.exactmetrics-realtime-active{text-align:center;width:100%;font-size:17px;line-height:1;margin-top:-2px;color:#210f59;font-weight:500}.exactmetrics-realtime-box-content .exactmetrics-line-chart-tooltip{max-width:115px}.exactmetrics-realtime-count-box{width:357px;height:357px;margin:50px auto;border-radius:50%;border:15px solid #e9e7ee;text-align:center;padding-top:52px}@media (max-width:782px){.exactmetrics-realtime-count-box{width:300px;height:300px;padding-top:40px}}.exactmetrics-realtime-count-box h3{display:inline-block;font-size:24px;color:#210f59;line-height:1.4;margin:0}#exactmetrics-chartjs-pie-age-tooltip{margin-left:23px;min-width:95px}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-blur .exactmetrics-report{min-height:850px}.exactmetrics-reports-referral-icon{vertical-align:middle;margin-right:10px;margin-left:2px}.exactmetrics-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:100% 0;background-color:#fff;background-size:452px}@media (max-width:991px){.exactmetrics-upsell-inline .exactmetrics-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.exactmetrics-upsell-content{max-width:750px}.exactmetrics-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.exactmetrics-upsell-content .exactmetrics-light{color:#657086}.exactmetrics-upsell-content .exactmetrics-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.exactmetrics-upsell-content .exactmetrics-button{font-size:15px}}.exactmetrics-upsell-overlay{position:absolute;top:125px;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 20px}}@media (max-width:782px){.exactmetrics-upsell-overlay{top:70px;width:calc(100% - 40px)}}.exactmetrics-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.exactmetrics-upsell-overlay p{margin:20px 0}.exactmetrics-upsell-overlay .exactmetrics-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{margin:0 auto;max-width:520px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-left:40px;position:relative;line-height:1.2}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;left:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#210f59;font-size:14px;text-align:center;line-height:20px;top:-1px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content .exactmetrics-button{font-weight:400;font-size:16px;margin-top:10px}.exactmetrics-upsell-overlay a{color:#393f4c}.exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-center,.exactmetrics-mobile-upsell{text-align:center}.exactmetrics-mobile-upsell .exactmetrics-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.exactmetrics-mobile-upsell .exactmetrics-notice-inner{margin-top:0}@media (min-width:783px){.exactmetrics-mobile-upsell{display:none}}.exactmetrics-mobile-upsell .exactmetrics-notice-success .exactmetrics-notice-button{margin-right:0}.exactmetrics-overview-upsell-desktop{margin:0 -32px}@media (max-width:782px){.exactmetrics-overview-upsell-desktop{display:none}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:55%}@media (max-width:969px){.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right{width:45%}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{bottom:auto;height:490px;width:779px;left:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-right:142px}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text:before{content:"";height:48px;width:127px;background-image:url(data:image/png;base64,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);background-size:contain;position:absolute;left:100%;top:0;margin-left:15px}.exactmetrics-report-realtime .exactmetrics-table-box th:first-child{width:auto}.exactmetrics-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.exactmetrics-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;padding-top:32px}.exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-left:0}}.exactmetrics-report-scroll>h3{position:absolute;top:0}.exactmetrics-report-scroll .exactmetrics-realtime-active{margin:0 0 50px}.exactmetrics-report-scroll .exactmetrics-realtime-box-content{margin:25px 0}.exactmetrics-report-scroll .exactmetrics-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}@media (max-width:782px){.exactmetrics-report-scroll .exactmetrics-realtime-large{margin-top:25px}}.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-settings-input-authenticate{text-align:center}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#e9e7ee;border-color:#e9e7ee;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:hover{background-color:#f4f3f7;border-color:#f4f3f7;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt{background:#6528f5;border-color:#6528f5;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;border-color:#e9e7ee;color:#9087ac}.exactmetrics-reports-list-has-overflow{cursor:pointer}.exactmetrics-reports-ecommerce-pie-chart{padding:130px 0 0;width:40%;max-width:100%}@media (max-width:792px){.exactmetrics-reports-ecommerce-pie-chart{width:100%;padding-top:32px}}.exactmetrics-reports-ecommerce-pie-chart .exactmetrics-reports-pie-chart{position:relative;width:225px;text-align:center;padding:0;margin:0 auto;border:none}.exactmetrics-table-no-data{background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;height:100%;min-height:300px;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;background-size:cover;border-radius:10px;padding:20px}.exactmetrics-table-no-data h3{font-size:17px;line-height:1.5;color:#210f59}.exactmetrics-product-color{display:inline-block;width:14px;height:14px;margin-right:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-left:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;left:50px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#9087ac}@media (max-width:782px){.exactmetrics-report-row-icon-left{padding-left:20px}.exactmetrics-report-row-icon-left:before{display:none}}.exactmetrics-admin-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px}.exactmetrics-admin-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f}
|
lite/assets/vue/css/reports.rtl.css
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
-
*/.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position:100% -32px}.exactmetrics-flag.exactmetrics-flag-ba{background-position:-32px -32px}.exactmetrics-flag.exactmetrics-flag-bb{background-position:-64px -32px}.exactmetrics-flag.exactmetrics-flag-bd{background-position:-96px -32px}.exactmetrics-flag.exactmetrics-flag-be{background-position:-128px -32px}.exactmetrics-flag.exactmetrics-flag-bf{background-position:-160px -32px}.exactmetrics-flag.exactmetrics-flag-bg{background-position:-192px -32px}.exactmetrics-flag.exactmetrics-flag-bh{background-position:-224px -32px}.exactmetrics-flag.exactmetrics-flag-bi{background-position:-256px -32px}.exactmetrics-flag.exactmetrics-flag-bj{background-position:-288px -32px}.exactmetrics-flag.exactmetrics-flag-bl{background-position:-320px -32px}.exactmetrics-flag.exactmetrics-flag-bm{background-position:-352px -32px}.exactmetrics-flag.exactmetrics-flag-bn{background-position:-384px -32px}.exactmetrics-flag.exactmetrics-flag-bo{background-position:-416px -32px}.exactmetrics-flag.exactmetrics-flag-br{background-position:-448px -32px}.exactmetrics-flag.exactmetrics-flag-bs{background-position:-480px -32px}.exactmetrics-flag.exactmetrics-flag-bt{background-position:100% -64px}.exactmetrics-flag.exactmetrics-flag-bw{background-position:-32px -64px}.exactmetrics-flag.exactmetrics-flag-by{background-position:-64px -64px}.exactmetrics-flag.exactmetrics-flag-bz{background-position:-96px -64px}.exactmetrics-flag.exactmetrics-flag-ca{background-position:-128px -64px}.exactmetrics-flag.exactmetrics-flag-cd{background-position:-160px -64px}.exactmetrics-flag.exactmetrics-flag-cf{background-position:-192px -64px}.exactmetrics-flag.exactmetrics-flag-cg{background-position:-224px -64px}.exactmetrics-flag.exactmetrics-flag-ch{background-position:-256px -64px}.exactmetrics-flag.exactmetrics-flag-ci{background-position:-288px -64px}.exactmetrics-flag.exactmetrics-flag-ck{background-position:-320px -64px}.exactmetrics-flag.exactmetrics-flag-cl{background-position:-352px -64px}.exactmetrics-flag.exactmetrics-flag-cm{background-position:-384px -64px}.exactmetrics-flag.exactmetrics-flag-cn{background-position:-416px -64px}.exactmetrics-flag.exactmetrics-flag-co{background-position:-448px -64px}.exactmetrics-flag.exactmetrics-flag-cr{background-position:-480px -64px}.exactmetrics-flag.exactmetrics-flag-cu{background-position:100% -96px}.exactmetrics-flag.exactmetrics-flag-cv{background-position:-32px -96px}.exactmetrics-flag.exactmetrics-flag-cw{background-position:-64px -96px}.exactmetrics-flag.exactmetrics-flag-cy{background-position:-96px -96px}.exactmetrics-flag.exactmetrics-flag-cz{background-position:-128px -96px}.exactmetrics-flag.exactmetrics-flag-de{background-position:-160px -96px}.exactmetrics-flag.exactmetrics-flag-dj{background-position:-192px -96px}.exactmetrics-flag.exactmetrics-flag-dk{background-position:-224px -96px}.exactmetrics-flag.exactmetrics-flag-dm{background-position:-256px -96px}.exactmetrics-flag.exactmetrics-flag-do{background-position:-288px -96px}.exactmetrics-flag.exactmetrics-flag-dz{background-position:-320px -96px}.exactmetrics-flag.exactmetrics-flag-ec{background-position:-352px -96px}.exactmetrics-flag.exactmetrics-flag-ee{background-position:-384px -96px}.exactmetrics-flag.exactmetrics-flag-eg{background-position:-416px -96px}.exactmetrics-flag.exactmetrics-flag-eh{background-position:-448px -96px}.exactmetrics-flag.exactmetrics-flag-er{background-position:-480px -96px}.exactmetrics-flag.exactmetrics-flag-es{background-position:100% -128px}.exactmetrics-flag.exactmetrics-flag-et{background-position:-32px -128px}.exactmetrics-flag.exactmetrics-flag-eu{background-position:-64px -128px}.exactmetrics-flag.exactmetrics-flag-fi{background-position:-96px -128px}.exactmetrics-flag.exactmetrics-flag-fj{background-position:-128px -128px}.exactmetrics-flag.exactmetrics-flag-fk{background-position:-160px -128px}.exactmetrics-flag.exactmetrics-flag-fm{background-position:-192px -128px}.exactmetrics-flag.exactmetrics-flag-fo{background-position:-224px -128px}.exactmetrics-flag.exactmetrics-flag-fr{background-position:-256px -128px}.exactmetrics-flag.exactmetrics-flag-ga{background-position:-288px -128px}.exactmetrics-flag.exactmetrics-flag-gb{background-position:-320px -128px}.exactmetrics-flag.exactmetrics-flag-gd{background-position:-352px -128px}.exactmetrics-flag.exactmetrics-flag-ge{background-position:-384px -128px}.exactmetrics-flag.exactmetrics-flag-gg{background-position:-416px -128px}.exactmetrics-flag.exactmetrics-flag-gh{background-position:-448px -128px}.exactmetrics-flag.exactmetrics-flag-gi{background-position:-480px -128px}.exactmetrics-flag.exactmetrics-flag-gl{background-position:100% -160px}.exactmetrics-flag.exactmetrics-flag-gm{background-position:-32px -160px}.exactmetrics-flag.exactmetrics-flag-gn{background-position:-64px -160px}.exactmetrics-flag.exactmetrics-flag-gp{background-position:-96px -160px}.exactmetrics-flag.exactmetrics-flag-gq{background-position:-128px -160px}.exactmetrics-flag.exactmetrics-flag-gr{background-position:-160px -160px}.exactmetrics-flag.exactmetrics-flag-gs{background-position:-192px -160px}.exactmetrics-flag.exactmetrics-flag-gt{background-position:-224px -160px}.exactmetrics-flag.exactmetrics-flag-gu{background-position:-256px -160px}.exactmetrics-flag.exactmetrics-flag-gw{background-position:-288px -160px}.exactmetrics-flag.exactmetrics-flag-gy{background-position:-320px -160px}.exactmetrics-flag.exactmetrics-flag-hk{background-position:-352px -160px}.exactmetrics-flag.exactmetrics-flag-hn{background-position:-384px -160px}.exactmetrics-flag.exactmetrics-flag-hr{background-position:-416px -160px}.exactmetrics-flag.exactmetrics-flag-ht{background-position:-448px -160px}.exactmetrics-flag.exactmetrics-flag-hu{background-position:-480px -160px}.exactmetrics-flag.exactmetrics-flag-ic{background-position:100% -192px}.exactmetrics-flag.exactmetrics-flag-id{background-position:-32px -192px}.exactmetrics-flag.exactmetrics-flag-ie{background-position:-64px -192px}.exactmetrics-flag.exactmetrics-flag-il{background-position:-96px -192px}.exactmetrics-flag.exactmetrics-flag-im{background-position:-128px -192px}.exactmetrics-flag.exactmetrics-flag-in{background-position:-160px -192px}.exactmetrics-flag.exactmetrics-flag-iq{background-position:-192px -192px}.exactmetrics-flag.exactmetrics-flag-ir{background-position:-224px -192px}.exactmetrics-flag.exactmetrics-flag-is{background-position:-256px -192px}.exactmetrics-flag.exactmetrics-flag-it{background-position:-288px -192px}.exactmetrics-flag.exactmetrics-flag-je{background-position:-320px -192px}.exactmetrics-flag.exactmetrics-flag-jm{background-position:-352px -192px}.exactmetrics-flag.exactmetrics-flag-jo{background-position:-384px -192px}.exactmetrics-flag.exactmetrics-flag-jp{background-position:-416px -192px}.exactmetrics-flag.exactmetrics-flag-ke{background-position:-448px -192px}.exactmetrics-flag.exactmetrics-flag-kg{background-position:-480px -192px}.exactmetrics-flag.exactmetrics-flag-kh{background-position:100% -224px}.exactmetrics-flag.exactmetrics-flag-ki{background-position:-32px -224px}.exactmetrics-flag.exactmetrics-flag-km{background-position:-64px -224px}.exactmetrics-flag.exactmetrics-flag-kn{background-position:-96px -224px}.exactmetrics-flag.exactmetrics-flag-kp{background-position:-128px -224px}.exactmetrics-flag.exactmetrics-flag-kr{background-position:-160px -224px}.exactmetrics-flag.exactmetrics-flag-kw{background-position:-192px -224px}.exactmetrics-flag.exactmetrics-flag-ky{background-position:-224px -224px}.exactmetrics-flag.exactmetrics-flag-kz{background-position:-256px -224px}.exactmetrics-flag.exactmetrics-flag-la{background-position:-288px -224px}.exactmetrics-flag.exactmetrics-flag-lb{background-position:-320px -224px}.exactmetrics-flag.exactmetrics-flag-lc{background-position:-352px -224px}.exactmetrics-flag.exactmetrics-flag-li{background-position:-384px -224px}.exactmetrics-flag.exactmetrics-flag-lk{background-position:-416px -224px}.exactmetrics-flag.exactmetrics-flag-lr{background-position:-448px -224px}.exactmetrics-flag.exactmetrics-flag-ls{background-position:-480px -224px}.exactmetrics-flag.exactmetrics-flag-lt{background-position:100% -256px}.exactmetrics-flag.exactmetrics-flag-lu{background-position:-32px -256px}.exactmetrics-flag.exactmetrics-flag-lv{background-position:-64px -256px}.exactmetrics-flag.exactmetrics-flag-ly{background-position:-96px -256px}.exactmetrics-flag.exactmetrics-flag-ma{background-position:-128px -256px}.exactmetrics-flag.exactmetrics-flag-mc{background-position:-160px -256px}.exactmetrics-flag.exactmetrics-flag-md{background-position:-192px -256px}.exactmetrics-flag.exactmetrics-flag-me{background-position:-224px -256px}.exactmetrics-flag.exactmetrics-flag-mf{background-position:-256px -256px}.exactmetrics-flag.exactmetrics-flag-mg{background-position:-288px -256px}.exactmetrics-flag.exactmetrics-flag-mh{background-position:-320px -256px}.exactmetrics-flag.exactmetrics-flag-mk{background-position:-352px -256px}.exactmetrics-flag.exactmetrics-flag-ml{background-position:-384px -256px}.exactmetrics-flag.exactmetrics-flag-mm{background-position:-416px -256px}.exactmetrics-flag.exactmetrics-flag-mn{background-position:-448px -256px}.exactmetrics-flag.exactmetrics-flag-mo{background-position:-480px -256px}.exactmetrics-flag.exactmetrics-flag-mp{background-position:100% -288px}.exactmetrics-flag.exactmetrics-flag-mq{background-position:-32px -288px}.exactmetrics-flag.exactmetrics-flag-mr{background-position:-64px -288px}.exactmetrics-flag.exactmetrics-flag-ms{background-position:-96px -288px}.exactmetrics-flag.exactmetrics-flag-mt{background-position:-128px -288px}.exactmetrics-flag.exactmetrics-flag-mu{background-position:-160px -288px}.exactmetrics-flag.exactmetrics-flag-mv{background-position:-192px -288px}.exactmetrics-flag.exactmetrics-flag-mw{background-position:-224px -288px}.exactmetrics-flag.exactmetrics-flag-mx{background-position:-256px -288px}.exactmetrics-flag.exactmetrics-flag-my{background-position:-288px -288px}.exactmetrics-flag.exactmetrics-flag-mz{background-position:-320px -288px}.exactmetrics-flag.exactmetrics-flag-na{background-position:-352px -288px}.exactmetrics-flag.exactmetrics-flag-nc{background-position:-384px -288px}.exactmetrics-flag.exactmetrics-flag-ne{background-position:-416px -288px}.exactmetrics-flag.exactmetrics-flag-nf{background-position:-448px -288px}.exactmetrics-flag.exactmetrics-flag-ng{background-position:-480px -288px}.exactmetrics-flag.exactmetrics-flag-ni{background-position:100% -320px}.exactmetrics-flag.exactmetrics-flag-nl{background-position:-32px -320px}.exactmetrics-flag.exactmetrics-flag-no{background-position:-64px -320px}.exactmetrics-flag.exactmetrics-flag-np{background-position:-96px -320px}.exactmetrics-flag.exactmetrics-flag-nr{background-position:-128px -320px}.exactmetrics-flag.exactmetrics-flag-nu{background-position:-160px -320px}.exactmetrics-flag.exactmetrics-flag-nz{background-position:-192px -320px}.exactmetrics-flag.exactmetrics-flag-om{background-position:-224px -320px}.exactmetrics-flag.exactmetrics-flag-pa{background-position:-256px -320px}.exactmetrics-flag.exactmetrics-flag-pe{background-position:-288px -320px}.exactmetrics-flag.exactmetrics-flag-pf{background-position:-320px -320px}.exactmetrics-flag.exactmetrics-flag-pg{background-position:-352px -320px}.exactmetrics-flag.exactmetrics-flag-ph{background-position:-384px -320px}.exactmetrics-flag.exactmetrics-flag-pk{background-position:-416px -320px}.exactmetrics-flag.exactmetrics-flag-pl{background-position:-448px -320px}.exactmetrics-flag.exactmetrics-flag-pn{background-position:-480px -320px}.exactmetrics-flag.exactmetrics-flag-pr{background-position:100% -352px}.exactmetrics-flag.exactmetrics-flag-ps{background-position:-32px -352px}.exactmetrics-flag.exactmetrics-flag-pt{background-position:-64px -352px}.exactmetrics-flag.exactmetrics-flag-pw{background-position:-96px -352px}.exactmetrics-flag.exactmetrics-flag-py{background-position:-128px -352px}.exactmetrics-flag.exactmetrics-flag-qa{background-position:-160px -352px}.exactmetrics-flag.exactmetrics-flag-re{background-position:-192px -352px}.exactmetrics-flag.exactmetrics-flag-ro{background-position:-224px -352px}.exactmetrics-flag.exactmetrics-flag-rs{background-position:-256px -352px}.exactmetrics-flag.exactmetrics-flag-ru{background-position:-288px -352px}.exactmetrics-flag.exactmetrics-flag-rw{background-position:-320px -352px}.exactmetrics-flag.exactmetrics-flag-sa{background-position:-352px -352px}.exactmetrics-flag.exactmetrics-flag-sb{background-position:-384px -352px}.exactmetrics-flag.exactmetrics-flag-sc{background-position:-416px -352px}.exactmetrics-flag.exactmetrics-flag-sd{background-position:-448px -352px}.exactmetrics-flag.exactmetrics-flag-se{background-position:-480px -352px}.exactmetrics-flag.exactmetrics-flag-sg{background-position:100% -384px}.exactmetrics-flag.exactmetrics-flag-sh{background-position:-32px -384px}.exactmetrics-flag.exactmetrics-flag-si{background-position:-64px -384px}.exactmetrics-flag.exactmetrics-flag-sk{background-position:-96px -384px}.exactmetrics-flag.exactmetrics-flag-sl{background-position:-128px -384px}.exactmetrics-flag.exactmetrics-flag-sm{background-position:-160px -384px}.exactmetrics-flag.exactmetrics-flag-sn{background-position:-192px -384px}.exactmetrics-flag.exactmetrics-flag-so{background-position:-224px -384px}.exactmetrics-flag.exactmetrics-flag-sr{background-position:-256px -384px}.exactmetrics-flag.exactmetrics-flag-ss{background-position:-288px -384px}.exactmetrics-flag.exactmetrics-flag-st{background-position:-320px -384px}.exactmetrics-flag.exactmetrics-flag-sv{background-position:-352px -384px}.exactmetrics-flag.exactmetrics-flag-sy{background-position:-384px -384px}.exactmetrics-flag.exactmetrics-flag-sz{background-position:-416px -384px}.exactmetrics-flag.exactmetrics-flag-tc{background-position:-448px -384px}.exactmetrics-flag.exactmetrics-flag-td{background-position:-480px -384px}.exactmetrics-flag.exactmetrics-flag-tf{background-position:100% -416px}.exactmetrics-flag.exactmetrics-flag-tg{background-position:-32px -416px}.exactmetrics-flag.exactmetrics-flag-th{background-position:-64px -416px}.exactmetrics-flag.exactmetrics-flag-tj{background-position:-96px -416px}.exactmetrics-flag.exactmetrics-flag-tk{background-position:-128px -416px}.exactmetrics-flag.exactmetrics-flag-tl{background-position:-160px -416px}.exactmetrics-flag.exactmetrics-flag-tm{background-position:-192px -416px}.exactmetrics-flag.exactmetrics-flag-tn{background-position:-224px -416px}.exactmetrics-flag.exactmetrics-flag-to{background-position:-256px -416px}.exactmetrics-flag.exactmetrics-flag-tr{background-position:-288px -416px}.exactmetrics-flag.exactmetrics-flag-tt{background-position:-320px -416px}.exactmetrics-flag.exactmetrics-flag-tv{background-position:-352px -416px}.exactmetrics-flag.exactmetrics-flag-tw{background-position:-384px -416px}.exactmetrics-flag.exactmetrics-flag-tz{background-position:-416px -416px}.exactmetrics-flag.exactmetrics-flag-ua{background-position:-448px -416px}.exactmetrics-flag.exactmetrics-flag-ug{background-position:-480px -416px}.exactmetrics-flag.exactmetrics-flag-us{background-position:100% -448px}.exactmetrics-flag.exactmetrics-flag-uy{background-position:-32px -448px}.exactmetrics-flag.exactmetrics-flag-uz{background-position:-64px -448px}.exactmetrics-flag.exactmetrics-flag-va{background-position:-96px -448px}.exactmetrics-flag.exactmetrics-flag-vc{background-position:-128px -448px}.exactmetrics-flag.exactmetrics-flag-ve{background-position:-160px -448px}.exactmetrics-flag.exactmetrics-flag-vg{background-position:-192px -448px}.exactmetrics-flag.exactmetrics-flag-vi{background-position:-224px -448px}.exactmetrics-flag.exactmetrics-flag-vn{background-position:-256px -448px}.exactmetrics-flag.exactmetrics-flag-vu{background-position:-288px -448px}.exactmetrics-flag.exactmetrics-flag-wf{background-position:-320px -448px}.exactmetrics-flag.exactmetrics-flag-ws{background-position:-352px -448px}.exactmetrics-flag.exactmetrics-flag-ye{background-position:-384px -448px}.exactmetrics-flag.exactmetrics-flag-yt{background-position:-416px -448px}.exactmetrics-flag.exactmetrics-flag-za{background-position:-448px -448px}.exactmetrics-flag.exactmetrics-flag-zm{background-position:-480px -448px}.exactmetrics-flag.exactmetrics-flag-zw{background-position:100% -480px}.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 .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-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)}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-right:24px;padding-left:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:24px}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-left:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-datepicker{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 5px 0 10px;min-height:25px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{background:#e9e7ee;border-radius:3px;font-size:15px;color:#210f59;line-height:1.75;padding:8px 20px 8px 28px;border:none;position:relative;text-align:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{max-width:100%;line-height:1.4}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-right:38px;margin-left:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-right:10px;margin-left:10px;vertical-align:super}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;left:20px}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;right:0;top:100%}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button{display:block;border:none;padding:8px 12px;font-size:15px;line-height:1.75;color:#210f59;width:100%;text-align:right;border-radius:2px;background:#fff}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button.exactmetrics-interval-active,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:focus,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:hover{background:#e9e7ee}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button i{margin-left:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-right:0;font-weight:700}@media (min-width:783px){body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{display:none}}body.exactmetrics-reporting-page .exactmetrics-info{color:#9087ac;cursor:help;font-size:15px;position:relative;display:inline-block;vertical-align:top;margin-right:10px}body.exactmetrics-reporting-page .exactmetrics-report-row{margin-bottom:25px}body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-bottom:0;margin-right:-32px;margin-left:-32px;padding:0 32px;border-top:1px solid #e9e7ee}@media (max-width:991px){body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-right:-24px;margin-left:-24px;padding-right:24px;padding-left:24px}}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-left:0;margin:0}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border:1px solid #bcb7cd;-webkit-box-shadow:0 10px 20px rgba(57,15,157,.15);box-shadow:0 10px 20px rgba(57,15,157,.15);border-radius:5px;display:block}.exactmetrics-pie-chart-tooltip{right:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{right:50%;margin-right:-97px}}.exactmetrics-reports-doughnut-tooltip{-webkit-box-shadow:none;box-shadow:none;border:none;width:172px;border-radius:50%;height:172px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-title{font-size:30px;color:#6528f5;margin-bottom:18px;font-weight:700}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number{color:#6528f5;font-size:15px;font-weight:500}#exactmetrics-chartjs-line-overview-tooltip{min-width:100px}.exactmetrics-reports-overview-datagraph-tooltip-number{color:#210f59;font-size:24px;font-weight:400;margin-bottom:5px;display:inline-block;margin-left:5px}.exactmetrics-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:14px;font-weight:400;display:inline-block}.exactmetrics-reports-overview-datagraph-tooltip-descriptor{color:#9087ac;font-size:12px;font-weight:400;width:100%;clear:both}.exactmetrics-reports-overview-datagraph-tooltip-title{color:#210f59;font-size:12px;font-weight:400;width:100%}#exactmetrics-chartjs-bar-tooltip,.exactmetrics-line-chart-tooltip{opacity:1;position:absolute;-webkit-transform:translate(50%,-100%);-ms-transform:translate(50%,-100%);transform:translate(50%,-100%);margin-top:-20px}#exactmetrics-chartjs-bar-tooltip:after,.exactmetrics-line-chart-tooltip:after{position:absolute;top:100%;width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 9.5px 0;content:"";right:50%;margin-right:-9px;margin-top:-7px}#exactmetrics-chartjs-bar-tooltip:before,.exactmetrics-line-chart-tooltip:before{position:absolute;top:100%;width:0;height:0;border-color:#bcb7cd rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 10.5px 0;content:"";right:50%;margin-right:-10px;margin-top:-6px}#exactmetrics-chartjs-line-age-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number:after{content:"%"}.exactmetrics-report-tabs-navigation{border-bottom:1px solid #e9e7ee}.exactmetrics-report-tabs-navigation button{color:#4d3f7a;font-weight:700;text-align:right;font-size:15px;padding:15px 24px 17px;cursor:pointer;margin:0 0 -1px;position:relative;line-height:1;border-radius:5px 5px 0 0;background:#fff;border:1px solid;border-color:#fff #fff #e9e7ee}@media (max-width:782px){.exactmetrics-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.exactmetrics-report-tabs-navigation button:focus{z-index:10}.exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{background:#fff;color:#6528f5;border-color:#e9e7ee #e9e7ee #fff}.exactmetrics-report-tabs{background:#fff}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-top:20px}#mi-custom-line{max-height:330px}.exactmetrics-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;background:#f4f3f7;border-radius:10px;padding:24px 60px}@media (max-width:782px){.exactmetrics-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap;padding:20px}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-right:1px solid #bcb7cd;padding:0 80px 0 0;position:relative}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-right:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-right:none;padding-right:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-right:none;border-top:1px solid #bcb7cd;padding:24px 0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-top:0;padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:last-child{padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2;color:#4d3f7a;font-size:13px;display:inline-block;vertical-align:middle;padding-right:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-right:0}}.exactmetrics-report-title{font-size:24px;color:#210f59;font-weight:700;margin-top:0;line-height:1.4;display:inline-block}@media (max-width:762px){.exactmetrics-report-title{padding-right:60px}.exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:80px}}.exactmetrics-report-title:before{width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);left:100%;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;vertical-align:middle;margin-top:-2px}@media (max-width:762px){.exactmetrics-report-title:before{position:absolute;right:0}}.exactmetrics-reports-infobox-number{font-size:32px;font-weight:500;line-height:1;margin-top:4px;color:#210f59;width:100%;display:block}@media (max-width:782px){.exactmetrics-reports-infobox-number{font-size:36px;float:none}}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none;clear:both}}.exactmetrics-reports-infobox-prev{font-size:14px;margin-top:4px;margin-left:5px}.exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}.exactmetrics-reports-infobox-compare{font-size:12px;color:#9087ac;display:inline-block}.exactmetrics-buttons-toggle{margin-left:25px}.exactmetrics-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.exactmetrics-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-reports-pie-chart{width:50%;padding:32px 32px 32px 20px;background:#fff;position:relative}.exactmetrics-reports-pie-chart:first-child{border-left:1px solid #e9e7ee;padding-right:0}@media (max-width:991px){.exactmetrics-reports-pie-chart:first-child{border-left:0}}@media (max-width:991px){.exactmetrics-reports-pie-chart{width:100%;border:none;padding-right:0;padding-left:0}}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;margin-right:20px}@media (max-width:781px){.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 0 0 12px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{margin:24px 12px;-ms-flex-negative:0;flex-shrink:0;-ms-flex-item-align:center;align-self:center}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend li{background:#f4f3f7;border-radius:10px;padding:10px 20px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-pie-chart-legend-color{width:25px;height:25px;display:inline-block;border-radius:50%;margin:7px 0 7px 17px;float:right}.exactmetrics-pie-chart-legend-text{display:inline-block;font-size:15px;color:#9087ac;width:calc(100% - 50px)}.exactmetrics-pie-chart-legend-value{color:#210f59;font-size:18px;font-weight:500;display:inline-block;width:calc(100% - 50px)}.exactmetrics-table-box{background:#fff;width:100%;padding-top:32px;position:relative}.exactmetrics-table-box:first-child{margin-right:0;margin-top:0}@media (max-width:991px){.exactmetrics-table-box{margin-right:0;margin-top:20px}}.exactmetrics-table-box-footer{background:#fff;padding:20px 0 21px;text-align:left}.exactmetrics-report-row-border-top .exactmetrics-table-box-footer{padding-bottom:46px}.exactmetrics-table-box-footer:after{display:table;clear:both;content:""}.exactmetrics-table-box-footer .exactmetrics-button [class*=monstericon-]{margin-right:18px}@media (max-width:782px){.exactmetrics-table-box-footer>.exactmetrics-button{width:100%;text-align:center}}.exactmetrics-table-list-item{padding:12px 20px;min-height:42px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:3px}table .exactmetrics-table-list-item{display:table-row}.exactmetrics-table-list-item:nth-child(odd){background-color:#f4f3f7}.exactmetrics-table-list-item .exactmetrics-reports-list-text{color:#210f59;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px;font-weight:500}.exactmetrics-table-list-item .exactmetrics-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;color:#210f59}.exactmetrics-table-list-item .exactmetrics-reports-list-text img{display:inline-block;margin-left:10px;vertical-align:middle}.exactmetrics-table-list-item .exactmetrics-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-6px -8px -10px 0}.exactmetrics-table-list-item a{text-decoration:none;color:#393f4c}.exactmetrics-table-list-item a:focus,.exactmetrics-table-list-item a:hover{color:#777}.exactmetrics-table-list-item .exactmetrics-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#393f4c;font-size:15px;text-align:left;display:block;padding-right:5px}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:32px;left:0}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;top:65px}}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination span{color:#9087ac}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle{position:absolute;top:100%;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;right:0}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button{width:100%;border-radius:3px;border:none;background:#fff}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#f4f3f7}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-pagination-selector span{color:#37276a}.exactmetrics-pagination-selector{background:#f4f3f7;padding:8px 20px 8px 35px;border:none;border-radius:3px;font-size:15px;line-height:1.7;cursor:pointer}.exactmetrics-pagination-selector:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-1px;left:20px}@media (max-width:792px){.exactmetrics-pagination-selector{width:100%;text-align:right;top:65px}}.exactmetrics-table-box-list{min-height:calc(100% - 147px);position:relative}.exactmetrics-table-box-list .exactmetrics-table-no-data{top:0;bottom:0;right:0;left:0}.exactmetrics-table-box-table .exactmetrics-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.exactmetrics-table-box-table .exactmetrics-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-table-box-mobile .exactmetrics-table-box-table{overflow:auto}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-right:0;margin-right:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1{margin-right:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-right:20px;font-size:15px;color:#210f59;padding-top:12px;padding-bottom:12px;border-top:none}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th{display:none;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1{display:block;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content{padding-left:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;left:10px;top:50%;-webkit-transform:translateY(-50%) rotate(-180deg);-ms-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);color:#9087ac;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-mobile-heading{min-width:125px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-list-item-empty td:first-child .exactmetrics-table-item-content:after{display:none}.exactmetrics-table-box-table table{width:100%;border-collapse:collapse}.exactmetrics-table-box-mobile .exactmetrics-table-box-table table{table-layout:fixed}.exactmetrics-table-box-table th{text-align:right;font-size:12px;color:#9087ac;text-transform:uppercase;letter-spacing:.08em}.exactmetrics-table-box-table td,.exactmetrics-table-box-table th{border:none;padding:12px 10px;line-height:19px}.exactmetrics-table-box-table td:first-child,.exactmetrics-table-box-table th:first-child{padding-right:20px}.exactmetrics-table-box-table td:last-child,.exactmetrics-table-box-table th:last-child{padding-left:20px}.exactmetrics-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-report-2-columns .exactmetrics-table-box{width:50%}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box{width:100%}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%}@media (max-width:782px){.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-left:32px;border-left:1px solid #e9e7ee}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-left:0;border-left:none}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-right:32px}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-right:0}}.exactmetrics-report-dimensions .exactmetrics-table-box{border-top:1px solid #e9e7ee;padding-right:32px;padding-left:32px}.exactmetrics-report-dimensions .exactmetrics-report-2-columns{margin-right:-32px;margin-left:-32px}.exactmetrics-report-flex .exactmetrics-report-box{width:50%}@media (max-width:782px){.exactmetrics-report-flex .exactmetrics-report-box{width:100%;margin-top:20px}.exactmetrics-report-flex .exactmetrics-report-box:first-child{margin-top:0}}.exactmetrics-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}.exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.exactmetrics-reports-overview-datagraph-tooltip-trend{font-weight:700}.exactmetrics-report-box{background:#fff;padding:32px 0;position:relative}.exactmetrics-realtime-large{font-size:120px;text-align:center;line-height:1.4;color:#32a27a}.exactmetrics-realtime-active{text-align:center;width:100%;font-size:17px;line-height:1;margin-top:-2px;color:#210f59;font-weight:500}.exactmetrics-realtime-box-content .exactmetrics-line-chart-tooltip{max-width:115px}.exactmetrics-realtime-count-box{width:357px;height:357px;margin:50px auto;border-radius:50%;border:15px solid #e9e7ee;text-align:center;padding-top:52px}@media (max-width:782px){.exactmetrics-realtime-count-box{width:300px;height:300px;padding-top:40px}}.exactmetrics-realtime-count-box h3{display:inline-block;font-size:24px;color:#210f59;line-height:1.4;margin:0}#exactmetrics-chartjs-pie-age-tooltip{margin-right:23px;min-width:95px}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-blur .exactmetrics-report{min-height:850px}.exactmetrics-reports-referral-icon{vertical-align:middle;margin-left:10px;margin-right:2px}.exactmetrics-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:0 0;background-color:#fff;background-size:452px}@media (max-width:991px){.exactmetrics-upsell-inline .exactmetrics-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.exactmetrics-upsell-content{max-width:750px}.exactmetrics-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.exactmetrics-upsell-content .exactmetrics-light{color:#657086}.exactmetrics-upsell-content .exactmetrics-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.exactmetrics-upsell-content .exactmetrics-button{font-size:15px}}.exactmetrics-upsell-overlay{position:absolute;top:125px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 20px}}@media (max-width:782px){.exactmetrics-upsell-overlay{top:70px;width:calc(100% - 40px)}}.exactmetrics-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.exactmetrics-upsell-overlay p{margin:20px 0}.exactmetrics-upsell-overlay .exactmetrics-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding-right:20px;padding-left:20px}}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{margin:0 auto;max-width:520px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-right:40px;position:relative;line-height:1.2}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;right:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#210f59;font-size:14px;text-align:center;line-height:20px;top:-1px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content .exactmetrics-button{font-weight:400;font-size:16px;margin-top:10px}.exactmetrics-upsell-overlay a{color:#393f4c}.exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-center,.exactmetrics-mobile-upsell{text-align:center}.exactmetrics-mobile-upsell .exactmetrics-notice{border-top:1px solid #d6e2ed;border-left:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.exactmetrics-mobile-upsell .exactmetrics-notice-inner{margin-top:0}@media (min-width:783px){.exactmetrics-mobile-upsell{display:none}}.exactmetrics-mobile-upsell .exactmetrics-notice-success .exactmetrics-notice-button{margin-left:0}.exactmetrics-overview-upsell-desktop{margin:0 -32px}@media (max-width:782px){.exactmetrics-overview-upsell-desktop{display:none}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:55%}@media (max-width:969px){.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right{width:45%}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{bottom:auto;height:490px;width:779px;right:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-left:142px}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text:before{content:"";height:48px;width:127px;background-image:url(data:image/png;base64,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);background-size:contain;position:absolute;right:100%;top:0;margin-right:15px}.exactmetrics-report-realtime .exactmetrics-table-box th:first-child{width:auto}.exactmetrics-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.exactmetrics-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;padding-top:32px}.exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-right:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-right:0}}.exactmetrics-report-scroll>h3{position:absolute;top:0}.exactmetrics-report-scroll .exactmetrics-realtime-active{margin:0 0 50px}.exactmetrics-report-scroll .exactmetrics-realtime-box-content{margin:25px 0}.exactmetrics-report-scroll .exactmetrics-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}@media (max-width:782px){.exactmetrics-report-scroll .exactmetrics-realtime-large{margin-top:25px}}.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-settings-input-authenticate{text-align:center}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#e9e7ee;border-color:#e9e7ee;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:hover{background-color:#f4f3f7;border-color:#f4f3f7;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt{background:#6528f5;border-color:#6528f5;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;border-color:#e9e7ee;color:#9087ac}.exactmetrics-reports-list-has-overflow{cursor:pointer}.exactmetrics-reports-ecommerce-pie-chart{padding:130px 0 0;width:40%;max-width:100%}@media (max-width:792px){.exactmetrics-reports-ecommerce-pie-chart{width:100%;padding-top:32px}}.exactmetrics-reports-ecommerce-pie-chart .exactmetrics-reports-pie-chart{position:relative;width:225px;text-align:center;padding:0;margin:0 auto;border:none}.exactmetrics-table-no-data{background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;height:100%;min-height:300px;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;background-size:cover;border-radius:10px;padding:20px}.exactmetrics-table-no-data h3{font-size:17px;line-height:1.5;color:#210f59}.exactmetrics-product-color{display:inline-block;width:14px;height:14px;margin-left:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-right:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;right:50px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#9087ac}@media (max-width:782px){.exactmetrics-report-row-icon-left{padding-right:20px}.exactmetrics-report-row-icon-left:before{display:none}}.exactmetrics-admin-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px}.exactmetrics-admin-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f}
|
1 |
/*!
|
2 |
* Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
|
3 |
+
*/.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position:100% -32px}.exactmetrics-flag.exactmetrics-flag-ba{background-position:-32px -32px}.exactmetrics-flag.exactmetrics-flag-bb{background-position:-64px -32px}.exactmetrics-flag.exactmetrics-flag-bd{background-position:-96px -32px}.exactmetrics-flag.exactmetrics-flag-be{background-position:-128px -32px}.exactmetrics-flag.exactmetrics-flag-bf{background-position:-160px -32px}.exactmetrics-flag.exactmetrics-flag-bg{background-position:-192px -32px}.exactmetrics-flag.exactmetrics-flag-bh{background-position:-224px -32px}.exactmetrics-flag.exactmetrics-flag-bi{background-position:-256px -32px}.exactmetrics-flag.exactmetrics-flag-bj{background-position:-288px -32px}.exactmetrics-flag.exactmetrics-flag-bl{background-position:-320px -32px}.exactmetrics-flag.exactmetrics-flag-bm{background-position:-352px -32px}.exactmetrics-flag.exactmetrics-flag-bn{background-position:-384px -32px}.exactmetrics-flag.exactmetrics-flag-bo{background-position:-416px -32px}.exactmetrics-flag.exactmetrics-flag-br{background-position:-448px -32px}.exactmetrics-flag.exactmetrics-flag-bs{background-position:-480px -32px}.exactmetrics-flag.exactmetrics-flag-bt{background-position:100% -64px}.exactmetrics-flag.exactmetrics-flag-bw{background-position:-32px -64px}.exactmetrics-flag.exactmetrics-flag-by{background-position:-64px -64px}.exactmetrics-flag.exactmetrics-flag-bz{background-position:-96px -64px}.exactmetrics-flag.exactmetrics-flag-ca{background-position:-128px -64px}.exactmetrics-flag.exactmetrics-flag-cd{background-position:-160px -64px}.exactmetrics-flag.exactmetrics-flag-cf{background-position:-192px -64px}.exactmetrics-flag.exactmetrics-flag-cg{background-position:-224px -64px}.exactmetrics-flag.exactmetrics-flag-ch{background-position:-256px -64px}.exactmetrics-flag.exactmetrics-flag-ci{background-position:-288px -64px}.exactmetrics-flag.exactmetrics-flag-ck{background-position:-320px -64px}.exactmetrics-flag.exactmetrics-flag-cl{background-position:-352px -64px}.exactmetrics-flag.exactmetrics-flag-cm{background-position:-384px -64px}.exactmetrics-flag.exactmetrics-flag-cn{background-position:-416px -64px}.exactmetrics-flag.exactmetrics-flag-co{background-position:-448px -64px}.exactmetrics-flag.exactmetrics-flag-cr{background-position:-480px -64px}.exactmetrics-flag.exactmetrics-flag-cu{background-position:100% -96px}.exactmetrics-flag.exactmetrics-flag-cv{background-position:-32px -96px}.exactmetrics-flag.exactmetrics-flag-cw{background-position:-64px -96px}.exactmetrics-flag.exactmetrics-flag-cy{background-position:-96px -96px}.exactmetrics-flag.exactmetrics-flag-cz{background-position:-128px -96px}.exactmetrics-flag.exactmetrics-flag-de{background-position:-160px -96px}.exactmetrics-flag.exactmetrics-flag-dj{background-position:-192px -96px}.exactmetrics-flag.exactmetrics-flag-dk{background-position:-224px -96px}.exactmetrics-flag.exactmetrics-flag-dm{background-position:-256px -96px}.exactmetrics-flag.exactmetrics-flag-do{background-position:-288px -96px}.exactmetrics-flag.exactmetrics-flag-dz{background-position:-320px -96px}.exactmetrics-flag.exactmetrics-flag-ec{background-position:-352px -96px}.exactmetrics-flag.exactmetrics-flag-ee{background-position:-384px -96px}.exactmetrics-flag.exactmetrics-flag-eg{background-position:-416px -96px}.exactmetrics-flag.exactmetrics-flag-eh{background-position:-448px -96px}.exactmetrics-flag.exactmetrics-flag-er{background-position:-480px -96px}.exactmetrics-flag.exactmetrics-flag-es{background-position:100% -128px}.exactmetrics-flag.exactmetrics-flag-et{background-position:-32px -128px}.exactmetrics-flag.exactmetrics-flag-eu{background-position:-64px -128px}.exactmetrics-flag.exactmetrics-flag-fi{background-position:-96px -128px}.exactmetrics-flag.exactmetrics-flag-fj{background-position:-128px -128px}.exactmetrics-flag.exactmetrics-flag-fk{background-position:-160px -128px}.exactmetrics-flag.exactmetrics-flag-fm{background-position:-192px -128px}.exactmetrics-flag.exactmetrics-flag-fo{background-position:-224px -128px}.exactmetrics-flag.exactmetrics-flag-fr{background-position:-256px -128px}.exactmetrics-flag.exactmetrics-flag-ga{background-position:-288px -128px}.exactmetrics-flag.exactmetrics-flag-gb{background-position:-320px -128px}.exactmetrics-flag.exactmetrics-flag-gd{background-position:-352px -128px}.exactmetrics-flag.exactmetrics-flag-ge{background-position:-384px -128px}.exactmetrics-flag.exactmetrics-flag-gg{background-position:-416px -128px}.exactmetrics-flag.exactmetrics-flag-gh{background-position:-448px -128px}.exactmetrics-flag.exactmetrics-flag-gi{background-position:-480px -128px}.exactmetrics-flag.exactmetrics-flag-gl{background-position:100% -160px}.exactmetrics-flag.exactmetrics-flag-gm{background-position:-32px -160px}.exactmetrics-flag.exactmetrics-flag-gn{background-position:-64px -160px}.exactmetrics-flag.exactmetrics-flag-gp{background-position:-96px -160px}.exactmetrics-flag.exactmetrics-flag-gq{background-position:-128px -160px}.exactmetrics-flag.exactmetrics-flag-gr{background-position:-160px -160px}.exactmetrics-flag.exactmetrics-flag-gs{background-position:-192px -160px}.exactmetrics-flag.exactmetrics-flag-gt{background-position:-224px -160px}.exactmetrics-flag.exactmetrics-flag-gu{background-position:-256px -160px}.exactmetrics-flag.exactmetrics-flag-gw{background-position:-288px -160px}.exactmetrics-flag.exactmetrics-flag-gy{background-position:-320px -160px}.exactmetrics-flag.exactmetrics-flag-hk{background-position:-352px -160px}.exactmetrics-flag.exactmetrics-flag-hn{background-position:-384px -160px}.exactmetrics-flag.exactmetrics-flag-hr{background-position:-416px -160px}.exactmetrics-flag.exactmetrics-flag-ht{background-position:-448px -160px}.exactmetrics-flag.exactmetrics-flag-hu{background-position:-480px -160px}.exactmetrics-flag.exactmetrics-flag-ic{background-position:100% -192px}.exactmetrics-flag.exactmetrics-flag-id{background-position:-32px -192px}.exactmetrics-flag.exactmetrics-flag-ie{background-position:-64px -192px}.exactmetrics-flag.exactmetrics-flag-il{background-position:-96px -192px}.exactmetrics-flag.exactmetrics-flag-im{background-position:-128px -192px}.exactmetrics-flag.exactmetrics-flag-in{background-position:-160px -192px}.exactmetrics-flag.exactmetrics-flag-iq{background-position:-192px -192px}.exactmetrics-flag.exactmetrics-flag-ir{background-position:-224px -192px}.exactmetrics-flag.exactmetrics-flag-is{background-position:-256px -192px}.exactmetrics-flag.exactmetrics-flag-it{background-position:-288px -192px}.exactmetrics-flag.exactmetrics-flag-je{background-position:-320px -192px}.exactmetrics-flag.exactmetrics-flag-jm{background-position:-352px -192px}.exactmetrics-flag.exactmetrics-flag-jo{background-position:-384px -192px}.exactmetrics-flag.exactmetrics-flag-jp{background-position:-416px -192px}.exactmetrics-flag.exactmetrics-flag-ke{background-position:-448px -192px}.exactmetrics-flag.exactmetrics-flag-kg{background-position:-480px -192px}.exactmetrics-flag.exactmetrics-flag-kh{background-position:100% -224px}.exactmetrics-flag.exactmetrics-flag-ki{background-position:-32px -224px}.exactmetrics-flag.exactmetrics-flag-km{background-position:-64px -224px}.exactmetrics-flag.exactmetrics-flag-kn{background-position:-96px -224px}.exactmetrics-flag.exactmetrics-flag-kp{background-position:-128px -224px}.exactmetrics-flag.exactmetrics-flag-kr{background-position:-160px -224px}.exactmetrics-flag.exactmetrics-flag-kw{background-position:-192px -224px}.exactmetrics-flag.exactmetrics-flag-ky{background-position:-224px -224px}.exactmetrics-flag.exactmetrics-flag-kz{background-position:-256px -224px}.exactmetrics-flag.exactmetrics-flag-la{background-position:-288px -224px}.exactmetrics-flag.exactmetrics-flag-lb{background-position:-320px -224px}.exactmetrics-flag.exactmetrics-flag-lc{background-position:-352px -224px}.exactmetrics-flag.exactmetrics-flag-li{background-position:-384px -224px}.exactmetrics-flag.exactmetrics-flag-lk{background-position:-416px -224px}.exactmetrics-flag.exactmetrics-flag-lr{background-position:-448px -224px}.exactmetrics-flag.exactmetrics-flag-ls{background-position:-480px -224px}.exactmetrics-flag.exactmetrics-flag-lt{background-position:100% -256px}.exactmetrics-flag.exactmetrics-flag-lu{background-position:-32px -256px}.exactmetrics-flag.exactmetrics-flag-lv{background-position:-64px -256px}.exactmetrics-flag.exactmetrics-flag-ly{background-position:-96px -256px}.exactmetrics-flag.exactmetrics-flag-ma{background-position:-128px -256px}.exactmetrics-flag.exactmetrics-flag-mc{background-position:-160px -256px}.exactmetrics-flag.exactmetrics-flag-md{background-position:-192px -256px}.exactmetrics-flag.exactmetrics-flag-me{background-position:-224px -256px}.exactmetrics-flag.exactmetrics-flag-mf{background-position:-256px -256px}.exactmetrics-flag.exactmetrics-flag-mg{background-position:-288px -256px}.exactmetrics-flag.exactmetrics-flag-mh{background-position:-320px -256px}.exactmetrics-flag.exactmetrics-flag-mk{background-position:-352px -256px}.exactmetrics-flag.exactmetrics-flag-ml{background-position:-384px -256px}.exactmetrics-flag.exactmetrics-flag-mm{background-position:-416px -256px}.exactmetrics-flag.exactmetrics-flag-mn{background-position:-448px -256px}.exactmetrics-flag.exactmetrics-flag-mo{background-position:-480px -256px}.exactmetrics-flag.exactmetrics-flag-mp{background-position:100% -288px}.exactmetrics-flag.exactmetrics-flag-mq{background-position:-32px -288px}.exactmetrics-flag.exactmetrics-flag-mr{background-position:-64px -288px}.exactmetrics-flag.exactmetrics-flag-ms{background-position:-96px -288px}.exactmetrics-flag.exactmetrics-flag-mt{background-position:-128px -288px}.exactmetrics-flag.exactmetrics-flag-mu{background-position:-160px -288px}.exactmetrics-flag.exactmetrics-flag-mv{background-position:-192px -288px}.exactmetrics-flag.exactmetrics-flag-mw{background-position:-224px -288px}.exactmetrics-flag.exactmetrics-flag-mx{background-position:-256px -288px}.exactmetrics-flag.exactmetrics-flag-my{background-position:-288px -288px}.exactmetrics-flag.exactmetrics-flag-mz{background-position:-320px -288px}.exactmetrics-flag.exactmetrics-flag-na{background-position:-352px -288px}.exactmetrics-flag.exactmetrics-flag-nc{background-position:-384px -288px}.exactmetrics-flag.exactmetrics-flag-ne{background-position:-416px -288px}.exactmetrics-flag.exactmetrics-flag-nf{background-position:-448px -288px}.exactmetrics-flag.exactmetrics-flag-ng{background-position:-480px -288px}.exactmetrics-flag.exactmetrics-flag-ni{background-position:100% -320px}.exactmetrics-flag.exactmetrics-flag-nl{background-position:-32px -320px}.exactmetrics-flag.exactmetrics-flag-no{background-position:-64px -320px}.exactmetrics-flag.exactmetrics-flag-np{background-position:-96px -320px}.exactmetrics-flag.exactmetrics-flag-nr{background-position:-128px -320px}.exactmetrics-flag.exactmetrics-flag-nu{background-position:-160px -320px}.exactmetrics-flag.exactmetrics-flag-nz{background-position:-192px -320px}.exactmetrics-flag.exactmetrics-flag-om{background-position:-224px -320px}.exactmetrics-flag.exactmetrics-flag-pa{background-position:-256px -320px}.exactmetrics-flag.exactmetrics-flag-pe{background-position:-288px -320px}.exactmetrics-flag.exactmetrics-flag-pf{background-position:-320px -320px}.exactmetrics-flag.exactmetrics-flag-pg{background-position:-352px -320px}.exactmetrics-flag.exactmetrics-flag-ph{background-position:-384px -320px}.exactmetrics-flag.exactmetrics-flag-pk{background-position:-416px -320px}.exactmetrics-flag.exactmetrics-flag-pl{background-position:-448px -320px}.exactmetrics-flag.exactmetrics-flag-pn{background-position:-480px -320px}.exactmetrics-flag.exactmetrics-flag-pr{background-position:100% -352px}.exactmetrics-flag.exactmetrics-flag-ps{background-position:-32px -352px}.exactmetrics-flag.exactmetrics-flag-pt{background-position:-64px -352px}.exactmetrics-flag.exactmetrics-flag-pw{background-position:-96px -352px}.exactmetrics-flag.exactmetrics-flag-py{background-position:-128px -352px}.exactmetrics-flag.exactmetrics-flag-qa{background-position:-160px -352px}.exactmetrics-flag.exactmetrics-flag-re{background-position:-192px -352px}.exactmetrics-flag.exactmetrics-flag-ro{background-position:-224px -352px}.exactmetrics-flag.exactmetrics-flag-rs{background-position:-256px -352px}.exactmetrics-flag.exactmetrics-flag-ru{background-position:-288px -352px}.exactmetrics-flag.exactmetrics-flag-rw{background-position:-320px -352px}.exactmetrics-flag.exactmetrics-flag-sa{background-position:-352px -352px}.exactmetrics-flag.exactmetrics-flag-sb{background-position:-384px -352px}.exactmetrics-flag.exactmetrics-flag-sc{background-position:-416px -352px}.exactmetrics-flag.exactmetrics-flag-sd{background-position:-448px -352px}.exactmetrics-flag.exactmetrics-flag-se{background-position:-480px -352px}.exactmetrics-flag.exactmetrics-flag-sg{background-position:100% -384px}.exactmetrics-flag.exactmetrics-flag-sh{background-position:-32px -384px}.exactmetrics-flag.exactmetrics-flag-si{background-position:-64px -384px}.exactmetrics-flag.exactmetrics-flag-sk{background-position:-96px -384px}.exactmetrics-flag.exactmetrics-flag-sl{background-position:-128px -384px}.exactmetrics-flag.exactmetrics-flag-sm{background-position:-160px -384px}.exactmetrics-flag.exactmetrics-flag-sn{background-position:-192px -384px}.exactmetrics-flag.exactmetrics-flag-so{background-position:-224px -384px}.exactmetrics-flag.exactmetrics-flag-sr{background-position:-256px -384px}.exactmetrics-flag.exactmetrics-flag-ss{background-position:-288px -384px}.exactmetrics-flag.exactmetrics-flag-st{background-position:-320px -384px}.exactmetrics-flag.exactmetrics-flag-sv{background-position:-352px -384px}.exactmetrics-flag.exactmetrics-flag-sy{background-position:-384px -384px}.exactmetrics-flag.exactmetrics-flag-sz{background-position:-416px -384px}.exactmetrics-flag.exactmetrics-flag-tc{background-position:-448px -384px}.exactmetrics-flag.exactmetrics-flag-td{background-position:-480px -384px}.exactmetrics-flag.exactmetrics-flag-tf{background-position:100% -416px}.exactmetrics-flag.exactmetrics-flag-tg{background-position:-32px -416px}.exactmetrics-flag.exactmetrics-flag-th{background-position:-64px -416px}.exactmetrics-flag.exactmetrics-flag-tj{background-position:-96px -416px}.exactmetrics-flag.exactmetrics-flag-tk{background-position:-128px -416px}.exactmetrics-flag.exactmetrics-flag-tl{background-position:-160px -416px}.exactmetrics-flag.exactmetrics-flag-tm{background-position:-192px -416px}.exactmetrics-flag.exactmetrics-flag-tn{background-position:-224px -416px}.exactmetrics-flag.exactmetrics-flag-to{background-position:-256px -416px}.exactmetrics-flag.exactmetrics-flag-tr{background-position:-288px -416px}.exactmetrics-flag.exactmetrics-flag-tt{background-position:-320px -416px}.exactmetrics-flag.exactmetrics-flag-tv{background-position:-352px -416px}.exactmetrics-flag.exactmetrics-flag-tw{background-position:-384px -416px}.exactmetrics-flag.exactmetrics-flag-tz{background-position:-416px -416px}.exactmetrics-flag.exactmetrics-flag-ua{background-position:-448px -416px}.exactmetrics-flag.exactmetrics-flag-ug{background-position:-480px -416px}.exactmetrics-flag.exactmetrics-flag-us{background-position:100% -448px}.exactmetrics-flag.exactmetrics-flag-uy{background-position:-32px -448px}.exactmetrics-flag.exactmetrics-flag-uz{background-position:-64px -448px}.exactmetrics-flag.exactmetrics-flag-va{background-position:-96px -448px}.exactmetrics-flag.exactmetrics-flag-vc{background-position:-128px -448px}.exactmetrics-flag.exactmetrics-flag-ve{background-position:-160px -448px}.exactmetrics-flag.exactmetrics-flag-vg{background-position:-192px -448px}.exactmetrics-flag.exactmetrics-flag-vi{background-position:-224px -448px}.exactmetrics-flag.exactmetrics-flag-vn{background-position:-256px -448px}.exactmetrics-flag.exactmetrics-flag-vu{background-position:-288px -448px}.exactmetrics-flag.exactmetrics-flag-wf{background-position:-320px -448px}.exactmetrics-flag.exactmetrics-flag-ws{background-position:-352px -448px}.exactmetrics-flag.exactmetrics-flag-ye{background-position:-384px -448px}.exactmetrics-flag.exactmetrics-flag-yt{background-position:-416px -448px}.exactmetrics-flag.exactmetrics-flag-za{background-position:-448px -448px}.exactmetrics-flag.exactmetrics-flag-zm{background-position:-480px -448px}.exactmetrics-flag.exactmetrics-flag-zw{background-position:100% -480px}.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-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)}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-right:24px;padding-left:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}body.exactmetrics-reporting-page #wpbody-content{padding-bottom:0}body.exactmetrics-reporting-page .exactmetrics-red{color:#d73638}body.exactmetrics-reporting-page .exactmetrics-green{color:#5cc0a5}body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:24px}body.exactmetrics-reporting-page .exactmetrics-report-top h2{margin:12px 0;display:inline-block;color:#210f59;font-size:32px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:none}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-left:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:935px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;margin-bottom:25px}}body.exactmetrics-reporting-page .exactmetrics-datepicker{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{position:relative}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container{max-width:100%}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container.exactmetrics-hide,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .exactmetrics-hide{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-wrapper{display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.static.open{position:relative;-webkit-box-shadow:none;box-shadow:none;border:none;width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before{display:none}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-rContainer{width:100%;display:block}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-days{width:100%;max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day{max-width:100%}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.endRange:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.selected:hover,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:focus,body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-day.startRange:hover{background-color:#6528f5;border-color:#6528f5}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-months{padding-bottom:10px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .dayContainer{padding:0 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdays{height:40px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-weekdaycontainer{background:#f4f3f7;padding:14px 28px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month{font-size:15px;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper{width:55px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year{padding:0 5px 0 10px;min-height:25px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{background:#e9e7ee;border-radius:3px;font-size:15px;color:#210f59;line-height:1.75;padding:8px 20px 8px 28px;border:none;position:relative;text-align:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{max-width:100%;line-height:1.4}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-right:38px;margin-left:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-right:10px;margin-left:10px;vertical-align:super}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;left:20px}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;right:0;top:100%}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button{display:block;border:none;padding:8px 12px;font-size:15px;line-height:1.75;color:#210f59;width:100%;text-align:right;border-radius:2px;background:#fff}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button.exactmetrics-interval-active,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:focus,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:hover{background:#e9e7ee}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button i{margin-left:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-right:0;font-weight:700}@media (min-width:783px){body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{display:none}}body.exactmetrics-reporting-page .exactmetrics-info{color:#9087ac;cursor:help;font-size:15px;position:relative;display:inline-block;vertical-align:top;margin-right:10px}body.exactmetrics-reporting-page .exactmetrics-report-row{margin-bottom:25px}body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-bottom:0;margin-right:-32px;margin-left:-32px;padding:0 32px;border-top:1px solid #e9e7ee}@media (max-width:991px){body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-right:-24px;margin-left:-24px;padding-right:24px;padding-left:24px}}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-left:0;margin:0}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border:1px solid #bcb7cd;-webkit-box-shadow:0 10px 20px rgba(57,15,157,.15);box-shadow:0 10px 20px rgba(57,15,157,.15);border-radius:5px;display:block}.exactmetrics-pie-chart-tooltip{right:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{right:50%;margin-right:-97px}}.exactmetrics-reports-doughnut-tooltip{-webkit-box-shadow:none;box-shadow:none;border:none;width:172px;border-radius:50%;height:172px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-title{font-size:30px;color:#6528f5;margin-bottom:18px;font-weight:700}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number{color:#6528f5;font-size:15px;font-weight:500}#exactmetrics-chartjs-line-overview-tooltip{min-width:100px}.exactmetrics-reports-overview-datagraph-tooltip-number{color:#210f59;font-size:24px;font-weight:400;margin-bottom:5px;display:inline-block;margin-left:5px}.exactmetrics-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:14px;font-weight:400;display:inline-block}.exactmetrics-reports-overview-datagraph-tooltip-descriptor{color:#9087ac;font-size:12px;font-weight:400;width:100%;clear:both}.exactmetrics-reports-overview-datagraph-tooltip-title{color:#210f59;font-size:12px;font-weight:400;width:100%}#exactmetrics-chartjs-bar-tooltip,.exactmetrics-line-chart-tooltip{opacity:1;position:absolute;-webkit-transform:translate(50%,-100%);-ms-transform:translate(50%,-100%);transform:translate(50%,-100%);margin-top:-20px}#exactmetrics-chartjs-bar-tooltip:after,.exactmetrics-line-chart-tooltip:after{position:absolute;top:100%;width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 9.5px 0;content:"";right:50%;margin-right:-9px;margin-top:-7px}#exactmetrics-chartjs-bar-tooltip:before,.exactmetrics-line-chart-tooltip:before{position:absolute;top:100%;width:0;height:0;border-color:#bcb7cd rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 10.5px 0;content:"";right:50%;margin-right:-10px;margin-top:-6px}#exactmetrics-chartjs-line-age-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number:after{content:"%"}.exactmetrics-report-tabs-navigation{border-bottom:1px solid #e9e7ee}.exactmetrics-report-tabs-navigation button{color:#4d3f7a;font-weight:700;text-align:right;font-size:15px;padding:15px 24px 17px;cursor:pointer;margin:0 0 -1px;position:relative;line-height:1;border-radius:5px 5px 0 0;background:#fff;border:1px solid;border-color:#fff #fff #e9e7ee}@media (max-width:782px){.exactmetrics-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.exactmetrics-report-tabs-navigation button:focus{z-index:10}.exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{background:#fff;color:#6528f5;border-color:#e9e7ee #e9e7ee #fff}.exactmetrics-report-tabs{background:#fff}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-top:20px}#mi-custom-line{max-height:330px}.exactmetrics-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;background:#f4f3f7;border-radius:10px;padding:24px 60px}@media (max-width:782px){.exactmetrics-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap;padding:20px}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-right:1px solid #bcb7cd;padding:0 80px 0 0;position:relative}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-info{display:inline-block;font-size:12px;margin-right:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-right:none;padding-right:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-right:none;border-top:1px solid #bcb7cd;padding:24px 0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-top:0;padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:last-child{padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2;color:#4d3f7a;font-size:13px;display:inline-block;vertical-align:middle;padding-right:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-right:0}}.exactmetrics-report-title{font-size:24px;color:#210f59;font-weight:700;margin-top:0;line-height:1.4;display:inline-block}@media (max-width:762px){.exactmetrics-report-title{padding-right:60px}.exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:80px}}.exactmetrics-report-title:before{width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);left:100%;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;vertical-align:middle;margin-top:-2px}@media (max-width:762px){.exactmetrics-report-title:before{position:absolute;right:0}}.exactmetrics-reports-infobox-number{font-size:32px;font-weight:500;line-height:1;margin-top:4px;color:#210f59;width:100%;display:block}@media (max-width:782px){.exactmetrics-reports-infobox-number{font-size:36px;float:none}}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none;clear:both}}.exactmetrics-reports-infobox-prev{font-size:14px;margin-top:4px;margin-left:5px}.exactmetrics-reports-infobox-prev .exactmetrics-arrow{vertical-align:middle}.exactmetrics-reports-infobox-compare{font-size:12px;color:#9087ac;display:inline-block}.exactmetrics-buttons-toggle{margin-left:25px}.exactmetrics-report-flex{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:991px){.exactmetrics-report-flex{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-reports-pie-chart{width:50%;padding:32px 32px 32px 20px;background:#fff;position:relative}.exactmetrics-reports-pie-chart:first-child{border-left:1px solid #e9e7ee;padding-right:0}@media (max-width:991px){.exactmetrics-reports-pie-chart:first-child{border-left:0}}@media (max-width:991px){.exactmetrics-reports-pie-chart{width:100%;border:none;padding-right:0;padding-left:0}}.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;margin-right:20px}@media (max-width:781px){.exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:0 0 0 12px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend{margin:24px 12px;-ms-flex-negative:0;flex-shrink:0;-ms-flex-item-align:center;align-self:center}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-legend li{background:#f4f3f7;border-radius:10px;padding:10px 20px}.exactmetrics-reports-pie-chart .exactmetrics-pie-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-pie-chart-legend-color{width:25px;height:25px;display:inline-block;border-radius:50%;margin:7px 0 7px 17px;float:right}.exactmetrics-pie-chart-legend-text{display:inline-block;font-size:15px;color:#9087ac;width:calc(100% - 50px)}.exactmetrics-pie-chart-legend-value{color:#210f59;font-size:18px;font-weight:500;display:inline-block;width:calc(100% - 50px)}.exactmetrics-table-box{background:#fff;width:100%;padding-top:32px;position:relative}.exactmetrics-table-box:first-child{margin-right:0;margin-top:0}@media (max-width:991px){.exactmetrics-table-box{margin-right:0;margin-top:20px}}.exactmetrics-table-box-footer{background:#fff;padding:20px 0 21px;text-align:left}.exactmetrics-report-row-border-top .exactmetrics-table-box-footer{padding-bottom:46px}.exactmetrics-table-box-footer:after{display:table;clear:both;content:""}.exactmetrics-table-box-footer .exactmetrics-button [class*=monstericon-]{margin-right:18px}@media (max-width:782px){.exactmetrics-table-box-footer>.exactmetrics-button{width:100%;text-align:center}}.exactmetrics-table-list-item{padding:12px 20px;min-height:42px;font-size:15px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:3px}table .exactmetrics-table-list-item{display:table-row}.exactmetrics-table-list-item:nth-child(odd){background-color:#f4f3f7}.exactmetrics-table-list-item .exactmetrics-reports-list-text{color:#210f59;white-space:pre;text-overflow:ellipsis;overflow:hidden;vertical-align:middle;display:inline-block;width:100%;padding:1px;margin:-1px;font-weight:500}.exactmetrics-table-list-item .exactmetrics-reports-list-text a{display:inline-block;max-width:100%;overflow:hidden;text-overflow:ellipsis;color:#210f59}.exactmetrics-table-list-item .exactmetrics-reports-list-text img{display:inline-block;margin-left:10px;vertical-align:middle}.exactmetrics-table-list-item .exactmetrics-flag{-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);display:inline-block;margin:-6px -8px -10px 0}.exactmetrics-table-list-item a{text-decoration:none;color:#393f4c}.exactmetrics-table-list-item a:focus,.exactmetrics-table-list-item a:hover{color:#777}.exactmetrics-table-list-item .exactmetrics-reports-list-count{display:inline-block;min-width:30px;color:#657086;font-weight:400}.exactmetrics-table-list-item .exactmetrics-reports-list-number{color:#393f4c;font-size:15px;text-align:left;display:block;padding-right:5px}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;top:32px;left:0}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-table-box-pagination{float:none;width:100%;margin-top:20px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;top:65px}}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination span{color:#9087ac}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle{position:absolute;top:100%;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;right:0}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button{width:100%;border-radius:3px;border:none;background:#fff}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#f4f3f7}body.exactmetrics-reporting-page .exactmetrics-table-box-pagination .exactmetrics-pagination-selector span{color:#37276a}.exactmetrics-pagination-selector{background:#f4f3f7;padding:8px 20px 8px 35px;border:none;border-radius:3px;font-size:15px;line-height:1.7;cursor:pointer}.exactmetrics-pagination-selector:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-1px;left:20px}@media (max-width:792px){.exactmetrics-pagination-selector{width:100%;text-align:right;top:65px}}.exactmetrics-table-box-list{min-height:calc(100% - 147px);position:relative}.exactmetrics-table-box-list .exactmetrics-table-no-data{top:0;bottom:0;right:0;left:0}.exactmetrics-table-box-table .exactmetrics-table-item-content{display:-webkit-box;display:-ms-flexbox;display:flex;word-break:break-all}@media (max-width:782px){.exactmetrics-table-box-table .exactmetrics-table-item-content{-ms-flex-flow:wrap;flex-flow:wrap}}.exactmetrics-table-box-mobile .exactmetrics-table-box-table{overflow:auto}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;padding:0}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;padding-right:0;margin-right:50px;border-top:1px solid #d6e2ed;font-size:13px;color:#657086;padding-top:8px;padding-bottom:8px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1{margin-right:0;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;width:100%;padding-right:20px;font-size:15px;color:#210f59;padding-top:12px;padding-bottom:12px;border-top:none}.exactmetrics-table-box-mobile .exactmetrics-table-box-table tr.exactmetrics-table-list-item-active td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{-webkit-transform:translateY(-50%) rotate(0);-ms-transform:translateY(-50%) rotate(0);transform:translateY(-50%) rotate(0)}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th{display:none;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1{display:block;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content{padding-left:30px;position:relative;white-space:pre;text-overflow:ellipsis;overflow:hidden;width:100%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table td.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after,.exactmetrics-table-box-mobile .exactmetrics-table-box-table th.exactmetrics-table-cell-1 .exactmetrics-table-item-content:after{content:"\F01F";display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;position:absolute;left:10px;top:50%;-webkit-transform:translateY(-50%) rotate(-180deg);-ms-transform:translateY(-50%) rotate(-180deg);transform:translateY(-50%) rotate(-180deg);color:#9087ac;-webkit-transform-origin:50% 50%;-ms-transform-origin:50% 50%;transform-origin:50% 50%}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-mobile-heading{min-width:125px}.exactmetrics-table-box-mobile .exactmetrics-table-box-table .exactmetrics-table-list-item-empty td:first-child .exactmetrics-table-item-content:after{display:none}.exactmetrics-table-box-table table{width:100%;border-collapse:collapse}.exactmetrics-table-box-mobile .exactmetrics-table-box-table table{table-layout:fixed}.exactmetrics-table-box-table th{text-align:right;font-size:12px;color:#9087ac;text-transform:uppercase;letter-spacing:.08em}.exactmetrics-table-box-table td,.exactmetrics-table-box-table th{border:none;padding:12px 10px;line-height:19px}.exactmetrics-table-box-table td:first-child,.exactmetrics-table-box-table th:first-child{padding-right:20px}.exactmetrics-table-box-table td:last-child,.exactmetrics-table-box-table th:last-child{padding-left:20px}.exactmetrics-report-2-columns{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.exactmetrics-report-2-columns .exactmetrics-table-box{width:50%}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box{width:100%}}.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:50%}@media (max-width:782px){.exactmetrics-report-2-columns.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-left:32px;border-left:1px solid #e9e7ee}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(odd){padding-left:0;border-left:none}}.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-right:32px}@media (max-width:991px){.exactmetrics-report-2-columns .exactmetrics-table-box:nth-child(2n){padding-right:0}}.exactmetrics-report-dimensions .exactmetrics-table-box{border-top:1px solid #e9e7ee;padding-right:32px;padding-left:32px}.exactmetrics-report-dimensions .exactmetrics-report-2-columns{margin-right:-32px;margin-left:-32px}.exactmetrics-report-flex .exactmetrics-report-box{width:50%}@media (max-width:782px){.exactmetrics-report-flex .exactmetrics-report-box{width:100%;margin-top:20px}.exactmetrics-report-flex .exactmetrics-report-box:first-child{margin-top:0}}.exactmetrics-reports-tooltip{font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.exactmetrics-arrow{width:10px;height:11px;display:inline-block;background-size:contain;background-repeat:no-repeat}.exactmetrics-arrow.exactmetrics-down{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=)}.exactmetrics-arrow.exactmetrics-down.exactmetrics-green{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==)}.exactmetrics-arrow.exactmetrics-up.exactmetrics-red{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=)}.exactmetrics-reports-overview-datagraph-tooltip-trend{font-weight:700}.exactmetrics-report-box{background:#fff;padding:32px 0;position:relative}.exactmetrics-realtime-large{font-size:120px;text-align:center;line-height:1.4;color:#32a27a}.exactmetrics-realtime-active{text-align:center;width:100%;font-size:17px;line-height:1;margin-top:-2px;color:#210f59;font-weight:500}.exactmetrics-realtime-box-content .exactmetrics-line-chart-tooltip{max-width:115px}.exactmetrics-realtime-count-box{width:357px;height:357px;margin:50px auto;border-radius:50%;border:15px solid #e9e7ee;text-align:center;padding-top:52px}@media (max-width:782px){.exactmetrics-realtime-count-box{width:300px;height:300px;padding-top:40px}}.exactmetrics-realtime-count-box h3{display:inline-block;font-size:24px;color:#210f59;line-height:1.4;margin:0}#exactmetrics-chartjs-pie-age-tooltip{margin-right:23px;min-width:95px}.exactmetrics-blur .exactmetrics-report-row{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-blur .exactmetrics-report{min-height:850px}.exactmetrics-reports-referral-icon{vertical-align:middle;margin-left:10px;margin-right:2px}.exactmetrics-upsell-inline{background-image:url(../img/reports-upsell-bg.png);background-repeat:no-repeat;background-position:0 0;background-color:#fff;background-size:452px}@media (max-width:991px){.exactmetrics-upsell-inline .exactmetrics-upsell-inline-content{margin:-20px;padding:20px;background:hsla(0,0%,100%,.3)}}.exactmetrics-upsell-content{max-width:750px}.exactmetrics-upsell-content p{font-size:16px;color:#393f4c;line-height:1.8}.exactmetrics-upsell-content .exactmetrics-light{color:#657086}.exactmetrics-upsell-content .exactmetrics-button{font-size:17px;font-weight:700;padding:15px 25px;line-height:1}@media (max-width:782px){.exactmetrics-upsell-content .exactmetrics-button{font-size:15px}}.exactmetrics-upsell-overlay{position:absolute;top:125px;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%);width:750px;max-width:100%;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);background-color:#fff;border:1px solid #d6e2ed}.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-top{padding:0 20px}}@media (max-width:782px){.exactmetrics-upsell-overlay{top:70px;width:calc(100% - 40px)}}.exactmetrics-upsell-overlay h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-upsell-overlay .exactmetrics-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.exactmetrics-upsell-overlay p{margin:20px 0}.exactmetrics-upsell-overlay .exactmetrics-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding-right:20px;padding-left:20px}}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{margin:0 auto;max-width:520px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-right:40px;position:relative;line-height:1.2}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;right:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#210f59;font-size:14px;text-align:center;line-height:20px;top:-1px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content .exactmetrics-button{font-weight:400;font-size:16px;margin-top:10px}.exactmetrics-upsell-overlay a{color:#393f4c}.exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-center,.exactmetrics-mobile-upsell{text-align:center}.exactmetrics-mobile-upsell .exactmetrics-notice{border-top:1px solid #d6e2ed;border-left:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.exactmetrics-mobile-upsell .exactmetrics-notice-inner{margin-top:0}@media (min-width:783px){.exactmetrics-mobile-upsell{display:none}}.exactmetrics-mobile-upsell .exactmetrics-notice-success .exactmetrics-notice-button{margin-left:0}.exactmetrics-overview-upsell-desktop{margin:0 -32px}@media (max-width:782px){.exactmetrics-overview-upsell-desktop{display:none}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:55%}@media (max-width:969px){.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right{width:45%}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{bottom:auto;height:490px;width:779px;right:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-left:142px}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text:before{content:"";height:48px;width:127px;background-image:url(data:image/png;base64,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);background-size:contain;position:absolute;right:100%;top:0;margin-right:15px}.exactmetrics-report-realtime .exactmetrics-table-box th:first-child{width:auto}.exactmetrics-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.exactmetrics-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;padding-top:32px}.exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-right:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-right:0}}.exactmetrics-report-scroll>h3{position:absolute;top:0}.exactmetrics-report-scroll .exactmetrics-realtime-active{margin:0 0 50px}.exactmetrics-report-scroll .exactmetrics-realtime-box-content{margin:25px 0}.exactmetrics-report-scroll .exactmetrics-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}@media (max-width:782px){.exactmetrics-report-scroll .exactmetrics-realtime-large{margin-top:25px}}.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-settings-input-authenticate{text-align:center}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#e9e7ee;border-color:#e9e7ee;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:hover{background-color:#f4f3f7;border-color:#f4f3f7;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt{background:#6528f5;border-color:#6528f5;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;border-color:#e9e7ee;color:#9087ac}.exactmetrics-reports-list-has-overflow{cursor:pointer}.exactmetrics-reports-ecommerce-pie-chart{padding:130px 0 0;width:40%;max-width:100%}@media (max-width:792px){.exactmetrics-reports-ecommerce-pie-chart{width:100%;padding-top:32px}}.exactmetrics-reports-ecommerce-pie-chart .exactmetrics-reports-pie-chart{position:relative;width:225px;text-align:center;padding:0;margin:0 auto;border:none}.exactmetrics-table-no-data{background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;height:100%;min-height:300px;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;background-size:cover;border-radius:10px;padding:20px}.exactmetrics-table-no-data h3{font-size:17px;line-height:1.5;color:#210f59}.exactmetrics-product-color{display:inline-block;width:14px;height:14px;margin-left:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-right:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;right:50px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#9087ac}@media (max-width:782px){.exactmetrics-report-row-icon-left{padding-right:20px}.exactmetrics-report-row-icon-left:before{display:none}}.exactmetrics-admin-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px}.exactmetrics-admin-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f}
|
lite/assets/vue/css/settings.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.exactmetrics-dark[data-v-993e4e00],.exactmetrics-dark[data-v-4619bc56],.exactmetrics-dark[data-v-f09aa432]{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-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],.exactmetrics-dark[data-v-ce9b30b0]{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 .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-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-navigation-bar{margin-left:-80px}.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{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 label:last-child{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-993e4e00],.exactmetrics-dark[data-v-4619bc56],.exactmetrics-dark[data-v-f09aa432]{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-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],.exactmetrics-dark[data-v-ce9b30b0]{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-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-navigation-bar{margin-left:-80px}.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{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 label:last-child{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}
|
lite/assets/vue/css/settings.rtl.css
CHANGED
@@ -1 +1 @@
|
|
1 |
-
.exactmetrics-dark[data-v-993e4e00],.exactmetrics-dark[data-v-4619bc56],.exactmetrics-dark[data-v-f09aa432]{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-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],.exactmetrics-dark[data-v-ce9b30b0]{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 .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-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-navigation-bar{margin-right:-80px}.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{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 label:last-child{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/+dvih
|
|