Google Analytics Dashboard for WP (GADWP) - Version 7.3.3

Version Description

Download this release

Release Info

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

Code changes from version 7.3.2 to 7.3.3

gadwp.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin URI: https://exactmetrics.com
5
  * Description: Displays Google Analytics Reports and Real-Time Statistics in your Dashboard. Automatically inserts the tracking code in every page of your website.
6
  * Author: ExactMetrics
7
- * Version: 7.3.2
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.5
10
  * Author URI: https://exactmetrics.com
@@ -44,7 +44,7 @@ final class ExactMetrics_Lite {
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
- public $version = '7.3.2';
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.3.3
8
  * Requires at least: 4.8.0
9
  * Requires PHP: 5.5
10
  * Author URI: https://exactmetrics.com
44
  * @access public
45
  * @var string $version Plugin version.
46
  */
47
+ public $version = '7.3.3';
48
 
49
  /**
50
  * Plugin file.
includes/admin/notification-event-runner.php CHANGED
@@ -117,6 +117,8 @@ class ExactMetrics_Notification_Event_Runner {
117
  $notifications = $this->get_registered_notifications();
118
  $last_runs = $this->get_notifications_last_run();
119
 
 
 
120
  // Loop through registered notifications.
121
  foreach ( $notifications as $notification ) {
122
  /**¬
@@ -134,14 +136,19 @@ class ExactMetrics_Notification_Event_Runner {
134
  if ( $time_since < $time_now ) {
135
  // Interval passed since it ran so let's add this one.
136
 
 
137
  $added_notification = $notification->add_notification();
138
 
139
- if ($added_notification) {
140
- // Update the last run date as right now.
141
- $this->update_last_run($notification->notification_id);
142
- // Let's not add multiple notifications at the same time.
143
- break;
144
- }
 
 
 
 
145
  }
146
  }
147
  }
117
  $notifications = $this->get_registered_notifications();
118
  $last_runs = $this->get_notifications_last_run();
119
 
120
+ $current_runs = 0;
121
+
122
  // Loop through registered notifications.
123
  foreach ( $notifications as $notification ) {
124
  /**¬
136
  if ( $time_since < $time_now ) {
137
  // Interval passed since it ran so let's add this one.
138
 
139
+ $current_runs ++;
140
  $added_notification = $notification->add_notification();
141
 
142
+ // Update the last run date as right now.
143
+ $this->update_last_run($notification->notification_id);
144
+
145
+ // Avoid adding multiple notifications at the same time, and
146
+ // also avoid running more than 5 notifications that returned
147
+ // no data, otherwise this request would take too long
148
+ if ( $added_notification || $current_runs > 5 ) {
149
+ // Let's not add multiple notifications at the same time.
150
+ break;
151
+ }
152
  }
153
  }
154
  }
includes/admin/notification-event.php CHANGED
@@ -195,21 +195,28 @@ class ExactMetrics_Notification_Event {
195
  * @since 7.12.3
196
  */
197
  public function add_notification() {
198
- $notification = array();
199
- $notification['id'] = $this->notification_id . '_' . date( 'Ymd' ); // Make sure we never add the same notification on the same day.
200
- $notification['icon'] = $this->notification_icon;
201
- $notification['title'] = '';
202
- $notification['content'] = '';
203
- $notification['type'] = $this->notification_type;
204
- $notification['btns'] = array();
205
- $notification['start'] = $this->notification_active_from;
206
- $notification['end'] = $this->notification_active_for;
207
- $notification['category'] = $this->notification_category;
208
- $notification['priority'] = $this->notification_priority;
209
- $notification_data = $this->prepare_notification_data( $notification );
 
 
 
 
 
 
 
210
 
211
  if ( is_array( $notification_data ) && ! empty( $notification_data ) ) {
212
- return ExactMetrics()->notifications->add( $notification_data );
213
  }
214
 
215
  return false;
195
  * @since 7.12.3
196
  */
197
  public function add_notification() {
198
+ $notifications = ExactMetrics()->notifications;
199
+
200
+ $notification = array();
201
+ $notification['id'] = $this->notification_id . '_' . date( 'Ymd' ); // Make sure we never add the same notification on the same day.
202
+ $notification['icon'] = $this->notification_icon;
203
+ $notification['title'] = '';
204
+ $notification['content'] = '';
205
+ $notification['type'] = $this->notification_type;
206
+ $notification['btns'] = array();
207
+ $notification['start'] = $this->notification_active_from;
208
+ $notification['end'] = $this->notification_active_for;
209
+ $notification['category'] = $this->notification_category;
210
+ $notification['priority'] = $this->notification_priority;
211
+
212
+ if ( $notifications->is_dismissed( $notification ) ) {
213
+ return false;
214
+ }
215
+
216
+ $notification_data = $this->prepare_notification_data( $notification );
217
 
218
  if ( is_array( $notification_data ) && ! empty( $notification_data ) ) {
219
+ return $notifications->add( $notification_data );
220
  }
221
 
222
  return false;
includes/admin/notifications.php CHANGED
@@ -332,7 +332,17 @@ class ExactMetrics_Notifications {
332
  public function get_active_notifications() {
333
  $notifications = $this->get();
334
 
335
- return isset( $notifications['active'] ) ? $notifications['active'] : array();
 
 
 
 
 
 
 
 
 
 
336
  }
337
 
338
  /**
@@ -360,6 +370,29 @@ class ExactMetrics_Notifications {
360
  return count( $this->get_active_notifications() );
361
  }
362
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
363
  /**
364
  * Add a manual notification event.
365
  *
@@ -370,18 +403,12 @@ class ExactMetrics_Notifications {
370
  */
371
  public function add( $notification ) {
372
 
373
- if ( empty( $notification['id'] ) ) {
374
  return false;
375
  }
376
 
377
  $option = $this->get_option();
378
 
379
- foreach ( $option['dismissed'] as $item ) {
380
- if ( $item['id'] === $notification['id'] ) {
381
- return false;
382
- }
383
- }
384
-
385
  $current_notifications = $option['events'];
386
 
387
  foreach ( $current_notifications as $item ) {
@@ -390,11 +417,6 @@ class ExactMetrics_Notifications {
390
  }
391
  }
392
 
393
- // Show maximum 5 notifications to user, except if new one has priority 1
394
- if (sizeof( $current_notifications ) >= 5 && $notification['priority'] != 1) {
395
- return false;
396
- }
397
-
398
  $notification = $this->verify( array( $notification ) );
399
 
400
  $notifications = array_merge( $notification, $current_notifications );
332
  public function get_active_notifications() {
333
  $notifications = $this->get();
334
 
335
+ // Show only 5 active notifications plus any that has a priority of 1
336
+ $all_active = isset( $notifications['active'] ) ? $notifications['active'] : array();
337
+ $displayed = array();
338
+
339
+ foreach ( $all_active as $notification ) {
340
+ if ( $notification['priority'] === 1 || count( $displayed ) < 5 ) {
341
+ $displayed[] = $notification;
342
+ }
343
+ }
344
+
345
+ return $displayed;
346
  }
347
 
348
  /**
370
  return count( $this->get_active_notifications() );
371
  }
372
 
373
+ /**
374
+ * Check if a notification has been dismissed before
375
+ *
376
+ * @param $notification
377
+ *
378
+ * @return bool
379
+ */
380
+ public function is_dismissed( $notification ) {
381
+ if ( empty( $notification['id'] ) ) {
382
+ return true;
383
+ }
384
+
385
+ $option = $this->get_option();
386
+
387
+ foreach ( $option['dismissed'] as $item ) {
388
+ if ( $item['id'] === $notification['id'] ) {
389
+ return true;
390
+ }
391
+ }
392
+
393
+ return false;
394
+ }
395
+
396
  /**
397
  * Add a manual notification event.
398
  *
403
  */
404
  public function add( $notification ) {
405
 
406
+ if ( empty( $notification['id'] ) || $this->is_dismissed( $notification ) ) {
407
  return false;
408
  }
409
 
410
  $option = $this->get_option();
411
 
 
 
 
 
 
 
412
  $current_notifications = $option['events'];
413
 
414
  foreach ( $current_notifications as $item ) {
417
  }
418
  }
419
 
 
 
 
 
 
420
  $notification = $this->verify( array( $notification ) );
421
 
422
  $notifications = array_merge( $notification, $current_notifications );
languages/google-analytics-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.3.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-01-25T21:26:14+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
- #: languages/vue.php:3485
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
@@ -112,7 +112,7 @@ msgstr ""
112
  #: includes/admin/admin.php:34
113
  #: includes/admin/admin.php:42
114
  #: includes/admin/admin.php:222
115
- #: languages/vue.php:541
116
  msgid "Settings"
117
  msgstr ""
118
 
@@ -128,7 +128,7 @@ msgstr ""
128
 
129
  #: includes/admin/admin.php:39
130
  #: includes/admin/admin.php:130
131
- #: languages/vue.php:2307
132
  msgid "Reports"
133
  msgstr ""
134
 
@@ -138,7 +138,7 @@ msgstr ""
138
 
139
  #: includes/admin/admin.php:51
140
  #: languages/gutenberg.php:83
141
- #: languages/vue.php:1001
142
  msgid "Popular Posts"
143
  msgstr ""
144
 
@@ -172,7 +172,7 @@ msgstr ""
172
 
173
  #: includes/admin/admin.php:71
174
  #: includes/admin/admin.php:146
175
- #: languages/vue.php:158
176
  msgid "About Us"
177
  msgstr ""
178
 
@@ -191,7 +191,7 @@ msgstr ""
191
  #: includes/admin/admin.php:76
192
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
193
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
194
- #: languages/vue.php:1052
195
  msgid "Upgrade to Pro"
196
  msgstr ""
197
 
@@ -219,7 +219,7 @@ msgstr ""
219
 
220
  #: includes/admin/admin.php:212
221
  #: includes/admin/admin.php:215
222
- #: languages/vue.php:1026
223
  msgid "Support"
224
  msgstr ""
225
 
@@ -231,7 +231,7 @@ msgstr ""
231
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
232
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
233
  #: includes/admin/reports/abstract-report.php:418
234
- #: languages/vue.php:1159
235
  msgid "Get ExactMetrics Pro"
236
  msgstr ""
237
 
@@ -241,12 +241,12 @@ msgid "Please rate %1$sExactMetrics%2$s on %3$s %4$sWordPress.org%5$s to help us
241
  msgstr ""
242
 
243
  #: includes/admin/admin.php:324
244
- #: languages/vue.php:1150
245
  msgid "Please Setup Website Analytics to See Audience Insights"
246
  msgstr ""
247
 
248
  #: includes/admin/admin.php:325
249
- #: languages/vue.php:1156
250
  msgid "Connect ExactMetrics and Setup Website Analytics"
251
  msgstr ""
252
 
@@ -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:331
265
  msgid "Learn More"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:329
269
- #: languages/vue.php:1153
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,17 +277,17 @@ msgstr ""
277
 
278
  #. Translators: Adds a link to the license renewal.
279
  #: includes/admin/admin.php:350
280
- #: languages/vue.php:478
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:352
285
- #: languages/vue.php:481
286
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
287
  msgstr ""
288
 
289
  #: includes/admin/admin.php:354
290
- #: languages/vue.php:484
291
  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."
292
  msgstr ""
293
 
@@ -491,7 +491,7 @@ msgid "View 2021 Year in Review report!"
491
  msgstr ""
492
 
493
  #: includes/admin/common.php:951
494
- #: languages/vue.php:3330
495
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
496
  msgstr ""
497
 
@@ -512,7 +512,7 @@ msgstr ""
512
 
513
  #: includes/admin/exclude-page-metabox.php:102
514
  #: languages/gutenberg.php:324
515
- #: languages/vue.php:3122
516
  msgid "Upgrade"
517
  msgstr ""
518
 
@@ -539,7 +539,7 @@ msgstr ""
539
  msgid "Dismiss this notice"
540
  msgstr ""
541
 
542
- #: includes/admin/notification-event.php:249
543
  #: includes/admin/routes.php:870
544
  #: includes/admin/routes.php:1204
545
  msgid "You don't have permission to view ExactMetrics reports."
@@ -706,7 +706,7 @@ msgstr ""
706
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
707
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
708
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
709
- #: languages/vue.php:1742
710
  #: lite/includes/admin/helpers.php:83
711
  msgid "Upgrade to ExactMetrics Pro"
712
  msgstr ""
@@ -742,7 +742,7 @@ msgstr ""
742
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
743
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
744
  #: includes/admin/reports/abstract-report.php:415
745
- #: languages/vue.php:227
746
  msgid "Upgrade Now"
747
  msgstr ""
748
 
@@ -919,7 +919,7 @@ msgid "Please ask your webmaster to enable this addon."
919
  msgstr ""
920
 
921
  #: includes/admin/reports/overview.php:34
922
- #: languages/vue.php:439
923
  msgid "Overview"
924
  msgstr ""
925
 
@@ -1412,7 +1412,7 @@ msgid "Question"
1412
  msgstr ""
1413
 
1414
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1415
- #: languages/vue.php:547
1416
  msgid "General"
1417
  msgstr ""
1418
 
@@ -4812,7 +4812,7 @@ msgid "Theme"
4812
  msgstr ""
4813
 
4814
  #: languages/gutenberg.php:77
4815
- #: languages/vue.php:532
4816
  msgid "Inline Popular Posts"
4817
  msgstr ""
4818
 
@@ -4849,7 +4849,7 @@ msgid "Comment Color"
4849
  msgstr ""
4850
 
4851
  #: languages/gutenberg.php:107
4852
- #: languages/vue.php:3076
4853
  msgid "Wide-Layout Options"
4854
  msgstr ""
4855
 
@@ -4858,12 +4858,12 @@ msgid "Choose Layout"
4858
  msgstr ""
4859
 
4860
  #: languages/gutenberg.php:113
4861
- #: languages/vue.php:3079
4862
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4863
  msgstr ""
4864
 
4865
  #: languages/gutenberg.php:116
4866
- #: languages/vue.php:3100
4867
  msgid "Post Count"
4868
  msgstr ""
4869
 
@@ -4872,7 +4872,7 @@ msgid "Number of posts displayed."
4872
  msgstr ""
4873
 
4874
  #: languages/gutenberg.php:122
4875
- #: languages/vue.php:3082
4876
  msgid "Display Options"
4877
  msgstr ""
4878
 
@@ -4885,7 +4885,7 @@ msgid "Display Widget Title"
4885
  msgstr ""
4886
 
4887
  #: languages/gutenberg.php:131
4888
- #: languages/vue.php:1958
4889
  msgid "Widget Title"
4890
  msgstr ""
4891
 
@@ -4894,17 +4894,17 @@ msgid "Only Show Posts From These Categories"
4894
  msgstr ""
4895
 
4896
  #: languages/gutenberg.php:137
4897
- #: languages/vue.php:3088
4898
  msgid "Display Author"
4899
  msgstr ""
4900
 
4901
  #: languages/gutenberg.php:140
4902
- #: languages/vue.php:3091
4903
  msgid "Display Date"
4904
  msgstr ""
4905
 
4906
  #: languages/gutenberg.php:143
4907
- #: languages/vue.php:3094
4908
  msgid "Display Comments"
4909
  msgstr ""
4910
 
@@ -5125,7 +5125,7 @@ msgid "Goal: "
5125
  msgstr ""
5126
 
5127
  #: languages/gutenberg.php:312
5128
- #: languages/vue.php:989
5129
  msgid "Headline Analyzer"
5130
  msgstr ""
5131
 
@@ -5149,33 +5149,33 @@ msgstr ""
5149
  msgid "Loading Settings"
5150
  msgstr ""
5151
 
5152
- #: languages/vue.php:14
5153
  msgid "Please wait..."
5154
  msgstr ""
5155
 
5156
- #: languages/vue.php:17
5157
  msgid "Saving Changes..."
5158
  msgstr ""
5159
 
5160
- #: languages/vue.php:20
5161
  msgid "Settings Updated"
5162
  msgstr ""
5163
 
5164
  #. Translators: Add a link to the onboarding wizard.
5165
- #: languages/vue.php:24
5166
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5167
  msgstr ""
5168
 
5169
- #: languages/vue.php:27
5170
  msgid "Could Not Save Changes"
5171
  msgstr ""
5172
 
5173
- #: languages/vue.php:30
5174
  msgid "Loading new report data"
5175
  msgstr ""
5176
 
5177
  #. Translators: Adds an arrow icon.
5178
- #: languages/vue.php:34
5179
  msgid "Continue %s"
5180
  msgstr ""
5181
 
@@ -5199,31 +5199,31 @@ msgstr ""
5199
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5200
  msgstr ""
5201
 
5202
- #: languages/vue.php:55
5203
  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."
5204
  msgstr ""
5205
 
5206
- #: languages/vue.php:58
5207
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5208
  msgstr ""
5209
 
5210
- #: languages/vue.php:61
5211
  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."
5212
  msgstr ""
5213
 
5214
- #: languages/vue.php:64
5215
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5216
  msgstr ""
5217
 
5218
- #: languages/vue.php:67
5219
  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."
5220
  msgstr ""
5221
 
5222
- #: languages/vue.php:70
5223
  msgid "Unlock the Forms Report and Improve Conversions"
5224
  msgstr ""
5225
 
5226
- #: languages/vue.php:73
5227
  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."
5228
  msgstr ""
5229
 
@@ -5243,4367 +5243,4367 @@ msgstr ""
5243
  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."
5244
  msgstr ""
5245
 
5246
- #: languages/vue.php:89
5247
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5248
  msgstr ""
5249
 
5250
- #: languages/vue.php:92
5251
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5252
  msgstr ""
5253
 
5254
- #: languages/vue.php:95
5255
  msgid "Today"
5256
  msgstr ""
5257
 
5258
- #: languages/vue.php:98
5259
  msgid "Yesterday"
5260
  msgstr ""
5261
 
5262
- #: languages/vue.php:101
5263
  msgid "Last Week"
5264
  msgstr ""
5265
 
5266
- #: languages/vue.php:104
5267
  msgid "Last Month"
5268
  msgstr ""
5269
 
5270
- #: languages/vue.php:107
5271
  msgid "Last 7 days"
5272
  msgstr ""
5273
 
5274
- #: languages/vue.php:110
5275
  msgid "Last 30 days"
5276
  msgstr ""
5277
 
5278
- #: languages/vue.php:113
5279
  msgid "Loading settings"
5280
  msgstr ""
5281
 
5282
  #. Translators: Number of visitors.
5283
- #: languages/vue.php:117
5284
  msgid "See how %s visitors found your site!"
5285
  msgstr ""
5286
 
5287
  #. Translators: Number of visitors.
5288
- #: languages/vue.php:121
5289
  msgid "Your website was visited by %s users in the last 30 days."
5290
  msgstr ""
5291
 
5292
- #: languages/vue.php:124
5293
  msgid "See the full analytics report!"
5294
  msgstr ""
5295
 
5296
- #: languages/vue.php:127
5297
  msgid "Overview Report"
5298
  msgstr ""
5299
 
5300
  #. Translators: Current PHP version and recommended PHP version.
5301
- #: languages/vue.php:131
5302
  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."
5303
  msgstr ""
5304
 
5305
  #. Translators: Current WordPress version.
5306
- #: languages/vue.php:135
5307
  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."
5308
  msgstr ""
5309
 
5310
- #: languages/vue.php:138
5311
  msgid "Yikes! PHP Update Required"
5312
  msgstr ""
5313
 
5314
  #. Translators: Current PHP version and recommended PHP version.
5315
- #: languages/vue.php:142
5316
  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."
5317
  msgstr ""
5318
 
5319
- #: languages/vue.php:145
5320
  msgid "Learn more about updating PHP"
5321
  msgstr ""
5322
 
5323
- #: languages/vue.php:148
5324
  msgid "Yikes! WordPress Update Required"
5325
  msgstr ""
5326
 
5327
  #. Translators: Current WordPress version.
5328
- #: languages/vue.php:152
5329
  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."
5330
  msgstr ""
5331
 
5332
- #: languages/vue.php:155
5333
  msgid "Learn more about updating WordPress"
5334
  msgstr ""
5335
 
5336
- #: languages/vue.php:161
5337
  msgid "Getting Started"
5338
  msgstr ""
5339
 
5340
- #: languages/vue.php:165
5341
  msgid "Lite vs Pro"
5342
  msgstr ""
5343
 
5344
- #: languages/vue.php:168
5345
  msgid "Success! "
5346
  msgstr ""
5347
 
5348
- #: languages/vue.php:171
5349
  msgid "You're now using ExactMetrics Pro with all the features."
5350
  msgstr ""
5351
 
5352
  #. Translators: Placeholder gets replaced with an arrow icon.
5353
- #: languages/vue.php:175
5354
  msgid "Get Started %s"
5355
  msgstr ""
5356
 
5357
  #. Translators: Error status and error text.
5358
- #: languages/vue.php:179
5359
  msgid "Can't load report data. Error: %1$s, %2$s"
5360
  msgstr ""
5361
 
5362
- #: languages/vue.php:182
5363
  msgid "Error loading report data"
5364
  msgstr ""
5365
 
5366
- #. Translators: Makes text bold.
5367
- #: languages/vue.php:186
5368
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5369
  msgstr ""
5370
 
5371
- #. Translators: Makes text bold.
5372
- #: languages/vue.php:190
5373
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5374
  msgstr ""
5375
 
5376
- #. Translators: Makes text bold.
5377
- #: languages/vue.php:194
5378
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5379
  msgstr ""
5380
 
5381
  #. Translators: Makes text bold.
5382
- #: languages/vue.php:198
5383
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5384
  msgstr ""
5385
 
5386
- #. Translators: Makes text bold.
5387
- #: languages/vue.php:202
5388
  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."
5389
  msgstr ""
5390
 
5391
- #. Translators: Makes text bold.
5392
- #: languages/vue.php:206
5393
  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."
5394
  msgstr ""
5395
 
5396
- #. Translators: Makes text bold.
5397
- #: languages/vue.php:210
5398
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5399
  msgstr ""
5400
 
5401
  #. Translators: Makes text bold.
5402
- #: languages/vue.php:214
5403
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5404
  msgstr ""
5405
 
5406
- #. Translators: Adds link to the features page.
5407
- #: languages/vue.php:218
5408
  msgid "%1$sSee All Features%2$s"
5409
  msgstr ""
5410
 
5411
- #: languages/vue.php:221
5412
  msgid "Pro Plan"
5413
  msgstr ""
5414
 
5415
- #: languages/vue.php:224
5416
  msgid "per year"
5417
  msgstr ""
5418
 
5419
- #: languages/vue.php:230
5420
  msgid "Upgrade to ExactMetrics Pro Now"
5421
  msgstr ""
5422
 
5423
- #: languages/vue.php:233
5424
  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!"
5425
  msgstr ""
5426
 
5427
- #: languages/vue.php:236
5428
  msgid "Daniel Monaghan - Experienced"
5429
  msgstr ""
5430
 
5431
- #: languages/vue.php:239
5432
  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."
5433
  msgstr ""
5434
 
5435
- #: languages/vue.php:242
5436
  msgid "Naomi Spirit - From This Day"
5437
  msgstr ""
5438
 
5439
- #: languages/vue.php:245
5440
  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!"
5441
  msgstr ""
5442
 
5443
- #: languages/vue.php:248
5444
  msgid "Julie Dupuis - Faraway Land Travel"
5445
  msgstr ""
5446
 
5447
- #: languages/vue.php:251
5448
  msgid "Guides and Documentation:"
5449
  msgstr ""
5450
 
5451
- #: languages/vue.php:256
5452
  msgid "Upgrade to PRO"
5453
  msgstr ""
5454
 
5455
- #: languages/vue.php:259
5456
  msgid "eCommerce Tracking"
5457
  msgstr ""
5458
 
5459
- #: languages/vue.php:262
5460
  msgid "Custom Dimensions"
5461
  msgstr ""
5462
 
5463
- #: languages/vue.php:265
5464
  msgid "Form Tracking"
5465
  msgstr ""
5466
 
5467
- #: languages/vue.php:268
5468
  msgid "AMP Support"
5469
  msgstr ""
5470
 
5471
- #: languages/vue.php:271
5472
  msgid "Author Tracking"
5473
  msgstr ""
5474
 
5475
- #: languages/vue.php:274
5476
  msgid "EU Compliance Addon"
5477
  msgstr ""
5478
 
5479
- #: languages/vue.php:277
5480
  msgid "Real Time Report"
5481
  msgstr ""
5482
 
5483
- #: languages/vue.php:280
5484
  msgid "Google Optimize"
5485
  msgstr ""
5486
 
5487
- #: languages/vue.php:283
5488
  #: lite/includes/admin/reports/report-queries.php:22
5489
  msgid "Search Console"
5490
  msgstr ""
5491
 
5492
- #: languages/vue.php:286
5493
  msgid "Custom Date Ranges"
5494
  msgstr ""
5495
 
5496
- #: languages/vue.php:289
5497
- #: languages/vue.php:929
5498
  msgid "Getting Started with ExactMetrics"
5499
  msgstr ""
5500
 
5501
- #: languages/vue.php:292
5502
- #: languages/vue.php:932
5503
  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."
5504
  msgstr ""
5505
 
5506
- #: languages/vue.php:295
5507
  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."
5508
  msgstr ""
5509
 
5510
- #: languages/vue.php:298
5511
  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!."
5512
  msgstr ""
5513
 
5514
- #: languages/vue.php:301
5515
  msgid "Launch the wizard!"
5516
  msgstr ""
5517
 
5518
- #: languages/vue.php:304
5519
  msgid "Welcome to"
5520
  msgstr ""
5521
 
5522
  #. Translators: Adds a line break.
5523
- #: languages/vue.php:308
5524
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5525
  msgstr ""
5526
 
5527
- #. Translators: Makes text bold.
5528
- #: languages/vue.php:312
5529
  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."
5530
  msgstr ""
5531
 
5532
- #: languages/vue.php:315
5533
  msgid "ExactMetrics Features & Addons"
5534
  msgstr ""
5535
 
5536
- #: languages/vue.php:318
5537
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5538
  msgstr ""
5539
 
5540
  #. Translators: Placeholder is replaced with WPForms.
5541
- #: languages/vue.php:322
5542
  msgid "Recommended Plugin: %s"
5543
  msgstr ""
5544
 
5545
- #: languages/vue.php:325
5546
  msgid "Install"
5547
  msgstr ""
5548
 
5549
- #: languages/vue.php:328
5550
  msgid "Activate"
5551
  msgstr ""
5552
 
5553
- #: languages/vue.php:334
5554
  msgid "ExactMetrics encountered an error loading your report data"
5555
  msgstr ""
5556
 
5557
- #: languages/vue.php:337
5558
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5559
  msgstr ""
5560
 
5561
- #: languages/vue.php:340
5562
- #: languages/vue.php:1855
5563
  msgid "Reconnect ExactMetrics"
5564
  msgstr ""
5565
 
5566
- #: languages/vue.php:343
5567
  msgid "Re-Authenticating"
5568
  msgstr ""
5569
 
5570
- #: languages/vue.php:346
5571
  msgid "Ok"
5572
  msgstr ""
5573
 
5574
- #: languages/vue.php:349
5575
- #: languages/vue.php:868
5576
  msgid "ExactMetrics Addons"
5577
  msgstr ""
5578
 
5579
- #: languages/vue.php:352
5580
  msgid "Search Addons"
5581
  msgstr ""
5582
 
5583
- #: languages/vue.php:355
5584
  msgid "Save Changes"
5585
  msgstr ""
5586
 
5587
- #: languages/vue.php:358
5588
  msgid "Exit Setup"
5589
  msgstr ""
5590
 
5591
- #: languages/vue.php:361
5592
  msgid "Time to Purchase"
5593
  msgstr ""
5594
 
5595
- #: languages/vue.php:364
5596
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5597
  msgstr ""
5598
 
5599
- #: languages/vue.php:367
5600
  msgid "Sessions to Purchase"
5601
  msgstr ""
5602
 
5603
- #: languages/vue.php:370
5604
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5605
  msgstr ""
5606
 
5607
- #: languages/vue.php:373
5608
  msgid "New Customers"
5609
  msgstr ""
5610
 
5611
- #: languages/vue.php:376
5612
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5613
  msgstr ""
5614
 
5615
- #: languages/vue.php:379
5616
  msgid "Abandoned Checkouts"
5617
  msgstr ""
5618
 
5619
- #: languages/vue.php:382
5620
  msgid "This list shows the percentage of carts that never went through the checkout process."
5621
  msgstr ""
5622
 
5623
- #: languages/vue.php:386
5624
  msgid "Top Posts/Pages"
5625
  msgstr ""
5626
 
5627
- #: languages/vue.php:390
5628
  msgid "This list shows the most viewed posts and pages on your website."
5629
  msgstr ""
5630
 
5631
- #: languages/vue.php:394
5632
  msgid "New vs. Returning Visitors"
5633
  msgstr ""
5634
 
5635
- #: languages/vue.php:398
5636
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5637
  msgstr ""
5638
 
5639
- #: languages/vue.php:402
5640
  msgid "Device Breakdown"
5641
  msgstr ""
5642
 
5643
- #: languages/vue.php:406
5644
  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."
5645
  msgstr ""
5646
 
5647
- #: languages/vue.php:409
5648
  msgid "Top Landing Pages"
5649
  msgstr ""
5650
 
5651
- #: languages/vue.php:412
5652
  msgid "This list shows the top pages users first land on when visiting your website."
5653
  msgstr ""
5654
 
5655
- #: languages/vue.php:415
5656
  msgid "Top Exit Pages"
5657
  msgstr ""
5658
 
5659
- #: languages/vue.php:418
5660
  msgid "This list shows the top pages users exit your website from."
5661
  msgstr ""
5662
 
5663
- #: languages/vue.php:421
5664
  msgid "Top Outbound Links"
5665
  msgstr ""
5666
 
5667
- #: languages/vue.php:424
5668
  msgid "This list shows the top links clicked on your website that go to another website."
5669
  msgstr ""
5670
 
5671
- #: languages/vue.php:427
5672
  msgid "Top Affiliate Links"
5673
  msgstr ""
5674
 
5675
- #: languages/vue.php:430
5676
  msgid "This list shows the top affiliate links your visitors clicked on."
5677
  msgstr ""
5678
 
5679
- #: languages/vue.php:433
5680
  msgid "Top Download Links"
5681
  msgstr ""
5682
 
5683
- #: languages/vue.php:436
5684
  msgid "This list shows the download links your visitors clicked the most."
5685
  msgstr ""
5686
 
5687
- #: languages/vue.php:442
5688
  msgid "Top Products"
5689
  msgstr ""
5690
 
5691
- #: languages/vue.php:445
5692
  msgid "This list shows the top selling products on your website."
5693
  msgstr ""
5694
 
5695
- #: languages/vue.php:448
5696
  msgid "Top Conversion Sources"
5697
  msgstr ""
5698
 
5699
- #: languages/vue.php:451
5700
  msgid "This list shows the top referral websites in terms of product revenue."
5701
  msgstr ""
5702
 
5703
- #: languages/vue.php:454
5704
  msgid "Total Add/Remove"
5705
  msgstr ""
5706
 
5707
- #: languages/vue.php:457
5708
  msgid "Analytics"
5709
  msgstr ""
5710
 
5711
  #. Translators: Adds an arrow icon.
5712
- #: languages/vue.php:462
5713
  msgid "View All Reports %s"
5714
  msgstr ""
5715
 
5716
- #: languages/vue.php:465
5717
  msgid "You must connect with ExactMetrics before you can view reports."
5718
  msgstr ""
5719
 
5720
- #: languages/vue.php:468
5721
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5722
  msgstr ""
5723
 
5724
- #: languages/vue.php:471
5725
  msgid "Launch Setup Wizard"
5726
  msgstr ""
5727
 
5728
- #: languages/vue.php:474
5729
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5730
  msgstr ""
5731
 
5732
- #: languages/vue.php:487
5733
  msgid "See Quick Links"
5734
  msgstr ""
5735
 
5736
- #: languages/vue.php:490
5737
  msgid "Suggest a Feature"
5738
  msgstr ""
5739
 
5740
- #: languages/vue.php:493
5741
  msgid "Join Our Community"
5742
  msgstr ""
5743
 
5744
- #: languages/vue.php:496
5745
  msgid "Support & Docs"
5746
  msgstr ""
5747
 
5748
- #: languages/vue.php:499
5749
  msgid "Upgrade to Pro &#187;"
5750
  msgstr ""
5751
 
5752
- #: languages/vue.php:503
5753
  #: lite/includes/admin/reports/report-publisher.php:22
5754
  msgid "Publishers"
5755
  msgstr ""
5756
 
5757
- #: languages/vue.php:507
5758
  #: lite/includes/admin/reports/report-ecommerce.php:22
5759
  msgid "eCommerce"
5760
  msgstr ""
5761
 
5762
- #: languages/vue.php:510
5763
  msgid "Dimensions Report"
5764
  msgstr ""
5765
 
5766
- #: languages/vue.php:513
5767
  #: lite/includes/admin/reports/report-forms.php:22
5768
  msgid "Forms"
5769
  msgstr ""
5770
 
5771
- #: languages/vue.php:516
5772
  msgid "Real-Time"
5773
  msgstr ""
5774
 
5775
- #: languages/vue.php:519
5776
  msgid "Site Speed Report"
5777
  msgstr ""
5778
 
5779
- #: languages/vue.php:523
5780
  msgid "2020 Year in Review"
5781
  msgstr ""
5782
 
5783
- #: languages/vue.php:526
5784
  msgid "Import Export"
5785
  msgstr ""
5786
 
5787
- #: languages/vue.php:529
5788
  msgid "PrettyLinks Integration"
5789
  msgstr ""
5790
 
5791
- #: languages/vue.php:535
5792
  msgid "Popular Posts Widget"
5793
  msgstr ""
5794
 
5795
- #: languages/vue.php:538
5796
  msgid "Popular Products"
5797
  msgstr ""
5798
 
5799
- #: languages/vue.php:544
5800
  msgid "Sub menu item for WooCommerce Analytics"
5801
  msgstr ""
5802
 
5803
- #: languages/vue.php:550
5804
  msgid "Engagement"
5805
  msgstr ""
5806
 
5807
- #: languages/vue.php:553
5808
  msgid "Publisher"
5809
  msgstr ""
5810
 
5811
- #: languages/vue.php:557
5812
  msgid "Conversions"
5813
  msgstr ""
5814
 
5815
- #: languages/vue.php:560
5816
  msgid "Advanced"
5817
  msgstr ""
5818
 
5819
- #: languages/vue.php:563
5820
  msgid "URL Builder"
5821
  msgstr ""
5822
 
5823
  #. Translators: Adds a link to documentation.
5824
- #: languages/vue.php:567
5825
  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"
5826
  msgstr ""
5827
 
5828
  #. Translators: Adds link to activate/install plugin and documentation.
5829
- #: languages/vue.php:571
5830
  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"
5831
  msgstr ""
5832
 
5833
  #. Translators: Adds a link to documentation.
5834
- #: languages/vue.php:575
5835
  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"
5836
  msgstr ""
5837
 
5838
  #. Translators: Adds link to activate/install plugin and documentation.
5839
- #: languages/vue.php:579
5840
  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"
5841
  msgstr ""
5842
 
5843
- #: languages/vue.php:582
5844
  msgid "Installing Addon"
5845
  msgstr ""
5846
 
5847
- #: languages/vue.php:585
5848
  msgid "Activating Addon"
5849
  msgstr ""
5850
 
5851
- #: languages/vue.php:588
5852
  msgid "Addon Activated"
5853
  msgstr ""
5854
 
5855
- #: languages/vue.php:591
5856
  msgid "Loading report data"
5857
  msgstr ""
5858
 
5859
- #: languages/vue.php:594
5860
  msgid "Please activate manually"
5861
  msgstr ""
5862
 
5863
  #. Translators: Adds the error status and status text.
5864
- #: languages/vue.php:598
5865
  msgid "Error: %1$s, %2$s"
5866
  msgstr ""
5867
 
5868
- #: languages/vue.php:601
5869
  msgid "Error Activating Addon"
5870
  msgstr ""
5871
 
5872
- #: languages/vue.php:604
5873
  #: lite/includes/admin/wp-site-health.php:372
5874
  #: lite/includes/admin/wp-site-health.php:398
5875
  #: lite/includes/admin/wp-site-health.php:425
5876
  msgid "View Addons"
5877
  msgstr ""
5878
 
5879
- #: languages/vue.php:608
5880
  msgid "Dismiss"
5881
  msgstr ""
5882
 
5883
- #: languages/vue.php:611
5884
  msgid "Redirecting"
5885
  msgstr ""
5886
 
5887
- #: languages/vue.php:614
5888
  msgid "Please wait"
5889
  msgstr ""
5890
 
5891
- #: languages/vue.php:617
5892
  msgid "activate"
5893
  msgstr ""
5894
 
5895
- #: languages/vue.php:620
5896
  msgid "install"
5897
  msgstr ""
5898
 
5899
- #: languages/vue.php:623
5900
  msgid "Visit addons page"
5901
  msgstr ""
5902
 
5903
- #: languages/vue.php:626
5904
  msgid "Report Unavailable"
5905
  msgstr ""
5906
 
5907
  #. Translators: Install/Activate the addon.
5908
- #: languages/vue.php:630
5909
  msgid "%s Addon"
5910
  msgstr ""
5911
 
5912
- #: languages/vue.php:633
5913
  msgid "Go Back To Reports"
5914
  msgstr ""
5915
 
5916
- #: languages/vue.php:636
5917
  msgid "Enable Enhanced eCommerce"
5918
  msgstr ""
5919
 
5920
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
5921
- #: languages/vue.php:640
5922
  msgid "Step %1$s of %2$s"
5923
  msgstr ""
5924
 
5925
- #: languages/vue.php:643
5926
  msgid "Go back"
5927
  msgstr ""
5928
 
5929
- #: languages/vue.php:646
5930
  msgid "Welcome to ExactMetrics!"
5931
  msgstr ""
5932
 
5933
- #: languages/vue.php:649
5934
  msgid "Let's get you set up."
5935
  msgstr ""
5936
 
5937
- #: languages/vue.php:652
5938
  msgid "Save and Continue"
5939
  msgstr ""
5940
 
5941
- #: languages/vue.php:655
5942
  msgid "Which category best describes your website?"
5943
  msgstr ""
5944
 
5945
- #: languages/vue.php:658
5946
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
5947
  msgstr ""
5948
 
5949
- #: languages/vue.php:661
5950
  msgid "Business Website"
5951
  msgstr ""
5952
 
5953
  #. Translators: Make text bold.
5954
- #: languages/vue.php:665
5955
  msgid "Publisher %1$s(Blog)%2$s"
5956
  msgstr ""
5957
 
5958
- #: languages/vue.php:668
5959
  msgid "Ecommerce"
5960
  msgstr ""
5961
 
5962
- #: languages/vue.php:671
5963
  msgid "Connect ExactMetrics to Your Website"
5964
  msgstr ""
5965
 
5966
- #: languages/vue.php:674
5967
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
5968
  msgstr ""
5969
 
5970
- #: languages/vue.php:677
5971
  msgid "Connect Google Analytics + WordPress"
5972
  msgstr ""
5973
 
5974
- #: languages/vue.php:680
5975
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
5976
  msgstr ""
5977
 
5978
- #: languages/vue.php:683
5979
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
5980
  msgstr ""
5981
 
5982
- #: languages/vue.php:686
5983
  msgid "Manually enter your UA code"
5984
  msgstr ""
5985
 
5986
- #: languages/vue.php:689
5987
  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."
5988
  msgstr ""
5989
 
5990
- #: languages/vue.php:692
5991
  msgid "UA code can't be empty"
5992
  msgstr ""
5993
 
5994
- #: languages/vue.php:695
5995
  msgid "Saving UA code..."
5996
  msgstr ""
5997
 
5998
- #: languages/vue.php:698
5999
  msgid "ExactMetrics Recommends WPForms"
6000
  msgstr ""
6001
 
6002
- #: languages/vue.php:701
6003
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6004
  msgstr ""
6005
 
6006
- #: languages/vue.php:704
6007
  msgid "Used on over 4,000,000 websites!"
6008
  msgstr ""
6009
 
6010
- #: languages/vue.php:707
6011
  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!"
6012
  msgstr ""
6013
 
6014
- #: languages/vue.php:710
6015
  msgid "Skip this Step"
6016
  msgstr ""
6017
 
6018
- #: languages/vue.php:713
6019
  msgid "Continue & Install WPForms"
6020
  msgstr ""
6021
 
6022
- #: languages/vue.php:716
6023
  msgid "Installing..."
6024
  msgstr ""
6025
 
6026
- #: languages/vue.php:719
6027
  msgid "Recommended Settings"
6028
  msgstr ""
6029
 
6030
- #: languages/vue.php:722
6031
  msgid "ExactMetrics recommends the following settings based on your configuration."
6032
  msgstr ""
6033
 
6034
- #: languages/vue.php:725
6035
  msgid "Events Tracking"
6036
  msgstr ""
6037
 
6038
- #: languages/vue.php:728
6039
  msgid "Must have for all click tracking on site."
6040
  msgstr ""
6041
 
6042
- #: languages/vue.php:731
6043
  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."
6044
  msgstr ""
6045
 
6046
- #: languages/vue.php:734
6047
  msgid "Enhanced Link Attribution"
6048
  msgstr ""
6049
 
6050
- #: languages/vue.php:737
6051
  msgid "Improves the accuracy of your In-Page Analytics."
6052
  msgstr ""
6053
 
6054
- #: languages/vue.php:740
6055
  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."
6056
  msgstr ""
6057
 
6058
- #: languages/vue.php:743
6059
  msgid "Install Updates Automatically"
6060
  msgstr ""
6061
 
6062
- #: languages/vue.php:746
6063
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6064
  msgstr ""
6065
 
6066
- #: languages/vue.php:749
6067
  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."
6068
  msgstr ""
6069
 
6070
- #: languages/vue.php:752
6071
  msgid "File Download Tracking"
6072
  msgstr ""
6073
 
6074
- #: languages/vue.php:755
6075
  msgid "Helps you see file downloads data."
6076
  msgstr ""
6077
 
6078
- #: languages/vue.php:758
6079
  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."
6080
  msgstr ""
6081
 
6082
  #. Translators: Example path (/go/).
6083
- #: languages/vue.php:762
6084
  msgid "Path (example: %s)"
6085
  msgstr ""
6086
 
6087
- #: languages/vue.php:765
6088
  msgid "Path has to start with a / and have no spaces"
6089
  msgstr ""
6090
 
6091
  #. Translators: Example label (aff).
6092
- #: languages/vue.php:769
6093
  msgid "Label (example: %s)"
6094
  msgstr ""
6095
 
6096
- #: languages/vue.php:772
6097
  msgid "Label can't contain any spaces"
6098
  msgstr ""
6099
 
6100
- #: languages/vue.php:775
6101
  msgid "Helps you increase affiliate revenue."
6102
  msgstr ""
6103
 
6104
- #: languages/vue.php:778
6105
  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."
6106
  msgstr ""
6107
 
6108
- #: languages/vue.php:781
6109
  msgid "Affiliate Link Tracking"
6110
  msgstr ""
6111
 
6112
- #: languages/vue.php:784
6113
  msgid "Who Can See Reports"
6114
  msgstr ""
6115
 
6116
- #: languages/vue.php:787
6117
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6118
  msgstr ""
6119
 
6120
- #: languages/vue.php:791
6121
  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."
6122
  msgstr ""
6123
 
6124
- #: languages/vue.php:794
6125
  msgid "Save and continue"
6126
  msgstr ""
6127
 
6128
- #: languages/vue.php:797
6129
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6130
  msgstr ""
6131
 
6132
- #: languages/vue.php:800
6133
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6134
  msgstr ""
6135
 
6136
- #: languages/vue.php:804
6137
  msgid "+ Add Role"
6138
  msgstr ""
6139
 
6140
  #. Translators: Placeholders are used for making text bold and adding a link.
6141
- #: languages/vue.php:808
6142
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6143
  msgstr ""
6144
 
6145
- #: languages/vue.php:811
6146
  #: lite/includes/admin/reports/report-dimensions.php:22
6147
  msgid "Dimensions"
6148
  msgstr ""
6149
 
6150
- #: languages/vue.php:814
6151
  msgid "Site Speed"
6152
  msgstr ""
6153
 
6154
- #: languages/vue.php:817
6155
  msgid "License Key"
6156
  msgstr ""
6157
 
6158
  #. Translators: Add link to retrieve license key from account.
6159
- #: languages/vue.php:821
6160
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6161
  msgstr ""
6162
 
6163
- #: languages/vue.php:824
6164
  msgid "Google Authentication"
6165
  msgstr ""
6166
 
6167
- #: languages/vue.php:827
6168
  msgid "Miscellaneous"
6169
  msgstr ""
6170
 
6171
- #: languages/vue.php:830
6172
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6173
  msgstr ""
6174
 
6175
- #: languages/vue.php:833
6176
  msgid "Hide Announcements"
6177
  msgstr ""
6178
 
6179
- #: languages/vue.php:836
6180
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6181
  msgstr ""
6182
 
6183
  #. Translators: Adds link to upgrade.
6184
- #: languages/vue.php:841
6185
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6186
  msgstr ""
6187
 
6188
- #: languages/vue.php:844
6189
  msgid "Receive 50% off automatically applied at the checkout!"
6190
  msgstr ""
6191
 
6192
- #: languages/vue.php:847
6193
  msgid "See all features"
6194
  msgstr ""
6195
 
6196
- #: languages/vue.php:850
6197
  msgid "Setup Wizard"
6198
  msgstr ""
6199
 
6200
- #: languages/vue.php:853
6201
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6202
  msgstr ""
6203
 
6204
- #: languages/vue.php:856
6205
  msgid "Relaunch Setup Wizard"
6206
  msgstr ""
6207
 
6208
- #: languages/vue.php:859
6209
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6210
  msgstr ""
6211
 
6212
- #: languages/vue.php:862
6213
  msgid "No addons found."
6214
  msgstr ""
6215
 
6216
- #: languages/vue.php:865
6217
  msgid "Refresh Addons"
6218
  msgstr ""
6219
 
6220
  #. Translators: Adds a line break.
6221
- #: languages/vue.php:872
6222
  msgid "Upgrade to Pro to unlock addons and other great features."
6223
  msgstr ""
6224
 
6225
- #: languages/vue.php:875
6226
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6227
  msgstr ""
6228
 
6229
- #: languages/vue.php:878
6230
  msgid "Refreshing Addons"
6231
  msgstr ""
6232
 
6233
- #: languages/vue.php:881
6234
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6235
  msgstr ""
6236
 
6237
  #. Translators: Placeholders make the text green.
6238
- #: languages/vue.php:885
6239
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6240
  msgstr ""
6241
 
6242
- #: languages/vue.php:888
6243
  msgid "How to Connect to Google Analytics"
6244
  msgstr ""
6245
 
6246
- #: languages/vue.php:891
6247
  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."
6248
  msgstr ""
6249
 
6250
- #: languages/vue.php:894
6251
  msgid "Guide and Checklist for Advanced Insights"
6252
  msgstr ""
6253
 
6254
- #: languages/vue.php:897
6255
  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."
6256
  msgstr ""
6257
 
6258
- #: languages/vue.php:900
6259
  msgid "GDPR Guide"
6260
  msgstr ""
6261
 
6262
- #: languages/vue.php:903
6263
  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. "
6264
  msgstr ""
6265
 
6266
- #: languages/vue.php:906
6267
  msgid "How to Install and Activate ExactMetrics Addons"
6268
  msgstr ""
6269
 
6270
- #: languages/vue.php:909
6271
  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."
6272
  msgstr ""
6273
 
6274
- #: languages/vue.php:912
6275
  msgid "Enabling eCommerce Tracking and Reports"
6276
  msgstr ""
6277
 
6278
- #: languages/vue.php:915
6279
  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."
6280
  msgstr ""
6281
 
6282
- #: languages/vue.php:918
6283
  msgid "Read Documentation"
6284
  msgstr ""
6285
 
6286
  #. Translators: Makes the text bold.
6287
- #: languages/vue.php:922
6288
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6289
  msgstr ""
6290
 
6291
  #. Translators: Makes the text bold.
6292
- #: languages/vue.php:926
6293
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6294
  msgstr ""
6295
 
6296
- #: languages/vue.php:935
6297
  msgid "One-click Complete eCommerce tracking"
6298
  msgstr ""
6299
 
6300
- #: languages/vue.php:938
6301
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6302
  msgstr ""
6303
 
6304
- #: languages/vue.php:941
6305
  msgid "Forms Tracking"
6306
  msgstr ""
6307
 
6308
- #: languages/vue.php:944
6309
  msgid "One-click Form Events Tracking"
6310
  msgstr ""
6311
 
6312
- #: languages/vue.php:947
6313
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6314
  msgstr ""
6315
 
6316
- #: languages/vue.php:950
6317
  msgid "WordPress Admin Area Reports"
6318
  msgstr ""
6319
 
6320
- #: languages/vue.php:953
6321
  msgid "Standard Reports"
6322
  msgstr ""
6323
 
6324
- #: languages/vue.php:956
6325
  msgid "Overview Reports for the last 30 days."
6326
  msgstr ""
6327
 
6328
- #: languages/vue.php:959
6329
  msgid "Advanced Reports"
6330
  msgstr ""
6331
 
6332
- #: languages/vue.php:962
6333
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6334
  msgstr ""
6335
 
6336
- #: languages/vue.php:965
6337
  msgid "Dashboard Widget"
6338
  msgstr ""
6339
 
6340
- #: languages/vue.php:968
6341
  msgid "Basic Widget"
6342
  msgstr ""
6343
 
6344
- #: languages/vue.php:971
6345
  msgid "Overview Report Synopsis"
6346
  msgstr ""
6347
 
6348
- #: languages/vue.php:974
6349
  msgid "Advanced Dashboard Widget"
6350
  msgstr ""
6351
 
6352
- #: languages/vue.php:977
6353
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6354
  msgstr ""
6355
 
6356
- #: languages/vue.php:980
6357
  msgid "Publisher Reports"
6358
  msgstr ""
6359
 
6360
- #: languages/vue.php:983
6361
  msgid "Advanced Publisher Reports & Tracking"
6362
  msgstr ""
6363
 
6364
- #: languages/vue.php:986
6365
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6366
  msgstr ""
6367
 
6368
- #: languages/vue.php:992
6369
  msgid "Email Summaries"
6370
  msgstr ""
6371
 
6372
- #: languages/vue.php:995
6373
  msgid "Included"
6374
  msgstr ""
6375
 
6376
- #: languages/vue.php:998
6377
  msgid "Get weekly traffic reports directly in your inbox."
6378
  msgstr ""
6379
 
6380
- #: languages/vue.php:1004
6381
  msgid "Basic Options"
6382
  msgstr ""
6383
 
6384
- #: languages/vue.php:1007
6385
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6386
  msgstr ""
6387
 
6388
- #: languages/vue.php:1010
6389
  msgid "Dynamic Popular Posts & Popular Products"
6390
  msgstr ""
6391
 
6392
- #: languages/vue.php:1013
6393
  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."
6394
  msgstr ""
6395
 
6396
- #: languages/vue.php:1017
6397
  msgid "Not Available"
6398
  msgstr ""
6399
 
6400
- #: languages/vue.php:1020
6401
  msgid "Complete Custom Dimensions Tracking"
6402
  msgstr ""
6403
 
6404
- #: languages/vue.php:1023
6405
  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"
6406
  msgstr ""
6407
 
6408
- #: languages/vue.php:1029
6409
  msgid "Limited Support"
6410
  msgstr ""
6411
 
6412
- #: languages/vue.php:1032
6413
  msgid "Priority Support"
6414
  msgstr ""
6415
 
6416
- #: languages/vue.php:1035
6417
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6418
  msgstr ""
6419
 
6420
- #: languages/vue.php:1038
6421
  msgid "Feature"
6422
  msgstr ""
6423
 
6424
- #: languages/vue.php:1041
6425
  msgid "Lite"
6426
  msgstr ""
6427
 
6428
- #: languages/vue.php:1044
6429
  msgid "Pro"
6430
  msgstr ""
6431
 
6432
- #: languages/vue.php:1047
6433
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6434
  msgstr ""
6435
 
6436
- #: languages/vue.php:1055
6437
  msgid "Universal Tracking"
6438
  msgstr ""
6439
 
6440
- #: languages/vue.php:1058
6441
  msgid "Custom Google Analytics Link Tracking"
6442
  msgstr ""
6443
 
6444
- #: languages/vue.php:1061
6445
  msgid "Standard Tracking"
6446
  msgstr ""
6447
 
6448
- #: languages/vue.php:1064
6449
  msgid "Advanced Tracking"
6450
  msgstr ""
6451
 
6452
- #: languages/vue.php:1067
6453
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6454
  msgstr ""
6455
 
6456
- #: languages/vue.php:1070
6457
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6458
  msgstr ""
6459
 
6460
- #: languages/vue.php:1073
6461
  msgid "No-Code-Needed Tracking Features"
6462
  msgstr ""
6463
 
6464
- #: languages/vue.php:1076
6465
  msgid "Basic Tracking Options"
6466
  msgstr ""
6467
 
6468
- #: languages/vue.php:1079
6469
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6470
  msgstr ""
6471
 
6472
- #: languages/vue.php:1082
6473
  msgid "Advanced Tracking Options"
6474
  msgstr ""
6475
 
6476
- #: languages/vue.php:1085
6477
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6478
  msgstr ""
6479
 
6480
- #: languages/vue.php:1088
6481
  msgid "Inbox"
6482
  msgstr ""
6483
 
6484
- #: languages/vue.php:1091
6485
  msgid "Back to Inbox"
6486
  msgstr ""
6487
 
6488
- #: languages/vue.php:1094
6489
  msgid "View Dismissed"
6490
  msgstr ""
6491
 
6492
- #: languages/vue.php:1097
6493
  msgid "Notifications"
6494
  msgstr ""
6495
 
6496
- #: languages/vue.php:1100
6497
  msgid "Dismiss All"
6498
  msgstr ""
6499
 
6500
- #: languages/vue.php:1103
6501
  msgid "Dismissed"
6502
  msgstr ""
6503
 
6504
- #: languages/vue.php:1106
6505
  msgid "No Notifications"
6506
  msgstr ""
6507
 
6508
  #. Translators: Error status and error text.
6509
- #: languages/vue.php:1110
6510
  msgid "Can't load settings. Error: %1$s, %2$s"
6511
  msgstr ""
6512
 
6513
- #: languages/vue.php:1113
6514
  msgid "You appear to be offline."
6515
  msgstr ""
6516
 
6517
  #. Translators: Error status and error text.
6518
- #: languages/vue.php:1117
6519
  msgid "Can't save settings. Error: %1$s, %2$s"
6520
  msgstr ""
6521
 
6522
- #: languages/vue.php:1120
6523
  msgid "Network error encountered. Settings not saved."
6524
  msgstr ""
6525
 
6526
- #: languages/vue.php:1123
6527
  msgid "Show in widget mode"
6528
  msgstr ""
6529
 
6530
- #: languages/vue.php:1126
6531
  msgid "Show in full-width mode"
6532
  msgstr ""
6533
 
6534
- #: languages/vue.php:1129
6535
  msgid "Show Overview Reports"
6536
  msgstr ""
6537
 
6538
- #: languages/vue.php:1132
6539
  msgid "Show Publishers Reports"
6540
  msgstr ""
6541
 
6542
- #: languages/vue.php:1135
6543
  msgid "Show eCommerce Reports"
6544
  msgstr ""
6545
 
6546
- #: languages/vue.php:1138
6547
  msgid "Settings Menu"
6548
  msgstr ""
6549
 
6550
- #: languages/vue.php:1141
6551
  msgid "Available in PRO version"
6552
  msgstr ""
6553
 
6554
- #: languages/vue.php:1144
6555
  msgid "See All Reports"
6556
  msgstr ""
6557
 
6558
- #: languages/vue.php:1147
6559
  msgid "Go to the Analytics Dashboard"
6560
  msgstr ""
6561
 
6562
- #: languages/vue.php:1162
6563
  msgid "Cart Funnel"
6564
  msgstr ""
6565
 
6566
- #: languages/vue.php:1165
6567
  msgid "Customer Insights"
6568
  msgstr ""
6569
 
6570
- #: languages/vue.php:1168
6571
  msgid "Campaign Measurement"
6572
  msgstr ""
6573
 
6574
- #: languages/vue.php:1171
6575
  msgid "Customer Profiles"
6576
  msgstr ""
6577
 
6578
- #: languages/vue.php:1174
6579
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6580
  msgstr ""
6581
 
6582
- #: languages/vue.php:1177
6583
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6584
  msgstr ""
6585
 
6586
- #: languages/vue.php:1180
6587
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6588
  msgstr ""
6589
 
6590
- #: languages/vue.php:1183
6591
  msgid "Track all-new metrics!"
6592
  msgstr ""
6593
 
6594
- #: languages/vue.php:1186
6595
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6596
  msgstr ""
6597
 
6598
- #: languages/vue.php:1189
6599
  msgid "FEATURES"
6600
  msgstr ""
6601
 
6602
- #: languages/vue.php:1192
6603
  msgid "Get The Unique Metrics Neccessary for Growth"
6604
  msgstr ""
6605
 
6606
- #: languages/vue.php:1195
6607
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6608
  msgstr ""
6609
 
6610
- #: languages/vue.php:1198
6611
  msgid "Get Answers to the important questions %1$syou should know."
6612
  msgstr ""
6613
 
6614
- #: languages/vue.php:1201
6615
  msgid "Did the login/registration step of the checkout put users off?"
6616
  msgstr ""
6617
 
6618
- #: languages/vue.php:1204
6619
  msgid "Which ad campaign is driving the most revenue?"
6620
  msgstr ""
6621
 
6622
- #: languages/vue.php:1207
6623
  msgid "Who is my typical customer?"
6624
  msgstr ""
6625
 
6626
- #: languages/vue.php:1210
6627
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6628
  msgstr ""
6629
 
6630
  #. Translators: Error status and error text.
6631
- #: languages/vue.php:1214
6632
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6633
  msgstr ""
6634
 
6635
  #. Translators: Error status and error text.
6636
- #: languages/vue.php:1218
6637
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6638
  msgstr ""
6639
 
6640
  #. Translators: Error status and error text.
6641
- #: languages/vue.php:1222
6642
  msgid "Can't load license details. Error: %1$s, %2$s"
6643
  msgstr ""
6644
 
6645
- #: languages/vue.php:1225
6646
  msgid "Error loading license details"
6647
  msgstr ""
6648
 
6649
  #. Translators: Error status and error text.
6650
- #: languages/vue.php:1229
6651
  msgid "Can't verify the license. Error: %1$s, %2$s"
6652
  msgstr ""
6653
 
6654
  #. Translators: Error status and error text.
6655
- #: languages/vue.php:1233
6656
  msgid "Can't validate the license. Error: %1$s, %2$s"
6657
  msgstr ""
6658
 
6659
- #: languages/vue.php:1236
6660
  msgid "Reset to default"
6661
  msgstr ""
6662
 
6663
- #: languages/vue.php:1239
6664
  msgid "The value entered does not match the required format"
6665
  msgstr ""
6666
 
6667
- #: languages/vue.php:1242
6668
  msgid "Check out the newly added classic mode"
6669
  msgstr ""
6670
 
6671
  #. Translators: Placeholder adds a line break.
6672
- #: languages/vue.php:1246
6673
  msgid "You can customize your %sdate range only in the PRO version."
6674
  msgstr ""
6675
 
6676
- #: languages/vue.php:1249
6677
  msgid "Help Us Improve"
6678
  msgstr ""
6679
 
6680
- #: languages/vue.php:1252
6681
  msgid "Help us better understand our users and their website needs."
6682
  msgstr ""
6683
 
6684
  #. Translators: Adds a link to the documentation.
6685
- #: languages/vue.php:1256
6686
  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"
6687
  msgstr ""
6688
 
6689
  #. Translators: The name of the field that is throwing a validation error.
6690
- #: languages/vue.php:1260
6691
  msgid "%s can't be empty."
6692
  msgstr ""
6693
 
6694
- #: languages/vue.php:1263
6695
  msgid "Duplicate values are not allowed."
6696
  msgstr ""
6697
 
6698
- #: languages/vue.php:1266
6699
  msgid "You can add maximum 5 items."
6700
  msgstr ""
6701
 
6702
- #: languages/vue.php:1269
6703
  msgid "At least 0 item required."
6704
  msgstr ""
6705
 
6706
- #: languages/vue.php:1272
6707
  msgid "Add Another Link Path"
6708
  msgstr ""
6709
 
6710
- #: languages/vue.php:1275
6711
  msgid "Remove row"
6712
  msgstr ""
6713
 
6714
- #: languages/vue.php:1279
6715
  msgid "Sessions"
6716
  msgstr ""
6717
 
6718
  #. Translators: Line break.
6719
- #: languages/vue.php:1283
6720
  msgid "Unique %s Sessions"
6721
  msgstr ""
6722
 
6723
- #: languages/vue.php:1286
6724
  msgid "Pageviews"
6725
  msgstr ""
6726
 
6727
  #. Translators: Line break.
6728
- #: languages/vue.php:1290
6729
  msgid "Unique %s Pageviews"
6730
  msgstr ""
6731
 
6732
- #: languages/vue.php:1293
6733
  msgid "A session is the browsing session of a single user to your site."
6734
  msgstr ""
6735
 
6736
- #: languages/vue.php:1296
6737
  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."
6738
  msgstr ""
6739
 
6740
- #: languages/vue.php:1299
6741
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6742
  msgstr ""
6743
 
6744
- #: languages/vue.php:1302
6745
  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."
6746
  msgstr ""
6747
 
6748
- #: languages/vue.php:1305
6749
  msgid "The number of distinct tracked users"
6750
  msgstr ""
6751
 
6752
- #: languages/vue.php:1308
6753
  msgid "Avg. Session Duration"
6754
  msgstr ""
6755
 
6756
- #: languages/vue.php:1312
6757
  msgid "Bounce Rate"
6758
  msgstr ""
6759
 
6760
- #: languages/vue.php:1316
6761
  msgid "Total Users"
6762
  msgstr ""
6763
 
6764
- #: languages/vue.php:1319
6765
  msgid "No options available"
6766
  msgstr ""
6767
 
6768
  #. Translators: Placeholders make the text highlighted.
6769
- #: languages/vue.php:1323
6770
  msgid "%1$sNeed%2$s to Grow FASTER??"
6771
  msgstr ""
6772
 
6773
- #: languages/vue.php:1326
6774
  msgid "Get additional, actionable insights by going Pro."
6775
  msgstr ""
6776
 
6777
- #: languages/vue.php:1329
6778
  msgid "Skip"
6779
  msgstr ""
6780
 
6781
- #: languages/vue.php:1332
6782
  msgid "See All Features"
6783
  msgstr ""
6784
 
6785
- #: languages/vue.php:1335
6786
  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."
6787
  msgstr ""
6788
 
6789
- #: languages/vue.php:1338
6790
  msgid "Our Pro plan includes:"
6791
  msgstr ""
6792
 
6793
  #. Translators: Error status and error text.
6794
- #: languages/vue.php:1342
6795
  msgid "Can't load errors. Error: %1$s, %2$s"
6796
  msgstr ""
6797
 
6798
- #: languages/vue.php:1345
6799
  msgid "Real-Time Report"
6800
  msgstr ""
6801
 
6802
- #: languages/vue.php:1348
6803
  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."
6804
  msgstr ""
6805
 
6806
  #. Translators: add link to blog.
6807
- #: languages/vue.php:1352
6808
  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."
6809
  msgstr ""
6810
 
6811
- #: languages/vue.php:1355
6812
  msgid "Here's what you get:"
6813
  msgstr ""
6814
 
6815
- #: languages/vue.php:1358
6816
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6817
  msgstr ""
6818
 
6819
- #: languages/vue.php:1361
6820
  msgid "See Your Top Pages Immediately After Making Changes"
6821
  msgstr ""
6822
 
6823
- #: languages/vue.php:1364
6824
  msgid "See Your Top Referral Sources and Adapt Faster"
6825
  msgstr ""
6826
 
6827
- #: languages/vue.php:1367
6828
  msgid "See Your Traffic Demographics"
6829
  msgstr ""
6830
 
6831
- #: languages/vue.php:1370
6832
  msgid "Get Fresh Report Data Every 60 Seconds"
6833
  msgstr ""
6834
 
6835
- #: languages/vue.php:1373
6836
  msgid "See Where Your Visitors are Connecting From (country & city)"
6837
  msgstr ""
6838
 
6839
- #: languages/vue.php:1376
6840
  msgid "Forms Report"
6841
  msgstr ""
6842
 
6843
- #: languages/vue.php:1379
6844
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6845
  msgstr ""
6846
 
6847
- #: languages/vue.php:1382
6848
  msgid "See Your Top Converting Forms and Optimize"
6849
  msgstr ""
6850
 
6851
- #: languages/vue.php:1385
6852
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6853
  msgstr ""
6854
 
6855
- #: languages/vue.php:1388
6856
  msgid "Awesome, You're All Set!"
6857
  msgstr ""
6858
 
6859
- #: languages/vue.php:1391
6860
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6861
  msgstr ""
6862
 
6863
  #. Translators: Make the text bold.
6864
- #: languages/vue.php:1395
6865
  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."
6866
  msgstr ""
6867
 
6868
  #. Translators: Add link to blog.
6869
- #: languages/vue.php:1399
6870
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6871
  msgstr ""
6872
 
6873
- #: languages/vue.php:1402
6874
  msgid "Finish Setup & Exit Wizard"
6875
  msgstr ""
6876
 
6877
- #: languages/vue.php:1405
6878
  msgid "Google Analytics"
6879
  msgstr ""
6880
 
6881
- #: languages/vue.php:1408
6882
  msgid "Subscribe"
6883
  msgstr ""
6884
 
6885
- #: languages/vue.php:1411
6886
  msgid "Checking your website..."
6887
  msgstr ""
6888
 
6889
- #: languages/vue.php:1414
6890
  msgid "Recommended Addons"
6891
  msgstr ""
6892
 
6893
  #. Translators: Add a link to upgrade and make the text green.
6894
- #: languages/vue.php:1418
6895
  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!"
6896
  msgstr ""
6897
 
6898
- #: languages/vue.php:1421
6899
  msgid "Upgrade to PRO Now"
6900
  msgstr ""
6901
 
6902
- #: languages/vue.php:1424
6903
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
6904
  msgstr ""
6905
 
6906
- #: languages/vue.php:1427
6907
  msgid "See All Your Important Store Metrics in One Place."
6908
  msgstr ""
6909
 
6910
- #: languages/vue.php:1430
6911
  msgid "... and more:"
6912
  msgstr ""
6913
 
6914
- #: languages/vue.php:1433
6915
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
6916
  msgstr ""
6917
 
6918
- #: languages/vue.php:1436
6919
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
6920
  msgstr ""
6921
 
6922
- #: languages/vue.php:1439
6923
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
6924
  msgstr ""
6925
 
6926
- #: languages/vue.php:1442
6927
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
6928
  msgstr ""
6929
 
6930
- #: languages/vue.php:1445
6931
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
6932
  msgstr ""
6933
 
6934
- #: languages/vue.php:1448
6935
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
6936
  msgstr ""
6937
 
6938
- #: languages/vue.php:1451
6939
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
6940
  msgstr ""
6941
 
6942
- #: languages/vue.php:1454
6943
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
6944
  msgstr ""
6945
 
6946
- #: languages/vue.php:1457
6947
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
6948
  msgstr ""
6949
 
6950
- #: languages/vue.php:1460
6951
  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."
6952
  msgstr ""
6953
 
6954
- #: languages/vue.php:1463
6955
  msgid "The ExactMetrics Team"
6956
  msgstr ""
6957
 
6958
- #: languages/vue.php:1466
6959
  msgid "Custom Dimensions Report"
6960
  msgstr ""
6961
 
6962
- #: languages/vue.php:1469
6963
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
6964
  msgstr ""
6965
 
6966
- #: languages/vue.php:1472
6967
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
6968
  msgstr ""
6969
 
6970
- #: languages/vue.php:1475
6971
  msgid "Author tracking to see which author’s posts generate the most traffic"
6972
  msgstr ""
6973
 
6974
- #: languages/vue.php:1478
6975
  msgid "Post Type tracking to see which WordPress post types perform better"
6976
  msgstr ""
6977
 
6978
- #: languages/vue.php:1481
6979
  msgid "Category tracking to see which sections of your sites are the most popular"
6980
  msgstr ""
6981
 
6982
- #: languages/vue.php:1484
6983
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
6984
  msgstr ""
6985
 
6986
- #: languages/vue.php:1487
6987
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
6988
  msgstr ""
6989
 
6990
- #: languages/vue.php:1490
6991
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
6992
  msgstr ""
6993
 
6994
  #. Translators: add link to blog.
6995
- #: languages/vue.php:1494
6996
  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."
6997
  msgstr ""
6998
 
6999
- #: languages/vue.php:1497
7000
  msgid "See Your Homepage's Overall Performance Score"
7001
  msgstr ""
7002
 
7003
- #: languages/vue.php:1500
7004
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7005
  msgstr ""
7006
 
7007
- #: languages/vue.php:1503
7008
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7009
  msgstr ""
7010
 
7011
- #: languages/vue.php:1506
7012
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7013
  msgstr ""
7014
 
7015
- #: languages/vue.php:1509
7016
  msgid "Hide dashboard widget"
7017
  msgstr ""
7018
 
7019
- #: languages/vue.php:1512
7020
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7021
  msgstr ""
7022
 
7023
- #: languages/vue.php:1515
7024
  msgid "Yes, hide it!"
7025
  msgstr ""
7026
 
7027
- #: languages/vue.php:1518
7028
  msgid "No, cancel!"
7029
  msgstr ""
7030
 
7031
- #: languages/vue.php:1521
7032
  msgid "ExactMetrics Widget Hidden"
7033
  msgstr ""
7034
 
7035
- #: languages/vue.php:1524
7036
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7037
  msgstr ""
7038
 
7039
  #. Translators: Error status and error text.
7040
- #: languages/vue.php:1528
7041
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7042
  msgstr ""
7043
 
7044
  #. Translators: Error status and error text.
7045
- #: languages/vue.php:1532
7046
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7047
  msgstr ""
7048
 
7049
- #: languages/vue.php:1535
7050
  msgid "You appear to be offline. Settings not saved."
7051
  msgstr ""
7052
 
7053
  #. Translators: Error status and error text.
7054
- #: languages/vue.php:1539
7055
  msgid "Can't authenticate. Error: %1$s, %2$s"
7056
  msgstr ""
7057
 
7058
  #. Translators: Error status and error text.
7059
- #: languages/vue.php:1543
7060
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7061
  msgstr ""
7062
 
7063
  #. Translators: Error status and error text.
7064
- #: languages/vue.php:1547
7065
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7066
  msgstr ""
7067
 
7068
- #: languages/vue.php:1550
7069
  msgid "Still Calculating..."
7070
  msgstr ""
7071
 
7072
- #: languages/vue.php:1553
7073
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7074
  msgstr ""
7075
 
7076
- #: languages/vue.php:1556
7077
  msgid "Back to Overview Report"
7078
  msgstr ""
7079
 
7080
- #: languages/vue.php:1559
7081
  msgid "Your 2020 Analytics Report"
7082
  msgstr ""
7083
 
7084
- #: languages/vue.php:1562
7085
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7086
  msgstr ""
7087
 
7088
- #: languages/vue.php:1565
7089
  msgid "Audience"
7090
  msgstr ""
7091
 
7092
- #: languages/vue.php:1568
7093
  msgid "Congrats"
7094
  msgstr ""
7095
 
7096
- #: languages/vue.php:1571
7097
  msgid "Your website was quite popular this year! "
7098
  msgstr ""
7099
 
7100
- #: languages/vue.php:1574
7101
  msgid "You had "
7102
  msgstr ""
7103
 
7104
- #: languages/vue.php:1577
7105
  msgid " visitors!"
7106
  msgstr ""
7107
 
7108
- #: languages/vue.php:1580
7109
  msgid " visitors"
7110
  msgstr ""
7111
 
7112
- #: languages/vue.php:1583
7113
  msgid "Total Visitors"
7114
  msgstr ""
7115
 
7116
- #: languages/vue.php:1586
7117
  msgid "Total Sessions"
7118
  msgstr ""
7119
 
7120
- #: languages/vue.php:1589
7121
  msgid "Visitors by Month"
7122
  msgstr ""
7123
 
7124
- #: languages/vue.php:1592
7125
  msgid "January 1, 2020 - December 31, 2020"
7126
  msgstr ""
7127
 
7128
- #: languages/vue.php:1595
7129
  msgid "A Tip for 2021"
7130
  msgstr ""
7131
 
7132
- #: languages/vue.php:1598
7133
  msgid "Demographics"
7134
  msgstr ""
7135
 
7136
- #: languages/vue.php:1601
7137
  msgid "#1"
7138
  msgstr ""
7139
 
7140
- #: languages/vue.php:1604
7141
  msgid "You Top 5 Countries"
7142
  msgstr ""
7143
 
7144
- #: languages/vue.php:1607
7145
  msgid "Let’s get to know your visitors a little better, shall we?"
7146
  msgstr ""
7147
 
7148
- #: languages/vue.php:1610
7149
  msgid "Gender"
7150
  msgstr ""
7151
 
7152
- #: languages/vue.php:1613
7153
  msgid "Female"
7154
  msgstr ""
7155
 
7156
- #: languages/vue.php:1616
7157
  msgid "Women"
7158
  msgstr ""
7159
 
7160
- #: languages/vue.php:1619
7161
  msgid "Male"
7162
  msgstr ""
7163
 
7164
- #: languages/vue.php:1622
7165
  msgid "Average Age"
7166
  msgstr ""
7167
 
7168
- #: languages/vue.php:1625
7169
  msgid "Behavior"
7170
  msgstr ""
7171
 
7172
- #: languages/vue.php:1628
7173
  msgid "Your Top 5 Pages"
7174
  msgstr ""
7175
 
7176
- #: languages/vue.php:1631
7177
  msgid "Time Spent on Site"
7178
  msgstr ""
7179
 
7180
- #: languages/vue.php:1634
7181
  msgid "minutes"
7182
  msgstr ""
7183
 
7184
- #: languages/vue.php:1637
7185
  msgid "Device Type"
7186
  msgstr ""
7187
 
7188
- #: languages/vue.php:1640
7189
  msgid "A Tip For 2021"
7190
  msgstr ""
7191
 
7192
- #: languages/vue.php:1643
7193
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7194
  msgstr ""
7195
 
7196
- #: languages/vue.php:1646
7197
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7198
  msgstr ""
7199
 
7200
- #: languages/vue.php:1649
7201
  msgid "So, where did all of these visitors come from?"
7202
  msgstr ""
7203
 
7204
- #: languages/vue.php:1652
7205
  msgid "Clicks"
7206
  msgstr ""
7207
 
7208
- #: languages/vue.php:1655
7209
  msgid "Your Top 5 Keywords"
7210
  msgstr ""
7211
 
7212
- #: languages/vue.php:1658
7213
  msgid "What keywords visitors searched for to find your site"
7214
  msgstr ""
7215
 
7216
- #: languages/vue.php:1661
7217
  msgid "Your Top 5 Referrals"
7218
  msgstr ""
7219
 
7220
- #: languages/vue.php:1664
7221
  msgid "The websites that link back to your website"
7222
  msgstr ""
7223
 
7224
- #: languages/vue.php:1667
7225
  msgid "Opportunity"
7226
  msgstr ""
7227
 
7228
- #: languages/vue.php:1670
7229
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7230
  msgstr ""
7231
 
7232
- #: languages/vue.php:1673
7233
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7234
  msgstr ""
7235
 
7236
- #: languages/vue.php:1676
7237
  msgid "Thank you for using ExactMetrics!"
7238
  msgstr ""
7239
 
7240
- #: languages/vue.php:1679
7241
  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."
7242
  msgstr ""
7243
 
7244
- #: languages/vue.php:1682
7245
  msgid "Here's to an amazing 2021!"
7246
  msgstr ""
7247
 
7248
- #: languages/vue.php:1685
7249
  msgid "Enjoying ExactMetrics"
7250
  msgstr ""
7251
 
7252
- #: languages/vue.php:1688
7253
  msgid "Leave a five star review!"
7254
  msgstr ""
7255
 
7256
- #: languages/vue.php:1691
7257
  msgid "Syed Balkhi"
7258
  msgstr ""
7259
 
7260
- #: languages/vue.php:1694
7261
  msgid "Chris Christoff"
7262
  msgstr ""
7263
 
7264
- #: languages/vue.php:1697
7265
  msgid "Write Review"
7266
  msgstr ""
7267
 
7268
- #: languages/vue.php:1700
7269
  msgid "Did you know over 10 million websites use our plugins?"
7270
  msgstr ""
7271
 
7272
- #: languages/vue.php:1703
7273
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7274
  msgstr ""
7275
 
7276
- #: languages/vue.php:1706
7277
  msgid "Join our Communities!"
7278
  msgstr ""
7279
 
7280
- #: languages/vue.php:1709
7281
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7282
  msgstr ""
7283
 
7284
- #: languages/vue.php:1712
7285
  msgid "Facebook Group"
7286
  msgstr ""
7287
 
7288
- #: languages/vue.php:1715
7289
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7290
  msgstr ""
7291
 
7292
- #: languages/vue.php:1718
7293
  msgid "Join Now...It’s Free!"
7294
  msgstr ""
7295
 
7296
- #: languages/vue.php:1721
7297
  msgid "WordPress Tutorials by WPBeginner"
7298
  msgstr ""
7299
 
7300
- #: languages/vue.php:1724
7301
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7302
  msgstr ""
7303
 
7304
- #: languages/vue.php:1727
7305
  msgid "Visit WPBeginner"
7306
  msgstr ""
7307
 
7308
- #: languages/vue.php:1730
7309
  msgid "Follow Us!"
7310
  msgstr ""
7311
 
7312
- #: languages/vue.php:1733
7313
  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."
7314
  msgstr ""
7315
 
7316
- #: languages/vue.php:1736
7317
  msgid "Copyright ExactMetrics, 2021"
7318
  msgstr ""
7319
 
7320
- #: languages/vue.php:1739
7321
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7322
  msgstr ""
7323
 
7324
- #: languages/vue.php:1745
7325
  msgid "January"
7326
  msgstr ""
7327
 
7328
- #: languages/vue.php:1748
7329
  msgid "February"
7330
  msgstr ""
7331
 
7332
- #: languages/vue.php:1751
7333
  msgid "March"
7334
  msgstr ""
7335
 
7336
- #: languages/vue.php:1754
7337
  msgid "April"
7338
  msgstr ""
7339
 
7340
- #: languages/vue.php:1757
7341
  msgid "May"
7342
  msgstr ""
7343
 
7344
- #: languages/vue.php:1760
7345
  msgid "June"
7346
  msgstr ""
7347
 
7348
- #: languages/vue.php:1763
7349
  msgid "July"
7350
  msgstr ""
7351
 
7352
- #: languages/vue.php:1766
7353
  msgid "August"
7354
  msgstr ""
7355
 
7356
- #: languages/vue.php:1769
7357
  msgid "September"
7358
  msgstr ""
7359
 
7360
- #: languages/vue.php:1772
7361
  msgid "October"
7362
  msgstr ""
7363
 
7364
- #: languages/vue.php:1775
7365
  msgid "November"
7366
  msgstr ""
7367
 
7368
- #: languages/vue.php:1778
7369
  msgid "December"
7370
  msgstr ""
7371
 
7372
  #. Translators: Number of visitors.
7373
- #: languages/vue.php:1782
7374
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7375
  msgstr ""
7376
 
7377
- #: languages/vue.php:1785
7378
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7379
  msgstr ""
7380
 
7381
  #. Translators: Number of visitors.
7382
- #: languages/vue.php:1789
7383
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7384
  msgstr ""
7385
 
7386
  #. Translators: Number of visitors.
7387
- #: languages/vue.php:1793
7388
  msgid "%s Visitors"
7389
  msgstr ""
7390
 
7391
  #. Translators: Percent and Number of visitors.
7392
- #: languages/vue.php:1797
7393
  msgid "%1$s&#37 of your visitors were %2$s"
7394
  msgstr ""
7395
 
7396
  #. Translators: Number of visitors and their age.
7397
- #: languages/vue.php:1801
7398
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7399
  msgstr ""
7400
 
7401
- #: languages/vue.php:1804
7402
  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>"
7403
  msgstr ""
7404
 
7405
  #. Translators: Number of minutes spent on site.
7406
- #: languages/vue.php:1808
7407
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7408
  msgstr ""
7409
 
7410
  #. Translators: Name of device type.
7411
- #: languages/vue.php:1812
7412
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7413
  msgstr ""
7414
 
7415
  #. Translators: Number of visitors and device percentage.
7416
- #: languages/vue.php:1816
7417
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7418
  msgstr ""
7419
 
7420
- #: languages/vue.php:1819
7421
  msgid "Desktop"
7422
  msgstr ""
7423
 
7424
- #: languages/vue.php:1822
7425
  msgid "Tablet"
7426
  msgstr ""
7427
 
7428
- #: languages/vue.php:1825
7429
  msgid "Mobile"
7430
  msgstr ""
7431
 
7432
- #: languages/vue.php:1828
7433
  msgid "Force Deauthenticate"
7434
  msgstr ""
7435
 
7436
- #: languages/vue.php:1831
7437
  msgid "Disconnect ExactMetrics"
7438
  msgstr ""
7439
 
7440
- #: languages/vue.php:1834
7441
  msgid "Authenticating"
7442
  msgstr ""
7443
 
7444
- #: languages/vue.php:1837
7445
  msgid "Verifying Credentials"
7446
  msgstr ""
7447
 
7448
- #: languages/vue.php:1840
7449
  msgid "Your site is connected to ExactMetrics!"
7450
  msgstr ""
7451
 
7452
- #: languages/vue.php:1843
7453
  msgid "Deauthenticating"
7454
  msgstr ""
7455
 
7456
- #: languages/vue.php:1846
7457
  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."
7458
  msgstr ""
7459
 
7460
- #: languages/vue.php:1849
7461
- #: languages/vue.php:1921
7462
  msgid "Connect ExactMetrics"
7463
  msgstr ""
7464
 
7465
- #: languages/vue.php:1852
7466
  msgid "Verify Credentials"
7467
  msgstr ""
7468
 
7469
- #: languages/vue.php:1858
7470
  msgid "Website Profile"
7471
  msgstr ""
7472
 
7473
- #: languages/vue.php:1861
7474
  msgid "Active Profile"
7475
  msgstr ""
7476
 
7477
- #: languages/vue.php:1864
7478
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7479
  msgstr ""
7480
 
7481
- #: languages/vue.php:1867
7482
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7483
  msgstr ""
7484
 
7485
- #: languages/vue.php:1870
7486
  msgid "Dual Tracking Profile"
7487
  msgstr ""
7488
 
7489
- #: languages/vue.php:1873
7490
  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."
7491
  msgstr ""
7492
 
7493
- #: languages/vue.php:1876
7494
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7495
  msgstr ""
7496
 
7497
- #: languages/vue.php:1879
7498
  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."
7499
  msgstr ""
7500
 
7501
- #: languages/vue.php:1882
7502
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7503
  msgstr ""
7504
 
7505
- #: languages/vue.php:1885
7506
  msgid "Measurement Protocol API Secret"
7507
  msgstr ""
7508
 
7509
- #: languages/vue.php:1888
7510
  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."
7511
  msgstr ""
7512
 
7513
- #: languages/vue.php:1891
7514
  msgid "Classic mode"
7515
  msgstr ""
7516
 
7517
- #: languages/vue.php:1894
7518
  msgid "Proceed"
7519
  msgstr ""
7520
 
7521
- #: languages/vue.php:1897
7522
  msgid "Connection Information"
7523
  msgstr ""
7524
 
7525
- #: languages/vue.php:1900
7526
  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."
7527
  msgstr ""
7528
 
7529
- #: languages/vue.php:1903
7530
  msgid "Hostname"
7531
  msgstr ""
7532
 
7533
- #: languages/vue.php:1906
7534
  msgid "FTP Username"
7535
  msgstr ""
7536
 
7537
- #: languages/vue.php:1909
7538
  msgid "FTP Password"
7539
  msgstr ""
7540
 
7541
- #: languages/vue.php:1912
7542
  msgid "This password will not be stored on the server."
7543
  msgstr ""
7544
 
7545
- #: languages/vue.php:1915
7546
  msgid "Connection Type"
7547
  msgstr ""
7548
 
7549
- #: languages/vue.php:1918
7550
  msgid "Cancel"
7551
  msgstr ""
7552
 
7553
- #: languages/vue.php:1924
7554
  msgid "Website profile"
7555
  msgstr ""
7556
 
7557
- #: languages/vue.php:1927
7558
  msgid "Active profile"
7559
  msgstr ""
7560
 
7561
- #: languages/vue.php:1930
7562
  msgid "Skip and Keep Connection"
7563
  msgstr ""
7564
 
7565
  #. Translators: Replaced with the number of days
7566
- #: languages/vue.php:1934
7567
  msgid "vs. Previous Day"
7568
  msgstr ""
7569
 
7570
- #: languages/vue.php:1937
7571
  msgid "No change"
7572
  msgstr ""
7573
 
7574
- #: languages/vue.php:1940
7575
  msgid "Choose Theme"
7576
  msgstr ""
7577
 
7578
- #: languages/vue.php:1943
7579
  msgid "Widget Styling"
7580
  msgstr ""
7581
 
7582
- #: languages/vue.php:1946
7583
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7584
  msgstr ""
7585
 
7586
- #: languages/vue.php:1949
7587
  msgid "Sort By"
7588
  msgstr ""
7589
 
7590
- #: languages/vue.php:1952
7591
  msgid "Choose how you'd like the widget to determine your popular posts."
7592
  msgstr ""
7593
 
7594
- #: languages/vue.php:1955
7595
  msgid "Display Title"
7596
  msgstr ""
7597
 
7598
- #: languages/vue.php:1961
7599
  msgid "Title your widget and set its display preferences."
7600
  msgstr ""
7601
 
7602
- #: languages/vue.php:1964
7603
  msgid "Include in Post Types"
7604
  msgstr ""
7605
 
7606
- #: languages/vue.php:1967
7607
  msgid "Exclude from specific posts"
7608
  msgstr ""
7609
 
7610
  #. Translators: Placeholders make the text bold.
7611
- #: languages/vue.php:1971
7612
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7613
  msgstr ""
7614
 
7615
  #. Translators: Placeholders make the text bold.
7616
- #: languages/vue.php:1975
7617
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7618
  msgstr ""
7619
 
7620
- #: languages/vue.php:1978
7621
  msgid "Loading Themes"
7622
  msgstr ""
7623
 
7624
  #. Translators: placeholders make text small.
7625
- #: languages/vue.php:1982
7626
  msgid "Default Styles %1$s- As seen above.%2$s"
7627
  msgstr ""
7628
 
7629
  #. Translators: placeholders make text small.
7630
- #: languages/vue.php:1986
7631
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7632
  msgstr ""
7633
 
7634
  #. Translators: placeholders make text small.
7635
- #: languages/vue.php:1990
7636
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7637
  msgstr ""
7638
 
7639
  #. Translators: placeholders make text small.
7640
- #: languages/vue.php:1994
7641
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7642
  msgstr ""
7643
 
7644
  #. Translators: placeholders make text small.
7645
- #: languages/vue.php:1998
7646
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7647
  msgstr ""
7648
 
7649
- #: languages/vue.php:2001
7650
  msgid "Placement"
7651
  msgstr ""
7652
 
7653
- #: languages/vue.php:2004
7654
  msgid "Choose how you'd like to place the widget."
7655
  msgstr ""
7656
 
7657
- #: languages/vue.php:2007
7658
  msgid "Insert After"
7659
  msgstr ""
7660
 
7661
- #: languages/vue.php:2010
7662
  msgid "Choose where in the post body the widget will be placed."
7663
  msgstr ""
7664
 
7665
- #: languages/vue.php:2014
7666
  msgid "Customize Design"
7667
  msgstr ""
7668
 
7669
- #: languages/vue.php:2017
7670
  msgid "words"
7671
  msgstr ""
7672
 
7673
- #: languages/vue.php:2020
7674
  msgid "Please select at least one post to display."
7675
  msgstr ""
7676
 
7677
  #. Translators: placeholders make text small.
7678
- #: languages/vue.php:2024
7679
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7680
  msgstr ""
7681
 
7682
  #. Translators: placeholders make text small.
7683
- #: languages/vue.php:2028
7684
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7685
  msgstr ""
7686
 
7687
- #: languages/vue.php:2031
7688
  msgid "Caching"
7689
  msgstr ""
7690
 
7691
- #: languages/vue.php:2034
7692
  msgid "Enable Data Caching"
7693
  msgstr ""
7694
 
7695
- #: languages/vue.php:2037
7696
  msgid "Refresh Cache Every"
7697
  msgstr ""
7698
 
7699
- #: languages/vue.php:2040
7700
  msgid "Choose how often to refresh the cache."
7701
  msgstr ""
7702
 
7703
- #: languages/vue.php:2043
7704
  msgid "Enable Ajaxify"
7705
  msgstr ""
7706
 
7707
- #: languages/vue.php:2046
7708
  msgid "Ajaxify Widget"
7709
  msgstr ""
7710
 
7711
- #: languages/vue.php:2049
7712
  msgid "Use to bypass page caching."
7713
  msgstr ""
7714
 
7715
- #: languages/vue.php:2052
7716
  msgid "Empty Cache"
7717
  msgstr ""
7718
 
7719
- #: languages/vue.php:2055
7720
  msgid "Click to manually wipe the cache right now."
7721
  msgstr ""
7722
 
7723
- #: languages/vue.php:2058
7724
  msgid "Popular posts cache emptied"
7725
  msgstr ""
7726
 
7727
- #: languages/vue.php:2061
7728
  msgid "Error emptying the popular posts cache. Please try again."
7729
  msgstr ""
7730
 
7731
- #: languages/vue.php:2064
7732
  msgid "Last 30 Days Analytics for "
7733
  msgstr ""
7734
 
7735
- #: languages/vue.php:2067
7736
  msgid "Your Website"
7737
  msgstr ""
7738
 
7739
- #: languages/vue.php:2070
7740
  msgid "Avg. Duration"
7741
  msgstr ""
7742
 
7743
- #: languages/vue.php:2073
7744
  msgid "More data is available"
7745
  msgstr ""
7746
 
7747
- #: languages/vue.php:2076
7748
  msgid "Want to see page-specific stats?"
7749
  msgstr ""
7750
 
7751
- #: languages/vue.php:2079
7752
  msgid "You appear to be offline. WPForms not installed."
7753
  msgstr ""
7754
 
7755
  #. Translators: Error status and error text.
7756
- #: languages/vue.php:2083
7757
  msgid "Can't activate addon. Error: %1$s, %2$s"
7758
  msgstr ""
7759
 
7760
- #: languages/vue.php:2086
7761
  msgid "You appear to be offline. Addon not activated."
7762
  msgstr ""
7763
 
7764
  #. Translators: Error status and error text.
7765
- #: languages/vue.php:2090
7766
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7767
  msgstr ""
7768
 
7769
- #: languages/vue.php:2093
7770
  msgid "You appear to be offline. Addon not deactivated."
7771
  msgstr ""
7772
 
7773
  #. Translators: Error status and error text.
7774
- #: languages/vue.php:2097
7775
  msgid "Can't install plugin. Error: %1$s, %2$s"
7776
  msgstr ""
7777
 
7778
- #: languages/vue.php:2100
7779
  msgid "You appear to be offline. Plugin not installed."
7780
  msgstr ""
7781
 
7782
  #. Translators: Error status and error text.
7783
- #: languages/vue.php:2104
7784
  msgid "Can't install addon. Error: %1$s, %2$s"
7785
  msgstr ""
7786
 
7787
- #: languages/vue.php:2107
7788
  msgid "You appear to be offline. Addon not installed."
7789
  msgstr ""
7790
 
7791
  #. Translators: Error status and error text.
7792
- #: languages/vue.php:2111
7793
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7794
  msgstr ""
7795
 
7796
- #: languages/vue.php:2114
7797
  msgid "Network Active"
7798
  msgstr ""
7799
 
7800
- #: languages/vue.php:2117
7801
  msgid "Active"
7802
  msgstr ""
7803
 
7804
- #: languages/vue.php:2120
7805
  msgid "Inactive"
7806
  msgstr ""
7807
 
7808
  #. Translators: Placeholder for the addon status (installed, active, etc).
7809
- #: languages/vue.php:2124
7810
  msgid "Status: %s"
7811
  msgstr ""
7812
 
7813
- #: languages/vue.php:2127
7814
  msgid "Not Installed"
7815
  msgstr ""
7816
 
7817
  #. Translators: Makes text bold and adds smiley.
7818
- #: languages/vue.php:2131
7819
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7820
  msgstr ""
7821
 
7822
  #. Translators: Makes text green.
7823
- #: languages/vue.php:2135
7824
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
7825
  msgstr ""
7826
 
7827
- #: languages/vue.php:2138
7828
  msgid "Unlock All Features and Upgrade to Pro"
7829
  msgstr ""
7830
 
7831
  #. Translators: Make text green and add smiley face.
7832
- #: languages/vue.php:2142
7833
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7834
  msgstr ""
7835
 
7836
  #. Translators: Make text green.
7837
- #: languages/vue.php:2146
7838
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7839
  msgstr ""
7840
 
7841
- #: languages/vue.php:2149
7842
  msgid "Unlock PRO Features Now"
7843
  msgstr ""
7844
 
7845
- #: languages/vue.php:2153
7846
  msgid "Paste your license key here"
7847
  msgstr ""
7848
 
7849
- #: languages/vue.php:2157
7850
  msgid "Verify"
7851
  msgstr ""
7852
 
7853
  #. Translators: Add link to retrieve license from account area.
7854
- #: languages/vue.php:2161
7855
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7856
  msgstr ""
7857
 
7858
- #: languages/vue.php:2165
7859
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7860
  msgstr ""
7861
 
7862
- #: languages/vue.php:2168
7863
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7864
  msgstr ""
7865
 
7866
- #: languages/vue.php:2171
7867
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7868
  msgstr ""
7869
 
7870
- #: languages/vue.php:2174
7871
  msgid "1,938"
7872
  msgstr ""
7873
 
7874
- #: languages/vue.php:2177
7875
  msgid "2+ Million Active Installs"
7876
  msgstr ""
7877
 
7878
- #: languages/vue.php:2180
7879
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
7880
  msgstr ""
7881
 
7882
- #: languages/vue.php:2183
7883
  msgid "Set up the proper SEO foundations in less than 10 minutes."
7884
  msgstr ""
7885
 
7886
- #: languages/vue.php:2186
7887
  msgid "SEO Audit Checklist"
7888
  msgstr ""
7889
 
7890
- #: languages/vue.php:2189
7891
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
7892
  msgstr ""
7893
 
7894
- #: languages/vue.php:2192
7895
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
7896
  msgstr ""
7897
 
7898
- #: languages/vue.php:2195
7899
  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."
7900
  msgstr ""
7901
 
7902
- #: languages/vue.php:2198
7903
  msgid "Get AIOSEO for WordPress"
7904
  msgstr ""
7905
 
7906
- #: languages/vue.php:2201
7907
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
7908
  msgstr ""
7909
 
7910
- #: languages/vue.php:2204
7911
  msgid "Try it out today, for free."
7912
  msgstr ""
7913
 
7914
- #: languages/vue.php:2207
7915
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
7916
  msgstr ""
7917
 
7918
- #: languages/vue.php:2210
7919
  msgid "Activate and Install the Plugin with just one click!"
7920
  msgstr ""
7921
 
7922
- #: languages/vue.php:2213
7923
  msgid "Installing AIOSEO..."
7924
  msgstr ""
7925
 
7926
- #: languages/vue.php:2216
7927
  msgid "Congrats! All-in-One SEO Installed."
7928
  msgstr ""
7929
 
7930
- #: languages/vue.php:2219
7931
  msgid "Switch to AIOSEO"
7932
  msgstr ""
7933
 
7934
- #: languages/vue.php:2222
7935
  msgid "Installation Failed. Please refresh and try again."
7936
  msgstr ""
7937
 
7938
- #: languages/vue.php:2225
7939
  msgid "Activating AIOSEO..."
7940
  msgstr ""
7941
 
7942
- #: languages/vue.php:2228
7943
  msgid "Activate AIOSEO"
7944
  msgstr ""
7945
 
7946
- #: languages/vue.php:2231
7947
  msgid "Activation Failed. Please refresh and try again."
7948
  msgstr ""
7949
 
7950
- #: languages/vue.php:2234
7951
  msgid "Unlock Form Tracking"
7952
  msgstr ""
7953
 
7954
- #: languages/vue.php:2237
7955
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
7956
  msgstr ""
7957
 
7958
- #: languages/vue.php:2240
7959
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
7960
  msgstr ""
7961
 
7962
- #: languages/vue.php:2243
7963
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
7964
  msgstr ""
7965
 
7966
- #: languages/vue.php:2246
7967
  msgid "Show"
7968
  msgstr ""
7969
 
7970
- #: languages/vue.php:2249
7971
  msgid "File imported"
7972
  msgstr ""
7973
 
7974
- #: languages/vue.php:2252
7975
  msgid "Settings successfully updated!"
7976
  msgstr ""
7977
 
7978
- #: languages/vue.php:2255
7979
  msgid "Error importing settings"
7980
  msgstr ""
7981
 
7982
- #: languages/vue.php:2258
7983
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
7984
  msgstr ""
7985
 
7986
- #: languages/vue.php:2261
7987
  msgid "Import/Export"
7988
  msgstr ""
7989
 
7990
- #: languages/vue.php:2264
7991
  msgid "Import"
7992
  msgstr ""
7993
 
7994
- #: languages/vue.php:2267
7995
  msgid "Import settings from another ExactMetrics website."
7996
  msgstr ""
7997
 
7998
- #: languages/vue.php:2270
7999
  msgid "Export"
8000
  msgstr ""
8001
 
8002
- #: languages/vue.php:2273
8003
  msgid "Export settings to import into another ExactMetrics install."
8004
  msgstr ""
8005
 
8006
- #: languages/vue.php:2276
8007
  msgid "Import Settings"
8008
  msgstr ""
8009
 
8010
- #: languages/vue.php:2279
8011
  msgid "Export Settings"
8012
  msgstr ""
8013
 
8014
- #: languages/vue.php:2282
8015
  msgid "Please choose a file to import"
8016
  msgstr ""
8017
 
8018
- #: languages/vue.php:2285
8019
  msgid "Click Choose file below to select the settings export file from another site."
8020
  msgstr ""
8021
 
8022
- #: languages/vue.php:2288
8023
  msgid "Use the button below to export a file with your ExactMetrics settings."
8024
  msgstr ""
8025
 
8026
- #: languages/vue.php:2291
8027
  msgid "Choose file"
8028
  msgstr ""
8029
 
8030
- #: languages/vue.php:2294
8031
  msgid "No file chosen"
8032
  msgstr ""
8033
 
8034
- #: languages/vue.php:2297
8035
  msgid "Uploading file..."
8036
  msgstr ""
8037
 
8038
- #: languages/vue.php:2300
8039
  msgid "Custom code"
8040
  msgstr ""
8041
 
8042
  #. Translators: Adds a link to the Google reference.
8043
- #: languages/vue.php:2304
8044
  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."
8045
  msgstr ""
8046
 
8047
- #: languages/vue.php:2310
8048
  msgid "Automatic Updates"
8049
  msgstr ""
8050
 
8051
- #: languages/vue.php:2313
8052
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8053
  msgstr ""
8054
 
8055
- #: languages/vue.php:2316
8056
  msgid "Hide Admin Bar Reports"
8057
  msgstr ""
8058
 
8059
  #. Translators: placeholders make text small.
8060
- #: languages/vue.php:2320
8061
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8062
  msgstr ""
8063
 
8064
  #. Translators: placeholders make text small.
8065
- #: languages/vue.php:2324
8066
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8067
  msgstr ""
8068
 
8069
  #. Translators: placeholders make text small.
8070
- #: languages/vue.php:2328
8071
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8072
  msgstr ""
8073
 
8074
  #. Translators: placeholders make text small.
8075
- #: languages/vue.php:2332
8076
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8077
  msgstr ""
8078
 
8079
  #. Translators: placeholders make text small.
8080
- #: languages/vue.php:2336
8081
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8082
  msgstr ""
8083
 
8084
  #. Translators: placeholders make text small.
8085
- #: languages/vue.php:2340
8086
  msgid "None %1$s- Manually update everything.%2$s"
8087
  msgstr ""
8088
 
8089
  #. Translators: Adds a link to the general settings tab.
8090
- #: languages/vue.php:2344
8091
  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."
8092
  msgstr ""
8093
 
8094
- #: languages/vue.php:2347
8095
  msgid "Permissions"
8096
  msgstr ""
8097
 
8098
- #: languages/vue.php:2350
8099
  msgid "Export PDF Reports"
8100
  msgstr ""
8101
 
8102
- #: languages/vue.php:2353
8103
  msgid "Allow These User Roles to See Reports"
8104
  msgstr ""
8105
 
8106
- #: languages/vue.php:2356
8107
  msgid "Users that have at least one of these roles will be able to view the reports."
8108
  msgstr ""
8109
 
8110
- #: languages/vue.php:2359
8111
  msgid "Allow These User Roles to Save Settings"
8112
  msgstr ""
8113
 
8114
- #: languages/vue.php:2362
8115
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8116
  msgstr ""
8117
 
8118
- #: languages/vue.php:2365
8119
  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."
8120
  msgstr ""
8121
 
8122
- #: languages/vue.php:2368
8123
  msgid "Exclude These User Roles From Tracking"
8124
  msgstr ""
8125
 
8126
- #: languages/vue.php:2371
8127
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8128
  msgstr ""
8129
 
8130
- #: languages/vue.php:2374
8131
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8132
  msgstr ""
8133
 
8134
- #: languages/vue.php:2377
8135
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8136
  msgstr ""
8137
 
8138
- #: languages/vue.php:2380
8139
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8140
  msgstr ""
8141
 
8142
- #: languages/vue.php:2383
8143
  msgid "Over 200,000 websites use Pretty Links!"
8144
  msgstr ""
8145
 
8146
- #: languages/vue.php:2386
8147
  msgid "Install Pretty Links"
8148
  msgstr ""
8149
 
8150
- #: languages/vue.php:2389
8151
  msgid "Pretty Links Installed & Activated"
8152
  msgstr ""
8153
 
8154
- #: languages/vue.php:2392
8155
  msgid "Download Pretty Links"
8156
  msgstr ""
8157
 
8158
- #: languages/vue.php:2395
8159
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8160
  msgstr ""
8161
 
8162
- #: languages/vue.php:2398
8163
  msgid "Activate Pretty Links"
8164
  msgstr ""
8165
 
8166
- #: languages/vue.php:2401
8167
  msgid "Activating Pretty Links..."
8168
  msgstr ""
8169
 
8170
- #: languages/vue.php:2404
8171
  msgid "Create New Pretty Link"
8172
  msgstr ""
8173
 
8174
- #: languages/vue.php:2407
8175
  msgid "Create a New Pretty Link"
8176
  msgstr ""
8177
 
8178
- #: languages/vue.php:2410
8179
  msgid "Grab your campaign link and paste it into the Target URL field."
8180
  msgstr ""
8181
 
8182
- #: languages/vue.php:2413
8183
  msgid "Custom Campaign Parameters"
8184
  msgstr ""
8185
 
8186
- #: languages/vue.php:2416
8187
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8188
  msgstr ""
8189
 
8190
- #: languages/vue.php:2419
8191
  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."
8192
  msgstr ""
8193
 
8194
  #. Translators: Marks the field as required.
8195
- #: languages/vue.php:2423
8196
  msgid "Website URL %s"
8197
  msgstr ""
8198
 
8199
  #. Translators: Display the current website url in italic.
8200
- #: languages/vue.php:2427
8201
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8202
  msgstr ""
8203
 
8204
  #. Translators: Marks the field as required.
8205
- #: languages/vue.php:2431
8206
  msgid "Campaign Source %s"
8207
  msgstr ""
8208
 
8209
  #. Translators: Make the text italic.
8210
- #: languages/vue.php:2435
8211
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8212
  msgstr ""
8213
 
8214
  #. Translators: Make the text italic.
8215
- #: languages/vue.php:2439
8216
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8217
  msgstr ""
8218
 
8219
  #. Translators: Make the text italic.
8220
- #: languages/vue.php:2443
8221
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8222
  msgstr ""
8223
 
8224
- #: languages/vue.php:2446
8225
  msgid "Enter the paid keyword"
8226
  msgstr ""
8227
 
8228
- #: languages/vue.php:2449
8229
  msgid "Enter something to differentiate ads"
8230
  msgstr ""
8231
 
8232
- #: languages/vue.php:2452
8233
  msgid "Use Fragment"
8234
  msgstr ""
8235
 
8236
  #. Translators: Make the text bold.
8237
- #: languages/vue.php:2456
8238
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8239
  msgstr ""
8240
 
8241
- #: languages/vue.php:2459
8242
  msgid "URL to use"
8243
  msgstr ""
8244
 
8245
- #: languages/vue.php:2462
8246
  msgid "(Updates automatically)"
8247
  msgstr ""
8248
 
8249
- #: languages/vue.php:2465
8250
  msgid "Copy to Clipboard"
8251
  msgstr ""
8252
 
8253
- #: languages/vue.php:2468
8254
  msgid "Copy to Pretty Links"
8255
  msgstr ""
8256
 
8257
- #: languages/vue.php:2471
8258
  msgid "Make your campaign links prettier!"
8259
  msgstr ""
8260
 
8261
- #: languages/vue.php:2474
8262
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8263
  msgstr ""
8264
 
8265
- #: languages/vue.php:2477
8266
  msgid "More Information & Examples"
8267
  msgstr ""
8268
 
8269
- #: languages/vue.php:2480
8270
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8271
  msgstr ""
8272
 
8273
- #: languages/vue.php:2483
8274
  msgid "Campaign Source"
8275
  msgstr ""
8276
 
8277
- #: languages/vue.php:2486
8278
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8279
  msgstr ""
8280
 
8281
- #: languages/vue.php:2489
8282
  msgid "Campaign Medium"
8283
  msgstr ""
8284
 
8285
- #: languages/vue.php:2492
8286
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8287
  msgstr ""
8288
 
8289
- #: languages/vue.php:2495
8290
  msgid "Campaign Name"
8291
  msgstr ""
8292
 
8293
- #: languages/vue.php:2498
8294
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8295
  msgstr ""
8296
 
8297
- #: languages/vue.php:2501
8298
  msgid "Campaign Term"
8299
  msgstr ""
8300
 
8301
- #: languages/vue.php:2504
8302
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8303
  msgstr ""
8304
 
8305
- #: languages/vue.php:2507
8306
  msgid "Campaign Content"
8307
  msgstr ""
8308
 
8309
- #: languages/vue.php:2510
8310
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8311
  msgstr ""
8312
 
8313
  #. Translators: Example.
8314
- #: languages/vue.php:2514
8315
  msgid "Example: %s"
8316
  msgstr ""
8317
 
8318
  #. Translators: Examples.
8319
- #: languages/vue.php:2518
8320
  msgid "Examples: %s"
8321
  msgstr ""
8322
 
8323
- #: languages/vue.php:2521
8324
  msgid "About Campaigns"
8325
  msgstr ""
8326
 
8327
- #: languages/vue.php:2524
8328
  msgid "About Custom Campaigns"
8329
  msgstr ""
8330
 
8331
- #: languages/vue.php:2527
8332
  msgid "Best Practices for Creating Custom Campaigns"
8333
  msgstr ""
8334
 
8335
- #: languages/vue.php:2530
8336
  msgid "About the Referral Traffic Report"
8337
  msgstr ""
8338
 
8339
- #: languages/vue.php:2533
8340
  msgid "About Traffic Source Dimensions"
8341
  msgstr ""
8342
 
8343
- #: languages/vue.php:2536
8344
  msgid "AdWords Auto-Tagging"
8345
  msgstr ""
8346
 
8347
- #: languages/vue.php:2539
8348
  msgid "Additional Information"
8349
  msgstr ""
8350
 
8351
- #: languages/vue.php:2542
8352
  msgid "Affiliate Links"
8353
  msgstr ""
8354
 
8355
  #. Translators: Add links to documentation.
8356
- #: languages/vue.php:2546
8357
  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."
8358
  msgstr ""
8359
 
8360
- #: languages/vue.php:2549
8361
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8362
  msgstr ""
8363
 
8364
- #: languages/vue.php:2552
8365
  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."
8366
  msgstr ""
8367
 
8368
- #: languages/vue.php:2555
8369
  msgid "Disable the Headline Analyzer"
8370
  msgstr ""
8371
 
8372
  #. Translators: Add line break.
8373
- #: languages/vue.php:2559
8374
  msgid "See All Your Important Store%s Metrics in One Place"
8375
  msgstr ""
8376
 
8377
- #: languages/vue.php:2562
8378
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8379
  msgstr ""
8380
 
8381
- #: languages/vue.php:2565
8382
  msgid "See Your Conversion Rate to Improve Funnel"
8383
  msgstr ""
8384
 
8385
- #: languages/vue.php:2568
8386
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8387
  msgstr ""
8388
 
8389
- #: languages/vue.php:2571
8390
  msgid "See The Total Revenue to Track Growth"
8391
  msgstr ""
8392
 
8393
- #: languages/vue.php:2574
8394
  msgid "See Average Order Value to Find Offer Opportunities"
8395
  msgstr ""
8396
 
8397
- #: languages/vue.php:2577
8398
  msgid "See Your Top Products to See Individual Performance"
8399
  msgstr ""
8400
 
8401
- #: languages/vue.php:2580
8402
  msgid "See your Top Conversion Sources and Focus on what's Working"
8403
  msgstr ""
8404
 
8405
- #: languages/vue.php:2583
8406
  msgid "See The Time it Takes for Customers to Purchase"
8407
  msgstr ""
8408
 
8409
- #: languages/vue.php:2586
8410
  msgid "See How Many Sessions are Needed for a Purchase"
8411
  msgstr ""
8412
 
8413
- #: languages/vue.php:2589
8414
  msgid "Automatically Track Affiliate Sales"
8415
  msgstr ""
8416
 
8417
- #: languages/vue.php:2592
8418
  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."
8419
  msgstr ""
8420
 
8421
- #: languages/vue.php:2595
8422
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8423
  msgstr ""
8424
 
8425
- #: languages/vue.php:2598
8426
  msgid "Cross Domain Tracking"
8427
  msgstr ""
8428
 
8429
  #. Translators: Add links to documentation.
8430
- #: languages/vue.php:2602
8431
  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."
8432
  msgstr ""
8433
 
8434
- #: languages/vue.php:2605
8435
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8436
  msgstr ""
8437
 
8438
- #: languages/vue.php:2608
8439
  msgid "Anonymize IP Addresses"
8440
  msgstr ""
8441
 
8442
- #: languages/vue.php:2611
8443
  msgid "Link Attribution"
8444
  msgstr ""
8445
 
8446
- #: languages/vue.php:2614
8447
  msgid "Enable Enhanced Link Attribution"
8448
  msgstr ""
8449
 
8450
- #: languages/vue.php:2617
8451
  msgid "Enable Anchor Tracking"
8452
  msgstr ""
8453
 
8454
- #: languages/vue.php:2620
8455
  msgid "Enable allowAnchor"
8456
  msgstr ""
8457
 
8458
- #: languages/vue.php:2623
8459
  msgid "Enable allowLinker"
8460
  msgstr ""
8461
 
8462
- #: languages/vue.php:2626
8463
  msgid "Enable Tag Links in RSS"
8464
  msgstr ""
8465
 
8466
- #: languages/vue.php:2629
8467
  msgid "File Downloads"
8468
  msgstr ""
8469
 
8470
- #: languages/vue.php:2632
8471
  msgid "Extensions of Files to Track as Downloads"
8472
  msgstr ""
8473
 
8474
- #: languages/vue.php:2635
8475
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8476
  msgstr ""
8477
 
8478
  #. Translators: Add links to documentation.
8479
- #: languages/vue.php:2639
8480
  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."
8481
  msgstr ""
8482
 
8483
  #. Translators: Add links to documentation.
8484
- #: languages/vue.php:2643
8485
  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."
8486
  msgstr ""
8487
 
8488
  #. Translators: Add links to documentation.
8489
- #: languages/vue.php:2647
8490
  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."
8491
  msgstr ""
8492
 
8493
- #: languages/vue.php:2650
8494
  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."
8495
  msgstr ""
8496
 
8497
  #. Translators: Add links to documentation.
8498
- #: languages/vue.php:2654
8499
  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."
8500
  msgstr ""
8501
 
8502
  #. Translators: Add links to documentation.
8503
- #: languages/vue.php:2658
8504
  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."
8505
  msgstr ""
8506
 
8507
  #. Translators: Add links to documentation.
8508
- #: languages/vue.php:2662
8509
  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."
8510
  msgstr ""
8511
 
8512
- #: languages/vue.php:2665
8513
  msgid "Add domain"
8514
  msgstr ""
8515
 
8516
  #. Translators: Domain name example.
8517
- #: languages/vue.php:2669
8518
  msgid "Domain (example: %s)"
8519
  msgstr ""
8520
 
8521
  #. Translators: Current domain name that should not be used.
8522
- #: languages/vue.php:2673
8523
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8524
  msgstr ""
8525
 
8526
  #. Translators: Adds link to the account area to retreive license key.
8527
- #: languages/vue.php:2677
8528
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8529
  msgstr ""
8530
 
8531
- #: languages/vue.php:2680
8532
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8533
  msgstr ""
8534
 
8535
- #: languages/vue.php:2683
8536
  msgid "Complete Upgrade"
8537
  msgstr ""
8538
 
8539
- #: languages/vue.php:2686
8540
  msgid "Upgrade to Pro Version!"
8541
  msgstr ""
8542
 
8543
  #. Translators: Make text bold.
8544
- #: languages/vue.php:2690
8545
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8546
  msgstr ""
8547
 
8548
- #: languages/vue.php:2693
8549
  msgid "Install All-in-One SEO"
8550
  msgstr ""
8551
 
8552
- #: languages/vue.php:2696
8553
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8554
  msgstr ""
8555
 
8556
- #: languages/vue.php:2699
8557
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8558
  msgstr ""
8559
 
8560
- #: languages/vue.php:2702
8561
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8562
  msgstr ""
8563
 
8564
- #: languages/vue.php:2705
8565
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8566
  msgstr ""
8567
 
8568
- #: languages/vue.php:2708
8569
  msgid "Local SEO"
8570
  msgstr ""
8571
 
8572
- #: languages/vue.php:2711
8573
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8574
  msgstr ""
8575
 
8576
- #: languages/vue.php:2714
8577
  msgid "WooCommerce SEO"
8578
  msgstr ""
8579
 
8580
- #: languages/vue.php:2717
8581
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8582
  msgstr ""
8583
 
8584
- #: languages/vue.php:2720
8585
  msgid "SEO Custom User Roles"
8586
  msgstr ""
8587
 
8588
- #: languages/vue.php:2723
8589
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8590
  msgstr ""
8591
 
8592
- #: languages/vue.php:2726
8593
  msgid "Google News Sitemap"
8594
  msgstr ""
8595
 
8596
- #: languages/vue.php:2729
8597
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8598
  msgstr ""
8599
 
8600
- #: languages/vue.php:2732
8601
  msgid "Smart XML Sitemaps"
8602
  msgstr ""
8603
 
8604
- #: languages/vue.php:2735
8605
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8606
  msgstr ""
8607
 
8608
- #: languages/vue.php:2738
8609
  msgid "Social Media Integration"
8610
  msgstr ""
8611
 
8612
- #: languages/vue.php:2741
8613
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8614
  msgstr ""
8615
 
8616
- #: languages/vue.php:2744
8617
  msgid "TruSEO On-Page Analysis"
8618
  msgstr ""
8619
 
8620
- #: languages/vue.php:2747
8621
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8622
  msgstr ""
8623
 
8624
- #: languages/vue.php:2750
8625
  msgid "& Many More!"
8626
  msgstr ""
8627
 
8628
- #: languages/vue.php:2753
8629
  msgid "Installing. Please wait.."
8630
  msgstr ""
8631
 
8632
- #: languages/vue.php:2756
8633
  msgid "Install All-in-One-SEO"
8634
  msgstr ""
8635
 
8636
- #: languages/vue.php:2759
8637
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8638
  msgstr ""
8639
 
8640
- #: languages/vue.php:2762
8641
  msgid "See Your Top Landing Pages to Improve Engagement"
8642
  msgstr ""
8643
 
8644
- #: languages/vue.php:2765
8645
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8646
  msgstr ""
8647
 
8648
- #: languages/vue.php:2768
8649
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8650
  msgstr ""
8651
 
8652
- #: languages/vue.php:2771
8653
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8654
  msgstr ""
8655
 
8656
- #: languages/vue.php:2774
8657
  msgid "See Your Top Downloads and Improve Conversions"
8658
  msgstr ""
8659
 
8660
- #: languages/vue.php:2777
8661
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8662
  msgstr ""
8663
 
8664
- #: languages/vue.php:2780
8665
  msgid "Welcome to the all-new ExactMetrics"
8666
  msgstr ""
8667
 
8668
- #: languages/vue.php:2783
8669
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8670
  msgstr ""
8671
 
8672
- #: languages/vue.php:2786
8673
  msgid "The New & Improved ExactMetrics includes:"
8674
  msgstr ""
8675
 
8676
- #: languages/vue.php:2789
8677
  msgid "All-New Design"
8678
  msgstr ""
8679
 
8680
- #: languages/vue.php:2792
8681
  msgid "Better Reporting"
8682
  msgstr ""
8683
 
8684
- #: languages/vue.php:2795
8685
  msgid "Better Tracking"
8686
  msgstr ""
8687
 
8688
- #: languages/vue.php:2798
8689
  msgid "Better Support"
8690
  msgstr ""
8691
 
8692
- #: languages/vue.php:2801
8693
  msgid "Continue"
8694
  msgstr ""
8695
 
8696
- #: languages/vue.php:2804
8697
  msgid "Your settings have been automatically transferred."
8698
  msgstr ""
8699
 
8700
- #: languages/vue.php:2807
8701
  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."
8702
  msgstr ""
8703
 
8704
- #: languages/vue.php:2810
8705
  msgid "New"
8706
  msgstr ""
8707
 
8708
- #: languages/vue.php:2813
8709
  msgid "Returning"
8710
  msgstr ""
8711
 
8712
- #: languages/vue.php:2816
8713
  msgid "Top 10 Countries"
8714
  msgstr ""
8715
 
8716
- #: languages/vue.php:2819
8717
  msgid "View Countries Report"
8718
  msgstr ""
8719
 
8720
- #: languages/vue.php:2822
8721
  msgid "Top 10 Referrals"
8722
  msgstr ""
8723
 
8724
- #: languages/vue.php:2825
8725
  msgid "View All Referral Sources"
8726
  msgstr ""
8727
 
8728
- #: languages/vue.php:2828
8729
  msgid "View Full Posts/Pages Report"
8730
  msgstr ""
8731
 
8732
- #: languages/vue.php:2831
8733
  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."
8734
  msgstr ""
8735
 
8736
- #: languages/vue.php:2834
8737
  msgid "This list shows the top countries your website visitors are from."
8738
  msgstr ""
8739
 
8740
- #: languages/vue.php:2837
8741
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8742
  msgstr ""
8743
 
8744
- #: languages/vue.php:2840
8745
  msgid "This feature requires ExactMetrics Pro"
8746
  msgstr ""
8747
 
8748
- #: languages/vue.php:2843
8749
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8750
  msgstr ""
8751
 
8752
- #: languages/vue.php:2846
8753
  msgid "Upgrade to Pro and Unlock Popular Products"
8754
  msgstr ""
8755
 
8756
- #: languages/vue.php:2849
8757
  msgid "View all Pro features"
8758
  msgstr ""
8759
 
8760
- #: languages/vue.php:2852
8761
  msgid "View notifications"
8762
  msgstr ""
8763
 
8764
- #: languages/vue.php:2855
8765
  msgid "Days"
8766
  msgstr ""
8767
 
8768
  #. Translators: placeholders make text small.
8769
- #: languages/vue.php:2859
8770
  msgid "7 days"
8771
  msgstr ""
8772
 
8773
- #: languages/vue.php:2862
8774
  msgid "30 days"
8775
  msgstr ""
8776
 
8777
- #: languages/vue.php:2865
8778
  msgid "Custom"
8779
  msgstr ""
8780
 
8781
- #: languages/vue.php:2868
8782
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8783
  msgstr ""
8784
 
8785
- #: languages/vue.php:2871
8786
  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."
8787
  msgstr ""
8788
 
8789
- #: languages/vue.php:2874
8790
  msgid "Jack Brown"
8791
  msgstr ""
8792
 
8793
- #: languages/vue.php:2877
8794
  msgid "PJB Internet Marketing"
8795
  msgstr ""
8796
 
8797
- #: languages/vue.php:2880
8798
  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."
8799
  msgstr ""
8800
 
8801
- #: languages/vue.php:2883
8802
  msgid "Joel Steinmann"
8803
  msgstr ""
8804
 
8805
- #: languages/vue.php:2886
8806
  msgid "CEO, Solergo"
8807
  msgstr ""
8808
 
8809
- #: languages/vue.php:2889
8810
  msgid "Only Show Posts from These Categories"
8811
  msgstr ""
8812
 
8813
- #: languages/vue.php:2892
8814
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8815
  msgstr ""
8816
 
8817
- #: languages/vue.php:2895
8818
  msgid "Activating..."
8819
  msgstr ""
8820
 
8821
- #: languages/vue.php:2898
8822
  msgid "Deactivating..."
8823
  msgstr ""
8824
 
8825
- #: languages/vue.php:2901
8826
  msgid "Deactivate"
8827
  msgstr ""
8828
 
8829
- #: languages/vue.php:2904
8830
  msgid "Search Console Report"
8831
  msgstr ""
8832
 
8833
- #: languages/vue.php:2907
8834
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8835
  msgstr ""
8836
 
8837
- #: languages/vue.php:2910
8838
  msgid "See Your Top Google Search Terms and Optimize Content"
8839
  msgstr ""
8840
 
8841
- #: languages/vue.php:2913
8842
  msgid "See The Number of Clicks and Track Interests"
8843
  msgstr ""
8844
 
8845
- #: languages/vue.php:2916
8846
  msgid "See The Click-Through-Ratio and Improve SEO"
8847
  msgstr ""
8848
 
8849
- #: languages/vue.php:2919
8850
  msgid "See The Average Results Position and Focus on what works."
8851
  msgstr ""
8852
 
8853
- #: languages/vue.php:2922
8854
  msgid "Ecommerce Report"
8855
  msgstr ""
8856
 
8857
- #: languages/vue.php:2925
8858
  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."
8859
  msgstr ""
8860
 
8861
- #: languages/vue.php:2928
8862
  msgid "See Your Conversion Rate to Improve Your Funnel"
8863
  msgstr ""
8864
 
8865
- #: languages/vue.php:2931
8866
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8867
  msgstr ""
8868
 
8869
- #: languages/vue.php:2934
8870
  msgid "Popular Posts data can be fetched correctly"
8871
  msgstr ""
8872
 
8873
- #: languages/vue.php:2937
8874
  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."
8875
  msgstr ""
8876
 
8877
- #: languages/vue.php:2940
8878
  msgid "Close"
8879
  msgstr ""
8880
 
8881
- #: languages/vue.php:2943
8882
  msgid "Add Top 5 Posts from Google Analytics"
8883
  msgstr ""
8884
 
8885
- #: languages/vue.php:2946
8886
  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."
8887
  msgstr ""
8888
 
8889
- #: languages/vue.php:2949
8890
  msgid "Test Automated Posts"
8891
  msgstr ""
8892
 
8893
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8894
- #: languages/vue.php:2953
8895
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8896
  msgstr ""
8897
 
8898
- #: languages/vue.php:2956
8899
  msgid "Automated + Curated"
8900
  msgstr ""
8901
 
8902
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8903
- #: languages/vue.php:2960
8904
  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."
8905
  msgstr ""
8906
 
8907
  #. Translators: Placeholder gets replaced with current license version.
8908
- #: languages/vue.php:2964
8909
  msgid "Pro version is required."
8910
  msgstr ""
8911
 
8912
- #: languages/vue.php:2967
8913
  msgid "Verifying Popular Posts data"
8914
  msgstr ""
8915
 
8916
- #: languages/vue.php:2970
8917
  msgid "Multiple Entries"
8918
  msgstr ""
8919
 
8920
- #: languages/vue.php:2973
8921
  msgid "Total Number of Widgets to Show"
8922
  msgstr ""
8923
 
8924
- #: languages/vue.php:2976
8925
  msgid "Choose how many widgets will be placed in a single Post."
8926
  msgstr ""
8927
 
8928
- #: languages/vue.php:2979
8929
  msgid "Minimum Distance Between Widgets"
8930
  msgstr ""
8931
 
8932
- #: languages/vue.php:2982
8933
  msgid "Choose the distance between widgets."
8934
  msgstr ""
8935
 
8936
- #: languages/vue.php:2985
8937
  msgid "Minimum Word Count to Display Multiple Widgets"
8938
  msgstr ""
8939
 
8940
- #: languages/vue.php:2988
8941
  msgid "Choose the minimum word count for a Post to have multiple entries."
8942
  msgstr ""
8943
 
8944
- #: languages/vue.php:2991
8945
  msgid "Pro version is required"
8946
  msgstr ""
8947
 
8948
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8949
- #: languages/vue.php:2995
8950
  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)."
8951
  msgstr ""
8952
 
8953
- #: languages/vue.php:2998
8954
  msgid "Select posts/search"
8955
  msgstr ""
8956
 
8957
- #: languages/vue.php:3001
8958
  msgid "Oops! No posts found."
8959
  msgstr ""
8960
 
8961
- #: languages/vue.php:3004
8962
  msgid "Search by post title"
8963
  msgstr ""
8964
 
8965
- #: languages/vue.php:3007
8966
  msgid "Can't load posts."
8967
  msgstr ""
8968
 
8969
- #: languages/vue.php:3010
8970
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
8971
  msgstr ""
8972
 
8973
- #: languages/vue.php:3013
8974
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
8975
  msgstr ""
8976
 
8977
- #: languages/vue.php:3016
8978
  msgid "Color"
8979
  msgstr ""
8980
 
8981
- #: languages/vue.php:3019
8982
  msgid "Size"
8983
  msgstr ""
8984
 
8985
- #: languages/vue.php:3022
8986
  msgid "Title"
8987
  msgstr ""
8988
 
8989
- #: languages/vue.php:3025
8990
  msgid "Label"
8991
  msgstr ""
8992
 
8993
- #: languages/vue.php:3028
8994
  msgid "Background"
8995
  msgstr ""
8996
 
8997
- #: languages/vue.php:3031
8998
  msgid "Border"
8999
  msgstr ""
9000
 
9001
- #: languages/vue.php:3034
9002
  msgid "Icon"
9003
  msgstr ""
9004
 
9005
- #: languages/vue.php:3037
9006
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9007
  msgid "Theme Preview"
9008
  msgstr ""
9009
 
9010
- #: languages/vue.php:3040
9011
  msgid "SharedCount API Key"
9012
  msgstr ""
9013
 
9014
- #: languages/vue.php:3043
9015
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9016
  msgstr ""
9017
 
9018
- #: languages/vue.php:3046
9019
  msgid "Start Indexing"
9020
  msgstr ""
9021
 
9022
- #: languages/vue.php:3049
9023
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9024
  msgstr ""
9025
 
9026
- #: languages/vue.php:3052
9027
  msgid "Indexing completed, counts will update automatically every day."
9028
  msgstr ""
9029
 
9030
  #. Translators: Minimum and maximum number that can be used.
9031
- #: languages/vue.php:3056
9032
  msgid "Please enter a value between %1$s and %2$s"
9033
  msgstr ""
9034
 
9035
  #. Translators: The minimum set value.
9036
- #: languages/vue.php:3060
9037
  msgid "Please enter a value higher than %s"
9038
  msgstr ""
9039
 
9040
  #. Translators: The maximum set value.
9041
- #: languages/vue.php:3064
9042
  msgid "Please enter a value lower than %s"
9043
  msgstr ""
9044
 
9045
- #: languages/vue.php:3067
9046
  msgid "Please enter a number"
9047
  msgstr ""
9048
 
9049
- #: languages/vue.php:3070
9050
  msgid "Value has to be a round number"
9051
  msgstr ""
9052
 
9053
- #: languages/vue.php:3073
9054
  msgid "Author/Date"
9055
  msgstr ""
9056
 
9057
- #: languages/vue.php:3085
9058
  msgid "Choose which content you would like displayed in the widget."
9059
  msgstr ""
9060
 
9061
- #: languages/vue.php:3097
9062
  msgid "Comments"
9063
  msgstr ""
9064
 
9065
- #: languages/vue.php:3103
9066
  msgid "Choose how many posts you’d like displayed in the widget."
9067
  msgstr ""
9068
 
9069
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9070
- #: languages/vue.php:3107
9071
  msgid "%1$sPage %3$s%2$s of %4$s"
9072
  msgstr ""
9073
 
9074
- #: languages/vue.php:3110
9075
  msgid "Wide"
9076
  msgstr ""
9077
 
9078
- #: languages/vue.php:3113
9079
  msgid "Narrow"
9080
  msgstr ""
9081
 
9082
  #. Translators: Make text green.
9083
- #: languages/vue.php:3117
9084
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9085
  msgstr ""
9086
 
9087
- #: languages/vue.php:3125
9088
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9089
  msgstr ""
9090
 
9091
- #: languages/vue.php:3128
9092
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9093
  msgstr ""
9094
 
9095
- #: languages/vue.php:3131
9096
  msgid "Usage Tracking"
9097
  msgstr ""
9098
 
9099
- #: languages/vue.php:3134
9100
  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."
9101
  msgstr ""
9102
 
9103
- #: languages/vue.php:3137
9104
  msgid "Allow usage tracking"
9105
  msgstr ""
9106
 
9107
  #. Translators: Adds a link to the documentation.
9108
- #: languages/vue.php:3141
9109
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9110
  msgstr ""
9111
 
9112
- #: languages/vue.php:3144
9113
  msgid "Facebook Instant Articles"
9114
  msgstr ""
9115
 
9116
- #: languages/vue.php:3147
9117
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9118
  msgstr ""
9119
 
9120
- #: languages/vue.php:3150
9121
  msgid "Performance"
9122
  msgstr ""
9123
 
9124
- #: languages/vue.php:3153
9125
  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."
9126
  msgstr ""
9127
 
9128
- #: languages/vue.php:3156
9129
  msgid "Google AMP"
9130
  msgstr ""
9131
 
9132
- #: languages/vue.php:3159
9133
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9134
  msgstr ""
9135
 
9136
- #: languages/vue.php:3162
9137
  msgid "Ads Tracking"
9138
  msgstr ""
9139
 
9140
- #: languages/vue.php:3165
9141
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9142
  msgstr ""
9143
 
9144
- #: languages/vue.php:3168
9145
  msgid "Unlock with %s"
9146
  msgstr ""
9147
 
9148
- #: languages/vue.php:3171
9149
  msgid "Scroll Tracking"
9150
  msgstr ""
9151
 
9152
- #: languages/vue.php:3174
9153
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9154
  msgstr ""
9155
 
9156
- #: languages/vue.php:3177
9157
  msgid ""
9158
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9159
  " and other privacy regulations."
9160
  msgstr ""
9161
 
9162
- #: languages/vue.php:3181
9163
  msgid "EU Compliance"
9164
  msgstr ""
9165
 
9166
- #: languages/vue.php:3184
9167
  msgid "Compatibility mode"
9168
  msgstr ""
9169
 
9170
- #: languages/vue.php:3187
9171
  msgid "Enable _gtagTracker Compatibility"
9172
  msgstr ""
9173
 
9174
  #. Translators: Placeholder gets replaced with default GA js function.
9175
- #: languages/vue.php:3191
9176
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9177
  msgstr ""
9178
 
9179
- #: languages/vue.php:3194
9180
  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!"
9181
  msgstr ""
9182
 
9183
- #: languages/vue.php:3197
9184
  msgid "To unlock more features consider upgrading to PRO."
9185
  msgstr ""
9186
 
9187
- #: languages/vue.php:3200
9188
  msgid "Upgrade to"
9189
  msgstr ""
9190
 
9191
- #: languages/vue.php:3203
9192
  msgid "Export PDF Report"
9193
  msgstr ""
9194
 
9195
- #: languages/vue.php:3206
9196
  msgid "You can export PDF reports only in the PRO version."
9197
  msgstr ""
9198
 
9199
- #: languages/vue.php:3209
9200
  msgid "Display Method"
9201
  msgstr ""
9202
 
9203
- #: languages/vue.php:3212
9204
  msgid "There are two ways to manual include the widget in your posts."
9205
  msgstr ""
9206
 
9207
- #: languages/vue.php:3215
9208
  msgid "Using the Gutenberg Block"
9209
  msgstr ""
9210
 
9211
- #: languages/vue.php:3218
9212
  msgid "Using the Shortcode"
9213
  msgstr ""
9214
 
9215
- #: languages/vue.php:3221
9216
  msgid "Learn how to insert the widget using Gutenberg blocks."
9217
  msgstr ""
9218
 
9219
- #: languages/vue.php:3224
9220
  msgid "Learn how to insert the widget using out Shortcode."
9221
  msgstr ""
9222
 
9223
- #: languages/vue.php:3227
9224
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9225
  msgstr ""
9226
 
9227
- #: languages/vue.php:3230
9228
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9229
  msgstr ""
9230
 
9231
- #: languages/vue.php:3233
9232
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9233
  msgstr ""
9234
 
9235
- #: languages/vue.php:3236
9236
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9237
  msgstr ""
9238
 
9239
- #: languages/vue.php:3239
9240
  msgid "Shortcode"
9241
  msgstr ""
9242
 
9243
- #: languages/vue.php:3242
9244
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9245
  msgstr ""
9246
 
9247
- #: languages/vue.php:3245
9248
  msgid "Copy Shortcode"
9249
  msgstr ""
9250
 
9251
- #: languages/vue.php:3248
9252
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9253
  msgstr ""
9254
 
9255
- #: languages/vue.php:3251
9256
  msgid "Automatic Placement"
9257
  msgstr ""
9258
 
9259
- #: languages/vue.php:3254
9260
  msgid "Display using Gutenberg Blocks"
9261
  msgstr ""
9262
 
9263
- #: languages/vue.php:3257
9264
  msgid "Embed Options"
9265
  msgstr ""
9266
 
9267
- #: languages/vue.php:3260
9268
  msgid "All Embed Options can be used in conjunction with one another."
9269
  msgstr ""
9270
 
9271
- #: languages/vue.php:3263
9272
  msgid "Using Automatic Embed"
9273
  msgstr ""
9274
 
9275
- #: languages/vue.php:3266
9276
  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."
9277
  msgstr ""
9278
 
9279
- #: languages/vue.php:3269
9280
  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."
9281
  msgstr ""
9282
 
9283
- #: languages/vue.php:3272
9284
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9285
  msgstr ""
9286
 
9287
- #: languages/vue.php:3275
9288
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9289
  msgstr ""
9290
 
9291
- #: languages/vue.php:3278
9292
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9293
  msgstr ""
9294
 
9295
- #: languages/vue.php:3281
9296
  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."
9297
  msgstr ""
9298
 
9299
- #: languages/vue.php:3284
9300
  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."
9301
  msgstr ""
9302
 
9303
- #: languages/vue.php:3287
9304
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9305
  msgstr ""
9306
 
9307
- #: languages/vue.php:3290
9308
  msgid "Display using a Shortcode"
9309
  msgstr ""
9310
 
9311
- #: languages/vue.php:3293
9312
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9313
  msgstr ""
9314
 
9315
- #: languages/vue.php:3296
9316
  msgid "Enable Automatic Placement"
9317
  msgstr ""
9318
 
9319
- #: languages/vue.php:3299
9320
  msgid "Display in a Sidebar"
9321
  msgstr ""
9322
 
9323
- #: languages/vue.php:3302
9324
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9325
  msgstr ""
9326
 
9327
- #: languages/vue.php:3305
9328
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9329
  msgstr ""
9330
 
9331
  #. Translators: The number of results.
9332
- #: languages/vue.php:3309
9333
  msgid "%s results"
9334
  msgstr ""
9335
 
9336
- #: languages/vue.php:3312
9337
  msgid "Media"
9338
  msgstr ""
9339
 
9340
- #: languages/vue.php:3315
9341
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9342
  msgstr ""
9343
 
9344
- #: languages/vue.php:3318
9345
  msgid "2021 Year in Review"
9346
  msgstr ""
9347
 
9348
- #: languages/vue.php:3321
9349
  msgid "Media- Track how your users interact with videos on your website."
9350
  msgstr ""
9351
 
9352
- #: languages/vue.php:3324
9353
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9354
  msgstr ""
9355
 
9356
- #: languages/vue.php:3327
9357
  msgid "Your 2021 Analytics Report"
9358
  msgstr ""
9359
 
9360
- #: languages/vue.php:3333
9361
  msgid "January 1, 2021 - December 31, 2021"
9362
  msgstr ""
9363
 
9364
- #: languages/vue.php:3336
9365
  msgid "A Tip for 2022"
9366
  msgstr ""
9367
 
9368
- #: languages/vue.php:3339
9369
  msgid "A Tip For 2022"
9370
  msgstr ""
9371
 
9372
- #: languages/vue.php:3342
9373
  msgid "Here's to an amazing 2022!"
9374
  msgstr ""
9375
 
9376
- #: languages/vue.php:3345
9377
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9378
  msgstr ""
9379
 
9380
- #: languages/vue.php:3348
9381
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9382
  msgstr ""
9383
 
9384
- #: languages/vue.php:3351
9385
  msgid "Copyright ExactMetrics, 2022"
9386
  msgstr ""
9387
 
9388
  #. Translators: Number of minutes spent on site.
9389
- #: languages/vue.php:3355
9390
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9391
  msgstr ""
9392
 
9393
  #. Translators: Placeholders are used for making text bold and adding a link.
9394
- #: languages/vue.php:3359
9395
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9396
  msgstr ""
9397
 
9398
- #: languages/vue.php:3362
9399
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9400
  msgstr ""
9401
 
9402
- #: languages/vue.php:3365
9403
  msgid "RafflePress"
9404
  msgstr ""
9405
 
9406
- #: languages/vue.php:3368
9407
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9408
  msgstr ""
9409
 
9410
- #: languages/vue.php:3371
9411
  msgid "Constant Contact"
9412
  msgstr ""
9413
 
9414
- #: languages/vue.php:3374
9415
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9416
  msgstr ""
9417
 
9418
- #: languages/vue.php:3377
9419
  msgid "SEMRUSH"
9420
  msgstr ""
9421
 
9422
- #: languages/vue.php:3380
9423
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9424
  msgstr ""
9425
 
9426
- #: languages/vue.php:3383
9427
  msgid "Engagement Tools"
9428
  msgstr ""
9429
 
9430
- #: languages/vue.php:3386
9431
  msgid "WPForms"
9432
  msgstr ""
9433
 
9434
- #: languages/vue.php:3389
9435
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9436
  msgstr ""
9437
 
9438
- #: languages/vue.php:3392
9439
  msgid "OptinMonster"
9440
  msgstr ""
9441
 
9442
- #: languages/vue.php:3395
9443
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9444
  msgstr ""
9445
 
9446
- #: languages/vue.php:3398
9447
  msgid "Smash Balloon - Facebook"
9448
  msgstr ""
9449
 
9450
- #: languages/vue.php:3401
9451
  msgid "Smash Balloon - Instagram"
9452
  msgstr ""
9453
 
9454
- #: languages/vue.php:3404
9455
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9456
  msgstr ""
9457
 
9458
- #: languages/vue.php:3407
9459
  msgid "Popular Posts by ExactMetrics"
9460
  msgstr ""
9461
 
9462
- #: languages/vue.php:3410
9463
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9464
  msgstr ""
9465
 
9466
- #: languages/vue.php:3413
9467
  msgid "Popular Products by ExactMetrics"
9468
  msgstr ""
9469
 
9470
- #: languages/vue.php:3416
9471
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9472
  msgstr ""
9473
 
9474
- #: languages/vue.php:3419
9475
  msgid "Revenue Tools"
9476
  msgstr ""
9477
 
9478
- #: languages/vue.php:3422
9479
  msgid "SeedProd"
9480
  msgstr ""
9481
 
9482
- #: languages/vue.php:3425
9483
  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."
9484
  msgstr ""
9485
 
9486
- #: languages/vue.php:3428
9487
  msgid "Featured Tools"
9488
  msgstr ""
9489
 
9490
- #: languages/vue.php:3431
9491
  msgid "Easy Affiliate"
9492
  msgstr ""
9493
 
9494
- #: languages/vue.php:3434
9495
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9496
  msgstr ""
9497
 
9498
- #: languages/vue.php:3437
9499
  msgid "SearchWP"
9500
  msgstr ""
9501
 
9502
- #: languages/vue.php:3440
9503
  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."
9504
  msgstr ""
9505
 
9506
- #: languages/vue.php:3443
9507
  msgid "Easy Digital Downloads"
9508
  msgstr ""
9509
 
9510
- #: languages/vue.php:3446
9511
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9512
  msgstr ""
9513
 
9514
- #: languages/vue.php:3449
9515
  msgid "MemberPress"
9516
  msgstr ""
9517
 
9518
- #: languages/vue.php:3452
9519
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9520
  msgstr ""
9521
 
9522
- #: languages/vue.php:3455
9523
  msgid "Thirsty Affiliates"
9524
  msgstr ""
9525
 
9526
- #: languages/vue.php:3458
9527
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9528
  msgstr ""
9529
 
9530
- #: languages/vue.php:3461
9531
  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."
9532
  msgstr ""
9533
 
9534
- #: languages/vue.php:3464
9535
  msgid "Advanced Coupons"
9536
  msgstr ""
9537
 
9538
- #: languages/vue.php:3467
9539
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9540
  msgstr ""
9541
 
9542
- #: languages/vue.php:3470
9543
  msgid "PrettyLinks"
9544
  msgstr ""
9545
 
9546
- #: languages/vue.php:3473
9547
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9548
  msgstr ""
9549
 
9550
- #: languages/vue.php:3476
9551
  msgid "Install Now"
9552
  msgstr ""
9553
 
9554
- #: languages/vue.php:3479
9555
  msgid "Online Marketing Guides & Resources"
9556
  msgstr ""
9557
 
9558
- #: languages/vue.php:3482
9559
  msgid "Read This Guide"
9560
  msgstr ""
9561
 
9562
- #: languages/vue.php:3488
9563
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9564
  msgstr ""
9565
 
9566
- #: languages/vue.php:3491
9567
  msgid "Traffic Tools"
9568
  msgstr ""
9569
 
9570
- #: languages/vue.php:3494
9571
  msgid "All in One SEO (AIOSEO)"
9572
  msgstr ""
9573
 
9574
- #: languages/vue.php:3497
9575
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9576
  msgstr ""
9577
 
9578
- #: languages/vue.php:3500
9579
  msgid "PushEngage"
9580
  msgstr ""
9581
 
9582
- #: languages/vue.php:3503
9583
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9584
  msgstr ""
9585
 
9586
- #: languages/vue.php:3506
9587
  msgid "Featured"
9588
  msgstr ""
9589
 
9590
- #: languages/vue.php:3509
9591
  msgid "Traffic"
9592
  msgstr ""
9593
 
9594
- #: languages/vue.php:3512
9595
  msgid "Revenue"
9596
  msgstr ""
9597
 
9598
- #: languages/vue.php:3515
9599
  msgid "Guides & Resources"
9600
  msgstr ""
9601
 
9602
- #: languages/vue.php:3518
9603
  msgid "Media Tracking"
9604
  msgstr ""
9605
 
9606
- #: languages/vue.php:3521
9607
  msgid "Get Started"
9608
  msgstr ""
9609
 
2
  # This file is distributed under the same license as the ExactMetrics Pro plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: ExactMetrics Pro 7.3.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/monsterinsights-temp\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-02-09T15:54:04+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: google-analytics-dashboard-for-wp\n"
16
 
17
  #. Plugin Name of the plugin
18
+ #: languages/vue.php:3502
19
  msgid "ExactMetrics Pro"
20
  msgstr ""
21
 
112
  #: includes/admin/admin.php:34
113
  #: includes/admin/admin.php:42
114
  #: includes/admin/admin.php:222
115
+ #: languages/vue.php:551
116
  msgid "Settings"
117
  msgstr ""
118
 
128
 
129
  #: includes/admin/admin.php:39
130
  #: includes/admin/admin.php:130
131
+ #: languages/vue.php:2319
132
  msgid "Reports"
133
  msgstr ""
134
 
138
 
139
  #: includes/admin/admin.php:51
140
  #: languages/gutenberg.php:83
141
+ #: languages/vue.php:1013
142
  msgid "Popular Posts"
143
  msgstr ""
144
 
172
 
173
  #: includes/admin/admin.php:71
174
  #: includes/admin/admin.php:146
175
+ #: languages/vue.php:162
176
  msgid "About Us"
177
  msgstr ""
178
 
191
  #: includes/admin/admin.php:76
192
  #: includes/admin/notifications/notification-upgrade-to-pro-high-traffic.php:41
193
  #: includes/admin/notifications/notification-upgrade-to-pro.php:33
194
+ #: languages/vue.php:1061
195
  msgid "Upgrade to Pro"
196
  msgstr ""
197
 
219
 
220
  #: includes/admin/admin.php:212
221
  #: includes/admin/admin.php:215
222
+ #: languages/vue.php:1037
223
  msgid "Support"
224
  msgstr ""
225
 
231
  #: includes/admin/notifications/notification-upgrade-for-google-optimize.php:32
232
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:32
233
  #: includes/admin/reports/abstract-report.php:418
234
+ #: languages/vue.php:1169
235
  msgid "Get ExactMetrics Pro"
236
  msgstr ""
237
 
241
  msgstr ""
242
 
243
  #: includes/admin/admin.php:324
244
+ #: languages/vue.php:1160
245
  msgid "Please Setup Website Analytics to See Audience Insights"
246
  msgstr ""
247
 
248
  #: includes/admin/admin.php:325
249
+ #: languages/vue.php:1166
250
  msgid "Connect ExactMetrics and Setup Website Analytics"
251
  msgstr ""
252
 
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:344
265
  msgid "Learn More"
266
  msgstr ""
267
 
268
  #: includes/admin/admin.php:329
269
+ #: languages/vue.php:1163
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:350
280
+ #: languages/vue.php:485
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:352
285
+ #: languages/vue.php:488
286
  msgid "Your license key for ExactMetrics has been disabled. Please use a different key."
287
  msgstr ""
288
 
289
  #: includes/admin/admin.php:354
290
+ #: languages/vue.php:491
291
  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."
292
  msgstr ""
293
 
491
  msgstr ""
492
 
493
  #: includes/admin/common.php:951
494
+ #: languages/vue.php:3347
495
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2022!"
496
  msgstr ""
497
 
512
 
513
  #: includes/admin/exclude-page-metabox.php:102
514
  #: languages/gutenberg.php:324
515
+ #: languages/vue.php:3139
516
  msgid "Upgrade"
517
  msgstr ""
518
 
539
  msgid "Dismiss this notice"
540
  msgstr ""
541
 
542
+ #: includes/admin/notification-event.php:256
543
  #: includes/admin/routes.php:870
544
  #: includes/admin/routes.php:1204
545
  msgid "You don't have permission to view ExactMetrics reports."
706
  #: includes/admin/notifications/notification-upgrade-for-custom-dimensions.php:26
707
  #: includes/admin/notifications/notification-upgrade-for-events-reporting.php:26
708
  #: includes/admin/notifications/notification-upgrade-for-post-templates.php:26
709
+ #: languages/vue.php:1751
710
  #: lite/includes/admin/helpers.php:83
711
  msgid "Upgrade to ExactMetrics Pro"
712
  msgstr ""
742
  #: includes/admin/notifications/notification-upgrade-for-form-conversion.php:31
743
  #: includes/admin/notifications/notification-upgrade-for-search-console.php:32
744
  #: includes/admin/reports/abstract-report.php:415
745
+ #: languages/vue.php:233
746
  msgid "Upgrade Now"
747
  msgstr ""
748
 
919
  msgstr ""
920
 
921
  #: includes/admin/reports/overview.php:34
922
+ #: languages/vue.php:447
923
  msgid "Overview"
924
  msgstr ""
925
 
1412
  msgstr ""
1413
 
1414
  #: includes/gutenberg/headline-tool/headline-tool.php:290
1415
+ #: languages/vue.php:557
1416
  msgid "General"
1417
  msgstr ""
1418
 
4812
  msgstr ""
4813
 
4814
  #: languages/gutenberg.php:77
4815
+ #: languages/vue.php:540
4816
  msgid "Inline Popular Posts"
4817
  msgstr ""
4818
 
4849
  msgstr ""
4850
 
4851
  #: languages/gutenberg.php:107
4852
+ #: languages/vue.php:3095
4853
  msgid "Wide-Layout Options"
4854
  msgstr ""
4855
 
4858
  msgstr ""
4859
 
4860
  #: languages/gutenberg.php:113
4861
+ #: languages/vue.php:3098
4862
  msgid "Adjust the number of columns displayed when the widget is placed in a wide container."
4863
  msgstr ""
4864
 
4865
  #: languages/gutenberg.php:116
4866
+ #: languages/vue.php:3119
4867
  msgid "Post Count"
4868
  msgstr ""
4869
 
4872
  msgstr ""
4873
 
4874
  #: languages/gutenberg.php:122
4875
+ #: languages/vue.php:3101
4876
  msgid "Display Options"
4877
  msgstr ""
4878
 
4885
  msgstr ""
4886
 
4887
  #: languages/gutenberg.php:131
4888
+ #: languages/vue.php:1970
4889
  msgid "Widget Title"
4890
  msgstr ""
4891
 
4894
  msgstr ""
4895
 
4896
  #: languages/gutenberg.php:137
4897
+ #: languages/vue.php:3107
4898
  msgid "Display Author"
4899
  msgstr ""
4900
 
4901
  #: languages/gutenberg.php:140
4902
+ #: languages/vue.php:3110
4903
  msgid "Display Date"
4904
  msgstr ""
4905
 
4906
  #: languages/gutenberg.php:143
4907
+ #: languages/vue.php:3113
4908
  msgid "Display Comments"
4909
  msgstr ""
4910
 
5125
  msgstr ""
5126
 
5127
  #: languages/gutenberg.php:312
5128
+ #: languages/vue.php:1001
5129
  msgid "Headline Analyzer"
5130
  msgstr ""
5131
 
5149
  msgid "Loading Settings"
5150
  msgstr ""
5151
 
5152
+ #: languages/vue.php:15
5153
  msgid "Please wait..."
5154
  msgstr ""
5155
 
5156
+ #: languages/vue.php:18
5157
  msgid "Saving Changes..."
5158
  msgstr ""
5159
 
5160
+ #: languages/vue.php:21
5161
  msgid "Settings Updated"
5162
  msgstr ""
5163
 
5164
  #. Translators: Add a link to the onboarding wizard.
5165
+ #: languages/vue.php:25
5166
  msgid "You need to %1$sconnect ExactMetrics%2$s first"
5167
  msgstr ""
5168
 
5169
+ #: languages/vue.php:28
5170
  msgid "Could Not Save Changes"
5171
  msgstr ""
5172
 
5173
+ #: languages/vue.php:31
5174
  msgid "Loading new report data"
5175
  msgstr ""
5176
 
5177
  #. Translators: Adds an arrow icon.
5178
+ #: languages/vue.php:35
5179
  msgid "Continue %s"
5180
  msgstr ""
5181
 
5199
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
5200
  msgstr ""
5201
 
5202
+ #: languages/vue.php:56
5203
  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."
5204
  msgstr ""
5205
 
5206
+ #: languages/vue.php:59
5207
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
5208
  msgstr ""
5209
 
5210
+ #: languages/vue.php:62
5211
  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."
5212
  msgstr ""
5213
 
5214
+ #: languages/vue.php:65
5215
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
5216
  msgstr ""
5217
 
5218
+ #: languages/vue.php:68
5219
  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."
5220
  msgstr ""
5221
 
5222
+ #: languages/vue.php:71
5223
  msgid "Unlock the Forms Report and Improve Conversions"
5224
  msgstr ""
5225
 
5226
+ #: languages/vue.php:74
5227
  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."
5228
  msgstr ""
5229
 
5243
  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."
5244
  msgstr ""
5245
 
5246
+ #: languages/vue.php:90
5247
  msgid "Unlock the Site Speed Report and Improve the Performance of Your Site"
5248
  msgstr ""
5249
 
5250
+ #: languages/vue.php:94
5251
  msgid "See How Your Homepage Performs According to Google’s Own Criteria and See How You Can Improve to Increase Your Ranking"
5252
  msgstr ""
5253
 
5254
+ #: languages/vue.php:97
5255
  msgid "Today"
5256
  msgstr ""
5257
 
5258
+ #: languages/vue.php:101
5259
  msgid "Yesterday"
5260
  msgstr ""
5261
 
5262
+ #: languages/vue.php:104
5263
  msgid "Last Week"
5264
  msgstr ""
5265
 
5266
+ #: languages/vue.php:107
5267
  msgid "Last Month"
5268
  msgstr ""
5269
 
5270
+ #: languages/vue.php:110
5271
  msgid "Last 7 days"
5272
  msgstr ""
5273
 
5274
+ #: languages/vue.php:113
5275
  msgid "Last 30 days"
5276
  msgstr ""
5277
 
5278
+ #: languages/vue.php:116
5279
  msgid "Loading settings"
5280
  msgstr ""
5281
 
5282
  #. Translators: Number of visitors.
5283
+ #: languages/vue.php:120
5284
  msgid "See how %s visitors found your site!"
5285
  msgstr ""
5286
 
5287
  #. Translators: Number of visitors.
5288
+ #: languages/vue.php:124
5289
  msgid "Your website was visited by %s users in the last 30 days."
5290
  msgstr ""
5291
 
5292
+ #: languages/vue.php:127
5293
  msgid "See the full analytics report!"
5294
  msgstr ""
5295
 
5296
+ #: languages/vue.php:130
5297
  msgid "Overview Report"
5298
  msgstr ""
5299
 
5300
  #. Translators: Current PHP version and recommended PHP version.
5301
+ #: languages/vue.php:134
5302
  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."
5303
  msgstr ""
5304
 
5305
  #. Translators: Current WordPress version.
5306
+ #: languages/vue.php:138
5307
  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."
5308
  msgstr ""
5309
 
5310
+ #: languages/vue.php:141
5311
  msgid "Yikes! PHP Update Required"
5312
  msgstr ""
5313
 
5314
  #. Translators: Current PHP version and recommended PHP version.
5315
+ #: languages/vue.php:145
5316
  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."
5317
  msgstr ""
5318
 
5319
+ #: languages/vue.php:148
5320
  msgid "Learn more about updating PHP"
5321
  msgstr ""
5322
 
5323
+ #: languages/vue.php:151
5324
  msgid "Yikes! WordPress Update Required"
5325
  msgstr ""
5326
 
5327
  #. Translators: Current WordPress version.
5328
+ #: languages/vue.php:155
5329
  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."
5330
  msgstr ""
5331
 
5332
+ #: languages/vue.php:158
5333
  msgid "Learn more about updating WordPress"
5334
  msgstr ""
5335
 
5336
+ #: languages/vue.php:165
5337
  msgid "Getting Started"
5338
  msgstr ""
5339
 
5340
+ #: languages/vue.php:168
5341
  msgid "Lite vs Pro"
5342
  msgstr ""
5343
 
5344
+ #: languages/vue.php:171
5345
  msgid "Success! "
5346
  msgstr ""
5347
 
5348
+ #: languages/vue.php:174
5349
  msgid "You're now using ExactMetrics Pro with all the features."
5350
  msgstr ""
5351
 
5352
  #. Translators: Placeholder gets replaced with an arrow icon.
5353
+ #: languages/vue.php:178
5354
  msgid "Get Started %s"
5355
  msgstr ""
5356
 
5357
  #. Translators: Error status and error text.
5358
+ #: languages/vue.php:182
5359
  msgid "Can't load report data. Error: %1$s, %2$s"
5360
  msgstr ""
5361
 
5362
+ #: languages/vue.php:185
5363
  msgid "Error loading report data"
5364
  msgstr ""
5365
 
5366
+ #. Translators: Makes the text bold.
5367
+ #: languages/vue.php:189
5368
  msgid "%1$sUniversal Tracking%2$s – Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
5369
  msgstr ""
5370
 
5371
+ #. Translators: Makes the text bold.
5372
+ #: languages/vue.php:193
5373
  msgid "%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights."
5374
  msgstr ""
5375
 
5376
+ #. Translators: Makes the text bold.
5377
+ #: languages/vue.php:197
5378
  msgid "%1$sReal-time Stats%2$s - Get real-time stats inside WordPress to see who is online, what are they doing and more."
5379
  msgstr ""
5380
 
5381
  #. Translators: Makes text bold.
5382
+ #: languages/vue.php:201
5383
  msgid "%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress."
5384
  msgstr ""
5385
 
5386
+ #. Translators: Makes the text bold.
5387
+ #: languages/vue.php:205
5388
  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."
5389
  msgstr ""
5390
 
5391
+ #. Translators: Makes the text bold.
5392
+ #: languages/vue.php:209
5393
  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."
5394
  msgstr ""
5395
 
5396
+ #. Translators: Makes the text bold.
5397
+ #: languages/vue.php:213
5398
  msgid "%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically."
5399
  msgstr ""
5400
 
5401
  #. Translators: Makes text bold.
5402
+ #: languages/vue.php:217
5403
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post types, users, and other events with 1-click."
5404
  msgstr ""
5405
 
5406
+ #. Translators: Adds a link and an arrow icon.
5407
+ #: languages/vue.php:221
5408
  msgid "%1$sSee All Features%2$s"
5409
  msgstr ""
5410
 
5411
+ #: languages/vue.php:225
5412
  msgid "Pro Plan"
5413
  msgstr ""
5414
 
5415
+ #: languages/vue.php:229
5416
  msgid "per year"
5417
  msgstr ""
5418
 
5419
+ #: languages/vue.php:236
5420
  msgid "Upgrade to ExactMetrics Pro Now"
5421
  msgstr ""
5422
 
5423
+ #: languages/vue.php:240
5424
  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!"
5425
  msgstr ""
5426
 
5427
+ #: languages/vue.php:244
5428
  msgid "Daniel Monaghan - Experienced"
5429
  msgstr ""
5430
 
5431
+ #: languages/vue.php:248
5432
  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."
5433
  msgstr ""
5434
 
5435
+ #: languages/vue.php:252
5436
  msgid "Naomi Spirit - From This Day"
5437
  msgstr ""
5438
 
5439
+ #: languages/vue.php:256
5440
  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!"
5441
  msgstr ""
5442
 
5443
+ #: languages/vue.php:260
5444
  msgid "Julie Dupuis - Faraway Land Travel"
5445
  msgstr ""
5446
 
5447
+ #: languages/vue.php:263
5448
  msgid "Guides and Documentation:"
5449
  msgstr ""
5450
 
5451
+ #: languages/vue.php:269
5452
  msgid "Upgrade to PRO"
5453
  msgstr ""
5454
 
5455
+ #: languages/vue.php:272
5456
  msgid "eCommerce Tracking"
5457
  msgstr ""
5458
 
5459
+ #: languages/vue.php:275
5460
  msgid "Custom Dimensions"
5461
  msgstr ""
5462
 
5463
+ #: languages/vue.php:278
5464
  msgid "Form Tracking"
5465
  msgstr ""
5466
 
5467
+ #: languages/vue.php:281
5468
  msgid "AMP Support"
5469
  msgstr ""
5470
 
5471
+ #: languages/vue.php:284
5472
  msgid "Author Tracking"
5473
  msgstr ""
5474
 
5475
+ #: languages/vue.php:287
5476
  msgid "EU Compliance Addon"
5477
  msgstr ""
5478
 
5479
+ #: languages/vue.php:290
5480
  msgid "Real Time Report"
5481
  msgstr ""
5482
 
5483
+ #: languages/vue.php:293
5484
  msgid "Google Optimize"
5485
  msgstr ""
5486
 
5487
+ #: languages/vue.php:296
5488
  #: lite/includes/admin/reports/report-queries.php:22
5489
  msgid "Search Console"
5490
  msgstr ""
5491
 
5492
+ #: languages/vue.php:299
5493
  msgid "Custom Date Ranges"
5494
  msgstr ""
5495
 
5496
+ #: languages/vue.php:302
5497
+ #: languages/vue.php:941
5498
  msgid "Getting Started with ExactMetrics"
5499
  msgstr ""
5500
 
5501
+ #: languages/vue.php:305
5502
+ #: languages/vue.php:944
5503
  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."
5504
  msgstr ""
5505
 
5506
+ #: languages/vue.php:308
5507
  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."
5508
  msgstr ""
5509
 
5510
+ #: languages/vue.php:311
5511
  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!."
5512
  msgstr ""
5513
 
5514
+ #: languages/vue.php:314
5515
  msgid "Launch the wizard!"
5516
  msgstr ""
5517
 
5518
+ #: languages/vue.php:317
5519
  msgid "Welcome to"
5520
  msgstr ""
5521
 
5522
  #. Translators: Adds a line break.
5523
+ #: languages/vue.php:321
5524
  msgid "Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin"
5525
  msgstr ""
5526
 
5527
+ #. Translators: Makes the product name bold.
5528
+ #: languages/vue.php:325
5529
  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."
5530
  msgstr ""
5531
 
5532
+ #: languages/vue.php:328
5533
  msgid "ExactMetrics Features & Addons"
5534
  msgstr ""
5535
 
5536
+ #: languages/vue.php:331
5537
  msgid "Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market."
5538
  msgstr ""
5539
 
5540
  #. Translators: Placeholder is replaced with WPForms.
5541
+ #: languages/vue.php:335
5542
  msgid "Recommended Plugin: %s"
5543
  msgstr ""
5544
 
5545
+ #: languages/vue.php:338
5546
  msgid "Install"
5547
  msgstr ""
5548
 
5549
+ #: languages/vue.php:341
5550
  msgid "Activate"
5551
  msgstr ""
5552
 
5553
+ #: languages/vue.php:347
5554
  msgid "ExactMetrics encountered an error loading your report data"
5555
  msgstr ""
5556
 
5557
+ #: languages/vue.php:350
5558
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
5559
  msgstr ""
5560
 
5561
+ #: languages/vue.php:353
5562
+ #: languages/vue.php:1865
5563
  msgid "Reconnect ExactMetrics"
5564
  msgstr ""
5565
 
5566
+ #: languages/vue.php:356
5567
  msgid "Re-Authenticating"
5568
  msgstr ""
5569
 
5570
+ #: languages/vue.php:359
5571
  msgid "Ok"
5572
  msgstr ""
5573
 
5574
+ #: languages/vue.php:362
5575
+ #: languages/vue.php:880
5576
  msgid "ExactMetrics Addons"
5577
  msgstr ""
5578
 
5579
+ #: languages/vue.php:365
5580
  msgid "Search Addons"
5581
  msgstr ""
5582
 
5583
+ #: languages/vue.php:368
5584
  msgid "Save Changes"
5585
  msgstr ""
5586
 
5587
+ #: languages/vue.php:371
5588
  msgid "Exit Setup"
5589
  msgstr ""
5590
 
5591
+ #: languages/vue.php:374
5592
  msgid "Time to Purchase"
5593
  msgstr ""
5594
 
5595
+ #: languages/vue.php:377
5596
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
5597
  msgstr ""
5598
 
5599
+ #: languages/vue.php:380
5600
  msgid "Sessions to Purchase"
5601
  msgstr ""
5602
 
5603
+ #: languages/vue.php:383
5604
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
5605
  msgstr ""
5606
 
5607
+ #: languages/vue.php:386
5608
  msgid "New Customers"
5609
  msgstr ""
5610
 
5611
+ #: languages/vue.php:389
5612
  msgid "This list shows the percentage of new customers who purchased a product from your website."
5613
  msgstr ""
5614
 
5615
+ #: languages/vue.php:392
5616
  msgid "Abandoned Checkouts"
5617
  msgstr ""
5618
 
5619
+ #: languages/vue.php:395
5620
  msgid "This list shows the percentage of carts that never went through the checkout process."
5621
  msgstr ""
5622
 
5623
+ #: languages/vue.php:398
5624
  msgid "Top Posts/Pages"
5625
  msgstr ""
5626
 
5627
+ #: languages/vue.php:401
5628
  msgid "This list shows the most viewed posts and pages on your website."
5629
  msgstr ""
5630
 
5631
+ #: languages/vue.php:404
5632
  msgid "New vs. Returning Visitors"
5633
  msgstr ""
5634
 
5635
+ #: languages/vue.php:407
5636
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
5637
  msgstr ""
5638
 
5639
+ #: languages/vue.php:410
5640
  msgid "Device Breakdown"
5641
  msgstr ""
5642
 
5643
+ #: languages/vue.php:413
5644
  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."
5645
  msgstr ""
5646
 
5647
+ #: languages/vue.php:416
5648
  msgid "Top Landing Pages"
5649
  msgstr ""
5650
 
5651
+ #: languages/vue.php:419
5652
  msgid "This list shows the top pages users first land on when visiting your website."
5653
  msgstr ""
5654
 
5655
+ #: languages/vue.php:422
5656
  msgid "Top Exit Pages"
5657
  msgstr ""
5658
 
5659
+ #: languages/vue.php:425
5660
  msgid "This list shows the top pages users exit your website from."
5661
  msgstr ""
5662
 
5663
+ #: languages/vue.php:428
5664
  msgid "Top Outbound Links"
5665
  msgstr ""
5666
 
5667
+ #: languages/vue.php:431
5668
  msgid "This list shows the top links clicked on your website that go to another website."
5669
  msgstr ""
5670
 
5671
+ #: languages/vue.php:434
5672
  msgid "Top Affiliate Links"
5673
  msgstr ""
5674
 
5675
+ #: languages/vue.php:437
5676
  msgid "This list shows the top affiliate links your visitors clicked on."
5677
  msgstr ""
5678
 
5679
+ #: languages/vue.php:440
5680
  msgid "Top Download Links"
5681
  msgstr ""
5682
 
5683
+ #: languages/vue.php:443
5684
  msgid "This list shows the download links your visitors clicked the most."
5685
  msgstr ""
5686
 
5687
+ #: languages/vue.php:450
5688
  msgid "Top Products"
5689
  msgstr ""
5690
 
5691
+ #: languages/vue.php:453
5692
  msgid "This list shows the top selling products on your website."
5693
  msgstr ""
5694
 
5695
+ #: languages/vue.php:456
5696
  msgid "Top Conversion Sources"
5697
  msgstr ""
5698
 
5699
+ #: languages/vue.php:459
5700
  msgid "This list shows the top referral websites in terms of product revenue."
5701
  msgstr ""
5702
 
5703
+ #: languages/vue.php:462
5704
  msgid "Total Add/Remove"
5705
  msgstr ""
5706
 
5707
+ #: languages/vue.php:465
5708
  msgid "Analytics"
5709
  msgstr ""
5710
 
5711
  #. Translators: Adds an arrow icon.
5712
+ #: languages/vue.php:469
5713
  msgid "View All Reports %s"
5714
  msgstr ""
5715
 
5716
+ #: languages/vue.php:472
5717
  msgid "You must connect with ExactMetrics before you can view reports."
5718
  msgstr ""
5719
 
5720
+ #: languages/vue.php:475
5721
  msgid "ExactMetrics makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
5722
  msgstr ""
5723
 
5724
+ #: languages/vue.php:478
5725
  msgid "Launch Setup Wizard"
5726
  msgstr ""
5727
 
5728
+ #: languages/vue.php:481
5729
  msgid "Please ask your webmaster to connect ExactMetrics to Google Analytics."
5730
  msgstr ""
5731
 
5732
+ #: languages/vue.php:494
5733
  msgid "See Quick Links"
5734
  msgstr ""
5735
 
5736
+ #: languages/vue.php:497
5737
  msgid "Suggest a Feature"
5738
  msgstr ""
5739
 
5740
+ #: languages/vue.php:500
5741
  msgid "Join Our Community"
5742
  msgstr ""
5743
 
5744
+ #: languages/vue.php:503
5745
  msgid "Support & Docs"
5746
  msgstr ""
5747
 
5748
+ #: languages/vue.php:506
5749
  msgid "Upgrade to Pro &#187;"
5750
  msgstr ""
5751
 
5752
+ #: languages/vue.php:509
5753
  #: lite/includes/admin/reports/report-publisher.php:22
5754
  msgid "Publishers"
5755
  msgstr ""
5756
 
5757
+ #: languages/vue.php:512
5758
  #: lite/includes/admin/reports/report-ecommerce.php:22
5759
  msgid "eCommerce"
5760
  msgstr ""
5761
 
5762
+ #: languages/vue.php:515
5763
  msgid "Dimensions Report"
5764
  msgstr ""
5765
 
5766
+ #: languages/vue.php:519
5767
  #: lite/includes/admin/reports/report-forms.php:22
5768
  msgid "Forms"
5769
  msgstr ""
5770
 
5771
+ #: languages/vue.php:523
5772
  msgid "Real-Time"
5773
  msgstr ""
5774
 
5775
+ #: languages/vue.php:526
5776
  msgid "Site Speed Report"
5777
  msgstr ""
5778
 
5779
+ #: languages/vue.php:530
5780
  msgid "2020 Year in Review"
5781
  msgstr ""
5782
 
5783
+ #: languages/vue.php:533
5784
  msgid "Import Export"
5785
  msgstr ""
5786
 
5787
+ #: languages/vue.php:536
5788
  msgid "PrettyLinks Integration"
5789
  msgstr ""
5790
 
5791
+ #: languages/vue.php:544
5792
  msgid "Popular Posts Widget"
5793
  msgstr ""
5794
 
5795
+ #: languages/vue.php:548
5796
  msgid "Popular Products"
5797
  msgstr ""
5798
 
5799
+ #: languages/vue.php:554
5800
  msgid "Sub menu item for WooCommerce Analytics"
5801
  msgstr ""
5802
 
5803
+ #: languages/vue.php:560
5804
  msgid "Engagement"
5805
  msgstr ""
5806
 
5807
+ #: languages/vue.php:563
5808
  msgid "Publisher"
5809
  msgstr ""
5810
 
5811
+ #: languages/vue.php:566
5812
  msgid "Conversions"
5813
  msgstr ""
5814
 
5815
+ #: languages/vue.php:569
5816
  msgid "Advanced"
5817
  msgstr ""
5818
 
5819
+ #: languages/vue.php:572
5820
  msgid "URL Builder"
5821
  msgstr ""
5822
 
5823
  #. Translators: Adds a link to documentation.
5824
+ #: languages/vue.php:576
5825
  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"
5826
  msgstr ""
5827
 
5828
  #. Translators: Adds link to activate/install plugin and documentation.
5829
+ #: languages/vue.php:580
5830
  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"
5831
  msgstr ""
5832
 
5833
  #. Translators: Adds a link to documentation.
5834
+ #: languages/vue.php:584
5835
  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"
5836
  msgstr ""
5837
 
5838
  #. Translators: Adds link to activate/install plugin and documentation.
5839
+ #: languages/vue.php:588
5840
  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"
5841
  msgstr ""
5842
 
5843
+ #: languages/vue.php:591
5844
  msgid "Installing Addon"
5845
  msgstr ""
5846
 
5847
+ #: languages/vue.php:594
5848
  msgid "Activating Addon"
5849
  msgstr ""
5850
 
5851
+ #: languages/vue.php:597
5852
  msgid "Addon Activated"
5853
  msgstr ""
5854
 
5855
+ #: languages/vue.php:600
5856
  msgid "Loading report data"
5857
  msgstr ""
5858
 
5859
+ #: languages/vue.php:603
5860
  msgid "Please activate manually"
5861
  msgstr ""
5862
 
5863
  #. Translators: Adds the error status and status text.
5864
+ #: languages/vue.php:607
5865
  msgid "Error: %1$s, %2$s"
5866
  msgstr ""
5867
 
5868
+ #: languages/vue.php:610
5869
  msgid "Error Activating Addon"
5870
  msgstr ""
5871
 
5872
+ #: languages/vue.php:613
5873
  #: lite/includes/admin/wp-site-health.php:372
5874
  #: lite/includes/admin/wp-site-health.php:398
5875
  #: lite/includes/admin/wp-site-health.php:425
5876
  msgid "View Addons"
5877
  msgstr ""
5878
 
5879
+ #: languages/vue.php:616
5880
  msgid "Dismiss"
5881
  msgstr ""
5882
 
5883
+ #: languages/vue.php:619
5884
  msgid "Redirecting"
5885
  msgstr ""
5886
 
5887
+ #: languages/vue.php:622
5888
  msgid "Please wait"
5889
  msgstr ""
5890
 
5891
+ #: languages/vue.php:625
5892
  msgid "activate"
5893
  msgstr ""
5894
 
5895
+ #: languages/vue.php:628
5896
  msgid "install"
5897
  msgstr ""
5898
 
5899
+ #: languages/vue.php:631
5900
  msgid "Visit addons page"
5901
  msgstr ""
5902
 
5903
+ #: languages/vue.php:634
5904
  msgid "Report Unavailable"
5905
  msgstr ""
5906
 
5907
  #. Translators: Install/Activate the addon.
5908
+ #: languages/vue.php:638
5909
  msgid "%s Addon"
5910
  msgstr ""
5911
 
5912
+ #: languages/vue.php:641
5913
  msgid "Go Back To Reports"
5914
  msgstr ""
5915
 
5916
+ #: languages/vue.php:644
5917
  msgid "Enable Enhanced eCommerce"
5918
  msgstr ""
5919
 
5920
  #. Translators: Placeholders are replaced with the current step number out of the total number of steps.
5921
+ #: languages/vue.php:648
5922
  msgid "Step %1$s of %2$s"
5923
  msgstr ""
5924
 
5925
+ #: languages/vue.php:651
5926
  msgid "Go back"
5927
  msgstr ""
5928
 
5929
+ #: languages/vue.php:654
5930
  msgid "Welcome to ExactMetrics!"
5931
  msgstr ""
5932
 
5933
+ #: languages/vue.php:657
5934
  msgid "Let's get you set up."
5935
  msgstr ""
5936
 
5937
+ #: languages/vue.php:660
5938
  msgid "Save and Continue"
5939
  msgstr ""
5940
 
5941
+ #: languages/vue.php:663
5942
  msgid "Which category best describes your website?"
5943
  msgstr ""
5944
 
5945
+ #: languages/vue.php:666
5946
  msgid "We will recommend the optimal settings for ExactMetrics based on your choice."
5947
  msgstr ""
5948
 
5949
+ #: languages/vue.php:669
5950
  msgid "Business Website"
5951
  msgstr ""
5952
 
5953
  #. Translators: Make text bold.
5954
+ #: languages/vue.php:673
5955
  msgid "Publisher %1$s(Blog)%2$s"
5956
  msgstr ""
5957
 
5958
+ #: languages/vue.php:676
5959
  msgid "Ecommerce"
5960
  msgstr ""
5961
 
5962
+ #: languages/vue.php:679
5963
  msgid "Connect ExactMetrics to Your Website"
5964
  msgstr ""
5965
 
5966
+ #: languages/vue.php:682
5967
  msgid "ExactMetrics connects Google Analytics to WordPress and shows you stats that matter."
5968
  msgstr ""
5969
 
5970
+ #: languages/vue.php:685
5971
  msgid "Connect Google Analytics + WordPress"
5972
  msgstr ""
5973
 
5974
+ #: languages/vue.php:688
5975
  msgid "You will be taken to the ExactMetrics website where you'll need to connect your Analytics account."
5976
  msgstr ""
5977
 
5978
+ #: languages/vue.php:691
5979
  msgid "Whoops, something went wrong and we weren't able to connect to ExactMetrics. Please enter your Google UA code manually."
5980
  msgstr ""
5981
 
5982
+ #: languages/vue.php:694
5983
  msgid "Manually enter your UA code"
5984
  msgstr ""
5985
 
5986
+ #: languages/vue.php:697
5987
  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."
5988
  msgstr ""
5989
 
5990
+ #: languages/vue.php:700
5991
  msgid "UA code can't be empty"
5992
  msgstr ""
5993
 
5994
+ #: languages/vue.php:703
5995
  msgid "Saving UA code..."
5996
  msgstr ""
5997
 
5998
+ #: languages/vue.php:706
5999
  msgid "ExactMetrics Recommends WPForms"
6000
  msgstr ""
6001
 
6002
+ #: languages/vue.php:709
6003
  msgid "Built by the folks behind ExactMetrics, WPForms is the most beginner friendly form plugin in the market."
6004
  msgstr ""
6005
 
6006
+ #: languages/vue.php:712
6007
  msgid "Used on over 4,000,000 websites!"
6008
  msgstr ""
6009
 
6010
+ #: languages/vue.php:715
6011
  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!"
6012
  msgstr ""
6013
 
6014
+ #: languages/vue.php:718
6015
  msgid "Skip this Step"
6016
  msgstr ""
6017
 
6018
+ #: languages/vue.php:721
6019
  msgid "Continue & Install WPForms"
6020
  msgstr ""
6021
 
6022
+ #: languages/vue.php:724
6023
  msgid "Installing..."
6024
  msgstr ""
6025
 
6026
+ #: languages/vue.php:727
6027
  msgid "Recommended Settings"
6028
  msgstr ""
6029
 
6030
+ #: languages/vue.php:730
6031
  msgid "ExactMetrics recommends the following settings based on your configuration."
6032
  msgstr ""
6033
 
6034
+ #: languages/vue.php:733
6035
  msgid "Events Tracking"
6036
  msgstr ""
6037
 
6038
+ #: languages/vue.php:736
6039
  msgid "Must have for all click tracking on site."
6040
  msgstr ""
6041
 
6042
+ #: languages/vue.php:739
6043
  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."
6044
  msgstr ""
6045
 
6046
+ #: languages/vue.php:742
6047
  msgid "Enhanced Link Attribution"
6048
  msgstr ""
6049
 
6050
+ #: languages/vue.php:745
6051
  msgid "Improves the accuracy of your In-Page Analytics."
6052
  msgstr ""
6053
 
6054
+ #: languages/vue.php:748
6055
  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."
6056
  msgstr ""
6057
 
6058
+ #: languages/vue.php:751
6059
  msgid "Install Updates Automatically"
6060
  msgstr ""
6061
 
6062
+ #: languages/vue.php:754
6063
  msgid "Get the latest features, bug fixes, and security updates as they are released."
6064
  msgstr ""
6065
 
6066
+ #: languages/vue.php:757
6067
  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."
6068
  msgstr ""
6069
 
6070
+ #: languages/vue.php:760
6071
  msgid "File Download Tracking"
6072
  msgstr ""
6073
 
6074
+ #: languages/vue.php:763
6075
  msgid "Helps you see file downloads data."
6076
  msgstr ""
6077
 
6078
+ #: languages/vue.php:766
6079
  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."
6080
  msgstr ""
6081
 
6082
  #. Translators: Example path (/go/).
6083
+ #: languages/vue.php:771
6084
  msgid "Path (example: %s)"
6085
  msgstr ""
6086
 
6087
+ #: languages/vue.php:775
6088
  msgid "Path has to start with a / and have no spaces"
6089
  msgstr ""
6090
 
6091
  #. Translators: Example label (aff).
6092
+ #: languages/vue.php:780
6093
  msgid "Label (example: %s)"
6094
  msgstr ""
6095
 
6096
+ #: languages/vue.php:784
6097
  msgid "Label can't contain any spaces"
6098
  msgstr ""
6099
 
6100
+ #: languages/vue.php:787
6101
  msgid "Helps you increase affiliate revenue."
6102
  msgstr ""
6103
 
6104
+ #: languages/vue.php:790
6105
  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."
6106
  msgstr ""
6107
 
6108
+ #: languages/vue.php:793
6109
  msgid "Affiliate Link Tracking"
6110
  msgstr ""
6111
 
6112
+ #: languages/vue.php:796
6113
  msgid "Who Can See Reports"
6114
  msgstr ""
6115
 
6116
+ #: languages/vue.php:799
6117
  msgid "These user roles will be able to access ExactMetrics' reports in the WordPress admin area."
6118
  msgstr ""
6119
 
6120
+ #: languages/vue.php:802
6121
  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."
6122
  msgstr ""
6123
 
6124
+ #: languages/vue.php:805
6125
  msgid "Save and continue"
6126
  msgstr ""
6127
 
6128
+ #: languages/vue.php:808
6129
  msgid "Events Tracking is enabled the moment you set up ExactMetrics"
6130
  msgstr ""
6131
 
6132
+ #: languages/vue.php:811
6133
  msgid "Enhanced Link Attribution is enabled the moment you set up ExactMetrics"
6134
  msgstr ""
6135
 
6136
+ #: languages/vue.php:814
6137
  msgid "+ Add Role"
6138
  msgstr ""
6139
 
6140
  #. Translators: Placeholders are used for making text bold and adding a link.
6141
+ #: languages/vue.php:818
6142
  msgid "You're using %1$s%2$s Lite%3$s. To unlock more features consider %4$supgrading to Pro%5$s."
6143
  msgstr ""
6144
 
6145
+ #: languages/vue.php:821
6146
  #: lite/includes/admin/reports/report-dimensions.php:22
6147
  msgid "Dimensions"
6148
  msgstr ""
6149
 
6150
+ #: languages/vue.php:824
6151
  msgid "Site Speed"
6152
  msgstr ""
6153
 
6154
+ #: languages/vue.php:827
6155
  msgid "License Key"
6156
  msgstr ""
6157
 
6158
  #. Translators: Add link to retrieve license key from account.
6159
+ #: languages/vue.php:831
6160
  msgid "Add your ExactMetrics license key from the email receipt or account area. %1$sRetrieve your license key%2$s."
6161
  msgstr ""
6162
 
6163
+ #: languages/vue.php:834
6164
  msgid "Google Authentication"
6165
  msgstr ""
6166
 
6167
+ #: languages/vue.php:837
6168
  msgid "Miscellaneous"
6169
  msgstr ""
6170
 
6171
+ #: languages/vue.php:840
6172
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
6173
  msgstr ""
6174
 
6175
+ #: languages/vue.php:843
6176
  msgid "Hide Announcements"
6177
  msgstr ""
6178
 
6179
+ #: languages/vue.php:846
6180
  msgid "You're using ExactMetrics Lite – no license needed. Enjoy!"
6181
  msgstr ""
6182
 
6183
  #. Translators: Adds link to upgrade.
6184
+ #: languages/vue.php:851
6185
  msgid "To unlock more features consider %1$supgrading to PRO%2$s."
6186
  msgstr ""
6187
 
6188
+ #: languages/vue.php:855
6189
  msgid "Receive 50% off automatically applied at the checkout!"
6190
  msgstr ""
6191
 
6192
+ #: languages/vue.php:859
6193
  msgid "See all features"
6194
  msgstr ""
6195
 
6196
+ #: languages/vue.php:862
6197
  msgid "Setup Wizard"
6198
  msgstr ""
6199
 
6200
+ #: languages/vue.php:865
6201
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
6202
  msgstr ""
6203
 
6204
+ #: languages/vue.php:868
6205
  msgid "Relaunch Setup Wizard"
6206
  msgstr ""
6207
 
6208
+ #: languages/vue.php:871
6209
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
6210
  msgstr ""
6211
 
6212
+ #: languages/vue.php:874
6213
  msgid "No addons found."
6214
  msgstr ""
6215
 
6216
+ #: languages/vue.php:877
6217
  msgid "Refresh Addons"
6218
  msgstr ""
6219
 
6220
  #. Translators: Adds a line break.
6221
+ #: languages/vue.php:884
6222
  msgid "Upgrade to Pro to unlock addons and other great features."
6223
  msgstr ""
6224
 
6225
+ #: languages/vue.php:887
6226
  msgid "As a valued ExactMetrics Lite user you receive 50% off, automaticaly applied at checkout!"
6227
  msgstr ""
6228
 
6229
+ #: languages/vue.php:890
6230
  msgid "Refreshing Addons"
6231
  msgstr ""
6232
 
6233
+ #: languages/vue.php:893
6234
  msgid "Get ExactMetrics Pro Today and Unlock all the Powerful Features"
6235
  msgstr ""
6236
 
6237
  #. Translators: Placeholders make the text green.
6238
+ #: languages/vue.php:897
6239
  msgid "Bonus: ExactMetrics Lite users get %1$s50%% off regular price%2$s, automatically applied at checkout."
6240
  msgstr ""
6241
 
6242
+ #: languages/vue.php:900
6243
  msgid "How to Connect to Google Analytics"
6244
  msgstr ""
6245
 
6246
+ #: languages/vue.php:903
6247
  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."
6248
  msgstr ""
6249
 
6250
+ #: languages/vue.php:906
6251
  msgid "Guide and Checklist for Advanced Insights"
6252
  msgstr ""
6253
 
6254
+ #: languages/vue.php:909
6255
  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."
6256
  msgstr ""
6257
 
6258
+ #: languages/vue.php:912
6259
  msgid "GDPR Guide"
6260
  msgstr ""
6261
 
6262
+ #: languages/vue.php:915
6263
  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. "
6264
  msgstr ""
6265
 
6266
+ #: languages/vue.php:918
6267
  msgid "How to Install and Activate ExactMetrics Addons"
6268
  msgstr ""
6269
 
6270
+ #: languages/vue.php:921
6271
  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."
6272
  msgstr ""
6273
 
6274
+ #: languages/vue.php:924
6275
  msgid "Enabling eCommerce Tracking and Reports"
6276
  msgstr ""
6277
 
6278
+ #: languages/vue.php:927
6279
  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."
6280
  msgstr ""
6281
 
6282
+ #: languages/vue.php:930
6283
  msgid "Read Documentation"
6284
  msgstr ""
6285
 
6286
  #. Translators: Makes the text bold.
6287
+ #: languages/vue.php:934
6288
  msgid "%1$sEnhanced eCommerce Tracking%2$s - 1-click Google Analyticks Enhanced Ecommerce trackin for WooCommerce, Easy Digital Download & MemberPress."
6289
  msgstr ""
6290
 
6291
  #. Translators: Makes the text bold.
6292
+ #: languages/vue.php:938
6293
  msgid "%1$sCustom Dimensions%2$s - Setup tracking for authors, tags, searches, custom post type, users, and other events with 1-click."
6294
  msgstr ""
6295
 
6296
+ #: languages/vue.php:947
6297
  msgid "One-click Complete eCommerce tracking"
6298
  msgstr ""
6299
 
6300
+ #: languages/vue.php:950
6301
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
6302
  msgstr ""
6303
 
6304
+ #: languages/vue.php:953
6305
  msgid "Forms Tracking"
6306
  msgstr ""
6307
 
6308
+ #: languages/vue.php:956
6309
  msgid "One-click Form Events Tracking"
6310
  msgstr ""
6311
 
6312
+ #: languages/vue.php:959
6313
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
6314
  msgstr ""
6315
 
6316
+ #: languages/vue.php:962
6317
  msgid "WordPress Admin Area Reports"
6318
  msgstr ""
6319
 
6320
+ #: languages/vue.php:965
6321
  msgid "Standard Reports"
6322
  msgstr ""
6323
 
6324
+ #: languages/vue.php:968
6325
  msgid "Overview Reports for the last 30 days."
6326
  msgstr ""
6327
 
6328
+ #: languages/vue.php:971
6329
  msgid "Advanced Reports"
6330
  msgstr ""
6331
 
6332
+ #: languages/vue.php:974
6333
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
6334
  msgstr ""
6335
 
6336
+ #: languages/vue.php:977
6337
  msgid "Dashboard Widget"
6338
  msgstr ""
6339
 
6340
+ #: languages/vue.php:980
6341
  msgid "Basic Widget"
6342
  msgstr ""
6343
 
6344
+ #: languages/vue.php:983
6345
  msgid "Overview Report Synopsis"
6346
  msgstr ""
6347
 
6348
+ #: languages/vue.php:986
6349
  msgid "Advanced Dashboard Widget"
6350
  msgstr ""
6351
 
6352
+ #: languages/vue.php:989
6353
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
6354
  msgstr ""
6355
 
6356
+ #: languages/vue.php:992
6357
  msgid "Publisher Reports"
6358
  msgstr ""
6359
 
6360
+ #: languages/vue.php:995
6361
  msgid "Advanced Publisher Reports & Tracking"
6362
  msgstr ""
6363
 
6364
+ #: languages/vue.php:998
6365
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
6366
  msgstr ""
6367
 
6368
+ #: languages/vue.php:1004
6369
  msgid "Email Summaries"
6370
  msgstr ""
6371
 
6372
+ #: languages/vue.php:1007
6373
  msgid "Included"
6374
  msgstr ""
6375
 
6376
+ #: languages/vue.php:1010
6377
  msgid "Get weekly traffic reports directly in your inbox."
6378
  msgstr ""
6379
 
6380
+ #: languages/vue.php:1016
6381
  msgid "Basic Options"
6382
  msgstr ""
6383
 
6384
+ #: languages/vue.php:1019
6385
  msgid "Order Popular Posts by comments or shares with 3 simple theme choices."
6386
  msgstr ""
6387
 
6388
+ #: languages/vue.php:1022
6389
  msgid "Dynamic Popular Posts & Popular Products"
6390
  msgstr ""
6391
 
6392
+ #: languages/vue.php:1025
6393
  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."
6394
  msgstr ""
6395
 
6396
+ #: languages/vue.php:1028
6397
  msgid "Not Available"
6398
  msgstr ""
6399
 
6400
+ #: languages/vue.php:1031
6401
  msgid "Complete Custom Dimensions Tracking"
6402
  msgstr ""
6403
 
6404
+ #: languages/vue.php:1034
6405
  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"
6406
  msgstr ""
6407
 
6408
+ #: languages/vue.php:1040
6409
  msgid "Limited Support"
6410
  msgstr ""
6411
 
6412
+ #: languages/vue.php:1043
6413
  msgid "Priority Support"
6414
  msgstr ""
6415
 
6416
+ #: languages/vue.php:1046
6417
  msgid "Get the most out of ExactMetrics by upgrading to Pro and unlocking all of the powerful features."
6418
  msgstr ""
6419
 
6420
+ #: languages/vue.php:1049
6421
  msgid "Feature"
6422
  msgstr ""
6423
 
6424
+ #: languages/vue.php:1052
6425
  msgid "Lite"
6426
  msgstr ""
6427
 
6428
+ #: languages/vue.php:1055
6429
  msgid "Pro"
6430
  msgstr ""
6431
 
6432
+ #: languages/vue.php:1058
6433
  msgid "Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout."
6434
  msgstr ""
6435
 
6436
+ #: languages/vue.php:1064
6437
  msgid "Universal Tracking"
6438
  msgstr ""
6439
 
6440
+ #: languages/vue.php:1067
6441
  msgid "Custom Google Analytics Link Tracking"
6442
  msgstr ""
6443
 
6444
+ #: languages/vue.php:1070
6445
  msgid "Standard Tracking"
6446
  msgstr ""
6447
 
6448
+ #: languages/vue.php:1073
6449
  msgid "Advanced Tracking"
6450
  msgstr ""
6451
 
6452
+ #: languages/vue.php:1076
6453
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
6454
  msgstr ""
6455
 
6456
+ #: languages/vue.php:1079
6457
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
6458
  msgstr ""
6459
 
6460
+ #: languages/vue.php:1082
6461
  msgid "No-Code-Needed Tracking Features"
6462
  msgstr ""
6463
 
6464
+ #: languages/vue.php:1085
6465
  msgid "Basic Tracking Options"
6466
  msgstr ""
6467
 
6468
+ #: languages/vue.php:1088
6469
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
6470
  msgstr ""
6471
 
6472
+ #: languages/vue.php:1091
6473
  msgid "Advanced Tracking Options"
6474
  msgstr ""
6475
 
6476
+ #: languages/vue.php:1094
6477
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
6478
  msgstr ""
6479
 
6480
+ #: languages/vue.php:1097
6481
  msgid "Inbox"
6482
  msgstr ""
6483
 
6484
+ #: languages/vue.php:1100
6485
  msgid "Back to Inbox"
6486
  msgstr ""
6487
 
6488
+ #: languages/vue.php:1103
6489
  msgid "View Dismissed"
6490
  msgstr ""
6491
 
6492
+ #: languages/vue.php:1106
6493
  msgid "Notifications"
6494
  msgstr ""
6495
 
6496
+ #: languages/vue.php:1109
6497
  msgid "Dismiss All"
6498
  msgstr ""
6499
 
6500
+ #: languages/vue.php:1112
6501
  msgid "Dismissed"
6502
  msgstr ""
6503
 
6504
+ #: languages/vue.php:1115
6505
  msgid "No Notifications"
6506
  msgstr ""
6507
 
6508
  #. Translators: Error status and error text.
6509
+ #: languages/vue.php:1119
6510
  msgid "Can't load settings. Error: %1$s, %2$s"
6511
  msgstr ""
6512
 
6513
+ #: languages/vue.php:1123
6514
  msgid "You appear to be offline."
6515
  msgstr ""
6516
 
6517
  #. Translators: Error status and error text.
6518
+ #: languages/vue.php:1127
6519
  msgid "Can't save settings. Error: %1$s, %2$s"
6520
  msgstr ""
6521
 
6522
+ #: languages/vue.php:1130
6523
  msgid "Network error encountered. Settings not saved."
6524
  msgstr ""
6525
 
6526
+ #: languages/vue.php:1133
6527
  msgid "Show in widget mode"
6528
  msgstr ""
6529
 
6530
+ #: languages/vue.php:1136
6531
  msgid "Show in full-width mode"
6532
  msgstr ""
6533
 
6534
+ #: languages/vue.php:1139
6535
  msgid "Show Overview Reports"
6536
  msgstr ""
6537
 
6538
+ #: languages/vue.php:1142
6539
  msgid "Show Publishers Reports"
6540
  msgstr ""
6541
 
6542
+ #: languages/vue.php:1145
6543
  msgid "Show eCommerce Reports"
6544
  msgstr ""
6545
 
6546
+ #: languages/vue.php:1148
6547
  msgid "Settings Menu"
6548
  msgstr ""
6549
 
6550
+ #: languages/vue.php:1151
6551
  msgid "Available in PRO version"
6552
  msgstr ""
6553
 
6554
+ #: languages/vue.php:1154
6555
  msgid "See All Reports"
6556
  msgstr ""
6557
 
6558
+ #: languages/vue.php:1157
6559
  msgid "Go to the Analytics Dashboard"
6560
  msgstr ""
6561
 
6562
+ #: languages/vue.php:1172
6563
  msgid "Cart Funnel"
6564
  msgstr ""
6565
 
6566
+ #: languages/vue.php:1175
6567
  msgid "Customer Insights"
6568
  msgstr ""
6569
 
6570
+ #: languages/vue.php:1178
6571
  msgid "Campaign Measurement"
6572
  msgstr ""
6573
 
6574
+ #: languages/vue.php:1181
6575
  msgid "Customer Profiles"
6576
  msgstr ""
6577
 
6578
+ #: languages/vue.php:1184
6579
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, revenue, and average order value, and more."
6580
  msgstr ""
6581
 
6582
+ #: languages/vue.php:1187
6583
  msgid "Truly Understand Your%1$s Customers With %2$sExactMetrics%3$s"
6584
  msgstr ""
6585
 
6586
+ #: languages/vue.php:1190
6587
  msgid "You never truly understand your customers until you used Enhanced %1$s eCommerce from ExactMetrics!"
6588
  msgstr ""
6589
 
6590
+ #: languages/vue.php:1193
6591
  msgid "Track all-new metrics!"
6592
  msgstr ""
6593
 
6594
+ #: languages/vue.php:1196
6595
  msgid "Get stats WooCommerce doesn’t give you like: Conversion Sources, Avg. Order Value, Revenue per Source, Total Add to Carts & More!"
6596
  msgstr ""
6597
 
6598
+ #: languages/vue.php:1199
6599
  msgid "FEATURES"
6600
  msgstr ""
6601
 
6602
+ #: languages/vue.php:1202
6603
  msgid "Get The Unique Metrics Neccessary for Growth"
6604
  msgstr ""
6605
 
6606
+ #: languages/vue.php:1205
6607
  msgid "See all the critical eCommerce data you need at a glance: your conversion rate, transactions, %1$srevenue, and average order value, and more."
6608
  msgstr ""
6609
 
6610
+ #: languages/vue.php:1208
6611
  msgid "Get Answers to the important questions %1$syou should know."
6612
  msgstr ""
6613
 
6614
+ #: languages/vue.php:1211
6615
  msgid "Did the login/registration step of the checkout put users off?"
6616
  msgstr ""
6617
 
6618
+ #: languages/vue.php:1214
6619
  msgid "Which ad campaign is driving the most revenue?"
6620
  msgstr ""
6621
 
6622
+ #: languages/vue.php:1217
6623
  msgid "Who is my typical customer?"
6624
  msgstr ""
6625
 
6626
+ #: languages/vue.php:1220
6627
  msgid "Level-up Your eCommerce store with %1$sExactMetrics + WooCommerce!%1$s"
6628
  msgstr ""
6629
 
6630
  #. Translators: Error status and error text.
6631
+ #: languages/vue.php:1224
6632
  msgid "Can't deactivate the license. Error: %1$s, %2$s"
6633
  msgstr ""
6634
 
6635
  #. Translators: Error status and error text.
6636
+ #: languages/vue.php:1228
6637
  msgid "Can't upgrade to PRO please try again. Error: %1$s, %2$s"
6638
  msgstr ""
6639
 
6640
  #. Translators: Error status and error text.
6641
+ #: languages/vue.php:1232
6642
  msgid "Can't load license details. Error: %1$s, %2$s"
6643
  msgstr ""
6644
 
6645
+ #: languages/vue.php:1235
6646
  msgid "Error loading license details"
6647
  msgstr ""
6648
 
6649
  #. Translators: Error status and error text.
6650
+ #: languages/vue.php:1239
6651
  msgid "Can't verify the license. Error: %1$s, %2$s"
6652
  msgstr ""
6653
 
6654
  #. Translators: Error status and error text.
6655
+ #: languages/vue.php:1243
6656
  msgid "Can't validate the license. Error: %1$s, %2$s"
6657
  msgstr ""
6658
 
6659
+ #: languages/vue.php:1246
6660
  msgid "Reset to default"
6661
  msgstr ""
6662
 
6663
+ #: languages/vue.php:1249
6664
  msgid "The value entered does not match the required format"
6665
  msgstr ""
6666
 
6667
+ #: languages/vue.php:1252
6668
  msgid "Check out the newly added classic mode"
6669
  msgstr ""
6670
 
6671
  #. Translators: Placeholder adds a line break.
6672
+ #: languages/vue.php:1256
6673
  msgid "You can customize your %sdate range only in the PRO version."
6674
  msgstr ""
6675
 
6676
+ #: languages/vue.php:1259
6677
  msgid "Help Us Improve"
6678
  msgstr ""
6679
 
6680
+ #: languages/vue.php:1262
6681
  msgid "Help us better understand our users and their website needs."
6682
  msgstr ""
6683
 
6684
  #. Translators: Adds a link to the documentation.
6685
+ #: languages/vue.php:1266
6686
  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"
6687
  msgstr ""
6688
 
6689
  #. Translators: The name of the field that is throwing a validation error.
6690
+ #: languages/vue.php:1270
6691
  msgid "%s can't be empty."
6692
  msgstr ""
6693
 
6694
+ #: languages/vue.php:1273
6695
  msgid "Duplicate values are not allowed."
6696
  msgstr ""
6697
 
6698
+ #: languages/vue.php:1276
6699
  msgid "You can add maximum 5 items."
6700
  msgstr ""
6701
 
6702
+ #: languages/vue.php:1279
6703
  msgid "At least 0 item required."
6704
  msgstr ""
6705
 
6706
+ #: languages/vue.php:1282
6707
  msgid "Add Another Link Path"
6708
  msgstr ""
6709
 
6710
+ #: languages/vue.php:1285
6711
  msgid "Remove row"
6712
  msgstr ""
6713
 
6714
+ #: languages/vue.php:1288
6715
  msgid "Sessions"
6716
  msgstr ""
6717
 
6718
  #. Translators: Line break.
6719
+ #: languages/vue.php:1292
6720
  msgid "Unique %s Sessions"
6721
  msgstr ""
6722
 
6723
+ #: languages/vue.php:1296
6724
  msgid "Pageviews"
6725
  msgstr ""
6726
 
6727
  #. Translators: Line break.
6728
+ #: languages/vue.php:1300
6729
  msgid "Unique %s Pageviews"
6730
  msgstr ""
6731
 
6732
+ #: languages/vue.php:1303
6733
  msgid "A session is the browsing session of a single user to your site."
6734
  msgstr ""
6735
 
6736
+ #: languages/vue.php:1306
6737
  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."
6738
  msgstr ""
6739
 
6740
+ #: languages/vue.php:1309
6741
  msgid "Total duration of all sessions (in seconds) / number of sessions."
6742
  msgstr ""
6743
 
6744
+ #: languages/vue.php:1312
6745
  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."
6746
  msgstr ""
6747
 
6748
+ #: languages/vue.php:1315
6749
  msgid "The number of distinct tracked users"
6750
  msgstr ""
6751
 
6752
+ #: languages/vue.php:1318
6753
  msgid "Avg. Session Duration"
6754
  msgstr ""
6755
 
6756
+ #: languages/vue.php:1321
6757
  msgid "Bounce Rate"
6758
  msgstr ""
6759
 
6760
+ #: languages/vue.php:1324
6761
  msgid "Total Users"
6762
  msgstr ""
6763
 
6764
+ #: languages/vue.php:1327
6765
  msgid "No options available"
6766
  msgstr ""
6767
 
6768
  #. Translators: Placeholders make the text highlighted.
6769
+ #: languages/vue.php:1331
6770
  msgid "%1$sNeed%2$s to Grow FASTER??"
6771
  msgstr ""
6772
 
6773
+ #: languages/vue.php:1334
6774
  msgid "Get additional, actionable insights by going Pro."
6775
  msgstr ""
6776
 
6777
+ #: languages/vue.php:1337
6778
  msgid "Skip"
6779
  msgstr ""
6780
 
6781
+ #: languages/vue.php:1340
6782
  msgid "See All Features"
6783
  msgstr ""
6784
 
6785
+ #: languages/vue.php:1343
6786
  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."
6787
  msgstr ""
6788
 
6789
+ #: languages/vue.php:1346
6790
  msgid "Our Pro plan includes:"
6791
  msgstr ""
6792
 
6793
  #. Translators: Error status and error text.
6794
+ #: languages/vue.php:1350
6795
  msgid "Can't load errors. Error: %1$s, %2$s"
6796
  msgstr ""
6797
 
6798
+ #: languages/vue.php:1353
6799
  msgid "Real-Time Report"
6800
  msgstr ""
6801
 
6802
+ #: languages/vue.php:1356
6803
  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."
6804
  msgstr ""
6805
 
6806
  #. Translators: add link to blog.
6807
+ #: languages/vue.php:1360
6808
  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."
6809
  msgstr ""
6810
 
6811
+ #: languages/vue.php:1363
6812
  msgid "Here's what you get:"
6813
  msgstr ""
6814
 
6815
+ #: languages/vue.php:1366
6816
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
6817
  msgstr ""
6818
 
6819
+ #: languages/vue.php:1369
6820
  msgid "See Your Top Pages Immediately After Making Changes"
6821
  msgstr ""
6822
 
6823
+ #: languages/vue.php:1372
6824
  msgid "See Your Top Referral Sources and Adapt Faster"
6825
  msgstr ""
6826
 
6827
+ #: languages/vue.php:1375
6828
  msgid "See Your Traffic Demographics"
6829
  msgstr ""
6830
 
6831
+ #: languages/vue.php:1378
6832
  msgid "Get Fresh Report Data Every 60 Seconds"
6833
  msgstr ""
6834
 
6835
+ #: languages/vue.php:1381
6836
  msgid "See Where Your Visitors are Connecting From (country & city)"
6837
  msgstr ""
6838
 
6839
+ #: languages/vue.php:1384
6840
  msgid "Forms Report"
6841
  msgstr ""
6842
 
6843
+ #: languages/vue.php:1387
6844
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
6845
  msgstr ""
6846
 
6847
+ #: languages/vue.php:1390
6848
  msgid "See Your Top Converting Forms and Optimize"
6849
  msgstr ""
6850
 
6851
+ #: languages/vue.php:1393
6852
  msgid "See Your Forms Impressions Count to Find the Best Placement"
6853
  msgstr ""
6854
 
6855
+ #: languages/vue.php:1396
6856
  msgid "Awesome, You're All Set!"
6857
  msgstr ""
6858
 
6859
+ #: languages/vue.php:1399
6860
  msgid "ExactMetrics is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
6861
  msgstr ""
6862
 
6863
  #. Translators: Make the text bold.
6864
+ #: languages/vue.php:1403
6865
  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."
6866
  msgstr ""
6867
 
6868
  #. Translators: Add link to blog.
6869
+ #: languages/vue.php:1407
6870
  msgid "%1$sSubscribe to the ExactMetrics blog%2$s for tips on how to get more traffic and grow your business."
6871
  msgstr ""
6872
 
6873
+ #: languages/vue.php:1410
6874
  msgid "Finish Setup & Exit Wizard"
6875
  msgstr ""
6876
 
6877
+ #: languages/vue.php:1413
6878
  msgid "Google Analytics"
6879
  msgstr ""
6880
 
6881
+ #: languages/vue.php:1416
6882
  msgid "Subscribe"
6883
  msgstr ""
6884
 
6885
+ #: languages/vue.php:1419
6886
  msgid "Checking your website..."
6887
  msgstr ""
6888
 
6889
+ #: languages/vue.php:1422
6890
  msgid "Recommended Addons"
6891
  msgstr ""
6892
 
6893
  #. Translators: Add a link to upgrade and make the text green.
6894
+ #: languages/vue.php:1426
6895
  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!"
6896
  msgstr ""
6897
 
6898
+ #: languages/vue.php:1429
6899
  msgid "Upgrade to PRO Now"
6900
  msgstr ""
6901
 
6902
+ #: languages/vue.php:1432
6903
  msgid "See who’s viewing and submitting your forms, so you can increase your conversion rate."
6904
  msgstr ""
6905
 
6906
+ #: languages/vue.php:1435
6907
  msgid "See All Your Important Store Metrics in One Place."
6908
  msgstr ""
6909
 
6910
+ #: languages/vue.php:1438
6911
  msgid "... and more:"
6912
  msgstr ""
6913
 
6914
+ #: languages/vue.php:1441
6915
  msgid "Dimensions- Track authors, categories, trags, searches, users and more."
6916
  msgstr ""
6917
 
6918
+ #: languages/vue.php:1444
6919
  msgid "EU Compliance- Improve compliance with GDPR and other privacy regulations."
6920
  msgstr ""
6921
 
6922
+ #: languages/vue.php:1447
6923
  msgid "AMP- ExactMetrics Google AMP Addon enables accurate tracking of all mobile visitors to your AMP-enabled pages."
6924
  msgstr ""
6925
 
6926
+ #: languages/vue.php:1450
6927
  msgid "Facebook Instant Articles- Integrate Google Analytics and Facebook Instant Articles with just one click."
6928
  msgstr ""
6929
 
6930
+ #: languages/vue.php:1453
6931
  msgid "eCommerce- Sales tracking for your WooCommerce, Easy Digital Downloads, LifterLMS or MemberPress stores."
6932
  msgstr ""
6933
 
6934
+ #: languages/vue.php:1456
6935
  msgid "Google Optimize- Easily enable Google Optimize on your WordPress site."
6936
  msgstr ""
6937
 
6938
+ #: languages/vue.php:1459
6939
  msgid "Forms- Enable tracking of your form views, submissions and conversion rates."
6940
  msgstr ""
6941
 
6942
+ #: languages/vue.php:1462
6943
  msgid "Ads- See who’s clicking on your Google Adsense banner ads."
6944
  msgstr ""
6945
 
6946
+ #: languages/vue.php:1465
6947
  msgid "Hello and Welcome to ExactMetrics, the Best Google Analytics Plugin for WordPress."
6948
  msgstr ""
6949
 
6950
+ #: languages/vue.php:1468
6951
  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."
6952
  msgstr ""
6953
 
6954
+ #: languages/vue.php:1471
6955
  msgid "The ExactMetrics Team"
6956
  msgstr ""
6957
 
6958
+ #: languages/vue.php:1474
6959
  msgid "Custom Dimensions Report"
6960
  msgstr ""
6961
 
6962
+ #: languages/vue.php:1477
6963
  msgid "Unlock the Dimensions Report and decide what data is important using your own custom tracking parameters"
6964
  msgstr ""
6965
 
6966
+ #: languages/vue.php:1480
6967
  msgid "The Dimensions report allows you to easily see what's working right inside your WordPress dashboard."
6968
  msgstr ""
6969
 
6970
+ #: languages/vue.php:1483
6971
  msgid "Author tracking to see which author’s posts generate the most traffic"
6972
  msgstr ""
6973
 
6974
+ #: languages/vue.php:1486
6975
  msgid "Post Type tracking to see which WordPress post types perform better"
6976
  msgstr ""
6977
 
6978
+ #: languages/vue.php:1489
6979
  msgid "Category tracking to see which sections of your sites are the most popular"
6980
  msgstr ""
6981
 
6982
+ #: languages/vue.php:1492
6983
  msgid "SEO score tracking to see which blog SEO scores are the most popular"
6984
  msgstr ""
6985
 
6986
+ #: languages/vue.php:1495
6987
  msgid "Focus Keyword tracking to see which of your content is doing well in search engines."
6988
  msgstr ""
6989
 
6990
+ #: languages/vue.php:1498
6991
  msgid "Tag tracking to determine which topics are the most engaging to for your website visitors."
6992
  msgstr ""
6993
 
6994
  #. Translators: add link to blog.
6995
+ #: languages/vue.php:1502
6996
  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."
6997
  msgstr ""
6998
 
6999
+ #: languages/vue.php:1505
7000
  msgid "See Your Homepage's Overall Performance Score"
7001
  msgstr ""
7002
 
7003
+ #: languages/vue.php:1508
7004
  msgid "Run an Audit on Your Homepage and See Your Server Response Time"
7005
  msgstr ""
7006
 
7007
+ #: languages/vue.php:1511
7008
  msgid "Learn How Long It Takes for Your Viewers to Interact With Your Site"
7009
  msgstr ""
7010
 
7011
+ #: languages/vue.php:1514
7012
  msgid "Learn How to Improve the Core Metrics that Google Uses to Rank Your Site"
7013
  msgstr ""
7014
 
7015
+ #: languages/vue.php:1517
7016
  msgid "Hide dashboard widget"
7017
  msgstr ""
7018
 
7019
+ #: languages/vue.php:1520
7020
  msgid "Are you sure you want to hide the ExactMetrics Dashboard Widget? "
7021
  msgstr ""
7022
 
7023
+ #: languages/vue.php:1523
7024
  msgid "Yes, hide it!"
7025
  msgstr ""
7026
 
7027
+ #: languages/vue.php:1526
7028
  msgid "No, cancel!"
7029
  msgstr ""
7030
 
7031
+ #: languages/vue.php:1529
7032
  msgid "ExactMetrics Widget Hidden"
7033
  msgstr ""
7034
 
7035
+ #: languages/vue.php:1532
7036
  msgid "You can re-enable the ExactMetrics widget at any time using the \"Screen Options\" menu on the top right of this page"
7037
  msgstr ""
7038
 
7039
  #. Translators: Error status and error text.
7040
+ #: languages/vue.php:1536
7041
  msgid "Can't deauthenticate. Error: %1$s, %2$s"
7042
  msgstr ""
7043
 
7044
  #. Translators: Error status and error text.
7045
+ #: languages/vue.php:1540
7046
  msgid "Can't load authentication details. Error: %1$s, %2$s"
7047
  msgstr ""
7048
 
7049
+ #: languages/vue.php:1543
7050
  msgid "You appear to be offline. Settings not saved."
7051
  msgstr ""
7052
 
7053
  #. Translators: Error status and error text.
7054
+ #: languages/vue.php:1547
7055
  msgid "Can't authenticate. Error: %1$s, %2$s"
7056
  msgstr ""
7057
 
7058
  #. Translators: Error status and error text.
7059
+ #: languages/vue.php:1551
7060
  msgid "Can't reauthenticate. Error: %1$s, %2$s"
7061
  msgstr ""
7062
 
7063
  #. Translators: Error status and error text.
7064
+ #: languages/vue.php:1555
7065
  msgid "Can't verify credentials. Error: %1$s, %2$s"
7066
  msgstr ""
7067
 
7068
+ #: languages/vue.php:1558
7069
  msgid "Still Calculating..."
7070
  msgstr ""
7071
 
7072
+ #: languages/vue.php:1561
7073
  msgid "Your 2020 Year in Review is still calculating. Please check back later to see how your website performed last year."
7074
  msgstr ""
7075
 
7076
+ #: languages/vue.php:1564
7077
  msgid "Back to Overview Report"
7078
  msgstr ""
7079
 
7080
+ #: languages/vue.php:1567
7081
  msgid "Your 2020 Analytics Report"
7082
  msgstr ""
7083
 
7084
+ #: languages/vue.php:1570
7085
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2021!"
7086
  msgstr ""
7087
 
7088
+ #: languages/vue.php:1573
7089
  msgid "Audience"
7090
  msgstr ""
7091
 
7092
+ #: languages/vue.php:1576
7093
  msgid "Congrats"
7094
  msgstr ""
7095
 
7096
+ #: languages/vue.php:1579
7097
  msgid "Your website was quite popular this year! "
7098
  msgstr ""
7099
 
7100
+ #: languages/vue.php:1582
7101
  msgid "You had "
7102
  msgstr ""
7103
 
7104
+ #: languages/vue.php:1585
7105
  msgid " visitors!"
7106
  msgstr ""
7107
 
7108
+ #: languages/vue.php:1588
7109
  msgid " visitors"
7110
  msgstr ""
7111
 
7112
+ #: languages/vue.php:1591
7113
  msgid "Total Visitors"
7114
  msgstr ""
7115
 
7116
+ #: languages/vue.php:1594
7117
  msgid "Total Sessions"
7118
  msgstr ""
7119
 
7120
+ #: languages/vue.php:1597
7121
  msgid "Visitors by Month"
7122
  msgstr ""
7123
 
7124
+ #: languages/vue.php:1600
7125
  msgid "January 1, 2020 - December 31, 2020"
7126
  msgstr ""
7127
 
7128
+ #: languages/vue.php:1603
7129
  msgid "A Tip for 2021"
7130
  msgstr ""
7131
 
7132
+ #: languages/vue.php:1606
7133
  msgid "Demographics"
7134
  msgstr ""
7135
 
7136
+ #: languages/vue.php:1609
7137
  msgid "#1"
7138
  msgstr ""
7139
 
7140
+ #: languages/vue.php:1612
7141
  msgid "You Top 5 Countries"
7142
  msgstr ""
7143
 
7144
+ #: languages/vue.php:1615
7145
  msgid "Let’s get to know your visitors a little better, shall we?"
7146
  msgstr ""
7147
 
7148
+ #: languages/vue.php:1618
7149
  msgid "Gender"
7150
  msgstr ""
7151
 
7152
+ #: languages/vue.php:1621
7153
  msgid "Female"
7154
  msgstr ""
7155
 
7156
+ #: languages/vue.php:1624
7157
  msgid "Women"
7158
  msgstr ""
7159
 
7160
+ #: languages/vue.php:1627
7161
  msgid "Male"
7162
  msgstr ""
7163
 
7164
+ #: languages/vue.php:1630
7165
  msgid "Average Age"
7166
  msgstr ""
7167
 
7168
+ #: languages/vue.php:1634
7169
  msgid "Behavior"
7170
  msgstr ""
7171
 
7172
+ #: languages/vue.php:1637
7173
  msgid "Your Top 5 Pages"
7174
  msgstr ""
7175
 
7176
+ #: languages/vue.php:1640
7177
  msgid "Time Spent on Site"
7178
  msgstr ""
7179
 
7180
+ #: languages/vue.php:1643
7181
  msgid "minutes"
7182
  msgstr ""
7183
 
7184
+ #: languages/vue.php:1646
7185
  msgid "Device Type"
7186
  msgstr ""
7187
 
7188
+ #: languages/vue.php:1649
7189
  msgid "A Tip For 2021"
7190
  msgstr ""
7191
 
7192
+ #: languages/vue.php:1652
7193
  msgid "Are you looking for a way to track your landing pages and see which one gets the most conversions on your website?"
7194
  msgstr ""
7195
 
7196
+ #: languages/vue.php:1655
7197
  msgid "Read - How to Track Google Analytics Landing Page Conversions"
7198
  msgstr ""
7199
 
7200
+ #: languages/vue.php:1658
7201
  msgid "So, where did all of these visitors come from?"
7202
  msgstr ""
7203
 
7204
+ #: languages/vue.php:1661
7205
  msgid "Clicks"
7206
  msgstr ""
7207
 
7208
+ #: languages/vue.php:1664
7209
  msgid "Your Top 5 Keywords"
7210
  msgstr ""
7211
 
7212
+ #: languages/vue.php:1667
7213
  msgid "What keywords visitors searched for to find your site"
7214
  msgstr ""
7215
 
7216
+ #: languages/vue.php:1670
7217
  msgid "Your Top 5 Referrals"
7218
  msgstr ""
7219
 
7220
+ #: languages/vue.php:1673
7221
  msgid "The websites that link back to your website"
7222
  msgstr ""
7223
 
7224
+ #: languages/vue.php:1676
7225
  msgid "Opportunity"
7226
  msgstr ""
7227
 
7228
+ #: languages/vue.php:1679
7229
  msgid "Learn how to boost your SEO rankings using ExactMetrics so more visitors reach your articles and increase engagement."
7230
  msgstr ""
7231
 
7232
+ #: languages/vue.php:1682
7233
  msgid "Read - 5 Ways to Skyrocket Your SEO Rankings with Google Analytics"
7234
  msgstr ""
7235
 
7236
+ #: languages/vue.php:1685
7237
  msgid "Thank you for using ExactMetrics!"
7238
  msgstr ""
7239
 
7240
+ #: languages/vue.php:1688
7241
  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."
7242
  msgstr ""
7243
 
7244
+ #: languages/vue.php:1691
7245
  msgid "Here's to an amazing 2021!"
7246
  msgstr ""
7247
 
7248
+ #: languages/vue.php:1694
7249
  msgid "Enjoying ExactMetrics"
7250
  msgstr ""
7251
 
7252
+ #: languages/vue.php:1697
7253
  msgid "Leave a five star review!"
7254
  msgstr ""
7255
 
7256
+ #: languages/vue.php:1700
7257
  msgid "Syed Balkhi"
7258
  msgstr ""
7259
 
7260
+ #: languages/vue.php:1703
7261
  msgid "Chris Christoff"
7262
  msgstr ""
7263
 
7264
+ #: languages/vue.php:1706
7265
  msgid "Write Review"
7266
  msgstr ""
7267
 
7268
+ #: languages/vue.php:1709
7269
  msgid "Did you know over 10 million websites use our plugins?"
7270
  msgstr ""
7271
 
7272
+ #: languages/vue.php:1712
7273
  msgid "Try our other popular WordPress plugins to grow your website in 2021."
7274
  msgstr ""
7275
 
7276
+ #: languages/vue.php:1715
7277
  msgid "Join our Communities!"
7278
  msgstr ""
7279
 
7280
+ #: languages/vue.php:1718
7281
  msgid "Become a WordPress expert in 2021. Join our amazing communities and take your website to the next level."
7282
  msgstr ""
7283
 
7284
+ #: languages/vue.php:1721
7285
  msgid "Facebook Group"
7286
  msgstr ""
7287
 
7288
+ #: languages/vue.php:1724
7289
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
7290
  msgstr ""
7291
 
7292
+ #: languages/vue.php:1727
7293
  msgid "Join Now...It’s Free!"
7294
  msgstr ""
7295
 
7296
+ #: languages/vue.php:1730
7297
  msgid "WordPress Tutorials by WPBeginner"
7298
  msgstr ""
7299
 
7300
+ #: languages/vue.php:1733
7301
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
7302
  msgstr ""
7303
 
7304
+ #: languages/vue.php:1736
7305
  msgid "Visit WPBeginner"
7306
  msgstr ""
7307
 
7308
+ #: languages/vue.php:1739
7309
  msgid "Follow Us!"
7310
  msgstr ""
7311
 
7312
+ #: languages/vue.php:1742
7313
  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."
7314
  msgstr ""
7315
 
7316
+ #: languages/vue.php:1745
7317
  msgid "Copyright ExactMetrics, 2021"
7318
  msgstr ""
7319
 
7320
+ #: languages/vue.php:1748
7321
  msgid "Upgrade to ExactMetrics Pro to Unlock Additional Actionable Insights"
7322
  msgstr ""
7323
 
7324
+ #: languages/vue.php:1754
7325
  msgid "January"
7326
  msgstr ""
7327
 
7328
+ #: languages/vue.php:1757
7329
  msgid "February"
7330
  msgstr ""
7331
 
7332
+ #: languages/vue.php:1760
7333
  msgid "March"
7334
  msgstr ""
7335
 
7336
+ #: languages/vue.php:1763
7337
  msgid "April"
7338
  msgstr ""
7339
 
7340
+ #: languages/vue.php:1766
7341
  msgid "May"
7342
  msgstr ""
7343
 
7344
+ #: languages/vue.php:1769
7345
  msgid "June"
7346
  msgstr ""
7347
 
7348
+ #: languages/vue.php:1772
7349
  msgid "July"
7350
  msgstr ""
7351
 
7352
+ #: languages/vue.php:1775
7353
  msgid "August"
7354
  msgstr ""
7355
 
7356
+ #: languages/vue.php:1778
7357
  msgid "September"
7358
  msgstr ""
7359
 
7360
+ #: languages/vue.php:1781
7361
  msgid "October"
7362
  msgstr ""
7363
 
7364
+ #: languages/vue.php:1784
7365
  msgid "November"
7366
  msgstr ""
7367
 
7368
+ #: languages/vue.php:1787
7369
  msgid "December"
7370
  msgstr ""
7371
 
7372
  #. Translators: Number of visitors.
7373
+ #: languages/vue.php:1791
7374
  msgid "Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>"
7375
  msgstr ""
7376
 
7377
+ #: languages/vue.php:1794
7378
  msgid "See the top Traffic Sources and Top Pages for the Month of %s in the Overview Report to replicate your success."
7379
  msgstr ""
7380
 
7381
  #. Translators: Number of visitors.
7382
+ #: languages/vue.php:1798
7383
  msgid "Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries."
7384
  msgstr ""
7385
 
7386
  #. Translators: Number of visitors.
7387
+ #: languages/vue.php:1802
7388
  msgid "%s Visitors"
7389
  msgstr ""
7390
 
7391
  #. Translators: Percent and Number of visitors.
7392
+ #: languages/vue.php:1806
7393
  msgid "%1$s&#37 of your visitors were %2$s"
7394
  msgstr ""
7395
 
7396
  #. Translators: Number of visitors and their age.
7397
+ #: languages/vue.php:1810
7398
  msgid "%1$s&#37 of your visitors were between the ages of %2$s"
7399
  msgstr ""
7400
 
7401
+ #: languages/vue.php:1813
7402
  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>"
7403
  msgstr ""
7404
 
7405
  #. Translators: Number of minutes spent on site.
7406
+ #: languages/vue.php:1817
7407
  msgid "Each visitor spent an average of %s minutes on your website in 2020."
7408
  msgstr ""
7409
 
7410
  #. Translators: Name of device type.
7411
+ #: languages/vue.php:1821
7412
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
7413
  msgstr ""
7414
 
7415
  #. Translators: Number of visitors and device percentage.
7416
+ #: languages/vue.php:1825
7417
  msgid "%1$s&#37 of your visitors were on a %2$s device."
7418
  msgstr ""
7419
 
7420
+ #: languages/vue.php:1828
7421
  msgid "Desktop"
7422
  msgstr ""
7423
 
7424
+ #: languages/vue.php:1831
7425
  msgid "Tablet"
7426
  msgstr ""
7427
 
7428
+ #: languages/vue.php:1834
7429
  msgid "Mobile"
7430
  msgstr ""
7431
 
7432
+ #: languages/vue.php:1837
7433
  msgid "Force Deauthenticate"
7434
  msgstr ""
7435
 
7436
+ #: languages/vue.php:1840
7437
  msgid "Disconnect ExactMetrics"
7438
  msgstr ""
7439
 
7440
+ #: languages/vue.php:1844
7441
  msgid "Authenticating"
7442
  msgstr ""
7443
 
7444
+ #: languages/vue.php:1847
7445
  msgid "Verifying Credentials"
7446
  msgstr ""
7447
 
7448
+ #: languages/vue.php:1850
7449
  msgid "Your site is connected to ExactMetrics!"
7450
  msgstr ""
7451
 
7452
+ #: languages/vue.php:1853
7453
  msgid "Deauthenticating"
7454
  msgstr ""
7455
 
7456
+ #: languages/vue.php:1856
7457
  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."
7458
  msgstr ""
7459
 
7460
+ #: languages/vue.php:1859
7461
+ #: languages/vue.php:1933
7462
  msgid "Connect ExactMetrics"
7463
  msgstr ""
7464
 
7465
+ #: languages/vue.php:1862
7466
  msgid "Verify Credentials"
7467
  msgstr ""
7468
 
7469
+ #: languages/vue.php:1868
7470
  msgid "Website Profile"
7471
  msgstr ""
7472
 
7473
+ #: languages/vue.php:1871
7474
  msgid "Active Profile"
7475
  msgstr ""
7476
 
7477
+ #: languages/vue.php:1875
7478
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
7479
  msgstr ""
7480
 
7481
+ #: languages/vue.php:1879
7482
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
7483
  msgstr ""
7484
 
7485
+ #: languages/vue.php:1882
7486
  msgid "Dual Tracking Profile"
7487
  msgstr ""
7488
 
7489
+ #: languages/vue.php:1885
7490
  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."
7491
  msgstr ""
7492
 
7493
+ #: languages/vue.php:1888
7494
  msgid "Your Universal Analytics code should look like UA-XXXXXXXXXX where the X's are numbers."
7495
  msgstr ""
7496
 
7497
+ #: languages/vue.php:1891
7498
  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."
7499
  msgstr ""
7500
 
7501
+ #: languages/vue.php:1894
7502
  msgid "Your Measurement ID should look like G-XXXXXXXXXX where the X's are numbers."
7503
  msgstr ""
7504
 
7505
+ #: languages/vue.php:1897
7506
  msgid "Measurement Protocol API Secret"
7507
  msgstr ""
7508
 
7509
+ #: languages/vue.php:1900
7510
  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."
7511
  msgstr ""
7512
 
7513
+ #: languages/vue.php:1903
7514
  msgid "Classic mode"
7515
  msgstr ""
7516
 
7517
+ #: languages/vue.php:1906
7518
  msgid "Proceed"
7519
  msgstr ""
7520
 
7521
+ #: languages/vue.php:1909
7522
  msgid "Connection Information"
7523
  msgstr ""
7524
 
7525
+ #: languages/vue.php:1912
7526
  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."
7527
  msgstr ""
7528
 
7529
+ #: languages/vue.php:1915
7530
  msgid "Hostname"
7531
  msgstr ""
7532
 
7533
+ #: languages/vue.php:1918
7534
  msgid "FTP Username"
7535
  msgstr ""
7536
 
7537
+ #: languages/vue.php:1921
7538
  msgid "FTP Password"
7539
  msgstr ""
7540
 
7541
+ #: languages/vue.php:1924
7542
  msgid "This password will not be stored on the server."
7543
  msgstr ""
7544
 
7545
+ #: languages/vue.php:1927
7546
  msgid "Connection Type"
7547
  msgstr ""
7548
 
7549
+ #: languages/vue.php:1930
7550
  msgid "Cancel"
7551
  msgstr ""
7552
 
7553
+ #: languages/vue.php:1936
7554
  msgid "Website profile"
7555
  msgstr ""
7556
 
7557
+ #: languages/vue.php:1939
7558
  msgid "Active profile"
7559
  msgstr ""
7560
 
7561
+ #: languages/vue.php:1942
7562
  msgid "Skip and Keep Connection"
7563
  msgstr ""
7564
 
7565
  #. Translators: Replaced with the number of days
7566
+ #: languages/vue.php:1946
7567
  msgid "vs. Previous Day"
7568
  msgstr ""
7569
 
7570
+ #: languages/vue.php:1949
7571
  msgid "No change"
7572
  msgstr ""
7573
 
7574
+ #: languages/vue.php:1952
7575
  msgid "Choose Theme"
7576
  msgstr ""
7577
 
7578
+ #: languages/vue.php:1955
7579
  msgid "Widget Styling"
7580
  msgstr ""
7581
 
7582
+ #: languages/vue.php:1958
7583
  msgid "Choose how you want to determine the colors, font sizes and spacing of the widget."
7584
  msgstr ""
7585
 
7586
+ #: languages/vue.php:1961
7587
  msgid "Sort By"
7588
  msgstr ""
7589
 
7590
+ #: languages/vue.php:1964
7591
  msgid "Choose how you'd like the widget to determine your popular posts."
7592
  msgstr ""
7593
 
7594
+ #: languages/vue.php:1967
7595
  msgid "Display Title"
7596
  msgstr ""
7597
 
7598
+ #: languages/vue.php:1973
7599
  msgid "Title your widget and set its display preferences."
7600
  msgstr ""
7601
 
7602
+ #: languages/vue.php:1976
7603
  msgid "Include in Post Types"
7604
  msgstr ""
7605
 
7606
+ #: languages/vue.php:1979
7607
  msgid "Exclude from specific posts"
7608
  msgstr ""
7609
 
7610
  #. Translators: Placeholders make the text bold.
7611
+ #: languages/vue.php:1983
7612
  msgid "Choose which Post Types the widget %1$sWILL%2$s be placed."
7613
  msgstr ""
7614
 
7615
  #. Translators: Placeholders make the text bold.
7616
+ #: languages/vue.php:1987
7617
  msgid "Choose from which Posts the widget %1$sWILL NOT%2$s be placed."
7618
  msgstr ""
7619
 
7620
+ #: languages/vue.php:1990
7621
  msgid "Loading Themes"
7622
  msgstr ""
7623
 
7624
  #. Translators: placeholders make text small.
7625
+ #: languages/vue.php:1994
7626
  msgid "Default Styles %1$s- As seen above.%2$s"
7627
  msgstr ""
7628
 
7629
  #. Translators: placeholders make text small.
7630
+ #: languages/vue.php:1998
7631
  msgid "No Styles %1$s- Use your own CSS.%2$s"
7632
  msgstr ""
7633
 
7634
  #. Translators: placeholders make text small.
7635
+ #: languages/vue.php:2002
7636
  msgid "Comments %1$s- Randomly rotate your most commented on posts from the past 30 days.%2$s"
7637
  msgstr ""
7638
 
7639
  #. Translators: placeholders make text small.
7640
+ #: languages/vue.php:2006
7641
  msgid "SharedCount %1$s- Connect with your SharedCount account to determine popular posts by share count.%2$s"
7642
  msgstr ""
7643
 
7644
  #. Translators: placeholders make text small.
7645
+ #: languages/vue.php:2010
7646
  msgid "Curated %1$s- Choose the posts which will randomly rotate in the widget.%2$s"
7647
  msgstr ""
7648
 
7649
+ #: languages/vue.php:2013
7650
  msgid "Placement"
7651
  msgstr ""
7652
 
7653
+ #: languages/vue.php:2016
7654
  msgid "Choose how you'd like to place the widget."
7655
  msgstr ""
7656
 
7657
+ #: languages/vue.php:2019
7658
  msgid "Insert After"
7659
  msgstr ""
7660
 
7661
+ #: languages/vue.php:2022
7662
  msgid "Choose where in the post body the widget will be placed."
7663
  msgstr ""
7664
 
7665
+ #: languages/vue.php:2026
7666
  msgid "Customize Design"
7667
  msgstr ""
7668
 
7669
+ #: languages/vue.php:2029
7670
  msgid "words"
7671
  msgstr ""
7672
 
7673
+ #: languages/vue.php:2032
7674
  msgid "Please select at least one post to display."
7675
  msgstr ""
7676
 
7677
  #. Translators: placeholders make text small.
7678
+ #: languages/vue.php:2036
7679
  msgid "Automatic %1$s- The widget is automatically placed inside the post body.%2$s"
7680
  msgstr ""
7681
 
7682
  #. Translators: placeholders make text small.
7683
+ #: languages/vue.php:2040
7684
  msgid "Manual %1$s- Manually place the widget using Gutenberg blocks or using our shortcode.%2$s"
7685
  msgstr ""
7686
 
7687
+ #: languages/vue.php:2043
7688
  msgid "Caching"
7689
  msgstr ""
7690
 
7691
+ #: languages/vue.php:2046
7692
  msgid "Enable Data Caching"
7693
  msgstr ""
7694
 
7695
+ #: languages/vue.php:2049
7696
  msgid "Refresh Cache Every"
7697
  msgstr ""
7698
 
7699
+ #: languages/vue.php:2052
7700
  msgid "Choose how often to refresh the cache."
7701
  msgstr ""
7702
 
7703
+ #: languages/vue.php:2055
7704
  msgid "Enable Ajaxify"
7705
  msgstr ""
7706
 
7707
+ #: languages/vue.php:2058
7708
  msgid "Ajaxify Widget"
7709
  msgstr ""
7710
 
7711
+ #: languages/vue.php:2061
7712
  msgid "Use to bypass page caching."
7713
  msgstr ""
7714
 
7715
+ #: languages/vue.php:2064
7716
  msgid "Empty Cache"
7717
  msgstr ""
7718
 
7719
+ #: languages/vue.php:2067
7720
  msgid "Click to manually wipe the cache right now."
7721
  msgstr ""
7722
 
7723
+ #: languages/vue.php:2070
7724
  msgid "Popular posts cache emptied"
7725
  msgstr ""
7726
 
7727
+ #: languages/vue.php:2073
7728
  msgid "Error emptying the popular posts cache. Please try again."
7729
  msgstr ""
7730
 
7731
+ #: languages/vue.php:2076
7732
  msgid "Last 30 Days Analytics for "
7733
  msgstr ""
7734
 
7735
+ #: languages/vue.php:2079
7736
  msgid "Your Website"
7737
  msgstr ""
7738
 
7739
+ #: languages/vue.php:2082
7740
  msgid "Avg. Duration"
7741
  msgstr ""
7742
 
7743
+ #: languages/vue.php:2085
7744
  msgid "More data is available"
7745
  msgstr ""
7746
 
7747
+ #: languages/vue.php:2088
7748
  msgid "Want to see page-specific stats?"
7749
  msgstr ""
7750
 
7751
+ #: languages/vue.php:2091
7752
  msgid "You appear to be offline. WPForms not installed."
7753
  msgstr ""
7754
 
7755
  #. Translators: Error status and error text.
7756
+ #: languages/vue.php:2095
7757
  msgid "Can't activate addon. Error: %1$s, %2$s"
7758
  msgstr ""
7759
 
7760
+ #: languages/vue.php:2098
7761
  msgid "You appear to be offline. Addon not activated."
7762
  msgstr ""
7763
 
7764
  #. Translators: Error status and error text.
7765
+ #: languages/vue.php:2102
7766
  msgid "Can't deactivate addon. Error: %1$s, %2$s"
7767
  msgstr ""
7768
 
7769
+ #: languages/vue.php:2105
7770
  msgid "You appear to be offline. Addon not deactivated."
7771
  msgstr ""
7772
 
7773
  #. Translators: Error status and error text.
7774
+ #: languages/vue.php:2109
7775
  msgid "Can't install plugin. Error: %1$s, %2$s"
7776
  msgstr ""
7777
 
7778
+ #: languages/vue.php:2112
7779
  msgid "You appear to be offline. Plugin not installed."
7780
  msgstr ""
7781
 
7782
  #. Translators: Error status and error text.
7783
+ #: languages/vue.php:2116
7784
  msgid "Can't install addon. Error: %1$s, %2$s"
7785
  msgstr ""
7786
 
7787
+ #: languages/vue.php:2119
7788
  msgid "You appear to be offline. Addon not installed."
7789
  msgstr ""
7790
 
7791
  #. Translators: Error status and error text.
7792
+ #: languages/vue.php:2123
7793
  msgid "Can't install WPForms. Error: %1$s, %2$s"
7794
  msgstr ""
7795
 
7796
+ #: languages/vue.php:2126
7797
  msgid "Network Active"
7798
  msgstr ""
7799
 
7800
+ #: languages/vue.php:2129
7801
  msgid "Active"
7802
  msgstr ""
7803
 
7804
+ #: languages/vue.php:2132
7805
  msgid "Inactive"
7806
  msgstr ""
7807
 
7808
  #. Translators: Placeholder for the addon status (installed, active, etc).
7809
+ #: languages/vue.php:2136
7810
  msgid "Status: %s"
7811
  msgstr ""
7812
 
7813
+ #: languages/vue.php:2139
7814
  msgid "Not Installed"
7815
  msgstr ""
7816
 
7817
  #. Translators: Makes text bold and adds smiley.
7818
+ #: languages/vue.php:2143
7819
  msgid "You’re using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7820
  msgstr ""
7821
 
7822
  #. Translators: Makes text green.
7823
+ #: languages/vue.php:2147
7824
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout."
7825
  msgstr ""
7826
 
7827
+ #: languages/vue.php:2150
7828
  msgid "Unlock All Features and Upgrade to Pro"
7829
  msgstr ""
7830
 
7831
  #. Translators: Make text green and add smiley face.
7832
+ #: languages/vue.php:2154
7833
  msgid "You're using %1$sExactMetrics Lite%2$s - no license needed. Enjoy! %3$s"
7834
  msgstr ""
7835
 
7836
  #. Translators: Make text green.
7837
+ #: languages/vue.php:2158
7838
  msgid "As a valued ExactMetrics Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!"
7839
  msgstr ""
7840
 
7841
+ #: languages/vue.php:2161
7842
  msgid "Unlock PRO Features Now"
7843
  msgstr ""
7844
 
7845
+ #: languages/vue.php:2165
7846
  msgid "Paste your license key here"
7847
  msgstr ""
7848
 
7849
+ #: languages/vue.php:2169
7850
  msgid "Verify"
7851
  msgstr ""
7852
 
7853
  #. Translators: Add link to retrieve license from account area.
7854
+ #: languages/vue.php:2173
7855
  msgid "Already purchased? Simply enter your license key below to connect with ExactMetrics PRO! %1$sRetrieve your license key%2$s."
7856
  msgstr ""
7857
 
7858
+ #: languages/vue.php:2177
7859
  msgid "There was an error unlocking ExactMetrics PRO please try again or install manually."
7860
  msgstr ""
7861
 
7862
+ #: languages/vue.php:2180
7863
  msgid "%1$sAll-in-One SEO%2$s Makes SEO Simple. Gain Valuable Organic Traffic."
7864
  msgstr ""
7865
 
7866
+ #: languages/vue.php:2183
7867
  msgid "Automatically migrate all of your SEO settings with just 1 click!"
7868
  msgstr ""
7869
 
7870
+ #: languages/vue.php:2186
7871
  msgid "1,938"
7872
  msgstr ""
7873
 
7874
+ #: languages/vue.php:2189
7875
  msgid "2+ Million Active Installs"
7876
  msgstr ""
7877
 
7878
+ #: languages/vue.php:2192
7879
  msgid "AIOSEO is the DIY Solution for Managing your SEO"
7880
  msgstr ""
7881
 
7882
+ #: languages/vue.php:2195
7883
  msgid "Set up the proper SEO foundations in less than 10 minutes."
7884
  msgstr ""
7885
 
7886
+ #: languages/vue.php:2198
7887
  msgid "SEO Audit Checklist"
7888
  msgstr ""
7889
 
7890
+ #: languages/vue.php:2201
7891
  msgid "Analyze your entire WordPress site to detect critical errors and get actionable insights to boost your SEO and get more traffic."
7892
  msgstr ""
7893
 
7894
+ #: languages/vue.php:2204
7895
  msgid "Optimize Your Pages For Higher Rankings With TruSEO Score."
7896
  msgstr ""
7897
 
7898
+ #: languages/vue.php:2207
7899
  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."
7900
  msgstr ""
7901
 
7902
+ #: languages/vue.php:2210
7903
  msgid "Get AIOSEO for WordPress"
7904
  msgstr ""
7905
 
7906
+ #: languages/vue.php:2213
7907
  msgid "Get the #1 Most Powerful WordPress SEO Plugin Today"
7908
  msgstr ""
7909
 
7910
+ #: languages/vue.php:2216
7911
  msgid "Try it out today, for free."
7912
  msgstr ""
7913
 
7914
+ #: languages/vue.php:2219
7915
  msgid "Join 2,000,000+ Professionals who use AIOSEO to Improve Their Website Search Rankings."
7916
  msgstr ""
7917
 
7918
+ #: languages/vue.php:2222
7919
  msgid "Activate and Install the Plugin with just one click!"
7920
  msgstr ""
7921
 
7922
+ #: languages/vue.php:2225
7923
  msgid "Installing AIOSEO..."
7924
  msgstr ""
7925
 
7926
+ #: languages/vue.php:2228
7927
  msgid "Congrats! All-in-One SEO Installed."
7928
  msgstr ""
7929
 
7930
+ #: languages/vue.php:2231
7931
  msgid "Switch to AIOSEO"
7932
  msgstr ""
7933
 
7934
+ #: languages/vue.php:2234
7935
  msgid "Installation Failed. Please refresh and try again."
7936
  msgstr ""
7937
 
7938
+ #: languages/vue.php:2237
7939
  msgid "Activating AIOSEO..."
7940
  msgstr ""
7941
 
7942
+ #: languages/vue.php:2240
7943
  msgid "Activate AIOSEO"
7944
  msgstr ""
7945
 
7946
+ #: languages/vue.php:2243
7947
  msgid "Activation Failed. Please refresh and try again."
7948
  msgstr ""
7949
 
7950
+ #: languages/vue.php:2246
7951
  msgid "Unlock Form Tracking"
7952
  msgstr ""
7953
 
7954
+ #: languages/vue.php:2249
7955
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
7956
  msgstr ""
7957
 
7958
+ #: languages/vue.php:2252
7959
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
7960
  msgstr ""
7961
 
7962
+ #: languages/vue.php:2255
7963
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
7964
  msgstr ""
7965
 
7966
+ #: languages/vue.php:2258
7967
  msgid "Show"
7968
  msgstr ""
7969
 
7970
+ #: languages/vue.php:2261
7971
  msgid "File imported"
7972
  msgstr ""
7973
 
7974
+ #: languages/vue.php:2264
7975
  msgid "Settings successfully updated!"
7976
  msgstr ""
7977
 
7978
+ #: languages/vue.php:2267
7979
  msgid "Error importing settings"
7980
  msgstr ""
7981
 
7982
+ #: languages/vue.php:2270
7983
  msgid "Please choose a .json file generated by a ExactMetrics settings export."
7984
  msgstr ""
7985
 
7986
+ #: languages/vue.php:2273
7987
  msgid "Import/Export"
7988
  msgstr ""
7989
 
7990
+ #: languages/vue.php:2276
7991
  msgid "Import"
7992
  msgstr ""
7993
 
7994
+ #: languages/vue.php:2279
7995
  msgid "Import settings from another ExactMetrics website."
7996
  msgstr ""
7997
 
7998
+ #: languages/vue.php:2282
7999
  msgid "Export"
8000
  msgstr ""
8001
 
8002
+ #: languages/vue.php:2285
8003
  msgid "Export settings to import into another ExactMetrics install."
8004
  msgstr ""
8005
 
8006
+ #: languages/vue.php:2288
8007
  msgid "Import Settings"
8008
  msgstr ""
8009
 
8010
+ #: languages/vue.php:2291
8011
  msgid "Export Settings"
8012
  msgstr ""
8013
 
8014
+ #: languages/vue.php:2294
8015
  msgid "Please choose a file to import"
8016
  msgstr ""
8017
 
8018
+ #: languages/vue.php:2297
8019
  msgid "Click Choose file below to select the settings export file from another site."
8020
  msgstr ""
8021
 
8022
+ #: languages/vue.php:2300
8023
  msgid "Use the button below to export a file with your ExactMetrics settings."
8024
  msgstr ""
8025
 
8026
+ #: languages/vue.php:2303
8027
  msgid "Choose file"
8028
  msgstr ""
8029
 
8030
+ #: languages/vue.php:2306
8031
  msgid "No file chosen"
8032
  msgstr ""
8033
 
8034
+ #: languages/vue.php:2309
8035
  msgid "Uploading file..."
8036
  msgstr ""
8037
 
8038
+ #: languages/vue.php:2312
8039
  msgid "Custom code"
8040
  msgstr ""
8041
 
8042
  #. Translators: Adds a link to the Google reference.
8043
+ #: languages/vue.php:2316
8044
  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."
8045
  msgstr ""
8046
 
8047
+ #: languages/vue.php:2323
8048
  msgid "Automatic Updates"
8049
  msgstr ""
8050
 
8051
+ #: languages/vue.php:2326
8052
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
8053
  msgstr ""
8054
 
8055
+ #: languages/vue.php:2329
8056
  msgid "Hide Admin Bar Reports"
8057
  msgstr ""
8058
 
8059
  #. Translators: placeholders make text small.
8060
+ #: languages/vue.php:2333
8061
  msgid "Enabled %1$s- Show reports and dashboard widget.%2$s"
8062
  msgstr ""
8063
 
8064
  #. Translators: placeholders make text small.
8065
+ #: languages/vue.php:2337
8066
  msgid "Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s"
8067
  msgstr ""
8068
 
8069
  #. Translators: placeholders make text small.
8070
+ #: languages/vue.php:2341
8071
  msgid "Disabled %1$s- Hide reports and dashboard widget.%2$s"
8072
  msgstr ""
8073
 
8074
  #. Translators: placeholders make text small.
8075
+ #: languages/vue.php:2345
8076
  msgid "Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s"
8077
  msgstr ""
8078
 
8079
  #. Translators: placeholders make text small.
8080
+ #: languages/vue.php:2349
8081
  msgid "Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s"
8082
  msgstr ""
8083
 
8084
  #. Translators: placeholders make text small.
8085
+ #: languages/vue.php:2353
8086
  msgid "None %1$s- Manually update everything.%2$s"
8087
  msgstr ""
8088
 
8089
  #. Translators: Adds a link to the general settings tab.
8090
+ #: languages/vue.php:2357
8091
  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."
8092
  msgstr ""
8093
 
8094
+ #: languages/vue.php:2360
8095
  msgid "Permissions"
8096
  msgstr ""
8097
 
8098
+ #: languages/vue.php:2363
8099
  msgid "Export PDF Reports"
8100
  msgstr ""
8101
 
8102
+ #: languages/vue.php:2366
8103
  msgid "Allow These User Roles to See Reports"
8104
  msgstr ""
8105
 
8106
+ #: languages/vue.php:2369
8107
  msgid "Users that have at least one of these roles will be able to view the reports."
8108
  msgstr ""
8109
 
8110
+ #: languages/vue.php:2372
8111
  msgid "Allow These User Roles to Save Settings"
8112
  msgstr ""
8113
 
8114
+ #: languages/vue.php:2375
8115
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
8116
  msgstr ""
8117
 
8118
+ #: languages/vue.php:2378
8119
  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."
8120
  msgstr ""
8121
 
8122
+ #: languages/vue.php:2381
8123
  msgid "Exclude These User Roles From Tracking"
8124
  msgstr ""
8125
 
8126
+ #: languages/vue.php:2384
8127
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
8128
  msgstr ""
8129
 
8130
+ #: languages/vue.php:2387
8131
  msgid "Make your ExactMetrics campaign links prettier with Pretty Links!"
8132
  msgstr ""
8133
 
8134
+ #: languages/vue.php:2390
8135
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable, totally shareable links."
8136
  msgstr ""
8137
 
8138
+ #: languages/vue.php:2393
8139
  msgid "Take your ExactMetrics campaign links from our URL Builder and shorten them with Pretty Links!"
8140
  msgstr ""
8141
 
8142
+ #: languages/vue.php:2396
8143
  msgid "Over 200,000 websites use Pretty Links!"
8144
  msgstr ""
8145
 
8146
+ #: languages/vue.php:2399
8147
  msgid "Install Pretty Links"
8148
  msgstr ""
8149
 
8150
+ #: languages/vue.php:2402
8151
  msgid "Pretty Links Installed & Activated"
8152
  msgstr ""
8153
 
8154
+ #: languages/vue.php:2405
8155
  msgid "Download Pretty Links"
8156
  msgstr ""
8157
 
8158
+ #: languages/vue.php:2408
8159
  msgid "Install Pretty Links from the WordPress.org plugin repository."
8160
  msgstr ""
8161
 
8162
+ #: languages/vue.php:2411
8163
  msgid "Activate Pretty Links"
8164
  msgstr ""
8165
 
8166
+ #: languages/vue.php:2414
8167
  msgid "Activating Pretty Links..."
8168
  msgstr ""
8169
 
8170
+ #: languages/vue.php:2417
8171
  msgid "Create New Pretty Link"
8172
  msgstr ""
8173
 
8174
+ #: languages/vue.php:2420
8175
  msgid "Create a New Pretty Link"
8176
  msgstr ""
8177
 
8178
+ #: languages/vue.php:2423
8179
  msgid "Grab your campaign link and paste it into the Target URL field."
8180
  msgstr ""
8181
 
8182
+ #: languages/vue.php:2426
8183
  msgid "Custom Campaign Parameters"
8184
  msgstr ""
8185
 
8186
+ #: languages/vue.php:2429
8187
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
8188
  msgstr ""
8189
 
8190
+ #: languages/vue.php:2432
8191
  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."
8192
  msgstr ""
8193
 
8194
  #. Translators: Marks the field as required.
8195
+ #: languages/vue.php:2436
8196
  msgid "Website URL %s"
8197
  msgstr ""
8198
 
8199
  #. Translators: Display the current website url in italic.
8200
+ #: languages/vue.php:2440
8201
  msgid "The full website URL (e.g. %1$s %2$s%3$s)"
8202
  msgstr ""
8203
 
8204
  #. Translators: Marks the field as required.
8205
+ #: languages/vue.php:2444
8206
  msgid "Campaign Source %s"
8207
  msgstr ""
8208
 
8209
  #. Translators: Make the text italic.
8210
+ #: languages/vue.php:2448
8211
  msgid "Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)"
8212
  msgstr ""
8213
 
8214
  #. Translators: Make the text italic.
8215
+ #: languages/vue.php:2452
8216
  msgid "Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)"
8217
  msgstr ""
8218
 
8219
  #. Translators: Make the text italic.
8220
+ #: languages/vue.php:2456
8221
  msgid "Enter a name to easily identify (e.g. %1$sspring_sale%2$s)"
8222
  msgstr ""
8223
 
8224
+ #: languages/vue.php:2459
8225
  msgid "Enter the paid keyword"
8226
  msgstr ""
8227
 
8228
+ #: languages/vue.php:2462
8229
  msgid "Enter something to differentiate ads"
8230
  msgstr ""
8231
 
8232
+ #: languages/vue.php:2465
8233
  msgid "Use Fragment"
8234
  msgstr ""
8235
 
8236
  #. Translators: Make the text bold.
8237
+ #: languages/vue.php:2469
8238
  msgid "Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s"
8239
  msgstr ""
8240
 
8241
+ #: languages/vue.php:2472
8242
  msgid "URL to use"
8243
  msgstr ""
8244
 
8245
+ #: languages/vue.php:2475
8246
  msgid "(Updates automatically)"
8247
  msgstr ""
8248
 
8249
+ #: languages/vue.php:2478
8250
  msgid "Copy to Clipboard"
8251
  msgstr ""
8252
 
8253
+ #: languages/vue.php:2481
8254
  msgid "Copy to Pretty Links"
8255
  msgstr ""
8256
 
8257
+ #: languages/vue.php:2484
8258
  msgid "Make your campaign links prettier!"
8259
  msgstr ""
8260
 
8261
+ #: languages/vue.php:2487
8262
  msgid "Pretty Links turns those ugly, long campaign links into clean, memorable, speakable and totally shareable links."
8263
  msgstr ""
8264
 
8265
+ #: languages/vue.php:2490
8266
  msgid "More Information & Examples"
8267
  msgstr ""
8268
 
8269
+ #: languages/vue.php:2493
8270
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
8271
  msgstr ""
8272
 
8273
+ #: languages/vue.php:2496
8274
  msgid "Campaign Source"
8275
  msgstr ""
8276
 
8277
+ #: languages/vue.php:2499
8278
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
8279
  msgstr ""
8280
 
8281
+ #: languages/vue.php:2502
8282
  msgid "Campaign Medium"
8283
  msgstr ""
8284
 
8285
+ #: languages/vue.php:2505
8286
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
8287
  msgstr ""
8288
 
8289
+ #: languages/vue.php:2508
8290
  msgid "Campaign Name"
8291
  msgstr ""
8292
 
8293
+ #: languages/vue.php:2511
8294
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
8295
  msgstr ""
8296
 
8297
+ #: languages/vue.php:2514
8298
  msgid "Campaign Term"
8299
  msgstr ""
8300
 
8301
+ #: languages/vue.php:2517
8302
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
8303
  msgstr ""
8304
 
8305
+ #: languages/vue.php:2520
8306
  msgid "Campaign Content"
8307
  msgstr ""
8308
 
8309
+ #: languages/vue.php:2523
8310
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
8311
  msgstr ""
8312
 
8313
  #. Translators: Example.
8314
+ #: languages/vue.php:2527
8315
  msgid "Example: %s"
8316
  msgstr ""
8317
 
8318
  #. Translators: Examples.
8319
+ #: languages/vue.php:2531
8320
  msgid "Examples: %s"
8321
  msgstr ""
8322
 
8323
+ #: languages/vue.php:2534
8324
  msgid "About Campaigns"
8325
  msgstr ""
8326
 
8327
+ #: languages/vue.php:2537
8328
  msgid "About Custom Campaigns"
8329
  msgstr ""
8330
 
8331
+ #: languages/vue.php:2540
8332
  msgid "Best Practices for Creating Custom Campaigns"
8333
  msgstr ""
8334
 
8335
+ #: languages/vue.php:2543
8336
  msgid "About the Referral Traffic Report"
8337
  msgstr ""
8338
 
8339
+ #: languages/vue.php:2546
8340
  msgid "About Traffic Source Dimensions"
8341
  msgstr ""
8342
 
8343
+ #: languages/vue.php:2549
8344
  msgid "AdWords Auto-Tagging"
8345
  msgstr ""
8346
 
8347
+ #: languages/vue.php:2552
8348
  msgid "Additional Information"
8349
  msgstr ""
8350
 
8351
+ #: languages/vue.php:2555
8352
  msgid "Affiliate Links"
8353
  msgstr ""
8354
 
8355
  #. Translators: Add links to documentation.
8356
+ #: languages/vue.php:2559
8357
  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."
8358
  msgstr ""
8359
 
8360
+ #: languages/vue.php:2562
8361
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
8362
  msgstr ""
8363
 
8364
+ #: languages/vue.php:2565
8365
  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."
8366
  msgstr ""
8367
 
8368
+ #: languages/vue.php:2568
8369
  msgid "Disable the Headline Analyzer"
8370
  msgstr ""
8371
 
8372
  #. Translators: Add line break.
8373
+ #: languages/vue.php:2572
8374
  msgid "See All Your Important Store%s Metrics in One Place"
8375
  msgstr ""
8376
 
8377
+ #: languages/vue.php:2575
8378
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
8379
  msgstr ""
8380
 
8381
+ #: languages/vue.php:2578
8382
  msgid "See Your Conversion Rate to Improve Funnel"
8383
  msgstr ""
8384
 
8385
+ #: languages/vue.php:2582
8386
  msgid "See The Number of Transactions and Make Data-Driven Decisions"
8387
  msgstr ""
8388
 
8389
+ #: languages/vue.php:2586
8390
  msgid "See The Total Revenue to Track Growth"
8391
  msgstr ""
8392
 
8393
+ #: languages/vue.php:2590
8394
  msgid "See Average Order Value to Find Offer Opportunities"
8395
  msgstr ""
8396
 
8397
+ #: languages/vue.php:2594
8398
  msgid "See Your Top Products to See Individual Performance"
8399
  msgstr ""
8400
 
8401
+ #: languages/vue.php:2597
8402
  msgid "See your Top Conversion Sources and Focus on what's Working"
8403
  msgstr ""
8404
 
8405
+ #: languages/vue.php:2601
8406
  msgid "See The Time it Takes for Customers to Purchase"
8407
  msgstr ""
8408
 
8409
+ #: languages/vue.php:2605
8410
  msgid "See How Many Sessions are Needed for a Purchase"
8411
  msgstr ""
8412
 
8413
+ #: languages/vue.php:2608
8414
  msgid "Automatically Track Affiliate Sales"
8415
  msgstr ""
8416
 
8417
+ #: languages/vue.php:2611
8418
  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."
8419
  msgstr ""
8420
 
8421
+ #: languages/vue.php:2614
8422
  msgid "Works with WooCommerce, MemberPress, and EasyDigitalDownloads."
8423
  msgstr ""
8424
 
8425
+ #: languages/vue.php:2617
8426
  msgid "Cross Domain Tracking"
8427
  msgstr ""
8428
 
8429
  #. Translators: Add links to documentation.
8430
+ #: languages/vue.php:2621
8431
  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."
8432
  msgstr ""
8433
 
8434
+ #: languages/vue.php:2624
8435
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
8436
  msgstr ""
8437
 
8438
+ #: languages/vue.php:2627
8439
  msgid "Anonymize IP Addresses"
8440
  msgstr ""
8441
 
8442
+ #: languages/vue.php:2630
8443
  msgid "Link Attribution"
8444
  msgstr ""
8445
 
8446
+ #: languages/vue.php:2633
8447
  msgid "Enable Enhanced Link Attribution"
8448
  msgstr ""
8449
 
8450
+ #: languages/vue.php:2636
8451
  msgid "Enable Anchor Tracking"
8452
  msgstr ""
8453
 
8454
+ #: languages/vue.php:2639
8455
  msgid "Enable allowAnchor"
8456
  msgstr ""
8457
 
8458
+ #: languages/vue.php:2642
8459
  msgid "Enable allowLinker"
8460
  msgstr ""
8461
 
8462
+ #: languages/vue.php:2645
8463
  msgid "Enable Tag Links in RSS"
8464
  msgstr ""
8465
 
8466
+ #: languages/vue.php:2648
8467
  msgid "File Downloads"
8468
  msgstr ""
8469
 
8470
+ #: languages/vue.php:2651
8471
  msgid "Extensions of Files to Track as Downloads"
8472
  msgstr ""
8473
 
8474
+ #: languages/vue.php:2654
8475
  msgid "ExactMetrics will send an event to Google Analytics if a link to a file has one of the above extensions."
8476
  msgstr ""
8477
 
8478
  #. Translators: Add links to documentation.
8479
+ #: languages/vue.php:2658
8480
  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."
8481
  msgstr ""
8482
 
8483
  #. Translators: Add links to documentation.
8484
+ #: languages/vue.php:2662
8485
  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."
8486
  msgstr ""
8487
 
8488
  #. Translators: Add links to documentation.
8489
+ #: languages/vue.php:2666
8490
  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."
8491
  msgstr ""
8492
 
8493
+ #: languages/vue.php:2669
8494
  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."
8495
  msgstr ""
8496
 
8497
  #. Translators: Add links to documentation.
8498
+ #: languages/vue.php:2673
8499
  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."
8500
  msgstr ""
8501
 
8502
  #. Translators: Add links to documentation.
8503
+ #: languages/vue.php:2677
8504
  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."
8505
  msgstr ""
8506
 
8507
  #. Translators: Add links to documentation.
8508
+ #: languages/vue.php:2681
8509
  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."
8510
  msgstr ""
8511
 
8512
+ #: languages/vue.php:2684
8513
  msgid "Add domain"
8514
  msgstr ""
8515
 
8516
  #. Translators: Domain name example.
8517
+ #: languages/vue.php:2688
8518
  msgid "Domain (example: %s)"
8519
  msgstr ""
8520
 
8521
  #. Translators: Current domain name that should not be used.
8522
+ #: languages/vue.php:2692
8523
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
8524
  msgstr ""
8525
 
8526
  #. Translators: Adds link to the account area to retreive license key.
8527
+ #: languages/vue.php:2696
8528
  msgid "Already have a license key? Add it below to unlock ExactMetrics PRO. %1$sRetrieve your license key%2$s."
8529
  msgstr ""
8530
 
8531
+ #: languages/vue.php:2699
8532
  msgid "Connect ExactMetrics to Start Tracking Your Data"
8533
  msgstr ""
8534
 
8535
+ #: languages/vue.php:2702
8536
  msgid "Complete Upgrade"
8537
  msgstr ""
8538
 
8539
+ #: languages/vue.php:2705
8540
  msgid "Upgrade to Pro Version!"
8541
  msgstr ""
8542
 
8543
  #. Translators: Make text bold.
8544
+ #: languages/vue.php:2709
8545
  msgid "%1$sExactMetrics%2$s can automatically upgrade the installed version to the Pro and walk you through the process."
8546
  msgstr ""
8547
 
8548
+ #: languages/vue.php:2712
8549
  msgid "Install All-in-One SEO"
8550
  msgstr ""
8551
 
8552
+ #: languages/vue.php:2715
8553
  msgid "Improve Your Website Search Rankings With All-In-One SEO"
8554
  msgstr ""
8555
 
8556
+ #: languages/vue.php:2718
8557
  msgid "If you’re not using a plugin to optimize your website’s SEO you’re missing out on valuable organic traffic!"
8558
  msgstr ""
8559
 
8560
+ #: languages/vue.php:2721
8561
  msgid "Finally, a WordPress SEO Plugin that’s Easy and Powerful!"
8562
  msgstr ""
8563
 
8564
+ #: languages/vue.php:2724
8565
  msgid "AIOSEO makes it easy to set up the proper SEO foundations in less than 10 minutes."
8566
  msgstr ""
8567
 
8568
+ #: languages/vue.php:2727
8569
  msgid "Local SEO"
8570
  msgstr ""
8571
 
8572
+ #: languages/vue.php:2730
8573
  msgid "All in One SEO gives you all the tools you need to improve your local SEO and rank higher on Google Maps."
8574
  msgstr ""
8575
 
8576
+ #: languages/vue.php:2733
8577
  msgid "WooCommerce SEO"
8578
  msgstr ""
8579
 
8580
+ #: languages/vue.php:2736
8581
  msgid "Advanced eCommerce SEO support for WooCommerce to optimize product pages, product categories, and more."
8582
  msgstr ""
8583
 
8584
+ #: languages/vue.php:2739
8585
  msgid "SEO Custom User Roles"
8586
  msgstr ""
8587
 
8588
+ #: languages/vue.php:2742
8589
  msgid "SEO user roles allow you to manage access to important SEO features without handing over control of your website."
8590
  msgstr ""
8591
 
8592
+ #: languages/vue.php:2745
8593
  msgid "Google News Sitemap"
8594
  msgstr ""
8595
 
8596
+ #: languages/vue.php:2748
8597
  msgid "Get higher rankings and unlock more traffic by submitting your latest news articles to Google News."
8598
  msgstr ""
8599
 
8600
+ #: languages/vue.php:2751
8601
  msgid "Smart XML Sitemaps"
8602
  msgstr ""
8603
 
8604
+ #: languages/vue.php:2754
8605
  msgid "Automatically generate a WordPress XML sitemap and notify all search engines of any updates."
8606
  msgstr ""
8607
 
8608
+ #: languages/vue.php:2757
8609
  msgid "Social Media Integration"
8610
  msgstr ""
8611
 
8612
+ #: languages/vue.php:2760
8613
  msgid "Easily control how your content and thumbnails look on Facebook, Twitter, and other social media networks."
8614
  msgstr ""
8615
 
8616
+ #: languages/vue.php:2763
8617
  msgid "TruSEO On-Page Analysis"
8618
  msgstr ""
8619
 
8620
+ #: languages/vue.php:2766
8621
  msgid "Easily add title tags, meta descriptions, keywords, and everything else you need for proper on-page SEO optimization."
8622
  msgstr ""
8623
 
8624
+ #: languages/vue.php:2769
8625
  msgid "& Many More!"
8626
  msgstr ""
8627
 
8628
+ #: languages/vue.php:2772
8629
  msgid "Installing. Please wait.."
8630
  msgstr ""
8631
 
8632
+ #: languages/vue.php:2775
8633
  msgid "Install All-in-One-SEO"
8634
  msgstr ""
8635
 
8636
+ #: languages/vue.php:2778
8637
  msgid "Unlock the Publisher Report and Focus on the Content That Matters"
8638
  msgstr ""
8639
 
8640
+ #: languages/vue.php:2781
8641
  msgid "See Your Top Landing Pages to Improve Engagement"
8642
  msgstr ""
8643
 
8644
+ #: languages/vue.php:2784
8645
  msgid "See Your Top Exit Pages to Reduce Abandonment"
8646
  msgstr ""
8647
 
8648
+ #: languages/vue.php:2787
8649
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
8650
  msgstr ""
8651
 
8652
+ #: languages/vue.php:2790
8653
  msgid "See Your Top Affiliate Links and Focus on What’s Working"
8654
  msgstr ""
8655
 
8656
+ #: languages/vue.php:2793
8657
  msgid "See Your Top Downloads and Improve Conversions"
8658
  msgstr ""
8659
 
8660
+ #: languages/vue.php:2796
8661
  msgid "See Audience Demographic Report (Age / Gender / Interests)"
8662
  msgstr ""
8663
 
8664
+ #: languages/vue.php:2799
8665
  msgid "Welcome to the all-new ExactMetrics"
8666
  msgstr ""
8667
 
8668
+ #: languages/vue.php:2802
8669
  msgid "Redesigned from the ground up, ExactMetrics is built to bring a world-class analytics and reporting experience to WordPress."
8670
  msgstr ""
8671
 
8672
+ #: languages/vue.php:2805
8673
  msgid "The New & Improved ExactMetrics includes:"
8674
  msgstr ""
8675
 
8676
+ #: languages/vue.php:2808
8677
  msgid "All-New Design"
8678
  msgstr ""
8679
 
8680
+ #: languages/vue.php:2811
8681
  msgid "Better Reporting"
8682
  msgstr ""
8683
 
8684
+ #: languages/vue.php:2814
8685
  msgid "Better Tracking"
8686
  msgstr ""
8687
 
8688
+ #: languages/vue.php:2817
8689
  msgid "Better Support"
8690
  msgstr ""
8691
 
8692
+ #: languages/vue.php:2820
8693
  msgid "Continue"
8694
  msgstr ""
8695
 
8696
+ #: languages/vue.php:2823
8697
  msgid "Your settings have been automatically transferred."
8698
  msgstr ""
8699
 
8700
+ #: languages/vue.php:2826
8701
  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."
8702
  msgstr ""
8703
 
8704
+ #: languages/vue.php:2829
8705
  msgid "New"
8706
  msgstr ""
8707
 
8708
+ #: languages/vue.php:2832
8709
  msgid "Returning"
8710
  msgstr ""
8711
 
8712
+ #: languages/vue.php:2835
8713
  msgid "Top 10 Countries"
8714
  msgstr ""
8715
 
8716
+ #: languages/vue.php:2838
8717
  msgid "View Countries Report"
8718
  msgstr ""
8719
 
8720
+ #: languages/vue.php:2841
8721
  msgid "Top 10 Referrals"
8722
  msgstr ""
8723
 
8724
+ #: languages/vue.php:2844
8725
  msgid "View All Referral Sources"
8726
  msgstr ""
8727
 
8728
+ #: languages/vue.php:2847
8729
  msgid "View Full Posts/Pages Report"
8730
  msgstr ""
8731
 
8732
+ #: languages/vue.php:2850
8733
  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."
8734
  msgstr ""
8735
 
8736
+ #: languages/vue.php:2853
8737
  msgid "This list shows the top countries your website visitors are from."
8738
  msgstr ""
8739
 
8740
+ #: languages/vue.php:2856
8741
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
8742
  msgstr ""
8743
 
8744
+ #: languages/vue.php:2859
8745
  msgid "This feature requires ExactMetrics Pro"
8746
  msgstr ""
8747
 
8748
+ #: languages/vue.php:2862
8749
  msgid "By upgrading you will also get access to advanced eCommerce tracking, Custom Dimensions and more."
8750
  msgstr ""
8751
 
8752
+ #: languages/vue.php:2865
8753
  msgid "Upgrade to Pro and Unlock Popular Products"
8754
  msgstr ""
8755
 
8756
+ #: languages/vue.php:2868
8757
  msgid "View all Pro features"
8758
  msgstr ""
8759
 
8760
+ #: languages/vue.php:2871
8761
  msgid "View notifications"
8762
  msgstr ""
8763
 
8764
+ #: languages/vue.php:2874
8765
  msgid "Days"
8766
  msgstr ""
8767
 
8768
  #. Translators: placeholders make text small.
8769
+ #: languages/vue.php:2878
8770
  msgid "7 days"
8771
  msgstr ""
8772
 
8773
+ #: languages/vue.php:2881
8774
  msgid "30 days"
8775
  msgstr ""
8776
 
8777
+ #: languages/vue.php:2884
8778
  msgid "Custom"
8779
  msgstr ""
8780
 
8781
+ #: languages/vue.php:2887
8782
  msgid "2,000,000+ use AIOSEO to Improve Their Website Search Rankings"
8783
  msgstr ""
8784
 
8785
+ #: languages/vue.php:2890
8786
  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."
8787
  msgstr ""
8788
 
8789
+ #: languages/vue.php:2893
8790
  msgid "Jack Brown"
8791
  msgstr ""
8792
 
8793
+ #: languages/vue.php:2896
8794
  msgid "PJB Internet Marketing"
8795
  msgstr ""
8796
 
8797
+ #: languages/vue.php:2899
8798
  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."
8799
  msgstr ""
8800
 
8801
+ #: languages/vue.php:2902
8802
  msgid "Joel Steinmann"
8803
  msgstr ""
8804
 
8805
+ #: languages/vue.php:2905
8806
  msgid "CEO, Solergo"
8807
  msgstr ""
8808
 
8809
+ #: languages/vue.php:2908
8810
  msgid "Only Show Posts from These Categories"
8811
  msgstr ""
8812
 
8813
+ #: languages/vue.php:2911
8814
  msgid "Choose from which categories posts will be displayed in the widget. All categories will be used if left empty."
8815
  msgstr ""
8816
 
8817
+ #: languages/vue.php:2914
8818
  msgid "Activating..."
8819
  msgstr ""
8820
 
8821
+ #: languages/vue.php:2917
8822
  msgid "Deactivating..."
8823
  msgstr ""
8824
 
8825
+ #: languages/vue.php:2920
8826
  msgid "Deactivate"
8827
  msgstr ""
8828
 
8829
+ #: languages/vue.php:2923
8830
  msgid "Search Console Report"
8831
  msgstr ""
8832
 
8833
+ #: languages/vue.php:2926
8834
  msgid "See exactly how people find tour website, which keywords they searched for, how many times the results were viewed, and more."
8835
  msgstr ""
8836
 
8837
+ #: languages/vue.php:2929
8838
  msgid "See Your Top Google Search Terms and Optimize Content"
8839
  msgstr ""
8840
 
8841
+ #: languages/vue.php:2932
8842
  msgid "See The Number of Clicks and Track Interests"
8843
  msgstr ""
8844
 
8845
+ #: languages/vue.php:2935
8846
  msgid "See The Click-Through-Ratio and Improve SEO"
8847
  msgstr ""
8848
 
8849
+ #: languages/vue.php:2938
8850
  msgid "See The Average Results Position and Focus on what works."
8851
  msgstr ""
8852
 
8853
+ #: languages/vue.php:2941
8854
  msgid "Ecommerce Report"
8855
  msgstr ""
8856
 
8857
+ #: languages/vue.php:2944
8858
  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."
8859
  msgstr ""
8860
 
8861
+ #: languages/vue.php:2947
8862
  msgid "See Your Conversion Rate to Improve Your Funnel"
8863
  msgstr ""
8864
 
8865
+ #: languages/vue.php:2950
8866
  msgid "See Your Top Conversion Sources and Focus on What's Working"
8867
  msgstr ""
8868
 
8869
+ #: languages/vue.php:2953
8870
  msgid "Popular Posts data can be fetched correctly"
8871
  msgstr ""
8872
 
8873
+ #: languages/vue.php:2956
8874
  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."
8875
  msgstr ""
8876
 
8877
+ #: languages/vue.php:2959
8878
  msgid "Close"
8879
  msgstr ""
8880
 
8881
+ #: languages/vue.php:2962
8882
  msgid "Add Top 5 Posts from Google Analytics"
8883
  msgstr ""
8884
 
8885
+ #: languages/vue.php:2965
8886
  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."
8887
  msgstr ""
8888
 
8889
+ #: languages/vue.php:2968
8890
  msgid "Test Automated Posts"
8891
  msgstr ""
8892
 
8893
  #. Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc.
8894
+ #: languages/vue.php:2972
8895
  msgid "Click this button to run a series of checks that will confirm your setup is completed to load Popular Posts from Google Analytics."
8896
  msgstr ""
8897
 
8898
+ #: languages/vue.php:2975
8899
  msgid "Automated + Curated"
8900
  msgstr ""
8901
 
8902
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8903
+ #: languages/vue.php:2979
8904
  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."
8905
  msgstr ""
8906
 
8907
  #. Translators: Placeholder gets replaced with current license version.
8908
+ #: languages/vue.php:2983
8909
  msgid "Pro version is required."
8910
  msgstr ""
8911
 
8912
+ #: languages/vue.php:2986
8913
  msgid "Verifying Popular Posts data"
8914
  msgstr ""
8915
 
8916
+ #: languages/vue.php:2989
8917
  msgid "Multiple Entries"
8918
  msgstr ""
8919
 
8920
+ #: languages/vue.php:2992
8921
  msgid "Total Number of Widgets to Show"
8922
  msgstr ""
8923
 
8924
+ #: languages/vue.php:2995
8925
  msgid "Choose how many widgets will be placed in a single Post."
8926
  msgstr ""
8927
 
8928
+ #: languages/vue.php:2998
8929
  msgid "Minimum Distance Between Widgets"
8930
  msgstr ""
8931
 
8932
+ #: languages/vue.php:3001
8933
  msgid "Choose the distance between widgets."
8934
  msgstr ""
8935
 
8936
+ #: languages/vue.php:3004
8937
  msgid "Minimum Word Count to Display Multiple Widgets"
8938
  msgstr ""
8939
 
8940
+ #: languages/vue.php:3007
8941
  msgid "Choose the minimum word count for a Post to have multiple entries."
8942
  msgstr ""
8943
 
8944
+ #: languages/vue.php:3010
8945
  msgid "Pro version is required"
8946
  msgstr ""
8947
 
8948
  #. Translators: Placeholder adds a link to the Custom Dimensions settings.
8949
+ #: languages/vue.php:3014
8950
  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)."
8951
  msgstr ""
8952
 
8953
+ #: languages/vue.php:3017
8954
  msgid "Select posts/search"
8955
  msgstr ""
8956
 
8957
+ #: languages/vue.php:3020
8958
  msgid "Oops! No posts found."
8959
  msgstr ""
8960
 
8961
+ #: languages/vue.php:3023
8962
  msgid "Search by post title"
8963
  msgstr ""
8964
 
8965
+ #: languages/vue.php:3026
8966
  msgid "Can't load posts."
8967
  msgstr ""
8968
 
8969
+ #: languages/vue.php:3029
8970
  msgid "Sartorial taxidermy venmo you probably haven't heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu."
8971
  msgstr ""
8972
 
8973
+ #: languages/vue.php:3032
8974
  msgid "Austin typewriter heirloom distillery twee migas wayfarers. Fingerstache master cleanse quinoa humblebrag, iPhone taxidermy snackwave seitan typewriter tofu organic affogato kitsch. Artisan"
8975
  msgstr ""
8976
 
8977
+ #: languages/vue.php:3035
8978
  msgid "Color"
8979
  msgstr ""
8980
 
8981
+ #: languages/vue.php:3038
8982
  msgid "Size"
8983
  msgstr ""
8984
 
8985
+ #: languages/vue.php:3041
8986
  msgid "Title"
8987
  msgstr ""
8988
 
8989
+ #: languages/vue.php:3044
8990
  msgid "Label"
8991
  msgstr ""
8992
 
8993
+ #: languages/vue.php:3047
8994
  msgid "Background"
8995
  msgstr ""
8996
 
8997
+ #: languages/vue.php:3050
8998
  msgid "Border"
8999
  msgstr ""
9000
 
9001
+ #: languages/vue.php:3053
9002
  msgid "Icon"
9003
  msgstr ""
9004
 
9005
+ #: languages/vue.php:3056
9006
  #: lite/includes/popular-posts/class-popular-posts-widget-sidebar.php:257
9007
  msgid "Theme Preview"
9008
  msgstr ""
9009
 
9010
+ #: languages/vue.php:3059
9011
  msgid "SharedCount API Key"
9012
  msgstr ""
9013
 
9014
+ #: languages/vue.php:3062
9015
  msgid "Insert your sharedcount API key found in your %1$sSettings%2$s panel. After, click Start Indexing."
9016
  msgstr ""
9017
 
9018
+ #: languages/vue.php:3065
9019
  msgid "Start Indexing"
9020
  msgstr ""
9021
 
9022
+ #: languages/vue.php:3068
9023
  msgid "%1$sIndex Progress: %2$s%%.%3$s You may leave this page during indexing."
9024
  msgstr ""
9025
 
9026
+ #: languages/vue.php:3071
9027
  msgid "Indexing completed, counts will update automatically every day."
9028
  msgstr ""
9029
 
9030
  #. Translators: Minimum and maximum number that can be used.
9031
+ #: languages/vue.php:3075
9032
  msgid "Please enter a value between %1$s and %2$s"
9033
  msgstr ""
9034
 
9035
  #. Translators: The minimum set value.
9036
+ #: languages/vue.php:3079
9037
  msgid "Please enter a value higher than %s"
9038
  msgstr ""
9039
 
9040
  #. Translators: The maximum set value.
9041
+ #: languages/vue.php:3083
9042
  msgid "Please enter a value lower than %s"
9043
  msgstr ""
9044
 
9045
+ #: languages/vue.php:3086
9046
  msgid "Please enter a number"
9047
  msgstr ""
9048
 
9049
+ #: languages/vue.php:3089
9050
  msgid "Value has to be a round number"
9051
  msgstr ""
9052
 
9053
+ #: languages/vue.php:3092
9054
  msgid "Author/Date"
9055
  msgstr ""
9056
 
9057
+ #: languages/vue.php:3104
9058
  msgid "Choose which content you would like displayed in the widget."
9059
  msgstr ""
9060
 
9061
+ #: languages/vue.php:3116
9062
  msgid "Comments"
9063
  msgstr ""
9064
 
9065
+ #: languages/vue.php:3122
9066
  msgid "Choose how many posts you’d like displayed in the widget."
9067
  msgstr ""
9068
 
9069
  #. Translators: Page number of total pages. 1 & 2 make the first part of the text bold.
9070
+ #: languages/vue.php:3126
9071
  msgid "%1$sPage %3$s%2$s of %4$s"
9072
  msgstr ""
9073
 
9074
+ #: languages/vue.php:3129
9075
  msgid "Wide"
9076
  msgstr ""
9077
 
9078
+ #: languages/vue.php:3132
9079
  msgid "Narrow"
9080
  msgstr ""
9081
 
9082
  #. Translators: Make text green.
9083
+ #: languages/vue.php:3136
9084
  msgid "Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s"
9085
  msgstr ""
9086
 
9087
+ #: languages/vue.php:3142
9088
  msgid "Download the analytics reports instantly from the WordPress dashboard as PDF files and share them with anyone."
9089
  msgstr ""
9090
 
9091
+ #: languages/vue.php:3145
9092
  msgid "Our email summaries feature sends a weekly summary of the most important site analytics information."
9093
  msgstr ""
9094
 
9095
+ #: languages/vue.php:3148
9096
  msgid "Usage Tracking"
9097
  msgstr ""
9098
 
9099
+ #: languages/vue.php:3151
9100
  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."
9101
  msgstr ""
9102
 
9103
+ #: languages/vue.php:3154
9104
  msgid "Allow usage tracking"
9105
  msgstr ""
9106
 
9107
  #. Translators: Adds a link to the documentation.
9108
+ #: languages/vue.php:3158
9109
  msgid "Complete documentation on usage tracking is available %1$shere%2$s."
9110
  msgstr ""
9111
 
9112
+ #: languages/vue.php:3161
9113
  msgid "Facebook Instant Articles"
9114
  msgstr ""
9115
 
9116
+ #: languages/vue.php:3164
9117
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to ExactMetrics Pro."
9118
  msgstr ""
9119
 
9120
+ #: languages/vue.php:3167
9121
  msgid "Performance"
9122
  msgstr ""
9123
 
9124
+ #: languages/vue.php:3170
9125
  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."
9126
  msgstr ""
9127
 
9128
+ #: languages/vue.php:3173
9129
  msgid "Google AMP"
9130
  msgstr ""
9131
 
9132
+ #: languages/vue.php:3176
9133
  msgid "Want to use track users visiting your AMP pages? By upgrading to ExactMetrics Pro, you can enable AMP page tracking."
9134
  msgstr ""
9135
 
9136
+ #: languages/vue.php:3179
9137
  msgid "Ads Tracking"
9138
  msgstr ""
9139
 
9140
+ #: languages/vue.php:3182
9141
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
9142
  msgstr ""
9143
 
9144
+ #: languages/vue.php:3185
9145
  msgid "Unlock with %s"
9146
  msgstr ""
9147
 
9148
+ #: languages/vue.php:3188
9149
  msgid "Scroll Tracking"
9150
  msgstr ""
9151
 
9152
+ #: languages/vue.php:3191
9153
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
9154
  msgstr ""
9155
 
9156
+ #: languages/vue.php:3194
9157
  msgid ""
9158
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
9159
  " and other privacy regulations."
9160
  msgstr ""
9161
 
9162
+ #: languages/vue.php:3198
9163
  msgid "EU Compliance"
9164
  msgstr ""
9165
 
9166
+ #: languages/vue.php:3201
9167
  msgid "Compatibility mode"
9168
  msgstr ""
9169
 
9170
+ #: languages/vue.php:3204
9171
  msgid "Enable _gtagTracker Compatibility"
9172
  msgstr ""
9173
 
9174
  #. Translators: Placeholder gets replaced with default GA js function.
9175
+ #: languages/vue.php:3208
9176
  msgid "This enables ExactMetrics to work with plugins that use %1$s and don't support %2$s"
9177
  msgstr ""
9178
 
9179
+ #: languages/vue.php:3211
9180
  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!"
9181
  msgstr ""
9182
 
9183
+ #: languages/vue.php:3214
9184
  msgid "To unlock more features consider upgrading to PRO."
9185
  msgstr ""
9186
 
9187
+ #: languages/vue.php:3217
9188
  msgid "Upgrade to"
9189
  msgstr ""
9190
 
9191
+ #: languages/vue.php:3220
9192
  msgid "Export PDF Report"
9193
  msgstr ""
9194
 
9195
+ #: languages/vue.php:3223
9196
  msgid "You can export PDF reports only in the PRO version."
9197
  msgstr ""
9198
 
9199
+ #: languages/vue.php:3226
9200
  msgid "Display Method"
9201
  msgstr ""
9202
 
9203
+ #: languages/vue.php:3229
9204
  msgid "There are two ways to manual include the widget in your posts."
9205
  msgstr ""
9206
 
9207
+ #: languages/vue.php:3232
9208
  msgid "Using the Gutenberg Block"
9209
  msgstr ""
9210
 
9211
+ #: languages/vue.php:3235
9212
  msgid "Using the Shortcode"
9213
  msgstr ""
9214
 
9215
+ #: languages/vue.php:3238
9216
  msgid "Learn how to insert the widget using Gutenberg blocks."
9217
  msgstr ""
9218
 
9219
+ #: languages/vue.php:3241
9220
  msgid "Learn how to insert the widget using out Shortcode."
9221
  msgstr ""
9222
 
9223
+ #: languages/vue.php:3244
9224
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using Gutenberg"
9225
  msgstr ""
9226
 
9227
+ #: languages/vue.php:3247
9228
  msgid "%1$sStep 1%2$s - Click the “Add Block” icon while editing a Post or Page."
9229
  msgstr ""
9230
 
9231
+ #: languages/vue.php:3250
9232
  msgid "%1$sStep 2%2$s - Search for “Inline Popular Posts by ExactMetrics”."
9233
  msgstr ""
9234
 
9235
+ #: languages/vue.php:3253
9236
  msgid "%1$sStep 3%2$s - Style the widget using the Block Settings sidebar."
9237
  msgstr ""
9238
 
9239
+ #: languages/vue.php:3256
9240
  msgid "Shortcode"
9241
  msgstr ""
9242
 
9243
+ #: languages/vue.php:3259
9244
  msgid "Copy the shortcode and paste it into your Page and/or Post templates or using a shortcode plugin."
9245
  msgstr ""
9246
 
9247
+ #: languages/vue.php:3262
9248
  msgid "Copy Shortcode"
9249
  msgstr ""
9250
 
9251
+ #: languages/vue.php:3265
9252
  msgid "%1$sWatch Video%2$s - How to Add the Inline Popular Post widget using our Shortcode"
9253
  msgstr ""
9254
 
9255
+ #: languages/vue.php:3268
9256
  msgid "Automatic Placement"
9257
  msgstr ""
9258
 
9259
+ #: languages/vue.php:3271
9260
  msgid "Display using Gutenberg Blocks"
9261
  msgstr ""
9262
 
9263
+ #: languages/vue.php:3274
9264
  msgid "Embed Options"
9265
  msgstr ""
9266
 
9267
+ #: languages/vue.php:3277
9268
  msgid "All Embed Options can be used in conjunction with one another."
9269
  msgstr ""
9270
 
9271
+ #: languages/vue.php:3280
9272
  msgid "Using Automatic Embed"
9273
  msgstr ""
9274
 
9275
+ #: languages/vue.php:3283
9276
  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."
9277
  msgstr ""
9278
 
9279
+ #: languages/vue.php:3286
9280
  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."
9281
  msgstr ""
9282
 
9283
+ #: languages/vue.php:3289
9284
  msgid "Learn how to insert the Popular Posts Widget using a shortcode. To style this widget use the Customize Design panel above."
9285
  msgstr ""
9286
 
9287
+ #: languages/vue.php:3292
9288
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using Gutenberg"
9289
  msgstr ""
9290
 
9291
+ #: languages/vue.php:3295
9292
  msgid "%1$sStep 2%2$s - Search for “Popular Posts”."
9293
  msgstr ""
9294
 
9295
+ #: languages/vue.php:3298
9296
  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."
9297
  msgstr ""
9298
 
9299
+ #: languages/vue.php:3301
9300
  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."
9301
  msgstr ""
9302
 
9303
+ #: languages/vue.php:3304
9304
  msgid "%1$sStep 3%2$s - The widget options should automatically expand allowing you to customize the design."
9305
  msgstr ""
9306
 
9307
+ #: languages/vue.php:3307
9308
  msgid "Display using a Shortcode"
9309
  msgstr ""
9310
 
9311
+ #: languages/vue.php:3310
9312
  msgid "%1$sWatch Video%2$s - How to Add the Popular Posts widget using our Shortcode"
9313
  msgstr ""
9314
 
9315
+ #: languages/vue.php:3313
9316
  msgid "Enable Automatic Placement"
9317
  msgstr ""
9318
 
9319
+ #: languages/vue.php:3316
9320
  msgid "Display in a Sidebar"
9321
  msgstr ""
9322
 
9323
+ #: languages/vue.php:3319
9324
  msgid "Learn how to insert the Popular Posts Widget into a Sidebar. To style this widget use the Customize Design panel above."
9325
  msgstr ""
9326
 
9327
+ #: languages/vue.php:3322
9328
  msgid "Watch Video - How to Add the Popular Posts widget using Widgets"
9329
  msgstr ""
9330
 
9331
  #. Translators: The number of results.
9332
+ #: languages/vue.php:3326
9333
  msgid "%s results"
9334
  msgstr ""
9335
 
9336
+ #: languages/vue.php:3329
9337
  msgid "Media"
9338
  msgstr ""
9339
 
9340
+ #: languages/vue.php:3332
9341
  msgid "Track how your users interact with videos on your website. Upgrade to ExactMetrics Pro."
9342
  msgstr ""
9343
 
9344
+ #: languages/vue.php:3335
9345
  msgid "2021 Year in Review"
9346
  msgstr ""
9347
 
9348
+ #: languages/vue.php:3338
9349
  msgid "Media- Track how your users interact with videos on your website."
9350
  msgstr ""
9351
 
9352
+ #: languages/vue.php:3341
9353
  msgid "Your 2021 Year in Review is still calculating. Please check back later to see how your website performed last year."
9354
  msgstr ""
9355
 
9356
+ #: languages/vue.php:3344
9357
  msgid "Your 2021 Analytics Report"
9358
  msgstr ""
9359
 
9360
+ #: languages/vue.php:3350
9361
  msgid "January 1, 2021 - December 31, 2021"
9362
  msgstr ""
9363
 
9364
+ #: languages/vue.php:3353
9365
  msgid "A Tip for 2022"
9366
  msgstr ""
9367
 
9368
+ #: languages/vue.php:3356
9369
  msgid "A Tip For 2022"
9370
  msgstr ""
9371
 
9372
+ #: languages/vue.php:3359
9373
  msgid "Here's to an amazing 2022!"
9374
  msgstr ""
9375
 
9376
+ #: languages/vue.php:3362
9377
  msgid "Try our other popular WordPress plugins to grow your website in 2022."
9378
  msgstr ""
9379
 
9380
+ #: languages/vue.php:3365
9381
  msgid "Become a WordPress expert in 2022. Join our amazing communities and take your website to the next level."
9382
  msgstr ""
9383
 
9384
+ #: languages/vue.php:3368
9385
  msgid "Copyright ExactMetrics, 2022"
9386
  msgstr ""
9387
 
9388
  #. Translators: Number of minutes spent on site.
9389
+ #: languages/vue.php:3372
9390
  msgid "Each visitor spent an average of %s minutes on your website in 2021."
9391
  msgstr ""
9392
 
9393
  #. Translators: Placeholders are used for making text bold and adding a link.
9394
+ #: languages/vue.php:3376
9395
  msgid "%1$sYou're using %2$s Lite%3$s. To unlock all reports, consider %4$supgrading to Pro%5$s."
9396
  msgstr ""
9397
 
9398
+ #: languages/vue.php:3379
9399
  msgid "With ExactMetrics Pro, you can easily measure individual affiliate performance inside Google Analytics, no coding needed. Track clicks, revenue, and more."
9400
  msgstr ""
9401
 
9402
+ #: languages/vue.php:3382
9403
  msgid "RafflePress"
9404
  msgstr ""
9405
 
9406
+ #: languages/vue.php:3385
9407
  msgid "Launch giveaways and raffle campaigns to grow your email lists, increase traffic, and get more social media followers."
9408
  msgstr ""
9409
 
9410
+ #: languages/vue.php:3388
9411
  msgid "Constant Contact"
9412
  msgstr ""
9413
 
9414
+ #: languages/vue.php:3391
9415
  msgid "Create amazing email marketing campaigns with drag and drop simplicity. Exclusive Offer: Save 20%."
9416
  msgstr ""
9417
 
9418
+ #: languages/vue.php:3394
9419
  msgid "SEMRUSH"
9420
  msgstr ""
9421
 
9422
+ #: languages/vue.php:3397
9423
  msgid "Perform SEO and content marketing research, track keywords, and much more. Special Offer: First 30 Days Free."
9424
  msgstr ""
9425
 
9426
+ #: languages/vue.php:3400
9427
  msgid "Engagement Tools"
9428
  msgstr ""
9429
 
9430
+ #: languages/vue.php:3403
9431
  msgid "WPForms"
9432
  msgstr ""
9433
 
9434
+ #: languages/vue.php:3406
9435
  msgid "The world’s most popular WordPress form builder, trusted by over 5 million websites. Easily build contact forms, payment forms, and more."
9436
  msgstr ""
9437
 
9438
+ #: languages/vue.php:3409
9439
  msgid "OptinMonster"
9440
  msgstr ""
9441
 
9442
+ #: languages/vue.php:3412
9443
  msgid "Convert and monetize more of your website traffic with engaging pop-up and gamified tools. Great for all types of websites."
9444
  msgstr ""
9445
 
9446
+ #: languages/vue.php:3415
9447
  msgid "Smash Balloon - Facebook"
9448
  msgstr ""
9449
 
9450
+ #: languages/vue.php:3418
9451
  msgid "Smash Balloon - Instagram"
9452
  msgstr ""
9453
 
9454
+ #: languages/vue.php:3421
9455
  msgid "Quickly add social media feeds from Facebook, Instagram, Twitter, and others to your website, with no coding needed."
9456
  msgstr ""
9457
 
9458
+ #: languages/vue.php:3424
9459
  msgid "Popular Posts by ExactMetrics"
9460
  msgstr ""
9461
 
9462
+ #: languages/vue.php:3427
9463
  msgid "Increase your visitor engagement by automatically embedding popular and related content from your website."
9464
  msgstr ""
9465
 
9466
+ #: languages/vue.php:3430
9467
  msgid "Popular Products by ExactMetrics"
9468
  msgstr ""
9469
 
9470
+ #: languages/vue.php:3433
9471
  msgid "Automatically show related products to increase conversion rates and increase cart sizes on your eCommerce website."
9472
  msgstr ""
9473
 
9474
+ #: languages/vue.php:3436
9475
  msgid "Revenue Tools"
9476
  msgstr ""
9477
 
9478
+ #: languages/vue.php:3439
9479
  msgid "SeedProd"
9480
  msgstr ""
9481
 
9482
+ #: languages/vue.php:3442
9483
  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."
9484
  msgstr ""
9485
 
9486
+ #: languages/vue.php:3445
9487
  msgid "Featured Tools"
9488
  msgstr ""
9489
 
9490
+ #: languages/vue.php:3448
9491
  msgid "Easy Affiliate"
9492
  msgstr ""
9493
 
9494
+ #: languages/vue.php:3451
9495
  msgid "Launch, grow, and manage an affiliate program, all right from your WordPress dashboard. Works automatically with ExactMetrics."
9496
  msgstr ""
9497
 
9498
+ #: languages/vue.php:3454
9499
  msgid "SearchWP"
9500
  msgstr ""
9501
 
9502
+ #: languages/vue.php:3457
9503
  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."
9504
  msgstr ""
9505
 
9506
+ #: languages/vue.php:3460
9507
  msgid "Easy Digital Downloads"
9508
  msgstr ""
9509
 
9510
+ #: languages/vue.php:3463
9511
  msgid "Easily sell digital products like ebooks, plugins, and courses with WordPress. Built-in payment processing, coupons, shopping cart, detailed reporting, and more."
9512
  msgstr ""
9513
 
9514
+ #: languages/vue.php:3466
9515
  msgid "MemberPress"
9516
  msgstr ""
9517
 
9518
+ #: languages/vue.php:3469
9519
  msgid "Create a membership website. Works automatically with ExactMetrics, no coding needed."
9520
  msgstr ""
9521
 
9522
+ #: languages/vue.php:3472
9523
  msgid "Thirsty Affiliates"
9524
  msgstr ""
9525
 
9526
+ #: languages/vue.php:3475
9527
  msgid "Manage all your affiliate links with features designed to help make bloggers more money."
9528
  msgstr ""
9529
 
9530
+ #: languages/vue.php:3478
9531
  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."
9532
  msgstr ""
9533
 
9534
+ #: languages/vue.php:3481
9535
  msgid "Advanced Coupons"
9536
  msgstr ""
9537
 
9538
+ #: languages/vue.php:3484
9539
  msgid "Create coupons, reward loyal customers, and schedule promotions for your eCommerce store."
9540
  msgstr ""
9541
 
9542
+ #: languages/vue.php:3487
9543
  msgid "PrettyLinks"
9544
  msgstr ""
9545
 
9546
+ #: languages/vue.php:3490
9547
  msgid "Automatically monetize your website content with affiliate links added automatically to your content."
9548
  msgstr ""
9549
 
9550
+ #: languages/vue.php:3493
9551
  msgid "Install Now"
9552
  msgstr ""
9553
 
9554
+ #: languages/vue.php:3496
9555
  msgid "Online Marketing Guides & Resources"
9556
  msgstr ""
9557
 
9558
+ #: languages/vue.php:3499
9559
  msgid "Read This Guide"
9560
  msgstr ""
9561
 
9562
+ #: languages/vue.php:3505
9563
  msgid "Upgrade to unlock eCommerce tracking, Custom Dimensions, Form Tracking, and much more. Special Offer: Save 50% today."
9564
  msgstr ""
9565
 
9566
+ #: languages/vue.php:3508
9567
  msgid "Traffic Tools"
9568
  msgstr ""
9569
 
9570
+ #: languages/vue.php:3511
9571
  msgid "All in One SEO (AIOSEO)"
9572
  msgstr ""
9573
 
9574
+ #: languages/vue.php:3514
9575
  msgid "The best WordPress SEO plugin that works automatically with ExactMetrics."
9576
  msgstr ""
9577
 
9578
+ #: languages/vue.php:3517
9579
  msgid "PushEngage"
9580
  msgstr ""
9581
 
9582
+ #: languages/vue.php:3520
9583
  msgid "Send push notifications to your visitors to drive more traffic and boost sales."
9584
  msgstr ""
9585
 
9586
+ #: languages/vue.php:3523
9587
  msgid "Featured"
9588
  msgstr ""
9589
 
9590
+ #: languages/vue.php:3526
9591
  msgid "Traffic"
9592
  msgstr ""
9593
 
9594
+ #: languages/vue.php:3529
9595
  msgid "Revenue"
9596
  msgstr ""
9597
 
9598
+ #: languages/vue.php:3532
9599
  msgid "Guides & Resources"
9600
  msgstr ""
9601
 
9602
+ #: languages/vue.php:3535
9603
  msgid "Media Tracking"
9604
  msgstr ""
9605
 
9606
+ #: languages/vue.php:3538
9607
  msgid "Get Started"
9608
  msgstr ""
9609
 
languages/vue.php CHANGED
@@ -10,7 +10,8 @@ $generated_i18n_strings = array(
10
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:116
11
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
12
 
13
- // Reference: src/modules/popular-posts/components/PopularPostsSettings.vue:53
 
14
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
15
 
16
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
@@ -35,11 +36,10 @@ $generated_i18n_strings = array(
35
 
36
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:71
37
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:174
38
- // Reference: src/modules/widget/components/WidgetReportError.vue:25
39
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:15
40
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
41
 
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
@@ -52,9 +52,10 @@ $generated_i18n_strings = array(
52
  __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
53
 
54
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:32
 
55
  __( 'Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.', 'google-analytics-dashboard-for-wp' ),
56
 
57
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:31
58
  __( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-dashboard-for-wp' ),
59
 
60
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:190
@@ -72,41 +73,43 @@ $generated_i18n_strings = array(
72
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:32
73
  __( 'Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.', 'google-analytics-dashboard-for-wp' ),
74
 
75
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportSearchConsole-Lite.vue:31
76
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
77
  __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
78
 
79
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
80
  __( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
81
 
82
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:31
83
  __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-dashboard-for-wp' ),
84
 
85
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
86
  __( 'Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.', 'google-analytics-dashboard-for-wp' ),
87
 
88
  // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:31
 
89
  __( 'Unlock the Site Speed Report and Improve the Performance of Your Site', 'google-analytics-dashboard-for-wp' ),
90
 
91
  // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:32
 
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-widget-helper-plugin.js:42
95
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
96
 
97
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:48
 
98
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
99
 
100
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:54
101
  __( 'Last Week', 'google-analytics-dashboard-for-wp' ),
102
 
103
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:60
104
  __( 'Last Month', 'google-analytics-dashboard-for-wp' ),
105
 
106
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:66
107
  __( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
108
 
109
- // Reference: src/plugins/exactmetrics-widget-helper-plugin.js:72
110
  __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
111
 
112
  // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:19
@@ -154,14 +157,14 @@ $generated_i18n_strings = array(
154
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
155
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
156
 
157
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:15
 
158
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
159
 
160
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:16
161
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
162
 
163
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
164
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:60
165
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
166
 
167
  // Reference: src/modules/settings/exactmetrics-site.vue:77
@@ -181,78 +184,88 @@ $generated_i18n_strings = array(
181
  // Reference: src/modules/reports/api/index.js:28
182
  __( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
183
 
184
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:102
185
- /* Translators: Makes text bold. */
186
  __( '%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' ),
187
 
188
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:107
189
- /* Translators: Makes text bold. */
190
  __( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
191
 
192
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:112
193
- /* Translators: Makes text bold. */
194
  __( '%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' ),
195
 
196
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
197
  /* Translators: Makes text bold. */
198
  __( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
199
 
200
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:122
201
- /* Translators: Makes text bold. */
202
  __( '%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' ),
203
 
204
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:127
205
- /* Translators: Makes text bold. */
206
  __( '%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' ),
207
 
208
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:132
209
- /* Translators: Makes text bold. */
210
  __( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
211
 
212
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
213
  /* Translators: Makes text bold. */
214
  __( '%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' ),
215
 
216
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:142
217
- /* Translators: Adds link to the features page. */
218
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
219
 
 
220
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:41
221
  __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
222
 
 
223
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:42
224
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
225
 
226
  // Reference: src/modules/addons/components/AddonButton.vue:30
 
227
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
228
 
229
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
230
  __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
231
 
 
232
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:63
233
  __( 'This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!', 'google-analytics-dashboard-for-wp' ),
234
 
 
235
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:64
236
  __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
237
 
 
238
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:68
239
  __( 'Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it.', 'google-analytics-dashboard-for-wp' ),
240
 
 
241
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:69
242
  __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
243
 
 
244
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:73
245
  __( 'Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!', 'google-analytics-dashboard-for-wp' ),
246
 
 
247
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:74
248
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
249
 
250
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:167
251
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
252
 
253
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:33
254
- // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputScroll-Lite.vue:22
255
- // Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:27
 
256
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
257
 
258
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:42
@@ -291,30 +304,30 @@ $generated_i18n_strings = array(
291
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:85
292
  __( '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' ),
293
 
294
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:86
295
  __( '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' ),
296
 
297
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:87
298
  __( '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' ),
299
 
300
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:88
301
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
302
 
303
  // Reference: src/components/ContentIntroFullWidth.vue:46
304
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
305
 
306
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:92
307
  /* Translators: Adds a line break. */
308
  __( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
309
 
310
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:94
311
- /* Translators: Makes text bold. */
312
  __( '%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' ),
313
 
314
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:96
315
  __( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
316
 
317
- // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:97
318
  __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
319
 
320
  // Reference: src/modules/widget/components/WidgetFooter.vue:19
@@ -327,7 +340,7 @@ $generated_i18n_strings = array(
327
  // Reference: src/modules/addons/components/AddonButton.vue:50
328
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
329
 
330
- // Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
331
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
332
 
333
  // Reference: src/modules/reports/components/ReportReAuth.vue:19
@@ -382,27 +395,21 @@ $generated_i18n_strings = array(
382
  __( 'This list shows the percentage of carts that never went through the checkout process.', 'google-analytics-dashboard-for-wp' ),
383
 
384
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:282
385
- // Reference: src/modules/widget/store/index.js:20
386
  __( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
387
 
388
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:294
389
- // Reference: src/modules/widget/store/index.js:21
390
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
391
 
392
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:276
393
- // Reference: src/modules/widget/store/index.js:27
394
  __( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
395
 
396
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:290
397
- // Reference: src/modules/widget/store/index.js:28
398
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
399
 
400
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:277
401
- // Reference: src/modules/widget/store/index.js:34
402
  __( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
403
 
404
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:291
405
- // Reference: src/modules/widget/store/index.js:35
406
  __( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-dashboard-for-wp' ),
407
 
408
  // Reference: src/modules/widget/store/index.js:41
@@ -436,6 +443,7 @@ $generated_i18n_strings = array(
436
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
437
 
438
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:42
 
439
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
440
 
441
  // Reference: src/modules/widget/store/index.js:83
@@ -456,7 +464,6 @@ $generated_i18n_strings = array(
456
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:218
457
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
458
 
459
- // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:65
460
  // Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:16
461
  /* Translators: Adds an arrow icon. */
462
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
@@ -467,7 +474,7 @@ $generated_i18n_strings = array(
467
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
468
  __( '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' ),
469
 
470
- // Reference: src/modules/reports/components/ReportNoAuth.vue:27
471
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
472
 
473
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
@@ -498,21 +505,21 @@ $generated_i18n_strings = array(
498
  // Reference: src/components/TheQuickLinks.vue:78
499
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
500
 
501
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:43
502
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:30
503
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
504
 
505
- // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:44
506
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:69
507
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
508
 
509
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:57
510
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
511
 
512
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:47
 
513
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
514
 
515
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:48
 
516
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
517
 
518
  // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:30
@@ -522,19 +529,22 @@ $generated_i18n_strings = array(
522
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:260
523
  __( '2020 Year in Review', 'google-analytics-dashboard-for-wp' ),
524
 
525
- // Reference: src/modules/tools/components/ToolsNavigation.vue:14
526
  __( 'Import Export', 'google-analytics-dashboard-for-wp' ),
527
 
528
  // Reference: src/modules/settings/routes/site.js:111
529
  __( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
530
 
531
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
 
532
  __( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
533
 
534
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
 
535
  __( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
536
 
537
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
 
538
  __( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
539
 
540
  // Reference: src/modules/settings/routes/site.js:189
@@ -543,23 +553,22 @@ $generated_i18n_strings = array(
543
  // Reference: src/modules/settings/routes/site.js:200
544
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
545
 
546
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:67
547
  __( 'General', 'google-analytics-dashboard-for-wp' ),
548
 
549
- // Reference: src/modules/growth-tools/components/GrowthNavigation.vue:19
550
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
551
 
552
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:70
553
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
554
 
555
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:44
556
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:71
557
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
558
 
559
- // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabsNavigation.vue:72
560
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
561
 
562
- // Reference: src/modules/tools/components/ToolsNavigation.vue:15
563
  __( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
564
 
565
  // Reference: src/modules/addons/store/actions.js:33
@@ -578,61 +587,60 @@ $generated_i18n_strings = array(
578
  /* Translators: Adds link to activate/install plugin and documentation. */
579
  __( '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', 'google-analytics-dashboard-for-wp' ),
580
 
581
- // Reference: src/modules/reports/store/actions.js:132
582
  __( 'Installing Addon', 'google-analytics-dashboard-for-wp' ),
583
 
584
- // Reference: src/modules/reports/store/actions.js:155
585
  __( 'Activating Addon', 'google-analytics-dashboard-for-wp' ),
586
 
587
- // Reference: src/modules/reports/store/actions.js:170
588
  __( 'Addon Activated', 'google-analytics-dashboard-for-wp' ),
589
 
590
- // Reference: src/modules/reports/store/actions.js:171
591
  __( 'Loading report data', 'google-analytics-dashboard-for-wp' ),
592
 
593
- // Reference: src/modules/reports/store/actions.js:188
594
  __( 'Please activate manually', 'google-analytics-dashboard-for-wp' ),
595
 
596
- // Reference: src/modules/reports/store/actions.js:191
597
  /* Translators: Adds the error status and status text. */
598
  __( 'Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
599
 
600
- // Reference: src/modules/reports/store/actions.js:197
601
  __( 'Error Activating Addon', 'google-analytics-dashboard-for-wp' ),
602
 
603
- // Reference: src/modules/reports/store/actions.js:203
604
  __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
605
 
606
- // Reference: src/modules/reports/store/actions.js:204
607
  // Reference: src/modules/seo/components/yoast.vue:237
608
  __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
609
 
610
- // Reference: src/modules/reports/store/actions.js:211
611
  __( 'Redirecting', 'google-analytics-dashboard-for-wp' ),
612
 
613
- // Reference: src/modules/reports/store/actions.js:212
614
  __( 'Please wait', 'google-analytics-dashboard-for-wp' ),
615
 
616
- // Reference: src/modules/reports/store/actions.js:52
617
  __( 'activate', 'google-analytics-dashboard-for-wp' ),
618
 
619
- // Reference: src/modules/reports/store/actions.js:52
620
  __( 'install', 'google-analytics-dashboard-for-wp' ),
621
 
622
- // Reference: src/modules/reports/store/actions.js:56
623
  __( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
624
 
625
- // Reference: src/modules/reports/store/actions.js:64
626
  __( 'Report Unavailable', 'google-analytics-dashboard-for-wp' ),
627
 
628
- // Reference: src/modules/reports/store/actions.js:71
629
  /* Translators: Install/Activate the addon. */
630
  __( '%s Addon', 'google-analytics-dashboard-for-wp' ),
631
 
632
- // Reference: src/modules/reports/store/actions.js:90
633
  __( 'Go Back To Reports', 'google-analytics-dashboard-for-wp' ),
634
 
635
- // Reference: src/modules/reports/store/actions.js:91
636
  __( 'Enable Enhanced eCommerce', 'google-analytics-dashboard-for-wp' ),
637
 
638
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingAboveContent.vue:15
@@ -757,17 +765,21 @@ $generated_i18n_strings = array(
757
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
758
  __( '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.', 'google-analytics-dashboard-for-wp' ),
759
 
 
760
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
761
  /* Translators: Example path (/go/). */
762
  __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
763
 
 
764
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
765
  __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
766
 
 
767
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
768
  /* Translators: Example label (aff). */
769
  __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
770
 
 
771
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
772
  __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
773
 
@@ -787,10 +799,9 @@ $generated_i18n_strings = array(
787
  __( 'These user roles will be able to access ExactMetrics\' reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
788
 
789
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:83
790
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:88
791
  __( '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' ),
792
 
793
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
794
  __( 'Save and continue', 'google-analytics-dashboard-for-wp' ),
795
 
796
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91
@@ -800,7 +811,6 @@ $generated_i18n_strings = array(
800
  __( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
801
 
802
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:127
803
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:93
804
  __( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
805
 
806
  // Reference: src/components/TheFloatingBar-Lite.vue:29
@@ -840,9 +850,11 @@ $generated_i18n_strings = array(
840
  /* Translators: Adds link to upgrade. */
841
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
842
 
 
843
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
844
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
845
 
 
846
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:134
847
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
848
 
@@ -877,7 +889,7 @@ $generated_i18n_strings = array(
877
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:85
878
  __( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
879
 
880
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:65
881
  __( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
882
 
883
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
@@ -985,7 +997,7 @@ $generated_i18n_strings = array(
985
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:141
986
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
987
 
988
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:145
989
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
990
 
991
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:79
@@ -1012,7 +1024,6 @@ $generated_i18n_strings = array(
1012
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:168
1013
  __( '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.', 'google-analytics-dashboard-for-wp' ),
1014
 
1015
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:175
1016
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:103
1017
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
1018
 
@@ -1046,9 +1057,7 @@ $generated_i18n_strings = array(
1046
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
1047
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1048
 
1049
- // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:67
1050
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:61
1051
- // Reference: src/modules/woocommerce-insights/woocommerce-insights-Lite.vue:101
1052
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1053
 
1054
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
@@ -1109,14 +1118,15 @@ $generated_i18n_strings = array(
1109
  /* Translators: Error status and error text. */
1110
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1111
 
1112
- // Reference: src/modules/wizard-onboarding/api/index.js:22
 
1113
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1114
 
1115
- // Reference: src/modules/settings/api/index.js:77
1116
  /* Translators: Error status and error text. */
1117
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1118
 
1119
- // Reference: src/modules/settings/api/index.js:81
1120
  __( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
1121
 
1122
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
@@ -1241,7 +1251,7 @@ $generated_i18n_strings = array(
1241
  // Reference: src/modules/widget/components/WidgetNoticeCompact.vue:15
1242
  __( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
1243
 
1244
- // Reference: src/modules/widget/components/settings/WidgetSettingsIntervalUpsell.vue:26
1245
  /* Translators: Placeholder adds a line break. */
1246
  __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
1247
 
@@ -1275,13 +1285,13 @@ $generated_i18n_strings = array(
1275
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1276
 
1277
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:47
1278
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:81
1279
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1280
 
1281
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:83
1282
  /* Translators: Line break. */
1283
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1284
 
 
1285
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:297
1286
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1287
 
@@ -1289,30 +1299,28 @@ $generated_i18n_strings = array(
1289
  /* Translators: Line break. */
1290
  __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1291
 
1292
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:87
1293
  __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
1294
 
1295
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:88
1296
  __( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-dashboard-for-wp' ),
1297
 
1298
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:89
1299
  __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
1300
 
1301
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:90
1302
  __( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-dashboard-for-wp' ),
1303
 
1304
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:91
1305
  __( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
1306
 
1307
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:92
1308
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1309
 
1310
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:50
1311
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:93
1312
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1313
 
1314
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:51
1315
- // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:94
1316
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1317
 
1318
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
@@ -1351,7 +1359,7 @@ $generated_i18n_strings = array(
1351
  /* Translators: add link to blog. */
1352
  __( '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' ),
1353
 
1354
- // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:35
1355
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1356
 
1357
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
@@ -1621,6 +1629,7 @@ $generated_i18n_strings = array(
1621
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:281
1622
  __( 'Average Age', 'google-analytics-dashboard-for-wp' ),
1623
 
 
1624
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:282
1625
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1626
 
@@ -1830,6 +1839,7 @@ $generated_i18n_strings = array(
1830
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:111
1831
  __( 'Disconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
1832
 
 
1833
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
1834
  __( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
1835
 
@@ -1860,9 +1870,11 @@ $generated_i18n_strings = array(
1860
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:81
1861
  __( 'Active Profile', 'google-analytics-dashboard-for-wp' ),
1862
 
 
1863
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
1864
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
1865
 
 
1866
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51
1867
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
1868
 
@@ -2009,8 +2021,8 @@ $generated_i18n_strings = array(
2009
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2010
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2011
 
2012
- // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:121
2013
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:109
 
2014
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2015
 
2016
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
@@ -2242,7 +2254,7 @@ $generated_i18n_strings = array(
2242
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:50
2243
  __( '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' ),
2244
 
2245
- // Reference: src/modules/reports/components/exactmetrics-ReportsPagination.vue:25
2246
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2247
 
2248
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:101
@@ -2307,6 +2319,7 @@ $generated_i18n_strings = array(
2307
  __( 'Reports', 'google-analytics-dashboard-for-wp' ),
2308
 
2309
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:91
 
2310
  __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
2311
 
2312
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:105
@@ -2565,24 +2578,30 @@ $generated_i18n_strings = array(
2565
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
2566
 
2567
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:43
 
2568
  __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
2569
 
2570
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:47
 
2571
  __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
2572
 
2573
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:51
 
2574
  __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
2575
 
2576
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:55
 
2577
  __( 'See Your Top Products to See Individual Performance', 'google-analytics-dashboard-for-wp' ),
2578
 
2579
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:76
2580
  __( 'See your Top Conversion Sources and Focus on what\'s Working', 'google-analytics-dashboard-for-wp' ),
2581
 
2582
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:63
 
2583
  __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
2584
 
2585
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:67
 
2586
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
2587
 
2588
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:88
@@ -2939,7 +2958,7 @@ $generated_i18n_strings = array(
2939
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
2940
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
2941
 
2942
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:28
2943
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
2944
 
2945
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
@@ -2952,7 +2971,7 @@ $generated_i18n_strings = array(
2952
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2953
  __( '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' ),
2954
 
2955
- // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Lite.vue:30
2956
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
2957
 
2958
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
@@ -3006,34 +3025,34 @@ $generated_i18n_strings = array(
3006
  // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
3007
  __( 'Can\'t load posts.', 'google-analytics-dashboard-for-wp' ),
3008
 
3009
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:100
3010
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
3011
 
3012
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:101
3013
  __( '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' ),
3014
 
3015
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:102
3016
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3017
 
3018
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:103
3019
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3020
 
3021
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:104
3022
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3023
 
3024
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:105
3025
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3026
 
3027
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:106
3028
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3029
 
3030
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:107
3031
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3032
 
3033
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:108
3034
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
3035
 
3036
- // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:99
3037
  __( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
3038
 
3039
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
@@ -3117,8 +3136,6 @@ $generated_i18n_strings = array(
3117
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
3118
 
3119
  // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:24
3120
- // Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:37
3121
- // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputEmailSummaries-Lite.vue:16
3122
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
3123
 
3124
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
10
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:116
11
  __( 'Loading Settings', 'google-analytics-dashboard-for-wp' ),
12
 
13
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:55
14
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:157
15
  __( 'Please wait...', 'google-analytics-dashboard-for-wp' ),
16
 
17
  // Reference: src/plugins/exactmetrics-settings-helper-plugin.js:20
36
 
37
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:71
38
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:174
39
+ // Reference: src/plugins/exactmetrics-frontend-helper-plugin.js:13
 
40
  __( 'Error', 'google-analytics-dashboard-for-wp' ),
41
 
42
+ // Reference: src/plugins/exactmetrics-frontend-helper-plugin.js:14
43
  __( 'Please try again.', 'google-analytics-dashboard-for-wp' ),
44
 
45
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:181
52
  __( 'Unlock the Publishers Report and Focus on the Content That Matters', 'google-analytics-dashboard-for-wp' ),
53
 
54
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:32
55
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:186
56
  __( 'Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.', 'google-analytics-dashboard-for-wp' ),
57
 
58
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:189
59
  __( 'Unlock the eCommerce Report and See Your Important Store Metrics', 'google-analytics-dashboard-for-wp' ),
60
 
61
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:190
73
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:32
74
  __( 'Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.', 'google-analytics-dashboard-for-wp' ),
75
 
 
76
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:201
77
  __( 'Unlock the Search Console Report and See How People Find Your Website', 'google-analytics-dashboard-for-wp' ),
78
 
79
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:202
80
  __( 'See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.', 'google-analytics-dashboard-for-wp' ),
81
 
82
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:205
83
  __( 'Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time', 'google-analytics-dashboard-for-wp' ),
84
 
85
  // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:206
86
  __( 'Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.', 'google-analytics-dashboard-for-wp' ),
87
 
88
  // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:31
89
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:209
90
  __( 'Unlock the Site Speed Report and Improve the Performance of Your Site', 'google-analytics-dashboard-for-wp' ),
91
 
92
  // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:32
93
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:210
94
  __( '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' ),
95
 
96
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:223
97
  __( 'Today', 'google-analytics-dashboard-for-wp' ),
98
 
99
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:67
100
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:229
101
  __( 'Yesterday', 'google-analytics-dashboard-for-wp' ),
102
 
103
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:235
104
  __( 'Last Week', 'google-analytics-dashboard-for-wp' ),
105
 
106
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:241
107
  __( 'Last Month', 'google-analytics-dashboard-for-wp' ),
108
 
109
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:247
110
  __( 'Last 7 days', 'google-analytics-dashboard-for-wp' ),
111
 
112
+ // Reference: src/plugins/exactmetrics-reports-helper-plugin.js:253
113
  __( 'Last 30 days', 'google-analytics-dashboard-for-wp' ),
114
 
115
  // Reference: src/plugins/exactmetrics-wizard-helper-plugin.js:19
157
  // Reference: src/plugins/exactmetrics-compatibility-plugin.js:59
158
  __( 'Learn more about updating WordPress', 'google-analytics-dashboard-for-wp' ),
159
 
160
+ // Reference: src/modules/about/components/exactmetrics-AboutTabAboutUs.vue:36
161
+ // Reference: src/modules/settings/routes/site.js:125
162
  __( 'About Us', 'google-analytics-dashboard-for-wp' ),
163
 
164
+ // Reference: src/modules/settings/routes/site.js:133
165
  __( 'Getting Started', 'google-analytics-dashboard-for-wp' ),
166
 
167
+ // Reference: src/modules/settings/routes/site.js:142
 
168
  __( 'Lite vs Pro', 'google-analytics-dashboard-for-wp' ),
169
 
170
  // Reference: src/modules/settings/exactmetrics-site.vue:77
184
  // Reference: src/modules/reports/api/index.js:28
185
  __( 'Error loading report data', 'google-analytics-dashboard-for-wp' ),
186
 
187
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:154
188
+ /* Translators: Makes the text bold. */
189
  __( '%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' ),
190
 
191
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:159
192
+ /* Translators: Makes the text bold. */
193
  __( '%1$sGoogle Analytics Dashboard%2$s - See your website analytics report right inside your WordPress dashboard with actionable insights.', 'google-analytics-dashboard-for-wp' ),
194
 
195
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:164
196
+ /* Translators: Makes the text bold. */
197
  __( '%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' ),
198
 
199
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:117
200
  /* Translators: Makes text bold. */
201
  __( '%1$sEnhanced Ecommerce Tracking%2$s - 1-click Google Analytics Enhanced eCommerce tracking for WooCommerce, Easy Digital Download & MemberPress.', 'google-analytics-dashboard-for-wp' ),
202
 
203
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:174
204
+ /* Translators: Makes the text bold. */
205
  __( '%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' ),
206
 
207
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:179
208
+ /* Translators: Makes the text bold. */
209
  __( '%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' ),
210
 
211
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:184
212
+ /* Translators: Makes the text bold. */
213
  __( '%1$sEU Compilance (GDPR Friendly)%2$s - Make Google Analytics compliant with GDPR and other privacy regulations automatically.', 'google-analytics-dashboard-for-wp' ),
214
 
215
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:137
216
  /* Translators: Makes text bold. */
217
  __( '%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' ),
218
 
219
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:194
220
+ /* Translators: Adds a link and an arrow icon. */
221
  __( '%1$sSee All Features%2$s', 'google-analytics-dashboard-for-wp' ),
222
 
223
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:197
224
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:41
225
  __( 'Pro Plan', 'google-analytics-dashboard-for-wp' ),
226
 
227
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:198
228
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:42
229
  __( 'per year', 'google-analytics-dashboard-for-wp' ),
230
 
231
  // Reference: src/modules/addons/components/AddonButton.vue:30
232
+ // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:46
233
  __( 'Upgrade Now', 'google-analytics-dashboard-for-wp' ),
234
 
235
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:148
236
  __( 'Upgrade to ExactMetrics Pro Now', 'google-analytics-dashboard-for-wp' ),
237
 
238
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:204
239
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:63
240
  __( 'This is absolutely, positively, one of the TOP plugins to install on your WP site. There is no better way to quickly gauge traffic for spikes, surges, and consistency. I installed this on over a dozen WordPress installations and counting, thank you for an outstanding app!', 'google-analytics-dashboard-for-wp' ),
241
 
242
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:205
243
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:64
244
  __( 'Daniel Monaghan - Experienced', 'google-analytics-dashboard-for-wp' ),
245
 
246
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:209
247
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:68
248
  __( 'Very simple to configure and the results are very clearly displayed. So much easier for clients to view than in their own analytics account! Delighted with it.', 'google-analytics-dashboard-for-wp' ),
249
 
250
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:210
251
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:69
252
  __( 'Naomi Spirit - From This Day', 'google-analytics-dashboard-for-wp' ),
253
 
254
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:214
255
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:73
256
  __( 'Love this plugin! It’s got powerful customization options, it’s easy to use, there’s good documentation, and if all that’s not enough, ExactMetrics is quick to provide support. Thanks for this wonderful plugin!', 'google-analytics-dashboard-for-wp' ),
257
 
258
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:215
259
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingBottomUpsell-Lite.vue:74
260
  __( 'Julie Dupuis - Faraway Land Travel', 'google-analytics-dashboard-for-wp' ),
261
 
262
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:218
263
  __( 'Guides and Documentation:', 'google-analytics-dashboard-for-wp' ),
264
 
265
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:35
266
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:34
267
+ // Reference: src/modules/settings/components/input/tab-engagement/exactmetrics-SettingsInputEUCompliance-Lite.vue:24
268
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:133
269
  __( 'Upgrade to PRO', 'google-analytics-dashboard-for-wp' ),
270
 
271
  // Reference: src/modules/wizard-onboarding/components/steps/MigrationStepUpsell.vue:42
304
  // Reference: src/modules/wizard-onboarding/exactmetrics-welcome-Lite.vue:85
305
  __( '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' ),
306
 
307
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:87
308
  __( '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' ),
309
 
310
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:88
311
  __( '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' ),
312
 
313
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:89
314
  __( 'Launch the wizard!', 'google-analytics-dashboard-for-wp' ),
315
 
316
  // Reference: src/components/ContentIntroFullWidth.vue:46
317
  __( 'Welcome to', 'google-analytics-dashboard-for-wp' ),
318
 
319
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:144
320
  /* Translators: Adds a line break. */
321
  __( 'Thank you for choosing ExactMetrics -%s The Most Powerful WordPress Analytics Plugin', 'google-analytics-dashboard-for-wp' ),
322
 
323
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:146
324
+ /* Translators: Makes the product name bold. */
325
  __( '%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' ),
326
 
327
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:148
328
  __( 'ExactMetrics Features & Addons', 'google-analytics-dashboard-for-wp' ),
329
 
330
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:149
331
  __( 'Here are the features that make ExactMetrics the most powerful and user-friendly WordPress analytics plugin in the market.', 'google-analytics-dashboard-for-wp' ),
332
 
333
  // Reference: src/modules/widget/components/WidgetFooter.vue:19
340
  // Reference: src/modules/addons/components/AddonButton.vue:50
341
  __( 'Activate', 'google-analytics-dashboard-for-wp' ),
342
 
343
+ // Reference: src/modules/widget/components/WidgetFooter.vue:22
344
  __( 'Learn More', 'google-analytics-dashboard-for-wp' ),
345
 
346
  // Reference: src/modules/reports/components/ReportReAuth.vue:19
395
  __( 'This list shows the percentage of carts that never went through the checkout process.', 'google-analytics-dashboard-for-wp' ),
396
 
397
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:282
 
398
  __( 'Top Posts/Pages', 'google-analytics-dashboard-for-wp' ),
399
 
400
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:294
 
401
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-dashboard-for-wp' ),
402
 
403
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:276
 
404
  __( 'New vs. Returning Visitors', 'google-analytics-dashboard-for-wp' ),
405
 
406
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:290
 
407
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-dashboard-for-wp' ),
408
 
409
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:277
 
410
  __( 'Device Breakdown', 'google-analytics-dashboard-for-wp' ),
411
 
412
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:291
 
413
  __( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-dashboard-for-wp' ),
414
 
415
  // Reference: src/modules/widget/store/index.js:41
443
  __( 'This list shows the download links your visitors clicked the most.', 'google-analytics-dashboard-for-wp' ),
444
 
445
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:42
446
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:25
447
  __( 'Overview', 'google-analytics-dashboard-for-wp' ),
448
 
449
  // Reference: src/modules/widget/store/index.js:83
464
  // Reference: src/modules/widget/components/exactmetrics-WidgetAccordion-Lite.vue:218
465
  __( 'Analytics', 'google-analytics-dashboard-for-wp' ),
466
 
 
467
  // Reference: src/modules/widget/components/settings/exactmetrics-WidgetFullReportButton.vue:16
468
  /* Translators: Adds an arrow icon. */
469
  __( 'View All Reports %s', 'google-analytics-dashboard-for-wp' ),
474
  // Reference: src/modules/reports/components/ReportNoAuth.vue:26
475
  __( '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' ),
476
 
477
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:124
478
  __( 'Launch Setup Wizard', 'google-analytics-dashboard-for-wp' ),
479
 
480
  // Reference: src/modules/reports/components/ReportNoAuth.vue:28
505
  // Reference: src/components/TheQuickLinks.vue:78
506
  __( 'Upgrade to Pro &#187;', 'google-analytics-dashboard-for-wp' ),
507
 
 
508
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportPublishers-Lite.vue:30
509
  __( 'Publishers', 'google-analytics-dashboard-for-wp' ),
510
 
511
+ // Reference: src/modules/settings/routes/site.js:54
 
512
  __( 'eCommerce', 'google-analytics-dashboard-for-wp' ),
513
 
514
  // Reference: src/modules/reports/routes/exactmetrics-routes.js:57
515
  __( 'Dimensions Report', 'google-analytics-dashboard-for-wp' ),
516
 
517
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:47
518
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:65
519
  __( 'Forms', 'google-analytics-dashboard-for-wp' ),
520
 
521
  // Reference: src/modules/reports/components/exactmetrics-ReportsNavigation.vue:48
522
+ // Reference: src/modules/reports/routes/exactmetrics-routes.js:73
523
  __( 'Real-Time', 'google-analytics-dashboard-for-wp' ),
524
 
525
  // Reference: src/modules/reports/components/reports/exactmetrics-SiteSpeed-Lite.vue:30
529
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:260
530
  __( '2020 Year in Review', 'google-analytics-dashboard-for-wp' ),
531
 
532
+ // Reference: src/modules/settings/routes/site.js:103
533
  __( 'Import Export', 'google-analytics-dashboard-for-wp' ),
534
 
535
  // Reference: src/modules/settings/routes/site.js:111
536
  __( 'PrettyLinks Integration', 'google-analytics-dashboard-for-wp' ),
537
 
538
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:22
539
+ // Reference: src/modules/settings/routes/site.js:163
540
  __( 'Inline Popular Posts', 'google-analytics-dashboard-for-wp' ),
541
 
542
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:23
543
+ // Reference: src/modules/settings/routes/site.js:171
544
  __( 'Popular Posts Widget', 'google-analytics-dashboard-for-wp' ),
545
 
546
  // Reference: src/modules/popular-posts/components/PopularPostsNavigation.vue:24
547
+ // Reference: src/modules/settings/routes/site.js:180
548
  __( 'Popular Products', 'google-analytics-dashboard-for-wp' ),
549
 
550
  // Reference: src/modules/settings/routes/site.js:189
553
  // Reference: src/modules/settings/routes/site.js:200
554
  __( 'Sub menu item for WooCommerce Analytics', 'google-analytics-dashboard-for-wp' ),
555
 
556
+ // Reference: src/modules/settings/routes/site.js:38
557
  __( 'General', 'google-analytics-dashboard-for-wp' ),
558
 
559
+ // Reference: src/modules/settings/routes/site.js:46
560
  __( 'Engagement', 'google-analytics-dashboard-for-wp' ),
561
 
562
+ // Reference: src/modules/settings/routes/site.js:62
563
  __( 'Publisher', 'google-analytics-dashboard-for-wp' ),
564
 
565
+ // Reference: src/modules/settings/routes/site.js:70
 
566
  __( 'Conversions', 'google-analytics-dashboard-for-wp' ),
567
 
568
+ // Reference: src/modules/settings/routes/site.js:78
569
  __( 'Advanced', 'google-analytics-dashboard-for-wp' ),
570
 
571
+ // Reference: src/modules/settings/routes/site.js:95
572
  __( 'URL Builder', 'google-analytics-dashboard-for-wp' ),
573
 
574
  // Reference: src/modules/addons/store/actions.js:33
587
  /* Translators: Adds link to activate/install plugin and documentation. */
588
  __( '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', 'google-analytics-dashboard-for-wp' ),
589
 
590
+ // Reference: src/modules/reports/store/actions.js:133
591
  __( 'Installing Addon', 'google-analytics-dashboard-for-wp' ),
592
 
593
+ // Reference: src/modules/reports/store/actions.js:156
594
  __( 'Activating Addon', 'google-analytics-dashboard-for-wp' ),
595
 
596
+ // Reference: src/modules/reports/store/actions.js:171
597
  __( 'Addon Activated', 'google-analytics-dashboard-for-wp' ),
598
 
599
+ // Reference: src/modules/reports/store/actions.js:172
600
  __( 'Loading report data', 'google-analytics-dashboard-for-wp' ),
601
 
602
+ // Reference: src/modules/reports/store/actions.js:189
603
  __( 'Please activate manually', 'google-analytics-dashboard-for-wp' ),
604
 
605
+ // Reference: src/modules/reports/store/actions.js:192
606
  /* Translators: Adds the error status and status text. */
607
  __( 'Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
608
 
609
+ // Reference: src/modules/reports/store/actions.js:198
610
  __( 'Error Activating Addon', 'google-analytics-dashboard-for-wp' ),
611
 
612
+ // Reference: src/modules/reports/store/actions.js:204
613
  __( 'View Addons', 'google-analytics-dashboard-for-wp' ),
614
 
 
615
  // Reference: src/modules/seo/components/yoast.vue:237
616
  __( 'Dismiss', 'google-analytics-dashboard-for-wp' ),
617
 
618
+ // Reference: src/modules/reports/store/actions.js:212
619
  __( 'Redirecting', 'google-analytics-dashboard-for-wp' ),
620
 
621
+ // Reference: src/modules/reports/store/actions.js:213
622
  __( 'Please wait', 'google-analytics-dashboard-for-wp' ),
623
 
624
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
625
  __( 'activate', 'google-analytics-dashboard-for-wp' ),
626
 
627
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:119
628
  __( 'install', 'google-analytics-dashboard-for-wp' ),
629
 
630
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:127
631
  __( 'Visit addons page', 'google-analytics-dashboard-for-wp' ),
632
 
633
+ // Reference: src/modules/reports/store/actions.js:65
634
  __( 'Report Unavailable', 'google-analytics-dashboard-for-wp' ),
635
 
636
+ // Reference: src/modules/reports/store/actions.js:72
637
  /* Translators: Install/Activate the addon. */
638
  __( '%s Addon', 'google-analytics-dashboard-for-wp' ),
639
 
640
+ // Reference: src/modules/reports/store/actions.js:91
641
  __( 'Go Back To Reports', 'google-analytics-dashboard-for-wp' ),
642
 
643
+ // Reference: src/modules/reports/store/actions.js:92
644
  __( 'Enable Enhanced eCommerce', 'google-analytics-dashboard-for-wp' ),
645
 
646
  // Reference: src/modules/wizard-onboarding/components/exactmetrics-OnboardingAboveContent.vue:15
765
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:66
766
  __( '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.', 'google-analytics-dashboard-for-wp' ),
767
 
768
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:56
769
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:71
770
  /* Translators: Example path (/go/). */
771
  __( 'Path (example: %s)', 'google-analytics-dashboard-for-wp' ),
772
 
773
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:58
774
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:73
775
  __( 'Path has to start with a / and have no spaces', 'google-analytics-dashboard-for-wp' ),
776
 
777
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:63
778
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
779
  /* Translators: Example label (aff). */
780
  __( 'Label (example: %s)', 'google-analytics-dashboard-for-wp' ),
781
 
782
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:65
783
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:80
784
  __( 'Label can\'t contain any spaces', 'google-analytics-dashboard-for-wp' ),
785
 
799
  __( 'These user roles will be able to access ExactMetrics\' reports in the WordPress admin area.', 'google-analytics-dashboard-for-wp' ),
800
 
801
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:83
 
802
  __( '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' ),
803
 
804
+ // Reference: src/modules/wizard-onboarding/components/steps/exactmetrics-OnboardingStepRecommendedAddons-Lite.vue:56
805
  __( 'Save and continue', 'google-analytics-dashboard-for-wp' ),
806
 
807
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:91
811
  __( 'Enhanced Link Attribution is enabled the moment you set up ExactMetrics', 'google-analytics-dashboard-for-wp' ),
812
 
813
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:127
 
814
  __( '+ Add Role', 'google-analytics-dashboard-for-wp' ),
815
 
816
  // Reference: src/components/TheFloatingBar-Lite.vue:29
850
  /* Translators: Adds link to upgrade. */
851
  __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-dashboard-for-wp' ),
852
 
853
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:34
854
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:132
855
  __( 'Receive 50% off automatically applied at the checkout!', 'google-analytics-dashboard-for-wp' ),
856
 
857
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewUpsell-Lite.vue:37
858
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:134
859
  __( 'See all features', 'google-analytics-dashboard-for-wp' ),
860
 
889
  // Reference: src/modules/addons/exactmetrics-addons-Lite.vue:85
890
  __( 'Refreshing Addons', 'google-analytics-dashboard-for-wp' ),
891
 
892
+ // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:105
893
  __( 'Get ExactMetrics Pro Today and Unlock all the Powerful Features', 'google-analytics-dashboard-for-wp' ),
894
 
895
  // Reference: src/modules/about/components/exactmetrics-AboutTabGettingStarted.vue:107
997
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:141
998
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-dashboard-for-wp' ),
999
 
1000
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabPublisher.vue:73
1001
  __( 'Headline Analyzer', 'google-analytics-dashboard-for-wp' ),
1002
 
1003
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:79
1024
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:168
1025
  __( '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.', 'google-analytics-dashboard-for-wp' ),
1026
 
 
1027
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:103
1028
  __( 'Not Available', 'google-analytics-dashboard-for-wp' ),
1029
 
1057
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:66
1058
  __( 'Bonus: ExactMetrics Lite users get 50% off regular price, automatically applied at checkout.', 'google-analytics-dashboard-for-wp' ),
1059
 
 
1060
  // Reference: src/modules/addons/components/exactmetrics-AddonBlock.vue:61
 
1061
  __( 'Upgrade to Pro', 'google-analytics-dashboard-for-wp' ),
1062
 
1063
  // Reference: src/modules/about/components/exactmetrics-AboutTabLiteVsPro.vue:70
1118
  /* Translators: Error status and error text. */
1119
  __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1120
 
1121
+ // Reference: src/modules/license/api/index.js:149
1122
+ // Reference: src/modules/settings/api/index.js:27
1123
  __( 'You appear to be offline.', 'google-analytics-dashboard-for-wp' ),
1124
 
1125
+ // Reference: src/modules/popular-posts/api/index.js:43
1126
  /* Translators: Error status and error text. */
1127
  __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-dashboard-for-wp' ),
1128
 
1129
+ // Reference: src/modules/popular-posts/api/index.js:47
1130
  __( 'Network error encountered. Settings not saved.', 'google-analytics-dashboard-for-wp' ),
1131
 
1132
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1251
  // Reference: src/modules/widget/components/WidgetNoticeCompact.vue:15
1252
  __( 'Check out the newly added classic mode', 'google-analytics-dashboard-for-wp' ),
1253
 
1254
+ // Reference: src/modules/reports/components/reports-overview/exactmetrics-ReportOverviewDatePicker-Lite.vue:50
1255
  /* Translators: Placeholder adds a line break. */
1256
  __( 'You can customize your %sdate range only in the PRO version.', 'google-analytics-dashboard-for-wp' ),
1257
 
1285
  __( 'Remove row', 'google-analytics-dashboard-for-wp' ),
1286
 
1287
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:47
 
1288
  __( 'Sessions', 'google-analytics-dashboard-for-wp' ),
1289
 
1290
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:83
1291
  /* Translators: Line break. */
1292
  __( 'Unique %s Sessions', 'google-analytics-dashboard-for-wp' ),
1293
 
1294
+ // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:48
1295
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:297
1296
  __( 'Pageviews', 'google-analytics-dashboard-for-wp' ),
1297
 
1299
  /* Translators: Line break. */
1300
  __( 'Unique %s Pageviews', 'google-analytics-dashboard-for-wp' ),
1301
 
1302
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:285
1303
  __( 'A session is the browsing session of a single user to your site.', 'google-analytics-dashboard-for-wp' ),
1304
 
1305
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:286
1306
  __( 'A pageview is defined as a view of a page on your site that is being tracked by the Analytics tracking code. Each refresh of a page is also a new pageview.', 'google-analytics-dashboard-for-wp' ),
1307
 
1308
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:287
1309
  __( 'Total duration of all sessions (in seconds) / number of sessions.', 'google-analytics-dashboard-for-wp' ),
1310
 
1311
  // Reference: src/modules/widget/components/reports/exactmetrics-WidgetReportOverview-Lite.vue:90
1312
  __( 'Percentage of single page visits (or web sessions). It is the number of visits in which a person leaves your website from the landing page without browsing any further.', 'google-analytics-dashboard-for-wp' ),
1313
 
1314
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:289
1315
  __( 'The number of distinct tracked users', 'google-analytics-dashboard-for-wp' ),
1316
 
1317
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportOverview.vue:273
1318
  __( 'Avg. Session Duration', 'google-analytics-dashboard-for-wp' ),
1319
 
1320
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:50
 
1321
  __( 'Bounce Rate', 'google-analytics-dashboard-for-wp' ),
1322
 
1323
  // Reference: src/modules/frontend/components/exactmetrics-FrontendStatsGeneral.vue:51
 
1324
  __( 'Total Users', 'google-analytics-dashboard-for-wp' ),
1325
 
1326
  // Reference: src/modules/settings/components/input/SettingsInputSelect.vue:62
1359
  /* Translators: add link to blog. */
1360
  __( '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' ),
1361
 
1362
+ // Reference: src/modules/reports/components/reports/exactmetrics-ReportForms-Lite.vue:35
1363
  __( 'Here\'s what you get:', 'google-analytics-dashboard-for-wp' ),
1364
 
1365
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportRealTime-Lite.vue:41
1629
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:281
1630
  __( 'Average Age', 'google-analytics-dashboard-for-wp' ),
1631
 
1632
+ // Reference: src/modules/popular-posts/components/PopularPostsWidget.vue:101
1633
  // Reference: src/modules/reports/components/reports/exactmetrics-YearInReview-Lite.vue:282
1634
  __( 'Behavior', 'google-analytics-dashboard-for-wp' ),
1635
 
1839
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:111
1840
  __( 'Disconnect ExactMetrics', 'google-analytics-dashboard-for-wp' ),
1841
 
1842
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:150
1843
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:79
1844
  __( 'Authenticating', 'google-analytics-dashboard-for-wp' ),
1845
 
1870
  // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:81
1871
  __( 'Active Profile', 'google-analytics-dashboard-for-wp' ),
1872
 
1873
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:82
1874
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
1875
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-dashboard-for-wp' ),
1876
 
1877
+ // Reference: src/modules/settings/components/input/tab-general/exactmetrics-SettingsInputAuthenticate-Lite.vue:83
1878
  // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51
1879
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-dashboard-for-wp' ),
1880
 
2021
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:114
2022
  __( 'Choose where in the post body the widget will be placed.', 'google-analytics-dashboard-for-wp' ),
2023
 
 
2024
  // Reference: src/modules/popular-posts/components/input/PopularPostsThemeCustomizeControls.vue:109
2025
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemeCustomize.vue:136
2026
  __( 'Customize Design', 'google-analytics-dashboard-for-wp' ),
2027
 
2028
  // Reference: src/modules/popular-posts/components/PopularPostsInline.vue:123
2254
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabConversions-Lite.vue:50
2255
  __( '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' ),
2256
 
2257
+ // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:38
2258
  __( 'Show', 'google-analytics-dashboard-for-wp' ),
2259
 
2260
  // Reference: src/modules/tools/components/exactmetrics-ToolsTabImportExport.vue:101
2319
  __( 'Reports', 'google-analytics-dashboard-for-wp' ),
2320
 
2321
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:91
2322
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabGeneral-Lite.vue:120
2323
  __( 'Automatic Updates', 'google-analytics-dashboard-for-wp' ),
2324
 
2325
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabAdvanced.vue:105
2578
  __( 'See Your Conversion Rate to Improve Funnel', 'google-analytics-dashboard-for-wp' ),
2579
 
2580
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:43
2581
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:60
2582
  __( 'See The Number of Transactions and Make Data-Driven Decisions', 'google-analytics-dashboard-for-wp' ),
2583
 
2584
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:47
2585
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:64
2586
  __( 'See The Total Revenue to Track Growth', 'google-analytics-dashboard-for-wp' ),
2587
 
2588
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:51
2589
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:68
2590
  __( 'See Average Order Value to Find Offer Opportunities', 'google-analytics-dashboard-for-wp' ),
2591
 
2592
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:55
2593
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:72
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:76
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:63
2600
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:80
2601
  __( 'See The Time it Takes for Customers to Purchase', 'google-analytics-dashboard-for-wp' ),
2602
 
2603
  // Reference: src/modules/reports/components/reports/exactmetrics-ReportEcommerce-Lite.vue:67
2604
+ // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:84
2605
  __( 'See How Many Sessions are Needed for a Purchase', 'google-analytics-dashboard-for-wp' ),
2606
 
2607
  // Reference: src/modules/settings/components/tabs/exactmetrics-SettingsTabEcommerce-Lite.vue:88
2958
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:112
2959
  __( 'Close', 'google-analytics-dashboard-for-wp' ),
2960
 
2961
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:48
2962
  __( 'Add Top 5 Posts from Google Analytics', 'google-analytics-dashboard-for-wp' ),
2963
 
2964
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:49
2971
  /* Translators: Placeholder adds a link to the Popular Posts GA setup instructions doc. */
2972
  __( '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' ),
2973
 
2974
+ // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:53
2975
  __( 'Automated + Curated', 'google-analytics-dashboard-for-wp' ),
2976
 
2977
  // Reference: src/modules/popular-posts/components/input/PopularPostsGaInput-Pro.vue:55
3025
  // Reference: src/modules/popular-posts/components/input/PopularPostsPostsPicker.vue:92
3026
  __( 'Can\'t load posts.', 'google-analytics-dashboard-for-wp' ),
3027
 
3028
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:47
3029
  __( 'Sartorial taxidermy venmo you probably haven\'t heard of them, tofu fingerstache ethical pickled hella ramps vice snackwave seitan typewriter tofu.', 'google-analytics-dashboard-for-wp' ),
3030
 
3031
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:48
3032
  __( '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' ),
3033
 
3034
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:49
3035
  __( 'Color', 'google-analytics-dashboard-for-wp' ),
3036
 
3037
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:50
3038
  __( 'Size', 'google-analytics-dashboard-for-wp' ),
3039
 
3040
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:51
3041
  __( 'Title', 'google-analytics-dashboard-for-wp' ),
3042
 
3043
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:52
3044
  __( 'Label', 'google-analytics-dashboard-for-wp' ),
3045
 
3046
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:53
3047
  __( 'Background', 'google-analytics-dashboard-for-wp' ),
3048
 
3049
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:54
3050
  __( 'Border', 'google-analytics-dashboard-for-wp' ),
3051
 
3052
+ // Reference: src/modules/popular-posts/components/input/PopularPostsThemePreview.vue:55
3053
  __( 'Icon', 'google-analytics-dashboard-for-wp' ),
3054
 
3055
+ // Reference: src/modules/popular-posts/components/input/PopularPostsWidgetThemePreview.vue:60
3056
  __( 'Theme Preview', 'google-analytics-dashboard-for-wp' ),
3057
 
3058
  // Reference: src/modules/popular-posts/components/input/PopularPostsSharedCount.vue:31
3136
  __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-dashboard-for-wp' ),
3137
 
3138
  // Reference: src/modules/popular-posts/components/PopularPostsUpgradeOverlay.vue:24
 
 
3139
  __( 'Upgrade', 'google-analytics-dashboard-for-wp' ),
3140
 
3141
  // Reference: src/modules/settings/components/input/tab-advanced/exactmetrics-SettingsInputPdfReports-Lite.vue:17
lite/assets/vue/css/chunk-common.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-5bb5cf3a]{display:block}[data-v-5fb1a880]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-21d6a57e]{display:block}.exactmetrics-reset-default[data-v-21d6a57e]{margin-left:5px}.exactmetrics-dark[data-v-09f7fe5e]{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-74359c84]: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:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-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}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
+ @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-54110c18]{display:block}.exactmetrics-reset-default[data-v-54110c18]{margin-left:5px}.exactmetrics-dark[data-v-7262cc05]{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-102a61b0]: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:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-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}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}}
lite/assets/vue/css/chunk-common.rtl.css CHANGED
@@ -1 +1 @@
1
- @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-5bb5cf3a]{display:block}[data-v-5fb1a880]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-21d6a57e]{display:block}.exactmetrics-reset-default[data-v-21d6a57e]{margin-right:5px}.exactmetrics-dark[data-v-09f7fe5e]{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-74359c84]: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:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-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}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
+ @import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap);strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.exactmetrics-dark[data-v-54110c18]{display:block}.exactmetrics-reset-default[data-v-54110c18]{margin-right:5px}.exactmetrics-dark[data-v-7262cc05]{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-102a61b0]: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:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,d09GMgABAAAAAAjoAAsAAAAAMGgAAAidAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGVgDWYgpQdQE2AiQDCAsGAAQgBYUOBy4bvi8lYxtWw7BxAPB87x5FmeAMlf3/96RzDN74RcXUcjTKmrJ3T2VDSShiPhfiIJxxS7DiLkHFfQV33CM4427mAred74pWur/J3dyVsKy7coREA8fzvPvpfUk+tB3R8YTCzE0SCLepejmJ2u1yqp+kC7W4Rc/tDTs3GpNJ8ttRPOSTPhsXlwbi4kVYWQmAcXmlrqYHMMsBwP/zHMz7fkF1gijOKuFQIxjwlGa2lkARhYaBxFHT54IOgBMQADi3LipIMAA3geO41EUkBTCO2gkxnOwnKYBx1E6p5WS+QUCMq50rNch6MwUCAAiAcdgttYVSIfPJ5kn6ApRFQ6I88BxLvvIC/maHUHS3TIoKiwLbbM8nEFWgE1oDz3woSxpagWbBXcQWhKtPeIlg6tK+7vX57QOszwU3sGUJrA7h2Mx1IWCNr9BKxsYo+pzS/OCO0OG9mwBkx337+lcuSxRdBcc+fJxlcAjK/zCfdgtBzuxQcTqfY4Yn6EB/Az3JS/RMu5f6B8wrn55S0IxdlLn+4Yb/ctIT+ocWYPcGAOvxSjEjpSiVMqSgFWVjzpCCXjAIRirTABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REdFDlkZEh2jE3SKztA5ukCX6Apdoxt0i+7QPXpAj+gJPaMX9Ire0Dv6QJ/oC/qKvqHv6Af6iX6h3+gP+ov+of+I+ECMxETMiDmxIJbEilgTG2JL7Ig9cSCOxIk4ExfiStyIO/EgnsSLeBMf4kv8iD/taQANoiE0jEbQKBpD42gCTaIpNI1m0CyaQ/NoAS2iJbSMVtAqWkPraANtoi20jXbQLtpD++gAHaIjdIxO0Ck6Q+foAl2iK3SNbtAtukP36AE9oif0jF7QK3pD79B79AF9RJ/QZ/QFfUXf0Hf0A/1Ev9Bv9Af9Rf/Qf9DQABpEQ2gYjaBRNIbG0QSaRFNoGs2gWTSH5tECWkRLaBmtoFW0htbRBtpEW2gb7aBdtIf20QE6REfoGJ2gU3SGztEFukRX6BrdoFt0h+7RA3pET+gZvaBX9Aa9Re/Qe/QBfUSf0Gf0BX1F39B39AP9RL/Qb/QH/UX/0P8l9vq9gXwDIUCliyAhRAgTIoQoIUaIExKEJCFFSBMyhCwhR8gTCoQioUQoEyqEKqFGqBMahCahRWgTOoQuoUfoEwaEIWFEGBMmhClhRpgTFoQlYUVYEzaELWFH2BMOhGPCCeGUcEY4J1wQLglXhGvCDeGWcEe4JzwQHglPhGfCC+GV8EZ4J3wQPglfhG/CD+GX8Ef4p9sdgoQQIUyIEKKEGCFOSBCShBQhTcgQsoQcIU8oEIqEEqFMqBCqhBqhTmgkNBGaCS2EVkIboZ3QQegkdBG6CT2EXkIfoZ8wQBgkDBGGCSOEUcIYYZwwQZgkTBGmCTOEWcIcYZ6wQFgkLBGWCSuEVcIaYZ2wQdgkbBG2CTuEXcIeYZ9wQDgkHBGOCSeEU8IZ4ZxwQbgkXBGuCTeEW8Id4Z7wQHgkPBGeCS+EV8Ib4Z3wQfgkfBG+CT+EX8If4Z8AZpAQIoQJEUKUECPECQlCkpAipAkZQpaQI+QJBUKRUCKUCRVClVAj1AkNQpPQIrQJHUKX0CP0CQPCkDAijAkTwpQwI8wJC8KSsCKsCRvClrAj7AkHwpFwIpwJF8IV4ZpwQ7gl3BHuCQ+ER8IT4ZnwQnglvBHeCR+ET8IX4ZvwQ/gl/BH+lzv+AmMkTYAmSBOiCdNEaKI0MZo4TYImSZOiSdNkaLI0OZo8TYGmSFOiKdNUaKo0NZo6TYOmSdOiadN0aLo0PZo+zYBmSDOiGdNMaKY0M5o5zYJmSbOiWdNsaLY0O5o9zYHmmOaE5pTmjOac5oLmkuaK5prmhuaW5o7mnuaB5pHmieaZ5oXmleaN5p3mg+aT5ovmm+aH5pfmj2ZRAqCCoEKgwqAioKKgYqDioBKgkqBSoNKgMqCyoHKg8qAKoIqgSqDKoCqgqqBqoOqgGkE1gWoG1QKqFVQbqHZQHaA6QXWB6gbVA6oXVB+oflADoAZBDYH+uxaEWDBiIYiFIhaGWDhiEYhFIhaFWDRiMYjFIhaHWDxiCYglIpaEWDJiKYilIpaGWDpiGYhlIpaFWDZiOYjlIpaHWD5iBYgVIlaEWDFiJYiVIlaGWDliFYhVIlaFWDViNYjVIlaHWD1iDYg1ItaEWDNiLYi1ItaGWDtiHYh1ItaFWDdiPYj1ItaHWD9iA4gNIjaE2DBiI4iNIjaG2DhiE4hNIjaF2DRiM4jNIjaH2DxiC4gtIraE2DJiK4itIraG2DpiG4htIraF2DZiO4jtIraH2D5iB4gdInaE2DFiJ4idInaG2DliF4hdInaF2DViN4jdInaH2D1iD4g9IvaE2DNiL4i9IvaG2DvE3iP2AbGPiH1C7DNiXxD7itg3xL4j9gOxn4j9Quw3Yn8Q+4vYP8T+M6cIDBz9EXfeUHR1JyygPL/++I3R1cRvdDr+E12Jfh3Q0EN/fHn2mXptpJxUkIqu/Cs2egM33OjSLcT33I82+B9nP37X/c0W52623s45CYCo03QIBCVrAFAycnSYSqvO4YJt/NP73YqA/giNZhJ6sBbmql+0SQZaxNOZudJbc2nqxNvpM+veq7Sz2LUgFEu+VLs+Ay3yp7MVertp6i23v2Rmv5gmHDhSQ6t5GmTaqTsqhpWwmbOk3uKJrNOmwSSMC17jghqygilDOUU3KlLmHHNrajw3DVNVGWytGZDisM/cbkdRnvfIUJkaGJlgAYcoQ5bGptTmGc1R7pBC3XhFsLXnXR54qrMc+dGNBkqE4laBi4KmZYGom8vIy0lTyBkppBjLoTndMmrofIRORirsNlCbXzCgulmo36KztS2iV8rrNoRUL5VdkMSGoSXroC1KOQAA) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.exactmetrics_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.monstericon-times-circle:before{content:"\f01b"}.monstericon-times:before{content:"\f021"}.monstericon-info-circle-regular:before{content:"\f01e"}.monstericon-arrow{-webkit-transition:-webkit-transform .5s ease;transition:-webkit-transform .5s ease;transition:transform .5s ease;transition:transform .5s ease,-webkit-transform .5s ease;-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);display:inline-block}.monstericon-arrow.monstericon-down{-webkit-transform:rotate(0);-ms-transform:rotate(0);transform:rotate(0)}.monstericon-arrow:before{content:"\f01f"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-files:before{content:"\f028"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-expand:before{content:"\f02d"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}.monstericon-arrow-right:before{content:"\f01d"}.monstericon-amp-icon:before{content:"\f000"}.monstericon-fbia:before{content:"\f001"}.monstericon-google-optimize:before{content:"\f002"}.monstericon-ads:before{content:"\0041"}.monstericon-affiliate:before{content:"\0042"}.monstericon-compatibility:before{content:"\0043"}.monstericon-demographics:before{content:"\0044"}.monstericon-download:before{content:"\0046"}.monstericon-ecommerce:before{content:"\0047"}.monstericon-engagement:before{content:"\0048"}.monstericon-forms:before{content:"\0049"}.monstericon-links:before{content:"\004a"}.monstericon-memberships:before{content:"\004b"}.monstericon-notifications:before{content:"\004c"}.monstericon-performance:before{content:"\004d"}.monstericon-permissions:before{content:"\004e"}.monstericon-reporting:before{content:"\004f"}.monstericon-social:before{content:"\0050"}.monstericon-video:before{content:"\0051"}.monstericon-times:before{content:"\f014"}.monstericon-check:before{content:"\f015"}.monstericon-info:before{content:"\f016"}.monstericon-exclamation-triangle:before{content:"\f017"}.monstericon-user:before{content:"\f018"}.monstericon-eye:before{content:"\f019"}.monstericon-info-circle:before{content:"\f01a"}.monstericon-info-circle-btm:before{content:"\f01c"}.monstericon-chevron-up:before{content:"\f01f"}.monstericon-times-fas:before{content:"\f021"}.monstericon-check-circle:before{content:"\f022"}.monstericon-exclamation-circle:before{content:"\f023"}.monstericon-star:before{content:"\f025"}.monstericon-times-circle-fas:before{content:"\f026"}.monstericon-check-circle-far:before{content:"\f027"}.monstericon-file-alt:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user-far:before{content:"\f02a"}.monstericon-eye-far:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand-alt:before{content:"\f02d"}.monstericon-compress-arrows-alt:before{content:"\f02e"}.monstericon-compress:before{content:"\f02f"}.monstericon-badge-check:before{content:"\f034"}.monstericon-download-em:before{content:"\f035"}.monstericon-globe:before{content:"\f036"}.monstericon-wand-magic:before{content:"\f037"}.monstericon-mouse-pointer:before{content:"\f038"}.monstericon-users:before{content:"\f039"}.monstericon-file-certificate:before{content:"\f03a"}.monstericon-bullseye-arrow:before{content:"\f03b"}.monstericon-cash-register:before{content:"\f03c"}.monstericon-chart-line:before{content:"\f03d"}.monstericon-clock:before{content:"\f03e"}.monstericon-box:before{content:"\f03f"}.monstericon-sack-dollar:before{content:"\f040"}.monstericon-browser:before{content:"\f041"}.monstericon-eye-em:before{content:"\f042"}.monstericon-newspaper:before{content:"\f043"}.monstericon-mobile:before{content:"\f044"}.monstericon-check-em-light:before{content:"\f045"}.monstericon-times-em-lite:before{content:"\f046"}.monstericon-code:before{content:"\f047"}.monstericon-clipboard:before{content:"\f048"}.monstericon-upload:before{content:"\f049"}.monstericon-clone:before{content:"\f04a"}.monstericon-id-card:before{content:"\f04b"}.monstericon-user-friends:before{content:"\f04c"}.monstericon-file-alt-em:before{content:"\f04d"}.monstericon-calendar-alt:before{content:"\f04e"}.monstericon-comment-alt-check:before{content:"\f04f"}.monstericon-arrow-circle-up:before{content:"\f050"}.monstericon-search-em:before{content:"\f051"}.monstericon-list-ol:before{content:"\f052"}.monstericon-hand-pointer:before{content:"\f053"}.monstericon-folder:before{content:"\f054"}.monstericon-sign-out-em-solid:before{content:"\f055"}.monstericon-external-link-alt:before{content:"\f056"}.monstericon-copy:before{content:"\f057"}.monstericon-sync:before{content:"\f058"}.monstericon-flag:before{content:"\f059"}.monstericon-building:before{content:"\f05a"}.monstericon-chart-bar:before{content:"\f05b"}.monstericon-shopping-bag:before{content:"\f05c"}.monstericon-exchange-alt:before{content:"\f05d"}.monstericon-plus:before{content:"\f05e"}.monstericon-tachometer-alt:before{content:"\f05f"}.monstericon-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}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}}
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:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:100% 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-left:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);left:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-left:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-left:-32px;margin-right:-32px;padding-left:32px;padding-right:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-left:32px;padding-right:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-left:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;right:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:100% 100%;background-image:url(../img/forms-wpforms-upsell.png)}.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%,.3803921568627451)}.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 .exactmetrics-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.exactmetrics-upsell-overlay p{margin:20px 0}.exactmetrics-upsell-overlay .exactmetrics-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{margin:0 auto;max-width:520px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-left:40px;position:relative;line-height:1.2}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;left:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#210f59;font-size:14px;text-align:center;line-height:20px;top:-1px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content .exactmetrics-button{font-weight:400;font-size:16px;margin-top:10px}.exactmetrics-upsell-overlay a{color:#393f4c}.exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-center,.exactmetrics-mobile-upsell{text-align:center}.exactmetrics-mobile-upsell .exactmetrics-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.exactmetrics-mobile-upsell .exactmetrics-notice-inner{margin-top:0}@media (min-width:783px){.exactmetrics-mobile-upsell{display:none}}.exactmetrics-mobile-upsell .exactmetrics-notice-success .exactmetrics-notice-button{margin-right:0}.exactmetrics-overview-upsell-desktop{margin:0 -32px}@media (max-width:782px){.exactmetrics-overview-upsell-desktop{display:none}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:55%}@media (max-width:969px){.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right{width:45%}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{bottom:auto;height:490px;width:779px;left:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-right:142px}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text:before{content:"";height:48px;width:127px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAP4AAABgCAMAAAAKJD9QAAAAV1BMVEUAAAAgD1ghD1kgC1ghD1khD1ogD1ggEFEgDlkgDlggDlghDlkgDlkiDlkgEFghD1kgDlggEF0gDlggD1ogD1chD1kgD1kgDVgiDlkgD1ggEFogEFUhD1k1ONBfAAAAHHRSTlMAv98g/u9AEHCAYI+vnyHPUBGggDDuvkF/vjExfxARwwAABb9JREFUeNrlnO3O2yAMhfkIhAJp0y7tuo37v85p0qRqC+XENm+Wbed3hXhiY4NNUf+ElpgmbUz5IXPRU5it2ia9VVMKfsugSW9Tnk6zl5OPPmlX1nI5LAqrkGRytOh7Fop08iL27FqzTQvEJ0tHgE+UmSwP3ieHB48jGR+PCfCp4nwAr3t83cKSmQE+/QOw4bGSBfh0pRHg8z0Ky956DV64MrYrfhmem+mD6zbbwpZbAD5Vj3ET/Fl3/LqlN78ubF228M+OO7rF+HJ+XQT8mP5U2DILxJevKF0ESgD+OhWBhoDw5ebSsgm26S8FiBoAikyf+uKXu20FPUDP4C9C2b745dGwvSlFzt8XX3fGHzzw/L78RSrfF7+Yd/hT6aIhAnyzFsH8esOADpifl/GM0VobB8PL0sQ39ZN1MO/MD/FtrT6Taat/bmegFO34mmo2W9M1wftifdCE8UnnlmGpBf0GkD6td4v+5kB4JeMrW13Xjoj/kjUwmeKIov2bwaPBuwuMj2fhMT7gh3up8NbrPWeDfLc8/NEA78f4mH8YN7v+iXk4fPDwlQexn4ivfCM1vXQDZxiyAwyRgA/o3EjCx2TpdyOCEyzjfHwfefixrLUI8O2Gxa8b1QGor3X+Tzz8sTJaJOFjtrv6RZ8BPYv/PjbwadM9SfBjLfZh4xtE/1Ksm5+Hn8pKkwT/XMG3qx+AQgsj/t15+KEzvnJg239DyQFL14aYWfgRZD4y/qWNf3UFfHCsc22MBwvf98bXbfzIc328axzGvwFfV8MWVaY2Sifnzx+If61XRLBw8nxw8E+9Q59p4s/A+ALzDyMDP3fO+9d24ruBvChIfkOs4pM/Y0D4RLccVnmBGfZBApno+As48GN8fOa5tH1jVhzpKinGxye0EeOTTvy57RsjACVsrqn4FgRiMv6z3ek6kRoh1BjjMT42fhbgW1DqBoEWCGWYQMR/lopi52KXQZuChmiWSxgfVxytpNQJNvROsPTx5DMFf0ygzUPF9wa2eUAtBAg1Si7b8e3TlaoiE99r3OQ716bM1Leykqngu9NaaTKgJUnCH5eY3JYW5Fka+Ntj3VWR6tNHdng/A3xp5hPjG9sXf4gAf1JcfQR+VH3xv6i/Cd90v9uDwlU+EL6zAJ/j+n9P6AuqL/4nPGXTN/ExhTvx8vHk2x6YRbrfwdRy+j02vXL8pBC+/EbnZY8jj9xWcnyzoDnje6/Udkpg4xuveuK7yvWk/csd8v+yKN31rzxztTXN0QyKXQTpxvrTQsvj/q/vtfSNYuC7ySvVDd8kT62rp16F7kzGdzkC39Mk+BEarZP3R9DmgOAmp7iw6unR/1AAyQ5Nu3+Ty4I6P0W43JHRDdaXdmlxXtSu+KPjuL8GPsM3ftgXX82cfy+Fwlr9eAkNdj/8hvt7GLLFwf9sRJdb5PgC90+Flfvx7agd8Vvu/wBRS3yxLVRHUDviN90/wBFFO/+vsmuNcnywku+Wbv4yiRZ+MXZP/Lb7X8CQgB/R142/J37b/UtimL9M4xbPN63d9v74V0eP5LkUZvwLrllR3h9fzfSzz9nxXrwYE2hP7IUvdP/AevIkvm2j2p3xsfvPYFTyB/AalCl3xMfuf7fY/evKc8Xtnwb0EXfDH1Zgmb6RmdtFmOBfwcPOSYOm9O742JZDkD3aYbSepklfHOonLOoP46uA5oXPLYJuyh/HB39PAs8XCPuSB8A/O3r2u5ou9EfAf+P+Hm3f5fTHwAfuD/yfT38U/Lr7Z1D5ysKodxh8FcAM+z9a5dWB8JUGmz/whAZVX6w6FH7d/R+9H6x73YM/Fv6bc1z6iOcKL4s6HL7SIPv1eqzyHpQ6IP7ZgewnXAGv+wOHxG+4P5TXBPiD4r9x/3nje604CegwKnVc/LNrZD+s2H6k+uTpT5TfZPhpNeCXlgGCrulEeapav6mAWPWfaJlP+ecD9c6YfNv8QP13jdUZgGL72MYAAAAASUVORK5CYII=);background-size:contain;position:absolute;left:100%;top:0;margin-left:15px}.exactmetrics-report-realtime .exactmetrics-table-box th:first-child{width:auto}.exactmetrics-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.exactmetrics-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;padding-top:32px}.exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-left:0}}.exactmetrics-report-scroll>h3{position:absolute;top:0}.exactmetrics-report-scroll .exactmetrics-realtime-active{margin:0 0 50px}.exactmetrics-report-scroll .exactmetrics-realtime-box-content{margin:25px 0}.exactmetrics-report-scroll .exactmetrics-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}@media (max-width:782px){.exactmetrics-report-scroll .exactmetrics-realtime-large{margin-top:25px}}.exactmetrics-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-left:-375px}}.exactmetrics-not-authenticated-notice .exactmetrics-auth-manual-connect-paragraph{display:none}.exactmetrics-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{text-align:center}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#e9e7ee;border-color:#e9e7ee;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:hover{background-color:#f4f3f7;border-color:#f4f3f7;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt{background:#6528f5;border-color:#6528f5;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;border-color:#e9e7ee;color:#9087ac}.exactmetrics-reports-list-has-overflow{cursor:pointer}.exactmetrics-reports-ecommerce-pie-chart{padding:130px 0 0;width:40%;max-width:100%}@media (max-width:792px){.exactmetrics-reports-ecommerce-pie-chart{width:100%;padding-top:32px}}.exactmetrics-reports-ecommerce-pie-chart .exactmetrics-reports-pie-chart{position:relative;width:225px;text-align:center;padding:0;margin:0 auto;border:none}.exactmetrics-table-no-data{background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;height:100%;min-height:300px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-size:cover;border-radius:10px;padding:20px}.exactmetrics-table-no-data h3{font-size:17px;line-height:1.5;color:#210f59}.exactmetrics-product-color{display:inline-block;width:14px;height:14px;margin-right:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-left:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;left:50px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#9087ac}@media (max-width:782px){.exactmetrics-report-row-icon-left{padding-left:20px}.exactmetrics-report-row-icon-left:before{display:none}}.exactmetrics-admin-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px}.exactmetrics-admin-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f}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}
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
3
+ */.exactmetrics-flag{display:inline-block;width:32px;height:32px;background:url(../img/flags.png) no-repeat}.exactmetrics-flag.exactmetrics-flag-ad{background-position:-32px 0}.exactmetrics-flag.exactmetrics-flag-ae{background-position:-64px 0}.exactmetrics-flag.exactmetrics-flag-af{background-position:-96px 0}.exactmetrics-flag.exactmetrics-flag-ag{background-position:-128px 0}.exactmetrics-flag.exactmetrics-flag-ai{background-position:-160px 0}.exactmetrics-flag.exactmetrics-flag-al{background-position:-192px 0}.exactmetrics-flag.exactmetrics-flag-am{background-position:-224px 0}.exactmetrics-flag.exactmetrics-flag-an{background-position:-256px 0}.exactmetrics-flag.exactmetrics-flag-ao{background-position:-288px 0}.exactmetrics-flag.exactmetrics-flag-ar{background-position:-320px 0}.exactmetrics-flag.exactmetrics-flag-as{background-position:-352px 0}.exactmetrics-flag.exactmetrics-flag-at{background-position:-384px 0}.exactmetrics-flag.exactmetrics-flag-au{background-position:-416px 0}.exactmetrics-flag.exactmetrics-flag-aw{background-position:-448px 0}.exactmetrics-flag.exactmetrics-flag-ax{background-position:-480px 0}.exactmetrics-flag.exactmetrics-flag-az{background-position:0 -32px}.exactmetrics-flag.exactmetrics-flag-ba{background-position:-32px -32px}.exactmetrics-flag.exactmetrics-flag-bb{background-position:-64px -32px}.exactmetrics-flag.exactmetrics-flag-bd{background-position:-96px -32px}.exactmetrics-flag.exactmetrics-flag-be{background-position:-128px -32px}.exactmetrics-flag.exactmetrics-flag-bf{background-position:-160px -32px}.exactmetrics-flag.exactmetrics-flag-bg{background-position:-192px -32px}.exactmetrics-flag.exactmetrics-flag-bh{background-position:-224px -32px}.exactmetrics-flag.exactmetrics-flag-bi{background-position:-256px -32px}.exactmetrics-flag.exactmetrics-flag-bj{background-position:-288px -32px}.exactmetrics-flag.exactmetrics-flag-bl{background-position:-320px -32px}.exactmetrics-flag.exactmetrics-flag-bm{background-position:-352px -32px}.exactmetrics-flag.exactmetrics-flag-bn{background-position:-384px -32px}.exactmetrics-flag.exactmetrics-flag-bo{background-position:-416px -32px}.exactmetrics-flag.exactmetrics-flag-br{background-position:-448px -32px}.exactmetrics-flag.exactmetrics-flag-bs{background-position:-480px -32px}.exactmetrics-flag.exactmetrics-flag-bt{background-position:0 -64px}.exactmetrics-flag.exactmetrics-flag-bw{background-position:-32px -64px}.exactmetrics-flag.exactmetrics-flag-by{background-position:-64px -64px}.exactmetrics-flag.exactmetrics-flag-bz{background-position:-96px -64px}.exactmetrics-flag.exactmetrics-flag-ca{background-position:-128px -64px}.exactmetrics-flag.exactmetrics-flag-cd{background-position:-160px -64px}.exactmetrics-flag.exactmetrics-flag-cf{background-position:-192px -64px}.exactmetrics-flag.exactmetrics-flag-cg{background-position:-224px -64px}.exactmetrics-flag.exactmetrics-flag-ch{background-position:-256px -64px}.exactmetrics-flag.exactmetrics-flag-ci{background-position:-288px -64px}.exactmetrics-flag.exactmetrics-flag-ck{background-position:-320px -64px}.exactmetrics-flag.exactmetrics-flag-cl{background-position:-352px -64px}.exactmetrics-flag.exactmetrics-flag-cm{background-position:-384px -64px}.exactmetrics-flag.exactmetrics-flag-cn{background-position:-416px -64px}.exactmetrics-flag.exactmetrics-flag-co{background-position:-448px -64px}.exactmetrics-flag.exactmetrics-flag-cr{background-position:-480px -64px}.exactmetrics-flag.exactmetrics-flag-cu{background-position:0 -96px}.exactmetrics-flag.exactmetrics-flag-cv{background-position:-32px -96px}.exactmetrics-flag.exactmetrics-flag-cw{background-position:-64px -96px}.exactmetrics-flag.exactmetrics-flag-cy{background-position:-96px -96px}.exactmetrics-flag.exactmetrics-flag-cz{background-position:-128px -96px}.exactmetrics-flag.exactmetrics-flag-de{background-position:-160px -96px}.exactmetrics-flag.exactmetrics-flag-dj{background-position:-192px -96px}.exactmetrics-flag.exactmetrics-flag-dk{background-position:-224px -96px}.exactmetrics-flag.exactmetrics-flag-dm{background-position:-256px -96px}.exactmetrics-flag.exactmetrics-flag-do{background-position:-288px -96px}.exactmetrics-flag.exactmetrics-flag-dz{background-position:-320px -96px}.exactmetrics-flag.exactmetrics-flag-ec{background-position:-352px -96px}.exactmetrics-flag.exactmetrics-flag-ee{background-position:-384px -96px}.exactmetrics-flag.exactmetrics-flag-eg{background-position:-416px -96px}.exactmetrics-flag.exactmetrics-flag-eh{background-position:-448px -96px}.exactmetrics-flag.exactmetrics-flag-er{background-position:-480px -96px}.exactmetrics-flag.exactmetrics-flag-es{background-position:0 -128px}.exactmetrics-flag.exactmetrics-flag-et{background-position:-32px -128px}.exactmetrics-flag.exactmetrics-flag-eu{background-position:-64px -128px}.exactmetrics-flag.exactmetrics-flag-fi{background-position:-96px -128px}.exactmetrics-flag.exactmetrics-flag-fj{background-position:-128px -128px}.exactmetrics-flag.exactmetrics-flag-fk{background-position:-160px -128px}.exactmetrics-flag.exactmetrics-flag-fm{background-position:-192px -128px}.exactmetrics-flag.exactmetrics-flag-fo{background-position:-224px -128px}.exactmetrics-flag.exactmetrics-flag-fr{background-position:-256px -128px}.exactmetrics-flag.exactmetrics-flag-ga{background-position:-288px -128px}.exactmetrics-flag.exactmetrics-flag-gb{background-position:-320px -128px}.exactmetrics-flag.exactmetrics-flag-gd{background-position:-352px -128px}.exactmetrics-flag.exactmetrics-flag-ge{background-position:-384px -128px}.exactmetrics-flag.exactmetrics-flag-gg{background-position:-416px -128px}.exactmetrics-flag.exactmetrics-flag-gh{background-position:-448px -128px}.exactmetrics-flag.exactmetrics-flag-gi{background-position:-480px -128px}.exactmetrics-flag.exactmetrics-flag-gl{background-position:0 -160px}.exactmetrics-flag.exactmetrics-flag-gm{background-position:-32px -160px}.exactmetrics-flag.exactmetrics-flag-gn{background-position:-64px -160px}.exactmetrics-flag.exactmetrics-flag-gp{background-position:-96px -160px}.exactmetrics-flag.exactmetrics-flag-gq{background-position:-128px -160px}.exactmetrics-flag.exactmetrics-flag-gr{background-position:-160px -160px}.exactmetrics-flag.exactmetrics-flag-gs{background-position:-192px -160px}.exactmetrics-flag.exactmetrics-flag-gt{background-position:-224px -160px}.exactmetrics-flag.exactmetrics-flag-gu{background-position:-256px -160px}.exactmetrics-flag.exactmetrics-flag-gw{background-position:-288px -160px}.exactmetrics-flag.exactmetrics-flag-gy{background-position:-320px -160px}.exactmetrics-flag.exactmetrics-flag-hk{background-position:-352px -160px}.exactmetrics-flag.exactmetrics-flag-hn{background-position:-384px -160px}.exactmetrics-flag.exactmetrics-flag-hr{background-position:-416px -160px}.exactmetrics-flag.exactmetrics-flag-ht{background-position:-448px -160px}.exactmetrics-flag.exactmetrics-flag-hu{background-position:-480px -160px}.exactmetrics-flag.exactmetrics-flag-ic{background-position:0 -192px}.exactmetrics-flag.exactmetrics-flag-id{background-position:-32px -192px}.exactmetrics-flag.exactmetrics-flag-ie{background-position:-64px -192px}.exactmetrics-flag.exactmetrics-flag-il{background-position:-96px -192px}.exactmetrics-flag.exactmetrics-flag-im{background-position:-128px -192px}.exactmetrics-flag.exactmetrics-flag-in{background-position:-160px -192px}.exactmetrics-flag.exactmetrics-flag-iq{background-position:-192px -192px}.exactmetrics-flag.exactmetrics-flag-ir{background-position:-224px -192px}.exactmetrics-flag.exactmetrics-flag-is{background-position:-256px -192px}.exactmetrics-flag.exactmetrics-flag-it{background-position:-288px -192px}.exactmetrics-flag.exactmetrics-flag-je{background-position:-320px -192px}.exactmetrics-flag.exactmetrics-flag-jm{background-position:-352px -192px}.exactmetrics-flag.exactmetrics-flag-jo{background-position:-384px -192px}.exactmetrics-flag.exactmetrics-flag-jp{background-position:-416px -192px}.exactmetrics-flag.exactmetrics-flag-ke{background-position:-448px -192px}.exactmetrics-flag.exactmetrics-flag-kg{background-position:-480px -192px}.exactmetrics-flag.exactmetrics-flag-kh{background-position:0 -224px}.exactmetrics-flag.exactmetrics-flag-ki{background-position:-32px -224px}.exactmetrics-flag.exactmetrics-flag-km{background-position:-64px -224px}.exactmetrics-flag.exactmetrics-flag-kn{background-position:-96px -224px}.exactmetrics-flag.exactmetrics-flag-kp{background-position:-128px -224px}.exactmetrics-flag.exactmetrics-flag-kr{background-position:-160px -224px}.exactmetrics-flag.exactmetrics-flag-kw{background-position:-192px -224px}.exactmetrics-flag.exactmetrics-flag-ky{background-position:-224px -224px}.exactmetrics-flag.exactmetrics-flag-kz{background-position:-256px -224px}.exactmetrics-flag.exactmetrics-flag-la{background-position:-288px -224px}.exactmetrics-flag.exactmetrics-flag-lb{background-position:-320px -224px}.exactmetrics-flag.exactmetrics-flag-lc{background-position:-352px -224px}.exactmetrics-flag.exactmetrics-flag-li{background-position:-384px -224px}.exactmetrics-flag.exactmetrics-flag-lk{background-position:-416px -224px}.exactmetrics-flag.exactmetrics-flag-lr{background-position:-448px -224px}.exactmetrics-flag.exactmetrics-flag-ls{background-position:-480px -224px}.exactmetrics-flag.exactmetrics-flag-lt{background-position:0 -256px}.exactmetrics-flag.exactmetrics-flag-lu{background-position:-32px -256px}.exactmetrics-flag.exactmetrics-flag-lv{background-position:-64px -256px}.exactmetrics-flag.exactmetrics-flag-ly{background-position:-96px -256px}.exactmetrics-flag.exactmetrics-flag-ma{background-position:-128px -256px}.exactmetrics-flag.exactmetrics-flag-mc{background-position:-160px -256px}.exactmetrics-flag.exactmetrics-flag-md{background-position:-192px -256px}.exactmetrics-flag.exactmetrics-flag-me{background-position:-224px -256px}.exactmetrics-flag.exactmetrics-flag-mf{background-position:-256px -256px}.exactmetrics-flag.exactmetrics-flag-mg{background-position:-288px -256px}.exactmetrics-flag.exactmetrics-flag-mh{background-position:-320px -256px}.exactmetrics-flag.exactmetrics-flag-mk{background-position:-352px -256px}.exactmetrics-flag.exactmetrics-flag-ml{background-position:-384px -256px}.exactmetrics-flag.exactmetrics-flag-mm{background-position:-416px -256px}.exactmetrics-flag.exactmetrics-flag-mn{background-position:-448px -256px}.exactmetrics-flag.exactmetrics-flag-mo{background-position:-480px -256px}.exactmetrics-flag.exactmetrics-flag-mp{background-position:0 -288px}.exactmetrics-flag.exactmetrics-flag-mq{background-position:-32px -288px}.exactmetrics-flag.exactmetrics-flag-mr{background-position:-64px -288px}.exactmetrics-flag.exactmetrics-flag-ms{background-position:-96px -288px}.exactmetrics-flag.exactmetrics-flag-mt{background-position:-128px -288px}.exactmetrics-flag.exactmetrics-flag-mu{background-position:-160px -288px}.exactmetrics-flag.exactmetrics-flag-mv{background-position:-192px -288px}.exactmetrics-flag.exactmetrics-flag-mw{background-position:-224px -288px}.exactmetrics-flag.exactmetrics-flag-mx{background-position:-256px -288px}.exactmetrics-flag.exactmetrics-flag-my{background-position:-288px -288px}.exactmetrics-flag.exactmetrics-flag-mz{background-position:-320px -288px}.exactmetrics-flag.exactmetrics-flag-na{background-position:-352px -288px}.exactmetrics-flag.exactmetrics-flag-nc{background-position:-384px -288px}.exactmetrics-flag.exactmetrics-flag-ne{background-position:-416px -288px}.exactmetrics-flag.exactmetrics-flag-nf{background-position:-448px -288px}.exactmetrics-flag.exactmetrics-flag-ng{background-position:-480px -288px}.exactmetrics-flag.exactmetrics-flag-ni{background-position:0 -320px}.exactmetrics-flag.exactmetrics-flag-nl{background-position:-32px -320px}.exactmetrics-flag.exactmetrics-flag-no{background-position:-64px -320px}.exactmetrics-flag.exactmetrics-flag-np{background-position:-96px -320px}.exactmetrics-flag.exactmetrics-flag-nr{background-position:-128px -320px}.exactmetrics-flag.exactmetrics-flag-nu{background-position:-160px -320px}.exactmetrics-flag.exactmetrics-flag-nz{background-position:-192px -320px}.exactmetrics-flag.exactmetrics-flag-om{background-position:-224px -320px}.exactmetrics-flag.exactmetrics-flag-pa{background-position:-256px -320px}.exactmetrics-flag.exactmetrics-flag-pe{background-position:-288px -320px}.exactmetrics-flag.exactmetrics-flag-pf{background-position:-320px -320px}.exactmetrics-flag.exactmetrics-flag-pg{background-position:-352px -320px}.exactmetrics-flag.exactmetrics-flag-ph{background-position:-384px -320px}.exactmetrics-flag.exactmetrics-flag-pk{background-position:-416px -320px}.exactmetrics-flag.exactmetrics-flag-pl{background-position:-448px -320px}.exactmetrics-flag.exactmetrics-flag-pn{background-position:-480px -320px}.exactmetrics-flag.exactmetrics-flag-pr{background-position:0 -352px}.exactmetrics-flag.exactmetrics-flag-ps{background-position:-32px -352px}.exactmetrics-flag.exactmetrics-flag-pt{background-position:-64px -352px}.exactmetrics-flag.exactmetrics-flag-pw{background-position:-96px -352px}.exactmetrics-flag.exactmetrics-flag-py{background-position:-128px -352px}.exactmetrics-flag.exactmetrics-flag-qa{background-position:-160px -352px}.exactmetrics-flag.exactmetrics-flag-re{background-position:-192px -352px}.exactmetrics-flag.exactmetrics-flag-ro{background-position:-224px -352px}.exactmetrics-flag.exactmetrics-flag-rs{background-position:-256px -352px}.exactmetrics-flag.exactmetrics-flag-ru{background-position:-288px -352px}.exactmetrics-flag.exactmetrics-flag-rw{background-position:-320px -352px}.exactmetrics-flag.exactmetrics-flag-sa{background-position:-352px -352px}.exactmetrics-flag.exactmetrics-flag-sb{background-position:-384px -352px}.exactmetrics-flag.exactmetrics-flag-sc{background-position:-416px -352px}.exactmetrics-flag.exactmetrics-flag-sd{background-position:-448px -352px}.exactmetrics-flag.exactmetrics-flag-se{background-position:-480px -352px}.exactmetrics-flag.exactmetrics-flag-sg{background-position:0 -384px}.exactmetrics-flag.exactmetrics-flag-sh{background-position:-32px -384px}.exactmetrics-flag.exactmetrics-flag-si{background-position:-64px -384px}.exactmetrics-flag.exactmetrics-flag-sk{background-position:-96px -384px}.exactmetrics-flag.exactmetrics-flag-sl{background-position:-128px -384px}.exactmetrics-flag.exactmetrics-flag-sm{background-position:-160px -384px}.exactmetrics-flag.exactmetrics-flag-sn{background-position:-192px -384px}.exactmetrics-flag.exactmetrics-flag-so{background-position:-224px -384px}.exactmetrics-flag.exactmetrics-flag-sr{background-position:-256px -384px}.exactmetrics-flag.exactmetrics-flag-ss{background-position:-288px -384px}.exactmetrics-flag.exactmetrics-flag-st{background-position:-320px -384px}.exactmetrics-flag.exactmetrics-flag-sv{background-position:-352px -384px}.exactmetrics-flag.exactmetrics-flag-sy{background-position:-384px -384px}.exactmetrics-flag.exactmetrics-flag-sz{background-position:-416px -384px}.exactmetrics-flag.exactmetrics-flag-tc{background-position:-448px -384px}.exactmetrics-flag.exactmetrics-flag-td{background-position:-480px -384px}.exactmetrics-flag.exactmetrics-flag-tf{background-position:0 -416px}.exactmetrics-flag.exactmetrics-flag-tg{background-position:-32px -416px}.exactmetrics-flag.exactmetrics-flag-th{background-position:-64px -416px}.exactmetrics-flag.exactmetrics-flag-tj{background-position:-96px -416px}.exactmetrics-flag.exactmetrics-flag-tk{background-position:-128px -416px}.exactmetrics-flag.exactmetrics-flag-tl{background-position:-160px -416px}.exactmetrics-flag.exactmetrics-flag-tm{background-position:-192px -416px}.exactmetrics-flag.exactmetrics-flag-tn{background-position:-224px -416px}.exactmetrics-flag.exactmetrics-flag-to{background-position:-256px -416px}.exactmetrics-flag.exactmetrics-flag-tr{background-position:-288px -416px}.exactmetrics-flag.exactmetrics-flag-tt{background-position:-320px -416px}.exactmetrics-flag.exactmetrics-flag-tv{background-position:-352px -416px}.exactmetrics-flag.exactmetrics-flag-tw{background-position:-384px -416px}.exactmetrics-flag.exactmetrics-flag-tz{background-position:-416px -416px}.exactmetrics-flag.exactmetrics-flag-ua{background-position:-448px -416px}.exactmetrics-flag.exactmetrics-flag-ug{background-position:-480px -416px}.exactmetrics-flag.exactmetrics-flag-us{background-position:0 -448px}.exactmetrics-flag.exactmetrics-flag-uy{background-position:-32px -448px}.exactmetrics-flag.exactmetrics-flag-uz{background-position:-64px -448px}.exactmetrics-flag.exactmetrics-flag-va{background-position:-96px -448px}.exactmetrics-flag.exactmetrics-flag-vc{background-position:-128px -448px}.exactmetrics-flag.exactmetrics-flag-ve{background-position:-160px -448px}.exactmetrics-flag.exactmetrics-flag-vg{background-position:-192px -448px}.exactmetrics-flag.exactmetrics-flag-vi{background-position:-224px -448px}.exactmetrics-flag.exactmetrics-flag-vn{background-position:-256px -448px}.exactmetrics-flag.exactmetrics-flag-vu{background-position:-288px -448px}.exactmetrics-flag.exactmetrics-flag-wf{background-position:-320px -448px}.exactmetrics-flag.exactmetrics-flag-ws{background-position:-352px -448px}.exactmetrics-flag.exactmetrics-flag-ye{background-position:-384px -448px}.exactmetrics-flag.exactmetrics-flag-yt{background-position:-416px -448px}.exactmetrics-flag.exactmetrics-flag-za{background-position:-448px -448px}.exactmetrics-flag.exactmetrics-flag-zm{background-position:-480px -448px}.exactmetrics-flag.exactmetrics-flag-zw{background-position:0 -480px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner,.exactmetrics-upsell-row .exactmetrics-upsell-row-inner,.exactmetrics-upsell .exactmetrics-upsell-title .exactmetrics-upsell-title-inner{max-width:1400px;margin:0 auto}.exactmetrics-reports-page .exactmetrics-upsell{border-bottom:1px solid #d6e2ed}.exactmetrics-upsell-row{width:100%;background:rgba(101,40,245,.05)}.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 96px}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-row-inner{padding:0 24px}}.exactmetrics-upsell-row h3{margin:0 0 60px;font-size:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:15px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1 0 31%;flex:1 0 31%;margin-bottom:45px}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item{-webkit-box-flex:1;-ms-flex:1 0 21%;flex:1 0 21%}@media (max-width:782px){.exactmetrics-upsell-row .exactmetrics-upsell-list-item{width:100%;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}}.exactmetrics-upsell-row .exactmetrics-upsell-list-item i{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0;color:#6528f5;font-size:23px;margin-right:18px;margin-top:6px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{line-height:1.7;color:#37276a;max-width:232px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;font-weight:500;text-decoration:none}.exactmetrics-report-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text,.exactmetrics-settings-ecommerce .exactmetrics-upsell-row .exactmetrics-upsell-list-item .exactmetrics-upsell-list-item-text{max-width:170px}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text{cursor:pointer}.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:focus,.exactmetrics-upsell-row .exactmetrics-upsell-list-item a.exactmetrics-upsell-list-item-text:hover{color:#6528f5}.exactmetrics-full-width-upsell{background:#f7f3fe;min-height:445px;margin-bottom:116px}.exactmetrics-reports-page .exactmetrics-full-width-upsell{margin-bottom:0}@media (max-width:959px){.exactmetrics-full-width-upsell{margin-bottom:48px}}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space{margin-bottom:0;min-height:380px}.exactmetrics-full-width-upsell.exactmetrics-full-width-no-space+.exactmetrics-full-width-upsell{margin-top:-100px}.exactmetrics-full-width-upsell .exactmetrics-full-width-upsell-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;position:relative}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-full-width-upsell-inner .exactmetrics-upsell-left{padding-left:0;padding-top:100px}.exactmetrics-full-width-upsell h2{color:#210f59;font-size:24px;line-height:1.4}.exactmetrics-full-width-upsell p{font-size:15px;line-height:1.7;color:#210f59;margin:11px 0 0}.exactmetrics-full-width-upsell p.exactmetrics-upsell-pbold{font-weight:700;margin-top:0}.exactmetrics-full-width-upsell a.exactmetrics-green-text{color:#32a27a;font-weight:400}.exactmetrics-full-width-upsell a.exactmetrics-green-text:focus,.exactmetrics-full-width-upsell a.exactmetrics-green-text:hover{color:#19865f;text-decoration:none}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-top:20px;margin-bottom:72px}@media (max-width:1099px){.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons{margin-bottom:48px}}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button:first-child{margin-right:18px}.exactmetrics-full-width-upsell .exactmetrics-upsell-buttons .exactmetrics-button-text .monstericon-arrow-right{font-size:12px;vertical-align:text-top;margin-left:10px}.exactmetrics-upsell-half{position:relative;padding-top:56px}.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-left:96px;padding-top:56px;width:40%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:50%;padding-left:24px}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{padding-top:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{max-width:100%;left:0;height:auto;padding-top:67%}.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image:after{background-position:50%;left:-16%;right:-16%;top:-10%;bottom:-10%}@media (min-width:960px){.exactmetrics-upsell-half.exactmetrics-upsell-left .exactmetrics-screen-image{display:none}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%;padding-right:24px}}.exactmetrics-upsell-half.exactmetrics-upsell-right{padding-left:96px;padding-top:0;width:60%}@media (max-width:1099px){.exactmetrics-upsell-half.exactmetrics-upsell-right{width:50%}}@media (max-width:959px){.exactmetrics-upsell-half.exactmetrics-upsell-right{display:none}}.exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{position:absolute;bottom:-140px;left:68px}.exactmetrics-upsell-half h3{color:#6528f5;font-size:20px;line-height:1.3;font-weight:400;margin:0 0 15px}.exactmetrics-upsell a{color:#6528f5}.exactmetrics-upsell a:focus,.exactmetrics-upsell a:hover{color:#37276a}.exactmetrics-upsell .exactmetrics-upsell-title{border-bottom:1px solid #e9e7ee}.exactmetrics-upsell .exactmetrics-upsell-title h2{color:#210f59;font-size:32px;margin-left:100px;margin-top:45px;margin-bottom:35px}@media (max-width:782px){.exactmetrics-upsell .exactmetrics-upsell-title h2{margin-left:24px;line-height:1.4;margin-top:24px;margin-bottom:24px}}.exactmetrics-upsell .exactmetrics-upsell-half h3{font-size:24px;color:#210f59;font-weight:700}.exactmetrics-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.exactmetrics-upsell-bottom{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-bottom .exactmetrics-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.exactmetrics-upsell-bottom .exactmetrics-button-top{min-width:288px}}.exactmetrics-upsell-bottom img{max-width:100%}.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{width:848px;padding-top:0;height:566px}@media (max-width:1099px){.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-upsell-screen,.exactmetrics-screen-image{left:20px}}.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-upsell-screen:after,.exactmetrics-screen-image:after{background-position:100% 100%;background-image:url(../img/upsell-screen.png)}.exactmetrics-em-logo-text{width:432px;height:56px;margin-bottom:28px;padding-top:0;max-width:100%}@media (max-width:1400px){.exactmetrics-em-logo-text{padding-top:13%;height:auto}}@media (max-width:959px){.exactmetrics-em-logo-text{padding-top:8%}}.exactmetrics-em-logo-text:after{background-image:url(../img/exactmetrics.png)}.exactmetrics-em-addons-upsell-screen,.exactmetrics-em-ecommerce-upsell-screen,.exactmetrics-em-publishers-upsell-screen{bottom:auto;top:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:100% 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-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 .exactmetrics-upsell-subtitle{color:#4c6577;font-size:16px;text-align:center}.exactmetrics-upsell-overlay p{margin:20px 0}.exactmetrics-upsell-overlay .exactmetrics-upsell-content{border-top:1px solid #d6e2ed;background:#f9fbff;padding:40px}@media (max-width:782px){.exactmetrics-upsell-overlay .exactmetrics-upsell-content{padding-left:20px;padding-right:20px}}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul{margin:0 auto;max-width:520px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li{color:#4c6577;font-size:16px;margin:0 0 30px;padding-left:40px;position:relative;line-height:1.2}.exactmetrics-upsell-overlay .exactmetrics-upsell-content ul li:before{position:absolute;content:"\f015";width:20px;height:20px;background:#5cc0a5;left:0;border-radius:50%;display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#210f59;font-size:14px;text-align:center;line-height:20px;top:-1px}.exactmetrics-upsell-overlay .exactmetrics-upsell-content .exactmetrics-button{font-weight:400;font-size:16px;margin-top:10px}.exactmetrics-upsell-overlay a{color:#393f4c}.exactmetrics-upsell-overlay a:hover{text-decoration:none}.exactmetrics-center,.exactmetrics-mobile-upsell{text-align:center}.exactmetrics-mobile-upsell .exactmetrics-notice{border-top:1px solid #d6e2ed;border-right:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.exactmetrics-mobile-upsell .exactmetrics-notice-inner{margin-top:0}@media (min-width:783px){.exactmetrics-mobile-upsell{display:none}}.exactmetrics-mobile-upsell .exactmetrics-notice-success .exactmetrics-notice-button{margin-right:0}.exactmetrics-overview-upsell-desktop{margin:0 -32px}@media (max-width:782px){.exactmetrics-overview-upsell-desktop{display:none}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:55%}@media (max-width:969px){.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-left{width:100%}}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right{width:45%}.exactmetrics-overview-upsell-desktop .exactmetrics-upsell-half.exactmetrics-upsell-right .exactmetrics-em-upsell-screen{bottom:auto;height:490px;width:779px;left:0}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text{width:376px;margin-right:142px}.exactmetrics-overview-upsell-desktop .exactmetrics-em-logo-text:before{content:"";height:48px;width:127px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAP4AAABgCAMAAAAKJD9QAAAAV1BMVEUAAAAgD1ghD1kgC1ghD1khD1ogD1ggEFEgDlkgDlggDlghDlkgDlkiDlkgEFghD1kgDlggEF0gDlggD1ogD1chD1kgD1kgDVgiDlkgD1ggEFogEFUhD1k1ONBfAAAAHHRSTlMAv98g/u9AEHCAYI+vnyHPUBGggDDuvkF/vjExfxARwwAABb9JREFUeNrlnO3O2yAMhfkIhAJp0y7tuo37v85p0qRqC+XENm+Wbed3hXhiY4NNUf+ElpgmbUz5IXPRU5it2ia9VVMKfsugSW9Tnk6zl5OPPmlX1nI5LAqrkGRytOh7Fop08iL27FqzTQvEJ0tHgE+UmSwP3ieHB48jGR+PCfCp4nwAr3t83cKSmQE+/QOw4bGSBfh0pRHg8z0Ky956DV64MrYrfhmem+mD6zbbwpZbAD5Vj3ET/Fl3/LqlN78ubF228M+OO7rF+HJ+XQT8mP5U2DILxJevKF0ESgD+OhWBhoDw5ebSsgm26S8FiBoAikyf+uKXu20FPUDP4C9C2b745dGwvSlFzt8XX3fGHzzw/L78RSrfF7+Yd/hT6aIhAnyzFsH8esOADpifl/GM0VobB8PL0sQ39ZN1MO/MD/FtrT6Taat/bmegFO34mmo2W9M1wftifdCE8UnnlmGpBf0GkD6td4v+5kB4JeMrW13Xjoj/kjUwmeKIov2bwaPBuwuMj2fhMT7gh3up8NbrPWeDfLc8/NEA78f4mH8YN7v+iXk4fPDwlQexn4ivfCM1vXQDZxiyAwyRgA/o3EjCx2TpdyOCEyzjfHwfefixrLUI8O2Gxa8b1QGor3X+Tzz8sTJaJOFjtrv6RZ8BPYv/PjbwadM9SfBjLfZh4xtE/1Ksm5+Hn8pKkwT/XMG3qx+AQgsj/t15+KEzvnJg239DyQFL14aYWfgRZD4y/qWNf3UFfHCsc22MBwvf98bXbfzIc328axzGvwFfV8MWVaY2Sifnzx+If61XRLBw8nxw8E+9Q59p4s/A+ALzDyMDP3fO+9d24ruBvChIfkOs4pM/Y0D4RLccVnmBGfZBApno+As48GN8fOa5tH1jVhzpKinGxye0EeOTTvy57RsjACVsrqn4FgRiMv6z3ek6kRoh1BjjMT42fhbgW1DqBoEWCGWYQMR/lopi52KXQZuChmiWSxgfVxytpNQJNvROsPTx5DMFf0ygzUPF9wa2eUAtBAg1Si7b8e3TlaoiE99r3OQ716bM1Leykqngu9NaaTKgJUnCH5eY3JYW5Fka+Ntj3VWR6tNHdng/A3xp5hPjG9sXf4gAf1JcfQR+VH3xv6i/Cd90v9uDwlU+EL6zAJ/j+n9P6AuqL/4nPGXTN/ExhTvx8vHk2x6YRbrfwdRy+j02vXL8pBC+/EbnZY8jj9xWcnyzoDnje6/Udkpg4xuveuK7yvWk/csd8v+yKN31rzxztTXN0QyKXQTpxvrTQsvj/q/vtfSNYuC7ySvVDd8kT62rp16F7kzGdzkC39Mk+BEarZP3R9DmgOAmp7iw6unR/1AAyQ5Nu3+Ty4I6P0W43JHRDdaXdmlxXtSu+KPjuL8GPsM3ftgXX82cfy+Fwlr9eAkNdj/8hvt7GLLFwf9sRJdb5PgC90+Flfvx7agd8Vvu/wBRS3yxLVRHUDviN90/wBFFO/+vsmuNcnywku+Wbv4yiRZ+MXZP/Lb7X8CQgB/R142/J37b/UtimL9M4xbPN63d9v74V0eP5LkUZvwLrllR3h9fzfSzz9nxXrwYE2hP7IUvdP/AevIkvm2j2p3xsfvPYFTyB/AalCl3xMfuf7fY/evKc8Xtnwb0EXfDH1Zgmb6RmdtFmOBfwcPOSYOm9O742JZDkD3aYbSepklfHOonLOoP46uA5oXPLYJuyh/HB39PAs8XCPuSB8A/O3r2u5ou9EfAf+P+Hm3f5fTHwAfuD/yfT38U/Lr7Z1D5ysKodxh8FcAM+z9a5dWB8JUGmz/whAZVX6w6FH7d/R+9H6x73YM/Fv6bc1z6iOcKL4s6HL7SIPv1eqzyHpQ6IP7ZgewnXAGv+wOHxG+4P5TXBPiD4r9x/3nje604CegwKnVc/LNrZD+s2H6k+uTpT5TfZPhpNeCXlgGCrulEeapav6mAWPWfaJlP+ecD9c6YfNv8QP13jdUZgGL72MYAAAAASUVORK5CYII=);background-size:contain;position:absolute;left:100%;top:0;margin-left:15px}.exactmetrics-report-realtime .exactmetrics-table-box th:first-child{width:auto}.exactmetrics-reports-list-title{display:inline-block;word-break:break-all}@media (max-width:782px){.exactmetrics-reports-list-title{width:calc(100% - 30px);text-overflow:ellipsis;overflow:hidden}}.exactmetrics-report-scroll{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;padding-top:32px}.exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-left:25px}@media (max-width:991px){.exactmetrics-report-scroll:nth-child(2){width:100%;margin-left:0;margin-top:25px}}@media (max-width:782px){.exactmetrics-report-scroll{width:100%;margin-left:0}}.exactmetrics-report-scroll>h3{position:absolute;top:0}.exactmetrics-report-scroll .exactmetrics-realtime-active{margin:0 0 50px}.exactmetrics-report-scroll .exactmetrics-realtime-box-content{margin:25px 0}.exactmetrics-report-scroll .exactmetrics-realtime-large{line-height:1;margin:50px 0 0;font-size:80px}@media (max-width:782px){.exactmetrics-report-scroll .exactmetrics-realtime-large{margin-top:25px}}.exactmetrics-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.exactmetrics-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.exactmetrics-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.exactmetrics-not-authenticated-notice{margin-left:-375px}}.exactmetrics-not-authenticated-notice .exactmetrics-auth-manual-connect-paragraph{display:none}.exactmetrics-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input-authenticate{text-align:center}.exactmetrics-not-authenticated-notice .exactmetrics-license-button{line-height:1;margin-top:20px}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button{font-size:16px;padding:20px 40px;margin:20px 20px 10px;background:#e9e7ee;border-color:#e9e7ee;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button:hover{background-color:#f4f3f7;border-color:#f4f3f7;color:#37276a}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt{background:#6528f5;border-color:#6528f5;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:focus,.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-alt:hover{background-color:#37276a;border-color:#37276a;color:#fff}.exactmetrics-not-authenticated-notice .exactmetrics-settings-input .exactmetrics-button.exactmetrics-button-disabled{background:#e9e7ee;border-color:#e9e7ee;color:#9087ac}.exactmetrics-reports-list-has-overflow{cursor:pointer}.exactmetrics-reports-ecommerce-pie-chart{padding:130px 0 0;width:40%;max-width:100%}@media (max-width:792px){.exactmetrics-reports-ecommerce-pie-chart{width:100%;padding-top:32px}}.exactmetrics-reports-ecommerce-pie-chart .exactmetrics-reports-pie-chart{position:relative;width:225px;text-align:center;padding:0;margin:0 auto;border:none}.exactmetrics-table-no-data{background:url(../img/loading-background.jpg) no-repeat bottom #f4f3f7;height:100%;min-height:300px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background-size:cover;border-radius:10px;padding:20px}.exactmetrics-table-no-data h3{font-size:17px;line-height:1.5;color:#210f59}.exactmetrics-product-color{display:inline-block;width:14px;height:14px;margin-right:11px;vertical-align:middle;border-radius:50%}.exactmetrics-report-row-icon-left{position:relative;padding-left:170px}.exactmetrics-report-row-icon-left:before{font-size:50px;position:absolute;left:50px;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);color:#9087ac}@media (max-width:782px){.exactmetrics-report-row-icon-left{padding-left:20px}.exactmetrics-report-row-icon-left:before{display:none}}.exactmetrics-admin-page .exactmetrics-lite-datepicker{text-align:center;padding:12px 12px 27px}.exactmetrics-admin-page .exactmetrics-lite-datepicker p{color:#210f59;font-size:15px;line-height:1.5;font-weight:700}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text{color:#32a27a;display:inline-block;width:auto}.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:focus,.exactmetrics-admin-page .exactmetrics-lite-datepicker .exactmetrics-button-text:hover{color:#19865f}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}
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:-90px}.exactmetrics-em-addons-upsell-screen:after,.exactmetrics-em-ecommerce-upsell-screen:after,.exactmetrics-em-publishers-upsell-screen:after{background-position:0 0;background-image:url(../img/ecommerce-screen.png)}.exactmetrics-em-publishers-upsell-screen:after{background-image:url(../img/publishers-screen.png)}.exactmetrics-em-addons-upsell-screen{margin-bottom:-180px;top:-70px}.exactmetrics-em-addons-upsell-screen:after{background-image:url(../img/addons-help-screen.png)}.exactmetrics-em-search-console-upsell-screen:after{background-image:url(../img/search-console-screen.png)}.exactmetrics-em-real-time-upsell-screen:after{background-image:url(../img/real-time-screen.png)}.exactmetrics-em-site-speed-upsell-screen:after{background-image:url(../img/site-speed-screen.png)}.exactmetrics-em-forms-report-upsell-screen:after{background-image:url(../img/forms-report-screen.png)}.exactmetrics-em-dimensions-report-upsell-screen:after{background-image:url(../img/dimensions-report-screen.png)}.exactmetrics-em-forms-upsell-screen{width:758px;max-width:100%;margin-top:-75px}.exactmetrics-em-forms-upsell-screen:after{background-position:50%;background-image:url(../img/forms-screen.png)}.exactmetrics-em-optimize-upsell-screen{width:758px;max-width:100%;margin-right:-10%}.exactmetrics-em-optimize-upsell-screen:after{background-position:50%;background-image:url(../img/optimize-screen.png)}.exactmetrics-em-dimensions-upsell-screen{width:758px;max-width:100%}.exactmetrics-em-dimensions-upsell-screen:after{background-position:50%;background-image:url(../img/custom-dimensions-screen.png)}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:0}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell .exactmetrics-upsell-half p{max-width:400px;margin-bottom:28px}.exactmetrics-settings-conversions .exactmetrics-full-width-upsell.exactmetrics-reverse .exactmetrics-upsell-half.exactmetrics-upsell-right{padding-right:96px}.exactmetrics-icon-background-large{position:absolute;font-size:130px;color:rgba(101,40,245,.05);right:25px;top:25px;line-height:1;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator{font-size:13px;color:#fff;background-color:#32a27a;border-radius:3px;font-weight:500;padding:4px 8px;vertical-align:top;margin-right:10px;display:inline-block;margin-top:-4px;cursor:pointer;text-decoration:none}.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade .exactmetrics-settings-block-title .exactmetrics-pro-indicator:hover,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:focus,.exactmetrics-pro-upgrade h2 .exactmetrics-pro-indicator:hover{color:#fff;background:#19865f}.exactmetrics-report .exactmetrics-upsell-dismissable{margin-right:-32px;margin-left:-32px;padding-right:32px;padding-left:32px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable{text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable h3{font-size:17px;color:#210f59;line-height:1.5;font-weight:700}.exactmetrics-report .exactmetrics-upsell-dismissable p{font-size:15px;margin-bottom:25px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{width:50%;padding-top:38px}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half{padding-right:32px;padding-left:32px;width:100%;text-align:center}}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-upsell-half:first-child p{max-width:524px}.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:40px;color:#9087ac}@media (max-width:782px){.exactmetrics-report .exactmetrics-upsell-dismissable .exactmetrics-button-text{margin-right:0;margin-top:20px}}.exactmetrics-report .exactmetrics-upsell-dismiss{position:absolute;left:20px;top:20px;z-index:10}.exactmetrics-forms-image-wpf-upsell{margin-bottom:-140px;padding-top:85%}@media (max-width:782px){.exactmetrics-forms-image-wpf-upsell{margin-bottom:0}}.exactmetrics-forms-image-wpf-upsell:after{background-position:0 100%;background-image:url(../img/forms-wpforms-upsell.png)}.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%,.3803921568627451)}.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-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-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-keywords{padding-left: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-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-referrals{padding-right: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:100% 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-left: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-left: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-right:-30px;margin-left:-30px}@media (max-width:767px){.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins{margin-right:0;margin-left:0}}.exactmetrics-report-year-in-review .exactmetrics-yir-year-in-review-plugins-block .exactmetrics-yir-plugins .exactmetrics-addon{width:calc(50% - 60px);float:right;background:#f3f9ff;border:2px solid #e3f1ff;border-radius:5px;position:relative;min-height:260px;margin:30px 30px 0}@media (max-width:767px){.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:right;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-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:right;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-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;right: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:left;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-right:-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-right: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-right: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-right: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;right: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:right;margin-left: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-left: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-right: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-left-radius:0;border-bottom-left-radius:0;border-left:0;width:45px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.mobile svg{margin-right:-6px;margin-top:-1px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop{border-top-right-radius:0;border-bottom-right-radius:0;border-right:0;width:54px;height:40px}.exactmetrics-report-site-speed .exactmetrics-choose-device-button button.desktop svg{margin-right:-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-left: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%;right: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-left: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;right:-1px;top:1px}.exactmetrics-admin-page{overflow:hidden}.exactmetrics-report{padding:30px 32px;position:relative}@media (max-width:991px){.exactmetrics-report{padding-right:24px;padding-left:24px}}.exactmetrics-reports-page{margin-bottom:100px}.exactmetrics-reports-page .exactmetrics-header{padding-top:21px;padding-bottom:21px}@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-left: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-right: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;right:inherit}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-tabs-navigation button{font-size:18px;padding:23px 20px 25px;text-align:right}.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-right:1px solid #bcb7cd;border-top:0;padding:0 80px 0 10px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-right:none;padding-right: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-right: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-right:-32px;margin-left:-32px;padding-right:32px;padding-left: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-right:32px;padding-left:20px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-reports-pie-chart:first-child{border-left:1px solid #e9e7ee}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box{margin-right:20px;margin-top:0}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-flex .exactmetrics-table-box:first-child{margin-right: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 0 0 25px}.exactmetrics_page.exactmetrics-downloading-pdf-report .exactmetrics-reports-page .exactmetrics-report-scroll:nth-child(2){width:calc(50% - 12.5px);margin-right: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:left;margin-left:25px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-export-pdf-report{float:none;margin-left: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-left:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:none;width:100%;-ms-flex-flow:wrap;flex-flow:wrap}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle{width:100%;margin-left:0}body.exactmetrics-reporting-page .exactmetrics-reports-datepicker .exactmetrics-buttons-toggle .exactmetrics-button{width:50%}}@media (min-width:783px) and (max-width:1130px){body.exactmetrics-reporting-page .exactmetrics-reports-datepicker{float:left}}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 5px 0 10px;min-height:25px}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{background:#e9e7ee;border-radius:3px;font-size:15px;color:#210f59;line-height:1.75;padding:8px 20px 8px 28px;border:none;position:relative;text-align:right}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info{max-width:100%;line-height:1.4}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info>span{overflow:hidden;white-space:pre;text-overflow:ellipsis;max-width:calc(100% - 40px);display:inline-block}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-right:38px;margin-left:12px}@media (max-width:782px){body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info i{margin-right:10px;margin-left:10px;vertical-align:super}}body.exactmetrics-reporting-page .exactmetrics-reports-interval-date-info:after{width:0;height:0;border-color:#9087ac rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:5px 3.5px 0;content:"";position:absolute;top:50%;margin-top:-2px;left:20px}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown{position:absolute;z-index:100;background:#fff;border:1px solid #f4f3f7;border-radius:3px;margin-top:6px;-webkit-box-shadow:0 10px 20px rgba(48,44,62,.05);box-shadow:0 10px 20px rgba(48,44,62,.05);padding:7px 8px;width:100%;right:0;top:100%}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button{display:block;border:none;padding:8px 12px;font-size:15px;line-height:1.75;color:#210f59;width:100%;text-align:right;border-radius:2px;background:#fff}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button.exactmetrics-interval-active,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:focus,body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button:hover{background:#e9e7ee}body.exactmetrics-reporting-page .exactmetrics-reports-intervals-dropdown button i{margin-left:10px}body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{width:100%;margin-bottom:0;margin-top:10px;margin-right:0;font-weight:700}@media (min-width:783px){body.exactmetrics-reporting-page .exactmetrics-mobile-details-toggle{display:none}}body.exactmetrics-reporting-page .exactmetrics-info{color:#9087ac;cursor:help;font-size:15px;position:relative;display:inline-block;vertical-align:top;margin-right:10px}body.exactmetrics-reporting-page .exactmetrics-report-row{margin-bottom:25px}body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-bottom:0;margin-right:-32px;margin-left:-32px;padding:0 32px;border-top:1px solid #e9e7ee}@media (max-width:991px){body.exactmetrics-reporting-page .exactmetrics-report-row.exactmetrics-report-row-border-top{margin-right:-24px;margin-left:-24px;padding-right:24px;padding-left:24px}}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button{background:#eceff5;color:#464c57;border-bottom-width:1px;border-color:#d6e2ed;border-radius:0;line-height:18px;border-left:0;margin:0}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:hover{background:#fff}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:focus{z-index:10;position:relative}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:first-child{border-top-right-radius:3px;border-bottom-right-radius:3px}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button:last-child{border-top-left-radius:3px;border-bottom-left-radius:3px;border-left:1px solid #d6e2ed}body.exactmetrics-reporting-page .exactmetrics-buttons-toggle .exactmetrics-button.exactmetrics-selected-interval{background:#fff;color:#6528f5;font-weight:700}.exactmetrics-reports-overview-datagraph-tooltip-container{padding:15px;background-color:#fff;border:1px solid #bcb7cd;-webkit-box-shadow:0 10px 20px rgba(57,15,157,.15);box-shadow:0 10px 20px rgba(57,15,157,.15);border-radius:5px;display:block}.exactmetrics-pie-chart-tooltip{right:20px;top:20px;padding:0}@media (max-width:782px){.exactmetrics-pie-chart-tooltip{right:50%;margin-right:-97px}}.exactmetrics-reports-doughnut-tooltip{-webkit-box-shadow:none;box-shadow:none;border:none;width:172px;border-radius:50%;height:172px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-title{font-size:30px;color:#6528f5;margin-bottom:18px;font-weight:700}.exactmetrics-reports-doughnut-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number{color:#6528f5;font-size:15px;font-weight:500}#exactmetrics-chartjs-line-overview-tooltip{min-width:100px}.exactmetrics-reports-overview-datagraph-tooltip-number{color:#210f59;font-size:24px;font-weight:400;margin-bottom:5px;display:inline-block;margin-left:5px}.exactmetrics-reports-overview-datagraph-tooltip-trend{color:#23282d;font-size:14px;font-weight:400;display:inline-block}.exactmetrics-reports-overview-datagraph-tooltip-descriptor{color:#9087ac;font-size:12px;font-weight:400;width:100%;clear:both}.exactmetrics-reports-overview-datagraph-tooltip-title{color:#210f59;font-size:12px;font-weight:400;width:100%}#exactmetrics-chartjs-bar-tooltip,.exactmetrics-line-chart-tooltip{opacity:1;position:absolute;-webkit-transform:translate(50%,-100%);-ms-transform:translate(50%,-100%);transform:translate(50%,-100%);margin-top:-20px}#exactmetrics-chartjs-bar-tooltip:after,.exactmetrics-line-chart-tooltip:after{position:absolute;top:100%;width:0;height:0;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 9.5px 0;content:"";right:50%;margin-right:-9px;margin-top:-7px}#exactmetrics-chartjs-bar-tooltip:before,.exactmetrics-line-chart-tooltip:before{position:absolute;top:100%;width:0;height:0;border-color:#bcb7cd rgba(0,0,0,0) rgba(0,0,0,0);border-style:solid;border-width:10px 10.5px 0;content:"";right:50%;margin-right:-10px;margin-top:-6px}#exactmetrics-chartjs-line-age-tooltip .exactmetrics-reports-overview-datagraph-tooltip-number:after{content:"%"}.exactmetrics-report-tabs-navigation{border-bottom:1px solid #e9e7ee}.exactmetrics-report-tabs-navigation button{color:#4d3f7a;font-weight:700;text-align:right;font-size:15px;padding:15px 24px 17px;cursor:pointer;margin:0 0 -1px;position:relative;line-height:1;border-radius:5px 5px 0 0;background:#fff;border:1px solid;border-color:#fff #fff #e9e7ee}@media (max-width:782px){.exactmetrics-report-tabs-navigation button{font-size:14px;padding:13px 20px 15px;text-align:center}}.exactmetrics-report-tabs-navigation button:focus{z-index:10}.exactmetrics-report-tabs-navigation button.exactmetrics-active-tab-button{background:#fff;color:#6528f5;border-color:#e9e7ee #e9e7ee #fff}.exactmetrics-report-tabs{background:#fff}.exactmetrics-report-tabs .exactmetrics-report-tabs-content{padding-top:20px}#mi-custom-line{max-height:330px}.exactmetrics-report-infobox-row{display:-webkit-box;display:-ms-flexbox;display:flex;background:#f4f3f7;border-radius:10px;padding:24px 60px}@media (max-width:782px){.exactmetrics-report-infobox-row{-ms-flex-flow:wrap;flex-flow:wrap;padding:20px}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:25%;border-right:1px solid #bcb7cd;padding:0 60px 0 10px;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-right:6px;vertical-align:middle}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-right:none;padding-right:0}@media (max-width:782px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox{width:100%;border-right:none;border-top:1px solid #bcb7cd;padding:24px 0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:first-child{border-top:0;padding-top:0}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox:last-child{padding-bottom:0}}.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{text-overflow:ellipsis;overflow:hidden;white-space:pre;line-height:1.2;color:#4d3f7a;font-size:13px;display:inline-block;vertical-align:middle;padding-right:0}@media (max-width:991px){.exactmetrics-report-infobox-row .exactmetrics-reports-infobox .exactmetrics-report-title{padding-right:0}}.exactmetrics-report-title{font-size:24px;color:#210f59;font-weight:700;margin-top:0;line-height:1.4;display:inline-block}@media (max-width:762px){.exactmetrics-report-title{padding-right:60px}.exactmetrics-report-title.exactmetrics-has-pagination{margin-bottom:80px}}.exactmetrics-report-title:before{width:40px;height:40px;border-radius:50%;background:rgba(33,15,89,.1);left:100%;margin-left:30px;color:#210f59;text-align:center;line-height:40px;font-size:15px;-webkit-transition:background .2s ease 0ms,color .2s ease 0ms;transition:background .2s ease 0ms,color .2s ease 0ms;vertical-align:middle;margin-top:-2px}@media (max-width:762px){.exactmetrics-report-title:before{position:absolute;right:0}}.exactmetrics-reports-infobox-number{font-size:32px;font-weight:500;line-height:1;margin-top:4px;color:#210f59;width:100%;display:block}@media (max-width:782px){.exactmetrics-reports-infobox-number{font-size:36px;float:none}}.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{display:inline-block}@media (max-width:1280px){.exactmetrics-reports-infobox-compare,.exactmetrics-reports-infobox-prev{float:none;clear:both}}.exactmetrics-reports-infobox-prev{font-size:14px;margin-top:4px;margin-left:5px}.exa
1
  /*!
2
  * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)