Google Analytics Dashboard for WP (GADWP) - Version 7.10.0

Version Description

Download this release

Release Info

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

Code changes from version 7.9.1 to 7.10.0

gadwp.php CHANGED
@@ -4,10 +4,10 @@
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: 7.9.1
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.6
10
- * Author URI: https://exactmetrics.com
11
  * Text Domain: google-analytics-dashboard-for-wp
12
  * Domain Path: /languages
13
  */
@@ -44,7 +44,7 @@ final class ExactMetrics_Lite {
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
- public $version = '7.9.1';
48
 
49
  /**
50
  * 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: 7.10.0
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.6
10
+ * Author URI: https://exactmetrics.com/lite/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
11
  * Text Domain: google-analytics-dashboard-for-wp
12
  * Domain Path: /languages
13
  */
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
+ public $version = '7.10.0';
48
 
49
  /**
50
  * Plugin file.
includes/admin/reports/abstract-report.php CHANGED
@@ -262,6 +262,12 @@ class ExactMetrics_Report {
262
  );
263
  } else {
264
  // Success
 
 
 
 
 
 
265
  $data = array(
266
  'expires' => time() + $expiration,
267
  'p' => $p,
262
  );
263
  } else {
264
  // Success
265
+
266
+ // Strip any HTML tags from API response
267
+ $ret['data'] = json_encode($ret['data']);
268
+ $ret['data'] = strip_tags($ret['data']);
269
+ $ret['data'] = json_decode($ret['data'], true);
270
+
271
  $data = array(
272
  'expires' => time() + $expiration,
273
  'p' => $p,
includes/helpers.php CHANGED
@@ -1481,6 +1481,10 @@ function exactmetrics_custom_track_pretty_links_redirect( $url ) {
1481
  if ( ! function_exists( 'exactmetrics_mp_track_event_call' ) && ! function_exists( 'exactmetrics_mp_collect_v4' ) ) {
1482
  return;
1483
  }
 
 
 
 
1484
  // Try to determine if click originated on the same site.
1485
  $referer = ! empty( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '';
1486
  if ( ! empty( $referer ) ) {
@@ -1551,6 +1555,64 @@ function exactmetrics_custom_track_pretty_links_redirect( $url ) {
1551
 
1552
  add_action( 'prli_before_redirect', 'exactmetrics_custom_track_pretty_links_redirect' );
1553
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1554
  /**
1555
  * Get post type in admin side
1556
  */
@@ -2202,4 +2264,4 @@ if ( ! function_exists( 'current_datetime' ) ) {
2202
  function current_datetime() {
2203
  return new DateTimeImmutable( 'now', wp_timezone() );
2204
  }
2205
- }
1481
  if ( ! function_exists( 'exactmetrics_mp_track_event_call' ) && ! function_exists( 'exactmetrics_mp_collect_v4' ) ) {
1482
  return;
1483
  }
1484
+
1485
+ // Track if it is a file.
1486
+ exactmetrics_track_pretty_links_file_download_redirect( $url );
1487
+
1488
  // Try to determine if click originated on the same site.
1489
  $referer = ! empty( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '';
1490
  if ( ! empty( $referer ) ) {
1555
 
1556
  add_action( 'prli_before_redirect', 'exactmetrics_custom_track_pretty_links_redirect' );
1557
 
1558
+ /**
1559
+ * Track Pretty Links file download redirects with ExactMetrics.
1560
+ *
1561
+ * @param string $url The url to which users get redirected.
1562
+ */
1563
+ function exactmetrics_track_pretty_links_file_download_redirect( $url ) {
1564
+ $file_info = pathinfo( $url );
1565
+
1566
+ // If no extension in URL.
1567
+ if ( ! isset( $file_info['extension'] ) ) {
1568
+ return;
1569
+ }
1570
+
1571
+ if ( ! $file_info['extension'] ) {
1572
+ return;
1573
+ }
1574
+
1575
+ // Get download extensions to track.
1576
+ $download_extensions = exactmetrics_get_option( 'extensions_of_files', '' );
1577
+
1578
+ if ( ! $download_extensions ) {
1579
+ return;
1580
+ }
1581
+
1582
+ $download_extensions = explode( ',', str_replace( '.', '', $download_extensions ) );
1583
+
1584
+ if ( ! is_array( $download_extensions ) ) {
1585
+ $download_extensions = array( $download_extensions );
1586
+ }
1587
+
1588
+ // If current URL extension is not in settings.
1589
+ if ( ! in_array( $file_info['extension'], $download_extensions ) ) {
1590
+ return;
1591
+ }
1592
+
1593
+ $url_components = parse_url( $url );
1594
+
1595
+ global $prli_link;
1596
+ $pretty_link = $prli_link->get_one_by( 'url', $url );
1597
+
1598
+ $args = array(
1599
+ 'events' => array(
1600
+ array(
1601
+ 'name' => 'file_download',
1602
+ 'params' => array(
1603
+ 'link_text' => $pretty_link->name,
1604
+ 'link_url' => $url,
1605
+ 'link_domain' => $url_components['host'],
1606
+ 'file_extension' => $file_info['extension'],
1607
+ 'file_name' => $file_info['basename'],
1608
+ )
1609
+ )
1610
+ ),
1611
+ );
1612
+
1613
+ exactmetrics_mp_collect_v4( $args );
1614
+ }
1615
+
1616
  /**
1617
  * Get post type in admin side
1618
  */
2264
  function current_datetime() {
2265
  return new DateTimeImmutable( 'now', wp_timezone() );
2266
  }
2267
+ }
languages/google-analytics-dashboard-for-wp.pot CHANGED
@@ -2,20 +2,20 @@
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ExactMetrics Pro 7.9.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-10-10T21:14:17+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
- #: languages/vue.php:3483
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
@@ -113,7 +113,7 @@ msgstr ""
113
  #: includes/admin/admin.php:34
114
  #: includes/admin/admin.php:42
115
  #: includes/admin/admin.php:230
116
- #: languages/vue.php:539
117
  msgid "Settings"
118
  msgstr ""
119
 
@@ -129,7 +129,7 @@ msgstr ""
129
 
130
  #: includes/admin/admin.php:39
131
  #: includes/admin/admin.php:131
132
- #: languages/vue.php:2304
133
  msgid "Reports"
134
  msgstr ""
135
 
@@ -139,7 +139,7 @@ msgstr ""
139
 
140
  #: includes/admin/admin.php:51
141
  #: languages/gutenberg.php:83
142
- #: languages/vue.php:996
143
  msgid "Popular Posts"
144
  msgstr ""
145
 
@@ -173,7 +173,7 @@ msgstr ""
173
 
174
  #: includes/admin/admin.php:71
175
  #: includes/admin/admin.php:147
176
- #: languages/vue.php:160
177
  msgid "About Us"
178
  msgstr ""
179
 
@@ -192,7 +192,7 @@ msgstr ""
192
  #: includes/admin/admin.php:76
193
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
194
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
195
- #: languages/vue.php:1044
196
  msgid "Upgrade to Pro"
197
  msgstr ""
198
 
@@ -220,7 +220,7 @@ msgstr ""
220
 
221
  #: includes/admin/admin.php:220
222
  #: includes/admin/admin.php:223
223
- #: languages/vue.php:1020
224
  msgid "Support"
225
  msgstr ""
226
 
@@ -231,8 +231,8 @@ msgstr ""
231
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:31
232
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
233
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
234
- #: includes/admin/reports/abstract-report.php:452
235
- #: languages/vue.php:1151
236
  msgid "Get ExactMetrics Pro"
237
  msgstr ""
238
 
@@ -242,12 +242,12 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
242
  msgstr ""
243
 
244
  #: includes/admin/admin.php:335
245
- #: languages/vue.php:1142
246
  msgid "Please Setup Website Analytics to See Audience Insights"
247
  msgstr ""
248
 
249
  #: includes/admin/admin.php:336
250
- #: languages/vue.php:1148
251
  msgid "Connect ExactMetrics and Setup Website Analytics"
252
  msgstr ""
253
 
@@ -261,12 +261,12 @@ msgstr ""
261
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
262
  #: includes/admin/notifications/notification-returning-visitors.php:43
263
  #: includes/admin/notifications/notification-traffic-dropping.php:43
264
- #: languages/vue.php:337
265
  msgid "Learn More"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:340
269
- #: languages/vue.php:1145
270
  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 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
271
  msgstr ""
272
 
@@ -277,18 +277,18 @@ msgstr ""
277
 
278
  #. Translators: Adds a link to the license renewal.
279
  #: includes/admin/admin.php:363
280
- #: languages/vue.php:477
281
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
282
  msgstr ""
283
 
284
  #: includes/admin/admin.php:365
285
- #: languages/vue.php:480
286
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
287
  msgstr ""
288
 
289
  #: includes/admin/admin.php:367
290
  #: includes/admin/api-auth.php:303
291
- #: languages/vue.php:483
292
  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."
293
  msgstr ""
294
 
@@ -485,7 +485,7 @@ msgid "View 2021 Year in Review report!"
485
  msgstr ""
486
 
487
  #: includes/admin/common.php:951
488
- #: languages/vue.php:3328
489
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
490
  msgstr ""
491
 
@@ -506,7 +506,7 @@ msgstr ""
506
 
507
  #: includes/admin/exclude-page-metabox.php:144
508
  #: languages/gutenberg.php:354
509
- #: languages/vue.php:3120
510
  msgid "Upgrade"
511
  msgstr ""
512
 
@@ -703,7 +703,7 @@ msgstr ""
703
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
704
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
705
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
706
- #: languages/vue.php:1735
707
  #: lite/includes/admin/helpers.php:85
708
  msgid "Upgrade to ExactMetrics Pro"
709
  msgstr ""
@@ -738,8 +738,8 @@ msgstr ""
738
 
739
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
740
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
741
- #: includes/admin/reports/abstract-report.php:449
742
- #: languages/vue.php:230
743
  msgid "Upgrade Now"
744
  msgstr ""
745
 
@@ -860,64 +860,64 @@ msgstr ""
860
  msgid "Invalid date range."
861
  msgstr ""
862
 
863
- #: includes/admin/reports/abstract-report.php:293
864
  msgid "You must be properly authenticated with ExactMetrics to use our reports. Please use our %1$ssetup wizard%2$s to get started."
865
  msgstr ""
866
 
867
  #. Translators: Placeholders add the license level and the report title.
868
- #: includes/admin/reports/abstract-report.php:380
869
  msgid "You currently have a %1$s level license, but this report requires at least a %2$s level license to view the %3$s. Please upgrade to view this report."
870
  msgstr ""
871
 
872
- #: includes/admin/reports/abstract-report.php:394
873
  msgid "Ready to Get Analytics Super-Powers?"
874
  msgstr ""
875
 
876
- #: includes/admin/reports/abstract-report.php:396
877
  msgid "(And Crush Your Competition?)"
878
  msgstr ""
879
 
880
  #. Translators: License level and smiley.
881
- #: includes/admin/reports/abstract-report.php:402
882
  msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
883
  msgstr ""
884
 
885
  #. Translators: Placeholders add the report title and license level.
886
- #: includes/admin/reports/abstract-report.php:409
887
  msgid "Do you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with the %3$s level%4$s of our paid packages. You'll need to upgrade your license to get instant access."
888
  msgstr ""
889
 
890
  #. Translators: Placeholdes add links to the account area and a guide.
891
- #: includes/admin/reports/abstract-report.php:416
892
  msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on ExactMetrics.com, go to the licenses tab, and click upgrade. We also have a %3$sstep by step guide%4$s with pictures of this process."
893
  msgstr ""
894
 
895
- #: includes/admin/reports/abstract-report.php:420
896
- #: includes/admin/reports/abstract-report.php:443
897
  msgid "If you have any questions, don't hesitate to reach out. We're here to help."
898
  msgstr ""
899
 
900
  #. Translators: Placeholder adds a smiley face.
901
- #: includes/admin/reports/abstract-report.php:425
902
  msgid "Hey there! %s It looks like you've got the free version of ExactMetrics installed on your site. That's awesome!"
903
  msgstr ""
904
 
905
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
906
- #: includes/admin/reports/abstract-report.php:432
907
  msgid "Do you you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with %3$s level%4$s of our paid packages. To get instant access, you'll want to buy a ExactMetrics license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
908
  msgstr ""
909
 
910
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
911
- #: includes/admin/reports/abstract-report.php:439
912
  msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, purchase the required license, and then follow the %3$sinstructions in the email receipt%4$s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
913
  msgstr ""
914
 
915
- #: includes/admin/reports/abstract-report.php:486
916
  msgid "Please ask your webmaster to enable this addon."
917
  msgstr ""
918
 
919
  #: includes/admin/reports/overview.php:34
920
- #: languages/vue.php:439
921
  msgid "Overview"
922
  msgstr ""
923
 
@@ -1018,7 +1018,7 @@ msgid "ThirstyAffiliates is a revolution in affiliate link management. Collect,
1018
  msgstr ""
1019
 
1020
  #: includes/admin/routes.php:535
1021
- #: languages/vue.php:3681
1022
  msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
1023
  msgstr ""
1024
 
@@ -1474,7 +1474,7 @@ msgid "Question"
1474
  msgstr ""
1475
 
1476
  #: includes/gutenberg/headline-tool/headline-tool.php:318
1477
- #: languages/vue.php:545
1478
  msgid "General"
1479
  msgstr ""
1480
 
@@ -3704,12 +3704,12 @@ msgid "United States"
3704
  msgstr ""
3705
 
3706
  #: includes/helpers.php:430
3707
- #: includes/helpers.php:1876
3708
  msgid "Canada"
3709
  msgstr ""
3710
 
3711
  #: includes/helpers.php:431
3712
- #: includes/helpers.php:1921
3713
  msgid "United Kingdom"
3714
  msgstr ""
3715
 
@@ -3750,7 +3750,7 @@ msgid "Antarctica"
3750
  msgstr ""
3751
 
3752
  #: includes/helpers.php:441
3753
- #: includes/helpers.php:1869
3754
  msgid "Antigua and Barbuda"
3755
  msgstr ""
3756
 
@@ -3767,7 +3767,7 @@ msgid "Aruba"
3767
  msgstr ""
3768
 
3769
  #: includes/helpers.php:445
3770
- #: includes/helpers.php:1870
3771
  msgid "Australia"
3772
  msgstr ""
3773
 
@@ -3792,7 +3792,7 @@ msgid "Bangladesh"
3792
  msgstr ""
3793
 
3794
  #: includes/helpers.php:451
3795
- #: includes/helpers.php:1871
3796
  msgid "Barbados"
3797
  msgstr ""
3798
 
@@ -3805,7 +3805,7 @@ msgid "Belgium"
3805
  msgstr ""
3806
 
3807
  #: includes/helpers.php:454
3808
- #: includes/helpers.php:1872
3809
  msgid "Belize"
3810
  msgstr ""
3811
 
@@ -3834,7 +3834,7 @@ msgid "Bosnia and Herzegovina"
3834
  msgstr ""
3835
 
3836
  #: includes/helpers.php:461
3837
- #: includes/helpers.php:1873
3838
  msgid "Botswana"
3839
  msgstr ""
3840
 
@@ -3863,7 +3863,7 @@ msgid "Burkina Faso"
3863
  msgstr ""
3864
 
3865
  #: includes/helpers.php:468
3866
- #: includes/helpers.php:1874
3867
  msgid "Burundi"
3868
  msgstr ""
3869
 
@@ -3872,7 +3872,7 @@ msgid "Cambodia"
3872
  msgstr ""
3873
 
3874
  #: includes/helpers.php:470
3875
- #: includes/helpers.php:1875
3876
  msgid "Cameroon"
3877
  msgstr ""
3878
 
@@ -3965,7 +3965,7 @@ msgid "Djibouti"
3965
  msgstr ""
3966
 
3967
  #: includes/helpers.php:493
3968
- #: includes/helpers.php:1877
3969
  msgid "Dominica"
3970
  msgstr ""
3971
 
@@ -4014,7 +4014,7 @@ msgid "Faroe Islands"
4014
  msgstr ""
4015
 
4016
  #: includes/helpers.php:505
4017
- #: includes/helpers.php:1878
4018
  msgid "Fiji"
4019
  msgstr ""
4020
 
@@ -4043,7 +4043,7 @@ msgid "Gabon"
4043
  msgstr ""
4044
 
4045
  #: includes/helpers.php:512
4046
- #: includes/helpers.php:1881
4047
  msgid "Gambia"
4048
  msgstr ""
4049
 
@@ -4060,7 +4060,7 @@ msgid "Greece"
4060
  msgstr ""
4061
 
4062
  #: includes/helpers.php:516
4063
- #: includes/helpers.php:1882
4064
  msgid "Ghana"
4065
  msgstr ""
4066
 
@@ -4073,7 +4073,7 @@ msgid "Greenland"
4073
  msgstr ""
4074
 
4075
  #: includes/helpers.php:519
4076
- #: includes/helpers.php:1879
4077
  msgid "Grenada"
4078
  msgstr ""
4079
 
@@ -4102,7 +4102,7 @@ msgid "Guinea-Bissau"
4102
  msgstr ""
4103
 
4104
  #: includes/helpers.php:526
4105
- #: includes/helpers.php:1880
4106
  msgid "Guyana"
4107
  msgstr ""
4108
 
@@ -4135,7 +4135,7 @@ msgid "Iceland"
4135
  msgstr ""
4136
 
4137
  #: includes/helpers.php:534
4138
- #: includes/helpers.php:1884
4139
  msgid "India"
4140
  msgstr ""
4141
 
@@ -4152,7 +4152,7 @@ msgid "Iraq"
4152
  msgstr ""
4153
 
4154
  #: includes/helpers.php:538
4155
- #: includes/helpers.php:1883
4156
  msgid "Ireland"
4157
  msgstr ""
4158
 
@@ -4169,7 +4169,7 @@ msgid "Italy"
4169
  msgstr ""
4170
 
4171
  #: includes/helpers.php:542
4172
- #: includes/helpers.php:1885
4173
  msgid "Jamaica"
4174
  msgstr ""
4175
 
@@ -4190,12 +4190,12 @@ msgid "Kazakhstan"
4190
  msgstr ""
4191
 
4192
  #: includes/helpers.php:547
4193
- #: includes/helpers.php:1886
4194
  msgid "Kenya"
4195
  msgstr ""
4196
 
4197
  #: includes/helpers.php:548
4198
- #: includes/helpers.php:1887
4199
  msgid "Kiribati"
4200
  msgstr ""
4201
 
@@ -4220,12 +4220,12 @@ msgid "Lebanon"
4220
  msgstr ""
4221
 
4222
  #: includes/helpers.php:554
4223
- #: includes/helpers.php:1888
4224
  msgid "Lesotho"
4225
  msgstr ""
4226
 
4227
  #: includes/helpers.php:555
4228
- #: includes/helpers.php:1889
4229
  msgid "Liberia"
4230
  msgstr ""
4231
 
@@ -4258,7 +4258,7 @@ msgid "Madagascar"
4258
  msgstr ""
4259
 
4260
  #: includes/helpers.php:563
4261
- #: includes/helpers.php:1890
4262
  msgid "Malawi"
4263
  msgstr ""
4264
 
@@ -4275,12 +4275,12 @@ msgid "Mali"
4275
  msgstr ""
4276
 
4277
  #: includes/helpers.php:567
4278
- #: includes/helpers.php:1891
4279
  msgid "Malta"
4280
  msgstr ""
4281
 
4282
  #: includes/helpers.php:568
4283
- #: includes/helpers.php:1892
4284
  msgid "Marshall Islands"
4285
  msgstr ""
4286
 
@@ -4293,7 +4293,7 @@ msgid "Mauritania"
4293
  msgstr ""
4294
 
4295
  #: includes/helpers.php:571
4296
- #: includes/helpers.php:1893
4297
  msgid "Mauritius"
4298
  msgstr ""
4299
 
@@ -4306,7 +4306,7 @@ msgid "Mexico"
4306
  msgstr ""
4307
 
4308
  #: includes/helpers.php:574
4309
- #: includes/helpers.php:1894
4310
  msgid "Micronesia"
4311
  msgstr ""
4312
 
@@ -4343,12 +4343,12 @@ msgid "Myanmar"
4343
  msgstr ""
4344
 
4345
  #: includes/helpers.php:583
4346
- #: includes/helpers.php:1896
4347
  msgid "Namibia"
4348
  msgstr ""
4349
 
4350
  #: includes/helpers.php:584
4351
- #: includes/helpers.php:1897
4352
  msgid "Nauru"
4353
  msgstr ""
4354
 
@@ -4369,7 +4369,7 @@ msgid "New Caledonia"
4369
  msgstr ""
4370
 
4371
  #: includes/helpers.php:589
4372
- #: includes/helpers.php:1895
4373
  msgid "New Zealand"
4374
  msgstr ""
4375
 
@@ -4382,7 +4382,7 @@ msgid "Niger"
4382
  msgstr ""
4383
 
4384
  #: includes/helpers.php:592
4385
- #: includes/helpers.php:1898
4386
  msgid "Nigeria"
4387
  msgstr ""
4388
 
@@ -4411,12 +4411,12 @@ msgid "Oman"
4411
  msgstr ""
4412
 
4413
  #: includes/helpers.php:599
4414
- #: includes/helpers.php:1899
4415
  msgid "Pakistan"
4416
  msgstr ""
4417
 
4418
  #: includes/helpers.php:600
4419
- #: includes/helpers.php:1900
4420
  msgid "Palau"
4421
  msgstr ""
4422
 
@@ -4429,7 +4429,7 @@ msgid "Panama"
4429
  msgstr ""
4430
 
4431
  #: includes/helpers.php:603
4432
- #: includes/helpers.php:1901
4433
  msgid "Papua New Guinea"
4434
  msgstr ""
4435
 
@@ -4442,7 +4442,7 @@ msgid "Peru"
4442
  msgstr ""
4443
 
4444
  #: includes/helpers.php:606
4445
- #: includes/helpers.php:1902
4446
  msgid "Philippines"
4447
  msgstr ""
4448
 
@@ -4483,7 +4483,7 @@ msgid "Russian Federation"
4483
  msgstr ""
4484
 
4485
  #: includes/helpers.php:616
4486
- #: includes/helpers.php:1903
4487
  msgid "Rwanda"
4488
  msgstr ""
4489
 
@@ -4540,17 +4540,17 @@ msgid "Serbia"
4540
  msgstr ""
4541
 
4542
  #: includes/helpers.php:630
4543
- #: includes/helpers.php:1910
4544
  msgid "Seychelles"
4545
  msgstr ""
4546
 
4547
  #: includes/helpers.php:631
4548
- #: includes/helpers.php:1911
4549
  msgid "Sierra Leone"
4550
  msgstr ""
4551
 
4552
  #: includes/helpers.php:632
4553
- #: includes/helpers.php:1904
4554
  msgid "Singapore"
4555
  msgstr ""
4556
 
@@ -4563,7 +4563,7 @@ msgid "Slovenia"
4563
  msgstr ""
4564
 
4565
  #: includes/helpers.php:635
4566
- #: includes/helpers.php:1912
4567
  msgid "Solomon Islands"
4568
  msgstr ""
4569
 
@@ -4572,7 +4572,7 @@ msgid "Somalia"
4572
  msgstr ""
4573
 
4574
  #: includes/helpers.php:637
4575
- #: includes/helpers.php:1913
4576
  msgid "South Africa"
4577
  msgstr ""
4578
 
@@ -4585,7 +4585,7 @@ msgid "South Korea"
4585
  msgstr ""
4586
 
4587
  #: includes/helpers.php:640
4588
- #: includes/helpers.php:1914
4589
  msgid "South Sudan"
4590
  msgstr ""
4591
 
@@ -4598,7 +4598,7 @@ msgid "Sri Lanka"
4598
  msgstr ""
4599
 
4600
  #: includes/helpers.php:643
4601
- #: includes/helpers.php:1915
4602
  msgid "Sudan"
4603
  msgstr ""
4604
 
@@ -4611,7 +4611,7 @@ msgid "Svalbard and Jan Mayen Islands"
4611
  msgstr ""
4612
 
4613
  #: includes/helpers.php:646
4614
- #: includes/helpers.php:1908
4615
  msgid "Swaziland"
4616
  msgstr ""
4617
 
@@ -4636,7 +4636,7 @@ msgid "Tajikistan"
4636
  msgstr ""
4637
 
4638
  #: includes/helpers.php:652
4639
- #: includes/helpers.php:1918
4640
  msgid "Tanzania"
4641
  msgstr ""
4642
 
@@ -4657,12 +4657,12 @@ msgid "Tokelau"
4657
  msgstr ""
4658
 
4659
  #: includes/helpers.php:657
4660
- #: includes/helpers.php:1919
4661
  msgid "Tonga"
4662
  msgstr ""
4663
 
4664
  #: includes/helpers.php:658
4665
- #: includes/helpers.php:1916
4666
  msgid "Trinidad and Tobago"
4667
  msgstr ""
4668
 
@@ -4683,12 +4683,12 @@ msgid "Turks and Caicos Islands"
4683
  msgstr ""
4684
 
4685
  #: includes/helpers.php:663
4686
- #: includes/helpers.php:1920
4687
  msgid "Tuvalu"
4688
  msgstr ""
4689
 
4690
  #: includes/helpers.php:664
4691
- #: includes/helpers.php:1923
4692
  msgid "Uganda"
4693
  msgstr ""
4694
 
@@ -4713,7 +4713,7 @@ msgid "Uzbekistan"
4713
  msgstr ""
4714
 
4715
  #: includes/helpers.php:670
4716
- #: includes/helpers.php:1924
4717
  msgid "Vanuatu"
4718
  msgstr ""
4719
 
@@ -4750,12 +4750,12 @@ msgid "Yemen"
4750
  msgstr ""
4751
 
4752
  #: includes/helpers.php:679
4753
- #: includes/helpers.php:1925
4754
  msgid "Zambia"
4755
  msgstr ""
4756
 
4757
  #: includes/helpers.php:680
4758
- #: includes/helpers.php:1926
4759
  msgid "Zimbabwe"
4760
  msgstr ""
4761
 
@@ -4773,27 +4773,27 @@ msgstr ""
4773
  msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-ExactMetrics ones. If you need help finding them please %3$sread this article%4$s."
4774
  msgstr ""
4775
 
4776
- #: includes/helpers.php:1905
4777
  msgid "St Kitts and Nevis"
4778
  msgstr ""
4779
 
4780
- #: includes/helpers.php:1906
4781
  msgid "St Lucia"
4782
  msgstr ""
4783
 
4784
- #: includes/helpers.php:1907
4785
  msgid "St Vincent and the Grenadines"
4786
  msgstr ""
4787
 
4788
- #: includes/helpers.php:1909
4789
  msgid "Samoa"
4790
  msgstr ""
4791
 
4792
- #: includes/helpers.php:1917
4793
  msgid "The Bahamas"
4794
  msgstr ""
4795
 
4796
- #: includes/helpers.php:1922
4797
  msgid "United States of America"
4798
  msgstr ""
4799
 
@@ -4874,7 +4874,7 @@ msgid "Theme"
4874
  msgstr ""
4875
 
4876
  #: languages/gutenberg.php:77
4877
- #: languages/vue.php:530
4878
  msgid "Inline Popular Posts"
4879
  msgstr ""
4880
 
@@ -4911,7 +4911,7 @@ msgid "Comment Color"
4911
  msgstr ""
4912
 
4913
  #: languages/gutenberg.php:107
4914
- #: languages/vue.php:3076
4915
  msgid "Wide-Layout Options"
4916
  msgstr ""
4917
 
@@ -4920,12 +4920,12 @@ msgid "Choose Layout"
4920
  msgstr ""
4921
 
4922
  #: languages/gutenberg.php:113
4923
- #: languages/vue.php:3079
4924
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4925
  msgstr ""
4926
 
4927
  #: languages/gutenberg.php:116
4928
- #: languages/vue.php:3100
4929
  msgid "Post Count"
4930
  msgstr ""
4931
 
@@ -4934,7 +4934,7 @@ msgid "Number of posts displayed."
4934
  msgstr ""
4935
 
4936
  #: languages/gutenberg.php:122
4937
- #: languages/vue.php:3082
4938
  msgid "Display Options"
4939
  msgstr ""
4940
 
@@ -4947,7 +4947,7 @@ msgid "Display Widget Title"
4947
  msgstr ""
4948
 
4949
  #: languages/gutenberg.php:131
4950
- #: languages/vue.php:1954
4951
  msgid "Widget Title"
4952
  msgstr ""
4953
 
@@ -4956,17 +4956,17 @@ msgid "Only Show Posts From These Categories"
4956
  msgstr ""
4957
 
4958
  #: languages/gutenberg.php:137
4959
- #: languages/vue.php:3088
4960
  msgid "Display Author"
4961
  msgstr ""
4962
 
4963
  #: languages/gutenberg.php:140
4964
- #: languages/vue.php:3091
4965
  msgid "Display Date"
4966
  msgstr ""
4967
 
4968
  #: languages/gutenberg.php:143
4969
- #: languages/vue.php:3094
4970
  msgid "Display Comments"
4971
  msgstr ""
4972
 
@@ -5187,7 +5187,7 @@ msgid "Goal: "
5187
  msgstr ""
5188
 
5189
  #: languages/gutenberg.php:312
5190
- #: languages/vue.php:984
5191
  msgid "Headline Analyzer"
5192
  msgstr ""
5193
 
@@ -5200,7 +5200,7 @@ msgid "This headline analyzer is part of ExactMetrics to help you increase your
5200
  msgstr ""
5201
 
5202
  #: languages/gutenberg.php:321
5203
- #: languages/vue.php:112
5204
  #: lite/includes/admin/metaboxes.php:47
5205
  msgid "Last 30 days"
5206
  msgstr ""
@@ -5212,7 +5212,7 @@ msgid "Yesterday"
5212
  msgstr ""
5213
 
5214
  #: languages/gutenberg.php:327
5215
- #: languages/vue.php:1304
5216
  #: lite/includes/admin/metaboxes.php:65
5217
  #: lite/includes/admin/metaboxes.php:127
5218
  msgid "Bounce Rate"
@@ -5268,105 +5268,105 @@ msgstr ""
5268
  msgid "Loading Settings"
5269
  msgstr ""
5270
 
5271
- #: languages/vue.php:16
5272
  msgid "Please wait..."
5273
  msgstr ""
5274
 
5275
- #: languages/vue.php:19
5276
  msgid "Saving Changes..."
5277
  msgstr ""
5278
 
5279
- #: languages/vue.php:22
5280
  msgid "Settings Updated"
5281
  msgstr ""
5282
 
5283
  #. Translators: Add a link to the onboarding wizard.
5284
- #: languages/vue.php:26
5285
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5286
  msgstr ""
5287
 
5288
- #: languages/vue.php:29
5289
  msgid "Could Not Save Changes"
5290
  msgstr ""
5291
 
5292
- #: languages/vue.php:32
5293
  msgid "Loading new report data"
5294
  msgstr ""
5295
 
5296
- #. Translators: Placeholder gets replaced with an arrow icon.
5297
- #: languages/vue.php:36
5298
  msgid "Continue %s"
5299
  msgstr ""
5300
 
5301
- #: languages/vue.php:40
5302
  msgid "Error"
5303
  msgstr ""
5304
 
5305
- #: languages/vue.php:44
5306
  msgid "Please try again."
5307
  msgstr ""
5308
 
5309
- #: languages/vue.php:47
5310
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5311
  msgstr ""
5312
 
5313
- #: languages/vue.php:50
5314
  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."
5315
  msgstr ""
5316
 
5317
- #: languages/vue.php:53
5318
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5319
  msgstr ""
5320
 
5321
- #: languages/vue.php:56
5322
  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."
5323
  msgstr ""
5324
 
5325
- #: languages/vue.php:59
5326
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5327
  msgstr ""
5328
 
5329
- #: languages/vue.php:62
5330
  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."
5331
  msgstr ""
5332
 
5333
- #: languages/vue.php:65
5334
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5335
  msgstr ""
5336
 
5337
- #: languages/vue.php:68
5338
  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."
5339
  msgstr ""
5340
 
5341
- #: languages/vue.php:71
5342
  msgid "Unlock the Forms Report and Improve Conversions"
5343
  msgstr ""
5344
 
5345
- #: languages/vue.php:74
5346
  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."
5347
  msgstr ""
5348
 
5349
- #: languages/vue.php:77
5350
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5351
  msgstr ""
5352
 
5353
- #: languages/vue.php:80
5354
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5355
  msgstr ""
5356
 
5357
- #: languages/vue.php:83
5358
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5359
  msgstr ""
5360
 
5361
- #: languages/vue.php:86
5362
  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."
5363
  msgstr ""
5364
 
5365
- #: languages/vue.php:89
5366
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5367
  msgstr ""
5368
 
5369
- #: languages/vue.php:92
5370
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5371
  msgstr ""
5372
 
@@ -5374,5043 +5374,5067 @@ msgstr ""
5374
  msgid "Today"
5375
  msgstr ""
5376
 
5377
- #: languages/vue.php:102
5378
  msgid "Last Week"
5379
  msgstr ""
5380
 
5381
- #: languages/vue.php:105
5382
  msgid "Last Month"
5383
  msgstr ""
5384
 
5385
- #: languages/vue.php:108
5386
  msgid "Last 7 days"
5387
  msgstr ""
5388
 
5389
- #: languages/vue.php:115
5390
  msgid "Loading settings"
5391
  msgstr ""
5392
 
5393
  #. Translators: Number of visitors.
5394
- #: languages/vue.php:119
5395
  msgid "See how %s visitors found your site!"
5396
  msgstr ""
5397
 
5398
  #. Translators: Number of visitors.
5399
- #: languages/vue.php:123
5400
  msgid "Your website was visited by %s users in the last 30 days."
5401
  msgstr ""
5402
 
5403
- #: languages/vue.php:126
5404
  msgid "See the full analytics report!"
5405
  msgstr ""
5406
 
5407
- #: languages/vue.php:129
5408
  msgid "Overview Report"
5409
  msgstr ""
5410
 
5411
  #. Translators: Current PHP version and recommended PHP version.
5412
- #: languages/vue.php:133
5413
  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."
5414
  msgstr ""
5415
 
5416
  #. Translators: Current WordPress version.
5417
- #: languages/vue.php:137
5418
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5419
  msgstr ""
5420
 
5421
- #: languages/vue.php:140
5422
  msgid "Yikes! PHP Update Required"
5423
  msgstr ""
5424
 
5425
  #. Translators: Current PHP version and recommended PHP version.
5426
- #: languages/vue.php:144
5427
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5428
  msgstr ""
5429
 
5430
- #: languages/vue.php:147
5431
  msgid "Learn more about updating PHP"
5432
  msgstr ""
5433
 
5434
- #: languages/vue.php:150
5435
  msgid "Yikes! WordPress Update Required"
5436
  msgstr ""
5437
 
5438
  #. Translators: Current WordPress version.
5439
- #: languages/vue.php:154
5440
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5441
  msgstr ""
5442
 
5443
- #: languages/vue.php:157
5444
  msgid "Learn more about updating WordPress"
5445
  msgstr ""
5446
 
5447
- #: languages/vue.php:163
5448
  msgid "Getting Started"
5449
  msgstr ""
5450
 
5451
- #: languages/vue.php:167
5452
  msgid "Lite vs Pro"
5453
  msgstr ""
5454
 
5455
- #: languages/vue.php:170
5456
  msgid "Success! "
5457
  msgstr ""
5458
 
5459
- #: languages/vue.php:173
5460
  msgid "You're now using ExactMetrics Pro with all the features."
5461
  msgstr ""
5462
 
5463
  #. Translators: Placeholder gets replaced with an arrow icon.
5464
- #: languages/vue.php:177
5465
  msgid "Get Started %s"
5466
  msgstr ""
5467
 
5468
  #. Translators: Error status and error text.
5469
- #: languages/vue.php:181
5470
  msgid "Can't load report data. Error: %1$s, %2$s"
5471
  msgstr ""
5472
 
5473
- #: languages/vue.php:184
5474
  msgid "Error loading report data"
5475
  msgstr ""
5476
 
5477
  #. Translators: Makes text bold.
5478
- #: languages/vue.php:188
5479
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5480
  msgstr ""
5481
 
5482
  #. Translators: Makes text bold.
5483
- #: languages/vue.php:192
5484
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5485
  msgstr ""
5486
 
5487
  #. Translators: Makes text bold.
5488
- #: languages/vue.php:196
5489
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5490
  msgstr ""
5491
 
5492
  #. Translators: Makes text bold.
5493
- #: languages/vue.php:200
5494
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5495
  msgstr ""
5496
 
5497
  #. Translators: Makes text bold.
5498
- #: languages/vue.php:204
5499
  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."
5500
  msgstr ""
5501
 
5502
  #. Translators: Makes text bold.
5503
- #: languages/vue.php:208
5504
  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."
5505
  msgstr ""
5506
 
5507
  #. Translators: Makes text bold.
5508
- #: languages/vue.php:212
5509
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5510
  msgstr ""
5511
 
5512
  #. Translators: Makes text bold.
5513
- #: languages/vue.php:216
5514
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5515
  msgstr ""
5516
 
5517
  #. Translators: Adds link to the features page.
5518
- #: languages/vue.php:220
5519
  msgid "%1$sSee All Features%2$s"
5520
  msgstr ""
5521
 
5522
- #: languages/vue.php:223
5523
  msgid "Pro Plan"
5524
  msgstr ""
5525
 
5526
- #: languages/vue.php:226
5527
  msgid "per year"
5528
  msgstr ""
5529
 
5530
- #: languages/vue.php:233
5531
  msgid "Upgrade to ExactMetrics Pro Now"
5532
  msgstr ""
5533
 
5534
- #: languages/vue.php:236
5535
  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!"
5536
  msgstr ""
5537
 
5538
- #: languages/vue.php:239
5539
  msgid "Daniel Monaghan - Experienced"
5540
  msgstr ""
5541
 
5542
- #: languages/vue.php:242
5543
  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."
5544
  msgstr ""
5545
 
5546
- #: languages/vue.php:245
5547
  msgid "Naomi Spirit - From This Day"
5548
  msgstr ""
5549
 
5550
- #: languages/vue.php:248
5551
  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!"
5552
  msgstr ""
5553
 
5554
- #: languages/vue.php:251
5555
  msgid "Julie Dupuis - Faraway Land Travel"
5556
  msgstr ""
5557
 
5558
- #: languages/vue.php:254
5559
  msgid "Guides and Documentation:"
5560
  msgstr ""
5561
 
5562
- #: languages/vue.php:261
5563
  msgid "Upgrade to PRO"
5564
  msgstr ""
5565
 
5566
- #: languages/vue.php:264
5567
  msgid "eCommerce Tracking"
5568
  msgstr ""
5569
 
5570
- #: languages/vue.php:267
5571
  msgid "Custom Dimensions"
5572
  msgstr ""
5573
 
5574
- #: languages/vue.php:270
5575
  msgid "Form Tracking"
5576
  msgstr ""
5577
 
5578
- #: languages/vue.php:273
5579
  msgid "AMP Support"
5580
  msgstr ""
5581
 
5582
- #: languages/vue.php:277
5583
  msgid "Author Tracking"
5584
  msgstr ""
5585
 
5586
- #: languages/vue.php:280
5587
  msgid "EU Compliance Addon"
5588
  msgstr ""
5589
 
5590
- #: languages/vue.php:283
5591
  msgid "Real Time Report"
5592
  msgstr ""
5593
 
5594
- #: languages/vue.php:286
5595
  msgid "Google Optimize"
5596
  msgstr ""
5597
 
5598
- #: languages/vue.php:289
5599
  #: lite/includes/admin/reports/report-queries.php:22
5600
  msgid "Search Console"
5601
  msgstr ""
5602
 
5603
- #: languages/vue.php:292
5604
  msgid "Custom Date Ranges"
5605
  msgstr ""
5606
 
5607
- #: languages/vue.php:295
5608
- #: languages/vue.php:924
5609
  msgid "Getting Started with ExactMetrics"
5610
  msgstr ""
5611
 
5612
- #: languages/vue.php:298
5613
- #: languages/vue.php:927
5614
  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."
5615
  msgstr ""
5616
 
5617
- #: languages/vue.php:301
5618
  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."
5619
  msgstr ""
5620
 
5621
- #: languages/vue.php:304
5622
  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!."
5623
  msgstr ""
5624
 
5625
- #: languages/vue.php:307
5626
  msgid "Launch the wizard!"
5627
  msgstr ""
5628
 
5629
- #: languages/vue.php:310
5630
  msgid "Welcome to"
5631
  msgstr ""
5632
 
5633
  #. Translators: Adds a line break.
5634
- #: languages/vue.php:314
5635
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5636
  msgstr ""
5637
 
5638
  #. Translators: Makes text bold.
5639
- #: languages/vue.php:318
5640
  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."
5641
  msgstr ""
5642
 
5643
- #: languages/vue.php:321
5644
  msgid "ExactMetrics Features & Addons"
5645
  msgstr ""
5646
 
5647
- #: languages/vue.php:324
5648
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5649
  msgstr ""
5650
 
5651
  #. Translators: Placeholder is replaced with WPForms.
5652
- #: languages/vue.php:328
5653
  msgid "Recommended Plugin: %s"
5654
  msgstr ""
5655
 
5656
- #: languages/vue.php:331
5657
  msgid "Install"
5658
  msgstr ""
5659
 
5660
- #: languages/vue.php:334
5661
  msgid "Activate"
5662
  msgstr ""
5663
 
5664
- #: languages/vue.php:340
5665
  msgid "ExactMetrics encountered an error loading your report data"
5666
  msgstr ""
5667
 
5668
- #: languages/vue.php:343
5669
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5670
  msgstr ""
5671
 
5672
- #: languages/vue.php:346
5673
- #: languages/vue.php:1851
5674
  msgid "Reconnect ExactMetrics"
5675
  msgstr ""
5676
 
5677
- #: languages/vue.php:349
5678
  msgid "Re-Authenticating"
5679
  msgstr ""
5680
 
5681
- #: languages/vue.php:352
5682
  msgid "Ok"
5683
  msgstr ""
5684
 
5685
- #: languages/vue.php:355
5686
- #: languages/vue.php:863
5687
  msgid "ExactMetrics Addons"
5688
  msgstr ""
5689
 
5690
- #: languages/vue.php:358
5691
  msgid "Search Addons"
5692
  msgstr ""
5693
 
5694
- #: languages/vue.php:361
5695
  msgid "Save Changes"
5696
  msgstr ""
5697
 
5698
- #: languages/vue.php:364
5699
  msgid "Exit Setup"
5700
  msgstr ""
5701
 
5702
- #: languages/vue.php:367
5703
  msgid "Time to Purchase"
5704
  msgstr ""
5705
 
5706
- #: languages/vue.php:370
5707
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5708
  msgstr ""
5709
 
5710
- #: languages/vue.php:373
5711
  msgid "Sessions to Purchase"
5712
  msgstr ""
5713
 
5714
- #: languages/vue.php:376
5715
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5716
  msgstr ""
5717
 
5718
- #: languages/vue.php:379
5719
  msgid "New Customers"
5720
  msgstr ""
5721
 
5722
- #: languages/vue.php:382
5723
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5724
  msgstr ""
5725
 
5726
- #: languages/vue.php:385
5727
  msgid "Abandoned Checkouts"
5728
  msgstr ""
5729
 
5730
- #: languages/vue.php:388
5731
  msgid "This list shows the percentage of carts that never went through the checkout process."
5732
  msgstr ""
5733
 
5734
- #: languages/vue.php:391
5735
  msgid "Top Posts/Pages"
5736
  msgstr ""
5737
 
5738
- #: languages/vue.php:394
5739
  msgid "This list shows the most viewed posts and pages on your website."
5740
  msgstr ""
5741
 
5742
- #: languages/vue.php:397
5743
  msgid "New vs. Returning Visitors"
5744
  msgstr ""
5745
 
5746
- #: languages/vue.php:400
5747
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5748
  msgstr ""
5749
 
5750
- #: languages/vue.php:403
5751
  msgid "Device Breakdown"
5752
  msgstr ""
5753
 
5754
- #: languages/vue.php:406
5755
  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."
5756
  msgstr ""
5757
 
5758
- #: languages/vue.php:409
5759
  msgid "Top Landing Pages"
5760
  msgstr ""
5761
 
5762
- #: languages/vue.php:412
5763
  msgid "This list shows the top pages users first land on when visiting your website."
5764
  msgstr ""
5765
 
5766
- #: languages/vue.php:415
5767
  msgid "Top Exit Pages"
5768
  msgstr ""
5769
 
5770
- #: languages/vue.php:418
5771
  msgid "This list shows the top pages users exit your website from."
5772
  msgstr ""
5773
 
5774
- #: languages/vue.php:421
5775
  msgid "Top Outbound Links"
5776
  msgstr ""
5777
 
5778
- #: languages/vue.php:424
5779
  msgid "This list shows the top links clicked on your website that go to another website."
5780
  msgstr ""
5781
 
5782
- #: languages/vue.php:427
5783
  msgid "Top Affiliate Links"
5784
  msgstr ""
5785
 
5786
- #: languages/vue.php:430
5787
  msgid "This list shows the top affiliate links your visitors clicked on."
5788
  msgstr ""
5789
 
5790
- #: languages/vue.php:433
5791
  msgid "Top Download Links"
5792
  msgstr ""
5793
 
5794
- #: languages/vue.php:436
5795
  msgid "This list shows the download links your visitors clicked the most."
5796
  msgstr ""
5797
 
5798
- #: languages/vue.php:442
5799
  msgid "Top Products"
5800
  msgstr ""
5801
 
5802
- #: languages/vue.php:445
5803
  msgid "This list shows the top selling products on your website."
5804
  msgstr ""
5805
 
5806
- #: languages/vue.php:448
5807
  msgid "Top Conversion Sources"
5808
  msgstr ""
5809
 
5810
- #: languages/vue.php:451
5811
  msgid "This list shows the top referral websites in terms of product revenue."
5812
  msgstr ""
5813
 
5814
- #: languages/vue.php:454
5815
  msgid "Total Add/Remove"
5816
  msgstr ""
5817
 
5818
- #: languages/vue.php:457
5819
  msgid "Analytics"
5820
  msgstr ""
5821
 
5822
  #. Translators: Adds an arrow icon.
5823
- #: languages/vue.php:461
5824
  msgid "View All Reports %s"
5825
  msgstr ""
5826
 
5827
- #: languages/vue.php:464
5828
  msgid "You must connect with ExactMetrics before you can view reports."
5829
  msgstr ""
5830
 
5831
- #: languages/vue.php:467
5832
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5833
  msgstr ""
5834
 
5835
- #: languages/vue.php:470
5836
  msgid "Launch Setup Wizard"
5837
  msgstr ""
5838
 
5839
- #: languages/vue.php:473
5840
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5841
  msgstr ""
5842
 
5843
- #: languages/vue.php:486
5844
  msgid "See Quick Links"
5845
  msgstr ""
5846
 
5847
- #: languages/vue.php:489
5848
  msgid "Suggest a Feature"
5849
  msgstr ""
5850
 
5851
- #: languages/vue.php:492
5852
  msgid "Join Our Community"
5853
  msgstr ""
5854
 
5855
- #: languages/vue.php:495
5856
  msgid "Support & Docs"
5857
  msgstr ""
5858
 
5859
- #: languages/vue.php:498
5860
  msgid "Upgrade to Pro &#187;"
5861
  msgstr ""
5862
 
5863
- #: languages/vue.php:502
5864
  #: lite/includes/admin/reports/report-publisher.php:22
5865
  msgid "Publishers"
5866
  msgstr ""
5867
 
5868
- #: languages/vue.php:505
5869
  #: lite/includes/admin/reports/report-ecommerce.php:22
5870
  msgid "eCommerce"
5871
  msgstr ""
5872
 
5873
- #: languages/vue.php:508
5874
  msgid "Dimensions Report"
5875
  msgstr ""
5876
 
5877
- #: languages/vue.php:511
5878
  #: lite/includes/admin/reports/report-forms.php:22
5879
  msgid "Forms"
5880
  msgstr ""
5881
 
5882
- #: languages/vue.php:514
5883
  msgid "Real-Time"
5884
  msgstr ""
5885
 
5886
- #: languages/vue.php:517
5887
  msgid "Site Speed Report"
5888
  msgstr ""
5889
 
5890
- #: languages/vue.php:521
5891
  msgid "2020 Year in Review"
5892
  msgstr ""
5893
 
5894
- #: languages/vue.php:524
5895
  msgid "Import Export"
5896
  msgstr ""
5897
 
5898
- #: languages/vue.php:527
5899
  msgid "PrettyLinks Integration"
5900
  msgstr ""
5901
 
5902
- #: languages/vue.php:533
5903
  msgid "Popular Posts Widget"
5904
  msgstr ""
5905
 
5906
- #: languages/vue.php:536
5907
  msgid "Popular Products"
5908
  msgstr ""
5909
 
5910
- #: languages/vue.php:542
5911
  msgid "Sub menu item for WooCommerce Analytics"
5912
  msgstr ""
5913
 
5914
- #: languages/vue.php:548
5915
  msgid "Engagement"
5916
  msgstr ""
5917
 
5918
- #: languages/vue.php:551
5919
  msgid "Publisher"
5920
  msgstr ""
5921
 
5922
- #: languages/vue.php:554
5923
  msgid "Conversions"
5924
  msgstr ""
5925
 
5926
- #: languages/vue.php:557
5927
  msgid "Advanced"
5928
  msgstr ""
5929
 
5930
- #: languages/vue.php:560
5931
  msgid "URL Builder"
5932
  msgstr ""
5933
 
5934
  #. Translators: Adds a link to documentation.
5935
- #: languages/vue.php:564
5936
  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"
5937
  msgstr ""
5938
 
5939
  #. Translators: Adds link to activate/install plugin and documentation.
5940
- #: languages/vue.php:568
5941
  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"
5942
  msgstr ""
5943
 
5944
  #. Translators: Adds a link to documentation.
5945
- #: languages/vue.php:572
5946
  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"
5947
  msgstr ""
5948
 
5949
  #. Translators: Adds link to activate/install plugin and documentation.
5950
- #: languages/vue.php:576
5951
  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"
5952
  msgstr ""
5953
 
5954
- #: languages/vue.php:579
5955
  msgid "Installing Addon"
5956
  msgstr ""
5957
 
5958
- #: languages/vue.php:582
5959
  msgid "Activating Addon"
5960
  msgstr ""
5961
 
5962
- #: languages/vue.php:585
5963
  msgid "Addon Activated"
5964
  msgstr ""
5965
 
5966
- #: languages/vue.php:588
5967
  msgid "Loading report data"
5968
  msgstr ""
5969
 
5970
- #: languages/vue.php:591
5971
  msgid "Please activate manually"
5972
  msgstr ""
5973
 
5974
  #. Translators: Adds the error status and status text.
5975
- #: languages/vue.php:595
5976
  msgid "Error: %1$s, %2$s"
5977
  msgstr ""
5978
 
5979
- #: languages/vue.php:598
5980
  msgid "Error Activating Addon"
5981
  msgstr ""
5982
 
5983
- #: languages/vue.php:601
5984
  #: lite/includes/admin/wp-site-health.php:375
5985
  #: lite/includes/admin/wp-site-health.php:401
5986
  #: lite/includes/admin/wp-site-health.php:428
5987
  msgid "View Addons"
5988
  msgstr ""
5989
 
5990
- #: languages/vue.php:604
5991
  msgid "Dismiss"
5992
  msgstr ""
5993
 
5994
- #: languages/vue.php:607
5995
  msgid "Redirecting"
5996
  msgstr ""
5997
 
5998
- #: languages/vue.php:610
5999
  msgid "Please wait"
6000
  msgstr ""
6001
 
6002
- #: languages/vue.php:613
6003
  msgid "activate"
6004
  msgstr ""
6005
 
6006
- #: languages/vue.php:616
6007
  msgid "install"
6008
  msgstr ""
6009
 
6010
- #: languages/vue.php:619
6011
  msgid "Visit addons page"
6012
  msgstr ""
6013
 
6014
- #: languages/vue.php:622
6015
  msgid "Report Unavailable"
6016
  msgstr ""
6017
 
6018
  #. Translators: Install/Activate the addon.
6019
- #: languages/vue.php:626
6020
  msgid "%s Addon"
6021
  msgstr ""
6022
 
6023
- #: languages/vue.php:629
6024
  msgid "Go Back To Reports"
6025
  msgstr ""
6026
 
6027
- #: languages/vue.php:632
6028
  msgid "Enable Enhanced eCommerce"
6029
  msgstr ""
6030
 
6031
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
6032
- #: languages/vue.php:636
6033
  msgid "Step %1$s of %2$s"
6034
  msgstr ""
6035
 
6036
- #: languages/vue.php:639
6037
  msgid "Go back"
6038
  msgstr ""
6039
 
6040
- #: languages/vue.php:642
6041
  msgid "Welcome to ExactMetrics!"
6042
  msgstr ""
6043
 
6044
- #: languages/vue.php:645
6045
  msgid "Let's get you set up."
6046
  msgstr ""
6047
 
6048
- #: languages/vue.php:648
6049
  msgid "Save and Continue"
6050
  msgstr ""
6051
 
6052
- #: languages/vue.php:651
6053
  msgid "Which category best describes your website?"
6054
  msgstr ""
6055
 
6056
- #: languages/vue.php:654
6057
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6058
  msgstr ""
6059
 
6060
- #: languages/vue.php:657
6061
  msgid "Business Website"
6062
  msgstr ""
6063
 
6064
  #. Translators: Make text bold.
6065
- #: languages/vue.php:661
6066
  msgid "Publisher %1$s(Blog)%2$s"
6067
  msgstr ""
6068
 
6069
- #: languages/vue.php:664
6070
  msgid "Ecommerce"
6071
  msgstr ""
6072
 
6073
- #: languages/vue.php:667
6074
  msgid "Connect ExactMetrics to Your Website"
6075
  msgstr ""
6076
 
6077
- #: languages/vue.php:670
6078
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6079
  msgstr ""
6080
 
6081
- #: languages/vue.php:673
6082
  msgid "Connect Google Analytics + WordPress"
6083
  msgstr ""
6084
 
6085
- #: languages/vue.php:676
6086
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6087
  msgstr ""
6088
 
6089
- #: languages/vue.php:679
6090
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6091
  msgstr ""
6092
 
6093
- #: languages/vue.php:682
6094
  msgid "Manually enter your UA code"
6095
  msgstr ""
6096
 
6097
- #: languages/vue.php:685
6098
  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."
6099
  msgstr ""
6100
 
6101
- #: languages/vue.php:688
6102
  msgid "UA code can't be empty"
6103
  msgstr ""
6104
 
6105
- #: languages/vue.php:691
6106
  msgid "Saving UA code..."
6107
  msgstr ""
6108
 
6109
- #: languages/vue.php:694
6110
  msgid "ExactMetrics Recommends WPForms"
6111
  msgstr ""
6112
 
6113
- #: languages/vue.php:697
6114
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6115
  msgstr ""
6116
 
6117
- #: languages/vue.php:700
6118
  msgid "Used on over 4,000,000 websites!"
6119
  msgstr ""
6120
 
6121
- #: languages/vue.php:703
6122
  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!"
6123
  msgstr ""
6124
 
6125
- #: languages/vue.php:706
6126
  msgid "Skip this Step"
6127
  msgstr ""
6128
 
6129
- #: languages/vue.php:709
6130
  msgid "Continue & Install WPForms"
6131
  msgstr ""
6132
 
6133
- #: languages/vue.php:712
6134
  msgid "Installing..."
6135
  msgstr ""
6136
 
6137
- #: languages/vue.php:715
6138
  msgid "Recommended Settings"
6139
  msgstr ""
6140
 
6141
- #: languages/vue.php:718
6142
  msgid "ExactMetrics recommends the following settings based on your configuration."
6143
  msgstr ""
6144
 
6145
- #: languages/vue.php:721
6146
  msgid "Events Tracking"
6147
  msgstr ""
6148
 
6149
- #: languages/vue.php:724
6150
  msgid "Must have for all click tracking on site."
6151
  msgstr ""
6152
 
6153
- #: languages/vue.php:727
6154
  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."
6155
  msgstr ""
6156
 
6157
- #: languages/vue.php:730
6158
  msgid "Enhanced Link Attribution"
6159
  msgstr ""
6160
 
6161
- #: languages/vue.php:733
6162
  msgid "Improves the accuracy of your In-Page Analytics."
6163
  msgstr ""
6164
 
6165
- #: languages/vue.php:736
6166
  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."
6167
  msgstr ""
6168
 
6169
- #: languages/vue.php:739
6170
  msgid "Install Updates Automatically"
6171
  msgstr ""
6172
 
6173
- #: languages/vue.php:742
6174
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6175
  msgstr ""
6176
 
6177
- #: languages/vue.php:745
6178
  msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
6179
  msgstr ""
6180
 
6181
- #: languages/vue.php:748
6182
  msgid "File Download Tracking"
6183
  msgstr ""
6184
 
6185
- #: languages/vue.php:751
6186
  msgid "Helps you see file downloads data."
6187
  msgstr ""
6188
 
6189
- #: languages/vue.php:754
6190
  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."
6191
  msgstr ""
6192
 
6193
  #. Translators: Example path (/go/).
6194
- #: languages/vue.php:758
6195
  msgid "Path (example: %s)"
6196
  msgstr ""
6197
 
6198
- #: languages/vue.php:761
6199
  msgid "Path has to start with a / and have no spaces"
6200
  msgstr ""
6201
 
6202
  #. Translators: Example label (aff).
6203
- #: languages/vue.php:765
6204
  msgid "Label (example: %s)"
6205
  msgstr ""
6206
 
6207
- #: languages/vue.php:768
6208
  msgid "Label can't contain any spaces"
6209
  msgstr ""
6210
 
6211
- #: languages/vue.php:771
6212
  msgid "Helps you increase affiliate revenue."
6213
  msgstr ""
6214
 
6215
- #: languages/vue.php:774
6216
  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."
6217
  msgstr ""
6218
 
6219
- #: languages/vue.php:777
6220
  msgid "Affiliate Link Tracking"
6221
  msgstr ""
6222
 
6223
- #: languages/vue.php:780
6224
  msgid "Who Can See Reports"
6225
  msgstr ""
6226
 
6227
- #: languages/vue.php:783
6228
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6229
  msgstr ""
6230
 
6231
- #: languages/vue.php:786
6232
  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."
6233
  msgstr ""
6234
 
6235
- #: languages/vue.php:789
6236
  msgid "Save and continue"
6237
  msgstr ""
6238
 
6239
- #: languages/vue.php:792
6240
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6241
  msgstr ""
6242
 
6243
- #: languages/vue.php:795
6244
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6245
  msgstr ""
6246
 
6247
- #: languages/vue.php:798
6248
  msgid "+ Add Role"
6249
  msgstr ""
6250
 
6251
  #. Translators: Placeholders are used for making text bold and adding a link.
6252
- #: languages/vue.php:802
6253
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6254
  msgstr ""
6255
 
6256
- #: languages/vue.php:805
6257
  #: lite/includes/admin/reports/report-dimensions.php:22
6258
  msgid "Dimensions"
6259
  msgstr ""
6260
 
6261
- #: languages/vue.php:808
6262
  msgid "Site Speed"
6263
  msgstr ""
6264
 
6265
- #: languages/vue.php:811
6266
  msgid "License Key"
6267
  msgstr ""
6268
 
6269
  #. Translators: Add link to retrieve license key from account.
6270
- #: languages/vue.php:815
6271
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6272
  msgstr ""
6273
 
6274
- #: languages/vue.php:818
6275
  msgid "Google Authentication"
6276
  msgstr ""
6277
 
6278
- #: languages/vue.php:821
6279
  msgid "Miscellaneous"
6280
  msgstr ""
6281
 
6282
- #: languages/vue.php:824
6283
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6284
  msgstr ""
6285
 
6286
- #: languages/vue.php:827
6287
  msgid "Hide Announcements"
6288
  msgstr ""
6289
 
6290
- #: languages/vue.php:830
6291
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6292
  msgstr ""
6293
 
6294
  #. Translators: Adds link to upgrade.
6295
- #: languages/vue.php:834
6296
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6297
  msgstr ""
6298
 
6299
- #: languages/vue.php:838
6300
  msgid "Receive 50% off automatically applied at the checkout!"
6301
  msgstr ""
6302
 
6303
- #: languages/vue.php:842
6304
  msgid "See all features"
6305
  msgstr ""
6306
 
6307
- #: languages/vue.php:845
6308
  msgid "Setup Wizard"
6309
  msgstr ""
6310
 
6311
- #: languages/vue.php:848
6312
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6313
  msgstr ""
6314
 
6315
- #: languages/vue.php:851
6316
  msgid "Relaunch Setup Wizard"
6317
  msgstr ""
6318
 
6319
- #: languages/vue.php:854
6320
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6321
  msgstr ""
6322
 
6323
- #: languages/vue.php:857
6324
  msgid "No addons found."
6325
  msgstr ""
6326
 
6327
- #: languages/vue.php:860
6328
  msgid "Refresh Addons"
6329
  msgstr ""
6330
 
6331
  #. Translators: Adds a line break.
6332
- #: languages/vue.php:867
6333
  msgid "Upgrade to Pro to unlock addons and other great features."
6334
  msgstr ""
6335
 
6336
- #: languages/vue.php:870
6337
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6338
  msgstr ""
6339
 
6340
- #: languages/vue.php:873
6341
  msgid "Refreshing Addons"
6342
  msgstr ""
6343
 
6344
- #: languages/vue.php:876
6345
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6346
  msgstr ""
6347
 
6348
  #. Translators: Placeholders make the text green.
6349
- #: languages/vue.php:880
6350
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6351
  msgstr ""
6352
 
6353
- #: languages/vue.php:883
6354
  msgid "How to Connect to Google Analytics"
6355
  msgstr ""
6356
 
6357
- #: languages/vue.php:886
6358
  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."
6359
  msgstr ""
6360
 
6361
- #: languages/vue.php:889
6362
  msgid "Guide and Checklist for Advanced Insights"
6363
  msgstr ""
6364
 
6365
- #: languages/vue.php:892
6366
  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."
6367
  msgstr ""
6368
 
6369
- #: languages/vue.php:895
6370
  msgid "GDPR Guide"
6371
  msgstr ""
6372
 
6373
- #: languages/vue.php:898
6374
  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. "
6375
  msgstr ""
6376
 
6377
- #: languages/vue.php:901
6378
  msgid "How to Install and Activate ExactMetrics Addons"
6379
  msgstr ""
6380
 
6381
- #: languages/vue.php:904
6382
  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."
6383
  msgstr ""
6384
 
6385
- #: languages/vue.php:907
6386
  msgid "Enabling eCommerce Tracking and Reports"
6387
  msgstr ""
6388
 
6389
- #: languages/vue.php:910
6390
  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."
6391
  msgstr ""
6392
 
6393
- #: languages/vue.php:913
6394
  msgid "Read Documentation"
6395
  msgstr ""
6396
 
6397
  #. Translators: Makes the text bold.
6398
- #: languages/vue.php:917
6399
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6400
  msgstr ""
6401
 
6402
  #. Translators: Makes the text bold.
6403
- #: languages/vue.php:921
6404
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6405
  msgstr ""
6406
 
6407
- #: languages/vue.php:930
6408
  msgid "One-click Complete eCommerce tracking"
6409
  msgstr ""
6410
 
6411
- #: languages/vue.php:933
6412
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6413
  msgstr ""
6414
 
6415
- #: languages/vue.php:936
6416
  msgid "Forms Tracking"
6417
  msgstr ""
6418
 
6419
- #: languages/vue.php:939
6420
  msgid "One-click Form Events Tracking"
6421
  msgstr ""
6422
 
6423
- #: languages/vue.php:942
6424
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6425
  msgstr ""
6426
 
6427
- #: languages/vue.php:945
6428
  msgid "WordPress Admin Area Reports"
6429
  msgstr ""
6430
 
6431
- #: languages/vue.php:948
6432
  msgid "Standard Reports"
6433
  msgstr ""
6434
 
6435
- #: languages/vue.php:951
6436
  msgid "Overview Reports for the last 30 days."
6437
  msgstr ""
6438
 
6439
- #: languages/vue.php:954
6440
  msgid "Advanced Reports"
6441
  msgstr ""
6442
 
6443
- #: languages/vue.php:957
6444
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6445
  msgstr ""
6446
 
6447
- #: languages/vue.php:960
6448
  msgid "Dashboard Widget"
6449
  msgstr ""
6450
 
6451
- #: languages/vue.php:963
6452
  msgid "Basic Widget"
6453
  msgstr ""
6454
 
6455
- #: languages/vue.php:966
6456
  msgid "Overview Report Synopsis"
6457
  msgstr ""
6458
 
6459
- #: languages/vue.php:969
6460
  msgid "Advanced Dashboard Widget"
6461
  msgstr ""
6462
 
6463
- #: languages/vue.php:972
6464
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6465
  msgstr ""
6466
 
6467
- #: languages/vue.php:975
6468
  msgid "Publisher Reports"
6469
  msgstr ""
6470
 
6471
- #: languages/vue.php:978
6472
  msgid "Advanced Publisher Reports & Tracking"
6473
  msgstr ""
6474
 
6475
- #: languages/vue.php:981
6476
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6477
  msgstr ""
6478
 
6479
- #: languages/vue.php:987
6480
  msgid "Email Summaries"
6481
  msgstr ""
6482
 
6483
- #: languages/vue.php:990
6484
  msgid "Included"
6485
  msgstr ""
6486
 
6487
- #: languages/vue.php:993
6488
  msgid "Get weekly traffic reports directly in your inbox."
6489
  msgstr ""
6490
 
6491
- #: languages/vue.php:999
6492
  msgid "Basic Options"
6493
  msgstr ""
6494
 
6495
- #: languages/vue.php:1002
6496
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6497
  msgstr ""
6498
 
6499
- #: languages/vue.php:1005
6500
  msgid "Dynamic Popular Posts & Popular Products"
6501
  msgstr ""
6502
 
6503
- #: languages/vue.php:1008
6504
  msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
6505
  msgstr ""
6506
 
6507
- #: languages/vue.php:1011
6508
  msgid "Not Available"
6509
  msgstr ""
6510
 
6511
- #: languages/vue.php:1014
6512
  msgid "Complete Custom Dimensions Tracking"
6513
  msgstr ""
6514
 
6515
- #: languages/vue.php:1017
6516
  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"
6517
  msgstr ""
6518
 
6519
- #: languages/vue.php:1023
6520
  msgid "Limited Support"
6521
  msgstr ""
6522
 
6523
- #: languages/vue.php:1026
6524
  msgid "Priority Support"
6525
  msgstr ""
6526
 
6527
- #: languages/vue.php:1029
6528
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6529
  msgstr ""
6530
 
6531
- #: languages/vue.php:1032
6532
  msgid "Feature"
6533
  msgstr ""
6534
 
6535
- #: languages/vue.php:1035
6536
  msgid "Lite"
6537
  msgstr ""
6538
 
6539
- #: languages/vue.php:1038
6540
  msgid "Pro"
6541
  msgstr ""
6542
 
6543
- #: languages/vue.php:1041
6544
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6545
  msgstr ""
6546
 
6547
- #: languages/vue.php:1047
6548
  msgid "Universal Tracking"
6549
  msgstr ""
6550
 
6551
- #: languages/vue.php:1050
6552
  msgid "Custom Google Analytics Link Tracking"
6553
  msgstr ""
6554
 
6555
- #: languages/vue.php:1053
6556
  msgid "Standard Tracking"
6557
  msgstr ""
6558
 
6559
- #: languages/vue.php:1056
6560
  msgid "Advanced Tracking"
6561
  msgstr ""
6562
 
6563
- #: languages/vue.php:1059
6564
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6565
  msgstr ""
6566
 
6567
- #: languages/vue.php:1062
6568
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6569
  msgstr ""
6570
 
6571
- #: languages/vue.php:1065
6572
  msgid "No-Code-Needed Tracking Features"
6573
  msgstr ""
6574
 
6575
- #: languages/vue.php:1068
6576
  msgid "Basic Tracking Options"
6577
  msgstr ""
6578
 
6579
- #: languages/vue.php:1071
6580
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6581
  msgstr ""
6582
 
6583
- #: languages/vue.php:1074
6584
  msgid "Advanced Tracking Options"
6585
  msgstr ""
6586
 
6587
- #: languages/vue.php:1077
6588
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6589
  msgstr ""
6590
 
6591
- #: languages/vue.php:1080
6592
  msgid "Inbox"
6593
  msgstr ""
6594
 
6595
- #: languages/vue.php:1083
6596
  msgid "Back to Inbox"
6597
  msgstr ""
6598
 
6599
- #: languages/vue.php:1086
6600
  msgid "View Dismissed"
6601
  msgstr ""
6602
 
6603
- #: languages/vue.php:1089
6604
  msgid "Notifications"
6605
  msgstr ""
6606
 
6607
- #: languages/vue.php:1092
6608
  msgid "Dismiss All"
6609
  msgstr ""
6610
 
6611
- #: languages/vue.php:1095
6612
  msgid "Dismissed"
6613
  msgstr ""
6614
 
6615
- #: languages/vue.php:1098
6616
  msgid "No Notifications"
6617
  msgstr ""
6618
 
6619
  #. Translators: Error status and error text.
6620
- #: languages/vue.php:1102
6621
  msgid "Can't load settings. Error: %1$s, %2$s"
6622
  msgstr ""
6623
 
6624
- #: languages/vue.php:1105
6625
  msgid "You appear to be offline."
6626
  msgstr ""
6627
 
6628
  #. Translators: Error status and error text.
6629
- #: languages/vue.php:1109
6630
  msgid "Can't save settings. Error: %1$s, %2$s"
6631
  msgstr ""
6632
 
6633
- #: languages/vue.php:1112
6634
  msgid "Network error encountered. Settings not saved."
6635
  msgstr ""
6636
 
6637
- #: languages/vue.php:1115
6638
  msgid "Show in widget mode"
6639
  msgstr ""
6640
 
6641
- #: languages/vue.php:1118
6642
  msgid "Show in full-width mode"
6643
  msgstr ""
6644
 
6645
- #: languages/vue.php:1121
6646
  msgid "Show Overview Reports"
6647
  msgstr ""
6648
 
6649
- #: languages/vue.php:1124
6650
  msgid "Show Publishers Reports"
6651
  msgstr ""
6652
 
6653
- #: languages/vue.php:1127
6654
  msgid "Show eCommerce Reports"
6655
  msgstr ""
6656
 
6657
- #: languages/vue.php:1130
6658
  msgid "Settings Menu"
6659
  msgstr ""
6660
 
6661
- #: languages/vue.php:1133
6662
  msgid "Available in PRO version"
6663
  msgstr ""
6664
 
6665
- #: languages/vue.php:1136
6666
  msgid "See All Reports"
6667
  msgstr ""
6668
 
6669
- #: languages/vue.php:1139
6670
  msgid "Go to the Analytics Dashboard"
6671
  msgstr ""
6672
 
6673
- #: languages/vue.php:1154
6674
  msgid "Cart Funnel"
6675
  msgstr ""
6676
 
6677
- #: languages/vue.php:1157
6678
  msgid "Customer Insights"
6679
  msgstr ""
6680
 
6681
- #: languages/vue.php:1160
6682
  msgid "Campaign Measurement"
6683
  msgstr ""
6684
 
6685
- #: languages/vue.php:1163
6686
  msgid "Customer Profiles"
6687
  msgstr ""
6688
 
6689
- #: languages/vue.php:1166
6690
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6691
  msgstr ""
6692
 
6693
- #: languages/vue.php:1169
6694
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6695
  msgstr ""
6696
 
6697
- #: languages/vue.php:1172
6698
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6699
  msgstr ""
6700
 
6701
- #: languages/vue.php:1175
6702
  msgid "Track all-new metrics!"
6703
  msgstr ""
6704
 
6705
- #: languages/vue.php:1178
6706
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6707
  msgstr ""
6708
 
6709
- #: languages/vue.php:1181
6710
  msgid "FEATURES"
6711
  msgstr ""
6712
 
6713
- #: languages/vue.php:1184
6714
  msgid "Get The Unique Metrics Neccessary for Growth"
6715
  msgstr ""
6716
 
6717
- #: languages/vue.php:1187
6718
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6719
  msgstr ""
6720
 
6721
- #: languages/vue.php:1190
6722
  msgid "Get Answers to the important questions %1$syou should know."
6723
  msgstr ""
6724
 
6725
- #: languages/vue.php:1193
6726
  msgid "Did the login/registration step of the checkout put users off?"
6727
  msgstr ""
6728
 
6729
- #: languages/vue.php:1196
6730
  msgid "Which ad campaign is driving the most revenue?"
6731
  msgstr ""
6732
 
6733
- #: languages/vue.php:1199
6734
  msgid "Who is my typical customer?"
6735
  msgstr ""
6736
 
6737
- #: languages/vue.php:1202
6738
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6739
  msgstr ""
6740
 
6741
  #. Translators: Error status and error text.
6742
- #: languages/vue.php:1206
6743
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6744
  msgstr ""
6745
 
6746
  #. Translators: Error status and error text.
6747
- #: languages/vue.php:1210
6748
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6749
  msgstr ""
6750
 
6751
  #. Translators: Error status and error text.
6752
- #: languages/vue.php:1214
6753
  msgid "Can't load license details. Error: %1$s, %2$s"
6754
  msgstr ""
6755
 
6756
- #: languages/vue.php:1217
6757
  msgid "Error loading license details"
6758
  msgstr ""
6759
 
6760
  #. Translators: Error status and error text.
6761
- #: languages/vue.php:1221
6762
  msgid "Can't verify the license. Error: %1$s, %2$s"
6763
  msgstr ""
6764
 
6765
  #. Translators: Error status and error text.
6766
- #: languages/vue.php:1225
6767
  msgid "Can't validate the license. Error: %1$s, %2$s"
6768
  msgstr ""
6769
 
6770
- #: languages/vue.php:1228
6771
  msgid "Reset to default"
6772
  msgstr ""
6773
 
6774
- #: languages/vue.php:1231
6775
  msgid "The value entered does not match the required format"
6776
  msgstr ""
6777
 
6778
- #: languages/vue.php:1234
6779
  msgid "Check out the newly added classic mode"
6780
  msgstr ""
6781
 
6782
  #. Translators: Placeholder adds a line break.
6783
- #: languages/vue.php:1239
6784
  msgid "You can customize your %sdate range only in the PRO version."
6785
  msgstr ""
6786
 
6787
- #: languages/vue.php:1242
6788
  msgid "Help Us Improve"
6789
  msgstr ""
6790
 
6791
- #: languages/vue.php:1245
6792
  msgid "Help us better understand our users and their website needs."
6793
  msgstr ""
6794
 
6795
  #. Translators: Adds a link to the documentation.
6796
- #: languages/vue.php:1249
6797
  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"
6798
  msgstr ""
6799
 
6800
  #. Translators: The name of the field that is throwing a validation error.
6801
- #: languages/vue.php:1253
6802
  msgid "%s can't be empty."
6803
  msgstr ""
6804
 
6805
- #: languages/vue.php:1256
6806
  msgid "Duplicate values are not allowed."
6807
  msgstr ""
6808
 
6809
- #: languages/vue.php:1259
6810
  msgid "You can add maximum 5 items."
6811
  msgstr ""
6812
 
6813
- #: languages/vue.php:1262
6814
  msgid "At least 0 item required."
6815
  msgstr ""
6816
 
6817
- #: languages/vue.php:1265
6818
  msgid "Add Another Link Path"
6819
  msgstr ""
6820
 
6821
- #: languages/vue.php:1268
6822
  msgid "Remove row"
6823
  msgstr ""
6824
 
6825
- #: languages/vue.php:1271
6826
  msgid "Sessions"
6827
  msgstr ""
6828
 
6829
  #. Translators: Line break.
6830
- #: languages/vue.php:1275
6831
  msgid "Unique %s Sessions"
6832
  msgstr ""
6833
 
6834
- #: languages/vue.php:1279
6835
  msgid "Pageviews"
6836
  msgstr ""
6837
 
6838
  #. Translators: Line break.
6839
- #: languages/vue.php:1283
6840
  msgid "Unique %s Pageviews"
6841
  msgstr ""
6842
 
6843
- #: languages/vue.php:1286
6844
  msgid "A session is the browsing session of a single user to your site."
6845
  msgstr ""
6846
 
6847
- #: languages/vue.php:1289
6848
  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."
6849
  msgstr ""
6850
 
6851
- #: languages/vue.php:1292
6852
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6853
  msgstr ""
6854
 
6855
- #: languages/vue.php:1295
6856
  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."
6857
  msgstr ""
6858
 
6859
- #: languages/vue.php:1298
6860
  msgid "The number of distinct tracked users"
6861
  msgstr ""
6862
 
6863
- #: languages/vue.php:1301
6864
  msgid "Avg. Session Duration"
6865
  msgstr ""
6866
 
6867
- #: languages/vue.php:1307
6868
  msgid "Total Users"
6869
  msgstr ""
6870
 
6871
- #: languages/vue.php:1310
6872
  msgid "No options available"
6873
  msgstr ""
6874
 
6875
  #. Translators: Placeholders make the text highlighted.
6876
- #: languages/vue.php:1314
6877
  msgid "%1$sNeed%2$s to Grow FASTER??"
6878
  msgstr ""
6879
 
6880
- #: languages/vue.php:1317
6881
  msgid "Get additional, actionable insights by going Pro."
6882
  msgstr ""
6883
 
6884
- #: languages/vue.php:1320
6885
  msgid "Skip"
6886
  msgstr ""
6887
 
6888
- #: languages/vue.php:1323
6889
  msgid "See All Features"
6890
  msgstr ""
6891
 
6892
- #: languages/vue.php:1326
6893
  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."
6894
  msgstr ""
6895
 
6896
- #: languages/vue.php:1329
6897
  msgid "Our Pro plan includes:"
6898
  msgstr ""
6899
 
6900
  #. Translators: Error status and error text.
6901
- #: languages/vue.php:1333
6902
  msgid "Can't load errors. Error: %1$s, %2$s"
6903
  msgstr ""
6904
 
6905
- #: languages/vue.php:1336
6906
  msgid "Real-Time Report"
6907
  msgstr ""
6908
 
6909
- #: languages/vue.php:1339
6910
  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."
6911
  msgstr ""
6912
 
6913
  #. Translators: add link to blog.
6914
- #: languages/vue.php:1343
6915
  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."
6916
  msgstr ""
6917
 
6918
- #: languages/vue.php:1347
6919
  msgid "Here's what you get:"
6920
  msgstr ""
6921
 
6922
- #: languages/vue.php:1350
6923
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6924
  msgstr ""
6925
 
6926
- #: languages/vue.php:1353
6927
  msgid "See Your Top Pages Immediately After Making Changes"
6928
  msgstr ""
6929
 
6930
- #: languages/vue.php:1356
6931
  msgid "See Your Top Referral Sources and Adapt Faster"
6932
  msgstr ""
6933
 
6934
- #: languages/vue.php:1359
6935
  msgid "See Your Traffic Demographics"
6936
  msgstr ""
6937
 
6938
- #: languages/vue.php:1362
6939
  msgid "Get Fresh Report Data Every 60 Seconds"
6940
  msgstr ""
6941
 
6942
- #: languages/vue.php:1365
6943
  msgid "See Where Your Visitors are Connecting From (country & city)"
6944
  msgstr ""
6945
 
6946
- #: languages/vue.php:1369
6947
  msgid "Forms Report"
6948
  msgstr ""
6949
 
6950
- #: languages/vue.php:1372
6951
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6952
  msgstr ""
6953
 
6954
- #: languages/vue.php:1375
6955
  msgid "See Your Top Converting Forms and Optimize"
6956
  msgstr ""
6957
 
6958
- #: languages/vue.php:1378
6959
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6960
  msgstr ""
6961
 
6962
- #: languages/vue.php:1381
6963
  msgid "Awesome, You're All Set!"
6964
  msgstr ""
6965
 
6966
- #: languages/vue.php:1384
6967
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6968
  msgstr ""
6969
 
6970
  #. Translators: Make text bold.
6971
- #: languages/vue.php:1388
6972
  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."
6973
  msgstr ""
6974
 
6975
  #. Translators: Add link to blog.
6976
  #. Translators: Link to our blog.
6977
- #: languages/vue.php:1392
6978
- #: languages/vue.php:3595
6979
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6980
  msgstr ""
6981
 
6982
- #: languages/vue.php:1395
6983
  msgid "Finish Setup & Exit Wizard"
6984
  msgstr ""
6985
 
6986
- #: languages/vue.php:1398
6987
  msgid "Google Analytics"
6988
  msgstr ""
6989
 
6990
- #: languages/vue.php:1401
6991
  msgid "Subscribe"
6992
  msgstr ""
6993
 
6994
- #: languages/vue.php:1404
6995
  msgid "Checking your website..."
6996
  msgstr ""
6997
 
6998
- #: languages/vue.php:1407
6999
  msgid "Recommended Addons"
7000
  msgstr ""
7001
 
7002
  #. Translators: Add a link to upgrade and make the text green.
7003
- #: languages/vue.php:1411
7004
  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!"
7005
  msgstr ""
7006
 
7007
- #: languages/vue.php:1414
7008
  msgid "Upgrade to PRO Now"
7009
  msgstr ""
7010
 
7011
- #: languages/vue.php:1417
7012
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
7013
  msgstr ""
7014
 
7015
- #: languages/vue.php:1420
7016
  msgid "See All Your Important Store Metrics in One Place."
7017
  msgstr ""
7018
 
7019
- #: languages/vue.php:1423
7020
  msgid "... and more:"
7021
  msgstr ""
7022
 
7023
- #: languages/vue.php:1426
7024
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
7025
  msgstr ""
7026
 
7027
- #: languages/vue.php:1429
7028
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
7029
  msgstr ""
7030
 
7031
- #: languages/vue.php:1432
7032
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
7033
  msgstr ""
7034
 
7035
- #: languages/vue.php:1435
7036
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
7037
  msgstr ""
7038
 
7039
- #: languages/vue.php:1438
7040
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
7041
  msgstr ""
7042
 
7043
- #: languages/vue.php:1441
7044
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
7045
  msgstr ""
7046
 
7047
- #: languages/vue.php:1444
7048
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
7049
  msgstr ""
7050
 
7051
- #: languages/vue.php:1447
7052
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
7053
  msgstr ""
7054
 
7055
- #: languages/vue.php:1450
7056
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
7057
  msgstr ""
7058
 
7059
- #: languages/vue.php:1453
7060
  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."
7061
  msgstr ""
7062
 
7063
- #: languages/vue.php:1456
7064
  msgid "The ExactMetrics Team"
7065
  msgstr ""
7066
 
7067
- #: languages/vue.php:1459
7068
  msgid "Custom Dimensions Report"
7069
  msgstr ""
7070
 
7071
- #: languages/vue.php:1462
7072
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7073
  msgstr ""
7074
 
7075
- #: languages/vue.php:1465
7076
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7077
  msgstr ""
7078
 
7079
- #: languages/vue.php:1468
7080
  msgid "Author tracking to see which author’s posts generate the most traffic"
7081
  msgstr ""
7082
 
7083
- #: languages/vue.php:1471
7084
  msgid "Post Type tracking to see which WordPress post types perform better"
7085
  msgstr ""
7086
 
7087
- #: languages/vue.php:1474
7088
  msgid "Category tracking to see which sections of your sites are the most popular"
7089
  msgstr ""
7090
 
7091
- #: languages/vue.php:1477
7092
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7093
  msgstr ""
7094
 
7095
- #: languages/vue.php:1480
7096
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7097
  msgstr ""
7098
 
7099
- #: languages/vue.php:1483
7100
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7101
  msgstr ""
7102
 
7103
  #. Translators: add link to blog.
7104
- #: languages/vue.php:1487
7105
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
7106
  msgstr ""
7107
 
7108
- #: languages/vue.php:1490
7109
  msgid "See Your Homepage's Overall Performance Score"
7110
  msgstr ""
7111
 
7112
- #: languages/vue.php:1493
7113
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7114
  msgstr ""
7115
 
7116
- #: languages/vue.php:1496
7117
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7118
  msgstr ""
7119
 
7120
- #: languages/vue.php:1499
7121
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7122
  msgstr ""
7123
 
7124
- #: languages/vue.php:1502
7125
  msgid "Hide dashboard widget"
7126
  msgstr ""
7127
 
7128
- #: languages/vue.php:1505
7129
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7130
  msgstr ""
7131
 
7132
- #: languages/vue.php:1508
7133
  msgid "Yes, hide it!"
7134
  msgstr ""
7135
 
7136
- #: languages/vue.php:1511
7137
  msgid "No, cancel!"
7138
  msgstr ""
7139
 
7140
- #: languages/vue.php:1514
7141
  msgid "ExactMetrics Widget Hidden"
7142
  msgstr ""
7143
 
7144
- #: languages/vue.php:1517
7145
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7146
  msgstr ""
7147
 
7148
  #. Translators: Error status and error text.
7149
- #: languages/vue.php:1521
7150
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7151
  msgstr ""
7152
 
7153
  #. Translators: Error status and error text.
7154
- #: languages/vue.php:1525
7155
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7156
  msgstr ""
7157
 
7158
- #: languages/vue.php:1528
7159
  msgid "You appear to be offline. Settings not saved."
7160
  msgstr ""
7161
 
7162
  #. Translators: Error status and error text.
7163
- #: languages/vue.php:1532
7164
  msgid "Can't authenticate. Error: %1$s, %2$s"
7165
  msgstr ""
7166
 
7167
  #. Translators: Error status and error text.
7168
- #: languages/vue.php:1536
7169
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7170
  msgstr ""
7171
 
7172
  #. Translators: Error status and error text.
7173
- #: languages/vue.php:1540
7174
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7175
  msgstr ""
7176
 
7177
- #: languages/vue.php:1543
7178
  msgid "Still Calculating..."
7179
  msgstr ""
7180
 
7181
- #: languages/vue.php:1546
7182
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7183
  msgstr ""
7184
 
7185
- #: languages/vue.php:1549
7186
  msgid "Back to Overview Report"
7187
  msgstr ""
7188
 
7189
- #: languages/vue.php:1552
7190
  msgid "Your 2020 Analytics Report"
7191
  msgstr ""
7192
 
7193
- #: languages/vue.php:1555
7194
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7195
  msgstr ""
7196
 
7197
- #: languages/vue.php:1558
7198
  msgid "Audience"
7199
  msgstr ""
7200
 
7201
- #: languages/vue.php:1561
7202
  msgid "Congrats"
7203
  msgstr ""
7204
 
7205
- #: languages/vue.php:1564
7206
  msgid "Your website was quite popular this year! "
7207
  msgstr ""
7208
 
7209
- #: languages/vue.php:1567
7210
  msgid "You had "
7211
  msgstr ""
7212
 
7213
- #: languages/vue.php:1570
7214
  msgid " visitors!"
7215
  msgstr ""
7216
 
7217
- #: languages/vue.php:1573
7218
  msgid " visitors"
7219
  msgstr ""
7220
 
7221
- #: languages/vue.php:1576
7222
  msgid "Total Visitors"
7223
  msgstr ""
7224
 
7225
- #: languages/vue.php:1579
7226
  msgid "Total Sessions"
7227
  msgstr ""
7228
 
7229
- #: languages/vue.php:1582
7230
  msgid "Visitors by Month"
7231
  msgstr ""
7232
 
7233
- #: languages/vue.php:1585
7234
  msgid "January 1, 2020 - December 31, 2020"
7235
  msgstr ""
7236
 
7237
- #: languages/vue.php:1588
7238
  msgid "A Tip for 2021"
7239
  msgstr ""
7240
 
7241
- #: languages/vue.php:1591
7242
  msgid "Demographics"
7243
  msgstr ""
7244
 
7245
- #: languages/vue.php:1594
7246
  msgid "#1"
7247
  msgstr ""
7248
 
7249
- #: languages/vue.php:1597
7250
  msgid "You Top 5 Countries"
7251
  msgstr ""
7252
 
7253
- #: languages/vue.php:1600
7254
  msgid "Let’s get to know your visitors a little better, shall we?"
7255
  msgstr ""
7256
 
7257
- #: languages/vue.php:1603
7258
  msgid "Gender"
7259
  msgstr ""
7260
 
7261
- #: languages/vue.php:1606
7262
  msgid "Female"
7263
  msgstr ""
7264
 
7265
- #: languages/vue.php:1609
7266
  msgid "Women"
7267
  msgstr ""
7268
 
7269
- #: languages/vue.php:1612
7270
  msgid "Male"
7271
  msgstr ""
7272
 
7273
- #: languages/vue.php:1615
7274
  msgid "Average Age"
7275
  msgstr ""
7276
 
7277
- #: languages/vue.php:1618
7278
  msgid "Behavior"
7279
  msgstr ""
7280
 
7281
- #: languages/vue.php:1621
7282
  msgid "Your Top 5 Pages"
7283
  msgstr ""
7284
 
7285
- #: languages/vue.php:1624
7286
  msgid "Time Spent on Site"
7287
  msgstr ""
7288
 
7289
- #: languages/vue.php:1627
7290
  msgid "minutes"
7291
  msgstr ""
7292
 
7293
- #: languages/vue.php:1630
7294
  msgid "Device Type"
7295
  msgstr ""
7296
 
7297
- #: languages/vue.php:1633
7298
  msgid "A Tip For 2021"
7299
  msgstr ""
7300
 
7301
- #: languages/vue.php:1636
7302
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7303
  msgstr ""
7304
 
7305
- #: languages/vue.php:1639
7306
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7307
  msgstr ""
7308
 
7309
- #: languages/vue.php:1642
7310
  msgid "So, where did all of these visitors come from?"
7311
  msgstr ""
7312
 
7313
- #: languages/vue.php:1645
7314
  msgid "Clicks"
7315
  msgstr ""
7316
 
7317
- #: languages/vue.php:1648
7318
  msgid "Your Top 5 Keywords"
7319
  msgstr ""
7320
 
7321
- #: languages/vue.php:1651
7322
  msgid "What keywords visitors searched for to find your site"
7323
  msgstr ""
7324
 
7325
- #: languages/vue.php:1654
7326
  msgid "Your Top 5 Referrals"
7327
  msgstr ""
7328
 
7329
- #: languages/vue.php:1657
7330
  msgid "The websites that link back to your website"
7331
  msgstr ""
7332
 
7333
- #: languages/vue.php:1660
7334
  msgid "Opportunity"
7335
  msgstr ""
7336
 
7337
- #: languages/vue.php:1663
7338
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7339
  msgstr ""
7340
 
7341
- #: languages/vue.php:1666
7342
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7343
  msgstr ""
7344
 
7345
- #: languages/vue.php:1669
7346
  msgid "Thank you for using ExactMetrics!"
7347
  msgstr ""
7348
 
7349
- #: languages/vue.php:1672
7350
  msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
7351
  msgstr ""
7352
 
7353
- #: languages/vue.php:1675
7354
  msgid "Here's to an amazing 2021!"
7355
  msgstr ""
7356
 
7357
- #: languages/vue.php:1678
7358
  msgid "Enjoying ExactMetrics"
7359
  msgstr ""
7360
 
7361
- #: languages/vue.php:1681
7362
  msgid "Leave a five star review!"
7363
  msgstr ""
7364
 
7365
- #: languages/vue.php:1684
7366
  msgid "Syed Balkhi"
7367
  msgstr ""
7368
 
7369
- #: languages/vue.php:1687
7370
  msgid "Chris Christoff"
7371
  msgstr ""
7372
 
7373
- #: languages/vue.php:1690
7374
  msgid "Write Review"
7375
  msgstr ""
7376
 
7377
- #: languages/vue.php:1693
7378
  msgid "Did you know over 10 million websites use our plugins?"
7379
  msgstr ""
7380
 
7381
- #: languages/vue.php:1696
7382
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7383
  msgstr ""
7384
 
7385
- #: languages/vue.php:1699
7386
  msgid "Join our Communities!"
7387
  msgstr ""
7388
 
7389
- #: languages/vue.php:1702
7390
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7391
  msgstr ""
7392
 
7393
- #: languages/vue.php:1705
7394
  msgid "Facebook Group"
7395
  msgstr ""
7396
 
7397
- #: languages/vue.php:1708
7398
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7399
  msgstr ""
7400
 
7401
- #: languages/vue.php:1711
7402
  msgid "Join Now...It’s Free!"
7403
  msgstr ""
7404
 
7405
- #: languages/vue.php:1714
7406
  msgid "WordPress Tutorials by WPBeginner"
7407
  msgstr ""
7408
 
7409
- #: languages/vue.php:1717
7410
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7411
  msgstr ""
7412
 
7413
- #: languages/vue.php:1720
7414
  msgid "Visit WPBeginner"
7415
  msgstr ""
7416
 
7417
- #: languages/vue.php:1723
7418
  msgid "Follow Us!"
7419
  msgstr ""
7420
 
7421
- #: languages/vue.php:1726
7422
  msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7423
  msgstr ""
7424
 
7425
- #: languages/vue.php:1729
7426
  msgid "Copyright ExactMetrics, 2021"
7427
  msgstr ""
7428
 
7429
- #: languages/vue.php:1732
7430
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7431
  msgstr ""
7432
 
7433
- #: languages/vue.php:1738
7434
  msgid "January"
7435
  msgstr ""
7436
 
7437
- #: languages/vue.php:1741
7438
  msgid "February"
7439
  msgstr ""
7440
 
7441
- #: languages/vue.php:1744
7442
  msgid "March"
7443
  msgstr ""
7444
 
7445
- #: languages/vue.php:1747
7446
  msgid "April"
7447
  msgstr ""
7448
 
7449
- #: languages/vue.php:1750
7450
  msgid "May"
7451
  msgstr ""
7452
 
7453
- #: languages/vue.php:1753
7454
  msgid "June"
7455
  msgstr ""
7456
 
7457
- #: languages/vue.php:1756
7458
  msgid "July"
7459
  msgstr ""
7460
 
7461
- #: languages/vue.php:1759
7462
  msgid "August"
7463
  msgstr ""
7464
 
7465
- #: languages/vue.php:1762
7466
  msgid "September"
7467
  msgstr ""
7468
 
7469
- #: languages/vue.php:1765
7470
  msgid "October"
7471
  msgstr ""
7472
 
7473
- #: languages/vue.php:1768
7474
  msgid "November"
7475
  msgstr ""
7476
 
7477
- #: languages/vue.php:1771
7478
  msgid "December"
7479
  msgstr ""
7480
 
7481
  #. Translators: Number of visitors.
7482
- #: languages/vue.php:1775
7483
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7484
  msgstr ""
7485
 
7486
- #: languages/vue.php:1778
7487
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7488
  msgstr ""
7489
 
7490
  #. Translators: Number of visitors.
7491
- #: languages/vue.php:1782
7492
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7493
  msgstr ""
7494
 
7495
  #. Translators: Number of visitors.
7496
- #: languages/vue.php:1786
7497
  msgid "%s Visitors"
7498
  msgstr ""
7499
 
7500
  #. Translators: Percent and Number of visitors.
7501
- #: languages/vue.php:1790
7502
  msgid "%1$s&#37 of your visitors were %2$s"
7503
  msgstr ""
7504
 
7505
  #. Translators: Number of visitors and their age.
7506
- #: languages/vue.php:1794
7507
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7508
  msgstr ""
7509
 
7510
- #: languages/vue.php:1797
7511
  msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
7512
  msgstr ""
7513
 
7514
  #. Translators: Number of minutes spent on site.
7515
- #: languages/vue.php:1801
7516
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7517
  msgstr ""
7518
 
7519
  #. Translators: Name of device type.
7520
- #: languages/vue.php:1805
7521
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7522
  msgstr ""
7523
 
7524
  #. Translators: Number of visitors and device percentage.
7525
- #: languages/vue.php:1809
7526
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7527
  msgstr ""
7528
 
7529
- #: languages/vue.php:1813
7530
  msgid "Desktop"
7531
  msgstr ""
7532
 
7533
- #: languages/vue.php:1817
7534
  msgid "Tablet"
7535
  msgstr ""
7536
 
7537
- #: languages/vue.php:1821
7538
  msgid "Mobile"
7539
  msgstr ""
7540
 
7541
- #: languages/vue.php:1824
7542
  msgid "Force Deauthenticate"
7543
  msgstr ""
7544
 
7545
- #: languages/vue.php:1827
7546
  msgid "Disconnect ExactMetrics"
7547
  msgstr ""
7548
 
7549
- #: languages/vue.php:1830
7550
  msgid "Authenticating"
7551
  msgstr ""
7552
 
7553
- #: languages/vue.php:1833
7554
  msgid "Verifying Credentials"
7555
  msgstr ""
7556
 
7557
- #: languages/vue.php:1836
7558
  msgid "Your site is connected to ExactMetrics!"
7559
  msgstr ""
7560
 
7561
- #: languages/vue.php:1839
7562
  msgid "Deauthenticating"
7563
  msgstr ""
7564
 
7565
- #: languages/vue.php:1842
7566
  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."
7567
  msgstr ""
7568
 
7569
- #: languages/vue.php:1845
7570
- #: languages/vue.php:1917
7571
  msgid "Connect ExactMetrics"
7572
  msgstr ""
7573
 
7574
- #: languages/vue.php:1848
7575
  msgid "Verify Credentials"
7576
  msgstr ""
7577
 
7578
- #: languages/vue.php:1854
7579
  msgid "Website Profile"
7580
  msgstr ""
7581
 
7582
- #: languages/vue.php:1857
7583
  msgid "Active Profile"
7584
  msgstr ""
7585
 
7586
- #: languages/vue.php:1860
7587
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7588
  msgstr ""
7589
 
7590
- #: languages/vue.php:1863
7591
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7592
  msgstr ""
7593
 
7594
- #: languages/vue.php:1866
7595
  msgid "Dual Tracking Profile"
7596
  msgstr ""
7597
 
7598
- #: languages/vue.php:1869
7599
  msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
7600
  msgstr ""
7601
 
7602
- #: languages/vue.php:1872
7603
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7604
  msgstr ""
7605
 
7606
- #: languages/vue.php:1875
7607
  msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
7608
  msgstr ""
7609
 
7610
- #: languages/vue.php:1878
7611
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7612
  msgstr ""
7613
 
7614
- #: languages/vue.php:1881
7615
  msgid "Measurement Protocol API Secret"
7616
  msgstr ""
7617
 
7618
- #: languages/vue.php:1884
7619
  msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
7620
  msgstr ""
7621
 
7622
- #: languages/vue.php:1887
7623
  msgid "Classic mode"
7624
  msgstr ""
7625
 
7626
- #: languages/vue.php:1890
7627
  msgid "Proceed"
7628
  msgstr ""
7629
 
7630
- #: languages/vue.php:1893
7631
  msgid "Connection Information"
7632
  msgstr ""
7633
 
7634
- #: languages/vue.php:1896
7635
  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."
7636
  msgstr ""
7637
 
7638
- #: languages/vue.php:1899
7639
  msgid "Hostname"
7640
  msgstr ""
7641
 
7642
- #: languages/vue.php:1902
7643
  msgid "FTP Username"
7644
  msgstr ""
7645
 
7646
- #: languages/vue.php:1905
7647
  msgid "FTP Password"
7648
  msgstr ""
7649
 
7650
- #: languages/vue.php:1908
7651
  msgid "This password will not be stored on the server."
7652
  msgstr ""
7653
 
7654
- #: languages/vue.php:1911
7655
  msgid "Connection Type"
7656
  msgstr ""
7657
 
7658
- #: languages/vue.php:1914
7659
  msgid "Cancel"
7660
  msgstr ""
7661
 
7662
- #: languages/vue.php:1920
7663
  msgid "Website profile"
7664
  msgstr ""
7665
 
7666
- #: languages/vue.php:1923
7667
  msgid "Active profile"
7668
  msgstr ""
7669
 
7670
- #: languages/vue.php:1926
7671
  msgid "Skip and Keep Connection"
7672
  msgstr ""
7673
 
7674
  #. Translators: Replaced with the number of days
7675
- #: languages/vue.php:1930
7676
  msgid "vs. Previous Day"
7677
  msgstr ""
7678
 
7679
- #: languages/vue.php:1933
7680
  msgid "No change"
7681
  msgstr ""
7682
 
7683
- #: languages/vue.php:1936
7684
  msgid "Choose Theme"
7685
  msgstr ""
7686
 
7687
- #: languages/vue.php:1939
7688
  msgid "Widget Styling"
7689
  msgstr ""
7690
 
7691
- #: languages/vue.php:1942
7692
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7693
  msgstr ""
7694
 
7695
- #: languages/vue.php:1945
7696
  msgid "Sort By"
7697
  msgstr ""
7698
 
7699
- #: languages/vue.php:1948
7700
  msgid "Choose how you'd like the widget to determine your popular posts."
7701
  msgstr ""
7702
 
7703
- #: languages/vue.php:1951
7704
  msgid "Display Title"
7705
  msgstr ""
7706
 
7707
- #: languages/vue.php:1957
7708
  msgid "Title your widget and set its display preferences."
7709
  msgstr ""
7710
 
7711
- #: languages/vue.php:1960
7712
  msgid "Include in Post Types"
7713
  msgstr ""
7714
 
7715
- #: languages/vue.php:1963
7716
  msgid "Exclude from specific posts"
7717
  msgstr ""
7718
 
7719
  #. Translators: Placeholders make the text bold.
7720
- #: languages/vue.php:1967
7721
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7722
  msgstr ""
7723
 
7724
  #. Translators: Placeholders make the text bold.
7725
- #: languages/vue.php:1971
7726
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7727
  msgstr ""
7728
 
7729
- #: languages/vue.php:1974
7730
  msgid "Loading Themes"
7731
  msgstr ""
7732
 
7733
  #. Translators: placeholders make text small.
7734
- #: languages/vue.php:1978
7735
  msgid "Default Styles %1$s- As seen above.%2$s"
7736
  msgstr ""
7737
 
7738
  #. Translators: placeholders make text small.
7739
- #: languages/vue.php:1982
7740
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7741
  msgstr ""
7742
 
7743
  #. Translators: placeholders make text small.
7744
- #: languages/vue.php:1986
7745
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7746
  msgstr ""
7747
 
7748
  #. Translators: placeholders make text small.
7749
- #: languages/vue.php:1990
7750
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7751
  msgstr ""
7752
 
7753
  #. Translators: placeholders make text small.
7754
- #: languages/vue.php:1994
7755
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7756
  msgstr ""
7757
 
7758
- #: languages/vue.php:1997
7759
  msgid "Placement"
7760
  msgstr ""
7761
 
7762
- #: languages/vue.php:2000
7763
  msgid "Choose how you'd like to place the widget."
7764
  msgstr ""
7765
 
7766
- #: languages/vue.php:2003
7767
  msgid "Insert After"
7768
  msgstr ""
7769
 
7770
- #: languages/vue.php:2006
7771
  msgid "Choose where in the post body the widget will be placed."
7772
  msgstr ""
7773
 
7774
- #: languages/vue.php:2009
7775
  msgid "Customize Design"
7776
  msgstr ""
7777
 
7778
- #: languages/vue.php:2012
7779
  msgid "words"
7780
  msgstr ""
7781
 
7782
- #: languages/vue.php:2015
7783
  msgid "Please select at least one post to display."
7784
  msgstr ""
7785
 
7786
  #. Translators: placeholders make text small.
7787
- #: languages/vue.php:2019
7788
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7789
  msgstr ""
7790
 
7791
  #. Translators: placeholders make text small.
7792
- #: languages/vue.php:2023
7793
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7794
  msgstr ""
7795
 
7796
- #: languages/vue.php:2026
7797
  msgid "Caching"
7798
  msgstr ""
7799
 
7800
- #: languages/vue.php:2029
7801
  msgid "Enable Data Caching"
7802
  msgstr ""
7803
 
7804
- #: languages/vue.php:2032
7805
  msgid "Refresh Cache Every"
7806
  msgstr ""
7807
 
7808
- #: languages/vue.php:2035
7809
  msgid "Choose how often to refresh the cache."
7810
  msgstr ""
7811
 
7812
- #: languages/vue.php:2038
7813
  msgid "Enable Ajaxify"
7814
  msgstr ""
7815
 
7816
- #: languages/vue.php:2041
7817
  msgid "Ajaxify Widget"
7818
  msgstr ""
7819
 
7820
- #: languages/vue.php:2044
7821
  msgid "Use to bypass page caching."
7822
  msgstr ""
7823
 
7824
- #: languages/vue.php:2047
7825
  msgid "Empty Cache"
7826
  msgstr ""
7827
 
7828
- #: languages/vue.php:2050
7829
  msgid "Click to manually wipe the cache right now."
7830
  msgstr ""
7831
 
7832
- #: languages/vue.php:2053
7833
  msgid "Popular posts cache emptied"
7834
  msgstr ""
7835
 
7836
- #: languages/vue.php:2056
7837
  msgid "Error emptying the popular posts cache. Please try again."
7838
  msgstr ""
7839
 
7840
- #: languages/vue.php:2059
7841
  msgid "Last 30 Days Analytics for "
7842
  msgstr ""
7843
 
7844
- #: languages/vue.php:2062
7845
  msgid "Your Website"
7846
  msgstr ""
7847
 
7848
- #: languages/vue.php:2065
7849
  msgid "Avg. Duration"
7850
  msgstr ""
7851
 
7852
- #: languages/vue.php:2068
7853
  msgid "More data is available"
7854
  msgstr ""
7855
 
7856
- #: languages/vue.php:2071
7857
  msgid "Want to see page-specific stats?"
7858
  msgstr ""
7859
 
7860
- #: languages/vue.php:2074
7861
  msgid "You appear to be offline. WPForms not installed."
7862
  msgstr ""
7863
 
7864
  #. Translators: Error status and error text.
7865
- #: languages/vue.php:2078
7866
  msgid "Can't activate addon. Error: %1$s, %2$s"
7867
  msgstr ""
7868
 
7869
- #: languages/vue.php:2081
7870
  msgid "You appear to be offline. Addon not activated."
7871
  msgstr ""
7872
 
7873
  #. Translators: Error status and error text.
7874
- #: languages/vue.php:2085
7875
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7876
  msgstr ""
7877
 
7878
- #: languages/vue.php:2088
7879
  msgid "You appear to be offline. Addon not deactivated."
7880
  msgstr ""
7881
 
7882
  #. Translators: Error status and error text.
7883
- #: languages/vue.php:2092
7884
  msgid "Can't install plugin. Error: %1$s, %2$s"
7885
  msgstr ""
7886
 
7887
- #: languages/vue.php:2095
7888
  msgid "You appear to be offline. Plugin not installed."
7889
  msgstr ""
7890
 
7891
  #. Translators: Error status and error text.
7892
- #: languages/vue.php:2099
7893
  msgid "Can't install addon. Error: %1$s, %2$s"
7894
  msgstr ""
7895
 
7896
- #: languages/vue.php:2102
7897
  msgid "You appear to be offline. Addon not installed."
7898
  msgstr ""
7899
 
7900
  #. Translators: Error status and error text.
7901
- #: languages/vue.php:2106
7902
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7903
  msgstr ""
7904
 
7905
- #: languages/vue.php:2109
7906
  msgid "Network Active"
7907
  msgstr ""
7908
 
7909
- #: languages/vue.php:2112
7910
  msgid "Active"
7911
  msgstr ""
7912
 
7913
- #: languages/vue.php:2115
7914
  msgid "Inactive"
7915
  msgstr ""
7916
 
7917
  #. Translators: Placeholder for the addon status (installed, active, etc).
7918
- #: languages/vue.php:2119
7919
  msgid "Status: %s"
7920
  msgstr ""
7921
 
7922
- #: languages/vue.php:2122
7923
  msgid "Not Installed"
7924
  msgstr ""
7925
 
7926
  #. Translators: Makes text bold and adds smiley.
7927
- #: languages/vue.php:2126
7928
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7929
  msgstr ""
7930
 
7931
  #. Translators: Makes text green.
7932
- #: languages/vue.php:2130
7933
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
7934
  msgstr ""
7935
 
7936
- #: languages/vue.php:2133
7937
  msgid "Unlock All Features and Upgrade to Pro"
7938
  msgstr ""
7939
 
7940
  #. Translators: Make text green and add smiley face.
7941
- #: languages/vue.php:2137
7942
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7943
  msgstr ""
7944
 
7945
  #. Translators: Make text green.
7946
- #: languages/vue.php:2141
7947
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7948
  msgstr ""
7949
 
7950
- #: languages/vue.php:2144
7951
  msgid "Unlock PRO Features Now"
7952
  msgstr ""
7953
 
7954
- #: languages/vue.php:2149
7955
  msgid "Paste your license key here"
7956
  msgstr ""
7957
 
7958
- #: languages/vue.php:2154
7959
  msgid "Verify"
7960
  msgstr ""
7961
 
7962
  #. Translators: Add link to retrieve license from account area.
7963
- #: languages/vue.php:2158
7964
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7965
  msgstr ""
7966
 
7967
- #: languages/vue.php:2162
7968
- #: languages/vue.php:3632
7969
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7970
  msgstr ""
7971
 
7972
- #: languages/vue.php:2165
7973
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7974
  msgstr ""
7975
 
7976
- #: languages/vue.php:2168
7977
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7978
  msgstr ""
7979
 
7980
- #: languages/vue.php:2171
7981
  msgid "1,938"
7982
  msgstr ""
7983
 
7984
- #: languages/vue.php:2174
7985
  msgid "2+ Million Active Installs"
7986
  msgstr ""
7987
 
7988
- #: languages/vue.php:2177
7989
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
7990
  msgstr ""
7991
 
7992
- #: languages/vue.php:2180
7993
  msgid "Set up the proper SEO foundations in less than 10 minutes."
7994
  msgstr ""
7995
 
7996
- #: languages/vue.php:2183
7997
  msgid "SEO Audit Checklist"
7998
  msgstr ""
7999
 
8000
- #: languages/vue.php:2186
8001
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8002
  msgstr ""
8003
 
8004
- #: languages/vue.php:2189
8005
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8006
  msgstr ""
8007
 
8008
- #: languages/vue.php:2192
8009
  msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
8010
  msgstr ""
8011
 
8012
- #: languages/vue.php:2195
8013
  msgid "Get AIOSEO for WordPress"
8014
  msgstr ""
8015
 
8016
- #: languages/vue.php:2198
8017
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8018
  msgstr ""
8019
 
8020
- #: languages/vue.php:2201
8021
  msgid "Try it out today, for free."
8022
  msgstr ""
8023
 
8024
- #: languages/vue.php:2204
8025
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8026
  msgstr ""
8027
 
8028
- #: languages/vue.php:2207
8029
  msgid "Activate and Install the Plugin with just one click!"
8030
  msgstr ""
8031
 
8032
- #: languages/vue.php:2210
8033
  msgid "Installing AIOSEO..."
8034
  msgstr ""
8035
 
8036
- #: languages/vue.php:2213
8037
  msgid "Congrats! All-in-One SEO Installed."
8038
  msgstr ""
8039
 
8040
- #: languages/vue.php:2216
8041
  msgid "Switch to AIOSEO"
8042
  msgstr ""
8043
 
8044
- #: languages/vue.php:2219
8045
  msgid "Installation Failed. Please refresh and try again."
8046
  msgstr ""
8047
 
8048
- #: languages/vue.php:2222
8049
  msgid "Activating AIOSEO..."
8050
  msgstr ""
8051
 
8052
- #: languages/vue.php:2225
8053
  msgid "Activate AIOSEO"
8054
  msgstr ""
8055
 
8056
- #: languages/vue.php:2228
8057
  msgid "Activation Failed. Please refresh and try again."
8058
  msgstr ""
8059
 
8060
- #: languages/vue.php:2231
8061
  msgid "Unlock Form Tracking"
8062
  msgstr ""
8063
 
8064
- #: languages/vue.php:2234
8065
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
8066
  msgstr ""
8067
 
8068
- #: languages/vue.php:2237
8069
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
8070
  msgstr ""
8071
 
8072
- #: languages/vue.php:2240
8073
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
8074
  msgstr ""
8075
 
8076
- #: languages/vue.php:2243
8077
  msgid "Show"
8078
  msgstr ""
8079
 
8080
- #: languages/vue.php:2246
8081
  msgid "File imported"
8082
  msgstr ""
8083
 
8084
- #: languages/vue.php:2249
8085
  msgid "Settings successfully updated!"
8086
  msgstr ""
8087
 
8088
- #: languages/vue.php:2252
8089
  msgid "Error importing settings"
8090
  msgstr ""
8091
 
8092
- #: languages/vue.php:2255
8093
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
8094
  msgstr ""
8095
 
8096
- #: languages/vue.php:2258
8097
  msgid "Import/Export"
8098
  msgstr ""
8099
 
8100
- #: languages/vue.php:2261
8101
  msgid "Import"
8102
  msgstr ""
8103
 
8104
- #: languages/vue.php:2264
8105
  msgid "Import settings from another ExactMetrics website."
8106
  msgstr ""
8107
 
8108
- #: languages/vue.php:2267
8109
  msgid "Export"
8110
  msgstr ""
8111
 
8112
- #: languages/vue.php:2270
8113
  msgid "Export settings to import into another ExactMetrics install."
8114
  msgstr ""
8115
 
8116
- #: languages/vue.php:2273
8117
  msgid "Import Settings"
8118
  msgstr ""
8119
 
8120
- #: languages/vue.php:2276
8121
  msgid "Export Settings"
8122
  msgstr ""
8123
 
8124
- #: languages/vue.php:2279
8125
  msgid "Please choose a file to import"
8126
  msgstr ""
8127
 
8128
- #: languages/vue.php:2282
8129
  msgid "Click Choose file below to select the settings export file from another site."
8130
  msgstr ""
8131
 
8132
- #: languages/vue.php:2285
8133
  msgid "Use the button below to export a file with your ExactMetrics settings."
8134
  msgstr ""
8135
 
8136
- #: languages/vue.php:2288
8137
  msgid "Choose file"
8138
  msgstr ""
8139
 
8140
- #: languages/vue.php:2291
8141
  msgid "No file chosen"
8142
  msgstr ""
8143
 
8144
- #: languages/vue.php:2294
8145
  msgid "Uploading file..."
8146
  msgstr ""
8147
 
8148
- #: languages/vue.php:2297
8149
  msgid "Custom code"
8150
  msgstr ""
8151
 
8152
  #. Translators: Adds a link to the Google reference.
8153
- #: languages/vue.php:2301
8154
  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."
8155
  msgstr ""
8156
 
8157
- #: languages/vue.php:2307
8158
  msgid "Automatic Updates"
8159
  msgstr ""
8160
 
8161
- #: languages/vue.php:2310
8162
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8163
  msgstr ""
8164
 
8165
- #: languages/vue.php:2313
8166
  msgid "Hide Admin Bar Reports"
8167
  msgstr ""
8168
 
8169
  #. Translators: placeholders make text small.
8170
- #: languages/vue.php:2317
8171
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8172
  msgstr ""
8173
 
8174
  #. Translators: placeholders make text small.
8175
- #: languages/vue.php:2321
8176
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8177
  msgstr ""
8178
 
8179
  #. Translators: placeholders make text small.
8180
- #: languages/vue.php:2325
8181
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8182
  msgstr ""
8183
 
8184
  #. Translators: placeholders make text small.
8185
- #: languages/vue.php:2329
8186
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8187
  msgstr ""
8188
 
8189
  #. Translators: placeholders make text small.
8190
- #: languages/vue.php:2333
8191
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8192
  msgstr ""
8193
 
8194
  #. Translators: placeholders make text small.
8195
- #: languages/vue.php:2337
8196
  msgid "None %1$s- Manually update everything.%2$s"
8197
  msgstr ""
8198
 
8199
  #. Translators: Adds a link to the general settings tab.
8200
- #: languages/vue.php:2341
8201
  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."
8202
  msgstr ""
8203
 
8204
- #: languages/vue.php:2344
8205
  msgid "Permissions"
8206
  msgstr ""
8207
 
8208
- #: languages/vue.php:2347
8209
  msgid "Export PDF Reports"
8210
  msgstr ""
8211
 
8212
- #: languages/vue.php:2350
8213
  msgid "Allow These User Roles to See Reports"
8214
  msgstr ""
8215
 
8216
- #: languages/vue.php:2353
8217
  msgid "Users that have at least one of these roles will be able to view the reports."
8218
  msgstr ""
8219
 
8220
- #: languages/vue.php:2356
8221
  msgid "Allow These User Roles to Save Settings"
8222
  msgstr ""
8223
 
8224
- #: languages/vue.php:2359
8225
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8226
  msgstr ""
8227
 
8228
- #: languages/vue.php:2362
8229
  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."
8230
  msgstr ""
8231
 
8232
- #: languages/vue.php:2365
8233
  msgid "Exclude These User Roles From Tracking"
8234
  msgstr ""
8235
 
8236
- #: languages/vue.php:2368
8237
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8238
  msgstr ""
8239
 
8240
- #: languages/vue.php:2371
8241
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8242
  msgstr ""
8243
 
8244
- #: languages/vue.php:2374
8245
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8246
  msgstr ""
8247
 
8248
- #: languages/vue.php:2377
8249
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8250
  msgstr ""
8251
 
8252
- #: languages/vue.php:2380
8253
  msgid "Over 200,000 websites use Pretty Links!"
8254
  msgstr ""
8255
 
8256
- #: languages/vue.php:2383
8257
  msgid "Install Pretty Links"
8258
  msgstr ""
8259
 
8260
- #: languages/vue.php:2386
8261
  msgid "Pretty Links Installed & Activated"
8262
  msgstr ""
8263
 
8264
- #: languages/vue.php:2389
8265
  msgid "Download Pretty Links"
8266
  msgstr ""
8267
 
8268
- #: languages/vue.php:2392
8269
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8270
  msgstr ""
8271
 
8272
- #: languages/vue.php:2395
8273
  msgid "Activate Pretty Links"
8274
  msgstr ""
8275
 
8276
- #: languages/vue.php:2398
8277
  msgid "Activating Pretty Links..."
8278
  msgstr ""
8279
 
8280
- #: languages/vue.php:2401
8281
  msgid "Create New Pretty Link"
8282
  msgstr ""
8283
 
8284
- #: languages/vue.php:2404
8285
  msgid "Create a New Pretty Link"
8286
  msgstr ""
8287
 
8288
- #: languages/vue.php:2407
8289
  msgid "Grab your campaign link and paste it into the Target URL field."
8290
  msgstr ""
8291
 
8292
- #: languages/vue.php:2410
8293
  msgid "Custom Campaign Parameters"
8294
  msgstr ""
8295
 
8296
- #: languages/vue.php:2413
8297
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8298
  msgstr ""
8299
 
8300
- #: languages/vue.php:2416
8301
  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."
8302
  msgstr ""
8303
 
8304
  #. Translators: Marks the field as required.
8305
- #: languages/vue.php:2420
8306
  msgid "Website URL %s"
8307
  msgstr ""
8308
 
8309
  #. Translators: Display the current website url in italic.
8310
- #: languages/vue.php:2424
8311
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8312
  msgstr ""
8313
 
8314
  #. Translators: Marks the field as required.
8315
- #: languages/vue.php:2428
8316
  msgid "Campaign Source %s"
8317
  msgstr ""
8318
 
8319
  #. Translators: Make the text italic.
8320
- #: languages/vue.php:2432
8321
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8322
  msgstr ""
8323
 
8324
  #. Translators: Make the text italic.
8325
- #: languages/vue.php:2436
8326
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8327
  msgstr ""
8328
 
8329
  #. Translators: Make the text italic.
8330
- #: languages/vue.php:2440
8331
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8332
  msgstr ""
8333
 
8334
- #: languages/vue.php:2443
8335
  msgid "Enter the paid keyword"
8336
  msgstr ""
8337
 
8338
- #: languages/vue.php:2446
8339
  msgid "Enter something to differentiate ads"
8340
  msgstr ""
8341
 
8342
- #: languages/vue.php:2449
8343
  msgid "Use Fragment"
8344
  msgstr ""
8345
 
8346
  #. Translators: Make the text bold.
8347
- #: languages/vue.php:2453
8348
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8349
  msgstr ""
8350
 
8351
- #: languages/vue.php:2456
8352
  msgid "URL to use"
8353
  msgstr ""
8354
 
8355
- #: languages/vue.php:2459
8356
  msgid "(Updates automatically)"
8357
  msgstr ""
8358
 
8359
- #: languages/vue.php:2462
8360
  msgid "Copy to Clipboard"
8361
  msgstr ""
8362
 
8363
- #: languages/vue.php:2465
8364
  msgid "Copy to Pretty Links"
8365
  msgstr ""
8366
 
8367
- #: languages/vue.php:2468
8368
  msgid "Make your campaign links prettier!"
8369
  msgstr ""
8370
 
8371
- #: languages/vue.php:2471
8372
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8373
  msgstr ""
8374
 
8375
- #: languages/vue.php:2474
8376
  msgid "More Information & Examples"
8377
  msgstr ""
8378
 
8379
- #: languages/vue.php:2477
8380
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8381
  msgstr ""
8382
 
8383
- #: languages/vue.php:2480
8384
  msgid "Campaign Source"
8385
  msgstr ""
8386
 
8387
- #: languages/vue.php:2483
8388
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8389
  msgstr ""
8390
 
8391
- #: languages/vue.php:2486
8392
  msgid "Campaign Medium"
8393
  msgstr ""
8394
 
8395
- #: languages/vue.php:2489
8396
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8397
  msgstr ""
8398
 
8399
- #: languages/vue.php:2492
8400
  msgid "Campaign Name"
8401
  msgstr ""
8402
 
8403
- #: languages/vue.php:2495
8404
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8405
  msgstr ""
8406
 
8407
- #: languages/vue.php:2498
8408
  msgid "Campaign Term"
8409
  msgstr ""
8410
 
8411
- #: languages/vue.php:2501
8412
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8413
  msgstr ""
8414
 
8415
- #: languages/vue.php:2504
8416
  msgid "Campaign Content"
8417
  msgstr ""
8418
 
8419
- #: languages/vue.php:2507
8420
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8421
  msgstr ""
8422
 
8423
  #. Translators: Example.
8424
- #: languages/vue.php:2511
8425
  msgid "Example: %s"
8426
  msgstr ""
8427
 
8428
  #. Translators: Examples.
8429
- #: languages/vue.php:2515
8430
  msgid "Examples: %s"
8431
  msgstr ""
8432
 
8433
- #: languages/vue.php:2518
8434
  msgid "About Campaigns"
8435
  msgstr ""
8436
 
8437
- #: languages/vue.php:2521
8438
  msgid "About Custom Campaigns"
8439
  msgstr ""
8440
 
8441
- #: languages/vue.php:2524
8442
  msgid "Best Practices for Creating Custom Campaigns"
8443
  msgstr ""
8444
 
8445
- #: languages/vue.php:2527
8446
  msgid "About the Referral Traffic Report"
8447
  msgstr ""
8448
 
8449
- #: languages/vue.php:2530
8450
  msgid "About Traffic Source Dimensions"
8451
  msgstr ""
8452
 
8453
- #: languages/vue.php:2533
8454
  msgid "AdWords Auto-Tagging"
8455
  msgstr ""
8456
 
8457
- #: languages/vue.php:2536
8458
  msgid "Additional Information"
8459
  msgstr ""
8460
 
8461
- #: languages/vue.php:2539
8462
  msgid "Affiliate Links"
8463
  msgstr ""
8464
 
8465
  #. Translators: Add links to documentation.
8466
- #: languages/vue.php:2543
8467
  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."
8468
  msgstr ""
8469
 
8470
- #: languages/vue.php:2546
8471
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8472
  msgstr ""
8473
 
8474
- #: languages/vue.php:2549
8475
  msgid "The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
8476
  msgstr ""
8477
 
8478
- #: languages/vue.php:2552
8479
  msgid "Disable the Headline Analyzer"
8480
  msgstr ""
8481
 
8482
  #. Translators: Add line break.
8483
- #: languages/vue.php:2556
8484
  msgid "See All Your Important Store%s Metrics in One Place"
8485
  msgstr ""
8486
 
8487
- #: languages/vue.php:2559
8488
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8489
  msgstr ""
8490
 
8491
- #: languages/vue.php:2562
8492
  msgid "See Your Conversion Rate to Improve Funnel"
8493
  msgstr ""
8494
 
8495
- #: languages/vue.php:2565
8496
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8497
  msgstr ""
8498
 
8499
- #: languages/vue.php:2568
8500
  msgid "See The Total Revenue to Track Growth"
8501
  msgstr ""
8502
 
8503
- #: languages/vue.php:2571
8504
  msgid "See Average Order Value to Find Offer Opportunities"
8505
  msgstr ""
8506
 
8507
- #: languages/vue.php:2574
8508
  msgid "See Your Top Products to See Individual Performance"
8509
  msgstr ""
8510
 
8511
- #: languages/vue.php:2577
8512
  msgid "See your Top Conversion Sources and Focus on what's Working"
8513
  msgstr ""
8514
 
8515
- #: languages/vue.php:2580
8516
  msgid "See The Time it Takes for Customers to Purchase"
8517
  msgstr ""
8518
 
8519
- #: languages/vue.php:2583
8520
  msgid "See How Many Sessions are Needed for a Purchase"
8521
  msgstr ""
8522
 
8523
- #: languages/vue.php:2586
8524
  msgid "Automatically Track Affiliate Sales"
8525
  msgstr ""
8526
 
8527
- #: languages/vue.php:2589
8528
  msgid "The ExactMetrics eCommerce addon works with EasyAffiliate, so that you can instantly track all affiliate referrals and sales inside WordPress and Google Analytics, with no coding needed."
8529
  msgstr ""
8530
 
8531
- #: languages/vue.php:2592
8532
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8533
  msgstr ""
8534
 
8535
- #: languages/vue.php:2595
8536
  msgid "Cross Domain Tracking"
8537
  msgstr ""
8538
 
8539
  #. Translators: Add links to documentation.
8540
- #: languages/vue.php:2599
8541
  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."
8542
  msgstr ""
8543
 
8544
- #: languages/vue.php:2602
8545
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8546
  msgstr ""
8547
 
8548
- #: languages/vue.php:2605
8549
  msgid "Anonymize IP Addresses"
8550
  msgstr ""
8551
 
8552
- #: languages/vue.php:2608
8553
  msgid "Link Attribution"
8554
  msgstr ""
8555
 
8556
- #: languages/vue.php:2611
8557
  msgid "Enable Enhanced Link Attribution"
8558
  msgstr ""
8559
 
8560
- #: languages/vue.php:2614
8561
  msgid "Enable Anchor Tracking"
8562
  msgstr ""
8563
 
8564
- #: languages/vue.php:2617
8565
  msgid "Enable allowAnchor"
8566
  msgstr ""
8567
 
8568
- #: languages/vue.php:2620
8569
  msgid "Enable allowLinker"
8570
  msgstr ""
8571
 
8572
- #: languages/vue.php:2623
8573
  msgid "Enable Tag Links in RSS"
8574
  msgstr ""
8575
 
8576
- #: languages/vue.php:2626
8577
  msgid "File Downloads"
8578
  msgstr ""
8579
 
8580
- #: languages/vue.php:2629
8581
  msgid "Extensions of Files to Track as Downloads"
8582
  msgstr ""
8583
 
8584
- #: languages/vue.php:2632
8585
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8586
  msgstr ""
8587
 
8588
  #. Translators: Add links to documentation.
8589
- #: languages/vue.php:2636
8590
  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."
8591
  msgstr ""
8592
 
8593
  #. Translators: Add links to documentation.
8594
- #: languages/vue.php:2640
8595
  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."
8596
  msgstr ""
8597
 
8598
  #. Translators: Add links to documentation.
8599
- #: languages/vue.php:2644
8600
  msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
8601
  msgstr ""
8602
 
8603
- #: languages/vue.php:2647
8604
  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."
8605
  msgstr ""
8606
 
8607
  #. Translators: Add links to documentation.
8608
- #: languages/vue.php:2651
8609
  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."
8610
  msgstr ""
8611
 
8612
  #. Translators: Add links to documentation.
8613
- #: languages/vue.php:2655
8614
  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."
8615
  msgstr ""
8616
 
8617
  #. Translators: Add links to documentation.
8618
- #: languages/vue.php:2659
8619
  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."
8620
  msgstr ""
8621
 
8622
- #: languages/vue.php:2662
8623
  msgid "Add domain"
8624
  msgstr ""
8625
 
8626
  #. Translators: Domain name example.
8627
- #: languages/vue.php:2666
8628
  msgid "Domain (example: %s)"
8629
  msgstr ""
8630
 
8631
  #. Translators: Current domain name that should not be used.
8632
- #: languages/vue.php:2670
8633
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8634
  msgstr ""
8635
 
8636
  #. Translators: Adds link to the account area to retreive license key.
8637
- #: languages/vue.php:2674
8638
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8639
  msgstr ""
8640
 
8641
- #: languages/vue.php:2677
8642
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8643
  msgstr ""
8644
 
8645
- #: languages/vue.php:2680
8646
  msgid "Complete Upgrade"
8647
  msgstr ""
8648
 
8649
- #: languages/vue.php:2683
8650
  msgid "Upgrade to Pro Version!"
8651
  msgstr ""
8652
 
8653
  #. Translators: Make text bold.
8654
- #: languages/vue.php:2687
8655
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8656
  msgstr ""
8657
 
8658
- #: languages/vue.php:2690
8659
  msgid "Install All-in-One SEO"
8660
  msgstr ""
8661
 
8662
- #: languages/vue.php:2693
8663
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8664
  msgstr ""
8665
 
8666
- #: languages/vue.php:2696
8667
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8668
  msgstr ""
8669
 
8670
- #: languages/vue.php:2699
8671
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8672
  msgstr ""
8673
 
8674
- #: languages/vue.php:2702
8675
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8676
  msgstr ""
8677
 
8678
- #: languages/vue.php:2705
8679
  msgid "Local SEO"
8680
  msgstr ""
8681
 
8682
- #: languages/vue.php:2708
8683
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8684
  msgstr ""
8685
 
8686
- #: languages/vue.php:2711
8687
  msgid "WooCommerce SEO"
8688
  msgstr ""
8689
 
8690
- #: languages/vue.php:2714
8691
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8692
  msgstr ""
8693
 
8694
- #: languages/vue.php:2717
8695
  msgid "SEO Custom User Roles"
8696
  msgstr ""
8697
 
8698
- #: languages/vue.php:2720
8699
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8700
  msgstr ""
8701
 
8702
- #: languages/vue.php:2723
8703
  msgid "Google News Sitemap"
8704
  msgstr ""
8705
 
8706
- #: languages/vue.php:2726
8707
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8708
  msgstr ""
8709
 
8710
- #: languages/vue.php:2729
8711
  msgid "Smart XML Sitemaps"
8712
  msgstr ""
8713
 
8714
- #: languages/vue.php:2732
8715
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8716
  msgstr ""
8717
 
8718
- #: languages/vue.php:2735
8719
  msgid "Social Media Integration"
8720
  msgstr ""
8721
 
8722
- #: languages/vue.php:2738
8723
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8724
  msgstr ""
8725
 
8726
- #: languages/vue.php:2741
8727
  msgid "TruSEO On-Page Analysis"
8728
  msgstr ""
8729
 
8730
- #: languages/vue.php:2744
8731
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8732
  msgstr ""
8733
 
8734
- #: languages/vue.php:2747
8735
  msgid "& Many More!"
8736
  msgstr ""
8737
 
8738
- #: languages/vue.php:2750
8739
  msgid "Installing. Please wait.."
8740
  msgstr ""
8741
 
8742
- #: languages/vue.php:2753
8743
  msgid "Install All-in-One-SEO"
8744
  msgstr ""
8745
 
8746
- #: languages/vue.php:2756
8747
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8748
  msgstr ""
8749
 
8750
- #: languages/vue.php:2759
8751
  msgid "See Your Top Landing Pages to Improve Engagement"
8752
  msgstr ""
8753
 
8754
- #: languages/vue.php:2762
8755
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8756
  msgstr ""
8757
 
8758
- #: languages/vue.php:2765
8759
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8760
  msgstr ""
8761
 
8762
- #: languages/vue.php:2768
8763
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8764
  msgstr ""
8765
 
8766
- #: languages/vue.php:2771
8767
  msgid "See Your Top Downloads and Improve Conversions"
8768
  msgstr ""
8769
 
8770
- #: languages/vue.php:2774
8771
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8772
  msgstr ""
8773
 
8774
- #: languages/vue.php:2777
8775
  msgid "Welcome to the all-new ExactMetrics"
8776
  msgstr ""
8777
 
8778
- #: languages/vue.php:2780
8779
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8780
  msgstr ""
8781
 
8782
- #: languages/vue.php:2783
8783
  msgid "The New & Improved ExactMetrics includes:"
8784
  msgstr ""
8785
 
8786
- #: languages/vue.php:2786
8787
  msgid "All-New Design"
8788
  msgstr ""
8789
 
8790
- #: languages/vue.php:2789
8791
  msgid "Better Reporting"
8792
  msgstr ""
8793
 
8794
- #: languages/vue.php:2792
8795
  msgid "Better Tracking"
8796
  msgstr ""
8797
 
8798
- #: languages/vue.php:2795
8799
  msgid "Better Support"
8800
  msgstr ""
8801
 
8802
- #: languages/vue.php:2798
8803
  msgid "Continue"
8804
  msgstr ""
8805
 
8806
- #: languages/vue.php:2801
8807
  msgid "Your settings have been automatically transferred."
8808
  msgstr ""
8809
 
8810
- #: languages/vue.php:2804
8811
  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."
8812
  msgstr ""
8813
 
8814
- #: languages/vue.php:2807
8815
  msgid "New"
8816
  msgstr ""
8817
 
8818
- #: languages/vue.php:2810
8819
  msgid "Returning"
8820
  msgstr ""
8821
 
8822
- #: languages/vue.php:2813
8823
  msgid "Top 10 Countries"
8824
  msgstr ""
8825
 
8826
- #: languages/vue.php:2816
8827
  msgid "View Countries Report"
8828
  msgstr ""
8829
 
8830
- #: languages/vue.php:2819
8831
  msgid "Top 10 Referrals"
8832
  msgstr ""
8833
 
8834
- #: languages/vue.php:2822
8835
  msgid "View All Referral Sources"
8836
  msgstr ""
8837
 
8838
- #: languages/vue.php:2825
8839
  msgid "View Full Posts/Pages Report"
8840
  msgstr ""
8841
 
8842
- #: languages/vue.php:2828
8843
  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."
8844
  msgstr ""
8845
 
8846
- #: languages/vue.php:2831
8847
  msgid "This list shows the top countries your website visitors are from."
8848
  msgstr ""
8849
 
8850
- #: languages/vue.php:2834
8851
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8852
  msgstr ""
8853
 
8854
- #: languages/vue.php:2837
8855
  msgid "This feature requires ExactMetrics Pro"
8856
  msgstr ""
8857
 
8858
- #: languages/vue.php:2840
8859
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8860
  msgstr ""
8861
 
8862
- #: languages/vue.php:2843
8863
  msgid "Upgrade to Pro and Unlock Popular Products"
8864
  msgstr ""
8865
 
8866
- #: languages/vue.php:2846
8867
  msgid "View all Pro features"
8868
  msgstr ""
8869
 
8870
- #: languages/vue.php:2849
8871
  msgid "View notifications"
8872
  msgstr ""
8873
 
8874
- #: languages/vue.php:2852
8875
  msgid "Days"
8876
  msgstr ""
8877
 
8878
  #. Translators: placeholders make text small.
8879
- #: languages/vue.php:2856
8880
  msgid "7 days"
8881
  msgstr ""
8882
 
8883
- #: languages/vue.php:2859
8884
  msgid "30 days"
8885
  msgstr ""
8886
 
8887
- #: languages/vue.php:2862
8888
  msgid "Custom"
8889
  msgstr ""
8890
 
8891
- #: languages/vue.php:2865
8892
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8893
  msgstr ""
8894
 
8895
- #: languages/vue.php:2868
8896
  msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
8897
  msgstr ""
8898
 
8899
- #: languages/vue.php:2871
8900
  msgid "Jack Brown"
8901
  msgstr ""
8902
 
8903
- #: languages/vue.php:2874
8904
  msgid "PJB Internet Marketing"
8905
  msgstr ""
8906
 
8907
- #: languages/vue.php:2877
8908
  msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
8909
  msgstr ""
8910
 
8911
- #: languages/vue.php:2880
8912
  msgid "Joel Steinmann"
8913
  msgstr ""
8914
 
8915
- #: languages/vue.php:2883
8916
  msgid "CEO, Solergo"
8917
  msgstr ""
8918
 
8919
- #: languages/vue.php:2886
8920
  msgid "Only Show Posts from These Categories"
8921
  msgstr ""
8922
 
8923
- #: languages/vue.php:2889
8924
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8925
  msgstr ""
8926
 
8927
- #: languages/vue.php:2892
8928
  msgid "Activating..."
8929
  msgstr ""
8930
 
8931
- #: languages/vue.php:2895
8932
  msgid "Deactivating..."
8933
  msgstr ""
8934
 
8935
- #: languages/vue.php:2898
8936
  msgid "Deactivate"
8937
  msgstr ""
8938
 
8939
- #: languages/vue.php:2901
8940
  msgid "Search Console Report"
8941
  msgstr ""
8942
 
8943
- #: languages/vue.php:2904
8944
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8945
  msgstr ""
8946
 
8947
- #: languages/vue.php:2907
8948
  msgid "See Your Top Google Search Terms and Optimize Content"
8949
  msgstr ""
8950
 
8951
- #: languages/vue.php:2910
8952
  msgid "See The Number of Clicks and Track Interests"
8953
  msgstr ""
8954
 
8955
- #: languages/vue.php:2913
8956
  msgid "See The Click-Through-Ratio and Improve SEO"
8957
  msgstr ""
8958
 
8959
- #: languages/vue.php:2916
8960
  msgid "See The Average Results Position and Focus on what works."
8961
  msgstr ""
8962
 
8963
- #: languages/vue.php:2919
8964
  msgid "Ecommerce Report"
8965
  msgstr ""
8966
 
8967
- #: languages/vue.php:2922
8968
  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."
8969
  msgstr ""
8970
 
8971
- #: languages/vue.php:2925
8972
  msgid "See Your Conversion Rate to Improve Your Funnel"
8973
  msgstr ""
8974
 
8975
- #: languages/vue.php:2928
8976
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8977
  msgstr ""
8978
 
8979
- #: languages/vue.php:2931
8980
  msgid "Popular Posts data can be fetched correctly"
8981
  msgstr ""
8982
 
8983
- #: languages/vue.php:2934
8984
  msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
8985
  msgstr ""
8986
 
8987
- #: languages/vue.php:2937
8988
  msgid "Close"
8989
  msgstr ""
8990
 
8991
- #: languages/vue.php:2941
8992
  msgid "Add Top 5 Posts from Google Analytics"
8993
  msgstr ""
8994
 
8995
- #: languages/vue.php:2944
8996
  msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings."
8997
  msgstr ""
8998
 
8999
- #: languages/vue.php:2947
9000
  msgid "Test Automated Posts"
9001
  msgstr ""
9002
 
9003
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9004
- #: languages/vue.php:2951
9005
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9006
  msgstr ""
9007
 
9008
- #: languages/vue.php:2955
9009
  msgid "Automated + Curated"
9010
  msgstr ""
9011
 
9012
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9013
- #: languages/vue.php:2959
9014
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
9015
  msgstr ""
9016
 
9017
  #. Translators: Placeholder gets replaced with current license version.
9018
- #: languages/vue.php:2963
9019
  msgid "Pro version is required."
9020
  msgstr ""
9021
 
9022
- #: languages/vue.php:2966
9023
  msgid "Verifying Popular Posts data"
9024
  msgstr ""
9025
 
9026
- #: languages/vue.php:2969
9027
  msgid "Multiple Entries"
9028
  msgstr ""
9029
 
9030
- #: languages/vue.php:2972
9031
  msgid "Total Number of Widgets to Show"
9032
  msgstr ""
9033
 
9034
- #: languages/vue.php:2975
9035
  msgid "Choose how many widgets will be placed in a single Post."
9036
  msgstr ""
9037
 
9038
- #: languages/vue.php:2978
9039
  msgid "Minimum Distance Between Widgets"
9040
  msgstr ""
9041
 
9042
- #: languages/vue.php:2981
9043
  msgid "Choose the distance between widgets."
9044
  msgstr ""
9045
 
9046
- #: languages/vue.php:2984
9047
  msgid "Minimum Word Count to Display Multiple Widgets"
9048
  msgstr ""
9049
 
9050
- #: languages/vue.php:2987
9051
  msgid "Choose the minimum word count for a Post to have multiple entries."
9052
  msgstr ""
9053
 
9054
- #: languages/vue.php:2990
9055
  msgid "Pro version is required"
9056
  msgstr ""
9057
 
9058
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9059
- #: languages/vue.php:2994
9060
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
9061
  msgstr ""
9062
 
9063
- #: languages/vue.php:2997
9064
  msgid "Select posts/search"
9065
  msgstr ""
9066
 
9067
- #: languages/vue.php:3000
9068
  msgid "Oops! No posts found."
9069
  msgstr ""
9070
 
9071
- #: languages/vue.php:3003
9072
  msgid "Search by post title"
9073
  msgstr ""
9074
 
9075
- #: languages/vue.php:3006
9076
  msgid "Can't load posts."
9077
  msgstr ""
9078
 
9079
- #: languages/vue.php:3009
9080
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9081
  msgstr ""
9082
 
9083
- #: languages/vue.php:3012
9084
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9085
  msgstr ""
9086
 
9087
- #: languages/vue.php:3015
9088
  msgid "Color"
9089
  msgstr ""
9090
 
9091
- #: languages/vue.php:3018
9092
  msgid "Size"
9093
  msgstr ""
9094
 
9095
- #: languages/vue.php:3021
9096
  msgid "Title"
9097
  msgstr ""
9098
 
9099
- #: languages/vue.php:3024
9100
  msgid "Label"
9101
  msgstr ""
9102
 
9103
- #: languages/vue.php:3027
9104
  msgid "Background"
9105
  msgstr ""
9106
 
9107
- #: languages/vue.php:3030
9108
  msgid "Border"
9109
  msgstr ""
9110
 
9111
- #: languages/vue.php:3033
9112
  msgid "Icon"
9113
  msgstr ""
9114
 
9115
- #: languages/vue.php:3037
9116
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9117
  msgid "Theme Preview"
9118
  msgstr ""
9119
 
9120
- #: languages/vue.php:3040
9121
  msgid "SharedCount API Key"
9122
  msgstr ""
9123
 
9124
- #: languages/vue.php:3043
9125
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9126
  msgstr ""
9127
 
9128
- #: languages/vue.php:3046
9129
  msgid "Start Indexing"
9130
  msgstr ""
9131
 
9132
- #: languages/vue.php:3049
9133
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9134
  msgstr ""
9135
 
9136
- #: languages/vue.php:3052
9137
  msgid "Indexing completed, counts will update automatically every day."
9138
  msgstr ""
9139
 
9140
  #. Translators: Minimum and maximum number that can be used.
9141
- #: languages/vue.php:3056
9142
  msgid "Please enter a value between %1$s and %2$s"
9143
  msgstr ""
9144
 
9145
  #. Translators: The minimum set value.
9146
- #: languages/vue.php:3060
9147
  msgid "Please enter a value higher than %s"
9148
  msgstr ""
9149
 
9150
  #. Translators: The maximum set value.
9151
- #: languages/vue.php:3064
9152
  msgid "Please enter a value lower than %s"
9153
  msgstr ""
9154
 
9155
- #: languages/vue.php:3067
9156
  msgid "Please enter a number"
9157
  msgstr ""
9158
 
9159
- #: languages/vue.php:3070
9160
  msgid "Value has to be a round number"
9161
  msgstr ""
9162
 
9163
- #: languages/vue.php:3073
9164
  msgid "Author/Date"
9165
  msgstr ""
9166
 
9167
- #: languages/vue.php:3085
9168
  msgid "Choose which content you would like displayed in the widget."
9169
  msgstr ""
9170
 
9171
- #: languages/vue.php:3097
9172
  msgid "Comments"
9173
  msgstr ""
9174
 
9175
- #: languages/vue.php:3103
9176
  msgid "Choose how many posts you’d like displayed in the widget."
9177
  msgstr ""
9178
 
9179
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9180
- #: languages/vue.php:3107
9181
  msgid "%1$sPage %3$s%2$s of %4$s"
9182
  msgstr ""
9183
 
9184
- #: languages/vue.php:3110
9185
  msgid "Wide"
9186
  msgstr ""
9187
 
9188
- #: languages/vue.php:3113
9189
  msgid "Narrow"
9190
  msgstr ""
9191
 
9192
  #. Translators: Make text green.
9193
- #: languages/vue.php:3117
9194
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9195
  msgstr ""
9196
 
9197
- #: languages/vue.php:3123
9198
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9199
  msgstr ""
9200
 
9201
- #: languages/vue.php:3126
9202
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9203
  msgstr ""
9204
 
9205
- #: languages/vue.php:3129
9206
  msgid "Usage Tracking"
9207
  msgstr ""
9208
 
9209
- #: languages/vue.php:3132
9210
  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."
9211
  msgstr ""
9212
 
9213
- #: languages/vue.php:3135
9214
  msgid "Allow usage tracking"
9215
  msgstr ""
9216
 
9217
  #. Translators: Adds a link to the documentation.
9218
- #: languages/vue.php:3139
9219
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9220
  msgstr ""
9221
 
9222
- #: languages/vue.php:3142
9223
  msgid "Facebook Instant Articles"
9224
  msgstr ""
9225
 
9226
- #: languages/vue.php:3145
9227
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9228
  msgstr ""
9229
 
9230
- #: languages/vue.php:3148
9231
  msgid "Performance"
9232
  msgstr ""
9233
 
9234
- #: languages/vue.php:3151
9235
  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."
9236
  msgstr ""
9237
 
9238
- #: languages/vue.php:3154
9239
  msgid "Google AMP"
9240
  msgstr ""
9241
 
9242
- #: languages/vue.php:3157
9243
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9244
  msgstr ""
9245
 
9246
- #: languages/vue.php:3160
9247
  msgid "Ads Tracking"
9248
  msgstr ""
9249
 
9250
- #: languages/vue.php:3163
9251
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9252
  msgstr ""
9253
 
9254
- #: languages/vue.php:3166
9255
  msgid "Unlock with %s"
9256
  msgstr ""
9257
 
9258
- #: languages/vue.php:3169
9259
  msgid "Scroll Tracking"
9260
  msgstr ""
9261
 
9262
- #: languages/vue.php:3172
9263
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9264
  msgstr ""
9265
 
9266
- #: languages/vue.php:3175
9267
  msgid ""
9268
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9269
  " and other privacy regulations."
9270
  msgstr ""
9271
 
9272
- #: languages/vue.php:3179
9273
  msgid "EU Compliance"
9274
  msgstr ""
9275
 
9276
- #: languages/vue.php:3182
9277
  msgid "Compatibility mode"
9278
  msgstr ""
9279
 
9280
- #: languages/vue.php:3185
9281
  msgid "Enable _gtagTracker Compatibility"
9282
  msgstr ""
9283
 
9284
  #. Translators: Placeholder gets replaced with default GA js function.
9285
- #: languages/vue.php:3189
9286
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9287
  msgstr ""
9288
 
9289
- #: languages/vue.php:3192
9290
  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!"
9291
  msgstr ""
9292
 
9293
- #: languages/vue.php:3195
9294
  msgid "To unlock more features consider upgrading to PRO."
9295
  msgstr ""
9296
 
9297
- #: languages/vue.php:3198
9298
  msgid "Upgrade to"
9299
  msgstr ""
9300
 
9301
- #: languages/vue.php:3201
9302
  msgid "Export PDF Report"
9303
  msgstr ""
9304
 
9305
- #: languages/vue.php:3204
9306
  msgid "You can export PDF reports only in the PRO version."
9307
  msgstr ""
9308
 
9309
- #: languages/vue.php:3207
9310
  msgid "Display Method"
9311
  msgstr ""
9312
 
9313
- #: languages/vue.php:3210
9314
  msgid "There are two ways to manual include the widget in your posts."
9315
  msgstr ""
9316
 
9317
- #: languages/vue.php:3213
9318
  msgid "Using the Gutenberg Block"
9319
  msgstr ""
9320
 
9321
- #: languages/vue.php:3216
9322
  msgid "Using the Shortcode"
9323
  msgstr ""
9324
 
9325
- #: languages/vue.php:3219
9326
  msgid "Learn how to insert the widget using Gutenberg blocks."
9327
  msgstr ""
9328
 
9329
- #: languages/vue.php:3222
9330
  msgid "Learn how to insert the widget using out Shortcode."
9331
  msgstr ""
9332
 
9333
- #: languages/vue.php:3225
9334
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9335
  msgstr ""
9336
 
9337
- #: languages/vue.php:3228
9338
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9339
  msgstr ""
9340
 
9341
- #: languages/vue.php:3231
9342
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9343
  msgstr ""
9344
 
9345
- #: languages/vue.php:3234
9346
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9347
  msgstr ""
9348
 
9349
- #: languages/vue.php:3237
9350
  msgid "Shortcode"
9351
  msgstr ""
9352
 
9353
- #: languages/vue.php:3240
9354
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9355
  msgstr ""
9356
 
9357
- #: languages/vue.php:3243
9358
  msgid "Copy Shortcode"
9359
  msgstr ""
9360
 
9361
- #: languages/vue.php:3246
9362
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9363
  msgstr ""
9364
 
9365
- #: languages/vue.php:3249
9366
  msgid "Automatic Placement"
9367
  msgstr ""
9368
 
9369
- #: languages/vue.php:3252
9370
  msgid "Display using Gutenberg Blocks"
9371
  msgstr ""
9372
 
9373
- #: languages/vue.php:3255
9374
  msgid "Embed Options"
9375
  msgstr ""
9376
 
9377
- #: languages/vue.php:3258
9378
  msgid "All Embed Options can be used in conjunction with one another."
9379
  msgstr ""
9380
 
9381
- #: languages/vue.php:3261
9382
  msgid "Using Automatic Embed"
9383
  msgstr ""
9384
 
9385
- #: languages/vue.php:3264
9386
  msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
9387
  msgstr ""
9388
 
9389
- #: languages/vue.php:3267
9390
  msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
9391
  msgstr ""
9392
 
9393
- #: languages/vue.php:3270
9394
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9395
  msgstr ""
9396
 
9397
- #: languages/vue.php:3273
9398
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9399
  msgstr ""
9400
 
9401
- #: languages/vue.php:3276
9402
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9403
  msgstr ""
9404
 
9405
- #: languages/vue.php:3279
9406
  msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
9407
  msgstr ""
9408
 
9409
- #: languages/vue.php:3282
9410
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
9411
  msgstr ""
9412
 
9413
- #: languages/vue.php:3285
9414
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9415
  msgstr ""
9416
 
9417
- #: languages/vue.php:3288
9418
  msgid "Display using a Shortcode"
9419
  msgstr ""
9420
 
9421
- #: languages/vue.php:3291
9422
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9423
  msgstr ""
9424
 
9425
- #: languages/vue.php:3294
9426
  msgid "Enable Automatic Placement"
9427
  msgstr ""
9428
 
9429
- #: languages/vue.php:3297
9430
  msgid "Display in a Sidebar"
9431
  msgstr ""
9432
 
9433
- #: languages/vue.php:3300
9434
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9435
  msgstr ""
9436
 
9437
- #: languages/vue.php:3303
9438
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9439
  msgstr ""
9440
 
9441
  #. Translators: The number of results.
9442
- #: languages/vue.php:3307
9443
  msgid "%s results"
9444
  msgstr ""
9445
 
9446
- #: languages/vue.php:3310
9447
  msgid "Media"
9448
  msgstr ""
9449
 
9450
- #: languages/vue.php:3313
9451
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9452
  msgstr ""
9453
 
9454
- #: languages/vue.php:3316
9455
  msgid "2021 Year in Review"
9456
  msgstr ""
9457
 
9458
- #: languages/vue.php:3319
9459
  msgid "Media- Track how your users interact with videos on your website."
9460
  msgstr ""
9461
 
9462
- #: languages/vue.php:3322
9463
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9464
  msgstr ""
9465
 
9466
- #: languages/vue.php:3325
9467
  msgid "Your 2021 Analytics Report"
9468
  msgstr ""
9469
 
9470
- #: languages/vue.php:3331
9471
  msgid "January 1, 2021 - December 31, 2021"
9472
  msgstr ""
9473
 
9474
- #: languages/vue.php:3334
9475
  msgid "A Tip for 2022"
9476
  msgstr ""
9477
 
9478
- #: languages/vue.php:3337
9479
  msgid "A Tip For 2022"
9480
  msgstr ""
9481
 
9482
- #: languages/vue.php:3340
9483
  msgid "Here's to an amazing 2022!"
9484
  msgstr ""
9485
 
9486
- #: languages/vue.php:3343
9487
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9488
  msgstr ""
9489
 
9490
- #: languages/vue.php:3346
9491
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9492
  msgstr ""
9493
 
9494
- #: languages/vue.php:3349
9495
  msgid "Copyright ExactMetrics, 2022"
9496
  msgstr ""
9497
 
9498
  #. Translators: Number of minutes spent on site.
9499
- #: languages/vue.php:3353
9500
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9501
  msgstr ""
9502
 
9503
  #. Translators: Placeholders are used for making text bold and adding a link.
9504
- #: languages/vue.php:3357
9505
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9506
  msgstr ""
9507
 
9508
- #: languages/vue.php:3360
9509
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9510
  msgstr ""
9511
 
9512
- #: languages/vue.php:3363
9513
  msgid "RafflePress"
9514
  msgstr ""
9515
 
9516
- #: languages/vue.php:3366
9517
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9518
  msgstr ""
9519
 
9520
- #: languages/vue.php:3369
9521
  msgid "Constant Contact"
9522
  msgstr ""
9523
 
9524
- #: languages/vue.php:3372
9525
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9526
  msgstr ""
9527
 
9528
- #: languages/vue.php:3375
9529
  msgid "SEMRUSH"
9530
  msgstr ""
9531
 
9532
- #: languages/vue.php:3378
9533
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9534
  msgstr ""
9535
 
9536
- #: languages/vue.php:3381
9537
  msgid "Engagement Tools"
9538
  msgstr ""
9539
 
9540
- #: languages/vue.php:3384
9541
  msgid "WPForms"
9542
  msgstr ""
9543
 
9544
- #: languages/vue.php:3387
9545
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9546
  msgstr ""
9547
 
9548
- #: languages/vue.php:3390
9549
  msgid "OptinMonster"
9550
  msgstr ""
9551
 
9552
- #: languages/vue.php:3393
9553
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9554
  msgstr ""
9555
 
9556
- #: languages/vue.php:3396
9557
  msgid "Smash Balloon - Facebook"
9558
  msgstr ""
9559
 
9560
- #: languages/vue.php:3399
9561
  msgid "Smash Balloon - Instagram"
9562
  msgstr ""
9563
 
9564
- #: languages/vue.php:3402
9565
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9566
  msgstr ""
9567
 
9568
- #: languages/vue.php:3405
9569
  msgid "Popular Posts by ExactMetrics"
9570
  msgstr ""
9571
 
9572
- #: languages/vue.php:3408
9573
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9574
  msgstr ""
9575
 
9576
- #: languages/vue.php:3411
9577
  msgid "Popular Products by ExactMetrics"
9578
  msgstr ""
9579
 
9580
- #: languages/vue.php:3414
9581
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9582
  msgstr ""
9583
 
9584
- #: languages/vue.php:3417
9585
  msgid "Revenue Tools"
9586
  msgstr ""
9587
 
9588
- #: languages/vue.php:3420
9589
  msgid "SeedProd"
9590
  msgstr ""
9591
 
9592
- #: languages/vue.php:3423
9593
  msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
9594
  msgstr ""
9595
 
9596
- #: languages/vue.php:3426
9597
  msgid "Featured Tools"
9598
  msgstr ""
9599
 
9600
- #: languages/vue.php:3429
9601
  msgid "Easy Affiliate"
9602
  msgstr ""
9603
 
9604
- #: languages/vue.php:3432
9605
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9606
  msgstr ""
9607
 
9608
- #: languages/vue.php:3435
9609
  msgid "SearchWP"
9610
  msgstr ""
9611
 
9612
- #: languages/vue.php:3438
9613
  msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
9614
  msgstr ""
9615
 
9616
- #: languages/vue.php:3441
9617
  msgid "Easy Digital Downloads"
9618
  msgstr ""
9619
 
9620
- #: languages/vue.php:3444
9621
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9622
  msgstr ""
9623
 
9624
- #: languages/vue.php:3447
9625
  msgid "MemberPress"
9626
  msgstr ""
9627
 
9628
- #: languages/vue.php:3450
9629
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9630
  msgstr ""
9631
 
9632
- #: languages/vue.php:3453
9633
  msgid "Thirsty Affiliates"
9634
  msgstr ""
9635
 
9636
- #: languages/vue.php:3456
9637
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9638
  msgstr ""
9639
 
9640
- #: languages/vue.php:3459
9641
  msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
9642
  msgstr ""
9643
 
9644
- #: languages/vue.php:3462
9645
  msgid "Advanced Coupons"
9646
  msgstr ""
9647
 
9648
- #: languages/vue.php:3465
9649
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9650
  msgstr ""
9651
 
9652
- #: languages/vue.php:3468
9653
  msgid "PrettyLinks"
9654
  msgstr ""
9655
 
9656
- #: languages/vue.php:3471
9657
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9658
  msgstr ""
9659
 
9660
- #: languages/vue.php:3474
9661
  msgid "Install Now"
9662
  msgstr ""
9663
 
9664
- #: languages/vue.php:3477
9665
  msgid "Online Marketing Guides & Resources"
9666
  msgstr ""
9667
 
9668
- #: languages/vue.php:3480
9669
  msgid "Read This Guide"
9670
  msgstr ""
9671
 
9672
- #: languages/vue.php:3486
9673
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9674
  msgstr ""
9675
 
9676
- #: languages/vue.php:3489
9677
  msgid "Traffic Tools"
9678
  msgstr ""
9679
 
9680
- #: languages/vue.php:3492
9681
  msgid "All in One SEO (AIOSEO)"
9682
  msgstr ""
9683
 
9684
- #: languages/vue.php:3495
9685
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9686
  msgstr ""
9687
 
9688
- #: languages/vue.php:3498
9689
  msgid "PushEngage"
9690
  msgstr ""
9691
 
9692
- #: languages/vue.php:3501
9693
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9694
  msgstr ""
9695
 
9696
- #: languages/vue.php:3504
9697
  msgid "Featured"
9698
  msgstr ""
9699
 
9700
- #: languages/vue.php:3507
9701
  msgid "Traffic"
9702
  msgstr ""
9703
 
9704
- #: languages/vue.php:3510
9705
  msgid "Revenue"
9706
  msgstr ""
9707
 
9708
- #: languages/vue.php:3513
9709
  msgid "Guides & Resources"
9710
  msgstr ""
9711
 
9712
- #: languages/vue.php:3516
9713
  msgid "Media Tracking"
9714
  msgstr ""
9715
 
9716
- #: languages/vue.php:3519
9717
  msgid "Get Started"
9718
  msgstr ""
9719
 
9720
- #: languages/vue.php:3522
9721
  msgid "Privacy Compliance Addon"
9722
  msgstr ""
9723
 
9724
- #: languages/vue.php:3525
9725
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9726
  msgstr ""
9727
 
9728
- #: languages/vue.php:3528
9729
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9730
  msgstr ""
9731
 
9732
- #: languages/vue.php:3531
9733
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9734
  msgstr ""
9735
 
9736
- #: languages/vue.php:3534
9737
  msgid "20+ Advanced Tracking"
9738
  msgstr ""
9739
 
9740
- #: languages/vue.php:3537
9741
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9742
  msgstr ""
9743
 
9744
- #: languages/vue.php:3540
9745
  msgid "Advanced Growth Tools"
9746
  msgstr ""
9747
 
9748
- #: languages/vue.php:3543
9749
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9750
  msgstr ""
9751
 
9752
- #: languages/vue.php:3546
9753
  msgid "Track how your users interact with videos on your website."
9754
  msgstr ""
9755
 
9756
- #: languages/vue.php:3549
9757
  msgid "Error Processing"
9758
  msgstr ""
9759
 
9760
- #: languages/vue.php:3552
9761
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9762
  msgstr ""
9763
 
9764
- #: languages/vue.php:3555
9765
  msgid "Which website features would you like to enable?"
9766
  msgstr ""
9767
 
9768
- #: languages/vue.php:3558
9769
  msgid "We’ve already selected our recommended features based on your site. "
9770
  msgstr ""
9771
 
9772
- #: languages/vue.php:3561
9773
  msgid "Other Addons"
9774
  msgstr ""
9775
 
9776
- #: languages/vue.php:3564
9777
  msgid "View all ExactMetrics addons"
9778
  msgstr ""
9779
 
9780
- #: languages/vue.php:3567
9781
  msgid "Standard Analytics & Reports"
9782
  msgstr ""
9783
 
9784
- #: languages/vue.php:3570
9785
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9786
  msgstr ""
9787
 
9788
- #: languages/vue.php:3573
9789
  msgid "Helps you see what links your users are clicking on your site."
9790
  msgstr ""
9791
 
9792
- #: languages/vue.php:3576
9793
  msgid "All In One SEO Toolkit"
9794
  msgstr ""
9795
 
9796
- #: languages/vue.php:3579
9797
  msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
9798
  msgstr ""
9799
 
9800
- #: languages/vue.php:3582
9801
  msgid "Smart Form Builder by WPForms"
9802
  msgstr ""
9803
 
9804
- #: languages/vue.php:3585
9805
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
9806
  msgstr ""
9807
 
9808
- #: languages/vue.php:3588
9809
  msgid "Awesome! Tracking and Analytics are All Setup!"
9810
  msgstr ""
9811
 
9812
- #: languages/vue.php:3591
9813
  msgid "ExactMetrics is connected to Google Analytics and data is being collected."
9814
  msgstr ""
9815
 
9816
- #: languages/vue.php:3598
9817
  msgid "Complete Setup without Upgrading"
9818
  msgstr ""
9819
 
9820
- #: languages/vue.php:3601
9821
  msgid "Success"
9822
  msgstr ""
9823
 
9824
- #: languages/vue.php:3604
9825
  msgid "Connected to Google Analytics"
9826
  msgstr ""
9827
 
9828
- #: languages/vue.php:3607
9829
  msgid "Tracking Code Installed"
9830
  msgstr ""
9831
 
9832
- #: languages/vue.php:3610
9833
  msgid "Data Being Collected"
9834
  msgstr ""
9835
 
9836
  #. Translators: Add link to retrieve license from account area.
9837
- #: languages/vue.php:3614
9838
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
9839
  msgstr ""
9840
 
9841
- #: languages/vue.php:3617
9842
  msgid "Verify License Key"
9843
  msgstr ""
9844
 
9845
- #: languages/vue.php:3620
9846
  msgid "Upgrade to Unlock These Features"
9847
  msgstr ""
9848
 
9849
- #: languages/vue.php:3623
9850
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9851
  msgstr ""
9852
 
9853
- #: languages/vue.php:3626
9854
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9855
  msgstr ""
9856
 
9857
- #: languages/vue.php:3629
9858
  msgid "Verifying License..."
9859
  msgstr ""
9860
 
9861
- #: languages/vue.php:3635
9862
  msgid "The following plugins will be installed: "
9863
  msgstr ""
9864
 
9865
- #: languages/vue.php:3638
9866
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9867
  msgstr ""
9868
 
9869
- #: languages/vue.php:3641
9870
  msgid "Manually enter your GA4 Measurement ID"
9871
  msgstr ""
9872
 
9873
- #: languages/vue.php:3644
9874
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9875
  msgstr ""
9876
 
9877
- #: languages/vue.php:3647
9878
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
9879
  msgstr ""
9880
 
9881
- #: languages/vue.php:3650
9882
  msgid "Your ExactMetrics license key has expired."
9883
  msgstr ""
9884
 
9885
- #: languages/vue.php:3653
9886
  msgid "Renew today to ensure Google Analytics continues to track properly."
9887
  msgstr ""
9888
 
9889
- #: languages/vue.php:3656
9890
  msgid "Click here."
9891
  msgstr ""
9892
 
9893
- #: languages/vue.php:3659
9894
  msgid "ExactMetrics makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
9895
  msgstr ""
9896
 
9897
- #: languages/vue.php:3662
9898
  msgid "License Expired"
9899
  msgstr ""
9900
 
9901
- #: languages/vue.php:3665
9902
  msgid "Expired"
9903
  msgstr ""
9904
 
9905
  #. Translators: Adds a link to the license renewal.
9906
- #: languages/vue.php:3669
9907
  msgid "To ensure tracking works properly, reactivate your license"
9908
  msgstr ""
9909
 
9910
- #: languages/vue.php:3672
9911
  msgid "Reactivate License"
9912
  msgstr ""
9913
 
9914
- #: languages/vue.php:3675
9915
  msgid "View All Reports"
9916
  msgstr ""
9917
 
9918
- #: languages/vue.php:3678
9919
  msgid "WP Simple Pay"
9920
  msgstr ""
9921
 
9922
  #. Translators: tag to make text italic starts, tag end.
9923
- #: languages/vue.php:3685
9924
  msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
9925
  msgstr ""
9926
 
9927
- #: languages/vue.php:3688
9928
  msgid "UserFeedback lets you easily collect feedback from your website in real time. You can use this important data to increase your traffic, sales, newsletter signups, engagement, and more."
9929
  msgstr ""
9930
 
9931
- #: languages/vue.php:3691
9932
  msgid "Understand exactly why visitors left your website, what convinced them to make a purchase, why they signed up for a newsletter, and more with real verbatim feedback"
9933
  msgstr ""
9934
 
9935
- #: languages/vue.php:3694
9936
  msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
9937
  msgstr ""
9938
 
9939
- #: languages/vue.php:3697
9940
  msgid "Customize targeting rules to get specific feedback on certain pages or products"
9941
  msgstr ""
9942
 
9943
- #: languages/vue.php:3700
9944
  msgid "Easily analyze your responses and export data"
9945
  msgstr ""
9946
 
9947
- #: languages/vue.php:3703
9948
  msgid "Install & Activate UserFeedback"
9949
  msgstr ""
9950
 
9951
- #: languages/vue.php:3706
9952
  msgid "Install UserFeedback by clicking the button below."
9953
  msgstr ""
9954
 
9955
- #: languages/vue.php:3709
9956
  msgid "Install UserFeedback"
9957
  msgstr ""
9958
 
9959
- #: languages/vue.php:3712
9960
  msgid "Set Up UserFeedback"
9961
  msgstr ""
9962
 
9963
- #: languages/vue.php:3715
9964
  msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
9965
  msgstr ""
9966
 
9967
- #: languages/vue.php:3718
9968
  msgid "Start Setup"
9969
  msgstr ""
9970
 
9971
- #: languages/vue.php:3721
9972
  msgid "Installing UserFeedback..."
9973
  msgstr ""
9974
 
9975
- #: languages/vue.php:3724
9976
  msgid "Activating UserFeedback..."
9977
  msgstr ""
9978
 
9979
- #: languages/vue.php:3727
9980
  msgid "Installed & Active"
9981
  msgstr ""
9982
 
9983
- #: languages/vue.php:3730
9984
  msgid "Oops! There was an error processing request. Please try again later."
9985
  msgstr ""
9986
 
9987
- #: languages/vue.php:3733
9988
  msgid "Oops! We could not save your changes. Please try again. If the problem persists, please %1$scontact our support%2$s team."
9989
  msgstr ""
9990
 
9991
- #: languages/vue.php:3736
9992
  msgid "Installing UserFeedback"
9993
  msgstr ""
9994
 
9995
- #: languages/vue.php:3739
9996
  msgid "Activating UserFeedback"
9997
  msgstr ""
9998
 
9999
- #: languages/vue.php:3742
10000
  msgid "Oops! Something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
10001
  msgstr ""
10002
 
10003
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10004
- #: languages/vue.php:3746
10005
  msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
10006
  msgstr ""
10007
 
10008
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10009
- #: languages/vue.php:3750
10010
  msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
10011
  msgstr ""
10012
 
10013
  #. Translators: Support link tag starts with url and support link tag ends.
10014
- #: languages/vue.php:3754
10015
  msgid "Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10016
  msgstr ""
10017
 
10018
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10019
- #: languages/vue.php:3758
10020
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10021
  msgstr ""
10022
 
10023
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10024
- #: languages/vue.php:3762
10025
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10026
  msgstr ""
10027
 
10028
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10029
- #: languages/vue.php:3766
10030
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10031
  msgstr ""
10032
 
10033
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10034
- #: languages/vue.php:3770
10035
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s."
10036
  msgstr ""
10037
 
10038
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10039
- #: languages/vue.php:3774
10040
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10041
  msgstr ""
10042
 
10043
- #: languages/vue.php:3777
10044
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists, please %1$scontact our support team%2$s."
10045
  msgstr ""
10046
 
10047
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10048
- #: languages/vue.php:3781
10049
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10050
  msgstr ""
10051
 
10052
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10053
- #: languages/vue.php:3785
10054
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10055
  msgstr ""
10056
 
10057
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10058
- #: languages/vue.php:3789
10059
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10060
  msgstr ""
10061
 
10062
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10063
- #: languages/vue.php:3793
10064
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10065
  msgstr ""
10066
 
10067
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10068
- #: languages/vue.php:3797
10069
  msgid "Oops! We can't verify deauthentication. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10070
  msgstr ""
10071
 
10072
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10073
- #: languages/vue.php:3801
10074
  msgid "Can't load authentication details. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10075
  msgstr ""
10076
 
10077
  #. Translators: Support page link tag starts and support page link tag ends.
10078
- #: languages/vue.php:3805
10079
  msgid "Oops! There was an error loading your site details. Please refresh the page and try again. If the issue persists, please contact our support team."
10080
  msgstr ""
10081
 
10082
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10083
- #: languages/vue.php:3809
10084
  msgid "Can't save settings. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10085
  msgstr ""
10086
 
10087
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10088
- #: languages/vue.php:3813
10089
  msgid "Oops! We can't authenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10090
  msgstr ""
10091
 
10092
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10093
- #: languages/vue.php:3817
10094
  msgid "Oops! We can't reauthenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team"
10095
  msgstr ""
10096
 
10097
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10098
- #: languages/vue.php:3821
10099
  msgid "Oops! We can't verify credentials. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10100
  msgstr ""
10101
 
10102
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10103
- #: languages/vue.php:3825
10104
  msgid "Can't load report data. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10105
  msgstr ""
10106
 
10107
  #. Translators: Error status and error text.
10108
- #: languages/vue.php:3829
10109
  msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
10110
  msgstr ""
10111
 
10112
  #. Translators: Error status and error text.
10113
- #: languages/vue.php:3833
10114
  msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
10115
  msgstr ""
10116
 
10117
- #: languages/vue.php:3836
10118
  msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
10119
  msgstr ""
10120
 
10121
  #. Translators: Error status and error text.
10122
- #: languages/vue.php:3840
10123
  msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
10124
  msgstr ""
10125
 
10126
  #. Translators: Error status and error text.
10127
- #: languages/vue.php:3844
10128
  msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
10129
  msgstr ""
10130
 
10131
  #. Translators: Error status and error text.
10132
- #: languages/vue.php:3848
10133
  msgid "Oops! Can't install addon. Error: %1$s, %2$s"
10134
  msgstr ""
10135
 
10136
  #. Translators: Support link tag starts with url and support link tag ends.
10137
- #: languages/vue.php:3852
10138
  msgid "Oops! An error occurred while importing your settings. Please ensure you selected the correct file. If the issue continues please %1$scontact our support%2$s team."
10139
  msgstr ""
10140
 
10141
  #. Translators: Support link tag starts with url and support link tag ends.
10142
- #: languages/vue.php:3856
10143
  msgid "Oops! Can't load posts. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10144
  msgstr ""
10145
 
10146
- #: languages/vue.php:3859
10147
  msgid "Website Badge"
10148
  msgstr ""
10149
 
10150
- #: languages/vue.php:3862
10151
  msgid "Publishers Report"
10152
  msgstr ""
10153
 
10154
- #: languages/vue.php:3865
10155
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
10156
  msgstr ""
10157
 
10158
- #: languages/vue.php:3868
10159
  msgid "Top Affilliate Links"
10160
  msgstr ""
10161
 
10162
- #: languages/vue.php:3871
10163
  msgid "Scroll Depth"
10164
  msgstr ""
10165
 
10166
- #: languages/vue.php:3874
10167
  msgid "eCommerce Report"
10168
  msgstr ""
10169
 
10170
- #: languages/vue.php:3877
10171
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
10172
  msgstr ""
10173
 
10174
- #: languages/vue.php:3880
10175
  msgid "10+ eCommerce Integrations"
10176
  msgstr ""
10177
 
10178
- #: languages/vue.php:3883
10179
  msgid "Average Order Value"
10180
  msgstr ""
10181
 
10182
- #: languages/vue.php:3886
10183
  msgid "Total Revenue"
10184
  msgstr ""
10185
 
10186
- #: languages/vue.php:3889
10187
  msgid "Number of Transactions"
10188
  msgstr ""
10189
 
10190
- #: languages/vue.php:3892
10191
  msgid "Increase Engagement and Unlock New Insights About Your Site."
10192
  msgstr ""
10193
 
10194
- #: languages/vue.php:3895
10195
  msgid "User ID Tracking"
10196
  msgstr ""
10197
 
10198
- #: languages/vue.php:3898
10199
  msgid "Post Types"
10200
  msgstr ""
10201
 
10202
- #: languages/vue.php:3901
10203
  msgid "Tag Tracking"
10204
  msgstr ""
10205
 
10206
- #: languages/vue.php:3904
10207
  msgid "Categories"
10208
  msgstr ""
10209
 
10210
- #: languages/vue.php:3907
10211
  msgid "SEO Scores"
10212
  msgstr ""
10213
 
10214
- #: languages/vue.php:3910
10215
  msgid "Publish Times"
10216
  msgstr ""
10217
 
10218
- #: languages/vue.php:3913
10219
  msgid "Focus Keywords"
10220
  msgstr ""
10221
 
10222
- #: languages/vue.php:3916
10223
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
10224
  msgstr ""
10225
 
10226
- #: languages/vue.php:3919
10227
  msgid "Conversion Counts"
10228
  msgstr ""
10229
 
10230
- #: languages/vue.php:3922
10231
  msgid "Impression Counts"
10232
  msgstr ""
10233
 
10234
- #: languages/vue.php:3925
10235
  msgid "Conversion Rates"
10236
  msgstr ""
10237
 
10238
- #: languages/vue.php:3928
10239
  msgid "See Exactly How Visitors Find Your Website From Google."
10240
  msgstr ""
10241
 
10242
- #: languages/vue.php:3931
10243
  msgid "Top Google Search Terms"
10244
  msgstr ""
10245
 
10246
- #: languages/vue.php:3934
10247
  msgid "Number of Clicks"
10248
  msgstr ""
10249
 
10250
- #: languages/vue.php:3937
10251
  msgid "Click-through Ratio"
10252
  msgstr ""
10253
 
10254
- #: languages/vue.php:3940
10255
  msgid "Average Results Position"
10256
  msgstr ""
10257
 
10258
- #: languages/vue.php:3943
10259
  msgid "Realtime Report"
10260
  msgstr ""
10261
 
10262
- #: languages/vue.php:3946
10263
  msgid "See Who And What is Happening on Your Website in Realtime."
10264
  msgstr ""
10265
 
10266
- #: languages/vue.php:3949
10267
  msgid "Top Page Views"
10268
  msgstr ""
10269
 
10270
- #: languages/vue.php:3952
10271
  msgid "Current Active Users"
10272
  msgstr ""
10273
 
10274
- #: languages/vue.php:3955
10275
  msgid "Top Referral Sources"
10276
  msgstr ""
10277
 
10278
- #: languages/vue.php:3958
10279
  msgid "Pageviews Per Minute"
10280
  msgstr ""
10281
 
10282
- #: languages/vue.php:3961
10283
  msgid "Top Countries"
10284
  msgstr ""
10285
 
10286
- #: languages/vue.php:3964
10287
  msgid "Top Cities"
10288
  msgstr ""
10289
 
10290
- #: languages/vue.php:3967
10291
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
10292
  msgstr ""
10293
 
10294
- #: languages/vue.php:3970
10295
  msgid "Overall Site Speed Score"
10296
  msgstr ""
10297
 
10298
- #: languages/vue.php:3973
10299
  msgid "Server Response Times"
10300
  msgstr ""
10301
 
10302
- #: languages/vue.php:3976
10303
  msgid "Mobile and Desktop Scores"
10304
  msgstr ""
10305
 
10306
- #: languages/vue.php:3979
10307
  msgid "First Contentful Paint"
10308
  msgstr ""
10309
 
10310
- #: languages/vue.php:3982
10311
  msgid "Automatic Recommendations"
10312
  msgstr ""
10313
 
10314
- #: languages/vue.php:3985
10315
  msgid "Total Blocking Time"
10316
  msgstr ""
10317
 
10318
- #: languages/vue.php:3988
10319
  msgid "On-Demand Audits"
10320
  msgstr ""
10321
 
10322
- #: languages/vue.php:3991
10323
  msgid "Time to Interactive"
10324
  msgstr ""
10325
 
10326
- #: languages/vue.php:3994
10327
  msgid "Automatic Display"
10328
  msgstr ""
10329
 
10330
- #: languages/vue.php:3997
10331
  msgid "Automatically Display Website Badge in Website Footer"
10332
  msgstr ""
10333
 
10334
- #: languages/vue.php:4000
10335
  msgid "Enabling will add the chosen badge in your website’s footer."
10336
  msgstr ""
10337
 
10338
- #: languages/vue.php:4003
10339
  msgid "Enable Automatic Display"
10340
  msgstr ""
10341
 
10342
- #: languages/vue.php:4006
10343
  msgid "Appearance"
10344
  msgstr ""
10345
 
10346
- #: languages/vue.php:4009
10347
  msgid "Choose your badge style."
10348
  msgstr ""
10349
 
10350
- #: languages/vue.php:4012
10351
  msgid "Position"
10352
  msgstr ""
10353
 
10354
- #: languages/vue.php:4015
10355
  msgid "Select the position of the badge in your website’s footer."
10356
  msgstr ""
10357
 
10358
- #: languages/vue.php:4018
10359
  msgid "Manual Display"
10360
  msgstr ""
10361
 
10362
- #: languages/vue.php:4021
10363
  msgid "Copy"
10364
  msgstr ""
10365
 
10366
- #: languages/vue.php:4024
10367
  msgid "Light"
10368
  msgstr ""
10369
 
10370
- #: languages/vue.php:4027
10371
  msgid "Dark"
10372
  msgstr ""
10373
 
10374
- #: languages/vue.php:4030
10375
  msgid "Left"
10376
  msgstr ""
10377
 
10378
- #: languages/vue.php:4033
10379
  msgid "Center"
10380
  msgstr ""
10381
 
10382
- #: languages/vue.php:4036
10383
  msgid "Right"
10384
  msgstr ""
10385
 
10386
- #: languages/vue.php:4039
10387
  msgid "Show ExactMetrics Badge"
10388
  msgstr ""
10389
 
10390
- #: languages/vue.php:4042
10391
  msgid "Build trust with website visitors by automatically placing a ExactMetrics badge in your website’s footer."
10392
  msgstr ""
10393
 
10394
- #: languages/vue.php:4045
10395
  msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX or GT-XXXXX where the X's are numbers."
10396
  msgstr ""
10397
 
10398
- #: languages/vue.php:4048
10399
  msgid "Conversion Tools"
10400
  msgstr ""
10401
 
10402
- #: languages/vue.php:4051
10403
  msgid "Get the #1 conversion optimization plugin to convert your growing website traffic into subscribers, leads and sales."
10404
  msgstr ""
10405
 
10406
- #: languages/vue.php:4054
10407
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX or GT-XXXXX where the X's are numbers."
10408
  msgstr ""
10409
 
10410
- #: languages/vue.php:4057
10411
  msgid "Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10412
  msgstr ""
10413
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10414
  #: lite/includes/admin/connect.php:42
10415
  msgid "Oops! You are not allowed to install plugins. Please contact your site administrator."
10416
  msgstr ""
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: ExactMetrics Pro 7.10.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-11-07T17:16:09+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.6.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
+ #: languages/vue.php:3506
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
113
  #: includes/admin/admin.php:34
114
  #: includes/admin/admin.php:42
115
  #: includes/admin/admin.php:230
116
+ #: languages/vue.php:564
117
  msgid "Settings"
118
  msgstr ""
119
 
129
 
130
  #: includes/admin/admin.php:39
131
  #: includes/admin/admin.php:131
132
+ #: languages/vue.php:2324
133
  msgid "Reports"
134
  msgstr ""
135
 
139
 
140
  #: includes/admin/admin.php:51
141
  #: languages/gutenberg.php:83
142
+ #: languages/vue.php:1024
143
  msgid "Popular Posts"
144
  msgstr ""
145
 
173
 
174
  #: includes/admin/admin.php:71
175
  #: includes/admin/admin.php:147
176
+ #: languages/vue.php:165
177
  msgid "About Us"
178
  msgstr ""
179
 
192
  #: includes/admin/admin.php:76
193
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
194
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
195
+ #: languages/vue.php:1072
196
  msgid "Upgrade to Pro"
197
  msgstr ""
198
 
220
 
221
  #: includes/admin/admin.php:220
222
  #: includes/admin/admin.php:223
223
+ #: languages/vue.php:1048
224
  msgid "Support"
225
  msgstr ""
226
 
231
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:31
232
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
233
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:31
234
+ #: includes/admin/reports/abstract-report.php:458
235
+ #: languages/vue.php:1179
236
  msgid "Get ExactMetrics Pro"
237
  msgstr ""
238
 
242
  msgstr ""
243
 
244
  #: includes/admin/admin.php:335
245
+ #: languages/vue.php:1170
246
  msgid "Please Setup Website Analytics to See Audience Insights"
247
  msgstr ""
248
 
249
  #: includes/admin/admin.php:336
250
+ #: languages/vue.php:1176
251
  msgid "Connect ExactMetrics and Setup Website Analytics"
252
  msgstr ""
253
 
261
  #: includes/admin/notifications/notification-mobile-device-low-traffic.php:41
262
  #: includes/admin/notifications/notification-returning-visitors.php:43
263
  #: includes/admin/notifications/notification-traffic-dropping.php:43
264
+ #: languages/vue.php:358
265
  msgid "Learn More"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:340
269
+ #: languages/vue.php:1173
270
  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 3 million website owners use ExactMetrics to see the stats that matter and grow their business."
271
  msgstr ""
272
 
277
 
278
  #. Translators: Adds a link to the license renewal.
279
  #: includes/admin/admin.php:363
280
+ #: languages/vue.php:499
281
  msgid "Your license key for ExactMetrics has expired. %1$sPlease click here to renew your license key.%2$s"
282
  msgstr ""
283
 
284
  #: includes/admin/admin.php:365
285
+ #: languages/vue.php:502
286
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
287
  msgstr ""
288
 
289
  #: includes/admin/admin.php:367
290
  #: includes/admin/api-auth.php:303
291
+ #: languages/vue.php:505
292
  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."
293
  msgstr ""
294
 
485
  msgstr ""
486
 
487
  #: includes/admin/common.php:951
488
+ #: languages/vue.php:3351
489
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
490
  msgstr ""
491
 
506
 
507
  #: includes/admin/exclude-page-metabox.php:144
508
  #: languages/gutenberg.php:354
509
+ #: languages/vue.php:3137
510
  msgid "Upgrade"
511
  msgstr ""
512
 
703
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:25
704
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:25
705
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:25
706
+ #: languages/vue.php:1761
707
  #: lite/includes/admin/helpers.php:85
708
  msgid "Upgrade to ExactMetrics Pro"
709
  msgstr ""
738
 
739
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
740
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
741
+ #: includes/admin/reports/abstract-report.php:455
742
+ #: languages/vue.php:242
743
  msgid "Upgrade Now"
744
  msgstr ""
745
 
860
  msgid "Invalid date range."
861
  msgstr ""
862
 
863
+ #: includes/admin/reports/abstract-report.php:299
864
  msgid "You must be properly authenticated with ExactMetrics to use our reports. Please use our %1$ssetup wizard%2$s to get started."
865
  msgstr ""
866
 
867
  #. Translators: Placeholders add the license level and the report title.
868
+ #: includes/admin/reports/abstract-report.php:386
869
  msgid "You currently have a %1$s level license, but this report requires at least a %2$s level license to view the %3$s. Please upgrade to view this report."
870
  msgstr ""
871
 
872
+ #: includes/admin/reports/abstract-report.php:400
873
  msgid "Ready to Get Analytics Super-Powers?"
874
  msgstr ""
875
 
876
+ #: includes/admin/reports/abstract-report.php:402
877
  msgid "(And Crush Your Competition?)"
878
  msgstr ""
879
 
880
  #. Translators: License level and smiley.
881
+ #: includes/admin/reports/abstract-report.php:408
882
  msgid "Hey there! It looks like you've got the %1$s license installed on your site. That's awesome! %s"
883
  msgstr ""
884
 
885
  #. Translators: Placeholders add the report title and license level.
886
+ #: includes/admin/reports/abstract-report.php:415
887
  msgid "Do you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with the %3$s level%4$s of our paid packages. You'll need to upgrade your license to get instant access."
888
  msgstr ""
889
 
890
  #. Translators: Placeholdes add links to the account area and a guide.
891
+ #: includes/admin/reports/abstract-report.php:422
892
  msgid "It's easy! To upgrade, navigate to %1$sMy Account%2$s on ExactMetrics.com, go to the licenses tab, and click upgrade. We also have a %3$sstep by step guide%4$s with pictures of this process."
893
  msgstr ""
894
 
895
+ #: includes/admin/reports/abstract-report.php:426
896
+ #: includes/admin/reports/abstract-report.php:449
897
  msgid "If you have any questions, don't hesitate to reach out. We're here to help."
898
  msgstr ""
899
 
900
  #. Translators: Placeholder adds a smiley face.
901
+ #: includes/admin/reports/abstract-report.php:431
902
  msgid "Hey there! %s It looks like you've got the free version of ExactMetrics installed on your site. That's awesome!"
903
  msgstr ""
904
 
905
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
906
+ #: includes/admin/reports/abstract-report.php:438
907
  msgid "Do you you want to access to %1$s reporting right now%2$s in your WordPress Dashboard? That comes with %3$s level%4$s of our paid packages. To get instant access, you'll want to buy a ExactMetrics license, which also gives you access to powerful addons, expanded reporting (including the ability to use custom date ranges), comprehensive tracking features (like UserID tracking) and access to our world-class support team."
908
  msgstr ""
909
 
910
  #. Translators: Placeholders make the text bold, add the license level and add a link to upgrade.
911
+ #: includes/admin/reports/abstract-report.php:445
912
  msgid "Upgrading is easy! To upgrade, navigate to %1$ssour pricing page%2$s, purchase the required license, and then follow the %3$sinstructions in the email receipt%4$s to upgrade. It only takes a few minutes to unlock the most powerful, yet easy to use analytics tracking system for WordPress."
913
  msgstr ""
914
 
915
+ #: includes/admin/reports/abstract-report.php:492
916
  msgid "Please ask your webmaster to enable this addon."
917
  msgstr ""
918
 
919
  #: includes/admin/reports/overview.php:34
920
+ #: languages/vue.php:461
921
  msgid "Overview"
922
  msgstr ""
923
 
1018
  msgstr ""
1019
 
1020
  #: includes/admin/routes.php:535
1021
+ #: languages/vue.php:3704
1022
  msgid "Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required."
1023
  msgstr ""
1024
 
1474
  msgstr ""
1475
 
1476
  #: includes/gutenberg/headline-tool/headline-tool.php:318
1477
+ #: languages/vue.php:570
1478
  msgid "General"
1479
  msgstr ""
1480
 
3704
  msgstr ""
3705
 
3706
  #: includes/helpers.php:430
3707
+ #: includes/helpers.php:1938
3708
  msgid "Canada"
3709
  msgstr ""
3710
 
3711
  #: includes/helpers.php:431
3712
+ #: includes/helpers.php:1983
3713
  msgid "United Kingdom"
3714
  msgstr ""
3715
 
3750
  msgstr ""
3751
 
3752
  #: includes/helpers.php:441
3753
+ #: includes/helpers.php:1931
3754
  msgid "Antigua and Barbuda"
3755
  msgstr ""
3756
 
3767
  msgstr ""
3768
 
3769
  #: includes/helpers.php:445
3770
+ #: includes/helpers.php:1932
3771
  msgid "Australia"
3772
  msgstr ""
3773
 
3792
  msgstr ""
3793
 
3794
  #: includes/helpers.php:451
3795
+ #: includes/helpers.php:1933
3796
  msgid "Barbados"
3797
  msgstr ""
3798
 
3805
  msgstr ""
3806
 
3807
  #: includes/helpers.php:454
3808
+ #: includes/helpers.php:1934
3809
  msgid "Belize"
3810
  msgstr ""
3811
 
3834
  msgstr ""
3835
 
3836
  #: includes/helpers.php:461
3837
+ #: includes/helpers.php:1935
3838
  msgid "Botswana"
3839
  msgstr ""
3840
 
3863
  msgstr ""
3864
 
3865
  #: includes/helpers.php:468
3866
+ #: includes/helpers.php:1936
3867
  msgid "Burundi"
3868
  msgstr ""
3869
 
3872
  msgstr ""
3873
 
3874
  #: includes/helpers.php:470
3875
+ #: includes/helpers.php:1937
3876
  msgid "Cameroon"
3877
  msgstr ""
3878
 
3965
  msgstr ""
3966
 
3967
  #: includes/helpers.php:493
3968
+ #: includes/helpers.php:1939
3969
  msgid "Dominica"
3970
  msgstr ""
3971
 
4014
  msgstr ""
4015
 
4016
  #: includes/helpers.php:505
4017
+ #: includes/helpers.php:1940
4018
  msgid "Fiji"
4019
  msgstr ""
4020
 
4043
  msgstr ""
4044
 
4045
  #: includes/helpers.php:512
4046
+ #: includes/helpers.php:1943
4047
  msgid "Gambia"
4048
  msgstr ""
4049
 
4060
  msgstr ""
4061
 
4062
  #: includes/helpers.php:516
4063
+ #: includes/helpers.php:1944
4064
  msgid "Ghana"
4065
  msgstr ""
4066
 
4073
  msgstr ""
4074
 
4075
  #: includes/helpers.php:519
4076
+ #: includes/helpers.php:1941
4077
  msgid "Grenada"
4078
  msgstr ""
4079
 
4102
  msgstr ""
4103
 
4104
  #: includes/helpers.php:526
4105
+ #: includes/helpers.php:1942
4106
  msgid "Guyana"
4107
  msgstr ""
4108
 
4135
  msgstr ""
4136
 
4137
  #: includes/helpers.php:534
4138
+ #: includes/helpers.php:1946
4139
  msgid "India"
4140
  msgstr ""
4141
 
4152
  msgstr ""
4153
 
4154
  #: includes/helpers.php:538
4155
+ #: includes/helpers.php:1945
4156
  msgid "Ireland"
4157
  msgstr ""
4158
 
4169
  msgstr ""
4170
 
4171
  #: includes/helpers.php:542
4172
+ #: includes/helpers.php:1947
4173
  msgid "Jamaica"
4174
  msgstr ""
4175
 
4190
  msgstr ""
4191
 
4192
  #: includes/helpers.php:547
4193
+ #: includes/helpers.php:1948
4194
  msgid "Kenya"
4195
  msgstr ""
4196
 
4197
  #: includes/helpers.php:548
4198
+ #: includes/helpers.php:1949
4199
  msgid "Kiribati"
4200
  msgstr ""
4201
 
4220
  msgstr ""
4221
 
4222
  #: includes/helpers.php:554
4223
+ #: includes/helpers.php:1950
4224
  msgid "Lesotho"
4225
  msgstr ""
4226
 
4227
  #: includes/helpers.php:555
4228
+ #: includes/helpers.php:1951
4229
  msgid "Liberia"
4230
  msgstr ""
4231
 
4258
  msgstr ""
4259
 
4260
  #: includes/helpers.php:563
4261
+ #: includes/helpers.php:1952
4262
  msgid "Malawi"
4263
  msgstr ""
4264
 
4275
  msgstr ""
4276
 
4277
  #: includes/helpers.php:567
4278
+ #: includes/helpers.php:1953
4279
  msgid "Malta"
4280
  msgstr ""
4281
 
4282
  #: includes/helpers.php:568
4283
+ #: includes/helpers.php:1954
4284
  msgid "Marshall Islands"
4285
  msgstr ""
4286
 
4293
  msgstr ""
4294
 
4295
  #: includes/helpers.php:571
4296
+ #: includes/helpers.php:1955
4297
  msgid "Mauritius"
4298
  msgstr ""
4299
 
4306
  msgstr ""
4307
 
4308
  #: includes/helpers.php:574
4309
+ #: includes/helpers.php:1956
4310
  msgid "Micronesia"
4311
  msgstr ""
4312
 
4343
  msgstr ""
4344
 
4345
  #: includes/helpers.php:583
4346
+ #: includes/helpers.php:1958
4347
  msgid "Namibia"
4348
  msgstr ""
4349
 
4350
  #: includes/helpers.php:584
4351
+ #: includes/helpers.php:1959
4352
  msgid "Nauru"
4353
  msgstr ""
4354
 
4369
  msgstr ""
4370
 
4371
  #: includes/helpers.php:589
4372
+ #: includes/helpers.php:1957
4373
  msgid "New Zealand"
4374
  msgstr ""
4375
 
4382
  msgstr ""
4383
 
4384
  #: includes/helpers.php:592
4385
+ #: includes/helpers.php:1960
4386
  msgid "Nigeria"
4387
  msgstr ""
4388
 
4411
  msgstr ""
4412
 
4413
  #: includes/helpers.php:599
4414
+ #: includes/helpers.php:1961
4415
  msgid "Pakistan"
4416
  msgstr ""
4417
 
4418
  #: includes/helpers.php:600
4419
+ #: includes/helpers.php:1962
4420
  msgid "Palau"
4421
  msgstr ""
4422
 
4429
  msgstr ""
4430
 
4431
  #: includes/helpers.php:603
4432
+ #: includes/helpers.php:1963
4433
  msgid "Papua New Guinea"
4434
  msgstr ""
4435
 
4442
  msgstr ""
4443
 
4444
  #: includes/helpers.php:606
4445
+ #: includes/helpers.php:1964
4446
  msgid "Philippines"
4447
  msgstr ""
4448
 
4483
  msgstr ""
4484
 
4485
  #: includes/helpers.php:616
4486
+ #: includes/helpers.php:1965
4487
  msgid "Rwanda"
4488
  msgstr ""
4489
 
4540
  msgstr ""
4541
 
4542
  #: includes/helpers.php:630
4543
+ #: includes/helpers.php:1972
4544
  msgid "Seychelles"
4545
  msgstr ""
4546
 
4547
  #: includes/helpers.php:631
4548
+ #: includes/helpers.php:1973
4549
  msgid "Sierra Leone"
4550
  msgstr ""
4551
 
4552
  #: includes/helpers.php:632
4553
+ #: includes/helpers.php:1966
4554
  msgid "Singapore"
4555
  msgstr ""
4556
 
4563
  msgstr ""
4564
 
4565
  #: includes/helpers.php:635
4566
+ #: includes/helpers.php:1974
4567
  msgid "Solomon Islands"
4568
  msgstr ""
4569
 
4572
  msgstr ""
4573
 
4574
  #: includes/helpers.php:637
4575
+ #: includes/helpers.php:1975
4576
  msgid "South Africa"
4577
  msgstr ""
4578
 
4585
  msgstr ""
4586
 
4587
  #: includes/helpers.php:640
4588
+ #: includes/helpers.php:1976
4589
  msgid "South Sudan"
4590
  msgstr ""
4591
 
4598
  msgstr ""
4599
 
4600
  #: includes/helpers.php:643
4601
+ #: includes/helpers.php:1977
4602
  msgid "Sudan"
4603
  msgstr ""
4604
 
4611
  msgstr ""
4612
 
4613
  #: includes/helpers.php:646
4614
+ #: includes/helpers.php:1970
4615
  msgid "Swaziland"
4616
  msgstr ""
4617
 
4636
  msgstr ""
4637
 
4638
  #: includes/helpers.php:652
4639
+ #: includes/helpers.php:1980
4640
  msgid "Tanzania"
4641
  msgstr ""
4642
 
4657
  msgstr ""
4658
 
4659
  #: includes/helpers.php:657
4660
+ #: includes/helpers.php:1981
4661
  msgid "Tonga"
4662
  msgstr ""
4663
 
4664
  #: includes/helpers.php:658
4665
+ #: includes/helpers.php:1978
4666
  msgid "Trinidad and Tobago"
4667
  msgstr ""
4668
 
4683
  msgstr ""
4684
 
4685
  #: includes/helpers.php:663
4686
+ #: includes/helpers.php:1982
4687
  msgid "Tuvalu"
4688
  msgstr ""
4689
 
4690
  #: includes/helpers.php:664
4691
+ #: includes/helpers.php:1985
4692
  msgid "Uganda"
4693
  msgstr ""
4694
 
4713
  msgstr ""
4714
 
4715
  #: includes/helpers.php:670
4716
+ #: includes/helpers.php:1986
4717
  msgid "Vanuatu"
4718
  msgstr ""
4719
 
4750
  msgstr ""
4751
 
4752
  #: includes/helpers.php:679
4753
+ #: includes/helpers.php:1987
4754
  msgid "Zambia"
4755
  msgstr ""
4756
 
4757
  #: includes/helpers.php:680
4758
+ #: includes/helpers.php:1988
4759
  msgid "Zimbabwe"
4760
  msgstr ""
4761
 
4773
  msgid "%1$sWe have detected multiple tracking codes%2$s! You should remove non-ExactMetrics ones. If you need help finding them please %3$sread this article%4$s."
4774
  msgstr ""
4775
 
4776
+ #: includes/helpers.php:1967
4777
  msgid "St Kitts and Nevis"
4778
  msgstr ""
4779
 
4780
+ #: includes/helpers.php:1968
4781
  msgid "St Lucia"
4782
  msgstr ""
4783
 
4784
+ #: includes/helpers.php:1969
4785
  msgid "St Vincent and the Grenadines"
4786
  msgstr ""
4787
 
4788
+ #: includes/helpers.php:1971
4789
  msgid "Samoa"
4790
  msgstr ""
4791
 
4792
+ #: includes/helpers.php:1979
4793
  msgid "The Bahamas"
4794
  msgstr ""
4795
 
4796
+ #: includes/helpers.php:1984
4797
  msgid "United States of America"
4798
  msgstr ""
4799
 
4874
  msgstr ""
4875
 
4876
  #: languages/gutenberg.php:77
4877
+ #: languages/vue.php:555
4878
  msgid "Inline Popular Posts"
4879
  msgstr ""
4880
 
4911
  msgstr ""
4912
 
4913
  #: languages/gutenberg.php:107
4914
+ #: languages/vue.php:3093
4915
  msgid "Wide-Layout Options"
4916
  msgstr ""
4917
 
4920
  msgstr ""
4921
 
4922
  #: languages/gutenberg.php:113
4923
+ #: languages/vue.php:3096
4924
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4925
  msgstr ""
4926
 
4927
  #: languages/gutenberg.php:116
4928
+ #: languages/vue.php:3117
4929
  msgid "Post Count"
4930
  msgstr ""
4931
 
4934
  msgstr ""
4935
 
4936
  #: languages/gutenberg.php:122
4937
+ #: languages/vue.php:3099
4938
  msgid "Display Options"
4939
  msgstr ""
4940
 
4947
  msgstr ""
4948
 
4949
  #: languages/gutenberg.php:131
4950
+ #: languages/vue.php:1977
4951
  msgid "Widget Title"
4952
  msgstr ""
4953
 
4956
  msgstr ""
4957
 
4958
  #: languages/gutenberg.php:137
4959
+ #: languages/vue.php:3105
4960
  msgid "Display Author"
4961
  msgstr ""
4962
 
4963
  #: languages/gutenberg.php:140
4964
+ #: languages/vue.php:3108
4965
  msgid "Display Date"
4966
  msgstr ""
4967
 
4968
  #: languages/gutenberg.php:143
4969
+ #: languages/vue.php:3111
4970
  msgid "Display Comments"
4971
  msgstr ""
4972
 
5187
  msgstr ""
5188
 
5189
  #: languages/gutenberg.php:312
5190
+ #: languages/vue.php:1012
5191
  msgid "Headline Analyzer"
5192
  msgstr ""
5193
 
5200
  msgstr ""
5201
 
5202
  #: languages/gutenberg.php:321
5203
+ #: languages/vue.php:116
5204
  #: lite/includes/admin/metaboxes.php:47
5205
  msgid "Last 30 days"
5206
  msgstr ""
5212
  msgstr ""
5213
 
5214
  #: languages/gutenberg.php:327
5215
+ #: languages/vue.php:1330
5216
  #: lite/includes/admin/metaboxes.php:65
5217
  #: lite/includes/admin/metaboxes.php:127
5218
  msgid "Bounce Rate"
5268
  msgid "Loading Settings"
5269
  msgstr ""
5270
 
5271
+ #: languages/vue.php:14
5272
  msgid "Please wait..."
5273
  msgstr ""
5274
 
5275
+ #: languages/vue.php:17
5276
  msgid "Saving Changes..."
5277
  msgstr ""
5278
 
5279
+ #: languages/vue.php:20
5280
  msgid "Settings Updated"
5281
  msgstr ""
5282
 
5283
  #. Translators: Add a link to the onboarding wizard.
5284
+ #: languages/vue.php:24
5285
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5286
  msgstr ""
5287
 
5288
+ #: languages/vue.php:27
5289
  msgid "Could Not Save Changes"
5290
  msgstr ""
5291
 
5292
+ #: languages/vue.php:30
5293
  msgid "Loading new report data"
5294
  msgstr ""
5295
 
5296
+ #. Translators: Adds an arrow icon.
5297
+ #: languages/vue.php:34
5298
  msgid "Continue %s"
5299
  msgstr ""
5300
 
5301
+ #: languages/vue.php:39
5302
  msgid "Error"
5303
  msgstr ""
5304
 
5305
+ #: languages/vue.php:43
5306
  msgid "Please try again."
5307
  msgstr ""
5308
 
5309
+ #: languages/vue.php:46
5310
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
5311
  msgstr ""
5312
 
5313
+ #: languages/vue.php:49
5314
  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."
5315
  msgstr ""
5316
 
5317
+ #: languages/vue.php:52
5318
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5319
  msgstr ""
5320
 
5321
+ #: languages/vue.php:55
5322
  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."
5323
  msgstr ""
5324
 
5325
+ #: languages/vue.php:58
5326
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5327
  msgstr ""
5328
 
5329
+ #: languages/vue.php:61
5330
  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."
5331
  msgstr ""
5332
 
5333
+ #: languages/vue.php:64
5334
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5335
  msgstr ""
5336
 
5337
+ #: languages/vue.php:67
5338
  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."
5339
  msgstr ""
5340
 
5341
+ #: languages/vue.php:70
5342
  msgid "Unlock the Forms Report and Improve Conversions"
5343
  msgstr ""
5344
 
5345
+ #: languages/vue.php:73
5346
  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."
5347
  msgstr ""
5348
 
5349
+ #: languages/vue.php:76
5350
  msgid "Unlock the Search Console Report and See How People Find Your Website"
5351
  msgstr ""
5352
 
5353
+ #: languages/vue.php:79
5354
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
5355
  msgstr ""
5356
 
5357
+ #: languages/vue.php:82
5358
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
5359
  msgstr ""
5360
 
5361
+ #: languages/vue.php:85
5362
  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."
5363
  msgstr ""
5364
 
5365
+ #: languages/vue.php:88
5366
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5367
  msgstr ""
5368
 
5369
+ #: languages/vue.php:91
5370
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5371
  msgstr ""
5372
 
5374
  msgid "Today"
5375
  msgstr ""
5376
 
5377
+ #: languages/vue.php:103
5378
  msgid "Last Week"
5379
  msgstr ""
5380
 
5381
+ #: languages/vue.php:107
5382
  msgid "Last Month"
5383
  msgstr ""
5384
 
5385
+ #: languages/vue.php:111
5386
  msgid "Last 7 days"
5387
  msgstr ""
5388
 
5389
+ #: languages/vue.php:119
5390
  msgid "Loading settings"
5391
  msgstr ""
5392
 
5393
  #. Translators: Number of visitors.
5394
+ #: languages/vue.php:123
5395
  msgid "See how %s visitors found your site!"
5396
  msgstr ""
5397
 
5398
  #. Translators: Number of visitors.
5399
+ #: languages/vue.php:127
5400
  msgid "Your website was visited by %s users in the last 30 days."
5401
  msgstr ""
5402
 
5403
+ #: languages/vue.php:130
5404
  msgid "See the full analytics report!"
5405
  msgstr ""
5406
 
5407
+ #: languages/vue.php:133
5408
  msgid "Overview Report"
5409
  msgstr ""
5410
 
5411
  #. Translators: Current PHP version and recommended PHP version.
5412
+ #: languages/vue.php:137
5413
  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."
5414
  msgstr ""
5415
 
5416
  #. Translators: Current WordPress version.
5417
+ #: languages/vue.php:141
5418
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). ExactMetrics will stop supporting WordPress versions lower than 4.9 in 2020. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5419
  msgstr ""
5420
 
5421
+ #: languages/vue.php:144
5422
  msgid "Yikes! PHP Update Required"
5423
  msgstr ""
5424
 
5425
  #. Translators: Current PHP version and recommended PHP version.
5426
+ #: languages/vue.php:148
5427
  msgid "ExactMetrics has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure."
5428
  msgstr ""
5429
 
5430
+ #: languages/vue.php:151
5431
  msgid "Learn more about updating PHP"
5432
  msgstr ""
5433
 
5434
+ #: languages/vue.php:154
5435
  msgid "Yikes! WordPress Update Required"
5436
  msgstr ""
5437
 
5438
  #. Translators: Current WordPress version.
5439
+ #: languages/vue.php:158
5440
  msgid "ExactMetrics has detected that your site is running an outdated version of WordPress (%s). Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
5441
  msgstr ""
5442
 
5443
+ #: languages/vue.php:161
5444
  msgid "Learn more about updating WordPress"
5445
  msgstr ""
5446
 
5447
+ #: languages/vue.php:169
5448
  msgid "Getting Started"
5449
  msgstr ""
5450
 
5451
+ #: languages/vue.php:173
5452
  msgid "Lite vs Pro"
5453
  msgstr ""
5454
 
5455
+ #: languages/vue.php:176
5456
  msgid "Success! "
5457
  msgstr ""
5458
 
5459
+ #: languages/vue.php:179
5460
  msgid "You're now using ExactMetrics Pro with all the features."
5461
  msgstr ""
5462
 
5463
  #. Translators: Placeholder gets replaced with an arrow icon.
5464
+ #: languages/vue.php:183
5465
  msgid "Get Started %s"
5466
  msgstr ""
5467
 
5468
  #. Translators: Error status and error text.
5469
+ #: languages/vue.php:187
5470
  msgid "Can't load report data. Error: %1$s, %2$s"
5471
  msgstr ""
5472
 
5473
+ #: languages/vue.php:190
5474
  msgid "Error loading report data"
5475
  msgstr ""
5476
 
5477
  #. Translators: Makes text bold.
5478
+ #: languages/vue.php:195
5479
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5480
  msgstr ""
5481
 
5482
  #. Translators: Makes text bold.
5483
+ #: languages/vue.php:200
5484
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5485
  msgstr ""
5486
 
5487
  #. Translators: Makes text bold.
5488
+ #: languages/vue.php:205
5489
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5490
  msgstr ""
5491
 
5492
  #. Translators: Makes text bold.
5493
+ #: languages/vue.php:209
5494
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5495
  msgstr ""
5496
 
5497
  #. Translators: Makes text bold.
5498
+ #: languages/vue.php:214
5499
  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."
5500
  msgstr ""
5501
 
5502
  #. Translators: Makes text bold.
5503
+ #: languages/vue.php:219
5504
  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."
5505
  msgstr ""
5506
 
5507
  #. Translators: Makes text bold.
5508
+ #: languages/vue.php:224
5509
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5510
  msgstr ""
5511
 
5512
  #. Translators: Makes text bold.
5513
+ #: languages/vue.php:228
5514
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5515
  msgstr ""
5516
 
5517
  #. Translators: Adds link to the features page.
5518
+ #: languages/vue.php:233
5519
  msgid "%1$sSee All Features%2$s"
5520
  msgstr ""
5521
 
5522
+ #: languages/vue.php:236
5523
  msgid "Pro Plan"
5524
  msgstr ""
5525
 
5526
+ #: languages/vue.php:239
5527
  msgid "per year"
5528
  msgstr ""
5529
 
5530
+ #: languages/vue.php:245
5531
  msgid "Upgrade to ExactMetrics Pro Now"
5532
  msgstr ""
5533
 
5534
+ #: languages/vue.php:248
5535
  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!"
5536
  msgstr ""
5537
 
5538
+ #: languages/vue.php:251
5539
  msgid "Daniel Monaghan - Experienced"
5540
  msgstr ""
5541
 
5542
+ #: languages/vue.php:254
5543
  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."
5544
  msgstr ""
5545
 
5546
+ #: languages/vue.php:257
5547
  msgid "Naomi Spirit - From This Day"
5548
  msgstr ""
5549
 
5550
+ #: languages/vue.php:260
5551
  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!"
5552
  msgstr ""
5553
 
5554
+ #: languages/vue.php:263
5555
  msgid "Julie Dupuis - Faraway Land Travel"
5556
  msgstr ""
5557
 
5558
+ #: languages/vue.php:267
5559
  msgid "Guides and Documentation:"
5560
  msgstr ""
5561
 
5562
+ #: languages/vue.php:275
5563
  msgid "Upgrade to PRO"
5564
  msgstr ""
5565
 
5566
+ #: languages/vue.php:278
5567
  msgid "eCommerce Tracking"
5568
  msgstr ""
5569
 
5570
+ #: languages/vue.php:281
5571
  msgid "Custom Dimensions"
5572
  msgstr ""
5573
 
5574
+ #: languages/vue.php:284
5575
  msgid "Form Tracking"
5576
  msgstr ""
5577
 
5578
+ #: languages/vue.php:287
5579
  msgid "AMP Support"
5580
  msgstr ""
5581
 
5582
+ #: languages/vue.php:290
5583
  msgid "Author Tracking"
5584
  msgstr ""
5585
 
5586
+ #: languages/vue.php:293
5587
  msgid "EU Compliance Addon"
5588
  msgstr ""
5589
 
5590
+ #: languages/vue.php:296
5591
  msgid "Real Time Report"
5592
  msgstr ""
5593
 
5594
+ #: languages/vue.php:299
5595
  msgid "Google Optimize"
5596
  msgstr ""
5597
 
5598
+ #: languages/vue.php:303
5599
  #: lite/includes/admin/reports/report-queries.php:22
5600
  msgid "Search Console"
5601
  msgstr ""
5602
 
5603
+ #: languages/vue.php:306
5604
  msgid "Custom Date Ranges"
5605
  msgstr ""
5606
 
5607
+ #: languages/vue.php:309
5608
+ #: languages/vue.php:951
5609
  msgid "Getting Started with ExactMetrics"
5610
  msgstr ""
5611
 
5612
+ #: languages/vue.php:312
5613
+ #: languages/vue.php:954
5614
  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."
5615
  msgstr ""
5616
 
5617
+ #: languages/vue.php:316
5618
  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."
5619
  msgstr ""
5620
 
5621
+ #: languages/vue.php:320
5622
  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!."
5623
  msgstr ""
5624
 
5625
+ #: languages/vue.php:324
5626
  msgid "Launch the wizard!"
5627
  msgstr ""
5628
 
5629
+ #: languages/vue.php:327
5630
  msgid "Welcome to"
5631
  msgstr ""
5632
 
5633
  #. Translators: Adds a line break.
5634
+ #: languages/vue.php:332
5635
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5636
  msgstr ""
5637
 
5638
  #. Translators: Makes text bold.
5639
+ #: languages/vue.php:337
5640
  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."
5641
  msgstr ""
5642
 
5643
+ #: languages/vue.php:341
5644
  msgid "ExactMetrics Features & Addons"
5645
  msgstr ""
5646
 
5647
+ #: languages/vue.php:345
5648
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5649
  msgstr ""
5650
 
5651
  #. Translators: Placeholder is replaced with WPForms.
5652
+ #: languages/vue.php:349
5653
  msgid "Recommended Plugin: %s"
5654
  msgstr ""
5655
 
5656
+ #: languages/vue.php:352
5657
  msgid "Install"
5658
  msgstr ""
5659
 
5660
+ #: languages/vue.php:355
5661
  msgid "Activate"
5662
  msgstr ""
5663
 
5664
+ #: languages/vue.php:361
5665
  msgid "ExactMetrics encountered an error loading your report data"
5666
  msgstr ""
5667
 
5668
+ #: languages/vue.php:364
5669
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5670
  msgstr ""
5671
 
5672
+ #: languages/vue.php:367
5673
+ #: languages/vue.php:1874
5674
  msgid "Reconnect ExactMetrics"
5675
  msgstr ""
5676
 
5677
+ #: languages/vue.php:370
5678
  msgid "Re-Authenticating"
5679
  msgstr ""
5680
 
5681
+ #: languages/vue.php:373
5682
  msgid "Ok"
5683
  msgstr ""
5684
 
5685
+ #: languages/vue.php:376
5686
+ #: languages/vue.php:890
5687
  msgid "ExactMetrics Addons"
5688
  msgstr ""
5689
 
5690
+ #: languages/vue.php:379
5691
  msgid "Search Addons"
5692
  msgstr ""
5693
 
5694
+ #: languages/vue.php:382
5695
  msgid "Save Changes"
5696
  msgstr ""
5697
 
5698
+ #: languages/vue.php:385
5699
  msgid "Exit Setup"
5700
  msgstr ""
5701
 
5702
+ #: languages/vue.php:388
5703
  msgid "Time to Purchase"
5704
  msgstr ""
5705
 
5706
+ #: languages/vue.php:391
5707
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5708
  msgstr ""
5709
 
5710
+ #: languages/vue.php:394
5711
  msgid "Sessions to Purchase"
5712
  msgstr ""
5713
 
5714
+ #: languages/vue.php:397
5715
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5716
  msgstr ""
5717
 
5718
+ #: languages/vue.php:400
5719
  msgid "New Customers"
5720
  msgstr ""
5721
 
5722
+ #: languages/vue.php:403
5723
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5724
  msgstr ""
5725
 
5726
+ #: languages/vue.php:406
5727
  msgid "Abandoned Checkouts"
5728
  msgstr ""
5729
 
5730
+ #: languages/vue.php:409
5731
  msgid "This list shows the percentage of carts that never went through the checkout process."
5732
  msgstr ""
5733
 
5734
+ #: languages/vue.php:412
5735
  msgid "Top Posts/Pages"
5736
  msgstr ""
5737
 
5738
+ #: languages/vue.php:415
5739
  msgid "This list shows the most viewed posts and pages on your website."
5740
  msgstr ""
5741
 
5742
+ #: languages/vue.php:418
5743
  msgid "New vs. Returning Visitors"
5744
  msgstr ""
5745
 
5746
+ #: languages/vue.php:421
5747
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5748
  msgstr ""
5749
 
5750
+ #: languages/vue.php:424
5751
  msgid "Device Breakdown"
5752
  msgstr ""
5753
 
5754
+ #: languages/vue.php:427
5755
  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."
5756
  msgstr ""
5757
 
5758
+ #: languages/vue.php:430
5759
  msgid "Top Landing Pages"
5760
  msgstr ""
5761
 
5762
+ #: languages/vue.php:433
5763
  msgid "This list shows the top pages users first land on when visiting your website."
5764
  msgstr ""
5765
 
5766
+ #: languages/vue.php:436
5767
  msgid "Top Exit Pages"
5768
  msgstr ""
5769
 
5770
+ #: languages/vue.php:439
5771
  msgid "This list shows the top pages users exit your website from."
5772
  msgstr ""
5773
 
5774
+ #: languages/vue.php:442
5775
  msgid "Top Outbound Links"
5776
  msgstr ""
5777
 
5778
+ #: languages/vue.php:445
5779
  msgid "This list shows the top links clicked on your website that go to another website."
5780
  msgstr ""
5781
 
5782
+ #: languages/vue.php:448
5783
  msgid "Top Affiliate Links"
5784
  msgstr ""
5785
 
5786
+ #: languages/vue.php:451
5787
  msgid "This list shows the top affiliate links your visitors clicked on."
5788
  msgstr ""
5789
 
5790
+ #: languages/vue.php:454
5791
  msgid "Top Download Links"
5792
  msgstr ""
5793
 
5794
+ #: languages/vue.php:457
5795
  msgid "This list shows the download links your visitors clicked the most."
5796
  msgstr ""
5797
 
5798
+ #: languages/vue.php:464
5799
  msgid "Top Products"
5800
  msgstr ""
5801
 
5802
+ #: languages/vue.php:467
5803
  msgid "This list shows the top selling products on your website."
5804
  msgstr ""
5805
 
5806
+ #: languages/vue.php:470
5807
  msgid "Top Conversion Sources"
5808
  msgstr ""
5809
 
5810
+ #: languages/vue.php:473
5811
  msgid "This list shows the top referral websites in terms of product revenue."
5812
  msgstr ""
5813
 
5814
+ #: languages/vue.php:476
5815
  msgid "Total Add/Remove"
5816
  msgstr ""
5817
 
5818
+ #: languages/vue.php:479
5819
  msgid "Analytics"
5820
  msgstr ""
5821
 
5822
  #. Translators: Adds an arrow icon.
5823
+ #: languages/vue.php:483
5824
  msgid "View All Reports %s"
5825
  msgstr ""
5826
 
5827
+ #: languages/vue.php:486
5828
  msgid "You must connect with ExactMetrics before you can view reports."
5829
  msgstr ""
5830
 
5831
+ #: languages/vue.php:489
5832
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5833
  msgstr ""
5834
 
5835
+ #: languages/vue.php:492
5836
  msgid "Launch Setup Wizard"
5837
  msgstr ""
5838
 
5839
+ #: languages/vue.php:495
5840
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5841
  msgstr ""
5842
 
5843
+ #: languages/vue.php:508
5844
  msgid "See Quick Links"
5845
  msgstr ""
5846
 
5847
+ #: languages/vue.php:511
5848
  msgid "Suggest a Feature"
5849
  msgstr ""
5850
 
5851
+ #: languages/vue.php:514
5852
  msgid "Join Our Community"
5853
  msgstr ""
5854
 
5855
+ #: languages/vue.php:517
5856
  msgid "Support & Docs"
5857
  msgstr ""
5858
 
5859
+ #: languages/vue.php:520
5860
  msgid "Upgrade to Pro &#187;"
5861
  msgstr ""
5862
 
5863
+ #: languages/vue.php:523
5864
  #: lite/includes/admin/reports/report-publisher.php:22
5865
  msgid "Publishers"
5866
  msgstr ""
5867
 
5868
+ #: languages/vue.php:528
5869
  #: lite/includes/admin/reports/report-ecommerce.php:22
5870
  msgid "eCommerce"
5871
  msgstr ""
5872
 
5873
+ #: languages/vue.php:531
5874
  msgid "Dimensions Report"
5875
  msgstr ""
5876
 
5877
+ #: languages/vue.php:535
5878
  #: lite/includes/admin/reports/report-forms.php:22
5879
  msgid "Forms"
5880
  msgstr ""
5881
 
5882
+ #: languages/vue.php:539
5883
  msgid "Real-Time"
5884
  msgstr ""
5885
 
5886
+ #: languages/vue.php:542
5887
  msgid "Site Speed Report"
5888
  msgstr ""
5889
 
5890
+ #: languages/vue.php:546
5891
  msgid "2020 Year in Review"
5892
  msgstr ""
5893
 
5894
+ #: languages/vue.php:549
5895
  msgid "Import Export"
5896
  msgstr ""
5897
 
5898
+ #: languages/vue.php:552
5899
  msgid "PrettyLinks Integration"
5900
  msgstr ""
5901
 
5902
+ #: languages/vue.php:558
5903
  msgid "Popular Posts Widget"
5904
  msgstr ""
5905
 
5906
+ #: languages/vue.php:561
5907
  msgid "Popular Products"
5908
  msgstr ""
5909
 
5910
+ #: languages/vue.php:567
5911
  msgid "Sub menu item for WooCommerce Analytics"
5912
  msgstr ""
5913
 
5914
+ #: languages/vue.php:573
5915
  msgid "Engagement"
5916
  msgstr ""
5917
 
5918
+ #: languages/vue.php:576
5919
  msgid "Publisher"
5920
  msgstr ""
5921
 
5922
+ #: languages/vue.php:579
5923
  msgid "Conversions"
5924
  msgstr ""
5925
 
5926
+ #: languages/vue.php:582
5927
  msgid "Advanced"
5928
  msgstr ""
5929
 
5930
+ #: languages/vue.php:585
5931
  msgid "URL Builder"
5932
  msgstr ""
5933
 
5934
  #. Translators: Adds a link to documentation.
5935
+ #: languages/vue.php:589
5936
  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"
5937
  msgstr ""
5938
 
5939
  #. Translators: Adds link to activate/install plugin and documentation.
5940
+ #: languages/vue.php:593
5941
  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"
5942
  msgstr ""
5943
 
5944
  #. Translators: Adds a link to documentation.
5945
+ #: languages/vue.php:597
5946
  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"
5947
  msgstr ""
5948
 
5949
  #. Translators: Adds link to activate/install plugin and documentation.
5950
+ #: languages/vue.php:601
5951
  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"
5952
  msgstr ""
5953
 
5954
+ #: languages/vue.php:604
5955
  msgid "Installing Addon"
5956
  msgstr ""
5957
 
5958
+ #: languages/vue.php:607
5959
  msgid "Activating Addon"
5960
  msgstr ""
5961
 
5962
+ #: languages/vue.php:610
5963
  msgid "Addon Activated"
5964
  msgstr ""
5965
 
5966
+ #: languages/vue.php:613
5967
  msgid "Loading report data"
5968
  msgstr ""
5969
 
5970
+ #: languages/vue.php:616
5971
  msgid "Please activate manually"
5972
  msgstr ""
5973
 
5974
  #. Translators: Adds the error status and status text.
5975
+ #: languages/vue.php:620
5976
  msgid "Error: %1$s, %2$s"
5977
  msgstr ""
5978
 
5979
+ #: languages/vue.php:623
5980
  msgid "Error Activating Addon"
5981
  msgstr ""
5982
 
5983
+ #: languages/vue.php:626
5984
  #: lite/includes/admin/wp-site-health.php:375
5985
  #: lite/includes/admin/wp-site-health.php:401
5986
  #: lite/includes/admin/wp-site-health.php:428
5987
  msgid "View Addons"
5988
  msgstr ""
5989
 
5990
+ #: languages/vue.php:629
5991
  msgid "Dismiss"
5992
  msgstr ""
5993
 
5994
+ #: languages/vue.php:632
5995
  msgid "Redirecting"
5996
  msgstr ""
5997
 
5998
+ #: languages/vue.php:635
5999
  msgid "Please wait"
6000
  msgstr ""
6001
 
6002
+ #: languages/vue.php:638
6003
  msgid "activate"
6004
  msgstr ""
6005
 
6006
+ #: languages/vue.php:641
6007
  msgid "install"
6008
  msgstr ""
6009
 
6010
+ #: languages/vue.php:644
6011
  msgid "Visit addons page"
6012
  msgstr ""
6013
 
6014
+ #: languages/vue.php:647
6015
  msgid "Report Unavailable"
6016
  msgstr ""
6017
 
6018
  #. Translators: Install/Activate the addon.
6019
+ #: languages/vue.php:651
6020
  msgid "%s Addon"
6021
  msgstr ""
6022
 
6023
+ #: languages/vue.php:654
6024
  msgid "Go Back To Reports"
6025
  msgstr ""
6026
 
6027
+ #: languages/vue.php:657
6028
  msgid "Enable Enhanced eCommerce"
6029
  msgstr ""
6030
 
6031
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
6032
+ #: languages/vue.php:661
6033
  msgid "Step %1$s of %2$s"
6034
  msgstr ""
6035
 
6036
+ #: languages/vue.php:664
6037
  msgid "Go back"
6038
  msgstr ""
6039
 
6040
+ #: languages/vue.php:667
6041
  msgid "Welcome to ExactMetrics!"
6042
  msgstr ""
6043
 
6044
+ #: languages/vue.php:670
6045
  msgid "Let's get you set up."
6046
  msgstr ""
6047
 
6048
+ #: languages/vue.php:673
6049
  msgid "Save and Continue"
6050
  msgstr ""
6051
 
6052
+ #: languages/vue.php:676
6053
  msgid "Which category best describes your website?"
6054
  msgstr ""
6055
 
6056
+ #: languages/vue.php:679
6057
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
6058
  msgstr ""
6059
 
6060
+ #: languages/vue.php:682
6061
  msgid "Business Website"
6062
  msgstr ""
6063
 
6064
  #. Translators: Make text bold.
6065
+ #: languages/vue.php:686
6066
  msgid "Publisher %1$s(Blog)%2$s"
6067
  msgstr ""
6068
 
6069
+ #: languages/vue.php:689
6070
  msgid "Ecommerce"
6071
  msgstr ""
6072
 
6073
+ #: languages/vue.php:692
6074
  msgid "Connect ExactMetrics to Your Website"
6075
  msgstr ""
6076
 
6077
+ #: languages/vue.php:695
6078
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
6079
  msgstr ""
6080
 
6081
+ #: languages/vue.php:698
6082
  msgid "Connect Google Analytics + WordPress"
6083
  msgstr ""
6084
 
6085
+ #: languages/vue.php:701
6086
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
6087
  msgstr ""
6088
 
6089
+ #: languages/vue.php:704
6090
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
6091
  msgstr ""
6092
 
6093
+ #: languages/vue.php:707
6094
  msgid "Manually enter your UA code"
6095
  msgstr ""
6096
 
6097
+ #: languages/vue.php:710
6098
  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."
6099
  msgstr ""
6100
 
6101
+ #: languages/vue.php:713
6102
  msgid "UA code can't be empty"
6103
  msgstr ""
6104
 
6105
+ #: languages/vue.php:716
6106
  msgid "Saving UA code..."
6107
  msgstr ""
6108
 
6109
+ #: languages/vue.php:719
6110
  msgid "ExactMetrics Recommends WPForms"
6111
  msgstr ""
6112
 
6113
+ #: languages/vue.php:722
6114
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6115
  msgstr ""
6116
 
6117
+ #: languages/vue.php:725
6118
  msgid "Used on over 4,000,000 websites!"
6119
  msgstr ""
6120
 
6121
+ #: languages/vue.php:728
6122
  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!"
6123
  msgstr ""
6124
 
6125
+ #: languages/vue.php:731
6126
  msgid "Skip this Step"
6127
  msgstr ""
6128
 
6129
+ #: languages/vue.php:734
6130
  msgid "Continue & Install WPForms"
6131
  msgstr ""
6132
 
6133
+ #: languages/vue.php:738
6134
  msgid "Installing..."
6135
  msgstr ""
6136
 
6137
+ #: languages/vue.php:741
6138
  msgid "Recommended Settings"
6139
  msgstr ""
6140
 
6141
+ #: languages/vue.php:744
6142
  msgid "ExactMetrics recommends the following settings based on your configuration."
6143
  msgstr ""
6144
 
6145
+ #: languages/vue.php:747
6146
  msgid "Events Tracking"
6147
  msgstr ""
6148
 
6149
+ #: languages/vue.php:750
6150
  msgid "Must have for all click tracking on site."
6151
  msgstr ""
6152
 
6153
+ #: languages/vue.php:753
6154
  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."
6155
  msgstr ""
6156
 
6157
+ #: languages/vue.php:756
6158
  msgid "Enhanced Link Attribution"
6159
  msgstr ""
6160
 
6161
+ #: languages/vue.php:759
6162
  msgid "Improves the accuracy of your In-Page Analytics."
6163
  msgstr ""
6164
 
6165
+ #: languages/vue.php:762
6166
  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."
6167
  msgstr ""
6168
 
6169
+ #: languages/vue.php:765
6170
  msgid "Install Updates Automatically"
6171
  msgstr ""
6172
 
6173
+ #: languages/vue.php:768
6174
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6175
  msgstr ""
6176
 
6177
+ #: languages/vue.php:771
6178
  msgid "To ensure you get the latest bug fixes and security updates and avoid needing to spend time logging into your WordPress site to update ExactMetrics, we offer the ability to automatically have ExactMetrics update itself."
6179
  msgstr ""
6180
 
6181
+ #: languages/vue.php:774
6182
  msgid "File Download Tracking"
6183
  msgstr ""
6184
 
6185
+ #: languages/vue.php:777
6186
  msgid "Helps you see file downloads data."
6187
  msgstr ""
6188
 
6189
+ #: languages/vue.php:780
6190
  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."
6191
  msgstr ""
6192
 
6193
  #. Translators: Example path (/go/).
6194
+ #: languages/vue.php:784
6195
  msgid "Path (example: %s)"
6196
  msgstr ""
6197
 
6198
+ #: languages/vue.php:787
6199
  msgid "Path has to start with a / and have no spaces"
6200
  msgstr ""
6201
 
6202
  #. Translators: Example label (aff).
6203
+ #: languages/vue.php:791
6204
  msgid "Label (example: %s)"
6205
  msgstr ""
6206
 
6207
+ #: languages/vue.php:794
6208
  msgid "Label can't contain any spaces"
6209
  msgstr ""
6210
 
6211
+ #: languages/vue.php:797
6212
  msgid "Helps you increase affiliate revenue."
6213
  msgstr ""
6214
 
6215
+ #: languages/vue.php:800
6216
  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."
6217
  msgstr ""
6218
 
6219
+ #: languages/vue.php:803
6220
  msgid "Affiliate Link Tracking"
6221
  msgstr ""
6222
 
6223
+ #: languages/vue.php:806
6224
  msgid "Who Can See Reports"
6225
  msgstr ""
6226
 
6227
+ #: languages/vue.php:809
6228
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6229
  msgstr ""
6230
 
6231
+ #: languages/vue.php:812
6232
  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."
6233
  msgstr ""
6234
 
6235
+ #: languages/vue.php:815
6236
  msgid "Save and continue"
6237
  msgstr ""
6238
 
6239
+ #: languages/vue.php:818
6240
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6241
  msgstr ""
6242
 
6243
+ #: languages/vue.php:821
6244
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6245
  msgstr ""
6246
 
6247
+ #: languages/vue.php:824
6248
  msgid "+ Add Role"
6249
  msgstr ""
6250
 
6251
  #. Translators: Placeholders are used for making text bold and adding a link.
6252
+ #: languages/vue.php:828
6253
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6254
  msgstr ""
6255
 
6256
+ #: languages/vue.php:831
6257
  #: lite/includes/admin/reports/report-dimensions.php:22
6258
  msgid "Dimensions"
6259
  msgstr ""
6260
 
6261
+ #: languages/vue.php:834
6262
  msgid "Site Speed"
6263
  msgstr ""
6264
 
6265
+ #: languages/vue.php:837
6266
  msgid "License Key"
6267
  msgstr ""
6268
 
6269
  #. Translators: Add link to retrieve license key from account.
6270
+ #: languages/vue.php:841
6271
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6272
  msgstr ""
6273
 
6274
+ #: languages/vue.php:844
6275
  msgid "Google Authentication"
6276
  msgstr ""
6277
 
6278
+ #: languages/vue.php:848
6279
  msgid "Miscellaneous"
6280
  msgstr ""
6281
 
6282
+ #: languages/vue.php:852
6283
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6284
  msgstr ""
6285
 
6286
+ #: languages/vue.php:856
6287
  msgid "Hide Announcements"
6288
  msgstr ""
6289
 
6290
+ #: languages/vue.php:859
6291
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6292
  msgstr ""
6293
 
6294
  #. Translators: Adds link to upgrade.
6295
+ #: languages/vue.php:863
6296
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6297
  msgstr ""
6298
 
6299
+ #: languages/vue.php:866
6300
  msgid "Receive 50% off automatically applied at the checkout!"
6301
  msgstr ""
6302
 
6303
+ #: languages/vue.php:869
6304
  msgid "See all features"
6305
  msgstr ""
6306
 
6307
+ #: languages/vue.php:872
6308
  msgid "Setup Wizard"
6309
  msgstr ""
6310
 
6311
+ #: languages/vue.php:875
6312
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6313
  msgstr ""
6314
 
6315
+ #: languages/vue.php:878
6316
  msgid "Relaunch Setup Wizard"
6317
  msgstr ""
6318
 
6319
+ #: languages/vue.php:881
6320
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6321
  msgstr ""
6322
 
6323
+ #: languages/vue.php:884
6324
  msgid "No addons found."
6325
  msgstr ""
6326
 
6327
+ #: languages/vue.php:887
6328
  msgid "Refresh Addons"
6329
  msgstr ""
6330
 
6331
  #. Translators: Adds a line break.
6332
+ #: languages/vue.php:894
6333
  msgid "Upgrade to Pro to unlock addons and other great features."
6334
  msgstr ""
6335
 
6336
+ #: languages/vue.php:897
6337
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6338
  msgstr ""
6339
 
6340
+ #: languages/vue.php:900
6341
  msgid "Refreshing Addons"
6342
  msgstr ""
6343
 
6344
+ #: languages/vue.php:903
6345
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6346
  msgstr ""
6347
 
6348
  #. Translators: Placeholders make the text green.
6349
+ #: languages/vue.php:907
6350
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6351
  msgstr ""
6352
 
6353
+ #: languages/vue.php:910
6354
  msgid "How to Connect to Google Analytics"
6355
  msgstr ""
6356
 
6357
+ #: languages/vue.php:913
6358
  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."
6359
  msgstr ""
6360
 
6361
+ #: languages/vue.php:916
6362
  msgid "Guide and Checklist for Advanced Insights"
6363
  msgstr ""
6364
 
6365
+ #: languages/vue.php:919
6366
  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."
6367
  msgstr ""
6368
 
6369
+ #: languages/vue.php:922
6370
  msgid "GDPR Guide"
6371
  msgstr ""
6372
 
6373
+ #: languages/vue.php:925
6374
  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. "
6375
  msgstr ""
6376
 
6377
+ #: languages/vue.php:928
6378
  msgid "How to Install and Activate ExactMetrics Addons"
6379
  msgstr ""
6380
 
6381
+ #: languages/vue.php:931
6382
  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."
6383
  msgstr ""
6384
 
6385
+ #: languages/vue.php:934
6386
  msgid "Enabling eCommerce Tracking and Reports"
6387
  msgstr ""
6388
 
6389
+ #: languages/vue.php:937
6390
  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."
6391
  msgstr ""
6392
 
6393
+ #: languages/vue.php:940
6394
  msgid "Read Documentation"
6395
  msgstr ""
6396
 
6397
  #. Translators: Makes the text bold.
6398
+ #: languages/vue.php:944
6399
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6400
  msgstr ""
6401
 
6402
  #. Translators: Makes the text bold.
6403
+ #: languages/vue.php:948
6404
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6405
  msgstr ""
6406
 
6407
+ #: languages/vue.php:957
6408
  msgid "One-click Complete eCommerce tracking"
6409
  msgstr ""
6410
 
6411
+ #: languages/vue.php:960
6412
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6413
  msgstr ""
6414
 
6415
+ #: languages/vue.php:963
6416
  msgid "Forms Tracking"
6417
  msgstr ""
6418
 
6419
+ #: languages/vue.php:966
6420
  msgid "One-click Form Events Tracking"
6421
  msgstr ""
6422
 
6423
+ #: languages/vue.php:969
6424
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6425
  msgstr ""
6426
 
6427
+ #: languages/vue.php:972
6428
  msgid "WordPress Admin Area Reports"
6429
  msgstr ""
6430
 
6431
+ #: languages/vue.php:975
6432
  msgid "Standard Reports"
6433
  msgstr ""
6434
 
6435
+ #: languages/vue.php:978
6436
  msgid "Overview Reports for the last 30 days."
6437
  msgstr ""
6438
 
6439
+ #: languages/vue.php:981
6440
  msgid "Advanced Reports"
6441
  msgstr ""
6442
 
6443
+ #: languages/vue.php:984
6444
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6445
  msgstr ""
6446
 
6447
+ #: languages/vue.php:987
6448
  msgid "Dashboard Widget"
6449
  msgstr ""
6450
 
6451
+ #: languages/vue.php:990
6452
  msgid "Basic Widget"
6453
  msgstr ""
6454
 
6455
+ #: languages/vue.php:993
6456
  msgid "Overview Report Synopsis"
6457
  msgstr ""
6458
 
6459
+ #: languages/vue.php:996
6460
  msgid "Advanced Dashboard Widget"
6461
  msgstr ""
6462
 
6463
+ #: languages/vue.php:999
6464
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6465
  msgstr ""
6466
 
6467
+ #: languages/vue.php:1002
6468
  msgid "Publisher Reports"
6469
  msgstr ""
6470
 
6471
+ #: languages/vue.php:1005
6472
  msgid "Advanced Publisher Reports & Tracking"
6473
  msgstr ""
6474
 
6475
+ #: languages/vue.php:1008
6476
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6477
  msgstr ""
6478
 
6479
+ #: languages/vue.php:1015
6480
  msgid "Email Summaries"
6481
  msgstr ""
6482
 
6483
+ #: languages/vue.php:1018
6484
  msgid "Included"
6485
  msgstr ""
6486
 
6487
+ #: languages/vue.php:1021
6488
  msgid "Get weekly traffic reports directly in your inbox."
6489
  msgstr ""
6490
 
6491
+ #: languages/vue.php:1027
6492
  msgid "Basic Options"
6493
  msgstr ""
6494
 
6495
+ #: languages/vue.php:1030
6496
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6497
  msgstr ""
6498
 
6499
+ #: languages/vue.php:1033
6500
  msgid "Dynamic Popular Posts & Popular Products"
6501
  msgstr ""
6502
 
6503
+ #: languages/vue.php:1036
6504
  msgid "Display Popular Posts based on your actual traffic data from Google Analytics and choose from over 20 advanced themes. Display Popular WooCommerce products using widgets or Gutenberg blocks."
6505
  msgstr ""
6506
 
6507
+ #: languages/vue.php:1039
6508
  msgid "Not Available"
6509
  msgstr ""
6510
 
6511
+ #: languages/vue.php:1042
6512
  msgid "Complete Custom Dimensions Tracking"
6513
  msgstr ""
6514
 
6515
+ #: languages/vue.php:1045
6516
  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"
6517
  msgstr ""
6518
 
6519
+ #: languages/vue.php:1051
6520
  msgid "Limited Support"
6521
  msgstr ""
6522
 
6523
+ #: languages/vue.php:1054
6524
  msgid "Priority Support"
6525
  msgstr ""
6526
 
6527
+ #: languages/vue.php:1057
6528
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6529
  msgstr ""
6530
 
6531
+ #: languages/vue.php:1060
6532
  msgid "Feature"
6533
  msgstr ""
6534
 
6535
+ #: languages/vue.php:1063
6536
  msgid "Lite"
6537
  msgstr ""
6538
 
6539
+ #: languages/vue.php:1066
6540
  msgid "Pro"
6541
  msgstr ""
6542
 
6543
+ #: languages/vue.php:1069
6544
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6545
  msgstr ""
6546
 
6547
+ #: languages/vue.php:1075
6548
  msgid "Universal Tracking"
6549
  msgstr ""
6550
 
6551
+ #: languages/vue.php:1078
6552
  msgid "Custom Google Analytics Link Tracking"
6553
  msgstr ""
6554
 
6555
+ #: languages/vue.php:1081
6556
  msgid "Standard Tracking"
6557
  msgstr ""
6558
 
6559
+ #: languages/vue.php:1084
6560
  msgid "Advanced Tracking"
6561
  msgstr ""
6562
 
6563
+ #: languages/vue.php:1087
6564
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6565
  msgstr ""
6566
 
6567
+ #: languages/vue.php:1090
6568
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6569
  msgstr ""
6570
 
6571
+ #: languages/vue.php:1093
6572
  msgid "No-Code-Needed Tracking Features"
6573
  msgstr ""
6574
 
6575
+ #: languages/vue.php:1096
6576
  msgid "Basic Tracking Options"
6577
  msgstr ""
6578
 
6579
+ #: languages/vue.php:1099
6580
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6581
  msgstr ""
6582
 
6583
+ #: languages/vue.php:1102
6584
  msgid "Advanced Tracking Options"
6585
  msgstr ""
6586
 
6587
+ #: languages/vue.php:1105
6588
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6589
  msgstr ""
6590
 
6591
+ #: languages/vue.php:1108
6592
  msgid "Inbox"
6593
  msgstr ""
6594
 
6595
+ #: languages/vue.php:1111
6596
  msgid "Back to Inbox"
6597
  msgstr ""
6598
 
6599
+ #: languages/vue.php:1114
6600
  msgid "View Dismissed"
6601
  msgstr ""
6602
 
6603
+ #: languages/vue.php:1117
6604
  msgid "Notifications"
6605
  msgstr ""
6606
 
6607
+ #: languages/vue.php:1120
6608
  msgid "Dismiss All"
6609
  msgstr ""
6610
 
6611
+ #: languages/vue.php:1123
6612
  msgid "Dismissed"
6613
  msgstr ""
6614
 
6615
+ #: languages/vue.php:1126
6616
  msgid "No Notifications"
6617
  msgstr ""
6618
 
6619
  #. Translators: Error status and error text.
6620
+ #: languages/vue.php:1130
6621
  msgid "Can't load settings. Error: %1$s, %2$s"
6622
  msgstr ""
6623
 
6624
+ #: languages/vue.php:1133
6625
  msgid "You appear to be offline."
6626
  msgstr ""
6627
 
6628
  #. Translators: Error status and error text.
6629
+ #: languages/vue.php:1137
6630
  msgid "Can't save settings. Error: %1$s, %2$s"
6631
  msgstr ""
6632
 
6633
+ #: languages/vue.php:1140
6634
  msgid "Network error encountered. Settings not saved."
6635
  msgstr ""
6636
 
6637
+ #: languages/vue.php:1143
6638
  msgid "Show in widget mode"
6639
  msgstr ""
6640
 
6641
+ #: languages/vue.php:1146
6642
  msgid "Show in full-width mode"
6643
  msgstr ""
6644
 
6645
+ #: languages/vue.php:1149
6646
  msgid "Show Overview Reports"
6647
  msgstr ""
6648
 
6649
+ #: languages/vue.php:1152
6650
  msgid "Show Publishers Reports"
6651
  msgstr ""
6652
 
6653
+ #: languages/vue.php:1155
6654
  msgid "Show eCommerce Reports"
6655
  msgstr ""
6656
 
6657
+ #: languages/vue.php:1158
6658
  msgid "Settings Menu"
6659
  msgstr ""
6660
 
6661
+ #: languages/vue.php:1161
6662
  msgid "Available in PRO version"
6663
  msgstr ""
6664
 
6665
+ #: languages/vue.php:1164
6666
  msgid "See All Reports"
6667
  msgstr ""
6668
 
6669
+ #: languages/vue.php:1167
6670
  msgid "Go to the Analytics Dashboard"
6671
  msgstr ""
6672
 
6673
+ #: languages/vue.php:1182
6674
  msgid "Cart Funnel"
6675
  msgstr ""
6676
 
6677
+ #: languages/vue.php:1185
6678
  msgid "Customer Insights"
6679
  msgstr ""
6680
 
6681
+ #: languages/vue.php:1188
6682
  msgid "Campaign Measurement"
6683
  msgstr ""
6684
 
6685
+ #: languages/vue.php:1191
6686
  msgid "Customer Profiles"
6687
  msgstr ""
6688
 
6689
+ #: languages/vue.php:1194
6690
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6691
  msgstr ""
6692
 
6693
+ #: languages/vue.php:1197
6694
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6695
  msgstr ""
6696
 
6697
+ #: languages/vue.php:1200
6698
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6699
  msgstr ""
6700
 
6701
+ #: languages/vue.php:1203
6702
  msgid "Track all-new metrics!"
6703
  msgstr ""
6704
 
6705
+ #: languages/vue.php:1206
6706
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6707
  msgstr ""
6708
 
6709
+ #: languages/vue.php:1209
6710
  msgid "FEATURES"
6711
  msgstr ""
6712
 
6713
+ #: languages/vue.php:1212
6714
  msgid "Get The Unique Metrics Neccessary for Growth"
6715
  msgstr ""
6716
 
6717
+ #: languages/vue.php:1215
6718
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6719
  msgstr ""
6720
 
6721
+ #: languages/vue.php:1218
6722
  msgid "Get Answers to the important questions %1$syou should know."
6723
  msgstr ""
6724
 
6725
+ #: languages/vue.php:1221
6726
  msgid "Did the login/registration step of the checkout put users off?"
6727
  msgstr ""
6728
 
6729
+ #: languages/vue.php:1224
6730
  msgid "Which ad campaign is driving the most revenue?"
6731
  msgstr ""
6732
 
6733
+ #: languages/vue.php:1227
6734
  msgid "Who is my typical customer?"
6735
  msgstr ""
6736
 
6737
+ #: languages/vue.php:1230
6738
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6739
  msgstr ""
6740
 
6741
  #. Translators: Error status and error text.
6742
+ #: languages/vue.php:1234
6743
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6744
  msgstr ""
6745
 
6746
  #. Translators: Error status and error text.
6747
+ #: languages/vue.php:1238
6748
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6749
  msgstr ""
6750
 
6751
  #. Translators: Error status and error text.
6752
+ #: languages/vue.php:1242
6753
  msgid "Can't load license details. Error: %1$s, %2$s"
6754
  msgstr ""
6755
 
6756
+ #: languages/vue.php:1245
6757
  msgid "Error loading license details"
6758
  msgstr ""
6759
 
6760
  #. Translators: Error status and error text.
6761
+ #: languages/vue.php:1249
6762
  msgid "Can't verify the license. Error: %1$s, %2$s"
6763
  msgstr ""
6764
 
6765
  #. Translators: Error status and error text.
6766
+ #: languages/vue.php:1253
6767
  msgid "Can't validate the license. Error: %1$s, %2$s"
6768
  msgstr ""
6769
 
6770
+ #: languages/vue.php:1256
6771
  msgid "Reset to default"
6772
  msgstr ""
6773
 
6774
+ #: languages/vue.php:1259
6775
  msgid "The value entered does not match the required format"
6776
  msgstr ""
6777
 
6778
+ #: languages/vue.php:1262
6779
  msgid "Check out the newly added classic mode"
6780
  msgstr ""
6781
 
6782
  #. Translators: Placeholder adds a line break.
6783
+ #: languages/vue.php:1266
6784
  msgid "You can customize your %sdate range only in the PRO version."
6785
  msgstr ""
6786
 
6787
+ #: languages/vue.php:1269
6788
  msgid "Help Us Improve"
6789
  msgstr ""
6790
 
6791
+ #: languages/vue.php:1272
6792
  msgid "Help us better understand our users and their website needs."
6793
  msgstr ""
6794
 
6795
  #. Translators: Adds a link to the documentation.
6796
+ #: languages/vue.php:1276
6797
  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"
6798
  msgstr ""
6799
 
6800
  #. Translators: The name of the field that is throwing a validation error.
6801
+ #: languages/vue.php:1280
6802
  msgid "%s can't be empty."
6803
  msgstr ""
6804
 
6805
+ #: languages/vue.php:1283
6806
  msgid "Duplicate values are not allowed."
6807
  msgstr ""
6808
 
6809
+ #: languages/vue.php:1286
6810
  msgid "You can add maximum 5 items."
6811
  msgstr ""
6812
 
6813
+ #: languages/vue.php:1289
6814
  msgid "At least 0 item required."
6815
  msgstr ""
6816
 
6817
+ #: languages/vue.php:1292
6818
  msgid "Add Another Link Path"
6819
  msgstr ""
6820
 
6821
+ #: languages/vue.php:1295
6822
  msgid "Remove row"
6823
  msgstr ""
6824
 
6825
+ #: languages/vue.php:1298
6826
  msgid "Sessions"
6827
  msgstr ""
6828
 
6829
  #. Translators: Line break.
6830
+ #: languages/vue.php:1302
6831
  msgid "Unique %s Sessions"
6832
  msgstr ""
6833
 
6834
+ #: languages/vue.php:1305
6835
  msgid "Pageviews"
6836
  msgstr ""
6837
 
6838
  #. Translators: Line break.
6839
+ #: languages/vue.php:1309
6840
  msgid "Unique %s Pageviews"
6841
  msgstr ""
6842
 
6843
+ #: languages/vue.php:1312
6844
  msgid "A session is the browsing session of a single user to your site."
6845
  msgstr ""
6846
 
6847
+ #: languages/vue.php:1315
6848
  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."
6849
  msgstr ""
6850
 
6851
+ #: languages/vue.php:1318
6852
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6853
  msgstr ""
6854
 
6855
+ #: languages/vue.php:1321
6856
  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."
6857
  msgstr ""
6858
 
6859
+ #: languages/vue.php:1324
6860
  msgid "The number of distinct tracked users"
6861
  msgstr ""
6862
 
6863
+ #: languages/vue.php:1327
6864
  msgid "Avg. Session Duration"
6865
  msgstr ""
6866
 
6867
+ #: languages/vue.php:1333
6868
  msgid "Total Users"
6869
  msgstr ""
6870
 
6871
+ #: languages/vue.php:1336
6872
  msgid "No options available"
6873
  msgstr ""
6874
 
6875
  #. Translators: Placeholders make the text highlighted.
6876
+ #: languages/vue.php:1340
6877
  msgid "%1$sNeed%2$s to Grow FASTER??"
6878
  msgstr ""
6879
 
6880
+ #: languages/vue.php:1343
6881
  msgid "Get additional, actionable insights by going Pro."
6882
  msgstr ""
6883
 
6884
+ #: languages/vue.php:1346
6885
  msgid "Skip"
6886
  msgstr ""
6887
 
6888
+ #: languages/vue.php:1349
6889
  msgid "See All Features"
6890
  msgstr ""
6891
 
6892
+ #: languages/vue.php:1352
6893
  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."
6894
  msgstr ""
6895
 
6896
+ #: languages/vue.php:1355
6897
  msgid "Our Pro plan includes:"
6898
  msgstr ""
6899
 
6900
  #. Translators: Error status and error text.
6901
+ #: languages/vue.php:1359
6902
  msgid "Can't load errors. Error: %1$s, %2$s"
6903
  msgstr ""
6904
 
6905
+ #: languages/vue.php:1362
6906
  msgid "Real-Time Report"
6907
  msgstr ""
6908
 
6909
+ #: languages/vue.php:1365
6910
  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."
6911
  msgstr ""
6912
 
6913
  #. Translators: add link to blog.
6914
+ #: languages/vue.php:1369
6915
  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."
6916
  msgstr ""
6917
 
6918
+ #: languages/vue.php:1373
6919
  msgid "Here's what you get:"
6920
  msgstr ""
6921
 
6922
+ #: languages/vue.php:1376
6923
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6924
  msgstr ""
6925
 
6926
+ #: languages/vue.php:1379
6927
  msgid "See Your Top Pages Immediately After Making Changes"
6928
  msgstr ""
6929
 
6930
+ #: languages/vue.php:1382
6931
  msgid "See Your Top Referral Sources and Adapt Faster"
6932
  msgstr ""
6933
 
6934
+ #: languages/vue.php:1385
6935
  msgid "See Your Traffic Demographics"
6936
  msgstr ""
6937
 
6938
+ #: languages/vue.php:1388
6939
  msgid "Get Fresh Report Data Every 60 Seconds"
6940
  msgstr ""
6941
 
6942
+ #: languages/vue.php:1391
6943
  msgid "See Where Your Visitors are Connecting From (country & city)"
6944
  msgstr ""
6945
 
6946
+ #: languages/vue.php:1395
6947
  msgid "Forms Report"
6948
  msgstr ""
6949
 
6950
+ #: languages/vue.php:1398
6951
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6952
  msgstr ""
6953
 
6954
+ #: languages/vue.php:1401
6955
  msgid "See Your Top Converting Forms and Optimize"
6956
  msgstr ""
6957
 
6958
+ #: languages/vue.php:1404
6959
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6960
  msgstr ""
6961
 
6962
+ #: languages/vue.php:1407
6963
  msgid "Awesome, You're All Set!"
6964
  msgstr ""
6965
 
6966
+ #: languages/vue.php:1410
6967
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6968
  msgstr ""
6969
 
6970
  #. Translators: Make text bold.
6971
+ #: languages/vue.php:1414
6972
  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."
6973
  msgstr ""
6974
 
6975
  #. Translators: Add link to blog.
6976
  #. Translators: Link to our blog.
6977
+ #: languages/vue.php:1418
6978
+ #: languages/vue.php:3618
6979
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6980
  msgstr ""
6981
 
6982
+ #: languages/vue.php:1421
6983
  msgid "Finish Setup & Exit Wizard"
6984
  msgstr ""
6985
 
6986
+ #: languages/vue.php:1424
6987
  msgid "Google Analytics"
6988
  msgstr ""
6989
 
6990
+ #: languages/vue.php:1427
6991
  msgid "Subscribe"
6992
  msgstr ""
6993
 
6994
+ #: languages/vue.php:1430
6995
  msgid "Checking your website..."
6996
  msgstr ""
6997
 
6998
+ #: languages/vue.php:1433
6999
  msgid "Recommended Addons"
7000
  msgstr ""
7001
 
7002
  #. Translators: Add a link to upgrade and make the text green.
7003
+ #: languages/vue.php:1437
7004
  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!"
7005
  msgstr ""
7006
 
7007
+ #: languages/vue.php:1440
7008
  msgid "Upgrade to PRO Now"
7009
  msgstr ""
7010
 
7011
+ #: languages/vue.php:1443
7012
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
7013
  msgstr ""
7014
 
7015
+ #: languages/vue.php:1446
7016
  msgid "See All Your Important Store Metrics in One Place."
7017
  msgstr ""
7018
 
7019
+ #: languages/vue.php:1449
7020
  msgid "... and more:"
7021
  msgstr ""
7022
 
7023
+ #: languages/vue.php:1452
7024
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
7025
  msgstr ""
7026
 
7027
+ #: languages/vue.php:1455
7028
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
7029
  msgstr ""
7030
 
7031
+ #: languages/vue.php:1458
7032
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
7033
  msgstr ""
7034
 
7035
+ #: languages/vue.php:1461
7036
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
7037
  msgstr ""
7038
 
7039
+ #: languages/vue.php:1464
7040
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
7041
  msgstr ""
7042
 
7043
+ #: languages/vue.php:1467
7044
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
7045
  msgstr ""
7046
 
7047
+ #: languages/vue.php:1470
7048
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
7049
  msgstr ""
7050
 
7051
+ #: languages/vue.php:1473
7052
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
7053
  msgstr ""
7054
 
7055
+ #: languages/vue.php:1476
7056
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
7057
  msgstr ""
7058
 
7059
+ #: languages/vue.php:1479
7060
  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."
7061
  msgstr ""
7062
 
7063
+ #: languages/vue.php:1482
7064
  msgid "The ExactMetrics Team"
7065
  msgstr ""
7066
 
7067
+ #: languages/vue.php:1485
7068
  msgid "Custom Dimensions Report"
7069
  msgstr ""
7070
 
7071
+ #: languages/vue.php:1488
7072
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
7073
  msgstr ""
7074
 
7075
+ #: languages/vue.php:1491
7076
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
7077
  msgstr ""
7078
 
7079
+ #: languages/vue.php:1494
7080
  msgid "Author tracking to see which author’s posts generate the most traffic"
7081
  msgstr ""
7082
 
7083
+ #: languages/vue.php:1497
7084
  msgid "Post Type tracking to see which WordPress post types perform better"
7085
  msgstr ""
7086
 
7087
+ #: languages/vue.php:1500
7088
  msgid "Category tracking to see which sections of your sites are the most popular"
7089
  msgstr ""
7090
 
7091
+ #: languages/vue.php:1503
7092
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
7093
  msgstr ""
7094
 
7095
+ #: languages/vue.php:1506
7096
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
7097
  msgstr ""
7098
 
7099
+ #: languages/vue.php:1509
7100
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
7101
  msgstr ""
7102
 
7103
  #. Translators: add link to blog.
7104
+ #: languages/vue.php:1513
7105
  msgid "One of the factors that help deliver an outstanding user experience is having a website that loads quickly. With the Site Speed report you'll be able to check your site's performance directly from your ExactMetrics dashboard."
7106
  msgstr ""
7107
 
7108
+ #: languages/vue.php:1516
7109
  msgid "See Your Homepage's Overall Performance Score"
7110
  msgstr ""
7111
 
7112
+ #: languages/vue.php:1519
7113
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7114
  msgstr ""
7115
 
7116
+ #: languages/vue.php:1522
7117
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7118
  msgstr ""
7119
 
7120
+ #: languages/vue.php:1525
7121
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7122
  msgstr ""
7123
 
7124
+ #: languages/vue.php:1528
7125
  msgid "Hide dashboard widget"
7126
  msgstr ""
7127
 
7128
+ #: languages/vue.php:1531
7129
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7130
  msgstr ""
7131
 
7132
+ #: languages/vue.php:1534
7133
  msgid "Yes, hide it!"
7134
  msgstr ""
7135
 
7136
+ #: languages/vue.php:1537
7137
  msgid "No, cancel!"
7138
  msgstr ""
7139
 
7140
+ #: languages/vue.php:1540
7141
  msgid "ExactMetrics Widget Hidden"
7142
  msgstr ""
7143
 
7144
+ #: languages/vue.php:1543
7145
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7146
  msgstr ""
7147
 
7148
  #. Translators: Error status and error text.
7149
+ #: languages/vue.php:1547
7150
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7151
  msgstr ""
7152
 
7153
  #. Translators: Error status and error text.
7154
+ #: languages/vue.php:1551
7155
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7156
  msgstr ""
7157
 
7158
+ #: languages/vue.php:1554
7159
  msgid "You appear to be offline. Settings not saved."
7160
  msgstr ""
7161
 
7162
  #. Translators: Error status and error text.
7163
+ #: languages/vue.php:1558
7164
  msgid "Can't authenticate. Error: %1$s, %2$s"
7165
  msgstr ""
7166
 
7167
  #. Translators: Error status and error text.
7168
+ #: languages/vue.php:1562
7169
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7170
  msgstr ""
7171
 
7172
  #. Translators: Error status and error text.
7173
+ #: languages/vue.php:1566
7174
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7175
  msgstr ""
7176
 
7177
+ #: languages/vue.php:1569
7178
  msgid "Still Calculating..."
7179
  msgstr ""
7180
 
7181
+ #: languages/vue.php:1572
7182
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7183
  msgstr ""
7184
 
7185
+ #: languages/vue.php:1575
7186
  msgid "Back to Overview Report"
7187
  msgstr ""
7188
 
7189
+ #: languages/vue.php:1578
7190
  msgid "Your 2020 Analytics Report"
7191
  msgstr ""
7192
 
7193
+ #: languages/vue.php:1581
7194
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7195
  msgstr ""
7196
 
7197
+ #: languages/vue.php:1584
7198
  msgid "Audience"
7199
  msgstr ""
7200
 
7201
+ #: languages/vue.php:1587
7202
  msgid "Congrats"
7203
  msgstr ""
7204
 
7205
+ #: languages/vue.php:1590
7206
  msgid "Your website was quite popular this year! "
7207
  msgstr ""
7208
 
7209
+ #: languages/vue.php:1593
7210
  msgid "You had "
7211
  msgstr ""
7212
 
7213
+ #: languages/vue.php:1596
7214
  msgid " visitors!"
7215
  msgstr ""
7216
 
7217
+ #: languages/vue.php:1599
7218
  msgid " visitors"
7219
  msgstr ""
7220
 
7221
+ #: languages/vue.php:1602
7222
  msgid "Total Visitors"
7223
  msgstr ""
7224
 
7225
+ #: languages/vue.php:1605
7226
  msgid "Total Sessions"
7227
  msgstr ""
7228
 
7229
+ #: languages/vue.php:1608
7230
  msgid "Visitors by Month"
7231
  msgstr ""
7232
 
7233
+ #: languages/vue.php:1611
7234
  msgid "January 1, 2020 - December 31, 2020"
7235
  msgstr ""
7236
 
7237
+ #: languages/vue.php:1614
7238
  msgid "A Tip for 2021"
7239
  msgstr ""
7240
 
7241
+ #: languages/vue.php:1617
7242
  msgid "Demographics"
7243
  msgstr ""
7244
 
7245
+ #: languages/vue.php:1620
7246
  msgid "#1"
7247
  msgstr ""
7248
 
7249
+ #: languages/vue.php:1623
7250
  msgid "You Top 5 Countries"
7251
  msgstr ""
7252
 
7253
+ #: languages/vue.php:1626
7254
  msgid "Let’s get to know your visitors a little better, shall we?"
7255
  msgstr ""
7256
 
7257
+ #: languages/vue.php:1629
7258
  msgid "Gender"
7259
  msgstr ""
7260
 
7261
+ #: languages/vue.php:1632
7262
  msgid "Female"
7263
  msgstr ""
7264
 
7265
+ #: languages/vue.php:1635
7266
  msgid "Women"
7267
  msgstr ""
7268
 
7269
+ #: languages/vue.php:1638
7270
  msgid "Male"
7271
  msgstr ""
7272
 
7273
+ #: languages/vue.php:1641
7274
  msgid "Average Age"
7275
  msgstr ""
7276
 
7277
+ #: languages/vue.php:1644
7278
  msgid "Behavior"
7279
  msgstr ""
7280
 
7281
+ #: languages/vue.php:1647
7282
  msgid "Your Top 5 Pages"
7283
  msgstr ""
7284
 
7285
+ #: languages/vue.php:1650
7286
  msgid "Time Spent on Site"
7287
  msgstr ""
7288
 
7289
+ #: languages/vue.php:1653
7290
  msgid "minutes"
7291
  msgstr ""
7292
 
7293
+ #: languages/vue.php:1656
7294
  msgid "Device Type"
7295
  msgstr ""
7296
 
7297
+ #: languages/vue.php:1659
7298
  msgid "A Tip For 2021"
7299
  msgstr ""
7300
 
7301
+ #: languages/vue.php:1662
7302
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7303
  msgstr ""
7304
 
7305
+ #: languages/vue.php:1665
7306
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7307
  msgstr ""
7308
 
7309
+ #: languages/vue.php:1668
7310
  msgid "So, where did all of these visitors come from?"
7311
  msgstr ""
7312
 
7313
+ #: languages/vue.php:1671
7314
  msgid "Clicks"
7315
  msgstr ""
7316
 
7317
+ #: languages/vue.php:1674
7318
  msgid "Your Top 5 Keywords"
7319
  msgstr ""
7320
 
7321
+ #: languages/vue.php:1677
7322
  msgid "What keywords visitors searched for to find your site"
7323
  msgstr ""
7324
 
7325
+ #: languages/vue.php:1680
7326
  msgid "Your Top 5 Referrals"
7327
  msgstr ""
7328
 
7329
+ #: languages/vue.php:1683
7330
  msgid "The websites that link back to your website"
7331
  msgstr ""
7332
 
7333
+ #: languages/vue.php:1686
7334
  msgid "Opportunity"
7335
  msgstr ""
7336
 
7337
+ #: languages/vue.php:1689
7338
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7339
  msgstr ""
7340
 
7341
+ #: languages/vue.php:1692
7342
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7343
  msgstr ""
7344
 
7345
+ #: languages/vue.php:1695
7346
  msgid "Thank you for using ExactMetrics!"
7347
  msgstr ""
7348
 
7349
+ #: languages/vue.php:1698
7350
  msgid "We’re grateful for your continued support. If there’s anything we can do to help you grow your business, please don’t hesitate to contact our team."
7351
  msgstr ""
7352
 
7353
+ #: languages/vue.php:1701
7354
  msgid "Here's to an amazing 2021!"
7355
  msgstr ""
7356
 
7357
+ #: languages/vue.php:1704
7358
  msgid "Enjoying ExactMetrics"
7359
  msgstr ""
7360
 
7361
+ #: languages/vue.php:1707
7362
  msgid "Leave a five star review!"
7363
  msgstr ""
7364
 
7365
+ #: languages/vue.php:1710
7366
  msgid "Syed Balkhi"
7367
  msgstr ""
7368
 
7369
+ #: languages/vue.php:1713
7370
  msgid "Chris Christoff"
7371
  msgstr ""
7372
 
7373
+ #: languages/vue.php:1716
7374
  msgid "Write Review"
7375
  msgstr ""
7376
 
7377
+ #: languages/vue.php:1719
7378
  msgid "Did you know over 10 million websites use our plugins?"
7379
  msgstr ""
7380
 
7381
+ #: languages/vue.php:1722
7382
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7383
  msgstr ""
7384
 
7385
+ #: languages/vue.php:1725
7386
  msgid "Join our Communities!"
7387
  msgstr ""
7388
 
7389
+ #: languages/vue.php:1728
7390
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7391
  msgstr ""
7392
 
7393
+ #: languages/vue.php:1731
7394
  msgid "Facebook Group"
7395
  msgstr ""
7396
 
7397
+ #: languages/vue.php:1734
7398
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7399
  msgstr ""
7400
 
7401
+ #: languages/vue.php:1737
7402
  msgid "Join Now...It’s Free!"
7403
  msgstr ""
7404
 
7405
+ #: languages/vue.php:1740
7406
  msgid "WordPress Tutorials by WPBeginner"
7407
  msgstr ""
7408
 
7409
+ #: languages/vue.php:1743
7410
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7411
  msgstr ""
7412
 
7413
+ #: languages/vue.php:1746
7414
  msgid "Visit WPBeginner"
7415
  msgstr ""
7416
 
7417
+ #: languages/vue.php:1749
7418
  msgid "Follow Us!"
7419
  msgstr ""
7420
 
7421
+ #: languages/vue.php:1752
7422
  msgid "Follow ExactMetrics on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
7423
  msgstr ""
7424
 
7425
+ #: languages/vue.php:1755
7426
  msgid "Copyright ExactMetrics, 2021"
7427
  msgstr ""
7428
 
7429
+ #: languages/vue.php:1758
7430
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7431
  msgstr ""
7432
 
7433
+ #: languages/vue.php:1764
7434
  msgid "January"
7435
  msgstr ""
7436
 
7437
+ #: languages/vue.php:1767
7438
  msgid "February"
7439
  msgstr ""
7440
 
7441
+ #: languages/vue.php:1770
7442
  msgid "March"
7443
  msgstr ""
7444
 
7445
+ #: languages/vue.php:1773
7446
  msgid "April"
7447
  msgstr ""
7448
 
7449
+ #: languages/vue.php:1776
7450
  msgid "May"
7451
  msgstr ""
7452
 
7453
+ #: languages/vue.php:1779
7454
  msgid "June"
7455
  msgstr ""
7456
 
7457
+ #: languages/vue.php:1782
7458
  msgid "July"
7459
  msgstr ""
7460
 
7461
+ #: languages/vue.php:1785
7462
  msgid "August"
7463
  msgstr ""
7464
 
7465
+ #: languages/vue.php:1788
7466
  msgid "September"
7467
  msgstr ""
7468
 
7469
+ #: languages/vue.php:1791
7470
  msgid "October"
7471
  msgstr ""
7472
 
7473
+ #: languages/vue.php:1794
7474
  msgid "November"
7475
  msgstr ""
7476
 
7477
+ #: languages/vue.php:1797
7478
  msgid "December"
7479
  msgstr ""
7480
 
7481
  #. Translators: Number of visitors.
7482
+ #: languages/vue.php:1801
7483
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7484
  msgstr ""
7485
 
7486
+ #: languages/vue.php:1804
7487
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7488
  msgstr ""
7489
 
7490
  #. Translators: Number of visitors.
7491
+ #: languages/vue.php:1808
7492
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7493
  msgstr ""
7494
 
7495
  #. Translators: Number of visitors.
7496
+ #: languages/vue.php:1812
7497
  msgid "%s Visitors"
7498
  msgstr ""
7499
 
7500
  #. Translators: Percent and Number of visitors.
7501
+ #: languages/vue.php:1816
7502
  msgid "%1$s&#37 of your visitors were %2$s"
7503
  msgstr ""
7504
 
7505
  #. Translators: Number of visitors and their age.
7506
+ #: languages/vue.php:1820
7507
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7508
  msgstr ""
7509
 
7510
+ #: languages/vue.php:1823
7511
  msgid "Your <strong>%1$s</strong> visitors viewed a total of <strong>%2$s</strong> pages. <span class='average-page-per-user' style='font-size: 20px;margin-top:25px;display:block;font-family:Lato'>That's an average of %3$s pages for each visitor!</span>"
7512
  msgstr ""
7513
 
7514
  #. Translators: Number of minutes spent on site.
7515
+ #: languages/vue.php:1827
7516
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7517
  msgstr ""
7518
 
7519
  #. Translators: Name of device type.
7520
+ #: languages/vue.php:1831
7521
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7522
  msgstr ""
7523
 
7524
  #. Translators: Number of visitors and device percentage.
7525
+ #: languages/vue.php:1835
7526
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7527
  msgstr ""
7528
 
7529
+ #: languages/vue.php:1838
7530
  msgid "Desktop"
7531
  msgstr ""
7532
 
7533
+ #: languages/vue.php:1841
7534
  msgid "Tablet"
7535
  msgstr ""
7536
 
7537
+ #: languages/vue.php:1844
7538
  msgid "Mobile"
7539
  msgstr ""
7540
 
7541
+ #: languages/vue.php:1847
7542
  msgid "Force Deauthenticate"
7543
  msgstr ""
7544
 
7545
+ #: languages/vue.php:1850
7546
  msgid "Disconnect ExactMetrics"
7547
  msgstr ""
7548
 
7549
+ #: languages/vue.php:1853
7550
  msgid "Authenticating"
7551
  msgstr ""
7552
 
7553
+ #: languages/vue.php:1856
7554
  msgid "Verifying Credentials"
7555
  msgstr ""
7556
 
7557
+ #: languages/vue.php:1859
7558
  msgid "Your site is connected to ExactMetrics!"
7559
  msgstr ""
7560
 
7561
+ #: languages/vue.php:1862
7562
  msgid "Deauthenticating"
7563
  msgstr ""
7564
 
7565
+ #: languages/vue.php:1865
7566
  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."
7567
  msgstr ""
7568
 
7569
+ #: languages/vue.php:1868
7570
+ #: languages/vue.php:1940
7571
  msgid "Connect ExactMetrics"
7572
  msgstr ""
7573
 
7574
+ #: languages/vue.php:1871
7575
  msgid "Verify Credentials"
7576
  msgstr ""
7577
 
7578
+ #: languages/vue.php:1877
7579
  msgid "Website Profile"
7580
  msgstr ""
7581
 
7582
+ #: languages/vue.php:1880
7583
  msgid "Active Profile"
7584
  msgstr ""
7585
 
7586
+ #: languages/vue.php:1883
7587
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7588
  msgstr ""
7589
 
7590
+ #: languages/vue.php:1886
7591
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7592
  msgstr ""
7593
 
7594
+ #: languages/vue.php:1889
7595
  msgid "Dual Tracking Profile"
7596
  msgstr ""
7597
 
7598
+ #: languages/vue.php:1892
7599
  msgid "The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s."
7600
  msgstr ""
7601
 
7602
+ #: languages/vue.php:1895
7603
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7604
  msgstr ""
7605
 
7606
+ #: languages/vue.php:1898
7607
  msgid "The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s."
7608
  msgstr ""
7609
 
7610
+ #: languages/vue.php:1901
7611
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7612
  msgstr ""
7613
 
7614
+ #: languages/vue.php:1904
7615
  msgid "Measurement Protocol API Secret"
7616
  msgstr ""
7617
 
7618
+ #: languages/vue.php:1907
7619
  msgid "The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s."
7620
  msgstr ""
7621
 
7622
+ #: languages/vue.php:1910
7623
  msgid "Classic mode"
7624
  msgstr ""
7625
 
7626
+ #: languages/vue.php:1913
7627
  msgid "Proceed"
7628
  msgstr ""
7629
 
7630
+ #: languages/vue.php:1916
7631
  msgid "Connection Information"
7632
  msgstr ""
7633
 
7634
+ #: languages/vue.php:1919
7635
  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."
7636
  msgstr ""
7637
 
7638
+ #: languages/vue.php:1922
7639
  msgid "Hostname"
7640
  msgstr ""
7641
 
7642
+ #: languages/vue.php:1925
7643
  msgid "FTP Username"
7644
  msgstr ""
7645
 
7646
+ #: languages/vue.php:1928
7647
  msgid "FTP Password"
7648
  msgstr ""
7649
 
7650
+ #: languages/vue.php:1931
7651
  msgid "This password will not be stored on the server."
7652
  msgstr ""
7653
 
7654
+ #: languages/vue.php:1934
7655
  msgid "Connection Type"
7656
  msgstr ""
7657
 
7658
+ #: languages/vue.php:1937
7659
  msgid "Cancel"
7660
  msgstr ""
7661
 
7662
+ #: languages/vue.php:1943
7663
  msgid "Website profile"
7664
  msgstr ""
7665
 
7666
+ #: languages/vue.php:1946
7667
  msgid "Active profile"
7668
  msgstr ""
7669
 
7670
+ #: languages/vue.php:1949
7671
  msgid "Skip and Keep Connection"
7672
  msgstr ""
7673
 
7674
  #. Translators: Replaced with the number of days
7675
+ #: languages/vue.php:1953
7676
  msgid "vs. Previous Day"
7677
  msgstr ""
7678
 
7679
+ #: languages/vue.php:1956
7680
  msgid "No change"
7681
  msgstr ""
7682
 
7683
+ #: languages/vue.php:1959
7684
  msgid "Choose Theme"
7685
  msgstr ""
7686
 
7687
+ #: languages/vue.php:1962
7688
  msgid "Widget Styling"
7689
  msgstr ""
7690
 
7691
+ #: languages/vue.php:1965
7692
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7693
  msgstr ""
7694
 
7695
+ #: languages/vue.php:1968
7696
  msgid "Sort By"
7697
  msgstr ""
7698
 
7699
+ #: languages/vue.php:1971
7700
  msgid "Choose how you'd like the widget to determine your popular posts."
7701
  msgstr ""
7702
 
7703
+ #: languages/vue.php:1974
7704
  msgid "Display Title"
7705
  msgstr ""
7706
 
7707
+ #: languages/vue.php:1980
7708
  msgid "Title your widget and set its display preferences."
7709
  msgstr ""
7710
 
7711
+ #: languages/vue.php:1983
7712
  msgid "Include in Post Types"
7713
  msgstr ""
7714
 
7715
+ #: languages/vue.php:1986
7716
  msgid "Exclude from specific posts"
7717
  msgstr ""
7718
 
7719
  #. Translators: Placeholders make the text bold.
7720
+ #: languages/vue.php:1990
7721
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7722
  msgstr ""
7723
 
7724
  #. Translators: Placeholders make the text bold.
7725
+ #: languages/vue.php:1994
7726
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7727
  msgstr ""
7728
 
7729
+ #: languages/vue.php:1997
7730
  msgid "Loading Themes"
7731
  msgstr ""
7732
 
7733
  #. Translators: placeholders make text small.
7734
+ #: languages/vue.php:2001
7735
  msgid "Default Styles %1$s- As seen above.%2$s"
7736
  msgstr ""
7737
 
7738
  #. Translators: placeholders make text small.
7739
+ #: languages/vue.php:2005
7740
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7741
  msgstr ""
7742
 
7743
  #. Translators: placeholders make text small.
7744
+ #: languages/vue.php:2009
7745
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7746
  msgstr ""
7747
 
7748
  #. Translators: placeholders make text small.
7749
+ #: languages/vue.php:2013
7750
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7751
  msgstr ""
7752
 
7753
  #. Translators: placeholders make text small.
7754
+ #: languages/vue.php:2017
7755
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7756
  msgstr ""
7757
 
7758
+ #: languages/vue.php:2020
7759
  msgid "Placement"
7760
  msgstr ""
7761
 
7762
+ #: languages/vue.php:2023
7763
  msgid "Choose how you'd like to place the widget."
7764
  msgstr ""
7765
 
7766
+ #: languages/vue.php:2026
7767
  msgid "Insert After"
7768
  msgstr ""
7769
 
7770
+ #: languages/vue.php:2029
7771
  msgid "Choose where in the post body the widget will be placed."
7772
  msgstr ""
7773
 
7774
+ #: languages/vue.php:2032
7775
  msgid "Customize Design"
7776
  msgstr ""
7777
 
7778
+ #: languages/vue.php:2035
7779
  msgid "words"
7780
  msgstr ""
7781
 
7782
+ #: languages/vue.php:2038
7783
  msgid "Please select at least one post to display."
7784
  msgstr ""
7785
 
7786
  #. Translators: placeholders make text small.
7787
+ #: languages/vue.php:2042
7788
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7789
  msgstr ""
7790
 
7791
  #. Translators: placeholders make text small.
7792
+ #: languages/vue.php:2046
7793
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7794
  msgstr ""
7795
 
7796
+ #: languages/vue.php:2049
7797
  msgid "Caching"
7798
  msgstr ""
7799
 
7800
+ #: languages/vue.php:2052
7801
  msgid "Enable Data Caching"
7802
  msgstr ""
7803
 
7804
+ #: languages/vue.php:2055
7805
  msgid "Refresh Cache Every"
7806
  msgstr ""
7807
 
7808
+ #: languages/vue.php:2058
7809
  msgid "Choose how often to refresh the cache."
7810
  msgstr ""
7811
 
7812
+ #: languages/vue.php:2061
7813
  msgid "Enable Ajaxify"
7814
  msgstr ""
7815
 
7816
+ #: languages/vue.php:2064
7817
  msgid "Ajaxify Widget"
7818
  msgstr ""
7819
 
7820
+ #: languages/vue.php:2067
7821
  msgid "Use to bypass page caching."
7822
  msgstr ""
7823
 
7824
+ #: languages/vue.php:2070
7825
  msgid "Empty Cache"
7826
  msgstr ""
7827
 
7828
+ #: languages/vue.php:2073
7829
  msgid "Click to manually wipe the cache right now."
7830
  msgstr ""
7831
 
7832
+ #: languages/vue.php:2076
7833
  msgid "Popular posts cache emptied"
7834
  msgstr ""
7835
 
7836
+ #: languages/vue.php:2079
7837
  msgid "Error emptying the popular posts cache. Please try again."
7838
  msgstr ""
7839
 
7840
+ #: languages/vue.php:2082
7841
  msgid "Last 30 Days Analytics for "
7842
  msgstr ""
7843
 
7844
+ #: languages/vue.php:2085
7845
  msgid "Your Website"
7846
  msgstr ""
7847
 
7848
+ #: languages/vue.php:2088
7849
  msgid "Avg. Duration"
7850
  msgstr ""
7851
 
7852
+ #: languages/vue.php:2091
7853
  msgid "More data is available"
7854
  msgstr ""
7855
 
7856
+ #: languages/vue.php:2094
7857
  msgid "Want to see page-specific stats?"
7858
  msgstr ""
7859
 
7860
+ #: languages/vue.php:2097
7861
  msgid "You appear to be offline. WPForms not installed."
7862
  msgstr ""
7863
 
7864
  #. Translators: Error status and error text.
7865
+ #: languages/vue.php:2101
7866
  msgid "Can't activate addon. Error: %1$s, %2$s"
7867
  msgstr ""
7868
 
7869
+ #: languages/vue.php:2104
7870
  msgid "You appear to be offline. Addon not activated."
7871
  msgstr ""
7872
 
7873
  #. Translators: Error status and error text.
7874
+ #: languages/vue.php:2108
7875
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7876
  msgstr ""
7877
 
7878
+ #: languages/vue.php:2111
7879
  msgid "You appear to be offline. Addon not deactivated."
7880
  msgstr ""
7881
 
7882
  #. Translators: Error status and error text.
7883
+ #: languages/vue.php:2115
7884
  msgid "Can't install plugin. Error: %1$s, %2$s"
7885
  msgstr ""
7886
 
7887
+ #: languages/vue.php:2118
7888
  msgid "You appear to be offline. Plugin not installed."
7889
  msgstr ""
7890
 
7891
  #. Translators: Error status and error text.
7892
+ #: languages/vue.php:2122
7893
  msgid "Can't install addon. Error: %1$s, %2$s"
7894
  msgstr ""
7895
 
7896
+ #: languages/vue.php:2125
7897
  msgid "You appear to be offline. Addon not installed."
7898
  msgstr ""
7899
 
7900
  #. Translators: Error status and error text.
7901
+ #: languages/vue.php:2129
7902
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7903
  msgstr ""
7904
 
7905
+ #: languages/vue.php:2132
7906
  msgid "Network Active"
7907
  msgstr ""
7908
 
7909
+ #: languages/vue.php:2135
7910
  msgid "Active"
7911
  msgstr ""
7912
 
7913
+ #: languages/vue.php:2138
7914
  msgid "Inactive"
7915
  msgstr ""
7916
 
7917
  #. Translators: Placeholder for the addon status (installed, active, etc).
7918
+ #: languages/vue.php:2142
7919
  msgid "Status: %s"
7920
  msgstr ""
7921
 
7922
+ #: languages/vue.php:2145
7923
  msgid "Not Installed"
7924
  msgstr ""
7925
 
7926
  #. Translators: Makes text bold and adds smiley.
7927
+ #: languages/vue.php:2149
7928
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7929
  msgstr ""
7930
 
7931
  #. Translators: Makes text green.
7932
+ #: languages/vue.php:2153
7933
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
7934
  msgstr ""
7935
 
7936
+ #: languages/vue.php:2156
7937
  msgid "Unlock All Features and Upgrade to Pro"
7938
  msgstr ""
7939
 
7940
  #. Translators: Make text green and add smiley face.
7941
+ #: languages/vue.php:2160
7942
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7943
  msgstr ""
7944
 
7945
  #. Translators: Make text green.
7946
+ #: languages/vue.php:2164
7947
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7948
  msgstr ""
7949
 
7950
+ #: languages/vue.php:2167
7951
  msgid "Unlock PRO Features Now"
7952
  msgstr ""
7953
 
7954
+ #: languages/vue.php:2171
7955
  msgid "Paste your license key here"
7956
  msgstr ""
7957
 
7958
+ #: languages/vue.php:2175
7959
  msgid "Verify"
7960
  msgstr ""
7961
 
7962
  #. Translators: Add link to retrieve license from account area.
7963
+ #: languages/vue.php:2179
7964
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7965
  msgstr ""
7966
 
7967
+ #: languages/vue.php:2182
7968
+ #: languages/vue.php:3655
7969
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7970
  msgstr ""
7971
 
7972
+ #: languages/vue.php:2185
7973
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7974
  msgstr ""
7975
 
7976
+ #: languages/vue.php:2188
7977
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7978
  msgstr ""
7979
 
7980
+ #: languages/vue.php:2191
7981
  msgid "1,938"
7982
  msgstr ""
7983
 
7984
+ #: languages/vue.php:2194
7985
  msgid "2+ Million Active Installs"
7986
  msgstr ""
7987
 
7988
+ #: languages/vue.php:2197
7989
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
7990
  msgstr ""
7991
 
7992
+ #: languages/vue.php:2200
7993
  msgid "Set up the proper SEO foundations in less than 10 minutes."
7994
  msgstr ""
7995
 
7996
+ #: languages/vue.php:2203
7997
  msgid "SEO Audit Checklist"
7998
  msgstr ""
7999
 
8000
+ #: languages/vue.php:2206
8001
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
8002
  msgstr ""
8003
 
8004
+ #: languages/vue.php:2209
8005
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
8006
  msgstr ""
8007
 
8008
+ #: languages/vue.php:2212
8009
  msgid "TruSEO Score gives you a more in-depth analysis into your optimization efforts than just a pass or fail. Our actionable checklist helps you to unlock maximum traffic with each page."
8010
  msgstr ""
8011
 
8012
+ #: languages/vue.php:2215
8013
  msgid "Get AIOSEO for WordPress"
8014
  msgstr ""
8015
 
8016
+ #: languages/vue.php:2218
8017
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
8018
  msgstr ""
8019
 
8020
+ #: languages/vue.php:2221
8021
  msgid "Try it out today, for free."
8022
  msgstr ""
8023
 
8024
+ #: languages/vue.php:2224
8025
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
8026
  msgstr ""
8027
 
8028
+ #: languages/vue.php:2227
8029
  msgid "Activate and Install the Plugin with just one click!"
8030
  msgstr ""
8031
 
8032
+ #: languages/vue.php:2230
8033
  msgid "Installing AIOSEO..."
8034
  msgstr ""
8035
 
8036
+ #: languages/vue.php:2233
8037
  msgid "Congrats! All-in-One SEO Installed."
8038
  msgstr ""
8039
 
8040
+ #: languages/vue.php:2236
8041
  msgid "Switch to AIOSEO"
8042
  msgstr ""
8043
 
8044
+ #: languages/vue.php:2239
8045
  msgid "Installation Failed. Please refresh and try again."
8046
  msgstr ""
8047
 
8048
+ #: languages/vue.php:2242
8049
  msgid "Activating AIOSEO..."
8050
  msgstr ""
8051
 
8052
+ #: languages/vue.php:2245
8053
  msgid "Activate AIOSEO"
8054
  msgstr ""
8055
 
8056
+ #: languages/vue.php:2248
8057
  msgid "Activation Failed. Please refresh and try again."
8058
  msgstr ""
8059
 
8060
+ #: languages/vue.php:2251
8061
  msgid "Unlock Form Tracking"
8062
  msgstr ""
8063
 
8064
+ #: languages/vue.php:2254
8065
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
8066
  msgstr ""
8067
 
8068
+ #: languages/vue.php:2257
8069
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
8070
  msgstr ""
8071
 
8072
+ #: languages/vue.php:2260
8073
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
8074
  msgstr ""
8075
 
8076
+ #: languages/vue.php:2263
8077
  msgid "Show"
8078
  msgstr ""
8079
 
8080
+ #: languages/vue.php:2266
8081
  msgid "File imported"
8082
  msgstr ""
8083
 
8084
+ #: languages/vue.php:2269
8085
  msgid "Settings successfully updated!"
8086
  msgstr ""
8087
 
8088
+ #: languages/vue.php:2272
8089
  msgid "Error importing settings"
8090
  msgstr ""
8091
 
8092
+ #: languages/vue.php:2275
8093
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
8094
  msgstr ""
8095
 
8096
+ #: languages/vue.php:2278
8097
  msgid "Import/Export"
8098
  msgstr ""
8099
 
8100
+ #: languages/vue.php:2281
8101
  msgid "Import"
8102
  msgstr ""
8103
 
8104
+ #: languages/vue.php:2284
8105
  msgid "Import settings from another ExactMetrics website."
8106
  msgstr ""
8107
 
8108
+ #: languages/vue.php:2287
8109
  msgid "Export"
8110
  msgstr ""
8111
 
8112
+ #: languages/vue.php:2290
8113
  msgid "Export settings to import into another ExactMetrics install."
8114
  msgstr ""
8115
 
8116
+ #: languages/vue.php:2293
8117
  msgid "Import Settings"
8118
  msgstr ""
8119
 
8120
+ #: languages/vue.php:2296
8121
  msgid "Export Settings"
8122
  msgstr ""
8123
 
8124
+ #: languages/vue.php:2299
8125
  msgid "Please choose a file to import"
8126
  msgstr ""
8127
 
8128
+ #: languages/vue.php:2302
8129
  msgid "Click Choose file below to select the settings export file from another site."
8130
  msgstr ""
8131
 
8132
+ #: languages/vue.php:2305
8133
  msgid "Use the button below to export a file with your ExactMetrics settings."
8134
  msgstr ""
8135
 
8136
+ #: languages/vue.php:2308
8137
  msgid "Choose file"
8138
  msgstr ""
8139
 
8140
+ #: languages/vue.php:2311
8141
  msgid "No file chosen"
8142
  msgstr ""
8143
 
8144
+ #: languages/vue.php:2314
8145
  msgid "Uploading file..."
8146
  msgstr ""
8147
 
8148
+ #: languages/vue.php:2317
8149
  msgid "Custom code"
8150
  msgstr ""
8151
 
8152
  #. Translators: Adds a link to the Google reference.
8153
+ #: languages/vue.php:2321
8154
  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."
8155
  msgstr ""
8156
 
8157
+ #: languages/vue.php:2327
8158
  msgid "Automatic Updates"
8159
  msgstr ""
8160
 
8161
+ #: languages/vue.php:2330
8162
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8163
  msgstr ""
8164
 
8165
+ #: languages/vue.php:2333
8166
  msgid "Hide Admin Bar Reports"
8167
  msgstr ""
8168
 
8169
  #. Translators: placeholders make text small.
8170
+ #: languages/vue.php:2337
8171
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8172
  msgstr ""
8173
 
8174
  #. Translators: placeholders make text small.
8175
+ #: languages/vue.php:2341
8176
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8177
  msgstr ""
8178
 
8179
  #. Translators: placeholders make text small.
8180
+ #: languages/vue.php:2345
8181
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8182
  msgstr ""
8183
 
8184
  #. Translators: placeholders make text small.
8185
+ #: languages/vue.php:2349
8186
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8187
  msgstr ""
8188
 
8189
  #. Translators: placeholders make text small.
8190
+ #: languages/vue.php:2353
8191
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8192
  msgstr ""
8193
 
8194
  #. Translators: placeholders make text small.
8195
+ #: languages/vue.php:2357
8196
  msgid "None %1$s- Manually update everything.%2$s"
8197
  msgstr ""
8198
 
8199
  #. Translators: Adds a link to the general settings tab.
8200
+ #: languages/vue.php:2361
8201
  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."
8202
  msgstr ""
8203
 
8204
+ #: languages/vue.php:2364
8205
  msgid "Permissions"
8206
  msgstr ""
8207
 
8208
+ #: languages/vue.php:2367
8209
  msgid "Export PDF Reports"
8210
  msgstr ""
8211
 
8212
+ #: languages/vue.php:2370
8213
  msgid "Allow These User Roles to See Reports"
8214
  msgstr ""
8215
 
8216
+ #: languages/vue.php:2373
8217
  msgid "Users that have at least one of these roles will be able to view the reports."
8218
  msgstr ""
8219
 
8220
+ #: languages/vue.php:2376
8221
  msgid "Allow These User Roles to Save Settings"
8222
  msgstr ""
8223
 
8224
+ #: languages/vue.php:2379
8225
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8226
  msgstr ""
8227
 
8228
+ #: languages/vue.php:2382
8229
  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."
8230
  msgstr ""
8231
 
8232
+ #: languages/vue.php:2385
8233
  msgid "Exclude These User Roles From Tracking"
8234
  msgstr ""
8235
 
8236
+ #: languages/vue.php:2388
8237
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8238
  msgstr ""
8239
 
8240
+ #: languages/vue.php:2391
8241
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8242
  msgstr ""
8243
 
8244
+ #: languages/vue.php:2394
8245
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8246
  msgstr ""
8247
 
8248
+ #: languages/vue.php:2397
8249
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8250
  msgstr ""
8251
 
8252
+ #: languages/vue.php:2400
8253
  msgid "Over 200,000 websites use Pretty Links!"
8254
  msgstr ""
8255
 
8256
+ #: languages/vue.php:2403
8257
  msgid "Install Pretty Links"
8258
  msgstr ""
8259
 
8260
+ #: languages/vue.php:2406
8261
  msgid "Pretty Links Installed & Activated"
8262
  msgstr ""
8263
 
8264
+ #: languages/vue.php:2409
8265
  msgid "Download Pretty Links"
8266
  msgstr ""
8267
 
8268
+ #: languages/vue.php:2412
8269
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8270
  msgstr ""
8271
 
8272
+ #: languages/vue.php:2415
8273
  msgid "Activate Pretty Links"
8274
  msgstr ""
8275
 
8276
+ #: languages/vue.php:2418
8277
  msgid "Activating Pretty Links..."
8278
  msgstr ""
8279
 
8280
+ #: languages/vue.php:2421
8281
  msgid "Create New Pretty Link"
8282
  msgstr ""
8283
 
8284
+ #: languages/vue.php:2424
8285
  msgid "Create a New Pretty Link"
8286
  msgstr ""
8287
 
8288
+ #: languages/vue.php:2427
8289
  msgid "Grab your campaign link and paste it into the Target URL field."
8290
  msgstr ""
8291
 
8292
+ #: languages/vue.php:2430
8293
  msgid "Custom Campaign Parameters"
8294
  msgstr ""
8295
 
8296
+ #: languages/vue.php:2433
8297
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8298
  msgstr ""
8299
 
8300
+ #: languages/vue.php:2436
8301
  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."
8302
  msgstr ""
8303
 
8304
  #. Translators: Marks the field as required.
8305
+ #: languages/vue.php:2440
8306
  msgid "Website URL %s"
8307
  msgstr ""
8308
 
8309
  #. Translators: Display the current website url in italic.
8310
+ #: languages/vue.php:2444
8311
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8312
  msgstr ""
8313
 
8314
  #. Translators: Marks the field as required.
8315
+ #: languages/vue.php:2448
8316
  msgid "Campaign Source %s"
8317
  msgstr ""
8318
 
8319
  #. Translators: Make the text italic.
8320
+ #: languages/vue.php:2452
8321
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8322
  msgstr ""
8323
 
8324
  #. Translators: Make the text italic.
8325
+ #: languages/vue.php:2456
8326
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8327
  msgstr ""
8328
 
8329
  #. Translators: Make the text italic.
8330
+ #: languages/vue.php:2460
8331
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8332
  msgstr ""
8333
 
8334
+ #: languages/vue.php:2463
8335
  msgid "Enter the paid keyword"
8336
  msgstr ""
8337
 
8338
+ #: languages/vue.php:2466
8339
  msgid "Enter something to differentiate ads"
8340
  msgstr ""
8341
 
8342
+ #: languages/vue.php:2469
8343
  msgid "Use Fragment"
8344
  msgstr ""
8345
 
8346
  #. Translators: Make the text bold.
8347
+ #: languages/vue.php:2473
8348
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8349
  msgstr ""
8350
 
8351
+ #: languages/vue.php:2476
8352
  msgid "URL to use"
8353
  msgstr ""
8354
 
8355
+ #: languages/vue.php:2479
8356
  msgid "(Updates automatically)"
8357
  msgstr ""
8358
 
8359
+ #: languages/vue.php:2482
8360
  msgid "Copy to Clipboard"
8361
  msgstr ""
8362
 
8363
+ #: languages/vue.php:2485
8364
  msgid "Copy to Pretty Links"
8365
  msgstr ""
8366
 
8367
+ #: languages/vue.php:2488
8368
  msgid "Make your campaign links prettier!"
8369
  msgstr ""
8370
 
8371
+ #: languages/vue.php:2491
8372
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8373
  msgstr ""
8374
 
8375
+ #: languages/vue.php:2494
8376
  msgid "More Information & Examples"
8377
  msgstr ""
8378
 
8379
+ #: languages/vue.php:2497
8380
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8381
  msgstr ""
8382
 
8383
+ #: languages/vue.php:2500
8384
  msgid "Campaign Source"
8385
  msgstr ""
8386
 
8387
+ #: languages/vue.php:2503
8388
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8389
  msgstr ""
8390
 
8391
+ #: languages/vue.php:2506
8392
  msgid "Campaign Medium"
8393
  msgstr ""
8394
 
8395
+ #: languages/vue.php:2509
8396
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8397
  msgstr ""
8398
 
8399
+ #: languages/vue.php:2512
8400
  msgid "Campaign Name"
8401
  msgstr ""
8402
 
8403
+ #: languages/vue.php:2515
8404
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8405
  msgstr ""
8406
 
8407
+ #: languages/vue.php:2518
8408
  msgid "Campaign Term"
8409
  msgstr ""
8410
 
8411
+ #: languages/vue.php:2521
8412
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8413
  msgstr ""
8414
 
8415
+ #: languages/vue.php:2524
8416
  msgid "Campaign Content"
8417
  msgstr ""
8418
 
8419
+ #: languages/vue.php:2527
8420
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8421
  msgstr ""
8422
 
8423
  #. Translators: Example.
8424
+ #: languages/vue.php:2531
8425
  msgid "Example: %s"
8426
  msgstr ""
8427
 
8428
  #. Translators: Examples.
8429
+ #: languages/vue.php:2535
8430
  msgid "Examples: %s"
8431
  msgstr ""
8432
 
8433
+ #: languages/vue.php:2538
8434
  msgid "About Campaigns"
8435
  msgstr ""
8436
 
8437
+ #: languages/vue.php:2541
8438
  msgid "About Custom Campaigns"
8439
  msgstr ""
8440
 
8441
+ #: languages/vue.php:2544
8442
  msgid "Best Practices for Creating Custom Campaigns"
8443
  msgstr ""
8444
 
8445
+ #: languages/vue.php:2547
8446
  msgid "About the Referral Traffic Report"
8447
  msgstr ""
8448
 
8449
+ #: languages/vue.php:2550
8450
  msgid "About Traffic Source Dimensions"
8451
  msgstr ""
8452
 
8453
+ #: languages/vue.php:2553
8454
  msgid "AdWords Auto-Tagging"
8455
  msgstr ""
8456
 
8457
+ #: languages/vue.php:2556
8458
  msgid "Additional Information"
8459
  msgstr ""
8460
 
8461
+ #: languages/vue.php:2559
8462
  msgid "Affiliate Links"
8463
  msgstr ""
8464
 
8465
  #. Translators: Add links to documentation.
8466
+ #: languages/vue.php:2563
8467
  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."
8468
  msgstr ""
8469
 
8470
+ #: languages/vue.php:2566
8471
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8472
  msgstr ""
8473
 
8474
+ #: languages/vue.php:2569
8475
  msgid "The ExactMetrics Headline Analyzer tool in the Gutenberg editor enables you to write irresistible SEO-friendly headlines that drive traffic, social media shares, and rank better in search results."
8476
  msgstr ""
8477
 
8478
+ #: languages/vue.php:2572
8479
  msgid "Disable the Headline Analyzer"
8480
  msgstr ""
8481
 
8482
  #. Translators: Add line break.
8483
+ #: languages/vue.php:2576
8484
  msgid "See All Your Important Store%s Metrics in One Place"
8485
  msgstr ""
8486
 
8487
+ #: languages/vue.php:2579
8488
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8489
  msgstr ""
8490
 
8491
+ #: languages/vue.php:2582
8492
  msgid "See Your Conversion Rate to Improve Funnel"
8493
  msgstr ""
8494
 
8495
+ #: languages/vue.php:2585
8496
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8497
  msgstr ""
8498
 
8499
+ #: languages/vue.php:2588
8500
  msgid "See The Total Revenue to Track Growth"
8501
  msgstr ""
8502
 
8503
+ #: languages/vue.php:2591
8504
  msgid "See Average Order Value to Find Offer Opportunities"
8505
  msgstr ""
8506
 
8507
+ #: languages/vue.php:2594
8508
  msgid "See Your Top Products to See Individual Performance"
8509
  msgstr ""
8510
 
8511
+ #: languages/vue.php:2597
8512
  msgid "See your Top Conversion Sources and Focus on what's Working"
8513
  msgstr ""
8514
 
8515
+ #: languages/vue.php:2600
8516
  msgid "See The Time it Takes for Customers to Purchase"
8517
  msgstr ""
8518
 
8519
+ #: languages/vue.php:2603
8520
  msgid "See How Many Sessions are Needed for a Purchase"
8521
  msgstr ""
8522
 
8523
+ #: languages/vue.php:2606
8524
  msgid "Automatically Track Affiliate Sales"
8525
  msgstr ""
8526
 
8527
+ #: languages/vue.php:2609
8528
  msgid "The ExactMetrics eCommerce addon works with EasyAffiliate, so that you can instantly track all affiliate referrals and sales inside WordPress and Google Analytics, with no coding needed."
8529
  msgstr ""
8530
 
8531
+ #: languages/vue.php:2612
8532
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8533
  msgstr ""
8534
 
8535
+ #: languages/vue.php:2615
8536
  msgid "Cross Domain Tracking"
8537
  msgstr ""
8538
 
8539
  #. Translators: Add links to documentation.
8540
+ #: languages/vue.php:2619
8541
  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."
8542
  msgstr ""
8543
 
8544
+ #: languages/vue.php:2622
8545
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8546
  msgstr ""
8547
 
8548
+ #: languages/vue.php:2625
8549
  msgid "Anonymize IP Addresses"
8550
  msgstr ""
8551
 
8552
+ #: languages/vue.php:2628
8553
  msgid "Link Attribution"
8554
  msgstr ""
8555
 
8556
+ #: languages/vue.php:2631
8557
  msgid "Enable Enhanced Link Attribution"
8558
  msgstr ""
8559
 
8560
+ #: languages/vue.php:2634
8561
  msgid "Enable Anchor Tracking"
8562
  msgstr ""
8563
 
8564
+ #: languages/vue.php:2637
8565
  msgid "Enable allowAnchor"
8566
  msgstr ""
8567
 
8568
+ #: languages/vue.php:2640
8569
  msgid "Enable allowLinker"
8570
  msgstr ""
8571
 
8572
+ #: languages/vue.php:2643
8573
  msgid "Enable Tag Links in RSS"
8574
  msgstr ""
8575
 
8576
+ #: languages/vue.php:2646
8577
  msgid "File Downloads"
8578
  msgstr ""
8579
 
8580
+ #: languages/vue.php:2649
8581
  msgid "Extensions of Files to Track as Downloads"
8582
  msgstr ""
8583
 
8584
+ #: languages/vue.php:2652
8585
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8586
  msgstr ""
8587
 
8588
  #. Translators: Add links to documentation.
8589
+ #: languages/vue.php:2656
8590
  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."
8591
  msgstr ""
8592
 
8593
  #. Translators: Add links to documentation.
8594
+ #: languages/vue.php:2660
8595
  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."
8596
  msgstr ""
8597
 
8598
  #. Translators: Add links to documentation.
8599
+ #: languages/vue.php:2664
8600
  msgid "Adds the Enhanced Link Attribution (retain link) code to improve the accuracy of your In-Page Analytics report by automatically differentiating between multiple links to the same URL on a single page by using link element IDs."
8601
  msgstr ""
8602
 
8603
+ #: languages/vue.php:2667
8604
  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."
8605
  msgstr ""
8606
 
8607
  #. Translators: Add links to documentation.
8608
+ #: languages/vue.php:2671
8609
  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."
8610
  msgstr ""
8611
 
8612
  #. Translators: Add links to documentation.
8613
+ #: languages/vue.php:2675
8614
  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."
8615
  msgstr ""
8616
 
8617
  #. Translators: Add links to documentation.
8618
+ #: languages/vue.php:2679
8619
  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."
8620
  msgstr ""
8621
 
8622
+ #: languages/vue.php:2682
8623
  msgid "Add domain"
8624
  msgstr ""
8625
 
8626
  #. Translators: Domain name example.
8627
+ #: languages/vue.php:2686
8628
  msgid "Domain (example: %s)"
8629
  msgstr ""
8630
 
8631
  #. Translators: Current domain name that should not be used.
8632
+ #: languages/vue.php:2690
8633
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8634
  msgstr ""
8635
 
8636
  #. Translators: Adds link to the account area to retreive license key.
8637
+ #: languages/vue.php:2694
8638
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8639
  msgstr ""
8640
 
8641
+ #: languages/vue.php:2697
8642
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8643
  msgstr ""
8644
 
8645
+ #: languages/vue.php:2700
8646
  msgid "Complete Upgrade"
8647
  msgstr ""
8648
 
8649
+ #: languages/vue.php:2703
8650
  msgid "Upgrade to Pro Version!"
8651
  msgstr ""
8652
 
8653
  #. Translators: Make text bold.
8654
+ #: languages/vue.php:2707
8655
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8656
  msgstr ""
8657
 
8658
+ #: languages/vue.php:2710
8659
  msgid "Install All-in-One SEO"
8660
  msgstr ""
8661
 
8662
+ #: languages/vue.php:2713
8663
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8664
  msgstr ""
8665
 
8666
+ #: languages/vue.php:2716
8667
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8668
  msgstr ""
8669
 
8670
+ #: languages/vue.php:2719
8671
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8672
  msgstr ""
8673
 
8674
+ #: languages/vue.php:2722
8675
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8676
  msgstr ""
8677
 
8678
+ #: languages/vue.php:2725
8679
  msgid "Local SEO"
8680
  msgstr ""
8681
 
8682
+ #: languages/vue.php:2728
8683
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8684
  msgstr ""
8685
 
8686
+ #: languages/vue.php:2731
8687
  msgid "WooCommerce SEO"
8688
  msgstr ""
8689
 
8690
+ #: languages/vue.php:2734
8691
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8692
  msgstr ""
8693
 
8694
+ #: languages/vue.php:2737
8695
  msgid "SEO Custom User Roles"
8696
  msgstr ""
8697
 
8698
+ #: languages/vue.php:2740
8699
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8700
  msgstr ""
8701
 
8702
+ #: languages/vue.php:2743
8703
  msgid "Google News Sitemap"
8704
  msgstr ""
8705
 
8706
+ #: languages/vue.php:2746
8707
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8708
  msgstr ""
8709
 
8710
+ #: languages/vue.php:2749
8711
  msgid "Smart XML Sitemaps"
8712
  msgstr ""
8713
 
8714
+ #: languages/vue.php:2752
8715
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8716
  msgstr ""
8717
 
8718
+ #: languages/vue.php:2755
8719
  msgid "Social Media Integration"
8720
  msgstr ""
8721
 
8722
+ #: languages/vue.php:2758
8723
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8724
  msgstr ""
8725
 
8726
+ #: languages/vue.php:2761
8727
  msgid "TruSEO On-Page Analysis"
8728
  msgstr ""
8729
 
8730
+ #: languages/vue.php:2764
8731
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8732
  msgstr ""
8733
 
8734
+ #: languages/vue.php:2767
8735
  msgid "& Many More!"
8736
  msgstr ""
8737
 
8738
+ #: languages/vue.php:2770
8739
  msgid "Installing. Please wait.."
8740
  msgstr ""
8741
 
8742
+ #: languages/vue.php:2773
8743
  msgid "Install All-in-One-SEO"
8744
  msgstr ""
8745
 
8746
+ #: languages/vue.php:2776
8747
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8748
  msgstr ""
8749
 
8750
+ #: languages/vue.php:2779
8751
  msgid "See Your Top Landing Pages to Improve Engagement"
8752
  msgstr ""
8753
 
8754
+ #: languages/vue.php:2782
8755
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8756
  msgstr ""
8757
 
8758
+ #: languages/vue.php:2785
8759
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8760
  msgstr ""
8761
 
8762
+ #: languages/vue.php:2788
8763
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8764
  msgstr ""
8765
 
8766
+ #: languages/vue.php:2791
8767
  msgid "See Your Top Downloads and Improve Conversions"
8768
  msgstr ""
8769
 
8770
+ #: languages/vue.php:2794
8771
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8772
  msgstr ""
8773
 
8774
+ #: languages/vue.php:2797
8775
  msgid "Welcome to the all-new ExactMetrics"
8776
  msgstr ""
8777
 
8778
+ #: languages/vue.php:2800
8779
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8780
  msgstr ""
8781
 
8782
+ #: languages/vue.php:2803
8783
  msgid "The New & Improved ExactMetrics includes:"
8784
  msgstr ""
8785
 
8786
+ #: languages/vue.php:2806
8787
  msgid "All-New Design"
8788
  msgstr ""
8789
 
8790
+ #: languages/vue.php:2809
8791
  msgid "Better Reporting"
8792
  msgstr ""
8793
 
8794
+ #: languages/vue.php:2812
8795
  msgid "Better Tracking"
8796
  msgstr ""
8797
 
8798
+ #: languages/vue.php:2815
8799
  msgid "Better Support"
8800
  msgstr ""
8801
 
8802
+ #: languages/vue.php:2818
8803
  msgid "Continue"
8804
  msgstr ""
8805
 
8806
+ #: languages/vue.php:2821
8807
  msgid "Your settings have been automatically transferred."
8808
  msgstr ""
8809
 
8810
+ #: languages/vue.php:2824
8811
  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."
8812
  msgstr ""
8813
 
8814
+ #: languages/vue.php:2827
8815
  msgid "New"
8816
  msgstr ""
8817
 
8818
+ #: languages/vue.php:2830
8819
  msgid "Returning"
8820
  msgstr ""
8821
 
8822
+ #: languages/vue.php:2833
8823
  msgid "Top 10 Countries"
8824
  msgstr ""
8825
 
8826
+ #: languages/vue.php:2836
8827
  msgid "View Countries Report"
8828
  msgstr ""
8829
 
8830
+ #: languages/vue.php:2839
8831
  msgid "Top 10 Referrals"
8832
  msgstr ""
8833
 
8834
+ #: languages/vue.php:2842
8835
  msgid "View All Referral Sources"
8836
  msgstr ""
8837
 
8838
+ #: languages/vue.php:2845
8839
  msgid "View Full Posts/Pages Report"
8840
  msgstr ""
8841
 
8842
+ #: languages/vue.php:2848
8843
  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."
8844
  msgstr ""
8845
 
8846
+ #: languages/vue.php:2851
8847
  msgid "This list shows the top countries your website visitors are from."
8848
  msgstr ""
8849
 
8850
+ #: languages/vue.php:2854
8851
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8852
  msgstr ""
8853
 
8854
+ #: languages/vue.php:2857
8855
  msgid "This feature requires ExactMetrics Pro"
8856
  msgstr ""
8857
 
8858
+ #: languages/vue.php:2860
8859
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8860
  msgstr ""
8861
 
8862
+ #: languages/vue.php:2863
8863
  msgid "Upgrade to Pro and Unlock Popular Products"
8864
  msgstr ""
8865
 
8866
+ #: languages/vue.php:2866
8867
  msgid "View all Pro features"
8868
  msgstr ""
8869
 
8870
+ #: languages/vue.php:2869
8871
  msgid "View notifications"
8872
  msgstr ""
8873
 
8874
+ #: languages/vue.php:2872
8875
  msgid "Days"
8876
  msgstr ""
8877
 
8878
  #. Translators: placeholders make text small.
8879
+ #: languages/vue.php:2876
8880
  msgid "7 days"
8881
  msgstr ""
8882
 
8883
+ #: languages/vue.php:2879
8884
  msgid "30 days"
8885
  msgstr ""
8886
 
8887
+ #: languages/vue.php:2882
8888
  msgid "Custom"
8889
  msgstr ""
8890
 
8891
+ #: languages/vue.php:2885
8892
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8893
  msgstr ""
8894
 
8895
+ #: languages/vue.php:2888
8896
  msgid "All-in-One SEO is a great product. I have been using it on all my WP sites for several years. I highly recommend it."
8897
  msgstr ""
8898
 
8899
+ #: languages/vue.php:2891
8900
  msgid "Jack Brown"
8901
  msgstr ""
8902
 
8903
+ #: languages/vue.php:2894
8904
  msgid "PJB Internet Marketing"
8905
  msgstr ""
8906
 
8907
+ #: languages/vue.php:2897
8908
  msgid "I’m a professional SEO and used many tools and extensions. Regarding simplicity, individuality and configurability All in One SEO Pro is by far the best SEO plugin out there for WordPress."
8909
  msgstr ""
8910
 
8911
+ #: languages/vue.php:2900
8912
  msgid "Joel Steinmann"
8913
  msgstr ""
8914
 
8915
+ #: languages/vue.php:2903
8916
  msgid "CEO, Solergo"
8917
  msgstr ""
8918
 
8919
+ #: languages/vue.php:2906
8920
  msgid "Only Show Posts from These Categories"
8921
  msgstr ""
8922
 
8923
+ #: languages/vue.php:2909
8924
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8925
  msgstr ""
8926
 
8927
+ #: languages/vue.php:2912
8928
  msgid "Activating..."
8929
  msgstr ""
8930
 
8931
+ #: languages/vue.php:2915
8932
  msgid "Deactivating..."
8933
  msgstr ""
8934
 
8935
+ #: languages/vue.php:2918
8936
  msgid "Deactivate"
8937
  msgstr ""
8938
 
8939
+ #: languages/vue.php:2921
8940
  msgid "Search Console Report"
8941
  msgstr ""
8942
 
8943
+ #: languages/vue.php:2924
8944
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8945
  msgstr ""
8946
 
8947
+ #: languages/vue.php:2927
8948
  msgid "See Your Top Google Search Terms and Optimize Content"
8949
  msgstr ""
8950
 
8951
+ #: languages/vue.php:2930
8952
  msgid "See The Number of Clicks and Track Interests"
8953
  msgstr ""
8954
 
8955
+ #: languages/vue.php:2933
8956
  msgid "See The Click-Through-Ratio and Improve SEO"
8957
  msgstr ""
8958
 
8959
+ #: languages/vue.php:2936
8960
  msgid "See The Average Results Position and Focus on what works."
8961
  msgstr ""
8962
 
8963
+ #: languages/vue.php:2939
8964
  msgid "Ecommerce Report"
8965
  msgstr ""
8966
 
8967
+ #: languages/vue.php:2942
8968
  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."
8969
  msgstr ""
8970
 
8971
+ #: languages/vue.php:2945
8972
  msgid "See Your Conversion Rate to Improve Your Funnel"
8973
  msgstr ""
8974
 
8975
+ #: languages/vue.php:2948
8976
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8977
  msgstr ""
8978
 
8979
+ #: languages/vue.php:2951
8980
  msgid "Popular Posts data can be fetched correctly"
8981
  msgstr ""
8982
 
8983
+ #: languages/vue.php:2954
8984
  msgid "Please note: depending on when you set up the Custom Dimensions settings, it may take up to 7 days to see relevant Popular Posts data loading from Google Analytics."
8985
  msgstr ""
8986
 
8987
+ #: languages/vue.php:2957
8988
  msgid "Close"
8989
  msgstr ""
8990
 
8991
+ #: languages/vue.php:2960
8992
  msgid "Add Top 5 Posts from Google Analytics"
8993
  msgstr ""
8994
 
8995
+ #: languages/vue.php:2963
8996
  msgid "In order to load the top posts from Google Analytics you will need to enable the Custom Dimensions addon and set up the Post Type custom dimension in both ExactMetrics and Google Analytics settings."
8997
  msgstr ""
8998
 
8999
+ #: languages/vue.php:2966
9000
  msgid "Test Automated Posts"
9001
  msgstr ""
9002
 
9003
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
9004
+ #: languages/vue.php:2970
9005
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
9006
  msgstr ""
9007
 
9008
+ #: languages/vue.php:2973
9009
  msgid "Automated + Curated"
9010
  msgstr ""
9011
 
9012
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9013
+ #: languages/vue.php:2977
9014
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using %1$sCustom Dimensions%2$s. Also requires Sort By - Curated to be selected. Setup steps can be found in our %3$sknowledge base%4$s."
9015
  msgstr ""
9016
 
9017
  #. Translators: Placeholder gets replaced with current license version.
9018
+ #: languages/vue.php:2981
9019
  msgid "Pro version is required."
9020
  msgstr ""
9021
 
9022
+ #: languages/vue.php:2984
9023
  msgid "Verifying Popular Posts data"
9024
  msgstr ""
9025
 
9026
+ #: languages/vue.php:2987
9027
  msgid "Multiple Entries"
9028
  msgstr ""
9029
 
9030
+ #: languages/vue.php:2990
9031
  msgid "Total Number of Widgets to Show"
9032
  msgstr ""
9033
 
9034
+ #: languages/vue.php:2993
9035
  msgid "Choose how many widgets will be placed in a single Post."
9036
  msgstr ""
9037
 
9038
+ #: languages/vue.php:2996
9039
  msgid "Minimum Distance Between Widgets"
9040
  msgstr ""
9041
 
9042
+ #: languages/vue.php:2999
9043
  msgid "Choose the distance between widgets."
9044
  msgstr ""
9045
 
9046
+ #: languages/vue.php:3002
9047
  msgid "Minimum Word Count to Display Multiple Widgets"
9048
  msgstr ""
9049
 
9050
+ #: languages/vue.php:3005
9051
  msgid "Choose the minimum word count for a Post to have multiple entries."
9052
  msgstr ""
9053
 
9054
+ #: languages/vue.php:3008
9055
  msgid "Pro version is required"
9056
  msgstr ""
9057
 
9058
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
9059
+ #: languages/vue.php:3012
9060
  msgid "Automatically add the top 5 Posts from the past 30 days to your Curated list of Posts using Custom Dimensions (Pro version required. %1$sUpgrade now%2$s)."
9061
  msgstr ""
9062
 
9063
+ #: languages/vue.php:3015
9064
  msgid "Select posts/search"
9065
  msgstr ""
9066
 
9067
+ #: languages/vue.php:3018
9068
  msgid "Oops! No posts found."
9069
  msgstr ""
9070
 
9071
+ #: languages/vue.php:3021
9072
  msgid "Search by post title"
9073
  msgstr ""
9074
 
9075
+ #: languages/vue.php:3024
9076
  msgid "Can't load posts."
9077
  msgstr ""
9078
 
9079
+ #: languages/vue.php:3027
9080
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
9081
  msgstr ""
9082
 
9083
+ #: languages/vue.php:3030
9084
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
9085
  msgstr ""
9086
 
9087
+ #: languages/vue.php:3033
9088
  msgid "Color"
9089
  msgstr ""
9090
 
9091
+ #: languages/vue.php:3036
9092
  msgid "Size"
9093
  msgstr ""
9094
 
9095
+ #: languages/vue.php:3039
9096
  msgid "Title"
9097
  msgstr ""
9098
 
9099
+ #: languages/vue.php:3042
9100
  msgid "Label"
9101
  msgstr ""
9102
 
9103
+ #: languages/vue.php:3045
9104
  msgid "Background"
9105
  msgstr ""
9106
 
9107
+ #: languages/vue.php:3048
9108
  msgid "Border"
9109
  msgstr ""
9110
 
9111
+ #: languages/vue.php:3051
9112
  msgid "Icon"
9113
  msgstr ""
9114
 
9115
+ #: languages/vue.php:3054
9116
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9117
  msgid "Theme Preview"
9118
  msgstr ""
9119
 
9120
+ #: languages/vue.php:3057
9121
  msgid "SharedCount API Key"
9122
  msgstr ""
9123
 
9124
+ #: languages/vue.php:3060
9125
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9126
  msgstr ""
9127
 
9128
+ #: languages/vue.php:3063
9129
  msgid "Start Indexing"
9130
  msgstr ""
9131
 
9132
+ #: languages/vue.php:3066
9133
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9134
  msgstr ""
9135
 
9136
+ #: languages/vue.php:3069
9137
  msgid "Indexing completed, counts will update automatically every day."
9138
  msgstr ""
9139
 
9140
  #. Translators: Minimum and maximum number that can be used.
9141
+ #: languages/vue.php:3073
9142
  msgid "Please enter a value between %1$s and %2$s"
9143
  msgstr ""
9144
 
9145
  #. Translators: The minimum set value.
9146
+ #: languages/vue.php:3077
9147
  msgid "Please enter a value higher than %s"
9148
  msgstr ""
9149
 
9150
  #. Translators: The maximum set value.
9151
+ #: languages/vue.php:3081
9152
  msgid "Please enter a value lower than %s"
9153
  msgstr ""
9154
 
9155
+ #: languages/vue.php:3084
9156
  msgid "Please enter a number"
9157
  msgstr ""
9158
 
9159
+ #: languages/vue.php:3087
9160
  msgid "Value has to be a round number"
9161
  msgstr ""
9162
 
9163
+ #: languages/vue.php:3090
9164
  msgid "Author/Date"
9165
  msgstr ""
9166
 
9167
+ #: languages/vue.php:3102
9168
  msgid "Choose which content you would like displayed in the widget."
9169
  msgstr ""
9170
 
9171
+ #: languages/vue.php:3114
9172
  msgid "Comments"
9173
  msgstr ""
9174
 
9175
+ #: languages/vue.php:3120
9176
  msgid "Choose how many posts you’d like displayed in the widget."
9177
  msgstr ""
9178
 
9179
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9180
+ #: languages/vue.php:3124
9181
  msgid "%1$sPage %3$s%2$s of %4$s"
9182
  msgstr ""
9183
 
9184
+ #: languages/vue.php:3127
9185
  msgid "Wide"
9186
  msgstr ""
9187
 
9188
+ #: languages/vue.php:3130
9189
  msgid "Narrow"
9190
  msgstr ""
9191
 
9192
  #. Translators: Make text green.
9193
+ #: languages/vue.php:3134
9194
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9195
  msgstr ""
9196
 
9197
+ #: languages/vue.php:3140
9198
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9199
  msgstr ""
9200
 
9201
+ #: languages/vue.php:3143
9202
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9203
  msgstr ""
9204
 
9205
+ #: languages/vue.php:3146
9206
  msgid "Usage Tracking"
9207
  msgstr ""
9208
 
9209
+ #: languages/vue.php:3149
9210
  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."
9211
  msgstr ""
9212
 
9213
+ #: languages/vue.php:3152
9214
  msgid "Allow usage tracking"
9215
  msgstr ""
9216
 
9217
  #. Translators: Adds a link to the documentation.
9218
+ #: languages/vue.php:3156
9219
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9220
  msgstr ""
9221
 
9222
+ #: languages/vue.php:3159
9223
  msgid "Facebook Instant Articles"
9224
  msgstr ""
9225
 
9226
+ #: languages/vue.php:3162
9227
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9228
  msgstr ""
9229
 
9230
+ #: languages/vue.php:3165
9231
  msgid "Performance"
9232
  msgstr ""
9233
 
9234
+ #: languages/vue.php:3168
9235
  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."
9236
  msgstr ""
9237
 
9238
+ #: languages/vue.php:3171
9239
  msgid "Google AMP"
9240
  msgstr ""
9241
 
9242
+ #: languages/vue.php:3174
9243
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9244
  msgstr ""
9245
 
9246
+ #: languages/vue.php:3177
9247
  msgid "Ads Tracking"
9248
  msgstr ""
9249
 
9250
+ #: languages/vue.php:3180
9251
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9252
  msgstr ""
9253
 
9254
+ #: languages/vue.php:3183
9255
  msgid "Unlock with %s"
9256
  msgstr ""
9257
 
9258
+ #: languages/vue.php:3186
9259
  msgid "Scroll Tracking"
9260
  msgstr ""
9261
 
9262
+ #: languages/vue.php:3189
9263
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9264
  msgstr ""
9265
 
9266
+ #: languages/vue.php:3192
9267
  msgid ""
9268
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9269
  " and other privacy regulations."
9270
  msgstr ""
9271
 
9272
+ #: languages/vue.php:3196
9273
  msgid "EU Compliance"
9274
  msgstr ""
9275
 
9276
+ #: languages/vue.php:3199
9277
  msgid "Compatibility mode"
9278
  msgstr ""
9279
 
9280
+ #: languages/vue.php:3202
9281
  msgid "Enable _gtagTracker Compatibility"
9282
  msgstr ""
9283
 
9284
  #. Translators: Placeholder gets replaced with default GA js function.
9285
+ #: languages/vue.php:3206
9286
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9287
  msgstr ""
9288
 
9289
+ #: languages/vue.php:3209
9290
  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!"
9291
  msgstr ""
9292
 
9293
+ #: languages/vue.php:3212
9294
  msgid "To unlock more features consider upgrading to PRO."
9295
  msgstr ""
9296
 
9297
+ #: languages/vue.php:3215
9298
  msgid "Upgrade to"
9299
  msgstr ""
9300
 
9301
+ #: languages/vue.php:3218
9302
  msgid "Export PDF Report"
9303
  msgstr ""
9304
 
9305
+ #: languages/vue.php:3221
9306
  msgid "You can export PDF reports only in the PRO version."
9307
  msgstr ""
9308
 
9309
+ #: languages/vue.php:3224
9310
  msgid "Display Method"
9311
  msgstr ""
9312
 
9313
+ #: languages/vue.php:3227
9314
  msgid "There are two ways to manual include the widget in your posts."
9315
  msgstr ""
9316
 
9317
+ #: languages/vue.php:3231
9318
  msgid "Using the Gutenberg Block"
9319
  msgstr ""
9320
 
9321
+ #: languages/vue.php:3234
9322
  msgid "Using the Shortcode"
9323
  msgstr ""
9324
 
9325
+ #: languages/vue.php:3237
9326
  msgid "Learn how to insert the widget using Gutenberg blocks."
9327
  msgstr ""
9328
 
9329
+ #: languages/vue.php:3240
9330
  msgid "Learn how to insert the widget using out Shortcode."
9331
  msgstr ""
9332
 
9333
+ #: languages/vue.php:3243
9334
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9335
  msgstr ""
9336
 
9337
+ #: languages/vue.php:3247
9338
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9339
  msgstr ""
9340
 
9341
+ #: languages/vue.php:3250
9342
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9343
  msgstr ""
9344
 
9345
+ #: languages/vue.php:3254
9346
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9347
  msgstr ""
9348
 
9349
+ #: languages/vue.php:3257
9350
  msgid "Shortcode"
9351
  msgstr ""
9352
 
9353
+ #: languages/vue.php:3261
9354
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9355
  msgstr ""
9356
 
9357
+ #: languages/vue.php:3265
9358
  msgid "Copy Shortcode"
9359
  msgstr ""
9360
 
9361
+ #: languages/vue.php:3268
9362
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9363
  msgstr ""
9364
 
9365
+ #: languages/vue.php:3271
9366
  msgid "Automatic Placement"
9367
  msgstr ""
9368
 
9369
+ #: languages/vue.php:3274
9370
  msgid "Display using Gutenberg Blocks"
9371
  msgstr ""
9372
 
9373
+ #: languages/vue.php:3277
9374
  msgid "Embed Options"
9375
  msgstr ""
9376
 
9377
+ #: languages/vue.php:3280
9378
  msgid "All Embed Options can be used in conjunction with one another."
9379
  msgstr ""
9380
 
9381
+ #: languages/vue.php:3283
9382
  msgid "Using Automatic Embed"
9383
  msgstr ""
9384
 
9385
+ #: languages/vue.php:3286
9386
  msgid "Learn how to insert the Popular Posts Widget into your posts and pages using Gutenberg Blocks. To style this widget, use the Gutenberg Block settings."
9387
  msgstr ""
9388
 
9389
+ #: languages/vue.php:3289
9390
  msgid "Enabling Automatic Placement will include the Popular Posts Widget after the last paragraph of any and all posts that match your Behavior settings. To style this widget use the Customize Design panel above."
9391
  msgstr ""
9392
 
9393
+ #: languages/vue.php:3292
9394
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9395
  msgstr ""
9396
 
9397
+ #: languages/vue.php:3295
9398
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9399
  msgstr ""
9400
 
9401
+ #: languages/vue.php:3298
9402
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9403
  msgstr ""
9404
 
9405
+ #: languages/vue.php:3301
9406
  msgid "%1$sStep 1%2$s - Navigate to your Appearance > Widgets page using the menu on the left side your screen. Must be logged in as Admin."
9407
  msgstr ""
9408
 
9409
+ #: languages/vue.php:3304
9410
  msgid "%1$sStep 2%2$s - On the left, under Available Widgets, look for the Popular Posts - ExactMetrics widget and drag it into the desired Sidebar on the right."
9411
  msgstr ""
9412
 
9413
+ #: languages/vue.php:3307
9414
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9415
  msgstr ""
9416
 
9417
+ #: languages/vue.php:3310
9418
  msgid "Display using a Shortcode"
9419
  msgstr ""
9420
 
9421
+ #: languages/vue.php:3313
9422
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9423
  msgstr ""
9424
 
9425
+ #: languages/vue.php:3316
9426
  msgid "Enable Automatic Placement"
9427
  msgstr ""
9428
 
9429
+ #: languages/vue.php:3319
9430
  msgid "Display in a Sidebar"
9431
  msgstr ""
9432
 
9433
+ #: languages/vue.php:3322
9434
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9435
  msgstr ""
9436
 
9437
+ #: languages/vue.php:3325
9438
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9439
  msgstr ""
9440
 
9441
  #. Translators: The number of results.
9442
+ #: languages/vue.php:3329
9443
  msgid "%s results"
9444
  msgstr ""
9445
 
9446
+ #: languages/vue.php:3332
9447
  msgid "Media"
9448
  msgstr ""
9449
 
9450
+ #: languages/vue.php:3335
9451
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9452
  msgstr ""
9453
 
9454
+ #: languages/vue.php:3339
9455
  msgid "2021 Year in Review"
9456
  msgstr ""
9457
 
9458
+ #: languages/vue.php:3342
9459
  msgid "Media- Track how your users interact with videos on your website."
9460
  msgstr ""
9461
 
9462
+ #: languages/vue.php:3345
9463
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9464
  msgstr ""
9465
 
9466
+ #: languages/vue.php:3348
9467
  msgid "Your 2021 Analytics Report"
9468
  msgstr ""
9469
 
9470
+ #: languages/vue.php:3354
9471
  msgid "January 1, 2021 - December 31, 2021"
9472
  msgstr ""
9473
 
9474
+ #: languages/vue.php:3357
9475
  msgid "A Tip for 2022"
9476
  msgstr ""
9477
 
9478
+ #: languages/vue.php:3360
9479
  msgid "A Tip For 2022"
9480
  msgstr ""
9481
 
9482
+ #: languages/vue.php:3363
9483
  msgid "Here's to an amazing 2022!"
9484
  msgstr ""
9485
 
9486
+ #: languages/vue.php:3366
9487
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9488
  msgstr ""
9489
 
9490
+ #: languages/vue.php:3369
9491
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9492
  msgstr ""
9493
 
9494
+ #: languages/vue.php:3372
9495
  msgid "Copyright ExactMetrics, 2022"
9496
  msgstr ""
9497
 
9498
  #. Translators: Number of minutes spent on site.
9499
+ #: languages/vue.php:3376
9500
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9501
  msgstr ""
9502
 
9503
  #. Translators: Placeholders are used for making text bold and adding a link.
9504
+ #: languages/vue.php:3380
9505
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9506
  msgstr ""
9507
 
9508
+ #: languages/vue.php:3383
9509
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9510
  msgstr ""
9511
 
9512
+ #: languages/vue.php:3386
9513
  msgid "RafflePress"
9514
  msgstr ""
9515
 
9516
+ #: languages/vue.php:3389
9517
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9518
  msgstr ""
9519
 
9520
+ #: languages/vue.php:3392
9521
  msgid "Constant Contact"
9522
  msgstr ""
9523
 
9524
+ #: languages/vue.php:3395
9525
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9526
  msgstr ""
9527
 
9528
+ #: languages/vue.php:3398
9529
  msgid "SEMRUSH"
9530
  msgstr ""
9531
 
9532
+ #: languages/vue.php:3401
9533
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9534
  msgstr ""
9535
 
9536
+ #: languages/vue.php:3404
9537
  msgid "Engagement Tools"
9538
  msgstr ""
9539
 
9540
+ #: languages/vue.php:3407
9541
  msgid "WPForms"
9542
  msgstr ""
9543
 
9544
+ #: languages/vue.php:3410
9545
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9546
  msgstr ""
9547
 
9548
+ #: languages/vue.php:3413
9549
  msgid "OptinMonster"
9550
  msgstr ""
9551
 
9552
+ #: languages/vue.php:3416
9553
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9554
  msgstr ""
9555
 
9556
+ #: languages/vue.php:3419
9557
  msgid "Smash Balloon - Facebook"
9558
  msgstr ""
9559
 
9560
+ #: languages/vue.php:3422
9561
  msgid "Smash Balloon - Instagram"
9562
  msgstr ""
9563
 
9564
+ #: languages/vue.php:3425
9565
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9566
  msgstr ""
9567
 
9568
+ #: languages/vue.php:3428
9569
  msgid "Popular Posts by ExactMetrics"
9570
  msgstr ""
9571
 
9572
+ #: languages/vue.php:3431
9573
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9574
  msgstr ""
9575
 
9576
+ #: languages/vue.php:3434
9577
  msgid "Popular Products by ExactMetrics"
9578
  msgstr ""
9579
 
9580
+ #: languages/vue.php:3437
9581
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9582
  msgstr ""
9583
 
9584
+ #: languages/vue.php:3440
9585
  msgid "Revenue Tools"
9586
  msgstr ""
9587
 
9588
+ #: languages/vue.php:3443
9589
  msgid "SeedProd"
9590
  msgstr ""
9591
 
9592
+ #: languages/vue.php:3446
9593
  msgid "Use the best drag-and-drop landing page builder for WordPress to instantly build coming soon pages, sales pages, opt-in pages, webinar pages, maintenance pages, and more. Includes 100+ free templates."
9594
  msgstr ""
9595
 
9596
+ #: languages/vue.php:3449
9597
  msgid "Featured Tools"
9598
  msgstr ""
9599
 
9600
+ #: languages/vue.php:3452
9601
  msgid "Easy Affiliate"
9602
  msgstr ""
9603
 
9604
+ #: languages/vue.php:3455
9605
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9606
  msgstr ""
9607
 
9608
+ #: languages/vue.php:3458
9609
  msgid "SearchWP"
9610
  msgstr ""
9611
 
9612
+ #: languages/vue.php:3461
9613
  msgid "Unlock better search results for your website. Perfect for any information or eCommerce store to help users find exactly what content and products they’re looking for."
9614
  msgstr ""
9615
 
9616
+ #: languages/vue.php:3464
9617
  msgid "Easy Digital Downloads"
9618
  msgstr ""
9619
 
9620
+ #: languages/vue.php:3467
9621
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9622
  msgstr ""
9623
 
9624
+ #: languages/vue.php:3470
9625
  msgid "MemberPress"
9626
  msgstr ""
9627
 
9628
+ #: languages/vue.php:3473
9629
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9630
  msgstr ""
9631
 
9632
+ #: languages/vue.php:3476
9633
  msgid "Thirsty Affiliates"
9634
  msgstr ""
9635
 
9636
+ #: languages/vue.php:3479
9637
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9638
  msgstr ""
9639
 
9640
+ #: languages/vue.php:3482
9641
  msgid "Upgrade to unlock advanced reporting and features designed to help you get more traffic and make more money from your website. Special Offer: Save 50% today."
9642
  msgstr ""
9643
 
9644
+ #: languages/vue.php:3485
9645
  msgid "Advanced Coupons"
9646
  msgstr ""
9647
 
9648
+ #: languages/vue.php:3488
9649
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9650
  msgstr ""
9651
 
9652
+ #: languages/vue.php:3491
9653
  msgid "PrettyLinks"
9654
  msgstr ""
9655
 
9656
+ #: languages/vue.php:3494
9657
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9658
  msgstr ""
9659
 
9660
+ #: languages/vue.php:3497
9661
  msgid "Install Now"
9662
  msgstr ""
9663
 
9664
+ #: languages/vue.php:3500
9665
  msgid "Online Marketing Guides & Resources"
9666
  msgstr ""
9667
 
9668
+ #: languages/vue.php:3503
9669
  msgid "Read This Guide"
9670
  msgstr ""
9671
 
9672
+ #: languages/vue.php:3509
9673
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9674
  msgstr ""
9675
 
9676
+ #: languages/vue.php:3512
9677
  msgid "Traffic Tools"
9678
  msgstr ""
9679
 
9680
+ #: languages/vue.php:3515
9681
  msgid "All in One SEO (AIOSEO)"
9682
  msgstr ""
9683
 
9684
+ #: languages/vue.php:3518
9685
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9686
  msgstr ""
9687
 
9688
+ #: languages/vue.php:3521
9689
  msgid "PushEngage"
9690
  msgstr ""
9691
 
9692
+ #: languages/vue.php:3524
9693
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9694
  msgstr ""
9695
 
9696
+ #: languages/vue.php:3527
9697
  msgid "Featured"
9698
  msgstr ""
9699
 
9700
+ #: languages/vue.php:3530
9701
  msgid "Traffic"
9702
  msgstr ""
9703
 
9704
+ #: languages/vue.php:3533
9705
  msgid "Revenue"
9706
  msgstr ""
9707
 
9708
+ #: languages/vue.php:3536
9709
  msgid "Guides & Resources"
9710
  msgstr ""
9711
 
9712
+ #: languages/vue.php:3539
9713
  msgid "Media Tracking"
9714
  msgstr ""
9715
 
9716
+ #: languages/vue.php:3542
9717
  msgid "Get Started"
9718
  msgstr ""
9719
 
9720
+ #: languages/vue.php:3545
9721
  msgid "Privacy Compliance Addon"
9722
  msgstr ""
9723
 
9724
+ #: languages/vue.php:3548
9725
  msgid "Help Google Analytics become compliant with internet privacy laws like GDPR, PECR, and CCPA."
9726
  msgstr ""
9727
 
9728
+ #: languages/vue.php:3551
9729
  msgid "Get access to advanced reports inside WordPress including search keywords report, real-time analytics dashboard, publishers / eCommerce report, custom dimensions, and more."
9730
  msgstr ""
9731
 
9732
+ #: languages/vue.php:3554
9733
  msgid "Instantly enable enhanced eCommerce tracking, so you can measure conversions, sales, and revenue stats. Works with WooCommerce, Easy Digital Downloads, MemberPress, and more."
9734
  msgstr ""
9735
 
9736
+ #: languages/vue.php:3557
9737
  msgid "20+ Advanced Tracking"
9738
  msgstr ""
9739
 
9740
+ #: languages/vue.php:3560
9741
  msgid "Get access to advanced tracking features like form conversion tracking, author tracking, custom dimensions, scroll tracking, and more."
9742
  msgstr ""
9743
 
9744
+ #: languages/vue.php:3563
9745
  msgid "Advanced Growth Tools"
9746
  msgstr ""
9747
 
9748
+ #: languages/vue.php:3566
9749
  msgid "Get access to advanced growth tools such as popular posts addon, A/B testing tool, smart URL builder, and more."
9750
  msgstr ""
9751
 
9752
+ #: languages/vue.php:3569
9753
  msgid "Track how your users interact with videos on your website."
9754
  msgstr ""
9755
 
9756
+ #: languages/vue.php:3572
9757
  msgid "Error Processing"
9758
  msgstr ""
9759
 
9760
+ #: languages/vue.php:3575
9761
  msgid "There was an error while processing some features. Please try again or you can skip this process for now"
9762
  msgstr ""
9763
 
9764
+ #: languages/vue.php:3578
9765
  msgid "Which website features would you like to enable?"
9766
  msgstr ""
9767
 
9768
+ #: languages/vue.php:3581
9769
  msgid "We’ve already selected our recommended features based on your site. "
9770
  msgstr ""
9771
 
9772
+ #: languages/vue.php:3584
9773
  msgid "Other Addons"
9774
  msgstr ""
9775
 
9776
+ #: languages/vue.php:3587
9777
  msgid "View all ExactMetrics addons"
9778
  msgstr ""
9779
 
9780
+ #: languages/vue.php:3590
9781
  msgid "Standard Analytics & Reports"
9782
  msgstr ""
9783
 
9784
+ #: languages/vue.php:3593
9785
  msgid "Get the reports and stats that matter right inside your WordPress Dashboard."
9786
  msgstr ""
9787
 
9788
+ #: languages/vue.php:3596
9789
  msgid "Helps you see what links your users are clicking on your site."
9790
  msgstr ""
9791
 
9792
+ #: languages/vue.php:3599
9793
  msgid "All In One SEO Toolkit"
9794
  msgstr ""
9795
 
9796
+ #: languages/vue.php:3602
9797
  msgid "The best WordPress SEO plugin that works with ExactMetrics to boost your rankings."
9798
  msgstr ""
9799
 
9800
+ #: languages/vue.php:3605
9801
  msgid "Smart Form Builder by WPForms"
9802
  msgstr ""
9803
 
9804
+ #: languages/vue.php:3608
9805
  msgid "The most popular WordPress form plugin, trusted by over 5 million websites. Easily create contact forms, payment forms, surveys and more."
9806
  msgstr ""
9807
 
9808
+ #: languages/vue.php:3611
9809
  msgid "Awesome! Tracking and Analytics are All Setup!"
9810
  msgstr ""
9811
 
9812
+ #: languages/vue.php:3614
9813
  msgid "ExactMetrics is connected to Google Analytics and data is being collected."
9814
  msgstr ""
9815
 
9816
+ #: languages/vue.php:3621
9817
  msgid "Complete Setup without Upgrading"
9818
  msgstr ""
9819
 
9820
+ #: languages/vue.php:3624
9821
  msgid "Success"
9822
  msgstr ""
9823
 
9824
+ #: languages/vue.php:3627
9825
  msgid "Connected to Google Analytics"
9826
  msgstr ""
9827
 
9828
+ #: languages/vue.php:3630
9829
  msgid "Tracking Code Installed"
9830
  msgstr ""
9831
 
9832
+ #: languages/vue.php:3633
9833
  msgid "Data Being Collected"
9834
  msgstr ""
9835
 
9836
  #. Translators: Add link to retrieve license from account area.
9837
+ #: languages/vue.php:3637
9838
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO!"
9839
  msgstr ""
9840
 
9841
+ #: languages/vue.php:3640
9842
  msgid "Verify License Key"
9843
  msgstr ""
9844
 
9845
+ #: languages/vue.php:3643
9846
  msgid "Upgrade to Unlock These Features"
9847
  msgstr ""
9848
 
9849
+ #: languages/vue.php:3646
9850
  msgid "To unlock the selected features, please upgrade to Pro and enter your license key below."
9851
  msgstr ""
9852
 
9853
+ #: languages/vue.php:3649
9854
  msgid "%1$sBonus:%2$s Upgrade today and save %3$s50%% on a Pro License!%4$s (auto-applied at checkout)"
9855
  msgstr ""
9856
 
9857
+ #: languages/vue.php:3652
9858
  msgid "Verifying License..."
9859
  msgstr ""
9860
 
9861
+ #: languages/vue.php:3658
9862
  msgid "The following plugins will be installed: "
9863
  msgstr ""
9864
 
9865
+ #: languages/vue.php:3661
9866
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9867
  msgstr ""
9868
 
9869
+ #: languages/vue.php:3664
9870
  msgid "Manually enter your GA4 Measurement ID"
9871
  msgstr ""
9872
 
9873
+ #: languages/vue.php:3667
9874
  msgid "Warning: If you use a manual GA4 Measurement ID, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like G-XXXXXXXXXX where the X's are combination of numbers and letters."
9875
  msgstr ""
9876
 
9877
+ #: languages/vue.php:3670
9878
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are a combination of numbers and letters."
9879
  msgstr ""
9880
 
9881
+ #: languages/vue.php:3673
9882
  msgid "Your ExactMetrics license key has expired."
9883
  msgstr ""
9884
 
9885
+ #: languages/vue.php:3676
9886
  msgid "Renew today to ensure Google Analytics continues to track properly."
9887
  msgstr ""
9888
 
9889
+ #: languages/vue.php:3679
9890
  msgid "Click here."
9891
  msgstr ""
9892
 
9893
+ #: languages/vue.php:3682
9894
  msgid "ExactMetrics makes it effortless for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
9895
  msgstr ""
9896
 
9897
+ #: languages/vue.php:3685
9898
  msgid "License Expired"
9899
  msgstr ""
9900
 
9901
+ #: languages/vue.php:3688
9902
  msgid "Expired"
9903
  msgstr ""
9904
 
9905
  #. Translators: Adds a link to the license renewal.
9906
+ #: languages/vue.php:3692
9907
  msgid "To ensure tracking works properly, reactivate your license"
9908
  msgstr ""
9909
 
9910
+ #: languages/vue.php:3695
9911
  msgid "Reactivate License"
9912
  msgstr ""
9913
 
9914
+ #: languages/vue.php:3698
9915
  msgid "View All Reports"
9916
  msgstr ""
9917
 
9918
+ #: languages/vue.php:3701
9919
  msgid "WP Simple Pay"
9920
  msgstr ""
9921
 
9922
  #. Translators: tag to make text italic starts, tag end.
9923
+ #: languages/vue.php:3708
9924
  msgid "See What Your Website Visitors Are %1$sReally%2$s Thinking!"
9925
  msgstr ""
9926
 
9927
+ #: languages/vue.php:3711
9928
  msgid "UserFeedback lets you easily collect feedback from your website in real time. You can use this important data to increase your traffic, sales, newsletter signups, engagement, and more."
9929
  msgstr ""
9930
 
9931
+ #: languages/vue.php:3714
9932
  msgid "Understand exactly why visitors left your website, what convinced them to make a purchase, why they signed up for a newsletter, and more with real verbatim feedback"
9933
  msgstr ""
9934
 
9935
+ #: languages/vue.php:3717
9936
  msgid "Ask open ended questions, run polls or surveys, gather ratings, and more with an easy survey builder"
9937
  msgstr ""
9938
 
9939
+ #: languages/vue.php:3720
9940
  msgid "Customize targeting rules to get specific feedback on certain pages or products"
9941
  msgstr ""
9942
 
9943
+ #: languages/vue.php:3723
9944
  msgid "Easily analyze your responses and export data"
9945
  msgstr ""
9946
 
9947
+ #: languages/vue.php:3726
9948
  msgid "Install & Activate UserFeedback"
9949
  msgstr ""
9950
 
9951
+ #: languages/vue.php:3729
9952
  msgid "Install UserFeedback by clicking the button below."
9953
  msgstr ""
9954
 
9955
+ #: languages/vue.php:3732
9956
  msgid "Install UserFeedback"
9957
  msgstr ""
9958
 
9959
+ #: languages/vue.php:3735
9960
  msgid "Set Up UserFeedback"
9961
  msgstr ""
9962
 
9963
+ #: languages/vue.php:3738
9964
  msgid "Run the UserFeedback setup wizard to launch your first UserFeedback survey."
9965
  msgstr ""
9966
 
9967
+ #: languages/vue.php:3741
9968
  msgid "Start Setup"
9969
  msgstr ""
9970
 
9971
+ #: languages/vue.php:3744
9972
  msgid "Installing UserFeedback..."
9973
  msgstr ""
9974
 
9975
+ #: languages/vue.php:3747
9976
  msgid "Activating UserFeedback..."
9977
  msgstr ""
9978
 
9979
+ #: languages/vue.php:3750
9980
  msgid "Installed & Active"
9981
  msgstr ""
9982
 
9983
+ #: languages/vue.php:3753
9984
  msgid "Oops! There was an error processing request. Please try again later."
9985
  msgstr ""
9986
 
9987
+ #: languages/vue.php:3756
9988
  msgid "Oops! We could not save your changes. Please try again. If the problem persists, please %1$scontact our support%2$s team."
9989
  msgstr ""
9990
 
9991
+ #: languages/vue.php:3759
9992
  msgid "Installing UserFeedback"
9993
  msgstr ""
9994
 
9995
+ #: languages/vue.php:3762
9996
  msgid "Activating UserFeedback"
9997
  msgstr ""
9998
 
9999
+ #: languages/vue.php:3765
10000
  msgid "Oops! Something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
10001
  msgstr ""
10002
 
10003
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10004
+ #: languages/vue.php:3769
10005
  msgid "Can't load settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance. "
10006
  msgstr ""
10007
 
10008
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10009
+ #: languages/vue.php:3773
10010
  msgid "Can't save settings. Error: %1$s, %2$s. Please %3$scontact our support%4$s team for assistance."
10011
  msgstr ""
10012
 
10013
  #. Translators: Support link tag starts with url and support link tag ends.
10014
+ #: languages/vue.php:3777
10015
  msgid "Oops! There was an error, your settings were not saved. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10016
  msgstr ""
10017
 
10018
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10019
+ #: languages/vue.php:3781
10020
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10021
  msgstr ""
10022
 
10023
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10024
+ #: languages/vue.php:3785
10025
  msgid "Oops! There was an issue deactivating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10026
  msgstr ""
10027
 
10028
  #. Translators: Support Link tag starts with URL, Support link tag ends, Error status and error text.
10029
+ #: languages/vue.php:3789
10030
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10031
  msgstr ""
10032
 
10033
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10034
+ #: languages/vue.php:3793
10035
  msgid "Oops! There was an issue verifying your license upgrade, please try again. If the issue persists, please %1$scontact our support team%2$s."
10036
  msgstr ""
10037
 
10038
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10039
+ #: languages/vue.php:3797
10040
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10041
  msgstr ""
10042
 
10043
+ #: languages/vue.php:3800
10044
  msgid "Oops! There was an issue loading your license details, please try again. If the issue persists, please %1$scontact our support team%2$s."
10045
  msgstr ""
10046
 
10047
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10048
+ #: languages/vue.php:3804
10049
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10050
  msgstr ""
10051
 
10052
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10053
+ #: languages/vue.php:3808
10054
  msgid "Oops! There was an issue verifying your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10055
  msgstr ""
10056
 
10057
  #. Translators: Support Link tag start with URL, Support link tag ends, Error status and error text.
10058
+ #: languages/vue.php:3812
10059
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s. Error: %3$s, %4$s"
10060
  msgstr ""
10061
 
10062
  #. Translators: Support Link tag starts with URL, Support link tag ends.
10063
+ #: languages/vue.php:3816
10064
  msgid "Oops! There was an issue validating your license, please try again. If the issue persists, please %1$scontact our support team%2$s."
10065
  msgstr ""
10066
 
10067
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10068
+ #: languages/vue.php:3820
10069
  msgid "Oops! We can't verify deauthentication. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10070
  msgstr ""
10071
 
10072
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10073
+ #: languages/vue.php:3824
10074
  msgid "Can't load authentication details. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10075
  msgstr ""
10076
 
10077
  #. Translators: Support page link tag starts and support page link tag ends.
10078
+ #: languages/vue.php:3828
10079
  msgid "Oops! There was an error loading your site details. Please refresh the page and try again. If the issue persists, please contact our support team."
10080
  msgstr ""
10081
 
10082
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10083
+ #: languages/vue.php:3832
10084
  msgid "Can't save settings. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10085
  msgstr ""
10086
 
10087
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10088
+ #: languages/vue.php:3836
10089
  msgid "Oops! We can't authenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team. "
10090
  msgstr ""
10091
 
10092
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10093
+ #: languages/vue.php:3840
10094
  msgid "Oops! We can't reauthenticate. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team"
10095
  msgstr ""
10096
 
10097
  #. Translators: Error status, error text, Support page link tag starts and support page link tag ends.
10098
+ #: languages/vue.php:3844
10099
  msgid "Oops! We can't verify credentials. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10100
  msgstr ""
10101
 
10102
  #. Translators: Error status, error text, Support link tag starts with url and support link tag ends.
10103
+ #: languages/vue.php:3848
10104
  msgid "Can't load report data. Error: %1$s, %2$s. Please try again in a few minutes. If the issue persists, please %3$scontact our support%4$s team."
10105
  msgstr ""
10106
 
10107
  #. Translators: Error status and error text.
10108
+ #: languages/vue.php:3852
10109
  msgid "Oops! Can't install WPForms. Error: %1$s, %2$s"
10110
  msgstr ""
10111
 
10112
  #. Translators: Error status and error text.
10113
+ #: languages/vue.php:3856
10114
  msgid "Oops! Can't activate addon. Error: %1$s, %2$s"
10115
  msgstr ""
10116
 
10117
+ #: languages/vue.php:3859
10118
  msgid "Oops! There was an error activating the addon. Please try again. If the issue persists, please %1$scontact our support%2$s team."
10119
  msgstr ""
10120
 
10121
  #. Translators: Error status and error text.
10122
+ #: languages/vue.php:3863
10123
  msgid "Oops! Can't deactivate addon. Error: %1$s, %2$s"
10124
  msgstr ""
10125
 
10126
  #. Translators: Error status and error text.
10127
+ #: languages/vue.php:3867
10128
  msgid "Oops! Can't install plugin. Error: %1$s, %2$s"
10129
  msgstr ""
10130
 
10131
  #. Translators: Error status and error text.
10132
+ #: languages/vue.php:3871
10133
  msgid "Oops! Can't install addon. Error: %1$s, %2$s"
10134
  msgstr ""
10135
 
10136
  #. Translators: Support link tag starts with url and support link tag ends.
10137
+ #: languages/vue.php:3875
10138
  msgid "Oops! An error occurred while importing your settings. Please ensure you selected the correct file. If the issue continues please %1$scontact our support%2$s team."
10139
  msgstr ""
10140
 
10141
  #. Translators: Support link tag starts with url and support link tag ends.
10142
+ #: languages/vue.php:3879
10143
  msgid "Oops! Can't load posts. Please try again in a few minutes. If the issue persists, please %1$scontact our support%2$s team."
10144
  msgstr ""
10145
 
10146
+ #: languages/vue.php:3882
10147
  msgid "Website Badge"
10148
  msgstr ""
10149
 
10150
+ #: languages/vue.php:3885
10151
  msgid "Publishers Report"
10152
  msgstr ""
10153
 
10154
+ #: languages/vue.php:3888
10155
  msgid "Improve Your Conversion Rate With Insights Into Which Content Works Best."
10156
  msgstr ""
10157
 
10158
+ #: languages/vue.php:3891
10159
  msgid "Top Affilliate Links"
10160
  msgstr ""
10161
 
10162
+ #: languages/vue.php:3894
10163
  msgid "Scroll Depth"
10164
  msgstr ""
10165
 
10166
+ #: languages/vue.php:3897
10167
  msgid "eCommerce Report"
10168
  msgstr ""
10169
 
10170
+ #: languages/vue.php:3900
10171
  msgid "Increase Sales and Make More Money With Enhanced eCommerce Insights."
10172
  msgstr ""
10173
 
10174
+ #: languages/vue.php:3903
10175
  msgid "10+ eCommerce Integrations"
10176
  msgstr ""
10177
 
10178
+ #: languages/vue.php:3906
10179
  msgid "Average Order Value"
10180
  msgstr ""
10181
 
10182
+ #: languages/vue.php:3909
10183
  msgid "Total Revenue"
10184
  msgstr ""
10185
 
10186
+ #: languages/vue.php:3912
10187
  msgid "Number of Transactions"
10188
  msgstr ""
10189
 
10190
+ #: languages/vue.php:3915
10191
  msgid "Increase Engagement and Unlock New Insights About Your Site."
10192
  msgstr ""
10193
 
10194
+ #: languages/vue.php:3918
10195
  msgid "User ID Tracking"
10196
  msgstr ""
10197
 
10198
+ #: languages/vue.php:3921
10199
  msgid "Post Types"
10200
  msgstr ""
10201
 
10202
+ #: languages/vue.php:3924
10203
  msgid "Tag Tracking"
10204
  msgstr ""
10205
 
10206
+ #: languages/vue.php:3927
10207
  msgid "Categories"
10208
  msgstr ""
10209
 
10210
+ #: languages/vue.php:3930
10211
  msgid "SEO Scores"
10212
  msgstr ""
10213
 
10214
+ #: languages/vue.php:3933
10215
  msgid "Publish Times"
10216
  msgstr ""
10217
 
10218
+ #: languages/vue.php:3936
10219
  msgid "Focus Keywords"
10220
  msgstr ""
10221
 
10222
+ #: languages/vue.php:3939
10223
  msgid "Track Every Type of Web Form and Gain Visibility Into Your Customer Journey."
10224
  msgstr ""
10225
 
10226
+ #: languages/vue.php:3942
10227
  msgid "Conversion Counts"
10228
  msgstr ""
10229
 
10230
+ #: languages/vue.php:3945
10231
  msgid "Impression Counts"
10232
  msgstr ""
10233
 
10234
+ #: languages/vue.php:3948
10235
  msgid "Conversion Rates"
10236
  msgstr ""
10237
 
10238
+ #: languages/vue.php:3951
10239
  msgid "See Exactly How Visitors Find Your Website From Google."
10240
  msgstr ""
10241
 
10242
+ #: languages/vue.php:3954
10243
  msgid "Top Google Search Terms"
10244
  msgstr ""
10245
 
10246
+ #: languages/vue.php:3957
10247
  msgid "Number of Clicks"
10248
  msgstr ""
10249
 
10250
+ #: languages/vue.php:3960
10251
  msgid "Click-through Ratio"
10252
  msgstr ""
10253
 
10254
+ #: languages/vue.php:3963
10255
  msgid "Average Results Position"
10256
  msgstr ""
10257
 
10258
+ #: languages/vue.php:3966
10259
  msgid "Realtime Report"
10260
  msgstr ""
10261
 
10262
+ #: languages/vue.php:3969
10263
  msgid "See Who And What is Happening on Your Website in Realtime."
10264
  msgstr ""
10265
 
10266
+ #: languages/vue.php:3972
10267
  msgid "Top Page Views"
10268
  msgstr ""
10269
 
10270
+ #: languages/vue.php:3975
10271
  msgid "Current Active Users"
10272
  msgstr ""
10273
 
10274
+ #: languages/vue.php:3978
10275
  msgid "Top Referral Sources"
10276
  msgstr ""
10277
 
10278
+ #: languages/vue.php:3981
10279
  msgid "Pageviews Per Minute"
10280
  msgstr ""
10281
 
10282
+ #: languages/vue.php:3984
10283
  msgid "Top Countries"
10284
  msgstr ""
10285
 
10286
+ #: languages/vue.php:3987
10287
  msgid "Top Cities"
10288
  msgstr ""
10289
 
10290
+ #: languages/vue.php:3990
10291
  msgid "Improve Your User Experience and Improve Search Engine Rankings."
10292
  msgstr ""
10293
 
10294
+ #: languages/vue.php:3993
10295
  msgid "Overall Site Speed Score"
10296
  msgstr ""
10297
 
10298
+ #: languages/vue.php:3996
10299
  msgid "Server Response Times"
10300
  msgstr ""
10301
 
10302
+ #: languages/vue.php:3999
10303
  msgid "Mobile and Desktop Scores"
10304
  msgstr ""
10305
 
10306
+ #: languages/vue.php:4002
10307
  msgid "First Contentful Paint"
10308
  msgstr ""
10309
 
10310
+ #: languages/vue.php:4005
10311
  msgid "Automatic Recommendations"
10312
  msgstr ""
10313
 
10314
+ #: languages/vue.php:4008
10315
  msgid "Total Blocking Time"
10316
  msgstr ""
10317
 
10318
+ #: languages/vue.php:4011
10319
  msgid "On-Demand Audits"
10320
  msgstr ""
10321
 
10322
+ #: languages/vue.php:4014
10323
  msgid "Time to Interactive"
10324
  msgstr ""
10325
 
10326
+ #: languages/vue.php:4017
10327
  msgid "Automatic Display"
10328
  msgstr ""
10329
 
10330
+ #: languages/vue.php:4020
10331
  msgid "Automatically Display Website Badge in Website Footer"
10332
  msgstr ""
10333
 
10334
+ #: languages/vue.php:4023
10335
  msgid "Enabling will add the chosen badge in your website’s footer."
10336
  msgstr ""
10337
 
10338
+ #: languages/vue.php:4026
10339
  msgid "Enable Automatic Display"
10340
  msgstr ""
10341
 
10342
+ #: languages/vue.php:4029
10343
  msgid "Appearance"
10344
  msgstr ""
10345
 
10346
+ #: languages/vue.php:4032
10347
  msgid "Choose your badge style."
10348
  msgstr ""
10349
 
10350
+ #: languages/vue.php:4035
10351
  msgid "Position"
10352
  msgstr ""
10353
 
10354
+ #: languages/vue.php:4038
10355
  msgid "Select the position of the badge in your website’s footer."
10356
  msgstr ""
10357
 
10358
+ #: languages/vue.php:4041
10359
  msgid "Manual Display"
10360
  msgstr ""
10361
 
10362
+ #: languages/vue.php:4044
10363
  msgid "Copy"
10364
  msgstr ""
10365
 
10366
+ #: languages/vue.php:4047
10367
  msgid "Light"
10368
  msgstr ""
10369
 
10370
+ #: languages/vue.php:4050
10371
  msgid "Dark"
10372
  msgstr ""
10373
 
10374
+ #: languages/vue.php:4053
10375
  msgid "Left"
10376
  msgstr ""
10377
 
10378
+ #: languages/vue.php:4056
10379
  msgid "Center"
10380
  msgstr ""
10381
 
10382
+ #: languages/vue.php:4059
10383
  msgid "Right"
10384
  msgstr ""
10385
 
10386
+ #: languages/vue.php:4062
10387
  msgid "Show ExactMetrics Badge"
10388
  msgstr ""
10389
 
10390
+ #: languages/vue.php:4065
10391
  msgid "Build trust with website visitors by automatically placing a ExactMetrics badge in your website’s footer."
10392
  msgstr ""
10393
 
10394
+ #: languages/vue.php:4068
10395
  msgid "Warning: If you use a manual UA code, you won't be able to use any of the reporting and some of the tracking features. Your UA code should look like UA-XXXXXX-XX or GT-XXXXX where the X's are numbers."
10396
  msgstr ""
10397
 
10398
+ #: languages/vue.php:4071
10399
  msgid "Conversion Tools"
10400
  msgstr ""
10401
 
10402
+ #: languages/vue.php:4074
10403
  msgid "Get the #1 conversion optimization plugin to convert your growing website traffic into subscribers, leads and sales."
10404
  msgstr ""
10405
 
10406
+ #: languages/vue.php:4077
10407
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX or GT-XXXXX where the X's are numbers."
10408
  msgstr ""
10409
 
10410
+ #: languages/vue.php:4080
10411
  msgid "Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X's are combination of numbers and letters."
10412
  msgstr ""
10413
 
10414
+ #: languages/vue.php:4083
10415
+ msgid "Media Report"
10416
+ msgstr ""
10417
+
10418
+ #: languages/vue.php:4086
10419
+ msgid "Easily See Which Videos Are Most Popular."
10420
+ msgstr ""
10421
+
10422
+ #: languages/vue.php:4089
10423
+ msgid "The Media Report allows you to see which video are performing better and which video have lower performance so you can optimize your video content."
10424
+ msgstr ""
10425
+
10426
+ #: languages/vue.php:4092
10427
+ msgid "Videos Plays, Average Duration, and Completions"
10428
+ msgstr ""
10429
+
10430
+ #: languages/vue.php:4095
10431
+ msgid "Works with YouTube, Vimeo, and HTML 5 Videos"
10432
+ msgstr ""
10433
+
10434
+ #: languages/vue.php:4098
10435
+ msgid "Compare stats over time"
10436
+ msgstr ""
10437
+
10438
  #: lite/includes/admin/connect.php:42
10439
  msgid "Oops! You are not allowed to install plugins. Please contact your site administrator."
10440
  msgstr ""
languages/vue.php CHANGED
@@ -10,8 +10,6 @@ $generated_i18n_strings = array(
10
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:120
11
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
12
 
13
- // Reference: src/components/TheAppFTPForm.vue:129
14
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:56
15
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:130
16
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
17
 
@@ -31,16 +29,17 @@ $generated_i18n_strings = array(
31
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
32
  __( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
33
 
34
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:296
35
- /* Translators: Placeholder gets replaced with an arrow icon. */
36
  __( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
37
 
38
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:293
39
- // Reference: src/modules/widget/components/WidgetReportError.vue:32
 
40
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
41
 
42
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:151
43
- // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:19
44
  __( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
45
 
46
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
@@ -92,23 +91,28 @@ $generated_i18n_strings = array(
92
  __( 'See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking', 'google-analytics-dashboard-for-wp' ),
93
 
94
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:291
 
95
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
96
 
97
- // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:99
98
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:297
 
99
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
100
 
101
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:303
 
102
  __( 'Last Week', 'google-analytics-dashboard-for-wp' ),
103
 
104
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:309
 
105
  __( 'Last Month', 'google-analytics-dashboard-for-wp' ),
106
 
107
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:315
 
108
  __( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
109
 
110
  // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:50
111
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:321
 
112
  __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
113
 
114
  // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:52
@@ -156,14 +160,16 @@ $generated_i18n_strings = array(
156
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
157
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
158
 
159
- // Reference: src/modules/settings/routes/network.js:35
 
160
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
161
 
162
- // Reference: src/modules/settings/routes/network.js:43
 
163
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
164
 
165
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:63
166
- // Reference: src/modules/settings/routes/network.js:52
167
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
168
 
169
  // Reference: src/modules/settings/exactmetrics-site.vue:85
@@ -183,14 +189,17 @@ $generated_i18n_strings = array(
183
  // Reference: src/modules/reports/api/index.js:29
184
  __( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
185
 
 
186
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:112
187
  /* Translators: Makes text bold. */
188
  __( '%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code).', 'google-analytics-dashboard-for-wp' ),
189
 
 
190
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
191
  /* Translators: Makes text bold. */
192
  __( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
193
 
 
194
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:122
195
  /* Translators: Makes text bold. */
196
  __( '%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more.', 'google-analytics-dashboard-for-wp' ),
@@ -199,14 +208,17 @@ $generated_i18n_strings = array(
199
  /* Translators: Makes text bold. */
200
  __( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
201
 
 
202
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:132
203
  /* Translators: Makes text bold. */
204
  __( '%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.', 'google-analytics-dashboard-for-wp' ),
205
 
 
206
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
207
  /* Translators: Makes text bold. */
208
  __( '%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.', 'google-analytics-dashboard-for-wp' ),
209
 
 
210
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:142
211
  /* Translators: Makes text bold. */
212
  __( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
@@ -215,6 +227,7 @@ $generated_i18n_strings = array(
215
  /* Translators: Makes text bold. */
216
  __( '%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click.', 'google-analytics-dashboard-for-wp' ),
217
 
 
218
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:152
219
  /* Translators: Adds link to the features page. */
220
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
@@ -225,8 +238,7 @@ $generated_i18n_strings = array(
225
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:12
226
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
227
 
228
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:63
229
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:13
230
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
231
 
232
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
@@ -250,20 +262,22 @@ $generated_i18n_strings = array(
250
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:44
251
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
252
 
 
253
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:177
254
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
255
 
256
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:36
 
257
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:39
258
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:94
259
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:24
260
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:58
261
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
262
 
263
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:164
264
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
265
 
266
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:18
267
  __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
268
 
269
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:19
@@ -272,7 +286,6 @@ $generated_i18n_strings = array(
272
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:20
273
  __( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
274
 
275
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:21
276
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:223
277
  __( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
278
 
@@ -282,10 +295,11 @@ $generated_i18n_strings = array(
282
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:25
283
  __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
284
 
285
- // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:26
286
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
287
 
288
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:49
 
289
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
290
 
291
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:28
@@ -297,29 +311,36 @@ $generated_i18n_strings = array(
297
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:95
298
  __( '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.', 'google-analytics-dashboard-for-wp' ),
299
 
 
300
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:96
301
  __( 'To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.', 'google-analytics-dashboard-for-wp' ),
302
 
 
303
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
304
  __( '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!.', 'google-analytics-dashboard-for-wp' ),
305
 
 
306
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:98
307
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
308
 
309
  // Reference: src/components/ContentIntroFullWidth.vue:46
310
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
311
 
 
312
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:102
313
  /* Translators: Adds a line break. */
314
  __( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
315
 
 
316
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:104
317
  /* Translators: Makes text bold. */
318
  __( '%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.', 'google-analytics-dashboard-for-wp' ),
319
 
 
320
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:106
321
  __( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
322
 
 
323
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:107
324
  __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
325
 
@@ -333,7 +354,7 @@ $generated_i18n_strings = array(
333
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
334
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
335
 
336
- // Reference: src/modules/growth-tools/exactmetrics-growth-tools.vue:257
337
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
338
 
339
  // Reference: src/modules/reports/components/ReportReAuth.vue:19
@@ -345,10 +366,10 @@ $generated_i18n_strings = array(
345
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
346
  __( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
347
 
348
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:195
349
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
350
 
351
- // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:114
352
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
353
 
354
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
@@ -435,7 +456,8 @@ $generated_i18n_strings = array(
435
  // Reference: src/modules/widget/store/index.js:71
436
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
437
 
438
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:25
 
439
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
440
 
441
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:214
@@ -466,7 +488,7 @@ $generated_i18n_strings = array(
466
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
467
  __( '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' ),
468
 
469
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:99
470
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
471
 
472
  // Reference: src/modules/reports/components/ReportNoAuth.vue:30
@@ -498,22 +520,25 @@ $generated_i18n_strings = array(
498
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
499
 
500
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:35
501
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:33
502
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
503
 
504
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:41
 
 
505
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
506
 
507
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:57
508
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
509
 
510
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:65
 
511
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
512
 
513
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:73
 
514
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
515
 
516
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:81
517
  __( 'Site Speed Report', 'google-analytics-dashboard-for-wp' ),
518
 
519
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
@@ -526,13 +551,13 @@ $generated_i18n_strings = array(
526
  // Reference: src/modules/settings/routes/site.js:112
527
  __( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
528
 
529
- // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:26
530
  __( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
531
 
532
- // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:27
533
  __( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
534
 
535
- // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:28
536
  __( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
537
 
538
  // Reference: src/modules/settings/routes/site.js:198
@@ -541,19 +566,19 @@ $generated_i18n_strings = array(
541
  // Reference: src/modules/settings/routes/site.js:209
542
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
543
 
544
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:67
545
  __( 'General', 'google-analytics-dashboard-for-wp' ),
546
 
547
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:68
548
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
549
 
550
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:70
551
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
552
 
553
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:71
554
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
555
 
556
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:72
557
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
558
 
559
  // Reference: src/modules/tools/components/ToolsNavigation.vue:18
@@ -644,7 +669,7 @@ $generated_i18n_strings = array(
644
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
645
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
646
 
647
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:88
648
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
649
 
650
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:42
@@ -660,7 +685,7 @@ $generated_i18n_strings = array(
660
  /* Translators: Make text bold. */
661
  __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
662
 
663
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:54
664
  __( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
665
 
666
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
@@ -669,10 +694,10 @@ $generated_i18n_strings = array(
669
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:82
670
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
671
 
672
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:84
673
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
674
 
675
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:85
676
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
677
 
678
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:85
@@ -709,6 +734,7 @@ $generated_i18n_strings = array(
709
  __( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
710
 
711
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
 
712
  __( 'Installing...', 'google-analytics-dashboard-for-wp' ),
713
 
714
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:82
@@ -726,7 +752,7 @@ $generated_i18n_strings = array(
726
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
727
  __( '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.', 'google-analytics-dashboard-for-wp' ),
728
 
729
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
730
  __( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
731
 
732
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
@@ -782,7 +808,7 @@ $generated_i18n_strings = array(
782
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:118
783
  __( 'These user roles will be able to access ExactMetrics\' reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
784
 
785
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:119
786
  __( 'Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.', 'google-analytics-dashboard-for-wp' ),
787
 
788
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:120
@@ -794,60 +820,61 @@ $generated_i18n_strings = array(
794
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:123
795
  __( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
796
 
797
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:124
798
  __( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
799
 
800
  // Reference: src/components/TheFloatingBar-Lite.vue:29
801
  /* Translators: Placeholders are used for making text bold and adding a link. */
802
  __( 'You\'re using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.', 'google-analytics-dashboard-for-wp' ),
803
 
804
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:47
805
  __( 'Dimensions', 'google-analytics-dashboard-for-wp' ),
806
 
807
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:51
808
  __( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
809
 
810
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:80
811
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
812
 
813
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:82
814
  /* Translators: Add link to retrieve license key from account. */
815
  __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
816
 
817
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:83
818
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
819
 
820
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:86
 
821
  __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
822
 
823
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:88
 
824
  __( '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' ),
825
 
826
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:89
 
827
  __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
828
 
829
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:90
830
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
831
 
832
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:92
833
  /* Translators: Adds link to upgrade. */
834
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
835
 
836
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:35
837
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:93
838
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
839
 
840
- // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:38
841
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:95
842
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
843
 
844
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:96
845
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
846
 
847
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:97
848
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
849
 
850
- // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:98
851
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
852
 
853
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:65
@@ -981,9 +1008,10 @@ $generated_i18n_strings = array(
981
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
982
 
983
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:148
 
984
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
985
 
986
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:156
987
  __( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
988
 
989
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:158
@@ -1040,7 +1068,7 @@ $generated_i18n_strings = array(
1040
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:69
1041
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1042
 
1043
- // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:65
1044
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1045
 
1046
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:73
@@ -1101,7 +1129,7 @@ $generated_i18n_strings = array(
1101
  /* Translators: Error status and error text. */
1102
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1103
 
1104
- // Reference: src/modules/auth/api/index.js:129
1105
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1106
 
1107
  // Reference: src/modules/auth/api/index.js:232
@@ -1234,7 +1262,6 @@ $generated_i18n_strings = array(
1234
  __( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
1235
 
1236
  // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:52
1237
- // Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:28
1238
  /* Translators: Placeholder adds a line break. */
1239
  __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
1240
 
@@ -1267,15 +1294,14 @@ $generated_i18n_strings = array(
1267
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:70
1268
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1269
 
1270
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:289
1271
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1272
 
1273
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:105
1274
  /* Translators: Line break. */
1275
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1276
 
1277
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:290
1278
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:346
1279
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1280
 
1281
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:108
@@ -1300,10 +1326,10 @@ $generated_i18n_strings = array(
1300
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:291
1301
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1302
 
1303
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:292
1304
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1305
 
1306
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:293
1307
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1308
 
1309
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:68
@@ -1342,8 +1368,8 @@ $generated_i18n_strings = array(
1342
  /* Translators: add link to blog. */
1343
  __( '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' ),
1344
 
 
1345
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:40
1346
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:60
1347
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1348
 
1349
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:46
@@ -1614,7 +1640,7 @@ $generated_i18n_strings = array(
1614
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:330
1615
  __( 'Average Age', 'google-analytics-dashboard-for-wp' ),
1616
 
1617
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:331
1618
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1619
 
1620
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:332
@@ -1731,7 +1757,7 @@ $generated_i18n_strings = array(
1731
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:373
1732
  __( 'Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights', 'google-analytics-dashboard-for-wp' ),
1733
 
1734
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:374
1735
  __( 'Upgrade to ExactMetrics Pro', 'google-analytics-dashboard-for-wp' ),
1736
 
1737
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:377
@@ -1809,15 +1835,12 @@ $generated_i18n_strings = array(
1809
  __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-dashboard-for-wp' ),
1810
 
1811
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:229
1812
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:551
1813
  __( 'Desktop', 'google-analytics-dashboard-for-wp' ),
1814
 
1815
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:230
1816
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:552
1817
  __( 'Tablet', 'google-analytics-dashboard-for-wp' ),
1818
 
1819
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:231
1820
- // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:553
1821
  __( 'Mobile', 'google-analytics-dashboard-for-wp' ),
1822
 
1823
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:122
@@ -1826,7 +1849,7 @@ $generated_i18n_strings = array(
1826
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:122
1827
  __( 'Disconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
1828
 
1829
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:164
1830
  __( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
1831
 
1832
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:226
@@ -1856,31 +1879,31 @@ $generated_i18n_strings = array(
1856
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:92
1857
  __( 'Active Profile', 'google-analytics-dashboard-for-wp' ),
1858
 
1859
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:93
1860
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
1861
 
1862
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:94
1863
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
1864
 
1865
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:95
1866
  __( 'Dual Tracking Profile', 'google-analytics-dashboard-for-wp' ),
1867
 
1868
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:97
1869
  __( 'The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
1870
 
1871
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:94
1872
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1873
 
1874
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:103
1875
  __( 'The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
1876
 
1877
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
1878
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1879
 
1880
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:108
1881
  __( 'Measurement Protocol API Secret', 'google-analytics-dashboard-for-wp' ),
1882
 
1883
- // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:110
1884
  __( 'The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.', 'google-analytics-dashboard-for-wp' ),
1885
 
1886
  // Reference: src/modules/widget/components/settings/exactmetrics-WidgetSettingsCompact.vue:19
@@ -1932,19 +1955,19 @@ $generated_i18n_strings = array(
1932
  // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:46
1933
  __( 'No change', 'google-analytics-dashboard-for-wp' ),
1934
 
1935
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:119
1936
  __( 'Choose Theme', 'google-analytics-dashboard-for-wp' ),
1937
 
1938
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
1939
  __( 'Widget Styling', 'google-analytics-dashboard-for-wp' ),
1940
 
1941
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:122
1942
  __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-dashboard-for-wp' ),
1943
 
1944
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
1945
  __( 'Sort By', 'google-analytics-dashboard-for-wp' ),
1946
 
1947
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:124
1948
  __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-dashboard-for-wp' ),
1949
 
1950
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:118
@@ -1956,40 +1979,40 @@ $generated_i18n_strings = array(
1956
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:120
1957
  __( 'Title your widget and set its display preferences.', 'google-analytics-dashboard-for-wp' ),
1958
 
1959
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:129
1960
  __( 'Include in Post Types', 'google-analytics-dashboard-for-wp' ),
1961
 
1962
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:130
1963
  __( 'Exclude from specific posts', 'google-analytics-dashboard-for-wp' ),
1964
 
1965
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:132
1966
  /* Translators: Placeholders make the text bold. */
1967
  __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-dashboard-for-wp' ),
1968
 
1969
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:134
1970
  /* Translators: Placeholders make the text bold. */
1971
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-dashboard-for-wp' ),
1972
 
1973
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:136
1974
  __( 'Loading Themes', 'google-analytics-dashboard-for-wp' ),
1975
 
1976
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:143
1977
  /* Translators: placeholders make text small. */
1978
  __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-dashboard-for-wp' ),
1979
 
1980
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:148
1981
  /* Translators: placeholders make text small. */
1982
  __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-dashboard-for-wp' ),
1983
 
1984
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:155
1985
  /* Translators: placeholders make text small. */
1986
  __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-dashboard-for-wp' ),
1987
 
1988
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:160
1989
  /* Translators: placeholders make text small. */
1990
  __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-dashboard-for-wp' ),
1991
 
1992
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:165
1993
  /* Translators: placeholders make text small. */
1994
  __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-dashboard-for-wp' ),
1995
 
@@ -2005,7 +2028,7 @@ $generated_i18n_strings = array(
2005
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:128
2006
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2007
 
2008
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:137
2009
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2010
 
2011
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:137
@@ -2143,12 +2166,10 @@ $generated_i18n_strings = array(
2143
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2144
  __( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
2145
 
2146
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:40
2147
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:127
2148
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:168
2149
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2150
 
2151
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:41
2152
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
2153
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:169
2154
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
@@ -2157,7 +2178,6 @@ $generated_i18n_strings = array(
2157
  /* Translators: Add link to retrieve license from account area. */
2158
  __( 'Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
2159
 
2160
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:73
2161
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:186
2162
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2163
 
@@ -2239,7 +2259,7 @@ $generated_i18n_strings = array(
2239
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:63
2240
  __( 'Add Custom Dimensions and track who\'s the most popular author on your site, which post types get the most traffic, and more', 'google-analytics-dashboard-for-wp' ),
2241
 
2242
- // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:42
2243
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2244
 
2245
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:103
@@ -2385,7 +2405,7 @@ $generated_i18n_strings = array(
2385
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:121
2386
  __( 'Pretty Links Installed & Activated', 'google-analytics-dashboard-for-wp' ),
2387
 
2388
- // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:122
2389
  __( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
2390
 
2391
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:123
@@ -2561,25 +2581,25 @@ $generated_i18n_strings = array(
2561
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:64
2562
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
2563
 
2564
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:68
2565
  __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
2566
 
2567
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:72
2568
  __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
2569
 
2570
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:76
2571
  __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
2572
 
2573
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:80
2574
  __( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
2575
 
2576
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:84
2577
  __( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
2578
 
2579
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:88
2580
  __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
2581
 
2582
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:92
2583
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
2584
 
2585
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:96
@@ -2936,7 +2956,6 @@ $generated_i18n_strings = array(
2936
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
2937
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
2938
 
2939
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:31
2940
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
2941
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
2942
 
@@ -2950,7 +2969,6 @@ $generated_i18n_strings = array(
2950
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2951
  __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
2952
 
2953
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:33
2954
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:60
2955
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
2956
 
@@ -3011,28 +3029,27 @@ $generated_i18n_strings = array(
3011
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:69
3012
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
3013
 
3014
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:70
3015
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3016
 
3017
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:71
3018
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3019
 
3020
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:72
3021
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3022
 
3023
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:73
3024
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3025
 
3026
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:74
3027
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3028
 
3029
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:75
3030
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3031
 
3032
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:76
3033
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
3034
 
3035
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:67
3036
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:92
3037
  __( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
3038
 
@@ -3209,6 +3226,7 @@ $generated_i18n_strings = array(
3209
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:82
3210
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
3211
 
 
3212
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
3213
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
3214
 
@@ -3224,21 +3242,25 @@ $generated_i18n_strings = array(
3224
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
3225
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
3226
 
 
3227
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:137
3228
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
3229
 
3230
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
3231
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
3232
 
 
3233
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:139
3234
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
3235
 
3236
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:93
3237
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
3238
 
 
3239
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:147
3240
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
3241
 
 
3242
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:148
3243
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
3244
 
@@ -3306,13 +3328,14 @@ $generated_i18n_strings = array(
3306
  /* Translators: The number of results. */
3307
  __( '%s results', 'google-analytics-dashboard-for-wp' ),
3308
 
3309
- // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:25
3310
  __( 'Media', 'google-analytics-dashboard-for-wp' ),
3311
 
3312
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:26
3313
  __( 'Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
3314
 
3315
- // Reference: src/modules/reports/routes/exactmetrics-routes.js:95
 
3316
  __( '2021 Year in Review', 'google-analytics-dashboard-for-wp' ),
3317
 
3318
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:100
@@ -4054,6 +4077,24 @@ $generated_i18n_strings = array(
4054
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX or GT-XXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
4055
 
4056
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:107
4057
- __( 'Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4058
  );
4059
  /* THIS IS THE END OF THE GENERATED FILE */
10
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:120
11
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
12
 
 
 
13
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:130
14
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
15
 
29
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:129
30
  __( 'Loading new report data', 'google-analytics-dashboard-for-wp' ),
31
 
32
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:143
33
+ /* Translators: Adds an arrow icon. */
34
  __( 'Continue %s', 'google-analytics-dashboard-for-wp' ),
35
 
36
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:161
37
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:150
38
+ // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:15
39
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
40
 
41
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:151
42
+ // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:16
43
  __( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
44
 
45
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
91
  __( 'See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking', 'google-analytics-dashboard-for-wp' ),
92
 
93
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:291
94
+ // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:42
95
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
96
 
 
97
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:297
98
+ // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:48
99
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
100
 
101
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:303
102
+ // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:54
103
  __( 'Last Week', 'google-analytics-dashboard-for-wp' ),
104
 
105
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:309
106
+ // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:60
107
  __( 'Last Month', 'google-analytics-dashboard-for-wp' ),
108
 
109
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:315
110
+ // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:66
111
  __( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
112
 
113
  // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:50
114
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:321
115
+ // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:72
116
  __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
117
 
118
  // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:52
160
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
161
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
162
 
163
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
164
+ // Reference: src/modules/settings/routes/site.js:134
165
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
166
 
167
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:18
168
+ // Reference: src/modules/settings/routes/site.js:142
169
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
170
 
171
+ // Reference: src/modules/about/components/AboutNavigation-Lite.vue:19
172
+ // Reference: src/modules/settings/routes/site.js:151
173
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
174
 
175
  // Reference: src/modules/settings/exactmetrics-site.vue:85
189
  // Reference: src/modules/reports/api/index.js:29
190
  __( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
191
 
192
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:164
193
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:112
194
  /* Translators: Makes text bold. */
195
  __( '%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code).', 'google-analytics-dashboard-for-wp' ),
196
 
197
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:169
198
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
199
  /* Translators: Makes text bold. */
200
  __( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
201
 
202
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:174
203
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:122
204
  /* Translators: Makes text bold. */
205
  __( '%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more.', 'google-analytics-dashboard-for-wp' ),
208
  /* Translators: Makes text bold. */
209
  __( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
210
 
211
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:184
212
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:132
213
  /* Translators: Makes text bold. */
214
  __( '%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.', 'google-analytics-dashboard-for-wp' ),
215
 
216
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:189
217
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
218
  /* Translators: Makes text bold. */
219
  __( '%1$sAffiliate Link & Ads Tracking%2$s - Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking.', 'google-analytics-dashboard-for-wp' ),
220
 
221
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:194
222
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:142
223
  /* Translators: Makes text bold. */
224
  __( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
227
  /* Translators: Makes text bold. */
228
  __( '%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click.', 'google-analytics-dashboard-for-wp' ),
229
 
230
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:204
231
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:152
232
  /* Translators: Adds link to the features page. */
233
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
238
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:12
239
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
240
 
241
+ // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:24
 
242
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
243
 
244
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:158
262
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:44
263
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
264
 
265
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:228
266
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:177
267
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
268
 
269
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:53
270
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:39
271
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:39
272
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:22
273
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputAds-Lite.vue:24
274
+ // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputFbia-Lite.vue:24
275
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
276
 
277
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:164
278
  __( 'eCommerce Tracking', 'google-analytics-dashboard-for-wp' ),
279
 
280
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:62
281
  __( 'Custom Dimensions', 'google-analytics-dashboard-for-wp' ),
282
 
283
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:19
286
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:20
287
  __( 'AMP Support', 'google-analytics-dashboard-for-wp' ),
288
 
 
289
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:223
290
  __( 'Author Tracking', 'google-analytics-dashboard-for-wp' ),
291
 
295
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:25
296
  __( 'Real Time Report', 'google-analytics-dashboard-for-wp' ),
297
 
298
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:60
299
  __( 'Google Optimize', 'google-analytics-dashboard-for-wp' ),
300
 
301
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
302
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:50
303
  __( 'Search Console', 'google-analytics-dashboard-for-wp' ),
304
 
305
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:28
311
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:95
312
  __( '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.', 'google-analytics-dashboard-for-wp' ),
313
 
314
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:97
315
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:96
316
  __( 'To begin with, we’ll get your site authorized with Google Analytics, so we can start tracking and generating reports for you right away.', 'google-analytics-dashboard-for-wp' ),
317
 
318
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:98
319
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
320
  __( '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!.', 'google-analytics-dashboard-for-wp' ),
321
 
322
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:99
323
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:98
324
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
325
 
326
  // Reference: src/components/ContentIntroFullWidth.vue:46
327
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
328
 
329
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:154
330
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:102
331
  /* Translators: Adds a line break. */
332
  __( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
333
 
334
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:156
335
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:104
336
  /* Translators: Makes text bold. */
337
  __( '%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.', 'google-analytics-dashboard-for-wp' ),
338
 
339
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:158
340
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:106
341
  __( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
342
 
343
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:159
344
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:107
345
  __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
346
 
354
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:38
355
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
356
 
357
+ // Reference: src/modules/widget/components/WidgetFooter.vue:22
358
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
359
 
360
  // Reference: src/modules/reports/components/ReportReAuth.vue:19
366
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:80
367
  __( 'Reconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
368
 
369
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:178
370
  __( 'Re-Authenticating', 'google-analytics-dashboard-for-wp' ),
371
 
372
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:341
373
  __( 'Ok', 'google-analytics-dashboard-for-wp' ),
374
 
375
  // Reference: src/modules/addons/components/AddonsNavigation.vue:18
456
  // Reference: src/modules/widget/store/index.js:71
457
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
458
 
459
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:46
460
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:26
461
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
462
 
463
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:214
488
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
489
  __( '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' ),
490
 
491
+ // Reference: src/modules/reports/components/ReportNoAuth.vue:29
492
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
493
 
494
  // Reference: src/modules/reports/components/ReportNoAuth.vue:30
520
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
521
 
522
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:35
 
523
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
524
 
525
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:48
526
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:42
527
+ // Reference: src/modules/settings/routes/site.js:55
528
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
529
 
530
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:220
531
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
532
 
533
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:51
534
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:66
535
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
536
 
537
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:52
538
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:74
539
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
540
 
541
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:267
542
  __( 'Site Speed Report', 'google-analytics-dashboard-for-wp' ),
543
 
544
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:49
551
  // Reference: src/modules/settings/routes/site.js:112
552
  __( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
553
 
554
+ // Reference: src/modules/settings/routes/site.js:172
555
  __( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
556
 
557
+ // Reference: src/modules/settings/routes/site.js:180
558
  __( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
559
 
560
+ // Reference: src/modules/settings/routes/site.js:189
561
  __( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
562
 
563
  // Reference: src/modules/settings/routes/site.js:198
566
  // Reference: src/modules/settings/routes/site.js:209
567
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
568
 
569
+ // Reference: src/modules/settings/routes/site.js:39
570
  __( 'General', 'google-analytics-dashboard-for-wp' ),
571
 
572
+ // Reference: src/modules/settings/routes/site.js:47
573
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
574
 
575
+ // Reference: src/modules/settings/routes/site.js:63
576
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
577
 
578
+ // Reference: src/modules/settings/routes/site.js:71
579
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
580
 
581
+ // Reference: src/modules/settings/routes/site.js:79
582
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
583
 
584
  // Reference: src/modules/tools/components/ToolsNavigation.vue:18
669
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:40
670
  __( 'Let\'s get you set up.', 'google-analytics-dashboard-for-wp' ),
671
 
672
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:41
673
  __( 'Save and Continue', 'google-analytics-dashboard-for-wp' ),
674
 
675
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:42
685
  /* Translators: Make text bold. */
686
  __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-dashboard-for-wp' ),
687
 
688
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:56
689
  __( 'Ecommerce', 'google-analytics-dashboard-for-wp' ),
690
 
691
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:81
694
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:82
695
  __( 'ExactMetrics connects Google Analytics to WordPress and shows you stats that matter.', 'google-analytics-dashboard-for-wp' ),
696
 
697
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
698
  __( 'Connect Google Analytics + WordPress', 'google-analytics-dashboard-for-wp' ),
699
 
700
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:133
701
  __( 'You will be taken to the ExactMetrics website where you\'ll need to connect your Analytics account.', 'google-analytics-dashboard-for-wp' ),
702
 
703
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:85
734
  __( 'Continue & Install WPForms', 'google-analytics-dashboard-for-wp' ),
735
 
736
  // Reference: src/modules/growth-tools/components/GrowthPluginButton.vue:30
737
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:52
738
  __( 'Installing...', 'google-analytics-dashboard-for-wp' ),
739
 
740
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:82
752
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
753
  __( '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.', 'google-analytics-dashboard-for-wp' ),
754
 
755
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:94
756
  __( 'Enhanced Link Attribution', 'google-analytics-dashboard-for-wp' ),
757
 
758
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
808
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:118
809
  __( 'These user roles will be able to access ExactMetrics\' reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
810
 
811
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:90
812
  __( 'Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.', 'google-analytics-dashboard-for-wp' ),
813
 
814
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:120
820
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:123
821
  __( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
822
 
823
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:134
824
  __( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
825
 
826
  // Reference: src/components/TheFloatingBar-Lite.vue:29
827
  /* Translators: Placeholders are used for making text bold and adding a link. */
828
  __( 'You\'re using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s.', 'google-analytics-dashboard-for-wp' ),
829
 
830
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:50
831
  __( 'Dimensions', 'google-analytics-dashboard-for-wp' ),
832
 
833
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:54
834
  __( 'Site Speed', 'google-analytics-dashboard-for-wp' ),
835
 
836
+ // Reference: src/modules/wizard-onboarding/components/inputs/exactmetrics-OnboardingLicense-Lite.vue:30
837
  __( 'License Key', 'google-analytics-dashboard-for-wp' ),
838
 
839
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:82
840
  /* Translators: Add link to retrieve license key from account. */
841
  __( 'Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
842
 
843
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:128
844
  __( 'Google Authentication', 'google-analytics-dashboard-for-wp' ),
845
 
846
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:86
847
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:32
848
  __( 'Miscellaneous', 'google-analytics-dashboard-for-wp' ),
849
 
850
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:88
851
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:34
852
  __( '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' ),
853
 
854
  // Reference: src/modules/settings/components/exactmetrics-SettingsNetwork.vue:89
855
+ // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputMisc-Lite.vue:35
856
  __( 'Hide Announcements', 'google-analytics-dashboard-for-wp' ),
857
 
858
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:143
859
  __( 'You\'re using ExactMetrics Lite – no license needed. Enjoy!', 'google-analytics-dashboard-for-wp' ),
860
 
861
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:145
862
  /* Translators: Adds link to upgrade. */
863
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
864
 
865
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:146
 
866
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
867
 
868
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:148
 
869
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
870
 
871
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:135
872
  __( 'Setup Wizard', 'google-analytics-dashboard-for-wp' ),
873
 
874
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:136
875
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-dashboard-for-wp' ),
876
 
877
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:137
878
  __( 'Relaunch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
879
 
880
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:65
1008
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
1009
 
1010
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:148
1011
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:79
1012
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
1013
 
1014
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:86
1015
  __( 'Email Summaries', 'google-analytics-dashboard-for-wp' ),
1016
 
1017
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:158
1068
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:69
1069
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1070
 
1071
+ // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:125
1072
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1073
 
1074
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:73
1129
  /* Translators: Error status and error text. */
1130
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1131
 
1132
+ // Reference: src/modules/wizard-onboarding/api/index.js:22
1133
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1134
 
1135
  // Reference: src/modules/auth/api/index.js:232
1262
  __( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
1263
 
1264
  // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:52
 
1265
  /* Translators: Placeholder adds a line break. */
1266
  __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
1267
 
1294
  // Reference: src/modules/settings/components/input/SettingsInputRepeater.vue:70
1295
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1296
 
1297
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:61
1298
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1299
 
1300
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:105
1301
  /* Translators: Line break. */
1302
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1303
 
1304
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:62
 
1305
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1306
 
1307
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:108
1326
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:291
1327
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1328
 
1329
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:64
1330
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1331
 
1332
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:65
1333
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1334
 
1335
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:68
1368
  /* Translators: add link to blog. */
1369
  __( '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' ),
1370
 
1371
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:40
1372
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:40
 
1373
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1374
 
1375
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:46
1640
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:330
1641
  __( 'Average Age', 'google-analytics-dashboard-for-wp' ),
1642
 
1643
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:113
1644
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1645
 
1646
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:332
1757
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:373
1758
  __( 'Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights', 'google-analytics-dashboard-for-wp' ),
1759
 
1760
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:160
1761
  __( 'Upgrade to ExactMetrics Pro', 'google-analytics-dashboard-for-wp' ),
1762
 
1763
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:377
1835
  __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-dashboard-for-wp' ),
1836
 
1837
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:229
 
1838
  __( 'Desktop', 'google-analytics-dashboard-for-wp' ),
1839
 
1840
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:230
 
1841
  __( 'Tablet', 'google-analytics-dashboard-for-wp' ),
1842
 
1843
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:231
 
1844
  __( 'Mobile', 'google-analytics-dashboard-for-wp' ),
1845
 
1846
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:122
1849
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:122
1850
  __( 'Disconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
1851
 
1852
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:149
1853
  __( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
1854
 
1855
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:226
1879
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:92
1880
  __( 'Active Profile', 'google-analytics-dashboard-for-wp' ),
1881
 
1882
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:83
1883
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
1884
 
1885
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:84
1886
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
1887
 
1888
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:88
1889
  __( 'Dual Tracking Profile', 'google-analytics-dashboard-for-wp' ),
1890
 
1891
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:90
1892
  __( 'The dual tracking feature allows you to continue tracking this site into an existing GAv3 property so you can continue to use the GA reports you are used to already. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
1893
 
1894
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:94
1895
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1896
 
1897
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:96
1898
  __( 'The dual tracking feature allows you to begin tracking this site into a GAv4 property to take advantage of the new GAv4 analysis tools. Learn more about this feature %1$shere%2$s.', 'google-analytics-dashboard-for-wp' ),
1899
 
1900
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:96
1901
  __( 'Your Measurement ID should look like G-XXXXXXXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
1902
 
1903
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:101
1904
  __( 'Measurement Protocol API Secret', 'google-analytics-dashboard-for-wp' ),
1905
 
1906
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:103
1907
  __( 'The Measurement Protocol API secret allows your site to send tracking data to Google Analytics. To retrieve your Measurement Protocol API Secret, follow %1$sthis guide%2$s.', 'google-analytics-dashboard-for-wp' ),
1908
 
1909
  // Reference: src/modules/widget/components/settings/exactmetrics-WidgetSettingsCompact.vue:19
1955
  // Reference: src/modules/frontend/components/FrontendInfoboxChange.vue:46
1956
  __( 'No change', 'google-analytics-dashboard-for-wp' ),
1957
 
1958
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:112
1959
  __( 'Choose Theme', 'google-analytics-dashboard-for-wp' ),
1960
 
1961
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:114
1962
  __( 'Widget Styling', 'google-analytics-dashboard-for-wp' ),
1963
 
1964
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:115
1965
  __( 'Choose how you want to determine the colors, font sizes and spacing of the widget.', 'google-analytics-dashboard-for-wp' ),
1966
 
1967
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:116
1968
  __( 'Sort By', 'google-analytics-dashboard-for-wp' ),
1969
 
1970
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:117
1971
  __( 'Choose how you\'d like the widget to determine your popular posts.', 'google-analytics-dashboard-for-wp' ),
1972
 
1973
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:118
1979
  // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:120
1980
  __( 'Title your widget and set its display preferences.', 'google-analytics-dashboard-for-wp' ),
1981
 
1982
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:121
1983
  __( 'Include in Post Types', 'google-analytics-dashboard-for-wp' ),
1984
 
1985
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:122
1986
  __( 'Exclude from specific posts', 'google-analytics-dashboard-for-wp' ),
1987
 
1988
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:124
1989
  /* Translators: Placeholders make the text bold. */
1990
  __( 'Choose which Post Types the widget %1$sWILL%2$s be placed.', 'google-analytics-dashboard-for-wp' ),
1991
 
1992
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:126
1993
  /* Translators: Placeholders make the text bold. */
1994
  __( 'Choose from which Posts the widget %1$sWILL NOT%2$s be placed.', 'google-analytics-dashboard-for-wp' ),
1995
 
1996
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:127
1997
  __( 'Loading Themes', 'google-analytics-dashboard-for-wp' ),
1998
 
1999
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:132
2000
  /* Translators: placeholders make text small. */
2001
  __( 'Default Styles %1$s- As seen above.%2$s', 'google-analytics-dashboard-for-wp' ),
2002
 
2003
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:137
2004
  /* Translators: placeholders make text small. */
2005
  __( 'No Styles %1$s- Use your own CSS.%2$s', 'google-analytics-dashboard-for-wp' ),
2006
 
2007
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:144
2008
  /* Translators: placeholders make text small. */
2009
  __( 'Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s', 'google-analytics-dashboard-for-wp' ),
2010
 
2011
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:149
2012
  /* Translators: placeholders make text small. */
2013
  __( 'SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s', 'google-analytics-dashboard-for-wp' ),
2014
 
2015
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:154
2016
  /* Translators: placeholders make text small. */
2017
  __( 'Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s', 'google-analytics-dashboard-for-wp' ),
2018
 
2028
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:128
2029
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2030
 
2031
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:180
2032
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2033
 
2034
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:137
2166
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:39
2167
  __( 'Unlock PRO Features Now', 'google-analytics-dashboard-for-wp' ),
2168
 
 
2169
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:127
2170
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:168
2171
  __( 'Paste your license key here', 'google-analytics-dashboard-for-wp' ),
2172
 
 
2173
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:129
2174
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepSuccess.vue:169
2175
  __( 'Verify', 'google-analytics-dashboard-for-wp' ),
2178
  /* Translators: Add link to retrieve license from account area. */
2179
  __( 'Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-dashboard-for-wp' ),
2180
 
 
2181
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:186
2182
  __( 'There was an error unlocking ExactMetrics PRO please try again or install manually.', 'google-analytics-dashboard-for-wp' ),
2183
 
2259
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:63
2260
  __( 'Add Custom Dimensions and track who\'s the most popular author on your site, which post types get the most traffic, and more', 'google-analytics-dashboard-for-wp' ),
2261
 
2262
+ // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:33
2263
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2264
 
2265
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:103
2405
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:121
2406
  __( 'Pretty Links Installed & Activated', 'google-analytics-dashboard-for-wp' ),
2407
 
2408
+ // Reference: src/modules/tools/components/exactmetrics-ToolsTabUrlBuilder.vue:205
2409
  __( 'Download Pretty Links', 'google-analytics-dashboard-for-wp' ),
2410
 
2411
  // Reference: src/modules/tools/components/exactmetrics-ToolsPrettyLinksFlow.vue:123
2581
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:64
2582
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
2583
 
2584
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:48
2585
  __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
2586
 
2587
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:52
2588
  __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
2589
 
2590
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:56
2591
  __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
2592
 
2593
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:60
2594
  __( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
2595
 
2596
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:84
2597
  __( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
2598
 
2599
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:68
2600
  __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
2601
 
2602
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:72
2603
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
2604
 
2605
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:96
2956
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
2957
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
2958
 
 
2959
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
2960
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
2961
 
2969
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2970
  __( 'Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics.', 'google-analytics-dashboard-for-wp' ),
2971
 
 
2972
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:60
2973
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
2974
 
3029
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:69
3030
  __( 'Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan', 'google-analytics-dashboard-for-wp' ),
3031
 
3032
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:182
3033
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3034
 
3035
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:183
3036
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3037
 
3038
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:181
3039
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3040
 
3041
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:186
3042
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3043
 
3044
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:187
3045
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3046
 
3047
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:184
3048
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3049
 
3050
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:76
3051
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
3052
 
 
3053
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:92
3054
  __( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
3055
 
3226
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:82
3227
  __( 'There are two ways to manual include the widget in your posts.', 'google-analytics-dashboard-for-wp' ),
3228
 
3229
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:83
3230
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:129
3231
  __( 'Using the Gutenberg Block', 'google-analytics-dashboard-for-wp' ),
3232
 
3242
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:87
3243
  __( '%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg', 'google-analytics-dashboard-for-wp' ),
3244
 
3245
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:89
3246
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:137
3247
  __( '%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page.', 'google-analytics-dashboard-for-wp' ),
3248
 
3249
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:90
3250
  __( '%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”.', 'google-analytics-dashboard-for-wp' ),
3251
 
3252
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:91
3253
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:139
3254
  __( '%1$sStep 3%2$s - Style the widget using the Block Settings sidebar.', 'google-analytics-dashboard-for-wp' ),
3255
 
3256
  // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:93
3257
  __( 'Shortcode', 'google-analytics-dashboard-for-wp' ),
3258
 
3259
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:94
3260
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:147
3261
  __( 'Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin.', 'google-analytics-dashboard-for-wp' ),
3262
 
3263
+ // Reference: src/modules/popular-posts/components/input/PopularPostsInlinePlacement.vue:95
3264
  // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetPlacement.vue:148
3265
  __( 'Copy Shortcode', 'google-analytics-dashboard-for-wp' ),
3266
 
3328
  /* Translators: The number of results. */
3329
  __( '%s results', 'google-analytics-dashboard-for-wp' ),
3330
 
3331
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:55
3332
  __( 'Media', 'google-analytics-dashboard-for-wp' ),
3333
 
3334
  // Reference: src/modules/settings/components/input/tab-publisher/exactmetrics-SettingsInputMedia-Lite.vue:26
3335
  __( 'Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro.', 'google-analytics-dashboard-for-wp' ),
3336
 
3337
+ // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:53
3338
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:104
3339
  __( '2021 Year in Review', 'google-analytics-dashboard-for-wp' ),
3340
 
3341
  // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:100
4077
  __( 'Your Universal Analytics code should look like UA-XXXXXXXXXX or GT-XXXXX where the X\'s are numbers.', 'google-analytics-dashboard-for-wp' ),
4078
 
4079
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:107
4080
+ __( 'Your Measurement ID should look like G-XXXXXXXXXX or GT-XXXXX where the X\'s are combination of numbers and letters.', 'google-analytics-dashboard-for-wp' ),
4081
+
4082
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:90
4083
+ __( 'Media Report', 'google-analytics-dashboard-for-wp' ),
4084
+
4085
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportMedia-Lite.vue:36
4086
+ __( 'Easily See Which Videos Are Most Popular.', 'google-analytics-dashboard-for-wp' ),
4087
+
4088
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportMedia-Lite.vue:37
4089
+ __( 'The Media Report allows you to see which video are performing better and which video have lower performance so you can optimize your video content.', 'google-analytics-dashboard-for-wp' ),
4090
+
4091
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportMedia-Lite.vue:44
4092
+ __( 'Videos Plays, Average Duration, and Completions', 'google-analytics-dashboard-for-wp' ),
4093
+
4094
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportMedia-Lite.vue:48
4095
+ __( 'Works with YouTube, Vimeo, and HTML 5 Videos', 'google-analytics-dashboard-for-wp' ),
4096
+
4097
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportMedia-Lite.vue:52
4098
+ __( 'Compare stats over time', 'google-analytics-dashboard-for-wp' )
4099
  );
4100
  /* THIS IS THE END OF THE GENERATED FILE */
lite/assets/vue/css/chunk-common.css CHANGED
@@ -1 +1 @@
1
- strong[data-v-e05413a0]{display:block}[data-v-2561b4b1]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-eafd9de2]{display:block}.exactmetrics-reset-default[data-v-eafd9de2]{margin-left:5px}.exactmetrics-dark[data-v-cd6875ca]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:16px;line-height:140%;padding:16px 32px 16px 58px;text-align:left;position:relative;margin:-20px -20px 20px}.exactmetrics-admin-page .exactmetrics-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;left:32px;top:20px}@media (max-width:782px){.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:16px;position:absolute;right:15px;top:calc(50% - 5px);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-d3e6e3ce]: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+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==);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:Roboto;src:url(../fonts/Roboto-Regular.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Roboto;src:url(../fonts/Roboto-Bold.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}.icon{display:-webkit-box;display:-ms-flexbox;display:flex;width:16px;height:16px}.icon svg{width:100%;height:100%}.icon.is-small{width:10px;height:10px}@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-media:before{content:"\f072"}.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}.exactmetrics-notice.exactmetrics-license_expired .notice-content{padding-left:0;background:none;line-height:1.75;font-size:15px}.exactmetrics-notice.exactmetrics-license_expired .notice-content:before{display:none;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:0;left:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon{margin-right:15px;margin-top:4px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon svg{width:36px;height:32px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner{background-color:#fff!important}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner h2{font-size:14px;color:#e64949;margin:0;padding:0}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner .exactmetrics-notice-content{color:#e64949}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner a.exactmetrics-button-error{margin-top:17px}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-notifications-display{background:#f4f3f7;border-left:3px solid #6528f5;padding:20px;border-radius:3px 0 0 3px;margin-bottom:50px;position:relative}.exactmetrics-settings-panel .exactmetrics-notifications-display{margin-left:25px;margin-right:25px}.exactmetrics-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.exactmetrics-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.exactmetrics-notifications-display .exactmetrics-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator{padding-top:10px}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator a{position:relative}.exactmetrics-notifications-display .exactmetrics-notification-inner{margin-left:25px}.exactmetrics-notifications-display .exactmetrics-button{margin-right:15px}.exactmetrics-notifications-display .exactmetrics-notification-navigation{position:absolute;right:0;top:100%}.exactmetrics-notifications-display .exactmetrics-notification-navigation button{background:#f4f3f7;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notification-navigation button:focus,.exactmetrics-notifications-display .exactmetrics-notification-navigation button:hover{color:#6528f5}.exactmetrics-notifications-display .exactmetrics-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);font-size:10px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous{margin-right:2px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous .monstericon-arrow{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.exactmetrics-notifications-display .exactmetrics-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;right:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;left:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.exactmetrics-report .exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;left:20px}.exactmetrics-admin-page.exactmetrics-path-about-us .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-url-builder .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-reports-page .exactmetrics-notificationsv3-container{margin-right:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{width:90%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container{display:inline-block;margin-left:20px;float:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number{position:absolute;top:-9px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-greater-than-10{right:-13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-less-than-10{right:-10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:absolute;top:21px;right:15px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:0;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:inline-block}}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}@media (max-width:1099px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-notificationsv3-inbox-number{cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{width:440px;position:fixed;top:32px;right:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px);transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar.exactmetrics-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title svg{margin-right:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0;float:none}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{display:inline-block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:hover{color:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:focus{outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close{margin-left:12px;vertical-align:bottom}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:active svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:focus svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;right:inherit;min-width:24px;height:24px;line-height:24px;margin-right:8px;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-dismissed-number{margin-right:8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{margin-bottom:46px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{width:54px;float:left;text-align:center;padding-top:24px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{float:none;margin:0 auto}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{float:left;width:354px;padding-top:20px;text-align:left}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{width:260px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{width:65%}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-right:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:hover{background:#d3d7de}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:hover{color:#a9b1c3}.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)}}.exactmetrics-upload-media-wrapper .exactmetrics-dark{display:block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media-label{margin-bottom:0!important}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;left:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media{color:#fff;text-decoration:underline;margin-left:auto;cursor:pointer;padding:0 10px 10px 0}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media:hover{text-decoration:none}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media:hover .exactmetrics-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media img{max-width:100%;display:inline-block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-input{width:73%;margin-right:2%;float:left;position:relative;margin-top:0}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button{width:25%;float:left;font-size:15px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:active,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:focus,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:hover{outline:none}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button{position:relative!important;margin-left:10px;padding:12px 24px!important}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button:first-child{margin-left:0}.exactmetrics-email-summaries-settings a{color:#6528f5!important}.exactmetrics-email-summaries-settings a:focus,.exactmetrics-email-summaries-settings a:hover{color:#393f4c!important}.exactmetrics-email-summaries-settings .exactmetrics-dark{display:block}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button{position:relative!important;margin-left:10px;padding:12px 24px!important}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button:first-child{margin-left:0}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater{margin-bottom:18px}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=number],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=text],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row textarea{border-color:#9087ac}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-email-summaries-settings .exactmetrics-button.exactmetrics-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.exactmetrics-accordion .exactmetrics-accordion{padding:0;border:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.exactmetrics-accordion .exactmetrics-accordion div:last-child .exactmetrics-accordion-item-details{border-radius:5px}.exactmetrics-accordion .exactmetrics-accordion dd{margin-left:0;margin-bottom:0}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{cursor:pointer;outline:none}.exactmetrics-accordion .exactmetrics-accordion-item-details-inner,.exactmetrics-accordion .exactmetrics-accordion-item-trigger{padding:0 20px 30px}.exactmetrics-accordion .exactmetrics-accordion-item.is-active .exactmetrics-accordion-item-title{border-bottom:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-right:1.25rem}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text .title{padding-left:15px}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{width:100%;text-align:left;background-color:rgba(0,0,0,0);border:none}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon{display:block;position:absolute;top:0;right:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-right:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(45deg);-ms-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(225deg);-ms-transform:translateY(2px) rotate(225deg);transform:translateY(2px) rotate(225deg)}.exactmetrics-accordion .exactmetrics-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.exactmetrics-accordion .exactmetrics-accordion-item-details p,.exactmetrics-accordion .exactmetrics-accordion-item-details ul{font-size:1.2em;line-height:1.8}.exactmetrics-accordion .exactmetrics-accordion-item-enter-active,.exactmetrics-accordion .exactmetrics-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-enter,.exactmetrics-accordion .exactmetrics-accordion-item-leave-to{height:0!important}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}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none;margin-right:40px}}.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 .exactmetrics-swal-icons{position:absolute;left:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-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 .exactmetrics-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 .exactmetrics-swal-icons [class^=monstericon-]:nth-child(2){left:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){left:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-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 .exactmetrics-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}.exactmetrics-semrush-cta{background:#f4f3f7;border-left:3px solid #6528f5;padding:20px 26px;border-radius:3px 0 0 3px;position:relative}.exactmetrics-semrush-cta br{display:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-close{position:absolute;top:12px;right:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.exactmetrics-semrush-cta .exactmetrics-button{background:#6528f5;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.exactmetrics-semrush-cta .exactmetrics-button:active,.exactmetrics-semrush-cta .exactmetrics-button:focus,.exactmetrics-semrush-cta .exactmetrics-button:hover{background:#6333d4;outline:none}.exactmetrics-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}
1
+ strong[data-v-1c1718a8]{display:block}[data-v-8d2cb686]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-3253c54f]{display:block}.exactmetrics-reset-default[data-v-3253c54f]{margin-left:5px}.exactmetrics-dark[data-v-3b6b71fa]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:16px;line-height:140%;padding:16px 32px 16px 58px;text-align:left;position:relative;margin:-20px -20px 20px}.exactmetrics-admin-page .exactmetrics-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;left:32px;top:20px}@media (max-width:782px){.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:16px;position:absolute;right:15px;top:calc(50% - 5px);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-18fdf54c]: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+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==);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:Roboto;src:url(../fonts/Roboto-Regular.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Roboto;src:url(../fonts/Roboto-Bold.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}.icon{display:-webkit-box;display:-ms-flexbox;display:flex;width:16px;height:16px}.icon svg{width:100%;height:100%}.icon.is-small{width:10px;height:10px}@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-media:before{content:"\f072"}.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}.exactmetrics-notice.exactmetrics-license_expired .notice-content{padding-left:0;background:none;line-height:1.75;font-size:15px}.exactmetrics-notice.exactmetrics-license_expired .notice-content:before{display:none;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:0;left:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon{margin-right:15px;margin-top:4px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon svg{width:36px;height:32px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner{background-color:#fff!important}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner h2{font-size:14px;color:#e64949;margin:0;padding:0}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner .exactmetrics-notice-content{color:#e64949}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner a.exactmetrics-button-error{margin-top:17px}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-notifications-display{background:#f4f3f7;border-left:3px solid #6528f5;padding:20px;border-radius:3px 0 0 3px;margin-bottom:50px;position:relative}.exactmetrics-settings-panel .exactmetrics-notifications-display{margin-left:25px;margin-right:25px}.exactmetrics-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.exactmetrics-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.exactmetrics-notifications-display .exactmetrics-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator{padding-top:10px}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator a{position:relative}.exactmetrics-notifications-display .exactmetrics-notification-inner{margin-left:25px}.exactmetrics-notifications-display .exactmetrics-button{margin-right:15px}.exactmetrics-notifications-display .exactmetrics-notification-navigation{position:absolute;right:0;top:100%}.exactmetrics-notifications-display .exactmetrics-notification-navigation button{background:#f4f3f7;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notification-navigation button:focus,.exactmetrics-notifications-display .exactmetrics-notification-navigation button:hover{color:#6528f5}.exactmetrics-notifications-display .exactmetrics-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);font-size:10px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous{margin-right:2px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous .monstericon-arrow{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.exactmetrics-notifications-display .exactmetrics-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;right:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;left:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.exactmetrics-report .exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;left:20px}.exactmetrics-admin-page.exactmetrics-path-about-us .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-url-builder .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-reports-page .exactmetrics-notificationsv3-container{margin-right:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{width:90%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container{display:inline-block;margin-left:20px;float:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number{position:absolute;top:-9px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-greater-than-10{right:-13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-less-than-10{right:-10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:absolute;top:21px;right:15px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:0;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:inline-block}}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}@media (max-width:1099px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button svg path{fill:#6528f5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-notificationsv3-inbox-number{cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{width:440px;position:fixed;top:32px;right:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(50px);transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar.exactmetrics-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top{background:#6528f5;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title svg{margin-right:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0;float:none}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{display:inline-block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:hover{color:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:focus{outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close{margin-left:12px;vertical-align:bottom}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:active svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:focus svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;right:inherit;min-width:24px;height:24px;line-height:24px;margin-right:8px;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-dismissed-number{margin-right:8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{margin-bottom:46px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{width:54px;float:left;text-align:center;padding-top:24px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{float:none;margin:0 auto}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{float:left;width:354px;padding-top:20px;text-align:left}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{width:260px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{width:65%}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-right:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:hover{background:#d3d7de}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:hover{color:#a9b1c3}.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)}}.exactmetrics-upload-media-wrapper .exactmetrics-dark{display:block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media-label{margin-bottom:0!important}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;left:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media{color:#fff;text-decoration:underline;margin-left:auto;cursor:pointer;padding:0 10px 10px 0}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media:hover{text-decoration:none}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media:hover .exactmetrics-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media img{max-width:100%;display:inline-block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-input{width:73%;margin-right:2%;float:left;position:relative;margin-top:0}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button{width:25%;float:left;font-size:15px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:active,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:focus,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:hover{outline:none}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button{position:relative!important;margin-left:10px;padding:12px 24px!important}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button:first-child{margin-left:0}.exactmetrics-email-summaries-settings a{color:#6528f5!important}.exactmetrics-email-summaries-settings a:focus,.exactmetrics-email-summaries-settings a:hover{color:#393f4c!important}.exactmetrics-email-summaries-settings .exactmetrics-dark{display:block}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button{position:relative!important;margin-left:10px;padding:12px 24px!important}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button:first-child{margin-left:0}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater{margin-bottom:18px}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=number],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=text],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row textarea{border-color:#9087ac}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-email-summaries-settings .exactmetrics-button.exactmetrics-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.exactmetrics-accordion .exactmetrics-accordion{padding:0;border:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.exactmetrics-accordion .exactmetrics-accordion div:last-child .exactmetrics-accordion-item-details{border-radius:5px}.exactmetrics-accordion .exactmetrics-accordion dd{margin-left:0;margin-bottom:0}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{cursor:pointer;outline:none}.exactmetrics-accordion .exactmetrics-accordion-item-details-inner,.exactmetrics-accordion .exactmetrics-accordion-item-trigger{padding:0 20px 30px}.exactmetrics-accordion .exactmetrics-accordion-item.is-active .exactmetrics-accordion-item-title{border-bottom:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-right:1.25rem}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text .title{padding-left:15px}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{width:100%;text-align:left;background-color:rgba(0,0,0,0);border:none}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon{display:block;position:absolute;top:0;right:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-right:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(45deg);-ms-transform:translateY(-2px) rotate(45deg);transform:translateY(-2px) rotate(45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(225deg);-ms-transform:translateY(2px) rotate(225deg);transform:translateY(2px) rotate(225deg)}.exactmetrics-accordion .exactmetrics-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.exactmetrics-accordion .exactmetrics-accordion-item-details p,.exactmetrics-accordion .exactmetrics-accordion-item-details ul{font-size:1.2em;line-height:1.8}.exactmetrics-accordion .exactmetrics-accordion-item-enter-active,.exactmetrics-accordion .exactmetrics-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-enter,.exactmetrics-accordion .exactmetrics-accordion-item-leave-to{height:0!important}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}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none;margin-right:40px}}.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 .exactmetrics-swal-icons{position:absolute;left:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-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 .exactmetrics-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 .exactmetrics-swal-icons [class^=monstericon-]:nth-child(2){left:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){left:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-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 .exactmetrics-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}.exactmetrics-semrush-cta{background:#f4f3f7;border-left:3px solid #6528f5;padding:20px 26px;border-radius:3px 0 0 3px;position:relative}.exactmetrics-semrush-cta br{display:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-close{position:absolute;top:12px;right:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.exactmetrics-semrush-cta .exactmetrics-button{background:#6528f5;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.exactmetrics-semrush-cta .exactmetrics-button:active,.exactmetrics-semrush-cta .exactmetrics-button:focus,.exactmetrics-semrush-cta .exactmetrics-button:hover{background:#6333d4;outline:none}.exactmetrics-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}
lite/assets/vue/css/chunk-common.rtl.css CHANGED
@@ -1 +1 @@
1
- strong[data-v-e05413a0]{display:block}[data-v-2561b4b1]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-eafd9de2]{display:block}.exactmetrics-reset-default[data-v-eafd9de2]{margin-right:5px}.exactmetrics-dark[data-v-cd6875ca]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:16px;line-height:140%;padding:16px 58px 16px 32px;text-align:right;position:relative;margin:-20px -20px 20px}.exactmetrics-admin-page .exactmetrics-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;right:32px;top:20px}@media (max-width:782px){.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:16px;position:absolute;left:15px;top:calc(50% - 5px);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-d3e6e3ce]: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+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==);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:Roboto;src:url(../fonts/Roboto-Regular.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Roboto;src:url(../fonts/Roboto-Bold.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}.icon{display:-webkit-box;display:-ms-flexbox;display:flex;width:16px;height:16px}.icon svg{width:100%;height:100%}.icon.is-small{width:10px;height:10px}@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-media:before{content:"\f072"}.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}.exactmetrics-notice.exactmetrics-license_expired .notice-content{padding-right:0;background:none;line-height:1.75;font-size:15px}.exactmetrics-notice.exactmetrics-license_expired .notice-content:before{display:none;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:0;right:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon{margin-left:15px;margin-top:4px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon svg{width:36px;height:32px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner{background-color:#fff!important}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner h2{font-size:14px;color:#e64949;margin:0;padding:0}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner .exactmetrics-notice-content{color:#e64949}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner a.exactmetrics-button-error{margin-top:17px}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-notifications-display{background:#f4f3f7;border-right:3px solid #6528f5;padding:20px;border-radius:0 3px 3px 0;margin-bottom:50px;position:relative}.exactmetrics-settings-panel .exactmetrics-notifications-display{margin-right:25px;margin-left:25px}.exactmetrics-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.exactmetrics-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.exactmetrics-notifications-display .exactmetrics-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator{padding-top:10px}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator a{position:relative}.exactmetrics-notifications-display .exactmetrics-notification-inner{margin-right:25px}.exactmetrics-notifications-display .exactmetrics-button{margin-left:15px}.exactmetrics-notifications-display .exactmetrics-notification-navigation{position:absolute;left:0;top:100%}.exactmetrics-notifications-display .exactmetrics-notification-navigation button{background:#f4f3f7;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notification-navigation button:focus,.exactmetrics-notifications-display .exactmetrics-notification-navigation button:hover{color:#6528f5}.exactmetrics-notifications-display .exactmetrics-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);font-size:10px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous{margin-left:2px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous .monstericon-arrow{-webkit-transform:rotate(-270deg);-ms-transform:rotate(-270deg);transform:rotate(-270deg)}.exactmetrics-notifications-display .exactmetrics-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;left:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;right:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.exactmetrics-report .exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;right:20px}.exactmetrics-admin-page.exactmetrics-path-about-us .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-url-builder .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-reports-page .exactmetrics-notificationsv3-container{margin-left:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{width:90%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container{display:inline-block;margin-right:20px;float:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number{position:absolute;top:-9px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-greater-than-10{left:-13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-less-than-10{left:-10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:absolute;top:21px;left:15px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:0;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:inline-block}}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}@media (max-width:1099px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-notificationsv3-inbox-number{cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{width:440px;position:fixed;top:32px;left:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px);transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar.exactmetrics-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top{background:#2679c1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title svg{margin-left:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0;float:none}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{display:inline-block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:hover{color:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:focus{outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close{margin-right:12px;vertical-align:bottom}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:active svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:focus svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;left:inherit;min-width:24px;height:24px;line-height:24px;margin-left:8px;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-dismissed-number{margin-left:8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{margin-bottom:46px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{width:54px;float:right;text-align:center;padding-top:24px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{float:none;margin:0 auto}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{float:right;width:354px;padding-top:20px;text-align:right}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{width:260px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{width:65%}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-left:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:hover{background:#d3d7de}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:hover{color:#a9b1c3}.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)}}.exactmetrics-upload-media-wrapper .exactmetrics-dark{display:block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media-label{margin-bottom:0!important}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;right:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media{color:#fff;text-decoration:underline;margin-right:auto;cursor:pointer;padding:0 0 10px 10px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media:hover{text-decoration:none}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media:hover .exactmetrics-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media img{max-width:100%;display:inline-block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-input{width:73%;margin-left:2%;float:right;position:relative;margin-top:0}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button{width:25%;float:right;font-size:15px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:active,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:focus,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:hover{outline:none}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button{position:relative!important;margin-right:10px;padding:12px 24px!important}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button:first-child{margin-right:0}.exactmetrics-email-summaries-settings a{color:#6528f5!important}.exactmetrics-email-summaries-settings a:focus,.exactmetrics-email-summaries-settings a:hover{color:#393f4c!important}.exactmetrics-email-summaries-settings .exactmetrics-dark{display:block}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button{position:relative!important;margin-right:10px;padding:12px 24px!important}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button:first-child{margin-right:0}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater{margin-bottom:18px}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=number],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=text],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row textarea{border-color:#9087ac}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-email-summaries-settings .exactmetrics-button.exactmetrics-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.exactmetrics-accordion .exactmetrics-accordion{padding:0;border:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.exactmetrics-accordion .exactmetrics-accordion div:last-child .exactmetrics-accordion-item-details{border-radius:5px}.exactmetrics-accordion .exactmetrics-accordion dd{margin-right:0;margin-bottom:0}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{cursor:pointer;outline:none}.exactmetrics-accordion .exactmetrics-accordion-item-details-inner,.exactmetrics-accordion .exactmetrics-accordion-item-trigger{padding:0 20px 30px}.exactmetrics-accordion .exactmetrics-accordion-item.is-active .exactmetrics-accordion-item-title{border-bottom:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-left:1.25rem}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text .title{padding-right:15px}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{width:100%;text-align:right;background-color:rgba(0,0,0,0);border:none}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon{display:block;position:absolute;top:0;left:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-left:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(-45deg);-ms-transform:translateY(-2px) rotate(-45deg);transform:translateY(-2px) rotate(-45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(-225deg);-ms-transform:translateY(2px) rotate(-225deg);transform:translateY(2px) rotate(-225deg)}.exactmetrics-accordion .exactmetrics-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.exactmetrics-accordion .exactmetrics-accordion-item-details p,.exactmetrics-accordion .exactmetrics-accordion-item-details ul{font-size:1.2em;line-height:1.8}.exactmetrics-accordion .exactmetrics-accordion-item-enter-active,.exactmetrics-accordion .exactmetrics-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-enter,.exactmetrics-accordion .exactmetrics-accordion-item-leave-to{height:0!important}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}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none;margin-left:40px}}.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 .exactmetrics-swal-icons{position:absolute;right:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-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 .exactmetrics-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 .exactmetrics-swal-icons [class^=monstericon-]:nth-child(2){right:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){right:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-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 .exactmetrics-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}.exactmetrics-semrush-cta{background:#f4f3f7;border-right:3px solid #6528f5;padding:20px 26px;border-radius:0 3px 3px 0;position:relative}.exactmetrics-semrush-cta br{display:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-close{position:absolute;top:12px;left:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.exactmetrics-semrush-cta .exactmetrics-button{background:#6528f5;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.exactmetrics-semrush-cta .exactmetrics-button:active,.exactmetrics-semrush-cta .exactmetrics-button:focus,.exactmetrics-semrush-cta .exactmetrics-button:hover{background:#6333d4;outline:none}.exactmetrics-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}
1
+ strong[data-v-1c1718a8]{display:block}[data-v-8d2cb686]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-3253c54f]{display:block}.exactmetrics-reset-default[data-v-3253c54f]{margin-right:5px}.exactmetrics-dark[data-v-3b6b71fa]{display:block}.exactmetrics-admin-page .exactmetrics-floating-bar{background:#6528f5;color:#fff;font-size:16px;line-height:140%;padding:16px 58px 16px 32px;text-align:right;position:relative;margin:-20px -20px 20px}.exactmetrics-admin-page .exactmetrics-floating-bar:before{content:"";width:16px;height:16px;background:url(../img/icon-info.svg) no-repeat 50%;position:absolute;right:32px;top:20px}@media (max-width:782px){.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:16px;position:absolute;left:15px;top:calc(50% - 5px);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-18fdf54c]: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+WYgg4HGgflmIEeP81xU2MLinTHpTPjT62D9NbpMjy1k5cKVCPnZDzASPhSoIUEfkdi+935e1zD1vh/gcciBjgCcpwwJc55U/YIOQ87NokCcdpA3Acp0vEdp+unNWW3zjieIx+h5DLVyhKm4/+VziGK71AZvqpDoTdIkXbg8SyRcwS8k1DKCErbBnC8aBY8gEKbHVcZGQBTnE2WxSa3ObYc1QhZjiRIz99SBHZ+aBAj/F3uXY9SAen8rtnnPM2Kd8X1/uWBpr/uruwfGu1hLB0HraFjM5YPdWccooAAnJVMepS3IWb7Gf3oPmnUnSxwwopRshZdvGU0SFtibNCvf7klqQMMaiZoubvdwVpMNBFovIsYjpErXucYqBaVxdjFkUHcPOqb7uMRZacj+RqIUOSC4pK0UIncqNQ5Cm6gEyXMZcDHUHEd41gOwCS6y6COrEUBeP9hjPC421SLIZmqTP9qRR9FHkRcc693Rh1VWZq/kgXo68mCIF2VgpWkN8LWb676EnDfRnbeVPI0HZc2cMiG+gXt7H+VSm2/rZzts2JwkAAzgsQgneCYrVYq6117LVaXzr7/3/bDZc0GxLlkPFjni9VEHQel91NLCkAiY3Fw30skgzdcIx8ESV5jBa5fvcxTRhAzL0anaiLTAor63EV6qnJknbd8S0yTpoWU3OMs4NwSrnVEbayI4oFIBttdgrHO1nE5DOxEiW3wpLWMtBYlHudji4P6q/Q0RLrk5f4HD+I8C2mriymtyGizgUuQ/wF2genbj4B0c32CeCzp0XBNCMMDW0VzWX2HqofsCv9Il5jKhgnSgRVMaoOKwEibhAA3LNIHYtZY0IIQzaixOF9mVxjY84hv/Ai1xf0CiC7W9dNwTKX2qfKtUUcEfsWje8IgxJDL9Oi/JLlWXQvXOr25JjE4wnpyPvaNDPbEhRmynMDT693s6jbw0e0yIgi6WyRqaqpgpFy9RSNdLDIWiwiEcMP24kY/gyJgo9YAdNZ/oLN8obcy2KEeVGVA2z60obFuMWi9qKDMUcpumGsa1Jqk7kWY7RoN08eNIrFDQPZiT3Ded6vsmecH4Viey+LvFmjc/NV48gGddZQ7lrEkNPBWCdHfFFiOh6Hdovy6hQvH6kvugtyBk8VuUQ2hzfS12JKDdLpF2OUmtaXlN5Ffw5lk38DQTZxLKr9jdhmVrqIsJFUcN7BouqxG64y9ZGV4Iw4bDe7+AJMNTse5xnMT30tuiM3PWhRrUyOFRuEsFMY0xuZmoLgjsWx5U0KnR3s7ltaTYosIR53sEit9kdO1LlyJ4EgewFX2TwTl+cY4Be5i0UzCfETkhl24Qj1jx2hRceCWyoibBxB/ZZOS22p3aJOy6z2LSmr32iMjayXMoeD1gGMq/F9oXrvu1jkZhKCmjmdHBpg44eU0rE4asxpcy7tWUZmtVBxKfCoNos6aGsYE1aRG6SpuNAwnBm0Mds3lI+/Ad4e7mUxxoIzMmUlF6CJ7KLCMBKlkxexXfSgaMoehneySOQIj0kacyIpcXiYQTuL8VnPeVfLGcA0Ij1/1WcOPGE1pc5WrKZWxlP2L24yrjcpkliF08/zuN6phAyYKjk+9Sm4fpjqIbq09un2nrGBe4g+Rs15RFI/Zdh1+xLaWe+izyQ/LuZ4J2Uni/3JKCc+Ejf3Pe3tJ+A0k16h9hk+igK6UZS/H8J/O13m9URbWR5iNi/mbPCxQofIy5sKWBJoZygrXskhucTqS5chEugLHYDmQAL9qA5z0EzDjZX9kPkaDL9JoHZCLd471CQ6A+Qj3HKurCwZGIpN9Z9Xbwd2A7QnAc3DowCDyB/IdV5GUzB8h7UPGlRpAQa2fL2mO7Ecro/Bocu+w929jYQ4CGvCXGL5B5DDyWvA7YQIi3D33xXOx7W9HJYkNvJoJ8SwVlYL2RsgX2MrED+tQC0+TiTQwnBVWrbMajD7EpBBGKzctHYliEPlrUi0CneVd6H6mFvpMa8iy+F3WP6lM3xgiVuHhNgXWoJHsQvrvtzI8+81NJmtQndzO+fDHJCnKBSVfmxNepweKxLoy+qrqB3uMhIw/AWFbdSoUycRogAAAABJRU5ErkJggg==);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:Roboto;src:url(../fonts/Roboto-Regular.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Roboto;src:url(../fonts/Roboto-Bold.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}.icon{display:-webkit-box;display:-ms-flexbox;display:flex;width:16px;height:16px}.icon svg{width:100%;height:100%}.icon.is-small{width:10px;height:10px}@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-media:before{content:"\f072"}.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}.exactmetrics-notice.exactmetrics-license_expired .notice-content{padding-right:0;background:none;line-height:1.75;font-size:15px}.exactmetrics-notice.exactmetrics-license_expired .notice-content:before{display:none;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:0;right:0;position:absolute;top:0;line-height:1}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon{margin-left:15px;margin-top:4px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-icon svg{width:36px;height:32px}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner{background-color:#fff!important}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner h2{font-size:14px;color:#e64949;margin:0;padding:0}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner .exactmetrics-notice-content{color:#e64949}.exactmetrics-notice.exactmetrics-license_expired .exactmetrics-notice-inner a.exactmetrics-button-error{margin-top:17px}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-notifications-display{background:#f4f3f7;border-right:3px solid #6528f5;padding:20px;border-radius:0 3px 3px 0;margin-bottom:50px;position:relative}.exactmetrics-settings-panel .exactmetrics-notifications-display{margin-right:25px;margin-left:25px}.exactmetrics-notifications-display h3{margin:0 0 4px;font-size:16px;line-height:20px}.exactmetrics-notifications-display p{margin-top:4px;margin-bottom:12px;font-size:14px;line-height:18px}.exactmetrics-notifications-display .exactmetrics-notification{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator{padding-top:10px}.exactmetrics-notifications-display .exactmetrics-notification .exactmetrics-notifications-indicator a{position:relative}.exactmetrics-notifications-display .exactmetrics-notification-inner{margin-right:25px}.exactmetrics-notifications-display .exactmetrics-button{margin-left:15px}.exactmetrics-notifications-display .exactmetrics-notification-navigation{position:absolute;left:0;top:100%}.exactmetrics-notifications-display .exactmetrics-notification-navigation button{background:#f4f3f7;border:none;border-radius:0 0 3px 3px;margin:0;padding:5px 8px 7px;color:#a8aebd;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notification-navigation button:focus,.exactmetrics-notifications-display .exactmetrics-notification-navigation button:hover{color:#6528f5}.exactmetrics-notifications-display .exactmetrics-notification-navigation button .monstericon-arrow{-webkit-transform:rotate(-90deg);-ms-transform:rotate(-90deg);transform:rotate(-90deg);font-size:10px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous{margin-left:2px}.exactmetrics-notifications-display .exactmetrics-notification-navigation button.exactmetrics-notification-previous .monstericon-arrow{-webkit-transform:rotate(-270deg);-ms-transform:rotate(-270deg);transform:rotate(-270deg)}.exactmetrics-notifications-display .exactmetrics-notification-dismiss{border:none;background:none;color:#a8aebd;position:absolute;left:12px;top:9px;padding:0;margin:0;font-size:16px;cursor:pointer}.exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:10px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:12px;right:18px;border-radius:20px;line-height:16px;color:#fff;font-weight:700;text-align:center;display:inline-block;padding:0 3px}.exactmetrics-report .exactmetrics-notifications-display .exactmetrics-notifications-unread{min-width:16px;height:16px;background:#c84b29;border:1.72823px solid #f9fbff;position:absolute;bottom:4px;border-radius:20px;line-height:1;color:#fff;font-weight:700;text-align:center;padding:0 2px;right:20px}.exactmetrics-admin-page.exactmetrics-path-about-us .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-import-export .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-path-tools-url-builder .exactmetrics-notificationsv3-container,.exactmetrics-admin-page.exactmetrics-reports-page .exactmetrics-notificationsv3-container{margin-left:0}.exactmetrics-admin-page.exactmetrics-path-addons .exactmetrics-navigation-bar{width:90%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container{display:inline-block;margin-right:20px;float:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number{position:absolute;top:-9px;min-width:20px;height:20px;line-height:20px;display:block;background:#eb5757;border-radius:20px;font-size:12px;color:#fff;font-weight:700;text-align:center;padding:0 6px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-greater-than-10{left:-13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-number.number-less-than-10{left:-10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-dismissed-number{min-width:24px;height:24px;background:#7c869d;border-radius:20px;display:inline-block;text-align:center;vertical-align:middle;line-height:24px;color:#fff;font-size:14px;font-weight:700;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications{text-align:center;position:absolute;top:50%;margin-top:-69px;width:100%}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-no-notifications h4{font-size:16px;color:#7c869d}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:relative}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button{position:absolute;top:21px;left:15px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{background:#f0f2f4;border-radius:3px;padding:11px 7px;line-height:0;vertical-align:middle;margin-top:0;border:solid #d3d7de;border-width:1px 1px 2px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:inline-block}}@media (max-width:959px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}@media (max-width:1099px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button{display:block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button:hover{background:#e7eaec;border-color:#d3d7de;outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-button svg path{fill:#6528f5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-inbox-button .exactmetrics-notificationsv3-inbox-number{cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{width:440px;position:fixed;top:32px;left:0;background:#fff;z-index:1001;overflow:scroll;height:100%;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-fill-mode:both;animation-fill-mode:both}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar{top:46px;width:300px}}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(-50px);transform:translateX(-50px)}to{opacity:1;-webkit-transform:translateX(0);transform:translateX(0)}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar.exactmetrics-notificationsv3-sidebar-in{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-single-notification{padding:0 16px;overflow:hidden}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top{background:#6528f5;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title svg{margin-left:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-title h3{display:inline-block;color:#fff;font-size:18px;font-weight:700}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{color:#fff;text-decoration:underline;border:0;padding:0;background:rgba(0,0,0,0);border-radius:0;float:none}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button{display:inline-block}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:hover{color:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-button:focus{outline:none}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close{margin-right:12px;vertical-align:bottom}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:active svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:focus svg path,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-top .exactmetrics-notificationsv3-sidebar-header-top-actions .exactmetrics-notificationsv3-sidebar-close:hover svg path{fill:#efe5e5}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:60px;border-bottom:1px solid #e2e4e9;margin:0 16px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count{width:50%;text-align:right}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-inbox-number{position:relative;display:inline-block;top:inherit;left:inherit;min-width:24px;height:24px;line-height:24px;margin-left:8px;padding:0 8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count .exactmetrics-notificationsv3-dismissed-number{margin-left:8px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-notifications-count h4{display:inline-block}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions{width:50%;text-align:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span{text-decoration:underline;color:#99a1b3;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-header-bottom .exactmetrics-notificationsv3-sidebar-header-bottom-actions span:hover{color:#a9b1c3}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{display:block;margin-bottom:32px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications{margin-bottom:46px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification{border-bottom:1px solid #e2e4e9;padding-bottom:24px;display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{width:54px;float:right;text-align:center;padding-top:24px}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-icon{float:none;margin:0 auto}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{float:right;width:354px;padding-top:20px;text-align:right}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details{width:260px}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{margin-top:0;margin-bottom:0;color:#393f4c;font-size:13px;font-weight:700;width:70%;display:inline-block}@media (max-width:782px){.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title h5{width:65%}}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-title span{color:#7f899f;font-size:13px;float:left}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-content p{color:#393f4c;font-size:13px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-top:2px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button{display:block;background:#f0f2f4;border:1px solid #d3d7de;border-radius:3px;font-weight:500;font-size:13px;color:#393f4c;letter-spacing:.02em;padding:6px 11px;margin-left:10px}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions .exactmetrics-button:hover{background:#d3d7de}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span{font-size:13px;color:#7f899f;cursor:pointer}.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:active,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:focus,.exactmetrics-admin-page .exactmetrics-notificationsv3-container .exactmetrics-notificationsv3-sidebar .exactmetrics-notificationsv3-sidebar-notifications .exactmetrics-notificationsv3-single-notification .exactmetrics-notificationsv3-notification-details .exactmetrics-notificationsv3-notification-actions span:hover{color:#a9b1c3}.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)}}.exactmetrics-upload-media-wrapper .exactmetrics-dark{display:block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media-label{margin-bottom:0!important}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media{display:block;width:100%;margin-top:20px;position:relative;max-width:300px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay{display:none;background:rgba(0,0,0,.7);width:100%;position:absolute;top:0;right:0;height:100%;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media{color:#fff;text-decoration:underline;margin-right:auto;cursor:pointer;padding:0 0 10px 10px}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media .exactmetrics-uploaded-media-overlay .exactmetrics-remove-uploaded-media:hover{text-decoration:none}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media:hover .exactmetrics-uploaded-media-overlay{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-upload-media-wrapper .exactmetrics-uploaded-media img{max-width:100%;display:inline-block}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;margin-top:20px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-input{width:73%;margin-left:2%;float:right;position:relative;margin-top:0}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button{width:25%;float:right;font-size:15px}.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:active,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:focus,.exactmetrics-upload-media-wrapper .exactmetrics-upload-media .exactmetrics-upload-media-button:hover{outline:none}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button{position:relative!important;margin-right:10px;padding:12px 24px!important}.exactmetrics-upload-media-wrapper .inline-field .exactmetrics-button:first-child{margin-right:0}.exactmetrics-email-summaries-settings a{color:#6528f5!important}.exactmetrics-email-summaries-settings a:focus,.exactmetrics-email-summaries-settings a:hover{color:#393f4c!important}.exactmetrics-email-summaries-settings .exactmetrics-dark{display:block}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button{position:relative!important;margin-right:10px;padding:12px 24px!important}.exactmetrics-email-summaries-settings .inline-field .exactmetrics-button:first-child{margin-right:0}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater{margin-bottom:18px}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=number],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row input[type=text],.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row textarea{border-color:#9087ac}.exactmetrics-email-summaries-settings .exactmetrics-settings-input-repeater .exactmetrics-settings-input-repeater-row .exactmetrics-input-valid input{border-color:#32a27a}.exactmetrics-email-summaries-settings .exactmetrics-button.exactmetrics-button-disabled{cursor:not-allowed;background:#39967e!important;border-color:#4ab99b!important}.exactmetrics-accordion .exactmetrics-accordion{padding:0;border:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border-bottom:1px solid rgba(10,10,10,.1)}.exactmetrics-accordion .exactmetrics-accordion div:last-child .exactmetrics-accordion-item-details{border-radius:5px}.exactmetrics-accordion .exactmetrics-accordion dd{margin-right:0;margin-bottom:0}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{cursor:pointer;outline:none}.exactmetrics-accordion .exactmetrics-accordion-item-details-inner,.exactmetrics-accordion .exactmetrics-accordion-item-trigger{padding:0 20px 30px}.exactmetrics-accordion .exactmetrics-accordion-item.is-active .exactmetrics-accordion-item-title{border-bottom:1px solid #e0e0e0}.exactmetrics-accordion .exactmetrics-accordion-item-title{position:relative;background-color:#fff;cursor:pointer}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text{font-size:20px;margin-bottom:0;padding-left:1.25rem}.exactmetrics-accordion .exactmetrics-accordion-item-title h4.exactmetrics-accordion-item-title-text .title{padding-right:15px}.exactmetrics-accordion .exactmetrics-accordion-item-trigger{width:100%;text-align:right;background-color:rgba(0,0,0,0);border:none}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon{display:block;position:absolute;top:0;left:1.5rem;bottom:0;margin:auto;width:8px;height:8px;border-left:2px solid #363636;border-bottom:2px solid #363636;-webkit-transform:translateY(-2px) rotate(-45deg);-ms-transform:translateY(-2px) rotate(-45deg);transform:translateY(-2px) rotate(-45deg);-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-trigger-icon.is-active{-webkit-transform:translateY(2px) rotate(-225deg);-ms-transform:translateY(2px) rotate(-225deg);transform:translateY(2px) rotate(-225deg)}.exactmetrics-accordion .exactmetrics-accordion-item-details{overflow:hidden;background-color:#fff;padding-top:15px}.exactmetrics-accordion .exactmetrics-accordion-item-details p,.exactmetrics-accordion .exactmetrics-accordion-item-details ul{font-size:1.2em;line-height:1.8}.exactmetrics-accordion .exactmetrics-accordion-item-enter-active,.exactmetrics-accordion .exactmetrics-accordion-item-leave-active{will-change:height;-webkit-transition:height .2s ease;transition:height .2s ease}.exactmetrics-accordion .exactmetrics-accordion-item-enter,.exactmetrics-accordion .exactmetrics-accordion-item-leave-to{height:0!important}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}@media (max-width:959px){.exactmetrics-navigation-bar{padding:0;border:0}}@media (max-width:750px){.exactmetrics-navigation-bar{background:none;margin-left:40px}}.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 .exactmetrics-swal-icons{position:absolute;right:-35px;top:-15px;width:260px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-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 .exactmetrics-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 .exactmetrics-swal-icons [class^=monstericon-]:nth-child(2){right:35px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-swal-icons [class^=monstericon-].monstericon-exclamation-em-solid:nth-child(2){right:50px}.exactmetrics_page .swal2-container.exactmetrics-swal-succcess .swal2-popup.swal2-modal .exactmetrics-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 .exactmetrics-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}.exactmetrics-semrush-cta{background:#f4f3f7;border-right:3px solid #6528f5;padding:20px 26px;border-radius:0 3px 3px 0;position:relative}.exactmetrics-semrush-cta br{display:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-close{position:absolute;top:12px;left:12px;cursor:pointer;border:0;background:rgba(0,0,0,0);padding:0;margin:0;outline:none}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-title{font-weight:700;font-size:16px;line-height:20px;color:#393f4c;margin:0}.exactmetrics-semrush-cta .exactmetrics-semrush-cta-content{font-weight:400;font-size:14px;color:#393f4c}.exactmetrics-semrush-cta .exactmetrics-button{background:#6528f5;border-radius:3px;font-weight:400;font-size:14px;border-width:0;padding:7px 12px}.exactmetrics-semrush-cta .exactmetrics-button:active,.exactmetrics-semrush-cta .exactmetrics-button:focus,.exactmetrics-semrush-cta .exactmetrics-button:hover{background:#6333d4;outline:none}.exactmetrics-row-highlight{-webkit-animation-name:color;animation-name:color;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-animation-iteration-count:2;animation-iteration-count:2}@-webkit-keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}@keyframes color{0%{background-color:#fff}50%{background-color:#509fe2}to{background-color:#fff}}
lite/assets/vue/css/reports.css CHANGED
@@ -1,3 +1,3 @@
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
3
- */.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:-65px;width:648px;right:-13%}.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/one-click-integrations.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-left:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);left:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-left:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-left:32px;padding-right:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;right:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:100% 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-report-year-in-review{margin-left:auto;margin-right:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:0 0;margin-bottom:90px}.exactmetrics-report-year-in-review .exactmetrics-pie-chart-tooltip{left:22px;top:23px}.exactmetrics-report-year-in-review .exactmetrics-reports-doughnut-tooltip{width:120px;height:120px}.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:100%;margin-top:20px}}.exactmetrics-report-year-in-review a,.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5,.exactmetrics-report-year-in-review p,.exactmetrics-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5{font-weight:900}.exactmetrics-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.exactmetrics-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right{text-align:right}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right h2{color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/em-logo-lg.png);background-repeat:no-repeat;background-position:center right 26px;background-size:230px 200px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding-left:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/em-logo-lg.png);background-position:right top 83px;background-size:160px 150px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:26px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-size:12px;max-width:230px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-right:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 25px 14px 90px;position:relative;display:inline-block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:32px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header div{width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder{position:relative}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder .exactmetrics-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box.exactmetrics-year-in-review-table-box-blur-report .exactmetrics-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title{display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle{display:inline-block;float:right}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0;text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list{padding-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item{padding:9px 30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:active,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:focus,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{bottom:-40px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip span{font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip .exactmetrics-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:block;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder .exactmetrics-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{position:relative;left:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{margin:10px 0 0}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{margin-right:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-right:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip a,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip h3,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{width:90px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-size:12px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper{margin-top:15px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:left}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-details{font-size:14px;line-height:20px;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success{background:#1ec185}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:hover{opacity:.8;background:#10ad73}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions img,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors img{margin-bottom:15px;max-height:28px}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-size:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{display:block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{margin:0 auto}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag.exactmetrics-flag-zz{display:none}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{margin-top:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:10px;line-height:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:block;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{margin-top:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:50%;position:relative}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:0;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:55%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:30%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-products-sold,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-revenue{padding:75px 0}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:24px;line-height:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:45%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:70%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning img,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular img{margin-bottom:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-revenue-by-month{margin-bottom:50px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:0 0;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:0;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-size:14px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{padding:0 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.chris{background-image:url(../img/chris.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.syed{background-image:url(../img/syed.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{width:100%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content{text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-size:18px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{text-align:center;padding-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:active,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:hover{background:#123c68}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-left:0;margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:calc(50% - 60px);float:left;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:100%;margin:30px 0;min-height:300px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top{padding-top:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image{width:104px;float:left;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image .exactmetrics-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status span{color:#d4393d}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:hover{background:rgba(51,142,239,.5)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{padding-top:100px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-size:18px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:block;margin-left:0;padding-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{min-height:350px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{padding:8px 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}.exactmetrics-report-site-speed .exactmetrics-upsell-top{max-width:80%;margin:0 auto}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.exactmetrics-report-site-speed .exactmetrics-report-top h2.exactmetrics-report-top-title{margin-top:10px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report{margin-right:16px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit{background-color:#3990ec;height:39px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit:hover{background-color:rgba(57,144,236,.8)}.exactmetrics-report-site-speed .exactmetrics-choose-device-button{margin-left:15px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-site-speed-container{max-width:1010px}.exactmetrics-report-site-speed .exactmetrics-site-speed-device,.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:338px;margin-right:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon{margin-bottom:40px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon .desktop{width:80px}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(-55deg);-ms-transform:scaleX(-1) rotate(-55deg);transform:scaleX(-1) rotate(-55deg);overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__container{display:inline-block;position:relative}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:662px}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex{text-align:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex.exactmetrics-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat p{color:#828282}.exactmetrics-report-site-speed .exactmetrics-how-to-improve h2.title{font-size:22px;color:#393f4c}div.exactmetrics-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.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}@media (max-width:782px){.exactmetrics-reports-page .exactmetrics-report-top{margin-bottom:25px}}.exactmetrics_page.exactmetrics-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-details,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-pdf-score{display:block!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-title,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border:none!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-trigger-icon,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-notificationsv3-container,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-progress-circle{display:none}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-header{min-height:85px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report{width:1120px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation{border-bottom:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{border:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button:first-child{border-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{border-top:0;margin-bottom:25px}@media (max-width:782px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title{padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title:before{position:inherit;left:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row{padding:24px 60px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;border-top:0;padding:0 10px 0 80px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-ecommerce-pie-chart{width:40%;padding-top:130px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;margin-left:20px;-webkit-box-orient:inherit;-webkit-box-direction:inherit;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart{width:50%;border:none;padding-left:32px;padding-right:20px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box{margin-left:20px;margin-top:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box:first-child{margin-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-2-columns .exactmetrics-table-box{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex.exactmetrics-interests-scroll-report .exactmetrics-table-box{width:100%}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart:first-child{margin:0 25px 0 0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}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-top:14px;margin-bottom:24px}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:25px}}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:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin:0 0 25px}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center;padding-top:20px}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-bottom:0}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button[disabled=disabled]{cursor:not-allowed}body.exactmetrics-reporting-page .exactmetrics-report-realtime .exactmetrics-export-pdf-report{margin-right:0}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:1130px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:right}}body.exactmetrics-reporting-page .exactmetrics-datepicker,body.exactmetrics-reporting-page .exactmetrics-hide{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-wrapper .flatpickr-calendar{width:100%}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 10px 0 60px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.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-top{pointer-events:none}.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 h4{font-size:16px;line-height:140%;color:#444}.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:16px auto 24px;max-width:520px;display:grid;grid-gap:10px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-1{grid-template-columns:1fr}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.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:#6528f5;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:#fff;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}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-accordion-item-details,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-pdf-score{display:block!important}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-progress-circle{display:none}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown{min-width:250px}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button{background:rgba(0,0,0,0);color:#32a27a}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:hover{color:#19865f}body.exactmetrics-reporting-page .exactmetrics-notice-error.exactmetrics-license_expired{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-swal-icons{display:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-actions{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a{display:inline-block}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert{text-align:left;padding-right:39px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}
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:-65px;width:648px;right:-13%}.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/one-click-integrations.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-media-report-upsell-screen:after{background-image:url(../img/media-report-upsell.png);background-size:80%;background-position:right 40px}.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-report-year-in-review{margin-left:auto;margin-right:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:0 0;margin-bottom:90px}.exactmetrics-report-year-in-review .exactmetrics-pie-chart-tooltip{left:22px;top:23px}.exactmetrics-report-year-in-review .exactmetrics-reports-doughnut-tooltip{width:120px;height:120px}.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:100%;margin-top:20px}}.exactmetrics-report-year-in-review a,.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5,.exactmetrics-report-year-in-review p,.exactmetrics-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5{font-weight:900}.exactmetrics-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.exactmetrics-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right{text-align:right}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right h2{color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:90px 0 90px 90px;background-image:url(../img/em-logo-lg.png);background-repeat:no-repeat;background-position:center right 26px;background-size:230px 200px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding-left:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding:90px 0 100px 60px;background-image:url(../img/em-logo-lg.png);background-position:right top 83px;background-size:160px 150px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding-left:15px;padding-right:15px;padding-top:50px;background-size:140px 180px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:26px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-size:12px;max-width:230px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-right:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 25px 14px 90px;position:relative;display:inline-block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle svg{position:absolute;left:5px;bottom:-5px}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:32px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header div{width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 50px 15px 30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder{position:relative}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder .exactmetrics-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box.exactmetrics-year-in-review-table-box-blur-report .exactmetrics-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title{display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle{display:inline-block;float:right}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:right;color:#393f4c;margin:0;text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list{padding-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item{padding:9px 30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:active,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:focus,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;left:0;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{bottom:-40px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip span{font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip .exactmetrics-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-right:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:inline-block;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:block;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder .exactmetrics-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:50px;padding-top:35px;float:left}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-left:0;padding-top:20px;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{position:relative;left:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{margin:10px 0 0}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{display:inline-block;margin-right:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{margin-right:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-right:5px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-right:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip a,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip h3,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{float:left;width:144px;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{width:90px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{float:left;width:calc(100% - 144px);padding-right:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{padding-right:0;width:calc(100% - 90px)}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-size:12px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper{margin-top:15px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:left}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay{position:absolute;top:0;left:0;width:calc(100% - 25px);height:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-right:25px;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-details{font-size:14px;line-height:20px;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success{background:#1ec185}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:hover{opacity:.8;background:#10ad73}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{width:100%;margin-bottom:70px;padding-left:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{margin-bottom:20px;padding-left:0;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions img,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors img{margin-bottom:15px;max-height:28px}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-size:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{display:block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{margin:0 auto}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag.exactmetrics-flag-zz{display:none}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{margin-top:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:10px;line-height:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:block;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{width:32px;height:32px;margin-left:-3px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-right:10px;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info{margin-top:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-grow-traffic-tip{margin-top:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:55px;margin-bottom:100px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from{margin-top:20px;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:32px;line-height:44px;color:#393f4c;margin-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:50%;position:relative}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords,.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-keywords{padding-right:0;margin-bottom:60px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:25px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-visitors-come-from .exactmetrics-yir-keywords-referrals .exactmetrics-yir-referrals{padding-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:85px;padding-bottom:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce{padding-top:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:55%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number{width:30%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-products-sold,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-revenue{padding:75px 0}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-title{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:54px;line-height:65px;color:#338eef;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-number .exactmetrics-yir-amount{font-size:24px;line-height:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:45%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products{width:70%}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular{-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:3.59813px;padding:30px;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning img,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular img{margin-bottom:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning span,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular span{font-size:14px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-weight:700;font-size:28px;line-height:32px;color:#338eef;margin-top:10px;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-product-title,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-product-title{font-size:16px;line-height:16px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-weight:400;font-size:16px;line-height:19px;color:#828282}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-highest-earning .exactmetrics-yir-count,.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-data .exactmetrics-yir-products .exactmetrics-yir-most-popular .exactmetrics-yir-count{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-ecommerce .exactmetrics-yir-revenue-by-month{margin-bottom:50px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:90px;background-color:#fff;background-image:url(../img/confetti-background.png);background-position:0 0;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you{padding-top:0;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:54px;line-height:65px;text-align:center;color:#393f4c;max-width:588px;margin:0 auto 10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-title{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:28px;text-align:center;color:#393f4c;max-width:585px;margin:0 auto 15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-summary{font-size:14px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-weight:700;font-size:32px;line-height:37px;text-align:center;color:#393f4c;font-style:italic;margin-bottom:35px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-amazing-year{font-size:24px;line-height:24px;margin-bottom:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{text-align:center;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{display:inline-block;padding:0 45px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author{padding:0 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail{width:96px;height:96px;background-repeat:no-repeat;margin:0 auto 10px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.chris{background-image:url(../img/chris.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-thumbnail.syed{background-image:url(../img/syed.png)}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-weight:900;font-size:18px;line-height:22px;text-align:center;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-authors .exactmetrics-yir-author .exactmetrics-yir-name{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{background:#338eef;-webkit-box-shadow:0 8px 8px rgba(30,88,150,.2);box-shadow:0 8px 8px rgba(30,88,150,.2);border-radius:5px;padding:24px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{width:100%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content{text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-weight:900;font-size:14px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content span{font-size:12px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-weight:900;font-size:20px;line-height:31px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-content h3{font-size:18px;line-height:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star{margin:0;padding:12px 0 0;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{list-style:none;display:inline-block;margin-right:7px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-rating .exactmetrics-yir-five-star li{margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button{text-align:center;padding-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a{background:#2469b3;border-radius:5px;text-align:center;height:38px;display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:active,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-thank-you .exactmetrics-yir-write-review .exactmetrics-yir-review-button a:hover{background:#123c68}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:36px;line-height:44px;color:#393f4c;margin-bottom:20px;max-width:638px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-title{font-size:20px;line-height:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-weight:500;font-size:20px;line-height:24px;color:#393f4c;max-width:450px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-summary{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-top:20px;margin-left:-30px;margin-right:-30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-left:0;margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:calc(50% - 60px);float:left;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:100%;margin:30px 0;min-height:300px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top{padding-top:30px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image{width:104px;float:left;padding-left:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-image .exactmetrics-addon-thumb{width:32px;height:32px;border:2px solid #e3f1ff;border-radius:5px;padding:10px;-webkit-box-sizing:content-box;box-sizing:content-box}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text{width:calc(100% - 104px);float:left;padding-right:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-title{font-size:18px;line-height:24px;margin-top:0;font-family:Lato;margin-bottom:5px;color:#393f4c;font-weight:900}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-top .exactmetrics-addon-text .exactmetrics-addon-excerpt{font-weight:400;font-size:14px;line-height:18px;color:#393f4c;font-family:Lato;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message{border-top:2px solid #e3f1ff;clear:both;padding:13px 25px;position:absolute;bottom:0;left:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status{float:right;line-height:32px;font-weight:900;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-addon-status span{color:#d4393d}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button{line-height:32px;background:#338eef;border-radius:3px;display:inline-block;padding:0 30px;border:0;font-weight:700;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message .exactmetrics-button:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-addon-status span{color:#64bfa5}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon .exactmetrics-addon-message.exactmetrics-addon-active .exactmetrics-button:hover{background:rgba(51,142,239,.5)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{background-color:#338eef;padding-top:160px;margin-top:-90px;color:#fff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities{padding-top:100px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:36px;line-height:43px;color:#fff;margin-bottom:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h2{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-weight:500;font-size:20px;line-height:24px;color:#fff;max-width:575px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities h3{font-size:18px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:-webkit-box;display:-ms-flexbox;display:flex;margin-left:-30px;padding-top:60px;padding-bottom:90px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities{display:block;margin-left:0;padding-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{width:100%;background-color:#2469b2;border-radius:5px;margin-left:30px;padding:24px;position:relative;min-height:340px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{margin-left:0;margin-bottom:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community{min-height:350px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-title{font-weight:900;font-size:20px;line-height:24px;margin-bottom:10px;margin-top:5px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{position:absolute;bottom:15px;left:24px;width:80%;width:calc(100% - 48px)}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{background-color:#123c68;display:block}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link{padding:8px 10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-link:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links{margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li{float:left;margin-right:8px;margin-bottom:0}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a{background-color:#123c68;display:block;margin:0;width:40px;height:40px;padding:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-join-communities .exactmetrics-yir-communities .exactmetrics-yir-community .exactmetrics-yir-social-links li a:hover{background-color:#0d2e51;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-footer{height:84px;background:#2368b1;-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer{display:block;text-align:center;padding:15px 0;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-footer div{width:100%;font-weight:500;font-size:16px;color:#fff;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-blur{width:100%;padding-top:70%;background-image:url(../img/site-speed-blur.png);background-repeat:no-repeat;background-size:contain;background-position:50%}.exactmetrics-report-site-speed .exactmetrics-upsell-top{max-width:80%;margin:0 auto}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-report-top{display:-webkit-box;display:-ms-flexbox;display:flex}}.exactmetrics-report-site-speed .exactmetrics-report-top h2.exactmetrics-report-top-title{margin-top:10px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report{margin-right:16px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-export-pdf-report button{background-color:#f5f5f5;color:#4c6577;border-color:#dcdcdc}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit{background-color:#3990ec;height:39px}.exactmetrics-report-site-speed .exactmetrics-report-top .exactmetrics-run-audit-btn .exactmetrics-run-audit:hover{background-color:rgba(57,144,236,.8)}.exactmetrics-report-site-speed .exactmetrics-choose-device-button{margin-left:15px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button{display:inline-block;text-align:center;background-color:#f5f5f5;color:#444;border-color:#dcdcdc;border-radius:5px;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover{background-color:#3990ec;border-color:#1c77db;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button:hover .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active{background-color:#3990ec;border-color:#1c77db;color:#fff;outline:none}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.active .svg-icons{fill:#fff}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:45px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop{border-top-left-radius:0;border-bottom-left-radius:0;border-left:0;width:54px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop svg{margin-left:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-site-speed-container{max-width:1010px}.exactmetrics-report-site-speed .exactmetrics-site-speed-device,.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:338px;margin-right:10px;max-height:304px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator{width:100%;margin-bottom:25px}}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon{margin-bottom:40px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-device-icon .desktop{width:80px}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-percent-text{font-size:5em;color:#f2994a;text-align:center;font-weight:700}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-indicator-overall-text{display:inline-block;padding-top:2rem;font-weight:600;font-size:16px;text-align:center}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle{max-width:300px;max-height:255px;width:100%;-webkit-transform:scaleX(-1) rotate(-55deg);-ms-transform:scaleX(-1) rotate(-55deg);transform:scaleX(-1) rotate(-55deg);overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__percent{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__container{display:inline-block;position:relative}.exactmetrics-report-site-speed .exactmetrics-site-speed-indicator .exactmetrics-progress-circle__path{-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;overflow:visible}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:662px}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}@media screen and (min-width:768px) and (max-width:1024px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats{width:100%}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex{text-align:center}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-report-flex.exactmetrics-report-2-columns{-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:49%;background-color:#fff;border:1px solid #e0e0e0;min-height:135px;margin-bottom:15px;padding-top:1.2rem}@media screen and (max-width:767px){.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat{width:100%;margin-top:15px;margin-right:0}}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat h2{font-size:40px;margin:0;padding:20px 0 10px}.exactmetrics-report-site-speed .exactmetrics-site-speed-stats .exactmetrics-site-speed-stat p{color:#828282}.exactmetrics-report-site-speed .exactmetrics-how-to-improve h2.title{font-size:22px;color:#393f4c}div.exactmetrics-pdf-score{position:relative;margin:80px;left:-1px;top:1px}.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}@media (max-width:782px){.exactmetrics-reports-page .exactmetrics-report-top{margin-bottom:25px}}.exactmetrics_page.exactmetrics-downloading-pdf-report #wpbody{-webkit-filter:blur(15px);filter:blur(15px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-details,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-pdf-score{display:block!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-title,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion .exactmetrics-accordion div:not(:last-child){border:none!important}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-accordion-item-trigger-icon,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-notificationsv3-container,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-progress-circle{display:none}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-header{min-height:85px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report{width:1120px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation{border-bottom:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button,.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{border:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button:first-child{border-right:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{border-top:0;margin-bottom:25px}@media (max-width:782px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title{padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-title:before{position:inherit;left:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:left}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row{padding:24px 60px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-left:1px solid #bcb7cd;border-top:0;padding:0 10px 0 80px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-left:none;padding-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-ecommerce-pie-chart{width:40%;padding-top:130px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-pie-chart{margin:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart .exactmetrics-reports-pie-chart-holder{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;-webkit-box-align:inherit;-ms-flex-align:inherit;align-items:inherit;margin-left:20px;-webkit-box-orient:inherit;-webkit-box-direction:inherit;-ms-flex-flow:wrap;flex-flow:wrap}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-box{width:calc(50% - 12.5px);margin-top:0}}@media (max-width:991px){.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex{-ms-flex-flow:inherit;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-flow:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart{width:50%;border:none;padding-left:32px;padding-right:20px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart:first-child{border-right:1px solid #e9e7ee}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box{margin-left:20px;margin-top:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box:first-child{margin-left:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-report-2-columns .exactmetrics-table-box{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex.exactmetrics-interests-scroll-report .exactmetrics-table-box{width:100%}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart{width:calc(50% - 12.5px)}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-reports-pie-chart:first-child{margin:0 25px 0 0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px;margin-top:0}}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-top:14px;margin-bottom:24px}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top{margin-bottom:25px}}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:1130px){body.exactmetrics-reporting-page .exactmetrics-report-top h2{display:block;margin:0 0 25px}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:right;margin-right:25px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-right:0;margin-bottom:0;text-align:center;padding-top:20px}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-bottom:0}}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report .exactmetrics-button[disabled=disabled]{cursor:not-allowed}body.exactmetrics-reporting-page .exactmetrics-report-realtime .exactmetrics-export-pdf-report{margin-right:0}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:1130px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:right}}body.exactmetrics-reporting-page .exactmetrics-datepicker,body.exactmetrics-reporting-page .exactmetrics-hide{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-wrapper .flatpickr-calendar{width:100%}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 10px 0 60px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.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-report-box-icon-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px}.exactmetrics-report-box-icon-heading h3{color:#6528f5;margin-left:15px}.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-top{pointer-events:none}.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 h4{font-size:16px;line-height:140%;color:#444}.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:16px auto 24px;max-width:520px;display:grid;grid-gap:10px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-1{grid-template-columns:1fr}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul.columns-2{grid-template-columns:1fr 1fr}.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:#6528f5;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:#fff;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}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button{background:#e9e7ee;color:#210f59}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-button:hover{background:#bcb7cd}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-accordion-item-details,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-pdf-score{display:block!important}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-progress-circle{display:none}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown{min-width:250px}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button{background:rgba(0,0,0,0);color:#32a27a}body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:focus,body.exactmetrics-reporting-page .exactmetrics-export-pdf-report-lite .exactmetrics-reports-intervals-dropdown .exactmetrics-button:hover{color:#19865f}body.exactmetrics-reporting-page .exactmetrics-notice-error.exactmetrics-license_expired{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-swal-icons{display:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-popup{width:600px;padding:2em 3.25em}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-actions{display:none!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer{display:block!important;text-align:center;padding-top:20px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a{display:inline-block}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a.swal2-styled{padding-top:16px;padding-bottom:20px;margin-bottom:15px;text-decoration:none}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .swal2-footer a:nth-child(3){color:#393f4c!important}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert{text-align:left;padding-right:39px}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h3{font-size:40px;margin:0 0 8px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert h4{font-size:20px;margin:0 0 10px;padding:0}body.exactmetrics-reporting-page .exactmetrics-expired-license-alert-toast .exactmetrics-expired-license-alert p{font-size:16px;margin:0 0 10px;padding:0}
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 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:-65px;width:648px;left:-13%}.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/one-click-integrations.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-right:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);right:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-right:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-right:-32px;margin-left:-32px;padding-right:32px;padding-left:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-right:32px;padding-left:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;left:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:0 100%;background-image:url(../img/forms-wpforms-upsell.png)}.exactmetrics-report-year-in-review{margin-right:auto;margin-left:auto;max-width:960px;background-color:#fff;background-image:url(../img/confetti-background.png);background-repeat:no-repeat;background-position:100% 0;margin-bottom:90px}.exactmetrics-report-year-in-review .exactmetrics-pie-chart-tooltip{right:22px;top:23px}.exactmetrics-report-year-in-review .exactmetrics-reports-doughnut-tooltip{width:120px;height:120px}.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:610px;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review.exactmetrics-yir-report-calculating-row{width:100%;margin-top:20px}}.exactmetrics-report-year-in-review a,.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5,.exactmetrics-report-year-in-review p,.exactmetrics-report-year-in-review span{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review h1,.exactmetrics-report-year-in-review h2,.exactmetrics-report-year-in-review h3,.exactmetrics-report-year-in-review h4,.exactmetrics-report-year-in-review h5{font-weight:900}.exactmetrics-report-year-in-review p{font-style:normal;font-weight:400;font-size:14px;line-height:24px}.exactmetrics-report-year-in-review a{text-decoration:none;padding:8px 30px;border-radius:5px;color:#fff;font-weight:700;font-size:14px;line-height:24px;text-align:center}.exactmetrics-report-year-in-review .exactmetrics-yir-separator{border-left-color:#e0e0e0;border-right-color:#e0e0e0;border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0}.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 90px;clear:both;overflow:hidden}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 15px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-footer,.exactmetrics-report-year-in-review .exactmetrics-yir-header,.exactmetrics-report-year-in-review section{padding:0 30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right{text-align:left}.exactmetrics-report-year-in-review .exactmetrics-yir-text-right h2{color:#fff}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:90px 90px 90px 0;background-image:url(../img/em-logo-lg.png);background-repeat:no-repeat;background-position:center left 26px;background-size:230px 200px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding:50px 15px 40px;background-image:none}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header{padding-right:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding:90px 60px 100px 0;background-image:url(../img/em-logo-lg.png);background-position:left top 83px;background-size:160px 150px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating{padding-right:15px;padding-left:15px;padding-top:50px;background-size:140px 180px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:32px;line-height:37px;color:#393f4c;margin-top:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-title{font-size:26px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-weight:400;font-size:14px;line-height:20px;color:#393f4c;max-width:385px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-yir-summary{font-size:12px;max-width:230px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{background:#4e9ee7;border-radius:5px;font-weight:700;font-size:14px;line-height:16px;text-align:center;color:#fff;border:0;margin-left:0;padding:12px 20px;margin-top:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link{width:inherit}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-top-header.exactmetrics-yir-report-calculating .exactmetrics-navigation-tab-link:hover{background:#2469b2;outline:none;-webkit-box-shadow:none;box-shadow:none}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:20px;font-weight:900;background:#338eef;border-radius:30px;color:#fff;padding:14px 90px 14px 25px;position:relative;display:inline-block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-subtitle svg{position:absolute;right:5px;bottom:-5px}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-style:normal;font-weight:900;font-size:48px;line-height:58px;color:#393f4c;margin-bottom:15px;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:20px;line-height:20px;margin-bottom:10px;margin-top:30px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-title{font-size:32px}}.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-weight:500;font-size:24px;line-height:32px;color:#828282;max-width:480px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:18px}}@media (min-width:768px) and (max-width:991px){.exactmetrics-report-year-in-review .exactmetrics-yir-top-header .exactmetrics-yir-summary{font-size:16px;line-height:20px;max-width:400px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart{background:#fff;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);border-radius:4.85258px}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{display:-webkit-box;display:-ms-flexbox;display:flex;padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:55px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header{margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-header div{width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:left;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-report-subtitle{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 30px 15px 50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content{padding:0 15px 15px}}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder{position:relative}.exactmetrics-report-year-in-review .exactmetrics-reports-visitorbymonth-chart .exactmetrics-reports-visitorbymonth-chart-content .exactmetrics-reports-bar-chart-holder .exactmetrics-chart-tooltip{position:absolute;pointer-events:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box{padding-top:0;position:relative;border:0;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1);box-shadow:0 0 10px rgba(0,0,0,.1);background:hsla(0,0%,100%,.38)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box.exactmetrics-year-in-review-table-box-blur-report .exactmetrics-year-in-review-table-box-list{-webkit-filter:blur(5px);filter:blur(5px)}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header{padding:20px 30px;border-bottom:2px solid #f2f2f2;margin-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title{display:inline-block}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-title .exactmetrics-report-title{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle{display:inline-block;float:left}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-header .exactmetrics-year-in-review-table-box-subtitle .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:14px;line-height:24px;text-align:left;color:#393f4c;margin:0;text-transform:capitalize}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list{padding-bottom:30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item{padding:9px 30px}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a{padding:0;border-radius:0;line-height:37px;line-height:inherit}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:active,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:focus,.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-list .exactmetrics-table-list-item .exactmetrics-reports-list-text a:hover{-webkit-box-shadow:none;box-shadow:none;background:none}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{position:absolute;bottom:-34px;width:100%;right:0;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer{bottom:-40px}}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip{font-weight:400;font-size:12px;color:#828282}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip span{font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-year-in-review-table-box .exactmetrics-year-in-review-table-box-footer .exactmetrics-yir-tooltip .exactmetrics-yir-icon{background:#dadada;border-radius:50%;padding:0;margin-left:10px;color:#fff;width:15px;height:15px;display:inline-block;line-height:16px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart{border:0;margin:0;padding:0;width:100%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:inline-block;float:right}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder{display:block;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-reports-pie-chart-holder .exactmetrics-pie-chart{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFxSURBVHgB7dlPTsJAFAbwb6BxQVzgTThCXaCC3kEPoFBP0PYGVQ9gvUNFY2PSI3AUFhISgx1njAsjIfa1jA+S90u6aDOTzpf5s5gHCF4KNVyePPntthea7j1Ad9FcUWr9cDc5SkFEDjAavoZKlREc0BrR7aQfU/qQAgTDlwut1D0cUmp5mGSDomr7FgjM4M/hmNZ2aVZHCmD4cK9HaUwN8B9Ih4KHBm4e+7VOsd/Gp7lGTds4AyQSgJsE4CYBuEkAbhKAmwTgJgG4SQBuEoCbBOAmAbhJAG4SgFuju9Emd5qbIktoHaUQq/nbwdcDXMORRktoHTvgJOsnPz4lo2HeNaFI1Zcq3MzA3EtXfrTnJXCAGmCGLUMNMK3SqOy8Byvflh9VC4QFCEh7wG5MU8v1/27XCq8Gz7P2YpHa97KzP1ZaR6jAFrxBQK5xBWd5ZEJsfDNapoAeJ9lxROqDGr4L3nZJ+GjO7qupnV1zchUQO+YTOT9YisPBuEEAAAAASUVORK5CYII=);background-color:#fff;background-repeat:no-repeat;background-position:50%}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-right:50px;padding-top:35px;float:right}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content{padding-right:0;padding-top:20px;float:none}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-family:Lato;font-style:normal;font-weight:900;font-size:20px;line-height:24px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-title{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-family:Lato;font-style:normal;font-weight:400;font-size:18px;line-height:24px;color:#393f4c;margin-top:10px;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-report-subtitle{font-size:14px;line-height:14px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{position:relative;right:inherit;top:inherit;-webkit-transform:inherit;-ms-transform:inherit;transform:inherit;margin:24px 0 0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend{margin:10px 0 0}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{display:inline-block;margin-left:30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li{margin-left:10px}}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-color{border-radius:0;width:16px;height:16px;margin-bottom:-3px;margin-left:5px}.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-family:Lato;font-style:normal;font-weight:700;font-size:14px;line-height:24px;color:#393f4c;min-width:inherit;margin-left:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-text,.exactmetrics-report-year-in-review .exactmetrics-reports-year-in-review-pie-chart .exactmetrics-yir-reports-pie-chart-content .exactmetrics-pie-chart-legend li .exactmetrics-pie-chart-legend-value{font-size:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{border:2px solid #e3f1ff;border-radius:5px;padding-top:45px;padding-bottom:45px;overflow:hidden;background:#f3f9ff}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip{padding-top:15px;padding-bottom:15px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip a,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip h3,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip p{font-family:Lato,sans-serif;margin:0}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{float:right;width:144px;text-align:center}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon{width:90px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-icon img{background:#338eef;padding:12px;border-radius:50%;margin-top:12px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{float:right;width:calc(100% - 144px);padding-left:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content{padding-left:0;width:calc(100% - 90px)}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-weight:900;font-size:18px;line-height:27px;color:#333;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-title{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-weight:400;font-size:18px;line-height:27px;color:#393f4c;margin-bottom:0}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-summary{font-size:12px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper{margin-top:15px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-weight:900;font-size:18px;line-height:27px;-webkit-text-decoration-line:underline;text-decoration-line:underline;color:#338eef;margin-top:15px;padding:0;border-radius:0;text-align:right}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link:hover{color:#2469b2;-webkit-box-shadow:none;box-shadow:none}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-tip .exactmetrics-yir-tip-content .exactmetrics-yir-tip-content-link-wrapper .exactmetrics-yir-tip-content-link{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay{position:absolute;top:0;right:0;width:calc(100% - 25px);height:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content{margin-top:66px;text-align:center;height:calc(100% - 66px);padding-top:80px;padding-left:25px;padding-right:25px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-details{font-size:14px;line-height:20px;font-family:Lato}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay{display:inline-block;border-radius:5px;font-size:14px;line-height:20px;color:#fff;padding:10px 30px;text-decoration:none;font-family:Lato;background:#338eef;margin-top:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success{background:#1ec185}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay.exactmetrics-yir-success:hover{opacity:.8;background:#10ad73}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:active,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:focus,.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-upsell-overlay .exactmetrics-yir-upsell-content .exactmetrics-yir-btn-upsell-overlay:hover{border:0;background:#2469b2;outline:none}.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience{padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:685px;margin-bottom:80px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions{display:-webkit-box;display:-ms-flexbox;display:flex}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{width:100%;margin-bottom:70px;padding-right:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors{margin-bottom:20px;padding-right:0;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions img,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors img{margin-bottom:15px;max-height:28px}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions h4,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors h4{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-weight:900;font-size:60px;line-height:72px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-sessions .exactmetrics-yir-number,.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-total-visitors-sessions .exactmetrics-yir-visitors .exactmetrics-yir-number{font-size:40px}}.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:60px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-audience .exactmetrics-yir-visitor-by-chart{margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:85px;padding-bottom:85px;background-image:url(../img/map-background.png);background-repeat:no-repeat;background-position:top}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:656px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-summary{font-size:18px;line-height:20px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries{display:block}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-number-one{font-size:24px;line-height:29px;color:#fff;background:#338eef;width:50px;height:50px;border-radius:50%;display:inline-block;text-align:center;line-height:50px;margin-bottom:10px}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{display:block}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag{margin:0 auto}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-flag.exactmetrics-flag-zz{display:none}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:32px;line-height:38px;color:#393f4c;margin-top:0;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-name{font-size:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-weight:400;font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-country .exactmetrics-yir-top-country-visitors{font-size:16px;line-height:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-countries .exactmetrics-yir-top-countries-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:24px;line-height:37px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-know-visitors{font-size:16px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info{margin-top:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info{width:100%}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info span,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info span{font-size:14px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:48px;line-height:58px;color:#338eef;margin-bottom:10px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info h2,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info h2{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:16px;line-height:19px;color:#393f4c}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-age-info p,.exactmetrics-report-year-in-review .exactmetrics-yir-demographics .exactmetrics-yir-visitors-info .exactmetrics-yir-gender-info p{font-size:10px;line-height:10px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:85px;padding-bottom:85px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior{padding-top:30px;padding-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:36px;line-height:105.2%;color:#393f4c;margin-bottom:20px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-title{font-size:24px;margin-bottom:20px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:585px;margin-bottom:50px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-summary{font-size:18px;line-height:28px;margin-bottom:24px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:70px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data{display:block;margin-bottom:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:50%;margin-top:40px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary{width:100%;margin-top:20px;margin-bottom:20px;text-align:center}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{width:32px;height:32px;margin-right:-3px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary img{margin-right:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-time-spent{font-weight:900;font-size:20px;line-height:24px;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{font-size:32px;line-height:38px;color:#393f4c;margin-top:15px;margin-bottom:5px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent{margin-top:5px;margin-bottom:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-weight:900;font-size:48px;line-height:58px;color:#338eef;margin-left:10px;overflow-wrap:break-word}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-number{font-size:30px;line-height:30px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-total-time-spent .exactmetrics-yir-type{font-weight:900;font-size:16px;line-height:103.8%;color:#393f4c}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-weight:400;font-size:18px;line-height:24px;color:#393f4c;max-width:330px;margin-top:15px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-pages-summary .exactmetrics-yir-each-visitor-spent{font-size:14px;max-width:100%;margin-top:5px}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:50%}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-pages-data .exactmetrics-yir-top-pages-graph{width:100%}}.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-device{font-weight:400;font-size:32px;line-height:44px;color:#393f4c;max-width:586px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-behavior .exactmetrics-yir-most-visitors-de
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)