Google Analytics for WordPress by MonsterInsights - Version 7.10.3

Version Description

= 7.0.0 =

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

= 6.0.0 =

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

Download this release

Release Info

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

Code changes from version 7.10.2 to 7.10.3

googleanalytics.php CHANGED
@@ -6,7 +6,7 @@
6
  * Author: MonsterInsights
7
  * Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
- * Version: 7.10.2
10
  * Requires at least: 3.8.0
11
  *
12
  * License: GPL v3
@@ -68,7 +68,7 @@ final class MonsterInsights_Lite {
68
  * @access public
69
  * @var string $version Plugin version.
70
  */
71
- public $version = '7.10.2';
72
 
73
  /**
74
  * Plugin file.
6
  * Author: MonsterInsights
7
  * Author URI: https://www.monsterinsights.com/?utm_source=liteplugin&utm_medium=pluginheader&utm_campaign=authoruri&utm_content=7%2E0%2E0
8
  *
9
+ * Version: 7.10.3
10
  * Requires at least: 3.8.0
11
  *
12
  * License: GPL v3
68
  * @access public
69
  * @var string $version Plugin version.
70
  */
71
+ public $version = '7.10.3';
72
 
73
  /**
74
  * Plugin file.
includes/admin/ajax.php CHANGED
@@ -46,7 +46,7 @@ add_action( 'wp_ajax_monsterinsights_install_addon', 'monsterinsights_ajax_insta
46
  * @since 6.0.0
47
  */
48
  function monsterinsights_ajax_install_addon() {
49
-
50
  // Run a security check first.
51
  check_ajax_referer( 'monsterinsights-install', 'nonce' );
52
 
@@ -93,7 +93,7 @@ function monsterinsights_ajax_install_addon() {
93
  require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
94
  $base = MonsterInsights();
95
  require_once plugin_dir_path( $base->file ) . '/includes/admin/licensing/skin.php';
96
-
97
  // Create the plugin upgrader with our custom skin.
98
  $installer = new Plugin_Upgrader( $skin = new MonsterInsights_Skin() );
99
  $installer->install( $download_url );
@@ -166,7 +166,7 @@ function monsterinsights_ajax_deactivate_addon() {
166
 
167
  // Deactivate the addon.
168
  if ( isset( $_POST['plugin'] ) ) {
169
- if ( isset( $_POST['isnetwork'] ) && $_POST['isnetwork'] ) {
170
  $deactivate = deactivate_plugins( $_POST['plugin'], false, true );
171
  } else {
172
  $deactivate = deactivate_plugins( $_POST['plugin'] );
46
  * @since 6.0.0
47
  */
48
  function monsterinsights_ajax_install_addon() {
49
+
50
  // Run a security check first.
51
  check_ajax_referer( 'monsterinsights-install', 'nonce' );
52
 
93
  require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
94
  $base = MonsterInsights();
95
  require_once plugin_dir_path( $base->file ) . '/includes/admin/licensing/skin.php';
96
+
97
  // Create the plugin upgrader with our custom skin.
98
  $installer = new Plugin_Upgrader( $skin = new MonsterInsights_Skin() );
99
  $installer->install( $download_url );
166
 
167
  // Deactivate the addon.
168
  if ( isset( $_POST['plugin'] ) ) {
169
+ if ( isset( $_POST['isnetwork'] ) && $_POST['isnetwork'] ) {
170
  $deactivate = deactivate_plugins( $_POST['plugin'], false, true );
171
  } else {
172
  $deactivate = deactivate_plugins( $_POST['plugin'] );
includes/admin/common.php CHANGED
@@ -152,8 +152,8 @@ function monsterinsights_admin_scripts() {
152
  'monsterinsights-admin-common-script',
153
  'monsterinsights_admin_common',
154
  array(
155
- 'ajax' => admin_url( 'admin-ajax.php' ),
156
- 'dismiss_notice_nonce' => wp_create_nonce( 'monsterinsights-dismiss-notice' ),
157
  )
158
  );
159
 
152
  'monsterinsights-admin-common-script',
153
  'monsterinsights_admin_common',
154
  array(
155
+ 'ajax' => admin_url( 'admin-ajax.php' ),
156
+ 'dismiss_notice_nonce' => wp_create_nonce( 'monsterinsights-dismiss-notice' ),
157
  )
158
  );
159
 
includes/helpers.php CHANGED
@@ -1240,3 +1240,58 @@ function monsterinsights_menu_highlight_color() {
1240
 
1241
  return $color;
1242
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1240
 
1241
  return $color;
1242
  }
1243
+
1244
+ /**
1245
+ * Track Pretty Links redirects with MonsterInsights.
1246
+ *
1247
+ * @param string $url The url to which users get redirected.
1248
+ */
1249
+ function monsterinsights_custom_track_pretty_links_redirect( $url ) {
1250
+ if ( ! function_exists( 'monsterinsights_mp_track_event_call' ) ) {
1251
+ return;
1252
+ }
1253
+ // Try to determine if click originated on the same site.
1254
+ $referer = ! empty( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '';
1255
+ if ( ! empty( $referer ) ) {
1256
+ $current_site_url = get_bloginfo( 'url' );
1257
+ $current_site_parsed = wp_parse_url( $current_site_url );
1258
+ $parsed_referer = wp_parse_url( $referer );
1259
+ if ( ! empty( $parsed_referer['host'] ) && ! empty( $current_site_parsed['host'] ) && $current_site_parsed['host'] === $parsed_referer['host'] ) {
1260
+ // Don't track clicks originating from same site as those are tracked with JS.
1261
+ return;
1262
+ }
1263
+ }
1264
+ // Check if this is an affiliate link and use the appropriate category.
1265
+ $ec = 'outbound-link';
1266
+ $inbound_paths = monsterinsights_get_option( 'affiliate_links', array() );
1267
+ $path = empty( $_SERVER['REQUEST_URI'] ) ? '' : $_SERVER['REQUEST_URI'];
1268
+ if ( ! empty( $inbound_paths ) && is_array( $inbound_paths ) && ! empty( $path ) ) {
1269
+ $found = false;
1270
+ foreach ( $inbound_paths as $inbound_path ) {
1271
+ if ( empty( $inbound_path['path'] ) ) {
1272
+ continue;
1273
+ }
1274
+ if ( 0 === strpos( $path, trim( $inbound_path['path'] ) ) ) {
1275
+ $label = ! empty( $inbound_path['label'] ) ? trim( $inbound_path['label'] ) : 'aff';
1276
+ $ec .= '-' . $label;
1277
+ $found = true;
1278
+ break;
1279
+ }
1280
+ }
1281
+ if ( ! $found ) {
1282
+ return;
1283
+ }
1284
+ } else {
1285
+ // no paths setup in MonsterInsights settings
1286
+ return;
1287
+ }
1288
+
1289
+ $track_args = array(
1290
+ 't' => 'event',
1291
+ 'ec' => $ec,
1292
+ 'ea' => $url,
1293
+ 'el' => 'external-redirect',
1294
+ );
1295
+ monsterinsights_mp_track_event_call( $track_args );
1296
+ }
1297
+ add_action( 'prli_before_redirect', 'monsterinsights_custom_track_pretty_links_redirect' );
languages/google-analytics-for-wordpress.pot CHANGED
@@ -9,7 +9,7 @@ msgstr ""
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: 2019-12-19T18:37:42+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.2.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
@@ -63,7 +63,7 @@ msgstr ""
63
  #: includes/admin/admin.php:37
64
  #: includes/admin/admin.php:45
65
  #: includes/admin/admin.php:91
66
- #: languages/vue.php:169
67
  msgid "Insights"
68
  msgstr ""
69
 
@@ -85,7 +85,7 @@ msgstr ""
85
 
86
  #: includes/admin/admin.php:39
87
  #: includes/admin/admin.php:95
88
- #: languages/vue.php:606
89
  msgid "Reports"
90
  msgstr ""
91
 
@@ -114,7 +114,7 @@ msgstr ""
114
 
115
  #: includes/admin/admin.php:60
116
  #: includes/admin/admin.php:103
117
- #: languages/vue.php:233
118
  msgid "About Us"
119
  msgstr ""
120
 
@@ -142,7 +142,7 @@ msgstr ""
142
 
143
  #: includes/admin/admin.php:175
144
  #: includes/admin/admin.php:178
145
- #: languages/vue.php:942
146
  msgid "Support"
147
  msgstr ""
148
 
@@ -151,22 +151,22 @@ msgid "Please rate %sMonsterInsights%s %s on %sWordPress.org%s to help us spread
151
  msgstr ""
152
 
153
  #: includes/admin/admin.php:276
154
- #: languages/vue.php:1893
155
  msgid "Please Setup Website Analytics to See Audience Insights"
156
  msgstr ""
157
 
158
  #: includes/admin/admin.php:277
159
- #: languages/vue.php:1899
160
  msgid "Connect MonsterInsights and Setup Website Analytics"
161
  msgstr ""
162
 
163
  #: includes/admin/admin.php:279
164
- #: languages/vue.php:206
165
  msgid "Learn More"
166
  msgstr ""
167
 
168
  #: includes/admin/admin.php:281
169
- #: languages/vue.php:1896
170
  msgid "MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 2 million website owners use MonsterInsights to see the stats that matter and grow their business."
171
  msgstr ""
172
 
@@ -179,12 +179,12 @@ msgid "Your license key for MonsterInsights has expired. %1$sPlease click here t
179
  msgstr ""
180
 
181
  #: includes/admin/admin.php:302
182
- #: languages/vue.php:1239
183
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
184
  msgstr ""
185
 
186
  #: includes/admin/admin.php:304
187
- #: languages/vue.php:1242
188
  msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
189
  msgstr ""
190
 
@@ -308,12 +308,12 @@ msgid "MonsterInsights has detected that it's files are being blocked. This is u
308
  msgstr ""
309
 
310
  #: includes/admin/common.php:869
311
- #: languages/vue.php:2055
312
  msgid "Your 2019 Analytics Report"
313
  msgstr ""
314
 
315
  #: includes/admin/common.php:875
316
- #: languages/vue.php:2058
317
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
318
  msgstr ""
319
 
@@ -447,7 +447,7 @@ msgid "Upgrading is easy! To upgrade, navigate to %sour pricing page%s, purchase
447
  msgstr ""
448
 
449
  #: includes/admin/reports/abstract-report.php:358
450
- #: languages/vue.php:1322
451
  msgid "Upgrade Now"
452
  msgstr ""
453
 
@@ -456,7 +456,7 @@ msgid "Please ask your webmaster to enable this addon."
456
  msgstr ""
457
 
458
  #: includes/admin/reports/overview.php:34
459
- #: languages/vue.php:209
460
  msgid "Overview"
461
  msgstr ""
462
 
@@ -1672,2992 +1672,2996 @@ msgstr ""
1672
  msgid "Loading new report data..."
1673
  msgstr ""
1674
 
1675
- #: languages/vue.php:13
1676
  msgid "Error"
1677
  msgstr ""
1678
 
1679
- #: languages/vue.php:16
1680
  msgid "Please try again."
1681
  msgstr ""
1682
 
1683
- #: languages/vue.php:19
1684
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
1685
  msgstr ""
1686
 
1687
- #: languages/vue.php:22
1688
  msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
1689
  msgstr ""
1690
 
1691
- #: languages/vue.php:25
1692
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
1693
  msgstr ""
1694
 
1695
- #: languages/vue.php:28
1696
  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."
1697
  msgstr ""
1698
 
1699
- #: languages/vue.php:31
1700
  msgid "See Your Top Landing Pages to Improve Enagement"
1701
  msgstr ""
1702
 
1703
- #: languages/vue.php:34
1704
  msgid "See Your Top Exit Pages to Reduce Abandonment"
1705
  msgstr ""
1706
 
1707
- #: languages/vue.php:37
1708
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
1709
  msgstr ""
1710
 
1711
- #: languages/vue.php:40
1712
  msgid "See Your Top Affiliate Links and Focus on what's working"
1713
  msgstr ""
1714
 
1715
- #: languages/vue.php:43
1716
  msgid "See Your Top Downloads and Improve Conversions"
1717
  msgstr ""
1718
 
1719
- #: languages/vue.php:46
1720
  msgid "See Audience Demographic Report ( Age / Gender / Interests )"
1721
  msgstr ""
1722
 
1723
- #: languages/vue.php:49
1724
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
1725
  msgstr ""
1726
 
1727
- #: languages/vue.php:52
1728
  msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
1729
  msgstr ""
1730
 
1731
- #: languages/vue.php:55
1732
  msgid "See Your Conversion Rate to Improve Funnel"
1733
  msgstr ""
1734
 
1735
- #: languages/vue.php:58
1736
  msgid "See The Number of Transactions and make data-driven decisions"
1737
  msgstr ""
1738
 
1739
- #: languages/vue.php:61
1740
  msgid "See The Total Revenue to Track Growth"
1741
  msgstr ""
1742
 
1743
- #: languages/vue.php:64
1744
  msgid "See Average Order Value to Find Offer Opportunities"
1745
  msgstr ""
1746
 
1747
- #: languages/vue.php:67
1748
  msgid "See Your Top Products to See Individual Performance"
1749
  msgstr ""
1750
 
1751
- #: languages/vue.php:70
1752
  msgid "See Your Top Conversion Sources and Focus on what's working"
1753
  msgstr ""
1754
 
1755
- #: languages/vue.php:73
1756
  msgid "See The Time it takes for Customers to Purchase"
1757
  msgstr ""
1758
 
1759
- #: languages/vue.php:76
1760
  msgid "See How Many Sessions are needed for a Purchase"
1761
  msgstr ""
1762
 
1763
- #: languages/vue.php:79
1764
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
1765
  msgstr ""
1766
 
1767
- #: languages/vue.php:82
1768
  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."
1769
  msgstr ""
1770
 
1771
- #: languages/vue.php:85
1772
  msgid "See Which Authors Generate the Most Traffic"
1773
  msgstr ""
1774
 
1775
- #: languages/vue.php:88
1776
  msgid "See Which Post Types Perform Better"
1777
  msgstr ""
1778
 
1779
- #: languages/vue.php:91
1780
  msgid "See Which Categories are the Most Popular"
1781
  msgstr ""
1782
 
1783
- #: languages/vue.php:94
1784
  msgid "See Your Blog's most populare SEO Scores"
1785
  msgstr ""
1786
 
1787
- #: languages/vue.php:97
1788
  msgid "See Which Focus Keyword is Performing Better in Search Engines"
1789
  msgstr ""
1790
 
1791
- #: languages/vue.php:100
1792
  msgid "Unlock the Forms Report and Improve Conversions"
1793
  msgstr ""
1794
 
1795
- #: languages/vue.php:103
1796
  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."
1797
  msgstr ""
1798
 
1799
- #: languages/vue.php:106
1800
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
1801
  msgstr ""
1802
 
1803
- #: languages/vue.php:109
1804
  msgid "See Your Top Converting Forms and Optimize"
1805
  msgstr ""
1806
 
1807
- #: languages/vue.php:112
1808
  msgid "See Your Forms Impressions Count to Find the Best Placement"
1809
  msgstr ""
1810
 
1811
- #: languages/vue.php:115
1812
  msgid "Unlock the Search Console Report and See How People Find Your Website"
1813
  msgstr ""
1814
 
1815
- #: languages/vue.php:118
1816
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
1817
  msgstr ""
1818
 
1819
- #: languages/vue.php:121
1820
  msgid "See Your Top Google Search Terms and Optimize Content"
1821
  msgstr ""
1822
 
1823
- #: languages/vue.php:124
1824
  msgid "See The Number of Clicks and Track Interests"
1825
  msgstr ""
1826
 
1827
- #: languages/vue.php:127
1828
  msgid "See The Click-Through-Ratio and Improve SEO"
1829
  msgstr ""
1830
 
1831
- #: languages/vue.php:130
1832
  msgid "See The Average Results Position and Focus on what works"
1833
  msgstr ""
1834
 
1835
- #: languages/vue.php:133
1836
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
1837
  msgstr ""
1838
 
1839
- #: languages/vue.php:136
1840
  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."
1841
  msgstr ""
1842
 
1843
- #: languages/vue.php:139
1844
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
1845
  msgstr ""
1846
 
1847
- #: languages/vue.php:142
1848
  msgid "See Your Top Pages Immediately After Making Changes"
1849
  msgstr ""
1850
 
1851
- #: languages/vue.php:145
1852
  msgid "See Your Top Referral Sources and Adapt Faster"
1853
  msgstr ""
1854
 
1855
- #: languages/vue.php:148
1856
  msgid "See Your Traffic Demographics and "
1857
  msgstr ""
1858
 
1859
- #: languages/vue.php:151
1860
  msgid "Get Fresh Reports Data Every 60 Seconds"
1861
  msgstr ""
1862
 
1863
- #: languages/vue.php:154
1864
  msgid "Overview Report"
1865
  msgstr ""
1866
 
1867
- #: languages/vue.php:157
1868
  msgid "Loading Settings"
1869
  msgstr ""
1870
 
1871
- #: languages/vue.php:160
1872
  msgid "Saving Changes..."
1873
  msgstr ""
1874
 
1875
- #: languages/vue.php:163
1876
  msgid "Settings Updated"
1877
  msgstr ""
1878
 
1879
- #: languages/vue.php:166
1880
  msgid "Could Not Save Changes"
1881
  msgstr ""
1882
 
1883
- #: languages/vue.php:172
1884
  msgid "Congratulations! "
1885
  msgstr ""
1886
 
1887
- #: languages/vue.php:175
1888
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
1889
  msgstr ""
1890
 
1891
- #: languages/vue.php:178
1892
  msgid "Publishers Report"
1893
  msgstr ""
1894
 
1895
- #: languages/vue.php:181
1896
  msgid "eCommerce Report"
1897
  msgstr ""
1898
 
1899
- #: languages/vue.php:184
1900
  msgid "Search Console Report"
1901
  msgstr ""
1902
 
1903
- #: languages/vue.php:188
1904
  msgid "Dimensions Report"
1905
  msgstr ""
1906
 
1907
- #: languages/vue.php:191
1908
  msgid "Forms Report"
1909
  msgstr ""
1910
 
1911
- #: languages/vue.php:194
1912
  msgid "Real-Time Report"
1913
  msgstr ""
1914
 
1915
- #: languages/vue.php:197
1916
  msgid "Recommended Plugin: %s"
1917
  msgstr ""
1918
 
1919
- #: languages/vue.php:200
1920
  msgid "Install"
1921
  msgstr ""
1922
 
1923
- #: languages/vue.php:203
1924
  msgid "Activate"
1925
  msgstr ""
1926
 
1927
- #: languages/vue.php:212
1928
  #: lite/includes/admin/reports/report-publisher.php:22
1929
  msgid "Publishers"
1930
  msgstr ""
1931
 
1932
- #: languages/vue.php:215
1933
  #: lite/includes/admin/reports/report-ecommerce.php:22
1934
  msgid "eCommerce"
1935
  msgstr ""
1936
 
1937
- #: languages/vue.php:218
1938
  #: lite/includes/admin/reports/report-queries.php:22
1939
  msgid "Search Console"
1940
  msgstr ""
1941
 
1942
- #: languages/vue.php:221
1943
  #: lite/includes/admin/reports/report-dimensions.php:22
1944
  msgid "Dimensions"
1945
  msgstr ""
1946
 
1947
- #: languages/vue.php:224
1948
  #: lite/includes/admin/reports/report-forms.php:22
1949
  msgid "Forms"
1950
  msgstr ""
1951
 
1952
- #: languages/vue.php:227
1953
  msgid "Real-Time"
1954
  msgstr ""
1955
 
1956
- #: languages/vue.php:230
1957
  msgid "Loading settings"
1958
  msgstr ""
1959
 
1960
- #: languages/vue.php:236
1961
  msgid "Getting Started"
1962
  msgstr ""
1963
 
1964
- #: languages/vue.php:239
1965
  msgid "Lite vs Pro"
1966
  msgstr ""
1967
 
1968
- #: languages/vue.php:242
1969
  msgid "General"
1970
  msgstr ""
1971
 
1972
- #: languages/vue.php:245
1973
  msgid "Engagement"
1974
  msgstr ""
1975
 
1976
- #: languages/vue.php:248
1977
  msgid "Publisher"
1978
  msgstr ""
1979
 
1980
- #: languages/vue.php:251
1981
  msgid "Conversions"
1982
  msgstr ""
1983
 
1984
- #: languages/vue.php:254
1985
  msgid "Advanced"
1986
  msgstr ""
1987
 
1988
- #: languages/vue.php:257
1989
  msgid "URL Builder"
1990
  msgstr ""
1991
 
1992
- #: languages/vue.php:260
1993
  msgid "Import Export"
1994
  msgstr ""
1995
 
1996
- #: languages/vue.php:263
1997
  msgid "Time to Purchase"
1998
  msgstr ""
1999
 
2000
- #: languages/vue.php:266
2001
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
2002
  msgstr ""
2003
 
2004
- #: languages/vue.php:269
2005
  msgid "Sessions to Purchase"
2006
  msgstr ""
2007
 
2008
- #: languages/vue.php:272
2009
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
2010
  msgstr ""
2011
 
2012
- #: languages/vue.php:275
2013
  msgid "Top Posts/Pages"
2014
  msgstr ""
2015
 
2016
- #: languages/vue.php:278
2017
  msgid "This list shows the most viewed posts and pages on your website."
2018
  msgstr ""
2019
 
2020
- #: languages/vue.php:281
2021
  msgid "New vs. Returning Visitors"
2022
  msgstr ""
2023
 
2024
- #: languages/vue.php:284
2025
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
2026
  msgstr ""
2027
 
2028
- #: languages/vue.php:287
2029
  msgid "Device Breakdown"
2030
  msgstr ""
2031
 
2032
- #: languages/vue.php:290
2033
  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."
2034
  msgstr ""
2035
 
2036
- #: languages/vue.php:293
2037
  msgid "Top Landing Pages"
2038
  msgstr ""
2039
 
2040
- #: languages/vue.php:296
2041
  msgid "This list shows the top pages users first land on when visiting your website."
2042
  msgstr ""
2043
 
2044
- #: languages/vue.php:299
2045
  msgid "Top Exit Pages"
2046
  msgstr ""
2047
 
2048
- #: languages/vue.php:302
2049
  msgid "This list shows the top pages users exit your website from."
2050
  msgstr ""
2051
 
2052
- #: languages/vue.php:305
2053
  msgid "Top Outbound Links"
2054
  msgstr ""
2055
 
2056
- #: languages/vue.php:308
2057
  msgid "This list shows the top links clicked on your website that go to another website."
2058
  msgstr ""
2059
 
2060
- #: languages/vue.php:311
2061
  msgid "Top Affiliate Links"
2062
  msgstr ""
2063
 
2064
- #: languages/vue.php:314
2065
  msgid "This list shows the top affiliate links your visitors clicked on."
2066
  msgstr ""
2067
 
2068
- #: languages/vue.php:317
2069
  msgid "Top Download Links"
2070
  msgstr ""
2071
 
2072
- #: languages/vue.php:320
2073
  msgid "This list shows the download links your visitors clicked the most."
2074
  msgstr ""
2075
 
2076
- #: languages/vue.php:323
2077
  msgid "Top Products"
2078
  msgstr ""
2079
 
2080
- #: languages/vue.php:326
2081
  msgid "This list shows the top selling products on your website."
2082
  msgstr ""
2083
 
2084
- #: languages/vue.php:329
2085
  msgid "Top Conversion Sources"
2086
  msgstr ""
2087
 
2088
- #: languages/vue.php:332
2089
  msgid "This list shows the top referral websites in terms of product revenue."
2090
  msgstr ""
2091
 
2092
- #: languages/vue.php:335
2093
  msgid "Total Add/Remove"
2094
  msgstr ""
2095
 
2096
- #: languages/vue.php:338
2097
  msgid "Exit Setup"
2098
  msgstr ""
2099
 
2100
- #: languages/vue.php:341
2101
  msgid "Yikes! PHP Update Required"
2102
  msgstr ""
2103
 
2104
- #: languages/vue.php:344
2105
  msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%s), which could be putting your site at risk for being hacked. WordPress itself will stop supporting your PHP version in April, 2019. Updating to the recommended version (PHP %s) only takes a few minutes and will make your website significantly faster and more secure."
2106
  msgstr ""
2107
 
2108
- #: languages/vue.php:347
2109
  msgid "Learn more about updating PHP"
2110
  msgstr ""
2111
 
2112
- #: languages/vue.php:350
2113
  msgid "Yikes! WordPress Update Required"
2114
  msgstr ""
2115
 
2116
- #: languages/vue.php:353
2117
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
2118
  msgstr ""
2119
 
2120
- #: languages/vue.php:356
2121
  msgid "Learn more about updating WordPress"
2122
  msgstr ""
2123
 
2124
- #: languages/vue.php:359
2125
  msgid "Powered by MonsterInsights"
2126
  msgstr ""
2127
 
2128
- #: languages/vue.php:362
2129
  msgid "Save Changes"
2130
  msgstr ""
2131
 
2132
- #: languages/vue.php:365
2133
  msgid "New"
2134
  msgstr ""
2135
 
2136
- #: languages/vue.php:368
2137
  msgid "Returning"
2138
  msgstr ""
2139
 
2140
- #: languages/vue.php:371
2141
  msgid "Desktop"
2142
  msgstr ""
2143
 
2144
- #: languages/vue.php:374
2145
  msgid "Tablet"
2146
  msgstr ""
2147
 
2148
- #: languages/vue.php:377
2149
  msgid "Mobile"
2150
  msgstr ""
2151
 
2152
- #: languages/vue.php:380
2153
  msgid "Sessions"
2154
  msgstr ""
2155
 
2156
- #: languages/vue.php:383
2157
  msgid "Unique %s Sessions"
2158
  msgstr ""
2159
 
2160
- #: languages/vue.php:386
2161
  msgid "Pageviews"
2162
  msgstr ""
2163
 
2164
- #: languages/vue.php:389
2165
  msgid "Unique %s Pageviews"
2166
  msgstr ""
2167
 
2168
- #: languages/vue.php:392
2169
  msgid "Avg. Session Duration"
2170
  msgstr ""
2171
 
2172
- #: languages/vue.php:395
2173
  msgid "Bounce Rate"
2174
  msgstr ""
2175
 
2176
- #: languages/vue.php:398
2177
  msgid "Top 10 Countries"
2178
  msgstr ""
2179
 
2180
- #: languages/vue.php:401
2181
  msgid "View Countries Report"
2182
  msgstr ""
2183
 
2184
- #: languages/vue.php:404
2185
  msgid "Top 10 Referrals"
2186
  msgstr ""
2187
 
2188
- #: languages/vue.php:407
2189
  msgid "View All Referral Sources"
2190
  msgstr ""
2191
 
2192
- #: languages/vue.php:410
2193
  msgid "View Full Posts/Pages Report"
2194
  msgstr ""
2195
 
2196
- #: languages/vue.php:413
2197
  msgid "A session is the browsing session of a single user to your site."
2198
  msgstr ""
2199
 
2200
- #: languages/vue.php:416
2201
  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."
2202
  msgstr ""
2203
 
2204
- #: languages/vue.php:419
2205
  msgid "Total duration of all sessions (in seconds) / number of sessions."
2206
  msgstr ""
2207
 
2208
- #: languages/vue.php:422
2209
  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."
2210
  msgstr ""
2211
 
2212
- #: languages/vue.php:425
2213
  msgid "This list shows the top countries your website visitors are from."
2214
  msgstr ""
2215
 
2216
- #: languages/vue.php:428
2217
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
2218
  msgstr ""
2219
 
2220
- #: languages/vue.php:431
2221
  msgid "MonsterInsights Addons"
2222
  msgstr ""
2223
 
2224
- #: languages/vue.php:434
2225
  msgid "Search Addons"
2226
  msgstr ""
2227
 
2228
- #: languages/vue.php:438
2229
  msgid "Yes (recommended) %s- Get the latest features, bugfixes, and security updates as they are released.%s"
2230
  msgstr ""
2231
 
2232
- #: languages/vue.php:442
2233
  msgid "Minor only %s- Get bugfixes and security updates, but not major features.%s"
2234
  msgstr ""
2235
 
2236
- #: languages/vue.php:446
2237
  msgid "None %s- Manually update everything.%s"
2238
  msgstr ""
2239
 
2240
- #: languages/vue.php:449
2241
  msgid "License Key"
2242
  msgstr ""
2243
 
2244
- #: languages/vue.php:452
2245
  msgid "Google Authentication"
2246
  msgstr ""
2247
 
2248
- #: languages/vue.php:455
2249
  msgid "Connect Google Analytics + WordPress"
2250
  msgstr ""
2251
 
2252
- #: languages/vue.php:458
2253
  msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
2254
  msgstr ""
2255
 
2256
- #: languages/vue.php:462
2257
  msgid "Automatic Updates"
2258
  msgstr ""
2259
 
2260
- #: languages/vue.php:465
2261
  msgid "Setup Wizard"
2262
  msgstr ""
2263
 
2264
- #: languages/vue.php:468
2265
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
2266
  msgstr ""
2267
 
2268
- #: languages/vue.php:471
2269
  msgid "Launch Setup Wizard"
2270
  msgstr ""
2271
 
2272
- #: languages/vue.php:474
2273
  msgid "Path (example: %s)"
2274
  msgstr ""
2275
 
2276
- #: languages/vue.php:477
2277
  msgid "Path has to start with a / and have no spaces"
2278
  msgstr ""
2279
 
2280
- #: languages/vue.php:480
2281
  msgid "Label (example: %s)"
2282
  msgstr ""
2283
 
2284
- #: languages/vue.php:483
2285
  msgid "Label can't contain any spaces"
2286
  msgstr ""
2287
 
2288
- #: languages/vue.php:486
2289
  msgid "Affiliate Links"
2290
  msgstr ""
2291
 
2292
- #: languages/vue.php:489
2293
  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 %shere%s."
2294
  msgstr ""
2295
 
2296
- #: languages/vue.php:492
2297
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
2298
  msgstr ""
2299
 
2300
- #: languages/vue.php:495
2301
  msgid "Demographics"
2302
  msgstr ""
2303
 
2304
- #: languages/vue.php:498
2305
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
2306
  msgstr ""
2307
 
2308
- #: languages/vue.php:501
2309
  msgid "Anonymize IP Addresses"
2310
  msgstr ""
2311
 
2312
- #: languages/vue.php:504
2313
  msgid "Link Attribution"
2314
  msgstr ""
2315
 
2316
- #: languages/vue.php:507
2317
  msgid "Enable Enhanced Link Attribution"
2318
  msgstr ""
2319
 
2320
- #: languages/vue.php:510
2321
  msgid "Enable Anchor Tracking"
2322
  msgstr ""
2323
 
2324
- #: languages/vue.php:513
2325
  msgid "Enable allowAnchor"
2326
  msgstr ""
2327
 
2328
- #: languages/vue.php:516
2329
  msgid "Enable allowLinker"
2330
  msgstr ""
2331
 
2332
- #: languages/vue.php:519
2333
  msgid "Enable Tag Links in RSS"
2334
  msgstr ""
2335
 
2336
- #: languages/vue.php:522
2337
  msgid "File Downloads"
2338
  msgstr ""
2339
 
2340
- #: languages/vue.php:525
2341
  msgid "Extensions of Files to Track as Downloads"
2342
  msgstr ""
2343
 
2344
- #: languages/vue.php:528
2345
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
2346
  msgstr ""
2347
 
2348
- #: languages/vue.php:531
2349
  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 %sknowledge base%s. For more information about Remarketing, we refer you to %sGoogle's documentation%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."
2350
  msgstr ""
2351
 
2352
- #: languages/vue.php:534
2353
  msgid "This adds %sanonymizeIp%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."
2354
  msgstr ""
2355
 
2356
- #: languages/vue.php:537
2357
  msgid "Add %sEnhanced Link Attribution%s to your tracking code."
2358
  msgstr ""
2359
 
2360
- #: languages/vue.php:540
2361
  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."
2362
  msgstr ""
2363
 
2364
- #: languages/vue.php:543
2365
  msgid "This adds %sallowAnchor%s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
2366
  msgstr ""
2367
 
2368
- #: languages/vue.php:546
2369
  msgid "Enabling %scross-domain tracking (additional setup required)%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."
2370
  msgstr ""
2371
 
2372
- #: languages/vue.php:549
2373
  msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %shelp page%s for info on how to enable this feature in FeedBurner."
2374
  msgstr ""
2375
 
2376
- #: languages/vue.php:552
2377
  msgid "Add domain"
2378
  msgstr ""
2379
 
2380
- #: languages/vue.php:555
2381
  msgid "Domain (example: %s)"
2382
  msgstr ""
2383
 
2384
- #: languages/vue.php:558
2385
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
2386
  msgstr ""
2387
 
2388
- #: languages/vue.php:561
2389
  msgid "Cross Domain Tracking"
2390
  msgstr ""
2391
 
2392
- #: languages/vue.php:564
2393
  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 %sknowledge base%s."
2394
  msgstr ""
2395
 
2396
- #: languages/vue.php:567
2397
  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 %sGeneral%s tab."
2398
  msgstr ""
2399
 
2400
- #: languages/vue.php:570
2401
  msgid "Permissions"
2402
  msgstr ""
2403
 
2404
- #: languages/vue.php:573
2405
  msgid "Allow These User Roles to See Reports"
2406
  msgstr ""
2407
 
2408
- #: languages/vue.php:576
2409
  msgid "Users that have at least one of these roles will be able to view the reports."
2410
  msgstr ""
2411
 
2412
- #: languages/vue.php:579
2413
  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."
2414
  msgstr ""
2415
 
2416
- #: languages/vue.php:582
2417
  msgid "Allow These User Roles to Save Settings"
2418
  msgstr ""
2419
 
2420
- #: languages/vue.php:585
2421
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
2422
  msgstr ""
2423
 
2424
- #: languages/vue.php:588
2425
  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."
2426
  msgstr ""
2427
 
2428
- #: languages/vue.php:591
2429
  msgid "Exclude These User Roles From Tracking"
2430
  msgstr ""
2431
 
2432
- #: languages/vue.php:594
2433
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
2434
  msgstr ""
2435
 
2436
- #: languages/vue.php:597
2437
  msgid "Performance"
2438
  msgstr ""
2439
 
2440
- #: languages/vue.php:600
2441
  msgid "Custom code"
2442
  msgstr ""
2443
 
2444
- #: languages/vue.php:603
2445
  msgid "Not for the average user: this allows you to add a line of code, to be added before the %spageview is sent%s."
2446
  msgstr ""
2447
 
2448
- #: languages/vue.php:609
2449
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
2450
  msgstr ""
2451
 
2452
- #: languages/vue.php:612
2453
  msgid "Hide Admin Bar Reports"
2454
  msgstr ""
2455
 
2456
- #: languages/vue.php:615
2457
  msgid "Enabled %s- Show reports and dashboard widget.%s"
2458
  msgstr ""
2459
 
2460
- #: languages/vue.php:618
2461
  msgid "Dashboard Widget Only %s- Disable reports, but show dashboard widget.%s"
2462
  msgstr ""
2463
 
2464
- #: languages/vue.php:621
2465
  msgid "Disabled %s- Hide reports and dashboard widget.%s"
2466
  msgstr ""
2467
 
2468
- #: languages/vue.php:624
2469
  msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visit, so you can analyze and optimize it for higher conversions."
2470
  msgstr ""
2471
 
2472
- #: languages/vue.php:627
2473
  msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
2474
  msgstr ""
2475
 
2476
- #: languages/vue.php:630
2477
  msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
2478
  msgstr ""
2479
 
2480
- #: languages/vue.php:633
2481
  msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
2482
  msgstr ""
2483
 
2484
- #: languages/vue.php:636
2485
  msgid "Yup, we know a thing or two about building awesome products that customer love."
2486
  msgstr ""
2487
 
2488
- #: languages/vue.php:639
2489
  msgid "The MonsterInsights Team: Syed, Chris, Jay, Mircea, Sunita and Basanta"
2490
  msgstr ""
2491
 
2492
- #: languages/vue.php:642
2493
  msgid "Import/Export"
2494
  msgstr ""
2495
 
2496
- #: languages/vue.php:645
2497
  msgid "Import"
2498
  msgstr ""
2499
 
2500
- #: languages/vue.php:648
2501
  msgid "Import settings from another MonsterInsights website."
2502
  msgstr ""
2503
 
2504
- #: languages/vue.php:651
2505
  msgid "Export"
2506
  msgstr ""
2507
 
2508
- #: languages/vue.php:654
2509
  msgid "Export settings to import into another MonsterInsights install."
2510
  msgstr ""
2511
 
2512
- #: languages/vue.php:657
2513
  msgid "Import Settings"
2514
  msgstr ""
2515
 
2516
- #: languages/vue.php:660
2517
  msgid "Export Settings"
2518
  msgstr ""
2519
 
2520
- #: languages/vue.php:663
2521
  msgid "Please choose a file to import"
2522
  msgstr ""
2523
 
2524
- #: languages/vue.php:666
2525
  msgid "Use the filepicker below to select the settings export file from another site."
2526
  msgstr ""
2527
 
2528
- #: languages/vue.php:669
2529
  msgid "Use the button below to export a file with your MonsterInsights settings."
2530
  msgstr ""
2531
 
2532
- #: languages/vue.php:672
2533
  msgid "Uploading file..."
2534
  msgstr ""
2535
 
2536
- #: languages/vue.php:675
2537
  msgid "File imported"
2538
  msgstr ""
2539
 
2540
- #: languages/vue.php:678
2541
  msgid "Settings successfully updated!"
2542
  msgstr ""
2543
 
2544
- #: languages/vue.php:681
2545
  msgid "Error importing settings"
2546
  msgstr ""
2547
 
2548
- #: languages/vue.php:684
2549
  msgid "Please choose a .json file generated by a MonsterInsights settings export."
2550
  msgstr ""
2551
 
2552
- #: languages/vue.php:687
2553
  msgid "Ok"
2554
  msgstr ""
2555
 
2556
- #: languages/vue.php:690
2557
  msgid "Custom Campaign Parameters"
2558
  msgstr ""
2559
 
2560
- #: languages/vue.php:693
2561
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
2562
  msgstr ""
2563
 
2564
- #: languages/vue.php:696
2565
  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."
2566
  msgstr ""
2567
 
2568
- #: languages/vue.php:699
2569
  msgid "Website URL %s"
2570
  msgstr ""
2571
 
2572
- #: languages/vue.php:702
2573
  msgid "The full website URL (e.g. %s %s%s)"
2574
  msgstr ""
2575
 
2576
- #: languages/vue.php:705
2577
  msgid "Campaign Source %s"
2578
  msgstr ""
2579
 
2580
- #: languages/vue.php:708
2581
  msgid "Enter a referrer (e.g. %sfacebook, newsletter, google%s)"
2582
  msgstr ""
2583
 
2584
- #: languages/vue.php:711
2585
  msgid "Enter a marketing medium (e.g. %scpc, banner, email%s)"
2586
  msgstr ""
2587
 
2588
- #: languages/vue.php:714
2589
  msgid "Enter a name to easily identify (e.g. %sspring_sale%s)"
2590
  msgstr ""
2591
 
2592
- #: languages/vue.php:717
2593
  msgid "Enter the paid keyword"
2594
  msgstr ""
2595
 
2596
- #: languages/vue.php:720
2597
  msgid "Enter something to differentiate ads"
2598
  msgstr ""
2599
 
2600
- #: languages/vue.php:723
2601
  msgid "Use Fragment"
2602
  msgstr ""
2603
 
2604
- #: languages/vue.php:726
2605
  msgid "Set the parameters in the fragment portion of the URL %s(not recommended)%s"
2606
  msgstr ""
2607
 
2608
- #: languages/vue.php:729
2609
  msgid "URL to use"
2610
  msgstr ""
2611
 
2612
- #: languages/vue.php:732
2613
  msgid "Updates automatically"
2614
  msgstr ""
2615
 
2616
- #: languages/vue.php:735
2617
  msgid "Copy to clipboard"
2618
  msgstr ""
2619
 
2620
- #: languages/vue.php:738
2621
  msgid "More Information & Examples"
2622
  msgstr ""
2623
 
2624
- #: languages/vue.php:741
2625
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
2626
  msgstr ""
2627
 
2628
- #: languages/vue.php:744
2629
  msgid "Campaign Source"
2630
  msgstr ""
2631
 
2632
- #: languages/vue.php:747
2633
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
2634
  msgstr ""
2635
 
2636
- #: languages/vue.php:750
2637
  msgid "Campaign Medium"
2638
  msgstr ""
2639
 
2640
- #: languages/vue.php:753
2641
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
2642
  msgstr ""
2643
 
2644
- #: languages/vue.php:756
2645
  msgid "Campaign Name"
2646
  msgstr ""
2647
 
2648
- #: languages/vue.php:759
2649
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
2650
  msgstr ""
2651
 
2652
- #: languages/vue.php:762
2653
  msgid "Campaign Term"
2654
  msgstr ""
2655
 
2656
- #: languages/vue.php:765
2657
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
2658
  msgstr ""
2659
 
2660
- #: languages/vue.php:768
2661
  msgid "Campaign Content"
2662
  msgstr ""
2663
 
2664
- #: languages/vue.php:771
2665
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
2666
  msgstr ""
2667
 
2668
- #: languages/vue.php:774
2669
  msgid "Example: %s"
2670
  msgstr ""
2671
 
2672
- #: languages/vue.php:777
2673
  msgid "Examples: %s"
2674
  msgstr ""
2675
 
2676
- #: languages/vue.php:780
2677
  msgid "About Campaigns"
2678
  msgstr ""
2679
 
2680
- #: languages/vue.php:783
2681
  msgid "About Custom Campaigns"
2682
  msgstr ""
2683
 
2684
- #: languages/vue.php:786
2685
  msgid "Best practices for creating Custom Campaigns"
2686
  msgstr ""
2687
 
2688
- #: languages/vue.php:789
2689
  msgid "About the Referral Traffic report"
2690
  msgstr ""
2691
 
2692
- #: languages/vue.php:792
2693
  msgid "About traffic source dimensions"
2694
  msgstr ""
2695
 
2696
- #: languages/vue.php:795
2697
  msgid "AdWords Auto-Tagging"
2698
  msgstr ""
2699
 
2700
- #: languages/vue.php:798
2701
  msgid "Additional Information"
2702
  msgstr ""
2703
 
2704
- #: languages/vue.php:801
2705
  msgid "GDPR Guide"
2706
  msgstr ""
2707
 
2708
- #: languages/vue.php:804
2709
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help MonsterInsights users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
2710
  msgstr ""
2711
 
2712
- #: languages/vue.php:807
2713
  msgid "How to install and activate MonsterInsights addons"
2714
  msgstr ""
2715
 
2716
- #: languages/vue.php:810
2717
  msgid "The process for installing and activating addons is quick and easy after you install the MonsterInsights plugin. In this guide we’ll walk you through the process, step by step."
2718
  msgstr ""
2719
 
2720
- #: languages/vue.php:813
2721
  msgid "Enabling eCommerce Tracking and Reports"
2722
  msgstr ""
2723
 
2724
- #: languages/vue.php:816
2725
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with MonsterInsights? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
2726
  msgstr ""
2727
 
2728
- #: languages/vue.php:819
2729
  msgid "Read Documentation"
2730
  msgstr ""
2731
 
2732
- #: languages/vue.php:822
2733
  msgid "Getting Started with MonsterInsights"
2734
  msgstr ""
2735
 
2736
- #: languages/vue.php:825
2737
  msgid "MonsterInsights is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard."
2738
  msgstr ""
2739
 
2740
- #: languages/vue.php:828
2741
  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."
2742
  msgstr ""
2743
 
2744
- #: languages/vue.php:831
2745
  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!."
2746
  msgstr ""
2747
 
2748
- #: languages/vue.php:834
2749
  msgid "Launch the wizard!"
2750
  msgstr ""
2751
 
2752
- #: languages/vue.php:837
2753
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
2754
  msgstr ""
2755
 
2756
- #: languages/vue.php:840
2757
  msgid "Thanks for being a loyal MonsterInsights Lite user. %sUpgrade to MonsterInsights Pro%s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
2758
  msgstr ""
2759
 
2760
- #: languages/vue.php:843
2761
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
2762
  msgstr ""
2763
 
2764
- #: languages/vue.php:846
2765
  msgid "See your website analytics reports inside the WordPress dashboard"
2766
  msgstr ""
2767
 
2768
- #: languages/vue.php:849
2769
  msgid "Get real-time stats right inside WordPress"
2770
  msgstr ""
2771
 
2772
- #: languages/vue.php:852
2773
  msgid "1-click Google Analytics Enhanced Ecommerce tracking"
2774
  msgstr ""
2775
 
2776
- #: languages/vue.php:855
2777
  msgid "Get detailed stats for each post and page."
2778
  msgstr ""
2779
 
2780
- #: languages/vue.php:858
2781
  msgid "Automatically track clicks on your affiliate links and ads."
2782
  msgstr ""
2783
 
2784
- #: languages/vue.php:861
2785
  msgid "Make Google Analytics GDPR compliant automatically"
2786
  msgstr ""
2787
 
2788
- #: languages/vue.php:864
2789
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
2790
  msgstr ""
2791
 
2792
- #: languages/vue.php:867
2793
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
2794
  msgstr ""
2795
 
2796
- #: languages/vue.php:870
2797
  msgid "More advanced features"
2798
  msgstr ""
2799
 
2800
- #: languages/vue.php:873
2801
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
2802
  msgstr ""
2803
 
2804
- #: languages/vue.php:876
2805
  msgid "Bonus: MonsterInsights Lite users get %s50%% off regular price%s, automatically applied at checkout."
2806
  msgstr ""
2807
 
2808
- #: languages/vue.php:879
2809
  msgid "How to Connect to Google Analytics"
2810
  msgstr ""
2811
 
2812
- #: languages/vue.php:882
2813
  msgid "After you install MonsterInsights, you’ll need to connect your WordPress site with your Google Analytics account. MonsterInsights makes the process easy, with no coding required."
2814
  msgstr ""
2815
 
2816
- #: languages/vue.php:885
2817
  msgid "Guide and Checklist for Advanced Insights"
2818
  msgstr ""
2819
 
2820
- #: languages/vue.php:888
2821
  msgid "Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with MonsterInsights’ advanced tracking."
2822
  msgstr ""
2823
 
2824
- #: languages/vue.php:891
2825
  msgid "WordPress Admin Area Reports"
2826
  msgstr ""
2827
 
2828
- #: languages/vue.php:894
2829
  msgid "Standard Reports"
2830
  msgstr ""
2831
 
2832
- #: languages/vue.php:897
2833
  msgid "Overview Reports for the last 30 days."
2834
  msgstr ""
2835
 
2836
- #: languages/vue.php:900
2837
  msgid "Advanced Reports"
2838
  msgstr ""
2839
 
2840
- #: languages/vue.php:903
2841
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
2842
  msgstr ""
2843
 
2844
- #: languages/vue.php:906
2845
  msgid "Dashboard Widget"
2846
  msgstr ""
2847
 
2848
- #: languages/vue.php:909
2849
  msgid "Basic Widget"
2850
  msgstr ""
2851
 
2852
- #: languages/vue.php:912
2853
  msgid "Overview Report Synopsis"
2854
  msgstr ""
2855
 
2856
- #: languages/vue.php:915
2857
  msgid "Advanced Dashboard Widget"
2858
  msgstr ""
2859
 
2860
- #: languages/vue.php:918
2861
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
2862
  msgstr ""
2863
 
2864
- #: languages/vue.php:921
2865
  msgid "Publisher Reports"
2866
  msgstr ""
2867
 
2868
- #: languages/vue.php:924
2869
  msgid "Advanced Publisher Reports & Tracking"
2870
  msgstr ""
2871
 
2872
- #: languages/vue.php:927
2873
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
2874
  msgstr ""
2875
 
2876
- #: languages/vue.php:930
2877
  msgid "Custom Dimensions"
2878
  msgstr ""
2879
 
2880
- #: languages/vue.php:933
2881
  msgid "Not Available"
2882
  msgstr ""
2883
 
2884
- #: languages/vue.php:936
2885
  msgid "Complete Custom Dimensions Tracking"
2886
  msgstr ""
2887
 
2888
- #: languages/vue.php:939
2889
  msgid "Track and measure by the Author, Post Type, Category, Tags, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
2890
  msgstr ""
2891
 
2892
- #: languages/vue.php:945
2893
  msgid "Limited support"
2894
  msgstr ""
2895
 
2896
- #: languages/vue.php:948
2897
  msgid "Priority Support"
2898
  msgstr ""
2899
 
2900
- #: languages/vue.php:951
2901
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
2902
  msgstr ""
2903
 
2904
- #: languages/vue.php:954
2905
  msgid "Feature"
2906
  msgstr ""
2907
 
2908
- #: languages/vue.php:957
2909
  msgid "Lite"
2910
  msgstr ""
2911
 
2912
- #: languages/vue.php:960
2913
  msgid "Pro"
2914
  msgstr ""
2915
 
2916
- #: languages/vue.php:963
2917
  msgid "Universal Tracking"
2918
  msgstr ""
2919
 
2920
- #: languages/vue.php:966
2921
  msgid "Included"
2922
  msgstr ""
2923
 
2924
- #: languages/vue.php:969
2925
  msgid "Custom Google Analytics Link Tracking"
2926
  msgstr ""
2927
 
2928
- #: languages/vue.php:972
2929
  msgid "Standard Tracking"
2930
  msgstr ""
2931
 
2932
- #: languages/vue.php:975
2933
  msgid "Advanced Tracking"
2934
  msgstr ""
2935
 
2936
- #: languages/vue.php:978
2937
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
2938
  msgstr ""
2939
 
2940
- #: languages/vue.php:981
2941
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
2942
  msgstr ""
2943
 
2944
- #: languages/vue.php:984
2945
  msgid "No-Code-Needed Tracking Features"
2946
  msgstr ""
2947
 
2948
- #: languages/vue.php:987
2949
  msgid "Basic Tracking Options"
2950
  msgstr ""
2951
 
2952
- #: languages/vue.php:990
2953
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
2954
  msgstr ""
2955
 
2956
- #: languages/vue.php:993
2957
  msgid "Advanced Tracking Options"
2958
  msgstr ""
2959
 
2960
- #: languages/vue.php:996
2961
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
2962
  msgstr ""
2963
 
2964
- #: languages/vue.php:999
2965
  msgid "eCommerce Tracking"
2966
  msgstr ""
2967
 
2968
- #: languages/vue.php:1002
2969
  msgid "One-click Complete eCommerce tracking"
2970
  msgstr ""
2971
 
2972
- #: languages/vue.php:1005
2973
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
2974
  msgstr ""
2975
 
2976
- #: languages/vue.php:1008
2977
  msgid "Forms Tracking"
2978
  msgstr ""
2979
 
2980
- #: languages/vue.php:1011
2981
  msgid "One-click Form Events Tracking"
2982
  msgstr ""
2983
 
2984
- #: languages/vue.php:1014
2985
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
2986
  msgstr ""
2987
 
2988
- #: languages/vue.php:1017
2989
  msgid "MonsterInsights Recommends WPForms"
2990
  msgstr ""
2991
 
2992
- #: languages/vue.php:1020
2993
  msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
2994
  msgstr ""
2995
 
2996
- #: languages/vue.php:1023
2997
  msgid "Used on over 1,000,000 websites!"
2998
  msgstr ""
2999
 
3000
- #: languages/vue.php:1026
3001
  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!"
3002
  msgstr ""
3003
 
3004
- #: languages/vue.php:1029
3005
  msgid "Skip this Step"
3006
  msgstr ""
3007
 
3008
- #: languages/vue.php:1032
3009
  msgid "Continue & Install WPForms"
3010
  msgstr ""
3011
 
3012
- #: languages/vue.php:1035
3013
  msgid "Installing..."
3014
  msgstr ""
3015
 
3016
- #: languages/vue.php:1038
3017
  msgid "Awesome, You're All Set!"
3018
  msgstr ""
3019
 
3020
- #: languages/vue.php:1041
3021
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
3022
  msgstr ""
3023
 
3024
- #: languages/vue.php:1044
3025
  msgid "%sPlease Note:%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."
3026
  msgstr ""
3027
 
3028
- #: languages/vue.php:1047
3029
  msgid "%sSubscribe to the MonsterInsights blog%s for tips on how to get more traffic and grow your business."
3030
  msgstr ""
3031
 
3032
- #: languages/vue.php:1050
3033
  msgid "Finish Setup & Exit Wizard"
3034
  msgstr ""
3035
 
3036
- #: languages/vue.php:1053
3037
  msgid "Checking your website..."
3038
  msgstr ""
3039
 
3040
- #: languages/vue.php:1056
3041
  msgid "Recommended Settings"
3042
  msgstr ""
3043
 
3044
- #: languages/vue.php:1059
3045
  msgid "MonsterInsights recommends the following settings based on your configuration."
3046
  msgstr ""
3047
 
3048
- #: languages/vue.php:1062
3049
  msgid "Events Tracking"
3050
  msgstr ""
3051
 
3052
- #: languages/vue.php:1065
3053
  msgid "Must have for all click tracking on site."
3054
  msgstr ""
3055
 
3056
- #: languages/vue.php:1068
3057
  msgid "MonsterInsights uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
3058
  msgstr ""
3059
 
3060
- #: languages/vue.php:1071
3061
  msgid "Enhanced Link Attribution"
3062
  msgstr ""
3063
 
3064
- #: languages/vue.php:1074
3065
  msgid "Improves the accuracy of your In-Page Analytics."
3066
  msgstr ""
3067
 
3068
- #: languages/vue.php:1077
3069
  msgid "MonsterInsights will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
3070
  msgstr ""
3071
 
3072
- #: languages/vue.php:1080
3073
  msgid "Install Updates Automatically"
3074
  msgstr ""
3075
 
3076
- #: languages/vue.php:1083
3077
  msgid "Get the latest features, bug fixes, and security updates as they are released."
3078
  msgstr ""
3079
 
3080
- #: languages/vue.php:1086
3081
  msgid "To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
3082
  msgstr ""
3083
 
3084
- #: languages/vue.php:1089
3085
  msgid "File Download Tracking"
3086
  msgstr ""
3087
 
3088
- #: languages/vue.php:1092
3089
  msgid "Helps you see file downloads data."
3090
  msgstr ""
3091
 
3092
- #: languages/vue.php:1095
3093
  msgid "MonsterInsights will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
3094
  msgstr ""
3095
 
3096
- #: languages/vue.php:1098
3097
  msgid "Helps you increase affiliate revenue."
3098
  msgstr ""
3099
 
3100
- #: languages/vue.php:1101
3101
  msgid "MonsterInsights will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
3102
  msgstr ""
3103
 
3104
- #: languages/vue.php:1104
3105
  msgid "Affiliate Link Tracking"
3106
  msgstr ""
3107
 
3108
- #: languages/vue.php:1107
3109
  msgid "Who Can See Reports"
3110
  msgstr ""
3111
 
3112
- #: languages/vue.php:1110
3113
  msgid "These user roles will be able to access MonsterInsights's reports in the WordPress admin area."
3114
  msgstr ""
3115
 
3116
- #: languages/vue.php:1113
3117
  msgid "Save and continue"
3118
  msgstr ""
3119
 
3120
- #: languages/vue.php:1116
3121
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
3122
  msgstr ""
3123
 
3124
- #: languages/vue.php:1119
3125
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
3126
  msgstr ""
3127
 
3128
- #: languages/vue.php:1122
3129
  msgid "Connect MonsterInsights to Your Website"
3130
  msgstr ""
3131
 
3132
- #: languages/vue.php:1125
3133
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
3134
  msgstr ""
3135
 
3136
- #: languages/vue.php:1128
3137
  msgid "vs. Previous Day"
3138
  msgstr ""
3139
 
3140
- #: languages/vue.php:1131
3141
  msgid "No change"
3142
  msgstr ""
3143
 
3144
- #: languages/vue.php:1134
3145
  msgid "Show"
3146
  msgstr ""
3147
 
3148
- #: languages/vue.php:1137
3149
  msgid "Right Now"
3150
  msgstr ""
3151
 
3152
- #: languages/vue.php:1140
3153
  msgid "Active users on site"
3154
  msgstr ""
3155
 
3156
- #: languages/vue.php:1143
3157
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
3158
  msgstr ""
3159
 
3160
- #: languages/vue.php:1146
3161
  msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged in site administrators, certain mobile users, and users who match a Google Analytics filter."
3162
  msgstr ""
3163
 
3164
- #: languages/vue.php:1149
3165
  msgid "The real-time report automatically updates approximately every 60 seconds."
3166
  msgstr ""
3167
 
3168
- #: languages/vue.php:1152
3169
  msgid "The real-time report was last updated %s seconds ago."
3170
  msgstr ""
3171
 
3172
- #: languages/vue.php:1155
3173
  msgid "The latest data will be automatically shown on this page when it becomes available."
3174
  msgstr ""
3175
 
3176
- #: languages/vue.php:1158
3177
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
3178
  msgstr ""
3179
 
3180
- #: languages/vue.php:1161
3181
  msgid "Pageviews Per Minute"
3182
  msgstr ""
3183
 
3184
- #: languages/vue.php:1164
3185
  msgid "Top Pages"
3186
  msgstr ""
3187
 
3188
- #: languages/vue.php:1167
3189
  msgid "No pageviews currently."
3190
  msgstr ""
3191
 
3192
- #: languages/vue.php:1170
3193
  msgid "Page"
3194
  msgstr ""
3195
 
3196
- #: languages/vue.php:1173
3197
  msgid "Pageview Count"
3198
  msgstr ""
3199
 
3200
- #: languages/vue.php:1176
3201
  msgid "Percent of Total"
3202
  msgstr ""
3203
 
3204
- #: languages/vue.php:1179
3205
  msgid "This is the number of active users currently on your site."
3206
  msgstr ""
3207
 
3208
- #: languages/vue.php:1182
3209
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
3210
  msgstr ""
3211
 
3212
- #: languages/vue.php:1185
3213
  msgid "This list shows the top pages users are currently viewing on your site."
3214
  msgstr ""
3215
 
3216
- #: languages/vue.php:1188
3217
  msgid "View All Real-Time Pageviews"
3218
  msgstr ""
3219
 
3220
- #: languages/vue.php:1191
3221
  msgid "View All Real-Time Traffic Sources"
3222
  msgstr ""
3223
 
3224
- #: languages/vue.php:1194
3225
  msgid "View All Real-Time Traffic by Country"
3226
  msgstr ""
3227
 
3228
- #: languages/vue.php:1197
3229
  msgid "View All Real-Time Traffic by City"
3230
  msgstr ""
3231
 
3232
- #: languages/vue.php:1200
3233
  msgid "Welcome to MonsterInsights!"
3234
  msgstr ""
3235
 
3236
- #: languages/vue.php:1203
3237
  msgid "Let's get you set up."
3238
  msgstr ""
3239
 
3240
- #: languages/vue.php:1206
3241
  msgid "Save and Continue"
3242
  msgstr ""
3243
 
3244
- #: languages/vue.php:1209
3245
  msgid "Which category best describes your website?"
3246
  msgstr ""
3247
 
3248
- #: languages/vue.php:1212
3249
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
3250
  msgstr ""
3251
 
3252
- #: languages/vue.php:1215
3253
  msgid "Business Website"
3254
  msgstr ""
3255
 
3256
- #: languages/vue.php:1218
3257
  msgid "Publisher %s(Blog)%s"
3258
  msgstr ""
3259
 
3260
- #: languages/vue.php:1221
3261
  msgid "Ecommerce"
3262
  msgstr ""
3263
 
3264
- #: languages/vue.php:1224
3265
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
3266
  msgstr ""
3267
 
3268
- #: languages/vue.php:1227
3269
  msgid "Google Optimize"
3270
  msgstr ""
3271
 
3272
- #: languages/vue.php:1230
3273
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
3274
  msgstr ""
3275
 
3276
- #: languages/vue.php:1233
3277
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
3278
  msgstr ""
3279
 
3280
- #: languages/vue.php:1236
3281
  msgid "Your license key for MonsterInsights has expired. %sPlease click here to renew your license key.%s"
3282
  msgstr ""
3283
 
3284
- #: languages/vue.php:1247
3285
  #: lite/includes/admin/helpers.php:83
3286
  msgid "Upgrade to MonsterInsights Pro"
3287
  msgstr ""
3288
 
3289
- #: languages/vue.php:1250
3290
  msgid "Show in widget mode"
3291
  msgstr ""
3292
 
3293
- #: languages/vue.php:1253
3294
  msgid "Show in full-width mode"
3295
  msgstr ""
3296
 
3297
- #: languages/vue.php:1256
3298
  msgid "Last 30 Days Insights for:"
3299
  msgstr ""
3300
 
3301
- #: languages/vue.php:1259
3302
  msgid "Your Website"
3303
  msgstr ""
3304
 
3305
- #: languages/vue.php:1262
3306
  msgid "Avg. Duration"
3307
  msgstr ""
3308
 
3309
- #: languages/vue.php:1265
3310
  msgid "More data is available"
3311
  msgstr ""
3312
 
3313
- #: languages/vue.php:1268
3314
  msgid "Want to see page-specific stats?"
3315
  msgstr ""
3316
 
3317
- #: languages/vue.php:1271
3318
  msgid "Can't load settings. Error: %s, %s"
3319
  msgstr ""
3320
 
3321
- #: languages/vue.php:1274
3322
  msgid "You appear to be offline."
3323
  msgstr ""
3324
 
3325
- #: languages/vue.php:1277
3326
  msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %sLearn More%s"
3327
  msgstr ""
3328
 
3329
- #: languages/vue.php:1280
3330
  msgid "In order for the MonsterInsights Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %s%s Plugin%s | %sLearn More%s"
3331
  msgstr ""
3332
 
3333
- #: languages/vue.php:1283
3334
  msgid "In order for the MonsterInsights Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %sLearn More%s"
3335
  msgstr ""
3336
 
3337
- #: languages/vue.php:1286
3338
  msgid "In order for the MonsterInsights Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %s%s Plugin%s | %sLearn More%s"
3339
  msgstr ""
3340
 
3341
- #: languages/vue.php:1289
3342
  msgid "Recommended Addons"
3343
  msgstr ""
3344
 
3345
- #: languages/vue.php:1292
3346
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
3347
  msgstr ""
3348
 
3349
- #: languages/vue.php:1295
3350
  msgid "Other Addons"
3351
  msgstr ""
3352
 
3353
- #: languages/vue.php:1298
3354
  msgid "View all MonsterInsights addons"
3355
  msgstr ""
3356
 
3357
- #: languages/vue.php:1301
3358
  msgid "Deactivating..."
3359
  msgstr ""
3360
 
3361
- #: languages/vue.php:1304
3362
  msgid "Deactivate"
3363
  msgstr ""
3364
 
3365
- #: languages/vue.php:1307
3366
  msgid "Status: %s"
3367
  msgstr ""
3368
 
3369
- #: languages/vue.php:1310
3370
  msgid "Not Installed"
3371
  msgstr ""
3372
 
3373
- #: languages/vue.php:1313
3374
  msgid "Network Active"
3375
  msgstr ""
3376
 
3377
- #: languages/vue.php:1316
3378
  msgid "Active"
3379
  msgstr ""
3380
 
3381
- #: languages/vue.php:1319
3382
  msgid "Inactive"
3383
  msgstr ""
3384
 
3385
- #: languages/vue.php:1325
3386
  msgid "Activating..."
3387
  msgstr ""
3388
 
3389
- #: languages/vue.php:1328
3390
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
3391
  msgstr ""
3392
 
3393
- #: languages/vue.php:1331
3394
  msgid "No addons found."
3395
  msgstr ""
3396
 
3397
- #: languages/vue.php:1334
3398
  msgid "Refresh Addons"
3399
  msgstr ""
3400
 
3401
- #: languages/vue.php:1337
3402
  msgid "Refreshing Addons"
3403
  msgstr ""
3404
 
3405
- #: languages/vue.php:1340
3406
  msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %sreceive 50%% off%s, automatically applied at checkout!"
3407
  msgstr ""
3408
 
3409
- #: languages/vue.php:1343
3410
  msgid "See All Your Important Store Metrics in One Place"
3411
  msgstr ""
3412
 
3413
- #: languages/vue.php:1346
3414
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
3415
  msgstr ""
3416
 
3417
- #: languages/vue.php:1349
3418
  msgid "ONE-CLICK INTEGRATIONS"
3419
  msgstr ""
3420
 
3421
- #: languages/vue.php:1352
3422
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
3423
  msgstr ""
3424
 
3425
- #: languages/vue.php:1355
3426
  msgid "MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard."
3427
  msgstr ""
3428
 
3429
- #: languages/vue.php:1358
3430
  msgid "Upgrade to Pro and unlock addons and other great features. %sSave 50%% automatically!%s"
3431
  msgstr ""
3432
 
3433
- #: languages/vue.php:1361
3434
  msgid "Add your MonsterInsights license key from the email receipt or account area. %sRetrieve your license key%s."
3435
  msgstr ""
3436
 
3437
- #: languages/vue.php:1365
3438
  msgid "Miscellaneous"
3439
  msgstr ""
3440
 
3441
- #: languages/vue.php:1369
3442
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
3443
  msgstr ""
3444
 
3445
- #: languages/vue.php:1373
3446
  msgid "Hide Announcements"
3447
  msgstr ""
3448
 
3449
- #: languages/vue.php:1376
3450
  msgid "Show Overview Reports"
3451
  msgstr ""
3452
 
3453
- #: languages/vue.php:1379
3454
  msgid "Show Publishers Reports"
3455
  msgstr ""
3456
 
3457
- #: languages/vue.php:1382
3458
  msgid "Show eCommerce Reports"
3459
  msgstr ""
3460
 
3461
- #: languages/vue.php:1385
3462
  msgid "Available in PRO version"
3463
  msgstr ""
3464
 
3465
- #: languages/vue.php:1388
3466
  msgid "No options available"
3467
  msgstr ""
3468
 
3469
- #: languages/vue.php:1391
3470
  msgid "Reset to default"
3471
  msgstr ""
3472
 
3473
- #: languages/vue.php:1394
3474
  msgid "The value entered does not match the required format"
3475
  msgstr ""
3476
 
3477
- #: languages/vue.php:1397
3478
  msgid "%s can't be empty."
3479
  msgstr ""
3480
 
3481
- #: languages/vue.php:1400
3482
  msgid "Duplicate values are not allowed."
3483
  msgstr ""
3484
 
3485
- #: languages/vue.php:1403
3486
  msgid "Add Another Link Path"
3487
  msgstr ""
3488
 
3489
- #: languages/vue.php:1406
3490
  msgid "Remove row"
3491
  msgstr ""
3492
 
3493
- #: languages/vue.php:1409
3494
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
3495
  msgstr ""
3496
 
3497
- #: languages/vue.php:1412
3498
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!"
3499
  msgstr ""
3500
 
3501
- #: languages/vue.php:1415
3502
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
3503
  msgstr ""
3504
 
3505
- #: languages/vue.php:1418
3506
  msgid "Use coupon code %sLITEUPGRADE%s"
3507
  msgstr ""
3508
 
3509
- #: languages/vue.php:1421
3510
  msgid "Facebook Instant Articles"
3511
  msgstr ""
3512
 
3513
- #: languages/vue.php:1424
3514
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
3515
  msgstr ""
3516
 
3517
- #: languages/vue.php:1427
3518
  msgid "Scroll Tracking"
3519
  msgstr ""
3520
 
3521
- #: languages/vue.php:1430
3522
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
3523
  msgstr ""
3524
 
3525
- #: languages/vue.php:1433
3526
  msgid "Can't save settings. Error: %s, %s"
3527
  msgstr ""
3528
 
3529
- #: languages/vue.php:1436
3530
  msgid "You appear to be offline. Settings not saved."
3531
  msgstr ""
3532
 
3533
- #: languages/vue.php:1440
3534
  msgid "Authenticating"
3535
  msgstr ""
3536
 
3537
- #: languages/vue.php:1443
3538
  msgid "Re-Authenticating"
3539
  msgstr ""
3540
 
3541
- #: languages/vue.php:1446
3542
  msgid "Verifying Credentials"
3543
  msgstr ""
3544
 
3545
- #: languages/vue.php:1449
3546
  msgid "Your site is connected to MonsterInsights!"
3547
  msgstr ""
3548
 
3549
- #: languages/vue.php:1452
3550
  msgid "Deauthenticating"
3551
  msgstr ""
3552
 
3553
- #: languages/vue.php:1455
3554
  msgid "You've disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
3555
  msgstr ""
3556
 
3557
- #: languages/vue.php:1459
3558
  msgid "Connect MonsterInsights"
3559
  msgstr ""
3560
 
3561
- #: languages/vue.php:1462
3562
  msgid "Verify Credentials"
3563
  msgstr ""
3564
 
3565
- #: languages/vue.php:1465
3566
  msgid "Reconnect MonsterInsights"
3567
  msgstr ""
3568
 
3569
- #: languages/vue.php:1468
3570
  msgid "Website Profile"
3571
  msgstr ""
3572
 
3573
- #: languages/vue.php:1471
3574
  msgid "Active Profile"
3575
  msgstr ""
3576
 
3577
- #: languages/vue.php:1475
3578
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
3579
  msgstr ""
3580
 
3581
- #: languages/vue.php:1479
3582
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
3583
  msgstr ""
3584
 
3585
- #: languages/vue.php:1482
3586
  msgid "Manually enter your UA code"
3587
  msgstr ""
3588
 
3589
- #: languages/vue.php:1485
3590
  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."
3591
  msgstr ""
3592
 
3593
- #: languages/vue.php:1488
3594
  msgid "Or manually enter UA code (limited functionality)"
3595
  msgstr ""
3596
 
3597
- #: languages/vue.php:1491
3598
  msgid "Force Deauthenticate"
3599
  msgstr ""
3600
 
3601
- #: languages/vue.php:1494
3602
  msgid "Disconnect MonsterInsights"
3603
  msgstr ""
3604
 
3605
- #: languages/vue.php:1497
3606
  msgid "Can't load errors. Error: %s, %s"
3607
  msgstr ""
3608
 
3609
- #: languages/vue.php:1501
3610
  msgid "Google AMP"
3611
  msgstr ""
3612
 
3613
- #: languages/vue.php:1504
3614
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
3615
  msgstr ""
3616
 
3617
- #: languages/vue.php:1507
3618
  msgid "Upgrade"
3619
  msgstr ""
3620
 
3621
- #: languages/vue.php:1510
3622
  msgid ""
3623
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
3624
  " and other privacy regulations."
3625
  msgstr ""
3626
 
3627
- #: languages/vue.php:1514
3628
  msgid "EU Compliance"
3629
  msgstr ""
3630
 
3631
- #: languages/vue.php:1517
3632
  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."
3633
  msgstr ""
3634
 
3635
- #: languages/vue.php:1520
3636
  msgid "Usage Tracking"
3637
  msgstr ""
3638
 
3639
- #: languages/vue.php:1523
3640
  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."
3641
  msgstr ""
3642
 
3643
- #: languages/vue.php:1526
3644
  msgid "Allow usage tracking"
3645
  msgstr ""
3646
 
3647
- #: languages/vue.php:1529
3648
  msgid "Complete documentation on usage tracking is available %shere%s."
3649
  msgstr ""
3650
 
3651
- #: languages/vue.php:1532
3652
  msgid "Thank you for being a loyal MonsterInsights Lite user."
3653
  msgstr ""
3654
 
3655
- #: languages/vue.php:1535
3656
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
3657
  msgstr ""
3658
 
3659
- #: languages/vue.php:1538
3660
  msgid "Use coupon code %s to get 50%% off."
3661
  msgstr ""
3662
 
3663
- #: languages/vue.php:1541
3664
  msgid "Dashboard widget"
3665
  msgstr ""
3666
 
3667
- #: languages/vue.php:1544
3668
  msgid "Enhanced Ecommerce"
3669
  msgstr ""
3670
 
3671
- #: languages/vue.php:1547
3672
  msgid "Banner Ads"
3673
  msgstr ""
3674
 
3675
- #: languages/vue.php:1550
3676
  msgid "Author Tracking"
3677
  msgstr ""
3678
 
3679
- #: languages/vue.php:1553
3680
  msgid "Form Conversions"
3681
  msgstr ""
3682
 
3683
- #: languages/vue.php:1556
3684
  msgid "SEO Score Tracking"
3685
  msgstr ""
3686
 
3687
- #: languages/vue.php:1559
3688
  msgid "Ads Tracking"
3689
  msgstr ""
3690
 
3691
- #: languages/vue.php:1562
3692
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
3693
  msgstr ""
3694
 
3695
- #: languages/vue.php:1565
3696
  msgid "Can't deactivate the license. Error: %s, %s"
3697
  msgstr ""
3698
 
3699
- #: languages/vue.php:1568
3700
  msgid "Can't upgrade to PRO please try again. Error: %s, %s"
3701
  msgstr ""
3702
 
3703
- #: languages/vue.php:1571
3704
  msgid "Can't load license details. Error: %s, %s"
3705
  msgstr ""
3706
 
3707
- #: languages/vue.php:1574
3708
  msgid "Can't verify the license. Error: %s, %s"
3709
  msgstr ""
3710
 
3711
- #: languages/vue.php:1577
3712
  msgid "Can't validate the license. Error: %s, %s"
3713
  msgstr ""
3714
 
3715
- #: languages/vue.php:1580
3716
  msgid "Proceed"
3717
  msgstr ""
3718
 
3719
- #: languages/vue.php:1583
3720
  msgid "Please wait..."
3721
  msgstr ""
3722
 
3723
- #: languages/vue.php:1586
3724
  msgid "Connection Information"
3725
  msgstr ""
3726
 
3727
- #: languages/vue.php:1589
3728
  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."
3729
  msgstr ""
3730
 
3731
- #: languages/vue.php:1592
3732
  msgid "Hostname"
3733
  msgstr ""
3734
 
3735
- #: languages/vue.php:1595
3736
  msgid "FTP Username"
3737
  msgstr ""
3738
 
3739
- #: languages/vue.php:1598
3740
  msgid "FTP Password"
3741
  msgstr ""
3742
 
3743
- #: languages/vue.php:1601
3744
  msgid "This password will not be stored on the server."
3745
  msgstr ""
3746
 
3747
- #: languages/vue.php:1604
3748
  msgid "Connection Type"
3749
  msgstr ""
3750
 
3751
- #: languages/vue.php:1607
3752
  msgid "Cancel"
3753
  msgstr ""
3754
 
3755
- #: languages/vue.php:1610
3756
  msgid "Can't deauthenticate. Error: %s, %s"
3757
  msgstr ""
3758
 
3759
- #: languages/vue.php:1613
3760
  msgid "Can't load authentication details. Error: %s, %s"
3761
  msgstr ""
3762
 
3763
- #: languages/vue.php:1616
3764
  msgid "Can't authenticate. Error: %s, %s"
3765
  msgstr ""
3766
 
3767
- #: languages/vue.php:1619
3768
  msgid "Can't reauthenticate. Error: %s, %s"
3769
  msgstr ""
3770
 
3771
- #: languages/vue.php:1622
3772
  msgid "Can't verify credentials. Error: %s, %s"
3773
  msgstr ""
3774
 
3775
- #: languages/vue.php:1625
3776
  msgid "Help Us Improve"
3777
  msgstr ""
3778
 
3779
- #: languages/vue.php:1628
3780
  msgid "Help us better understand our users and their website needs."
3781
  msgstr ""
3782
 
3783
- #: languages/vue.php:1631
3784
  msgid "If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %svisit our website.%s"
3785
  msgstr ""
3786
 
3787
- #: languages/vue.php:1634
3788
  msgid "Website profile"
3789
  msgstr ""
3790
 
3791
- #: languages/vue.php:1637
3792
  msgid "Active profile"
3793
  msgstr ""
3794
 
3795
- #: languages/vue.php:1640
3796
  msgid "Skip and Keep Connection"
3797
  msgstr ""
3798
 
3799
- #: languages/vue.php:1643
3800
  msgid "Can't activate addon. Error: %s, %s"
3801
  msgstr ""
3802
 
3803
- #: languages/vue.php:1646
3804
  msgid "You appear to be offline. Addon not activated."
3805
  msgstr ""
3806
 
3807
- #: languages/vue.php:1649
3808
  msgid "Can't deactivate addon. Error: %s, %s"
3809
  msgstr ""
3810
 
3811
- #: languages/vue.php:1652
3812
  msgid "You appear to be offline. Addon not deactivated."
3813
  msgstr ""
3814
 
3815
- #: languages/vue.php:1655
3816
  msgid "Can't install plugin. Error: %s, %s"
3817
  msgstr ""
3818
 
3819
- #: languages/vue.php:1658
3820
  msgid "You appear to be offline. Plugin not installed."
3821
  msgstr ""
3822
 
3823
- #: languages/vue.php:1661
3824
  msgid "Can't install addon. Error: %s, %s"
3825
  msgstr ""
3826
 
3827
- #: languages/vue.php:1664
3828
  msgid "You appear to be offline. Addon not installed."
3829
  msgstr ""
3830
 
3831
- #: languages/vue.php:1667
3832
  msgid "Can't install WPForms. Error: %s, %s"
3833
  msgstr ""
3834
 
3835
- #: languages/vue.php:1670
3836
  msgid "You appear to be offline. WPForms not installed."
3837
  msgstr ""
3838
 
3839
- #: languages/vue.php:1673
3840
  msgid "Allow Usage Tracking"
3841
  msgstr ""
3842
 
3843
- #: languages/vue.php:1676
3844
  msgid "Verifying License"
3845
  msgstr ""
3846
 
3847
- #: languages/vue.php:1679
3848
  msgid "Success"
3849
  msgstr ""
3850
 
3851
- #: languages/vue.php:1682
3852
  msgid "There was an error verifying your license"
3853
  msgstr ""
3854
 
3855
- #: languages/vue.php:1685
3856
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
3857
  msgstr ""
3858
 
3859
- #: languages/vue.php:1688
3860
  msgid "You're using %sMonsterInsights Lite%s - no license needed. Enjoy! %s"
3861
  msgstr ""
3862
 
3863
- #: languages/vue.php:1691
3864
  msgid "To unlock more features consider %supgrading to PRO%s."
3865
  msgstr ""
3866
 
3867
- #: languages/vue.php:1694
3868
  msgid "As a valued MonsterInsights Lite user you %sreceive 50%% off%s, automatically applied at checkout!"
3869
  msgstr ""
3870
 
3871
- #: languages/vue.php:1697
3872
  msgid "Unlock PRO Features Now"
3873
  msgstr ""
3874
 
3875
- #: languages/vue.php:1700
3876
  msgid "Paste your license key here"
3877
  msgstr ""
3878
 
3879
- #: languages/vue.php:1703
3880
  msgid "Verify"
3881
  msgstr ""
3882
 
3883
- #: languages/vue.php:1706
3884
  msgid "If you already have a License key add it below to unlock MonsterInsights PRO. %sRetrieve your license key%s."
3885
  msgstr ""
3886
 
3887
- #: languages/vue.php:1709
3888
  msgid "Almost Done"
3889
  msgstr ""
3890
 
3891
- #: languages/vue.php:1712
3892
  msgid "MonsterInsights can automatically upgrade the installed version to the paid version"
3893
  msgstr ""
3894
 
3895
- #: languages/vue.php:1715
3896
  msgid "Complete Upgrade"
3897
  msgstr ""
3898
 
3899
- #: languages/vue.php:1718
3900
  msgid "Do Upgrade Later"
3901
  msgstr ""
3902
 
3903
- #: languages/vue.php:1722
3904
  msgid "Upgrade to PRO"
3905
  msgstr ""
3906
 
3907
- #: languages/vue.php:1725
3908
  msgid "Upgrade to Pro"
3909
  msgstr ""
3910
 
3911
- #: languages/vue.php:1728
3912
  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."
3913
  msgstr ""
3914
 
3915
- #: languages/vue.php:1731
3916
  msgid "You're using %sMonsterInsights Lite%s - no license needed. Enjoy!"
3917
  msgstr ""
3918
 
3919
- #: languages/vue.php:1734
3920
  msgid "You need to %sconnect MonsterInsights%s first"
3921
  msgstr ""
3922
 
3923
- #: languages/vue.php:1737
3924
  #: lite/includes/admin/welcome.php:52
3925
  #: lite/includes/admin/welcome.php:53
3926
  msgid "Welcome to MonsterInsights"
3927
  msgstr ""
3928
 
3929
- #: languages/vue.php:1740
3930
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
3931
  msgstr ""
3932
 
3933
- #: languages/vue.php:1743
3934
  msgid "MonsterInsights makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
3935
  msgstr ""
3936
 
3937
- #: languages/vue.php:1746
3938
  msgid "Launch the Wizard!"
3939
  msgstr ""
3940
 
3941
- #: languages/vue.php:1749
3942
  msgid "Read the Full Guide"
3943
  msgstr ""
3944
 
3945
- #: languages/vue.php:1752
3946
  msgid "MonsterInsights Features & Addons"
3947
  msgstr ""
3948
 
3949
- #: languages/vue.php:1755
3950
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
3951
  msgstr ""
3952
 
3953
- #: languages/vue.php:1758
3954
  msgid "See All Features"
3955
  msgstr ""
3956
 
3957
- #: languages/vue.php:1761
3958
  msgid "per year"
3959
  msgstr ""
3960
 
3961
- #: languages/vue.php:1764
3962
  msgid "Testimonials"
3963
  msgstr ""
3964
 
3965
- #: languages/vue.php:1767
3966
  msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
3967
  msgstr ""
3968
 
3969
- #: languages/vue.php:1770
3970
  msgid "Google Analytics Dashboard"
3971
  msgstr ""
3972
 
3973
- #: languages/vue.php:1773
3974
  msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
3975
  msgstr ""
3976
 
3977
- #: languages/vue.php:1776
3978
  msgid "Real-time Stats"
3979
  msgstr ""
3980
 
3981
- #: languages/vue.php:1779
3982
  msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
3983
  msgstr ""
3984
 
3985
- #: languages/vue.php:1782
3986
  msgid "Enhanced Ecommerce Tracking"
3987
  msgstr ""
3988
 
3989
- #: languages/vue.php:1785
3990
  msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
3991
  msgstr ""
3992
 
3993
- #: languages/vue.php:1788
3994
  msgid "Page Level Analytics"
3995
  msgstr ""
3996
 
3997
- #: languages/vue.php:1791
3998
  msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
3999
  msgstr ""
4000
 
4001
- #: languages/vue.php:1794
4002
  msgid "Affiliate Link & Ads Tracking"
4003
  msgstr ""
4004
 
4005
- #: languages/vue.php:1797
4006
  msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
4007
  msgstr ""
4008
 
4009
- #: languages/vue.php:1800
4010
  msgid "EU Compliance (GDPR Friendly)"
4011
  msgstr ""
4012
 
4013
- #: languages/vue.php:1803
4014
  msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
4015
  msgstr ""
4016
 
4017
- #: languages/vue.php:1806
4018
  msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
4019
  msgstr ""
4020
 
4021
- #: languages/vue.php:1809
4022
  msgid "Ecommerce Report"
4023
  msgstr ""
4024
 
4025
- #: languages/vue.php:1812
4026
  msgid "Category / Tags Tracking"
4027
  msgstr ""
4028
 
4029
- #: languages/vue.php:1815
4030
  msgid "WooCommerce"
4031
  msgstr ""
4032
 
4033
- #: languages/vue.php:1818
4034
  msgid "Easy Digital Downloads"
4035
  msgstr ""
4036
 
4037
- #: languages/vue.php:1821
4038
  msgid "MemberPress"
4039
  msgstr ""
4040
 
4041
- #: languages/vue.php:1824
4042
  msgid "LifterLMS"
4043
  msgstr ""
4044
 
4045
- #: languages/vue.php:1827
4046
  msgid "See how %s visitors found your site!"
4047
  msgstr ""
4048
 
4049
- #: languages/vue.php:1830
4050
  msgid "Your website was visited by %s users in the last 30 days."
4051
  msgstr ""
4052
 
4053
- #: languages/vue.php:1833
4054
  msgid "See the full analytics report!"
4055
  msgstr ""
4056
 
4057
- #: languages/vue.php:1836
4058
  msgid "You must connect with MonsterInsights before you can view reports."
4059
  msgstr ""
4060
 
4061
- #: languages/vue.php:1839
4062
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
4063
  msgstr ""
4064
 
4065
- #: languages/vue.php:1842
4066
  msgid "See Quick Links"
4067
  msgstr ""
4068
 
4069
- #: languages/vue.php:1845
4070
  msgid "Suggest a Feature"
4071
  msgstr ""
4072
 
4073
- #: languages/vue.php:1848
4074
  msgid "Join Our Community"
4075
  msgstr ""
4076
 
4077
- #: languages/vue.php:1851
4078
  msgid "Support & Docs"
4079
  msgstr ""
4080
 
4081
- #: languages/vue.php:1854
4082
  msgid "Upgrade to Pro »"
4083
  msgstr ""
4084
 
4085
- #: languages/vue.php:1857
4086
  msgid "MonsterInsights encountered an error loading your report data"
4087
  msgstr ""
4088
 
4089
- #: languages/vue.php:1860
4090
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
4091
  msgstr ""
4092
 
4093
- #: languages/vue.php:1863
4094
  msgid "Last %s days"
4095
  msgstr ""
4096
 
4097
- #: languages/vue.php:1866
4098
  #: lite/includes/admin/wp-site-health.php:179
4099
  msgid "View Reports"
4100
  msgstr ""
4101
 
4102
- #: languages/vue.php:1869
4103
  msgid "Congratulations!"
4104
  msgstr ""
4105
 
4106
- #: languages/vue.php:1872
4107
  msgid "MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %sGetting started video%s or use our %s to get you quickly set up."
4108
  msgstr ""
4109
 
4110
- #: languages/vue.php:1875
4111
  msgid "Onboarding Wizard"
4112
  msgstr ""
4113
 
4114
- #: languages/vue.php:1878
4115
  msgid "You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard."
4116
  msgstr ""
4117
 
4118
- #: languages/vue.php:1881
4119
  msgid "Yup, we know a thing or two about building awesome products that customers love."
4120
  msgstr ""
4121
 
4122
- #: languages/vue.php:1884
4123
  msgid "The MonsterInsights Team"
4124
  msgstr ""
4125
 
4126
- #: languages/vue.php:1887
4127
  msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%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 %s) only takes a few minutes and will make your website significantly faster and more secure."
4128
  msgstr ""
4129
 
4130
- #: languages/vue.php:1890
4131
  msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter."
4132
  msgstr ""
4133
 
4134
- #: languages/vue.php:1902
4135
  msgid "You’re using MonsterInsights Lite. To unlock more features consider %supgrading to Pro%s."
4136
  msgstr ""
4137
 
4138
- #: languages/vue.php:1905
4139
  msgid "Installing Addon"
4140
  msgstr ""
4141
 
4142
- #: languages/vue.php:1908
4143
  msgid "Activating Addon"
4144
  msgstr ""
4145
 
4146
- #: languages/vue.php:1911
4147
  msgid "Addon Activated"
4148
  msgstr ""
4149
 
4150
- #: languages/vue.php:1914
4151
  msgid "Loading report data"
4152
  msgstr ""
4153
 
4154
- #: languages/vue.php:1917
4155
  msgid "Please activate manually"
4156
  msgstr ""
4157
 
4158
- #: languages/vue.php:1920
4159
  msgid "Error: %s, %s"
4160
  msgstr ""
4161
 
4162
- #: languages/vue.php:1923
4163
  msgid "Error Activating Addon"
4164
  msgstr ""
4165
 
4166
- #: languages/vue.php:1926
4167
  #: lite/includes/admin/wp-site-health.php:298
4168
  #: lite/includes/admin/wp-site-health.php:324
4169
  #: lite/includes/admin/wp-site-health.php:351
4170
  msgid "View Addons"
4171
  msgstr ""
4172
 
4173
- #: languages/vue.php:1929
4174
  msgid "Dismiss"
4175
  msgstr ""
4176
 
4177
- #: languages/vue.php:1932
4178
  msgid "Redirecting"
4179
  msgstr ""
4180
 
4181
- #: languages/vue.php:1935
4182
  msgid "Please wait"
4183
  msgstr ""
4184
 
4185
- #: languages/vue.php:1938
4186
  msgid "Visit addons page"
4187
  msgstr ""
4188
 
4189
- #: languages/vue.php:1941
4190
  msgid "Report Unavailable"
4191
  msgstr ""
4192
 
4193
- #: languages/vue.php:1944
4194
  msgid "%s Addon"
4195
  msgstr ""
4196
 
4197
- #: languages/vue.php:1947
4198
  msgid "Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions."
4199
  msgstr ""
4200
 
4201
- #: languages/vue.php:1950
4202
  msgid "See All Reports"
4203
  msgstr ""
4204
 
4205
- #: languages/vue.php:1953
4206
  msgid "Go to the Analytics Dashboard"
4207
  msgstr ""
4208
 
4209
- #: languages/vue.php:1956
4210
  msgid "Hide dashboard widget"
4211
  msgstr ""
4212
 
4213
- #: languages/vue.php:1959
4214
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
4215
  msgstr ""
4216
 
4217
- #: languages/vue.php:1962
4218
  msgid "Yes, hide it!"
4219
  msgstr ""
4220
 
4221
- #: languages/vue.php:1965
4222
  msgid "No, cancel!"
4223
  msgstr ""
4224
 
4225
- #: languages/vue.php:1968
4226
  msgid "MonsterInsights Widget Hidden"
4227
  msgstr ""
4228
 
4229
- #: languages/vue.php:1971
4230
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
4231
  msgstr ""
4232
 
4233
- #: languages/vue.php:1974
4234
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %sRetrieve your license key%s."
4235
  msgstr ""
4236
 
4237
- #: languages/vue.php:1977
4238
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
4239
  msgstr ""
4240
 
4241
- #: languages/vue.php:1980
4242
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
4243
  msgstr ""
4244
 
4245
- #: languages/vue.php:1983
4246
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
4247
  msgstr ""
4248
 
4249
- #: languages/vue.php:1986
4250
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
4251
  msgstr ""
4252
 
4253
- #: languages/vue.php:1989
4254
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
4255
  msgstr ""
4256
 
4257
- #: languages/vue.php:1992
4258
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
4259
  msgstr ""
4260
 
4261
- #: languages/vue.php:1995
4262
  msgid "Unlock search console report to see your top performing keywords in Google."
4263
  msgstr ""
4264
 
4265
- #: languages/vue.php:1998
4266
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
4267
  msgstr ""
4268
 
4269
- #: languages/vue.php:2001
4270
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
4271
  msgstr ""
4272
 
4273
- #: languages/vue.php:2004
4274
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving.s"
4275
  msgstr ""
4276
 
4277
- #: languages/vue.php:2007
4278
  msgid "Upgrade to Pro »"
4279
  msgstr ""
4280
 
4281
- #: languages/vue.php:2010
4282
  msgid "Pro Tip:"
4283
  msgstr ""
4284
 
4285
- #: languages/vue.php:2013
4286
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
4287
  msgstr ""
4288
 
4289
- #: languages/vue.php:2016
4290
  msgid "Can't load report data. Error: %s, %s"
4291
  msgstr ""
4292
 
4293
- #: languages/vue.php:2019
4294
  msgid "Error loading report data"
4295
  msgstr ""
4296
 
4297
- #: languages/vue.php:2022
4298
  msgid "Error loading license details"
4299
  msgstr ""
4300
 
4301
- #: languages/vue.php:2025
4302
  msgid "Network error encountered. Settings not saved."
4303
  msgstr ""
4304
 
4305
- #: languages/vue.php:2028
4306
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
4307
  msgstr ""
4308
 
4309
- #: languages/vue.php:2031
4310
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
4311
  msgstr ""
4312
 
4313
- #: languages/vue.php:2034
4314
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
4315
  msgstr ""
4316
 
4317
- #: languages/vue.php:2037
4318
  msgid "UA code can't be empty"
4319
  msgstr ""
4320
 
4321
- #: languages/vue.php:2040
4322
  msgid "Saving UA code..."
4323
  msgstr ""
4324
 
4325
- #: languages/vue.php:2043
4326
  msgid "2019 Year in Review"
4327
  msgstr ""
4328
 
4329
- #: languages/vue.php:2046
4330
  msgid "Still Calculating..."
4331
  msgstr ""
4332
 
4333
- #: languages/vue.php:2049
4334
  msgid "Your 2019 Year in Review is still calculating. Please check back later to see how your website performed last year."
4335
  msgstr ""
4336
 
4337
- #: languages/vue.php:2052
4338
  msgid "Back to Overview Report"
4339
  msgstr ""
4340
 
4341
- #: languages/vue.php:2061
4342
  msgid "Audience"
4343
  msgstr ""
4344
 
4345
- #: languages/vue.php:2064
4346
  msgid "Congrats"
4347
  msgstr ""
4348
 
4349
- #: languages/vue.php:2067
4350
  msgid "Your website was quite popular this year! "
4351
  msgstr ""
4352
 
4353
- #: languages/vue.php:2070
4354
  msgid "You had "
4355
  msgstr ""
4356
 
4357
- #: languages/vue.php:2073
4358
  msgid " visitors!"
4359
  msgstr ""
4360
 
4361
- #: languages/vue.php:2076
4362
  msgid " visitors"
4363
  msgstr ""
4364
 
4365
- #: languages/vue.php:2079
4366
  msgid "Total Visitors"
4367
  msgstr ""
4368
 
4369
- #: languages/vue.php:2082
4370
  msgid "Total Sessions"
4371
  msgstr ""
4372
 
4373
- #: languages/vue.php:2085
4374
  msgid "Visitors by Month"
4375
  msgstr ""
4376
 
4377
- #: languages/vue.php:2088
4378
  msgid "January 1, 2019 - December 31, 2019"
4379
  msgstr ""
4380
 
4381
- #: languages/vue.php:2091
4382
  msgid "A Tip for 2020"
4383
  msgstr ""
4384
 
4385
- #: languages/vue.php:2094
4386
  msgid "See the top Traffic Sources and Top Pages for the Month of May in the Overview Report to replicate your success."
4387
  msgstr ""
4388
 
4389
- #: languages/vue.php:2097
4390
  msgid "#1"
4391
  msgstr ""
4392
 
4393
- #: languages/vue.php:2100
4394
  msgid "You Top 5 Countries"
4395
  msgstr ""
4396
 
4397
- #: languages/vue.php:2103
4398
  msgid "Let’s get to know your visitors a little better, shall we?"
4399
  msgstr ""
4400
 
4401
- #: languages/vue.php:2106
4402
  msgid "Gender"
4403
  msgstr ""
4404
 
4405
- #: languages/vue.php:2109
4406
  msgid "Female"
4407
  msgstr ""
4408
 
4409
- #: languages/vue.php:2112
4410
  msgid "Women"
4411
  msgstr ""
4412
 
4413
- #: languages/vue.php:2115
4414
  msgid "Male"
4415
  msgstr ""
4416
 
4417
- #: languages/vue.php:2118
4418
  msgid "Average Age"
4419
  msgstr ""
4420
 
4421
- #: languages/vue.php:2121
4422
  msgid "Behavior"
4423
  msgstr ""
4424
 
4425
- #: languages/vue.php:2124
4426
  msgid "Your Top 5 Pages"
4427
  msgstr ""
4428
 
4429
- #: languages/vue.php:2127
4430
  msgid "Time Spent on Site"
4431
  msgstr ""
4432
 
4433
- #: languages/vue.php:2130
4434
  msgid "minutes"
4435
  msgstr ""
4436
 
4437
- #: languages/vue.php:2133
4438
  msgid "Device Type"
4439
  msgstr ""
4440
 
4441
- #: languages/vue.php:2136
4442
  msgid "A Tip For 2020"
4443
  msgstr ""
4444
 
4445
- #: languages/vue.php:2139
4446
  msgid "Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic."
4447
  msgstr ""
4448
 
4449
- #: languages/vue.php:2142
4450
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
4451
  msgstr ""
4452
 
4453
- #: languages/vue.php:2145
4454
  msgid "So, where did all of these visitors come from?"
4455
  msgstr ""
4456
 
4457
- #: languages/vue.php:2148
4458
  msgid "Impressions"
4459
  msgstr ""
4460
 
4461
- #: languages/vue.php:2151
4462
  msgid "Your Top 5 Keywords"
4463
  msgstr ""
4464
 
4465
- #: languages/vue.php:2154
4466
  msgid "What keywords visitors searched for to find your site"
4467
  msgstr ""
4468
 
4469
- #: languages/vue.php:2157
4470
  msgid "Your Top 5 Referrals"
4471
  msgstr ""
4472
 
4473
- #: languages/vue.php:2160
4474
  msgid "The websites that link back to your website"
4475
  msgstr ""
4476
 
4477
- #: languages/vue.php:2163
4478
  msgid "Opportunity"
4479
  msgstr ""
4480
 
4481
- #: languages/vue.php:2166
4482
  msgid "Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic."
4483
  msgstr ""
4484
 
4485
- #: languages/vue.php:2169
4486
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
4487
  msgstr ""
4488
 
4489
- #: languages/vue.php:2172
4490
  msgid "Thank you for using MonsterInsights!"
4491
  msgstr ""
4492
 
4493
- #: languages/vue.php:2175
4494
  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."
4495
  msgstr ""
4496
 
4497
- #: languages/vue.php:2178
4498
  msgid "Here's to an amazing 2020!"
4499
  msgstr ""
4500
 
4501
- #: languages/vue.php:2181
4502
  msgid "Enjoying MonsterInsights"
4503
  msgstr ""
4504
 
4505
- #: languages/vue.php:2184
4506
  msgid "Leave a five star review!"
4507
  msgstr ""
4508
 
4509
- #: languages/vue.php:2187
4510
  msgid "Syed Balkhi"
4511
  msgstr ""
4512
 
4513
- #: languages/vue.php:2190
4514
  msgid "Chris Christoff"
4515
  msgstr ""
4516
 
4517
- #: languages/vue.php:2193
4518
  msgid "Write Review"
4519
  msgstr ""
4520
 
4521
- #: languages/vue.php:2196
4522
  msgid "Did you know over 10 million websites use our plugins?"
4523
  msgstr ""
4524
 
4525
- #: languages/vue.php:2199
4526
  msgid "Try our other popular WordPress plugins to grow your website in 2020."
4527
  msgstr ""
4528
 
4529
- #: languages/vue.php:2202
4530
  msgid "Join our Communities!"
4531
  msgstr ""
4532
 
4533
- #: languages/vue.php:2205
4534
  msgid "Become a WordPress expert in 2020. Join our amazing communities and take your website to the next level."
4535
  msgstr ""
4536
 
4537
- #: languages/vue.php:2208
4538
  msgid "Facebook Group"
4539
  msgstr ""
4540
 
4541
- #: languages/vue.php:2211
4542
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
4543
  msgstr ""
4544
 
4545
- #: languages/vue.php:2214
4546
  msgid "Join Now...It’s Free!"
4547
  msgstr ""
4548
 
4549
- #: languages/vue.php:2217
4550
  msgid "WordPress Tutorials by WPBeginner"
4551
  msgstr ""
4552
 
4553
- #: languages/vue.php:2220
4554
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
4555
  msgstr ""
4556
 
4557
- #: languages/vue.php:2223
4558
  msgid "Visit WPBeginner"
4559
  msgstr ""
4560
 
4561
- #: languages/vue.php:2226
4562
  msgid "Follow Us!"
4563
  msgstr ""
4564
 
4565
- #: languages/vue.php:2229
4566
  msgid "Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
4567
  msgstr ""
4568
 
4569
- #: languages/vue.php:2232
4570
  msgid "Copyright MonsterInsights, 2020"
4571
  msgstr ""
4572
 
4573
- #: languages/vue.php:2235
4574
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
4575
  msgstr ""
4576
 
4577
- #: languages/vue.php:2238
4578
  msgid "January"
4579
  msgstr ""
4580
 
4581
- #: languages/vue.php:2241
4582
  msgid "February"
4583
  msgstr ""
4584
 
4585
- #: languages/vue.php:2244
4586
  msgid "March"
4587
  msgstr ""
4588
 
4589
- #: languages/vue.php:2247
4590
  msgid "April"
4591
  msgstr ""
4592
 
4593
- #: languages/vue.php:2250
4594
  msgid "May"
4595
  msgstr ""
4596
 
4597
- #: languages/vue.php:2253
4598
  msgid "June"
4599
  msgstr ""
4600
 
4601
- #: languages/vue.php:2256
4602
  msgid "July"
4603
  msgstr ""
4604
 
4605
- #: languages/vue.php:2259
4606
  msgid "August"
4607
  msgstr ""
4608
 
4609
- #: languages/vue.php:2262
4610
  msgid "September"
4611
  msgstr ""
4612
 
4613
- #: languages/vue.php:2265
4614
  msgid "October"
4615
  msgstr ""
4616
 
4617
- #: languages/vue.php:2268
4618
  msgid "November"
4619
  msgstr ""
4620
 
4621
- #: languages/vue.php:2271
4622
  msgid "December"
4623
  msgstr ""
4624
 
4625
- #: languages/vue.php:2274
4626
  msgid "Your best month was <strong>%s</strong> with <strong>%s visitors!</strong>"
4627
  msgstr ""
4628
 
4629
- #: languages/vue.php:2277
4630
  msgid "Your <strong>%s</strong> visitors came from <strong>%s</strong> different countries."
4631
  msgstr ""
4632
 
4633
- #: languages/vue.php:2280
4634
  msgid "%s Visitors"
4635
  msgstr ""
4636
 
4637
- #: languages/vue.php:2283
4638
  msgid "%s&#37 of your visitors were %s"
4639
  msgstr ""
4640
 
4641
- #: languages/vue.php:2286
4642
  msgid "%s&#37 of your visitors were between the ages of %s"
4643
  msgstr ""
4644
 
4645
- #: languages/vue.php:2289
4646
  msgid "Your <strong>%s</strong> visitors viewed a total of <strong>%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 %s pages for each visitor!</span>"
4647
  msgstr ""
4648
 
4649
- #: languages/vue.php:2292
4650
  msgid "Each visitor spent an average of %s minutes on your website in 2019."
4651
  msgstr ""
4652
 
4653
- #: languages/vue.php:2295
4654
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
4655
  msgstr ""
4656
 
4657
- #: languages/vue.php:2298
4658
  msgid "%s&#37 of your visitors were on a %s device."
4659
  msgstr ""
4660
 
 
 
 
 
4661
  #: lite/includes/admin/connect.php:42
4662
  msgid "You are not allowed to install plugins."
4663
  msgstr ""
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: 2019-12-19T20:28:15+00:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.2.0\n"
15
  "X-Domain: google-analytics-for-wordpress\n"
63
  #: includes/admin/admin.php:37
64
  #: includes/admin/admin.php:45
65
  #: includes/admin/admin.php:91
66
+ #: languages/vue.php:174
67
  msgid "Insights"
68
  msgstr ""
69
 
85
 
86
  #: includes/admin/admin.php:39
87
  #: includes/admin/admin.php:95
88
+ #: languages/vue.php:679
89
  msgid "Reports"
90
  msgstr ""
91
 
114
 
115
  #: includes/admin/admin.php:60
116
  #: includes/admin/admin.php:103
117
+ #: languages/vue.php:256
118
  msgid "About Us"
119
  msgstr ""
120
 
142
 
143
  #: includes/admin/admin.php:175
144
  #: includes/admin/admin.php:178
145
+ #: languages/vue.php:1024
146
  msgid "Support"
147
  msgstr ""
148
 
151
  msgstr ""
152
 
153
  #: includes/admin/admin.php:276
154
+ #: languages/vue.php:2008
155
  msgid "Please Setup Website Analytics to See Audience Insights"
156
  msgstr ""
157
 
158
  #: includes/admin/admin.php:277
159
+ #: languages/vue.php:2014
160
  msgid "Connect MonsterInsights and Setup Website Analytics"
161
  msgstr ""
162
 
163
  #: includes/admin/admin.php:279
164
+ #: languages/vue.php:221
165
  msgid "Learn More"
166
  msgstr ""
167
 
168
  #: includes/admin/admin.php:281
169
+ #: languages/vue.php:2011
170
  msgid "MonsterInsights, WordPress analytics plugin, helps you connect your website with Google Analytics, so you can see how people find and use your website. Over 2 million website owners use MonsterInsights to see the stats that matter and grow their business."
171
  msgstr ""
172
 
179
  msgstr ""
180
 
181
  #: includes/admin/admin.php:302
182
+ #: languages/vue.php:1329
183
  msgid "Your license key for MonsterInsights has been disabled. Please use a different key."
184
  msgstr ""
185
 
186
  #: includes/admin/admin.php:304
187
+ #: languages/vue.php:1332
188
  msgid "Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key."
189
  msgstr ""
190
 
308
  msgstr ""
309
 
310
  #: includes/admin/common.php:869
311
+ #: languages/vue.php:2172
312
  msgid "Your 2019 Analytics Report"
313
  msgstr ""
314
 
315
  #: includes/admin/common.php:875
316
+ #: languages/vue.php:2175
317
  msgid "See how your website performed this year and find tips along the way to help grow even more in 2020!"
318
  msgstr ""
319
 
447
  msgstr ""
448
 
449
  #: includes/admin/reports/abstract-report.php:358
450
+ #: languages/vue.php:1420
451
  msgid "Upgrade Now"
452
  msgstr ""
453
 
456
  msgstr ""
457
 
458
  #: includes/admin/reports/overview.php:34
459
+ #: languages/vue.php:225
460
  msgid "Overview"
461
  msgstr ""
462
 
1672
  msgid "Loading new report data..."
1673
  msgstr ""
1674
 
1675
+ #: languages/vue.php:15
1676
  msgid "Error"
1677
  msgstr ""
1678
 
1679
+ #: languages/vue.php:18
1680
  msgid "Please try again."
1681
  msgstr ""
1682
 
1683
+ #: languages/vue.php:21
1684
  msgid "Unlock the Publishers Report and Focus on the Content that Matters"
1685
  msgstr ""
1686
 
1687
+ #: languages/vue.php:24
1688
  msgid "Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions."
1689
  msgstr ""
1690
 
1691
+ #: languages/vue.php:27
1692
  msgid "Unlock the Publishers Report and Focus on the Content That Matters"
1693
  msgstr ""
1694
 
1695
+ #: languages/vue.php:30
1696
  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."
1697
  msgstr ""
1698
 
1699
+ #: languages/vue.php:33
1700
  msgid "See Your Top Landing Pages to Improve Enagement"
1701
  msgstr ""
1702
 
1703
+ #: languages/vue.php:36
1704
  msgid "See Your Top Exit Pages to Reduce Abandonment"
1705
  msgstr ""
1706
 
1707
+ #: languages/vue.php:39
1708
  msgid "See Your Top Outbound Links to Find New Revenue Opportunities"
1709
  msgstr ""
1710
 
1711
+ #: languages/vue.php:42
1712
  msgid "See Your Top Affiliate Links and Focus on what's working"
1713
  msgstr ""
1714
 
1715
+ #: languages/vue.php:45
1716
  msgid "See Your Top Downloads and Improve Conversions"
1717
  msgstr ""
1718
 
1719
+ #: languages/vue.php:48
1720
  msgid "See Audience Demographic Report ( Age / Gender / Interests )"
1721
  msgstr ""
1722
 
1723
+ #: languages/vue.php:51
1724
  msgid "Unlock the eCommerce Report and See Your Important Store Metrics"
1725
  msgstr ""
1726
 
1727
+ #: languages/vue.php:54
1728
  msgid "Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more."
1729
  msgstr ""
1730
 
1731
+ #: languages/vue.php:57
1732
  msgid "See Your Conversion Rate to Improve Funnel"
1733
  msgstr ""
1734
 
1735
+ #: languages/vue.php:60
1736
  msgid "See The Number of Transactions and make data-driven decisions"
1737
  msgstr ""
1738
 
1739
+ #: languages/vue.php:63
1740
  msgid "See The Total Revenue to Track Growth"
1741
  msgstr ""
1742
 
1743
+ #: languages/vue.php:66
1744
  msgid "See Average Order Value to Find Offer Opportunities"
1745
  msgstr ""
1746
 
1747
+ #: languages/vue.php:69
1748
  msgid "See Your Top Products to See Individual Performance"
1749
  msgstr ""
1750
 
1751
+ #: languages/vue.php:72
1752
  msgid "See Your Top Conversion Sources and Focus on what's working"
1753
  msgstr ""
1754
 
1755
+ #: languages/vue.php:75
1756
  msgid "See The Time it takes for Customers to Purchase"
1757
  msgstr ""
1758
 
1759
+ #: languages/vue.php:78
1760
  msgid "See How Many Sessions are needed for a Purchase"
1761
  msgstr ""
1762
 
1763
+ #: languages/vue.php:81
1764
  msgid "Unlock the Dimensions Report and Track Your Own Custom Data"
1765
  msgstr ""
1766
 
1767
+ #: languages/vue.php:84
1768
  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."
1769
  msgstr ""
1770
 
1771
+ #: languages/vue.php:87
1772
  msgid "See Which Authors Generate the Most Traffic"
1773
  msgstr ""
1774
 
1775
+ #: languages/vue.php:90
1776
  msgid "See Which Post Types Perform Better"
1777
  msgstr ""
1778
 
1779
+ #: languages/vue.php:93
1780
  msgid "See Which Categories are the Most Popular"
1781
  msgstr ""
1782
 
1783
+ #: languages/vue.php:96
1784
  msgid "See Your Blog's most populare SEO Scores"
1785
  msgstr ""
1786
 
1787
+ #: languages/vue.php:99
1788
  msgid "See Which Focus Keyword is Performing Better in Search Engines"
1789
  msgstr ""
1790
 
1791
+ #: languages/vue.php:102
1792
  msgid "Unlock the Forms Report and Improve Conversions"
1793
  msgstr ""
1794
 
1795
+ #: languages/vue.php:105
1796
  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."
1797
  msgstr ""
1798
 
1799
+ #: languages/vue.php:108
1800
  msgid "See Reports for Any Contact Form Plugin or Sign-up Form"
1801
  msgstr ""
1802
 
1803
+ #: languages/vue.php:111
1804
  msgid "See Your Top Converting Forms and Optimize"
1805
  msgstr ""
1806
 
1807
+ #: languages/vue.php:114
1808
  msgid "See Your Forms Impressions Count to Find the Best Placement"
1809
  msgstr ""
1810
 
1811
+ #: languages/vue.php:117
1812
  msgid "Unlock the Search Console Report and See How People Find Your Website"
1813
  msgstr ""
1814
 
1815
+ #: languages/vue.php:120
1816
  msgid "See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more."
1817
  msgstr ""
1818
 
1819
+ #: languages/vue.php:123
1820
  msgid "See Your Top Google Search Terms and Optimize Content"
1821
  msgstr ""
1822
 
1823
+ #: languages/vue.php:126
1824
  msgid "See The Number of Clicks and Track Interests"
1825
  msgstr ""
1826
 
1827
+ #: languages/vue.php:129
1828
  msgid "See The Click-Through-Ratio and Improve SEO"
1829
  msgstr ""
1830
 
1831
+ #: languages/vue.php:132
1832
  msgid "See The Average Results Position and Focus on what works"
1833
  msgstr ""
1834
 
1835
+ #: languages/vue.php:135
1836
  msgid "Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time"
1837
  msgstr ""
1838
 
1839
+ #: languages/vue.php:138
1840
  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."
1841
  msgstr ""
1842
 
1843
+ #: languages/vue.php:141
1844
  msgid "See Your Active Visitors and Track Their Behaviour to Optimize"
1845
  msgstr ""
1846
 
1847
+ #: languages/vue.php:144
1848
  msgid "See Your Top Pages Immediately After Making Changes"
1849
  msgstr ""
1850
 
1851
+ #: languages/vue.php:147
1852
  msgid "See Your Top Referral Sources and Adapt Faster"
1853
  msgstr ""
1854
 
1855
+ #: languages/vue.php:150
1856
  msgid "See Your Traffic Demographics and "
1857
  msgstr ""
1858
 
1859
+ #: languages/vue.php:153
1860
  msgid "Get Fresh Reports Data Every 60 Seconds"
1861
  msgstr ""
1862
 
1863
+ #: languages/vue.php:159
1864
  msgid "Overview Report"
1865
  msgstr ""
1866
 
1867
+ #: languages/vue.php:162
1868
  msgid "Loading Settings"
1869
  msgstr ""
1870
 
1871
+ #: languages/vue.php:165
1872
  msgid "Saving Changes..."
1873
  msgstr ""
1874
 
1875
+ #: languages/vue.php:168
1876
  msgid "Settings Updated"
1877
  msgstr ""
1878
 
1879
+ #: languages/vue.php:171
1880
  msgid "Could Not Save Changes"
1881
  msgstr ""
1882
 
1883
+ #: languages/vue.php:177
1884
  msgid "Congratulations! "
1885
  msgstr ""
1886
 
1887
+ #: languages/vue.php:180
1888
  msgid "You Successfully Unlocked the most powerful Analytics plugin"
1889
  msgstr ""
1890
 
1891
+ #: languages/vue.php:183
1892
  msgid "Publishers Report"
1893
  msgstr ""
1894
 
1895
+ #: languages/vue.php:187
1896
  msgid "eCommerce Report"
1897
  msgstr ""
1898
 
1899
+ #: languages/vue.php:191
1900
  msgid "Search Console Report"
1901
  msgstr ""
1902
 
1903
+ #: languages/vue.php:195
1904
  msgid "Dimensions Report"
1905
  msgstr ""
1906
 
1907
+ #: languages/vue.php:199
1908
  msgid "Forms Report"
1909
  msgstr ""
1910
 
1911
+ #: languages/vue.php:203
1912
  msgid "Real-Time Report"
1913
  msgstr ""
1914
 
1915
+ #: languages/vue.php:206
1916
  msgid "Recommended Plugin: %s"
1917
  msgstr ""
1918
 
1919
+ #: languages/vue.php:211
1920
  msgid "Install"
1921
  msgstr ""
1922
 
1923
+ #: languages/vue.php:216
1924
  msgid "Activate"
1925
  msgstr ""
1926
 
1927
+ #: languages/vue.php:229
1928
  #: lite/includes/admin/reports/report-publisher.php:22
1929
  msgid "Publishers"
1930
  msgstr ""
1931
 
1932
+ #: languages/vue.php:235
1933
  #: lite/includes/admin/reports/report-ecommerce.php:22
1934
  msgid "eCommerce"
1935
  msgstr ""
1936
 
1937
+ #: languages/vue.php:238
1938
  #: lite/includes/admin/reports/report-queries.php:22
1939
  msgid "Search Console"
1940
  msgstr ""
1941
 
1942
+ #: languages/vue.php:242
1943
  #: lite/includes/admin/reports/report-dimensions.php:22
1944
  msgid "Dimensions"
1945
  msgstr ""
1946
 
1947
+ #: languages/vue.php:245
1948
  #: lite/includes/admin/reports/report-forms.php:22
1949
  msgid "Forms"
1950
  msgstr ""
1951
 
1952
+ #: languages/vue.php:248
1953
  msgid "Real-Time"
1954
  msgstr ""
1955
 
1956
+ #: languages/vue.php:251
1957
  msgid "Loading settings"
1958
  msgstr ""
1959
 
1960
+ #: languages/vue.php:261
1961
  msgid "Getting Started"
1962
  msgstr ""
1963
 
1964
+ #: languages/vue.php:267
1965
  msgid "Lite vs Pro"
1966
  msgstr ""
1967
 
1968
+ #: languages/vue.php:271
1969
  msgid "General"
1970
  msgstr ""
1971
 
1972
+ #: languages/vue.php:275
1973
  msgid "Engagement"
1974
  msgstr ""
1975
 
1976
+ #: languages/vue.php:279
1977
  msgid "Publisher"
1978
  msgstr ""
1979
 
1980
+ #: languages/vue.php:283
1981
  msgid "Conversions"
1982
  msgstr ""
1983
 
1984
+ #: languages/vue.php:287
1985
  msgid "Advanced"
1986
  msgstr ""
1987
 
1988
+ #: languages/vue.php:291
1989
  msgid "URL Builder"
1990
  msgstr ""
1991
 
1992
+ #: languages/vue.php:295
1993
  msgid "Import Export"
1994
  msgstr ""
1995
 
1996
+ #: languages/vue.php:298
1997
  msgid "Time to Purchase"
1998
  msgstr ""
1999
 
2000
+ #: languages/vue.php:301
2001
  msgid "This list shows how many days from first visit it took users to purchase products from your site."
2002
  msgstr ""
2003
 
2004
+ #: languages/vue.php:304
2005
  msgid "Sessions to Purchase"
2006
  msgstr ""
2007
 
2008
+ #: languages/vue.php:307
2009
  msgid "This list shows the number of sessions it took users before they purchased a product from your website."
2010
  msgstr ""
2011
 
2012
+ #: languages/vue.php:311
2013
  msgid "Top Posts/Pages"
2014
  msgstr ""
2015
 
2016
+ #: languages/vue.php:315
2017
  msgid "This list shows the most viewed posts and pages on your website."
2018
  msgstr ""
2019
 
2020
+ #: languages/vue.php:319
2021
  msgid "New vs. Returning Visitors"
2022
  msgstr ""
2023
 
2024
+ #: languages/vue.php:323
2025
  msgid "This graph shows what percent of your user sessions come from new versus repeat visitors."
2026
  msgstr ""
2027
 
2028
+ #: languages/vue.php:327
2029
  msgid "Device Breakdown"
2030
  msgstr ""
2031
 
2032
+ #: languages/vue.php:331
2033
  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."
2034
  msgstr ""
2035
 
2036
+ #: languages/vue.php:334
2037
  msgid "Top Landing Pages"
2038
  msgstr ""
2039
 
2040
+ #: languages/vue.php:337
2041
  msgid "This list shows the top pages users first land on when visiting your website."
2042
  msgstr ""
2043
 
2044
+ #: languages/vue.php:340
2045
  msgid "Top Exit Pages"
2046
  msgstr ""
2047
 
2048
+ #: languages/vue.php:343
2049
  msgid "This list shows the top pages users exit your website from."
2050
  msgstr ""
2051
 
2052
+ #: languages/vue.php:346
2053
  msgid "Top Outbound Links"
2054
  msgstr ""
2055
 
2056
+ #: languages/vue.php:349
2057
  msgid "This list shows the top links clicked on your website that go to another website."
2058
  msgstr ""
2059
 
2060
+ #: languages/vue.php:352
2061
  msgid "Top Affiliate Links"
2062
  msgstr ""
2063
 
2064
+ #: languages/vue.php:355
2065
  msgid "This list shows the top affiliate links your visitors clicked on."
2066
  msgstr ""
2067
 
2068
+ #: languages/vue.php:358
2069
  msgid "Top Download Links"
2070
  msgstr ""
2071
 
2072
+ #: languages/vue.php:361
2073
  msgid "This list shows the download links your visitors clicked the most."
2074
  msgstr ""
2075
 
2076
+ #: languages/vue.php:364
2077
  msgid "Top Products"
2078
  msgstr ""
2079
 
2080
+ #: languages/vue.php:367
2081
  msgid "This list shows the top selling products on your website."
2082
  msgstr ""
2083
 
2084
+ #: languages/vue.php:370
2085
  msgid "Top Conversion Sources"
2086
  msgstr ""
2087
 
2088
+ #: languages/vue.php:373
2089
  msgid "This list shows the top referral websites in terms of product revenue."
2090
  msgstr ""
2091
 
2092
+ #: languages/vue.php:376
2093
  msgid "Total Add/Remove"
2094
  msgstr ""
2095
 
2096
+ #: languages/vue.php:379
2097
  msgid "Exit Setup"
2098
  msgstr ""
2099
 
2100
+ #: languages/vue.php:382
2101
  msgid "Yikes! PHP Update Required"
2102
  msgstr ""
2103
 
2104
+ #: languages/vue.php:385
2105
  msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%s), which could be putting your site at risk for being hacked. WordPress itself will stop supporting your PHP version in April, 2019. Updating to the recommended version (PHP %s) only takes a few minutes and will make your website significantly faster and more secure."
2106
  msgstr ""
2107
 
2108
+ #: languages/vue.php:388
2109
  msgid "Learn more about updating PHP"
2110
  msgstr ""
2111
 
2112
+ #: languages/vue.php:391
2113
  msgid "Yikes! WordPress Update Required"
2114
  msgstr ""
2115
 
2116
+ #: languages/vue.php:394
2117
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
2118
  msgstr ""
2119
 
2120
+ #: languages/vue.php:397
2121
  msgid "Learn more about updating WordPress"
2122
  msgstr ""
2123
 
2124
+ #: languages/vue.php:400
2125
  msgid "Powered by MonsterInsights"
2126
  msgstr ""
2127
 
2128
+ #: languages/vue.php:403
2129
  msgid "Save Changes"
2130
  msgstr ""
2131
 
2132
+ #: languages/vue.php:406
2133
  msgid "New"
2134
  msgstr ""
2135
 
2136
+ #: languages/vue.php:409
2137
  msgid "Returning"
2138
  msgstr ""
2139
 
2140
+ #: languages/vue.php:413
2141
  msgid "Desktop"
2142
  msgstr ""
2143
 
2144
+ #: languages/vue.php:417
2145
  msgid "Tablet"
2146
  msgstr ""
2147
 
2148
+ #: languages/vue.php:421
2149
  msgid "Mobile"
2150
  msgstr ""
2151
 
2152
+ #: languages/vue.php:426
2153
  msgid "Sessions"
2154
  msgstr ""
2155
 
2156
+ #: languages/vue.php:430
2157
  msgid "Unique %s Sessions"
2158
  msgstr ""
2159
 
2160
+ #: languages/vue.php:436
2161
  msgid "Pageviews"
2162
  msgstr ""
2163
 
2164
+ #: languages/vue.php:441
2165
  msgid "Unique %s Pageviews"
2166
  msgstr ""
2167
 
2168
+ #: languages/vue.php:445
2169
  msgid "Avg. Session Duration"
2170
  msgstr ""
2171
 
2172
+ #: languages/vue.php:450
2173
  msgid "Bounce Rate"
2174
  msgstr ""
2175
 
2176
+ #: languages/vue.php:453
2177
  msgid "Top 10 Countries"
2178
  msgstr ""
2179
 
2180
+ #: languages/vue.php:456
2181
  msgid "View Countries Report"
2182
  msgstr ""
2183
 
2184
+ #: languages/vue.php:459
2185
  msgid "Top 10 Referrals"
2186
  msgstr ""
2187
 
2188
+ #: languages/vue.php:462
2189
  msgid "View All Referral Sources"
2190
  msgstr ""
2191
 
2192
+ #: languages/vue.php:465
2193
  msgid "View Full Posts/Pages Report"
2194
  msgstr ""
2195
 
2196
+ #: languages/vue.php:469
2197
  msgid "A session is the browsing session of a single user to your site."
2198
  msgstr ""
2199
 
2200
+ #: languages/vue.php:473
2201
  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."
2202
  msgstr ""
2203
 
2204
+ #: languages/vue.php:477
2205
  msgid "Total duration of all sessions (in seconds) / number of sessions."
2206
  msgstr ""
2207
 
2208
+ #: languages/vue.php:480
2209
  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."
2210
  msgstr ""
2211
 
2212
+ #: languages/vue.php:483
2213
  msgid "This list shows the top countries your website visitors are from."
2214
  msgstr ""
2215
 
2216
+ #: languages/vue.php:486
2217
  msgid "This list shows the top websites that send your website traffic, known as referral traffic."
2218
  msgstr ""
2219
 
2220
+ #: languages/vue.php:489
2221
  msgid "MonsterInsights Addons"
2222
  msgstr ""
2223
 
2224
+ #: languages/vue.php:492
2225
  msgid "Search Addons"
2226
  msgstr ""
2227
 
2228
+ #: languages/vue.php:496
2229
  msgid "Yes (recommended) %s- Get the latest features, bugfixes, and security updates as they are released.%s"
2230
  msgstr ""
2231
 
2232
+ #: languages/vue.php:500
2233
  msgid "Minor only %s- Get bugfixes and security updates, but not major features.%s"
2234
  msgstr ""
2235
 
2236
+ #: languages/vue.php:504
2237
  msgid "None %s- Manually update everything.%s"
2238
  msgstr ""
2239
 
2240
+ #: languages/vue.php:509
2241
  msgid "License Key"
2242
  msgstr ""
2243
 
2244
+ #: languages/vue.php:513
2245
  msgid "Google Authentication"
2246
  msgstr ""
2247
 
2248
+ #: languages/vue.php:518
2249
  msgid "Connect Google Analytics + WordPress"
2250
  msgstr ""
2251
 
2252
+ #: languages/vue.php:523
2253
  msgid "You will be taken to the MonsterInsights website where you'll need to connect your Analytics account."
2254
  msgstr ""
2255
 
2256
+ #: languages/vue.php:527
2257
  msgid "Automatic Updates"
2258
  msgstr ""
2259
 
2260
+ #: languages/vue.php:530
2261
  msgid "Setup Wizard"
2262
  msgstr ""
2263
 
2264
+ #: languages/vue.php:533
2265
  msgid "Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks)."
2266
  msgstr ""
2267
 
2268
+ #: languages/vue.php:537
2269
  msgid "Launch Setup Wizard"
2270
  msgstr ""
2271
 
2272
+ #: languages/vue.php:541
2273
  msgid "Path (example: %s)"
2274
  msgstr ""
2275
 
2276
+ #: languages/vue.php:545
2277
  msgid "Path has to start with a / and have no spaces"
2278
  msgstr ""
2279
 
2280
+ #: languages/vue.php:549
2281
  msgid "Label (example: %s)"
2282
  msgstr ""
2283
 
2284
+ #: languages/vue.php:553
2285
  msgid "Label can't contain any spaces"
2286
  msgstr ""
2287
 
2288
+ #: languages/vue.php:557
2289
  msgid "Affiliate Links"
2290
  msgstr ""
2291
 
2292
+ #: languages/vue.php:560
2293
  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 %shere%s."
2294
  msgstr ""
2295
 
2296
+ #: languages/vue.php:563
2297
  msgid "Our affiliate link tracking works by setting path for internal links to track as outbound links."
2298
  msgstr ""
2299
 
2300
+ #: languages/vue.php:567
2301
  msgid "Demographics"
2302
  msgstr ""
2303
 
2304
+ #: languages/vue.php:570
2305
  msgid "Enable Demographics and Interests Reports for Remarketing and Advertising"
2306
  msgstr ""
2307
 
2308
+ #: languages/vue.php:573
2309
  msgid "Anonymize IP Addresses"
2310
  msgstr ""
2311
 
2312
+ #: languages/vue.php:576
2313
  msgid "Link Attribution"
2314
  msgstr ""
2315
 
2316
+ #: languages/vue.php:579
2317
  msgid "Enable Enhanced Link Attribution"
2318
  msgstr ""
2319
 
2320
+ #: languages/vue.php:582
2321
  msgid "Enable Anchor Tracking"
2322
  msgstr ""
2323
 
2324
+ #: languages/vue.php:585
2325
  msgid "Enable allowAnchor"
2326
  msgstr ""
2327
 
2328
+ #: languages/vue.php:588
2329
  msgid "Enable allowLinker"
2330
  msgstr ""
2331
 
2332
+ #: languages/vue.php:591
2333
  msgid "Enable Tag Links in RSS"
2334
  msgstr ""
2335
 
2336
+ #: languages/vue.php:594
2337
  msgid "File Downloads"
2338
  msgstr ""
2339
 
2340
+ #: languages/vue.php:597
2341
  msgid "Extensions of Files to Track as Downloads"
2342
  msgstr ""
2343
 
2344
+ #: languages/vue.php:600
2345
  msgid "MonsterInsights will send an event to Google Analytics if a link to a file has one of the above extensions."
2346
  msgstr ""
2347
 
2348
+ #: languages/vue.php:603
2349
  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 %sknowledge base%s. For more information about Remarketing, we refer you to %sGoogle's documentation%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."
2350
  msgstr ""
2351
 
2352
+ #: languages/vue.php:606
2353
  msgid "This adds %sanonymizeIp%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."
2354
  msgstr ""
2355
 
2356
+ #: languages/vue.php:609
2357
  msgid "Add %sEnhanced Link Attribution%s to your tracking code."
2358
  msgstr ""
2359
 
2360
+ #: languages/vue.php:612
2361
  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."
2362
  msgstr ""
2363
 
2364
+ #: languages/vue.php:615
2365
  msgid "This adds %sallowAnchor%s to the create command of the pageview hit tracking code, and makes RSS link tagging use a # as well."
2366
  msgstr ""
2367
 
2368
+ #: languages/vue.php:618
2369
  msgid "Enabling %scross-domain tracking (additional setup required)%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."
2370
  msgstr ""
2371
 
2372
+ #: languages/vue.php:621
2373
  msgid "Do not use this feature if you use FeedBurner, as FeedBurner can do this automatically and better than this plugin can. Check this %shelp page%s for info on how to enable this feature in FeedBurner."
2374
  msgstr ""
2375
 
2376
+ #: languages/vue.php:624
2377
  msgid "Add domain"
2378
  msgstr ""
2379
 
2380
+ #: languages/vue.php:627
2381
  msgid "Domain (example: %s)"
2382
  msgstr ""
2383
 
2384
+ #: languages/vue.php:630
2385
  msgid "Please enter domain names only ( example: example.com not http://example.com ) and not current site domain ( %s )."
2386
  msgstr ""
2387
 
2388
+ #: languages/vue.php:633
2389
  msgid "Cross Domain Tracking"
2390
  msgstr ""
2391
 
2392
+ #: languages/vue.php:636
2393
  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 %sknowledge base%s."
2394
  msgstr ""
2395
 
2396
+ #: languages/vue.php:639
2397
  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 %sGeneral%s tab."
2398
  msgstr ""
2399
 
2400
+ #: languages/vue.php:642
2401
  msgid "Permissions"
2402
  msgstr ""
2403
 
2404
+ #: languages/vue.php:645
2405
  msgid "Allow These User Roles to See Reports"
2406
  msgstr ""
2407
 
2408
+ #: languages/vue.php:648
2409
  msgid "Users that have at least one of these roles will be able to view the reports."
2410
  msgstr ""
2411
 
2412
+ #: languages/vue.php:652
2413
  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."
2414
  msgstr ""
2415
 
2416
+ #: languages/vue.php:655
2417
  msgid "Allow These User Roles to Save Settings"
2418
  msgstr ""
2419
 
2420
+ #: languages/vue.php:658
2421
  msgid "Users that have at least one of these roles will be able to view and save the settings panel."
2422
  msgstr ""
2423
 
2424
+ #: languages/vue.php:661
2425
  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."
2426
  msgstr ""
2427
 
2428
+ #: languages/vue.php:664
2429
  msgid "Exclude These User Roles From Tracking"
2430
  msgstr ""
2431
 
2432
+ #: languages/vue.php:667
2433
  msgid "Users that have at least one of these roles will not be tracked into Google Analytics."
2434
  msgstr ""
2435
 
2436
+ #: languages/vue.php:670
2437
  msgid "Performance"
2438
  msgstr ""
2439
 
2440
+ #: languages/vue.php:673
2441
  msgid "Custom code"
2442
  msgstr ""
2443
 
2444
+ #: languages/vue.php:676
2445
  msgid "Not for the average user: this allows you to add a line of code, to be added before the %spageview is sent%s."
2446
  msgstr ""
2447
 
2448
+ #: languages/vue.php:682
2449
  msgid "You must have the \"unfiltered_html\" capability to view/edit this setting."
2450
  msgstr ""
2451
 
2452
+ #: languages/vue.php:685
2453
  msgid "Hide Admin Bar Reports"
2454
  msgstr ""
2455
 
2456
+ #: languages/vue.php:688
2457
  msgid "Enabled %s- Show reports and dashboard widget.%s"
2458
  msgstr ""
2459
 
2460
+ #: languages/vue.php:691
2461
  msgid "Dashboard Widget Only %s- Disable reports, but show dashboard widget.%s"
2462
  msgstr ""
2463
 
2464
+ #: languages/vue.php:694
2465
  msgid "Disabled %s- Hide reports and dashboard widget.%s"
2466
  msgstr ""
2467
 
2468
+ #: languages/vue.php:697
2469
  msgid "Hello and welcome to MonsterInsights, the best Google Analytics plugin for WordPress. MonsterInsights shows you exactly which content gets the most visit, so you can analyze and optimize it for higher conversions."
2470
  msgstr ""
2471
 
2472
+ #: languages/vue.php:700
2473
  msgid "Over the years, we found that in order to get the most out of Google Analytics, you needed a full time developer who could implement custom tracking, so that Google Analytics would integrate with things like WooCommerce, and track things which Google doesn't by default, like outbound links."
2474
  msgstr ""
2475
 
2476
+ #: languages/vue.php:703
2477
  msgid "Our goal is to take the pain out of analytics, making it simple and easy, by eliminating the need to have to worry about code, putting the best reports directly into the area you already go to (your WordPress dashboard), and adding the most advanced insights and features without complicating our plugin with tons of settings. Quite simply, it should \"just work\"."
2478
  msgstr ""
2479
 
2480
+ #: languages/vue.php:706
2481
  msgid "MonsterInsights is brought to you by the same team that's behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, and the best WordPress forms plugin, WPForms."
2482
  msgstr ""
2483
 
2484
+ #: languages/vue.php:709
2485
  msgid "Yup, we know a thing or two about building awesome products that customer love."
2486
  msgstr ""
2487
 
2488
+ #: languages/vue.php:712
2489
  msgid "The MonsterInsights Team: Syed, Chris, Jay, Mircea, Sunita and Basanta"
2490
  msgstr ""
2491
 
2492
+ #: languages/vue.php:715
2493
  msgid "Import/Export"
2494
  msgstr ""
2495
 
2496
+ #: languages/vue.php:718
2497
  msgid "Import"
2498
  msgstr ""
2499
 
2500
+ #: languages/vue.php:721
2501
  msgid "Import settings from another MonsterInsights website."
2502
  msgstr ""
2503
 
2504
+ #: languages/vue.php:724
2505
  msgid "Export"
2506
  msgstr ""
2507
 
2508
+ #: languages/vue.php:727
2509
  msgid "Export settings to import into another MonsterInsights install."
2510
  msgstr ""
2511
 
2512
+ #: languages/vue.php:730
2513
  msgid "Import Settings"
2514
  msgstr ""
2515
 
2516
+ #: languages/vue.php:733
2517
  msgid "Export Settings"
2518
  msgstr ""
2519
 
2520
+ #: languages/vue.php:736
2521
  msgid "Please choose a file to import"
2522
  msgstr ""
2523
 
2524
+ #: languages/vue.php:739
2525
  msgid "Use the filepicker below to select the settings export file from another site."
2526
  msgstr ""
2527
 
2528
+ #: languages/vue.php:742
2529
  msgid "Use the button below to export a file with your MonsterInsights settings."
2530
  msgstr ""
2531
 
2532
+ #: languages/vue.php:745
2533
  msgid "Uploading file..."
2534
  msgstr ""
2535
 
2536
+ #: languages/vue.php:748
2537
  msgid "File imported"
2538
  msgstr ""
2539
 
2540
+ #: languages/vue.php:751
2541
  msgid "Settings successfully updated!"
2542
  msgstr ""
2543
 
2544
+ #: languages/vue.php:754
2545
  msgid "Error importing settings"
2546
  msgstr ""
2547
 
2548
+ #: languages/vue.php:757
2549
  msgid "Please choose a .json file generated by a MonsterInsights settings export."
2550
  msgstr ""
2551
 
2552
+ #: languages/vue.php:763
2553
  msgid "Ok"
2554
  msgstr ""
2555
 
2556
+ #: languages/vue.php:766
2557
  msgid "Custom Campaign Parameters"
2558
  msgstr ""
2559
 
2560
+ #: languages/vue.php:769
2561
  msgid "The URL builder helps you add parameters to your URLs you use in custom web or email ad campaigns."
2562
  msgstr ""
2563
 
2564
+ #: languages/vue.php:772
2565
  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."
2566
  msgstr ""
2567
 
2568
+ #: languages/vue.php:775
2569
  msgid "Website URL %s"
2570
  msgstr ""
2571
 
2572
+ #: languages/vue.php:778
2573
  msgid "The full website URL (e.g. %s %s%s)"
2574
  msgstr ""
2575
 
2576
+ #: languages/vue.php:781
2577
  msgid "Campaign Source %s"
2578
  msgstr ""
2579
 
2580
+ #: languages/vue.php:784
2581
  msgid "Enter a referrer (e.g. %sfacebook, newsletter, google%s)"
2582
  msgstr ""
2583
 
2584
+ #: languages/vue.php:787
2585
  msgid "Enter a marketing medium (e.g. %scpc, banner, email%s)"
2586
  msgstr ""
2587
 
2588
+ #: languages/vue.php:790
2589
  msgid "Enter a name to easily identify (e.g. %sspring_sale%s)"
2590
  msgstr ""
2591
 
2592
+ #: languages/vue.php:793
2593
  msgid "Enter the paid keyword"
2594
  msgstr ""
2595
 
2596
+ #: languages/vue.php:796
2597
  msgid "Enter something to differentiate ads"
2598
  msgstr ""
2599
 
2600
+ #: languages/vue.php:799
2601
  msgid "Use Fragment"
2602
  msgstr ""
2603
 
2604
+ #: languages/vue.php:802
2605
  msgid "Set the parameters in the fragment portion of the URL %s(not recommended)%s"
2606
  msgstr ""
2607
 
2608
+ #: languages/vue.php:805
2609
  msgid "URL to use"
2610
  msgstr ""
2611
 
2612
+ #: languages/vue.php:808
2613
  msgid "Updates automatically"
2614
  msgstr ""
2615
 
2616
+ #: languages/vue.php:811
2617
  msgid "Copy to clipboard"
2618
  msgstr ""
2619
 
2620
+ #: languages/vue.php:814
2621
  msgid "More Information & Examples"
2622
  msgstr ""
2623
 
2624
+ #: languages/vue.php:817
2625
  msgid "The following table gives a detailed explanation and example of each of the campaign parameters."
2626
  msgstr ""
2627
 
2628
+ #: languages/vue.php:820
2629
  msgid "Campaign Source"
2630
  msgstr ""
2631
 
2632
+ #: languages/vue.php:823
2633
  msgid "Required. Use utm_source to identify a search engine, newsletter name, or other source."
2634
  msgstr ""
2635
 
2636
+ #: languages/vue.php:826
2637
  msgid "Campaign Medium"
2638
  msgstr ""
2639
 
2640
+ #: languages/vue.php:829
2641
  msgid "Use utm_medium to identify a medium such as email or cost-per-click."
2642
  msgstr ""
2643
 
2644
+ #: languages/vue.php:832
2645
  msgid "Campaign Name"
2646
  msgstr ""
2647
 
2648
+ #: languages/vue.php:835
2649
  msgid "Used for keyword analysis. Use utm_campaign to identify a specific product promotion or strategic campaign."
2650
  msgstr ""
2651
 
2652
+ #: languages/vue.php:838
2653
  msgid "Campaign Term"
2654
  msgstr ""
2655
 
2656
+ #: languages/vue.php:841
2657
  msgid "Used for paid search. Use utm_term to note the keywords for this ad."
2658
  msgstr ""
2659
 
2660
+ #: languages/vue.php:844
2661
  msgid "Campaign Content"
2662
  msgstr ""
2663
 
2664
+ #: languages/vue.php:847
2665
  msgid "Used for A/B testing and content-targeted ads. Use utm_content to differentiate ads or links that point to the same URL."
2666
  msgstr ""
2667
 
2668
+ #: languages/vue.php:850
2669
  msgid "Example: %s"
2670
  msgstr ""
2671
 
2672
+ #: languages/vue.php:853
2673
  msgid "Examples: %s"
2674
  msgstr ""
2675
 
2676
+ #: languages/vue.php:856
2677
  msgid "About Campaigns"
2678
  msgstr ""
2679
 
2680
+ #: languages/vue.php:859
2681
  msgid "About Custom Campaigns"
2682
  msgstr ""
2683
 
2684
+ #: languages/vue.php:862
2685
  msgid "Best practices for creating Custom Campaigns"
2686
  msgstr ""
2687
 
2688
+ #: languages/vue.php:865
2689
  msgid "About the Referral Traffic report"
2690
  msgstr ""
2691
 
2692
+ #: languages/vue.php:868
2693
  msgid "About traffic source dimensions"
2694
  msgstr ""
2695
 
2696
+ #: languages/vue.php:871
2697
  msgid "AdWords Auto-Tagging"
2698
  msgstr ""
2699
 
2700
+ #: languages/vue.php:874
2701
  msgid "Additional Information"
2702
  msgstr ""
2703
 
2704
+ #: languages/vue.php:877
2705
  msgid "GDPR Guide"
2706
  msgstr ""
2707
 
2708
+ #: languages/vue.php:880
2709
  msgid "Compliance with European data laws including GDPR can be confusing and time-consuming. In order to help MonsterInsights users comply with these laws, we’ve created an addon that automates a lot of the necessary configuration changes for you. "
2710
  msgstr ""
2711
 
2712
+ #: languages/vue.php:883
2713
  msgid "How to install and activate MonsterInsights addons"
2714
  msgstr ""
2715
 
2716
+ #: languages/vue.php:886
2717
  msgid "The process for installing and activating addons is quick and easy after you install the MonsterInsights plugin. In this guide we’ll walk you through the process, step by step."
2718
  msgstr ""
2719
 
2720
+ #: languages/vue.php:889
2721
  msgid "Enabling eCommerce Tracking and Reports"
2722
  msgstr ""
2723
 
2724
+ #: languages/vue.php:892
2725
  msgid "Want to track your eCommerce sales data for your WooCommerce, MemberPress, or Easy Digital Downloads store with MonsterInsights? In this guide, we’ll show you how to enable eCommerce tracking in Google Analytics in just a few clicks."
2726
  msgstr ""
2727
 
2728
+ #: languages/vue.php:895
2729
  msgid "Read Documentation"
2730
  msgstr ""
2731
 
2732
+ #: languages/vue.php:898
2733
  msgid "Getting Started with MonsterInsights"
2734
  msgstr ""
2735
 
2736
+ #: languages/vue.php:901
2737
  msgid "MonsterInsights is the easiest analytics solution on the market to get started with, as we walk you through exactly what you need to do, in plain english, using our 3 minute setup wizard."
2738
  msgstr ""
2739
 
2740
+ #: languages/vue.php:904
2741
  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."
2742
  msgstr ""
2743
 
2744
+ #: languages/vue.php:907
2745
  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!."
2746
  msgstr ""
2747
 
2748
+ #: languages/vue.php:910
2749
  msgid "Launch the wizard!"
2750
  msgstr ""
2751
 
2752
+ #: languages/vue.php:913
2753
  msgid "Get MonsterInsights Pro and Unlock all the Powerful Features"
2754
  msgstr ""
2755
 
2756
+ #: languages/vue.php:916
2757
  msgid "Thanks for being a loyal MonsterInsights Lite user. %sUpgrade to MonsterInsights Pro%s to unlock all the awesome features and experience why MonsterInsights is consistently rated the best Google Analytics solution for WordPress."
2758
  msgstr ""
2759
 
2760
+ #: languages/vue.php:919
2761
  msgid "Universal Tracking across devices and campaigns with just a few clicks."
2762
  msgstr ""
2763
 
2764
+ #: languages/vue.php:922
2765
  msgid "See your website analytics reports inside the WordPress dashboard"
2766
  msgstr ""
2767
 
2768
+ #: languages/vue.php:925
2769
  msgid "Get real-time stats right inside WordPress"
2770
  msgstr ""
2771
 
2772
+ #: languages/vue.php:928
2773
  msgid "1-click Google Analytics Enhanced Ecommerce tracking"
2774
  msgstr ""
2775
 
2776
+ #: languages/vue.php:931
2777
  msgid "Get detailed stats for each post and page."
2778
  msgstr ""
2779
 
2780
+ #: languages/vue.php:934
2781
  msgid "Automatically track clicks on your affiliate links and ads."
2782
  msgstr ""
2783
 
2784
+ #: languages/vue.php:937
2785
  msgid "Make Google Analytics GDPR compliant automatically"
2786
  msgstr ""
2787
 
2788
+ #: languages/vue.php:940
2789
  msgid "Setup tracking for authors, categories, tags, custom post types, users and more"
2790
  msgstr ""
2791
 
2792
+ #: languages/vue.php:943
2793
  msgid "Enable Google Optimize for A/B testing, adjust sample speed & sample rate."
2794
  msgstr ""
2795
 
2796
+ #: languages/vue.php:946
2797
  msgid "More advanced features"
2798
  msgstr ""
2799
 
2800
+ #: languages/vue.php:950
2801
  msgid "Get MonsterInsights Pro Today and Unlock all the Powerful Features"
2802
  msgstr ""
2803
 
2804
+ #: languages/vue.php:954
2805
  msgid "Bonus: MonsterInsights Lite users get %s50%% off regular price%s, automatically applied at checkout."
2806
  msgstr ""
2807
 
2808
+ #: languages/vue.php:957
2809
  msgid "How to Connect to Google Analytics"
2810
  msgstr ""
2811
 
2812
+ #: languages/vue.php:960
2813
  msgid "After you install MonsterInsights, you’ll need to connect your WordPress site with your Google Analytics account. MonsterInsights makes the process easy, with no coding required."
2814
  msgstr ""
2815
 
2816
+ #: languages/vue.php:963
2817
  msgid "Guide and Checklist for Advanced Insights"
2818
  msgstr ""
2819
 
2820
+ #: languages/vue.php:966
2821
  msgid "Our goal is to make it as easy as possible for you to measure and track your stats so you can grow your business. This easy-to-follow guide and checklist will get you set up with MonsterInsights’ advanced tracking."
2822
  msgstr ""
2823
 
2824
+ #: languages/vue.php:969
2825
  msgid "WordPress Admin Area Reports"
2826
  msgstr ""
2827
 
2828
+ #: languages/vue.php:972
2829
  msgid "Standard Reports"
2830
  msgstr ""
2831
 
2832
+ #: languages/vue.php:975
2833
  msgid "Overview Reports for the last 30 days."
2834
  msgstr ""
2835
 
2836
+ #: languages/vue.php:978
2837
  msgid "Advanced Reports"
2838
  msgstr ""
2839
 
2840
+ #: languages/vue.php:981
2841
  msgid "Publisher, eCommerce, Search Console, Custom Dimensions, Forms and Real-Time with custom date period selection"
2842
  msgstr ""
2843
 
2844
+ #: languages/vue.php:984
2845
  msgid "Dashboard Widget"
2846
  msgstr ""
2847
 
2848
+ #: languages/vue.php:987
2849
  msgid "Basic Widget"
2850
  msgstr ""
2851
 
2852
+ #: languages/vue.php:990
2853
  msgid "Overview Report Synopsis"
2854
  msgstr ""
2855
 
2856
+ #: languages/vue.php:993
2857
  msgid "Advanced Dashboard Widget"
2858
  msgstr ""
2859
 
2860
+ #: languages/vue.php:996
2861
  msgid "Includes the complete Overview report, Publisher reports and 6 different eCommerce reports"
2862
  msgstr ""
2863
 
2864
+ #: languages/vue.php:999
2865
  msgid "Publisher Reports"
2866
  msgstr ""
2867
 
2868
+ #: languages/vue.php:1002
2869
  msgid "Advanced Publisher Reports & Tracking"
2870
  msgstr ""
2871
 
2872
+ #: languages/vue.php:1005
2873
  msgid "View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more"
2874
  msgstr ""
2875
 
2876
+ #: languages/vue.php:1011
2877
  msgid "Custom Dimensions"
2878
  msgstr ""
2879
 
2880
+ #: languages/vue.php:1015
2881
  msgid "Not Available"
2882
  msgstr ""
2883
 
2884
+ #: languages/vue.php:1018
2885
  msgid "Complete Custom Dimensions Tracking"
2886
  msgstr ""
2887
 
2888
+ #: languages/vue.php:1021
2889
  msgid "Track and measure by the Author, Post Type, Category, Tags, SEO Score, Focus Keyword, Logged-in User, User ID and Published Time of each post and page"
2890
  msgstr ""
2891
 
2892
+ #: languages/vue.php:1027
2893
  msgid "Limited support"
2894
  msgstr ""
2895
 
2896
+ #: languages/vue.php:1030
2897
  msgid "Priority Support"
2898
  msgstr ""
2899
 
2900
+ #: languages/vue.php:1033
2901
  msgid "Get the most out of MonsterInsights by upgrading to Pro and unlocking all of the powerful features."
2902
  msgstr ""
2903
 
2904
+ #: languages/vue.php:1036
2905
  msgid "Feature"
2906
  msgstr ""
2907
 
2908
+ #: languages/vue.php:1039
2909
  msgid "Lite"
2910
  msgstr ""
2911
 
2912
+ #: languages/vue.php:1042
2913
  msgid "Pro"
2914
  msgstr ""
2915
 
2916
+ #: languages/vue.php:1046
2917
  msgid "Universal Tracking"
2918
  msgstr ""
2919
 
2920
+ #: languages/vue.php:1049
2921
  msgid "Included"
2922
  msgstr ""
2923
 
2924
+ #: languages/vue.php:1052
2925
  msgid "Custom Google Analytics Link Tracking"
2926
  msgstr ""
2927
 
2928
+ #: languages/vue.php:1055
2929
  msgid "Standard Tracking"
2930
  msgstr ""
2931
 
2932
+ #: languages/vue.php:1058
2933
  msgid "Advanced Tracking"
2934
  msgstr ""
2935
 
2936
+ #: languages/vue.php:1061
2937
  msgid "Automatic tracking of outbound/external, file download, affiliate, email and telephone links and our simple Custom Link Attribution markup for custom link tracking"
2938
  msgstr ""
2939
 
2940
+ #: languages/vue.php:1064
2941
  msgid "Scroll tracking as well as tracking on Google Accelerated Mobile Pages (AMP) and Facebook Instant Articles for Publishers"
2942
  msgstr ""
2943
 
2944
+ #: languages/vue.php:1067
2945
  msgid "No-Code-Needed Tracking Features"
2946
  msgstr ""
2947
 
2948
+ #: languages/vue.php:1070
2949
  msgid "Basic Tracking Options"
2950
  msgstr ""
2951
 
2952
+ #: languages/vue.php:1073
2953
  msgid "Cross-domain tracking, anonymization of IP addresses, and automatic exclusion of administrators from tracking"
2954
  msgstr ""
2955
 
2956
+ #: languages/vue.php:1076
2957
  msgid "Advanced Tracking Options"
2958
  msgstr ""
2959
 
2960
+ #: languages/vue.php:1079
2961
  msgid "Easily integrate Google Optimize as well as adjust recordings of site speed and the sample rate of visitors"
2962
  msgstr ""
2963
 
2964
+ #: languages/vue.php:1082
2965
  msgid "eCommerce Tracking"
2966
  msgstr ""
2967
 
2968
+ #: languages/vue.php:1085
2969
  msgid "One-click Complete eCommerce tracking"
2970
  msgstr ""
2971
 
2972
+ #: languages/vue.php:1088
2973
  msgid "Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required"
2974
  msgstr ""
2975
 
2976
+ #: languages/vue.php:1092
2977
  msgid "Forms Tracking"
2978
  msgstr ""
2979
 
2980
+ #: languages/vue.php:1095
2981
  msgid "One-click Form Events Tracking"
2982
  msgstr ""
2983
 
2984
+ #: languages/vue.php:1098
2985
  msgid "WPForms, Ninja Forms, Contact Form 7, Gravity Forms and any other WordPress form plugin"
2986
  msgstr ""
2987
 
2988
+ #: languages/vue.php:1101
2989
  msgid "MonsterInsights Recommends WPForms"
2990
  msgstr ""
2991
 
2992
+ #: languages/vue.php:1104
2993
  msgid "Built by the folks behind MonsterInsights, WPForms is the most beginner friendly form plugin in the market."
2994
  msgstr ""
2995
 
2996
+ #: languages/vue.php:1107
2997
  msgid "Used on over 1,000,000 websites!"
2998
  msgstr ""
2999
 
3000
+ #: languages/vue.php:1110
3001
  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!"
3002
  msgstr ""
3003
 
3004
+ #: languages/vue.php:1113
3005
  msgid "Skip this Step"
3006
  msgstr ""
3007
 
3008
+ #: languages/vue.php:1116
3009
  msgid "Continue & Install WPForms"
3010
  msgstr ""
3011
 
3012
+ #: languages/vue.php:1120
3013
  msgid "Installing..."
3014
  msgstr ""
3015
 
3016
+ #: languages/vue.php:1123
3017
  msgid "Awesome, You're All Set!"
3018
  msgstr ""
3019
 
3020
+ #: languages/vue.php:1126
3021
  msgid "MonsterInsights is all set up and ready to use. We've verified that the tracking code is deployed properly and collecting data."
3022
  msgstr ""
3023
 
3024
+ #: languages/vue.php:1129
3025
  msgid "%sPlease Note:%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."
3026
  msgstr ""
3027
 
3028
+ #: languages/vue.php:1132
3029
  msgid "%sSubscribe to the MonsterInsights blog%s for tips on how to get more traffic and grow your business."
3030
  msgstr ""
3031
 
3032
+ #: languages/vue.php:1135
3033
  msgid "Finish Setup & Exit Wizard"
3034
  msgstr ""
3035
 
3036
+ #: languages/vue.php:1138
3037
  msgid "Checking your website..."
3038
  msgstr ""
3039
 
3040
+ #: languages/vue.php:1141
3041
  msgid "Recommended Settings"
3042
  msgstr ""
3043
 
3044
+ #: languages/vue.php:1144
3045
  msgid "MonsterInsights recommends the following settings based on your configuration."
3046
  msgstr ""
3047
 
3048
+ #: languages/vue.php:1147
3049
  msgid "Events Tracking"
3050
  msgstr ""
3051
 
3052
+ #: languages/vue.php:1150
3053
  msgid "Must have for all click tracking on site."
3054
  msgstr ""
3055
 
3056
+ #: languages/vue.php:1153
3057
  msgid "MonsterInsights uses an advanced system to automatically detect all outbound links, download links, affiliate links, telephone links, mail links, and more automatically. We do all the work for you so you don't have to write any code."
3058
  msgstr ""
3059
 
3060
+ #: languages/vue.php:1156
3061
  msgid "Enhanced Link Attribution"
3062
  msgstr ""
3063
 
3064
+ #: languages/vue.php:1159
3065
  msgid "Improves the accuracy of your In-Page Analytics."
3066
  msgstr ""
3067
 
3068
+ #: languages/vue.php:1162
3069
  msgid "MonsterInsights will automatically help Google determine which links are unique and where they are on your site so that your In-Page Analytics reporting will be more accurate."
3070
  msgstr ""
3071
 
3072
+ #: languages/vue.php:1165
3073
  msgid "Install Updates Automatically"
3074
  msgstr ""
3075
 
3076
+ #: languages/vue.php:1168
3077
  msgid "Get the latest features, bug fixes, and security updates as they are released."
3078
  msgstr ""
3079
 
3080
+ #: languages/vue.php:1171
3081
  msgid "To ensure you get the latest bugfixes and security updates and avoid needing to spend time logging into your WordPress site to update MonsterInsights, we offer the ability to automatically have MonsterInsights update itself."
3082
  msgstr ""
3083
 
3084
+ #: languages/vue.php:1174
3085
  msgid "File Download Tracking"
3086
  msgstr ""
3087
 
3088
+ #: languages/vue.php:1177
3089
  msgid "Helps you see file downloads data."
3090
  msgstr ""
3091
 
3092
+ #: languages/vue.php:1180
3093
  msgid "MonsterInsights will automatically track downloads of common file types from links you have inserted onto your website. For example: want to know how many of your site's visitors have downloaded a PDF or other file you offer your visitors to download on your site? MonsterInsights makes this both easy, and code-free! You can customize the file types to track at any time from our settings panel."
3094
  msgstr ""
3095
 
3096
+ #: languages/vue.php:1183
3097
  msgid "Helps you increase affiliate revenue."
3098
  msgstr ""
3099
 
3100
+ #: languages/vue.php:1186
3101
  msgid "MonsterInsights will automatically help you track affiliate links that use internal looking urls like example.com/go/ or example.com/refer/. You can add custom affiliate patterns on our settings panel when you finish the onboarding wizard."
3102
  msgstr ""
3103
 
3104
+ #: languages/vue.php:1189
3105
  msgid "Affiliate Link Tracking"
3106
  msgstr ""
3107
 
3108
+ #: languages/vue.php:1192
3109
  msgid "Who Can See Reports"
3110
  msgstr ""
3111
 
3112
+ #: languages/vue.php:1195
3113
  msgid "These user roles will be able to access MonsterInsights's reports in the WordPress admin area."
3114
  msgstr ""
3115
 
3116
+ #: languages/vue.php:1199
3117
  msgid "Save and continue"
3118
  msgstr ""
3119
 
3120
+ #: languages/vue.php:1202
3121
  msgid "Events Tracking is enabled the moment you set up MonsterInsights"
3122
  msgstr ""
3123
 
3124
+ #: languages/vue.php:1205
3125
  msgid "Enhanced Link Attribution is enabled the moment you set up MonsterInsights"
3126
  msgstr ""
3127
 
3128
+ #: languages/vue.php:1208
3129
  msgid "Connect MonsterInsights to Your Website"
3130
  msgstr ""
3131
 
3132
+ #: languages/vue.php:1211
3133
  msgid "MonsterInsights connects Google Analytics to WordPress and shows you stats that matter."
3134
  msgstr ""
3135
 
3136
+ #: languages/vue.php:1214
3137
  msgid "vs. Previous Day"
3138
  msgstr ""
3139
 
3140
+ #: languages/vue.php:1217
3141
  msgid "No change"
3142
  msgstr ""
3143
 
3144
+ #: languages/vue.php:1222
3145
  msgid "Show"
3146
  msgstr ""
3147
 
3148
+ #: languages/vue.php:1225
3149
  msgid "Right Now"
3150
  msgstr ""
3151
 
3152
+ #: languages/vue.php:1228
3153
  msgid "Active users on site"
3154
  msgstr ""
3155
 
3156
+ #: languages/vue.php:1231
3157
  msgid "The real-time graph of visitors over time is not currently available for this site. Please try again later."
3158
  msgstr ""
3159
 
3160
+ #: languages/vue.php:1234
3161
  msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged in site administrators, certain mobile users, and users who match a Google Analytics filter."
3162
  msgstr ""
3163
 
3164
+ #: languages/vue.php:1237
3165
  msgid "The real-time report automatically updates approximately every 60 seconds."
3166
  msgstr ""
3167
 
3168
+ #: languages/vue.php:1240
3169
  msgid "The real-time report was last updated %s seconds ago."
3170
  msgstr ""
3171
 
3172
+ #: languages/vue.php:1243
3173
  msgid "The latest data will be automatically shown on this page when it becomes available."
3174
  msgstr ""
3175
 
3176
+ #: languages/vue.php:1246
3177
  msgid "There is no need to refresh the browser (doing so won't have any effect)."
3178
  msgstr ""
3179
 
3180
+ #: languages/vue.php:1249
3181
  msgid "Pageviews Per Minute"
3182
  msgstr ""
3183
 
3184
+ #: languages/vue.php:1252
3185
  msgid "Top Pages"
3186
  msgstr ""
3187
 
3188
+ #: languages/vue.php:1255
3189
  msgid "No pageviews currently."
3190
  msgstr ""
3191
 
3192
+ #: languages/vue.php:1258
3193
  msgid "Page"
3194
  msgstr ""
3195
 
3196
+ #: languages/vue.php:1261
3197
  msgid "Pageview Count"
3198
  msgstr ""
3199
 
3200
+ #: languages/vue.php:1264
3201
  msgid "Percent of Total"
3202
  msgstr ""
3203
 
3204
+ #: languages/vue.php:1267
3205
  msgid "This is the number of active users currently on your site."
3206
  msgstr ""
3207
 
3208
+ #: languages/vue.php:1270
3209
  msgid "This graph shows the number of pageviews for each of the last 30 minutes."
3210
  msgstr ""
3211
 
3212
+ #: languages/vue.php:1273
3213
  msgid "This list shows the top pages users are currently viewing on your site."
3214
  msgstr ""
3215
 
3216
+ #: languages/vue.php:1276
3217
  msgid "View All Real-Time Pageviews"
3218
  msgstr ""
3219
 
3220
+ #: languages/vue.php:1279
3221
  msgid "View All Real-Time Traffic Sources"
3222
  msgstr ""
3223
 
3224
+ #: languages/vue.php:1282
3225
  msgid "View All Real-Time Traffic by Country"
3226
  msgstr ""
3227
 
3228
+ #: languages/vue.php:1285
3229
  msgid "View All Real-Time Traffic by City"
3230
  msgstr ""
3231
 
3232
+ #: languages/vue.php:1288
3233
  msgid "Welcome to MonsterInsights!"
3234
  msgstr ""
3235
 
3236
+ #: languages/vue.php:1291
3237
  msgid "Let's get you set up."
3238
  msgstr ""
3239
 
3240
+ #: languages/vue.php:1295
3241
  msgid "Save and Continue"
3242
  msgstr ""
3243
 
3244
+ #: languages/vue.php:1298
3245
  msgid "Which category best describes your website?"
3246
  msgstr ""
3247
 
3248
+ #: languages/vue.php:1301
3249
  msgid "We will recommend the optimal settings for MonsterInsights based on your choice."
3250
  msgstr ""
3251
 
3252
+ #: languages/vue.php:1304
3253
  msgid "Business Website"
3254
  msgstr ""
3255
 
3256
+ #: languages/vue.php:1307
3257
  msgid "Publisher %s(Blog)%s"
3258
  msgstr ""
3259
 
3260
+ #: languages/vue.php:1310
3261
  msgid "Ecommerce"
3262
  msgstr ""
3263
 
3264
+ #: languages/vue.php:1313
3265
  msgid "See who's viewing and submitting your forms, so you can increase your conversion rate."
3266
  msgstr ""
3267
 
3268
+ #: languages/vue.php:1317
3269
  msgid "Google Optimize"
3270
  msgstr ""
3271
 
3272
+ #: languages/vue.php:1320
3273
  msgid "Use Google Optimize to retarget your website visitors and perform A/B split tests with ease."
3274
  msgstr ""
3275
 
3276
+ #: languages/vue.php:1323
3277
  msgid "Add Custom Dimensions and track who's the most popular author on your site, which post types get the most traffic, and more"
3278
  msgstr ""
3279
 
3280
+ #: languages/vue.php:1326
3281
  msgid "Your license key for MonsterInsights has expired. %sPlease click here to renew your license key.%s"
3282
  msgstr ""
3283
 
3284
+ #: languages/vue.php:1339
3285
  #: lite/includes/admin/helpers.php:83
3286
  msgid "Upgrade to MonsterInsights Pro"
3287
  msgstr ""
3288
 
3289
+ #: languages/vue.php:1342
3290
  msgid "Show in widget mode"
3291
  msgstr ""
3292
 
3293
+ #: languages/vue.php:1345
3294
  msgid "Show in full-width mode"
3295
  msgstr ""
3296
 
3297
+ #: languages/vue.php:1348
3298
  msgid "Last 30 Days Insights for:"
3299
  msgstr ""
3300
 
3301
+ #: languages/vue.php:1351
3302
  msgid "Your Website"
3303
  msgstr ""
3304
 
3305
+ #: languages/vue.php:1354
3306
  msgid "Avg. Duration"
3307
  msgstr ""
3308
 
3309
+ #: languages/vue.php:1357
3310
  msgid "More data is available"
3311
  msgstr ""
3312
 
3313
+ #: languages/vue.php:1360
3314
  msgid "Want to see page-specific stats?"
3315
  msgstr ""
3316
 
3317
+ #: languages/vue.php:1363
3318
  msgid "Can't load settings. Error: %s, %s"
3319
  msgstr ""
3320
 
3321
+ #: languages/vue.php:1369
3322
  msgid "You appear to be offline."
3323
  msgstr ""
3324
 
3325
+ #: languages/vue.php:1372
3326
  msgid "In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %sLearn More%s"
3327
  msgstr ""
3328
 
3329
+ #: languages/vue.php:1375
3330
  msgid "In order for the MonsterInsights Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %s%s Plugin%s | %sLearn More%s"
3331
  msgstr ""
3332
 
3333
+ #: languages/vue.php:1378
3334
  msgid "In order for the MonsterInsights Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %sLearn More%s"
3335
  msgstr ""
3336
 
3337
+ #: languages/vue.php:1381
3338
  msgid "In order for the MonsterInsights Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %s%s Plugin%s | %sLearn More%s"
3339
  msgstr ""
3340
 
3341
+ #: languages/vue.php:1384
3342
  msgid "Recommended Addons"
3343
  msgstr ""
3344
 
3345
+ #: languages/vue.php:1387
3346
  msgid "To unlock more features consider upgrading to PRO. As a valued MonsterInsights Lite user you receive 50% off, automatically applied at checkout!"
3347
  msgstr ""
3348
 
3349
+ #: languages/vue.php:1390
3350
  msgid "Other Addons"
3351
  msgstr ""
3352
 
3353
+ #: languages/vue.php:1393
3354
  msgid "View all MonsterInsights addons"
3355
  msgstr ""
3356
 
3357
+ #: languages/vue.php:1396
3358
  msgid "Deactivating..."
3359
  msgstr ""
3360
 
3361
+ #: languages/vue.php:1399
3362
  msgid "Deactivate"
3363
  msgstr ""
3364
 
3365
+ #: languages/vue.php:1402
3366
  msgid "Status: %s"
3367
  msgstr ""
3368
 
3369
+ #: languages/vue.php:1405
3370
  msgid "Not Installed"
3371
  msgstr ""
3372
 
3373
+ #: languages/vue.php:1408
3374
  msgid "Network Active"
3375
  msgstr ""
3376
 
3377
+ #: languages/vue.php:1411
3378
  msgid "Active"
3379
  msgstr ""
3380
 
3381
+ #: languages/vue.php:1414
3382
  msgid "Inactive"
3383
  msgstr ""
3384
 
3385
+ #: languages/vue.php:1423
3386
  msgid "Activating..."
3387
  msgstr ""
3388
 
3389
+ #: languages/vue.php:1426
3390
  msgid "There was an issue retrieving the addons for this site. Please click on the button below the refresh the addons data."
3391
  msgstr ""
3392
 
3393
+ #: languages/vue.php:1429
3394
  msgid "No addons found."
3395
  msgstr ""
3396
 
3397
+ #: languages/vue.php:1432
3398
  msgid "Refresh Addons"
3399
  msgstr ""
3400
 
3401
+ #: languages/vue.php:1435
3402
  msgid "Refreshing Addons"
3403
  msgstr ""
3404
 
3405
+ #: languages/vue.php:1438
3406
  msgid "Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %sreceive 50%% off%s, automatically applied at checkout!"
3407
  msgstr ""
3408
 
3409
+ #: languages/vue.php:1441
3410
  msgid "See All Your Important Store Metrics in One Place"
3411
  msgstr ""
3412
 
3413
+ #: languages/vue.php:1444
3414
  msgid "Get an Answer to All Your Top Ecommerce Questions From a Single Report"
3415
  msgstr ""
3416
 
3417
+ #: languages/vue.php:1447
3418
  msgid "ONE-CLICK INTEGRATIONS"
3419
  msgstr ""
3420
 
3421
+ #: languages/vue.php:1450
3422
  msgid "Enable Ecommerce Tracking and Grow Your Business with Confidence"
3423
  msgstr ""
3424
 
3425
+ #: languages/vue.php:1453
3426
  msgid "MonsterInsights Ecommerce Addon makes it easy to setup enhanced eCommerce tracking, so you can see all your important eCommerce metrics like total revenue, conversion rate, average order value, top products, top referral sources, and more in a single report right inside your WordPress dashboard."
3427
  msgstr ""
3428
 
3429
+ #: languages/vue.php:1456
3430
  msgid "Upgrade to Pro and unlock addons and other great features. %sSave 50%% automatically!%s"
3431
  msgstr ""
3432
 
3433
+ #: languages/vue.php:1459
3434
  msgid "Add your MonsterInsights license key from the email receipt or account area. %sRetrieve your license key%s."
3435
  msgstr ""
3436
 
3437
+ #: languages/vue.php:1463
3438
  msgid "Miscellaneous"
3439
  msgstr ""
3440
 
3441
+ #: languages/vue.php:1467
3442
  msgid "Hides plugin announcements and update details. This includes critical notices we use to inform about deprecations and important required configuration changes."
3443
  msgstr ""
3444
 
3445
+ #: languages/vue.php:1471
3446
  msgid "Hide Announcements"
3447
  msgstr ""
3448
 
3449
+ #: languages/vue.php:1474
3450
  msgid "Show Overview Reports"
3451
  msgstr ""
3452
 
3453
+ #: languages/vue.php:1477
3454
  msgid "Show Publishers Reports"
3455
  msgstr ""
3456
 
3457
+ #: languages/vue.php:1480
3458
  msgid "Show eCommerce Reports"
3459
  msgstr ""
3460
 
3461
+ #: languages/vue.php:1483
3462
  msgid "Available in PRO version"
3463
  msgstr ""
3464
 
3465
+ #: languages/vue.php:1486
3466
  msgid "No options available"
3467
  msgstr ""
3468
 
3469
+ #: languages/vue.php:1489
3470
  msgid "Reset to default"
3471
  msgstr ""
3472
 
3473
+ #: languages/vue.php:1492
3474
  msgid "The value entered does not match the required format"
3475
  msgstr ""
3476
 
3477
+ #: languages/vue.php:1495
3478
  msgid "%s can't be empty."
3479
  msgstr ""
3480
 
3481
+ #: languages/vue.php:1498
3482
  msgid "Duplicate values are not allowed."
3483
  msgstr ""
3484
 
3485
+ #: languages/vue.php:1501
3486
  msgid "Add Another Link Path"
3487
  msgstr ""
3488
 
3489
+ #: languages/vue.php:1504
3490
  msgid "Remove row"
3491
  msgstr ""
3492
 
3493
+ #: languages/vue.php:1507
3494
  msgid "Upgrade to MonsterInsights Pro to Unlock More Actionable Insights"
3495
  msgstr ""
3496
 
3497
+ #: languages/vue.php:1510
3498
  msgid "It's easy to double your traffic and sales when you know exactly how people find and use your website. MonsterInsights Pro shows you the stats that matter!"
3499
  msgstr ""
3500
 
3501
+ #: languages/vue.php:1513
3502
  msgid "Upgrade to MonsterInsights Pro and Save 50% OFF!"
3503
  msgstr ""
3504
 
3505
+ #: languages/vue.php:1516
3506
  msgid "Use coupon code %sLITEUPGRADE%s"
3507
  msgstr ""
3508
 
3509
+ #: languages/vue.php:1519
3510
  msgid "Facebook Instant Articles"
3511
  msgstr ""
3512
 
3513
+ #: languages/vue.php:1522
3514
  msgid "Want to expand your website audience beyond your website with Facebook Instant Articles? Upgrade to MonsterInsights Pro."
3515
  msgstr ""
3516
 
3517
+ #: languages/vue.php:1525
3518
  msgid "Scroll Tracking"
3519
  msgstr ""
3520
 
3521
+ #: languages/vue.php:1528
3522
  msgid "Scroll depth tracking in web analytics is one of those things you simply must do, especially if you have a content-heavy site."
3523
  msgstr ""
3524
 
3525
+ #: languages/vue.php:1532
3526
  msgid "Can't save settings. Error: %s, %s"
3527
  msgstr ""
3528
 
3529
+ #: languages/vue.php:1535
3530
  msgid "You appear to be offline. Settings not saved."
3531
  msgstr ""
3532
 
3533
+ #: languages/vue.php:1539
3534
  msgid "Authenticating"
3535
  msgstr ""
3536
 
3537
+ #: languages/vue.php:1544
3538
  msgid "Re-Authenticating"
3539
  msgstr ""
3540
 
3541
+ #: languages/vue.php:1547
3542
  msgid "Verifying Credentials"
3543
  msgstr ""
3544
 
3545
+ #: languages/vue.php:1550
3546
  msgid "Your site is connected to MonsterInsights!"
3547
  msgstr ""
3548
 
3549
+ #: languages/vue.php:1553
3550
  msgid "Deauthenticating"
3551
  msgstr ""
3552
 
3553
+ #: languages/vue.php:1556
3554
  msgid "You've disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won't see reports anymore."
3555
  msgstr ""
3556
 
3557
+ #: languages/vue.php:1560
3558
  msgid "Connect MonsterInsights"
3559
  msgstr ""
3560
 
3561
+ #: languages/vue.php:1563
3562
  msgid "Verify Credentials"
3563
  msgstr ""
3564
 
3565
+ #: languages/vue.php:1568
3566
  msgid "Reconnect MonsterInsights"
3567
  msgstr ""
3568
 
3569
+ #: languages/vue.php:1571
3570
  msgid "Website Profile"
3571
  msgstr ""
3572
 
3573
+ #: languages/vue.php:1574
3574
  msgid "Active Profile"
3575
  msgstr ""
3576
 
3577
+ #: languages/vue.php:1578
3578
  msgid "Your website profile has been set at the network level of your WordPress Multisite."
3579
  msgstr ""
3580
 
3581
+ #: languages/vue.php:1582
3582
  msgid "If you would like to use a different profile for this subsite, you can authenticate below."
3583
  msgstr ""
3584
 
3585
+ #: languages/vue.php:1586
3586
  msgid "Manually enter your UA code"
3587
  msgstr ""
3588
 
3589
+ #: languages/vue.php:1590
3590
  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."
3591
  msgstr ""
3592
 
3593
+ #: languages/vue.php:1593
3594
  msgid "Or manually enter UA code (limited functionality)"
3595
  msgstr ""
3596
 
3597
+ #: languages/vue.php:1596
3598
  msgid "Force Deauthenticate"
3599
  msgstr ""
3600
 
3601
+ #: languages/vue.php:1599
3602
  msgid "Disconnect MonsterInsights"
3603
  msgstr ""
3604
 
3605
+ #: languages/vue.php:1602
3606
  msgid "Can't load errors. Error: %s, %s"
3607
  msgstr ""
3608
 
3609
+ #: languages/vue.php:1606
3610
  msgid "Google AMP"
3611
  msgstr ""
3612
 
3613
+ #: languages/vue.php:1609
3614
  msgid "Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking."
3615
  msgstr ""
3616
 
3617
+ #: languages/vue.php:1613
3618
  msgid "Upgrade"
3619
  msgstr ""
3620
 
3621
+ #: languages/vue.php:1616
3622
  msgid ""
3623
  "The EU Compliance addon allows you to improve compliance with GDPR\n"
3624
  " and other privacy regulations."
3625
  msgstr ""
3626
 
3627
+ #: languages/vue.php:1620
3628
  msgid "EU Compliance"
3629
  msgstr ""
3630
 
3631
+ #: languages/vue.php:1623
3632
  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."
3633
  msgstr ""
3634
 
3635
+ #: languages/vue.php:1627
3636
  msgid "Usage Tracking"
3637
  msgstr ""
3638
 
3639
+ #: languages/vue.php:1631
3640
  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."
3641
  msgstr ""
3642
 
3643
+ #: languages/vue.php:1634
3644
  msgid "Allow usage tracking"
3645
  msgstr ""
3646
 
3647
+ #: languages/vue.php:1638
3648
  msgid "Complete documentation on usage tracking is available %shere%s."
3649
  msgstr ""
3650
 
3651
+ #: languages/vue.php:1641
3652
  msgid "Thank you for being a loyal MonsterInsights Lite user."
3653
  msgstr ""
3654
 
3655
+ #: languages/vue.php:1644
3656
  msgid "Upgrade to MonsterInsights Pro and unlock all the awesome features."
3657
  msgstr ""
3658
 
3659
+ #: languages/vue.php:1647
3660
  msgid "Use coupon code %s to get 50%% off."
3661
  msgstr ""
3662
 
3663
+ #: languages/vue.php:1650
3664
  msgid "Dashboard widget"
3665
  msgstr ""
3666
 
3667
+ #: languages/vue.php:1653
3668
  msgid "Enhanced Ecommerce"
3669
  msgstr ""
3670
 
3671
+ #: languages/vue.php:1656
3672
  msgid "Banner Ads"
3673
  msgstr ""
3674
 
3675
+ #: languages/vue.php:1660
3676
  msgid "Author Tracking"
3677
  msgstr ""
3678
 
3679
+ #: languages/vue.php:1664
3680
  msgid "Form Conversions"
3681
  msgstr ""
3682
 
3683
+ #: languages/vue.php:1667
3684
  msgid "SEO Score Tracking"
3685
  msgstr ""
3686
 
3687
+ #: languages/vue.php:1670
3688
  msgid "Ads Tracking"
3689
  msgstr ""
3690
 
3691
+ #: languages/vue.php:1673
3692
  msgid "Add Ads tracking to see who's clicking on your Google Ads, so you can increase your revenue."
3693
  msgstr ""
3694
 
3695
+ #: languages/vue.php:1676
3696
  msgid "Can't deactivate the license. Error: %s, %s"
3697
  msgstr ""
3698
 
3699
+ #: languages/vue.php:1679
3700
  msgid "Can't upgrade to PRO please try again. Error: %s, %s"
3701
  msgstr ""
3702
 
3703
+ #: languages/vue.php:1682
3704
  msgid "Can't load license details. Error: %s, %s"
3705
  msgstr ""
3706
 
3707
+ #: languages/vue.php:1685
3708
  msgid "Can't verify the license. Error: %s, %s"
3709
  msgstr ""
3710
 
3711
+ #: languages/vue.php:1688
3712
  msgid "Can't validate the license. Error: %s, %s"
3713
  msgstr ""
3714
 
3715
+ #: languages/vue.php:1691
3716
  msgid "Proceed"
3717
  msgstr ""
3718
 
3719
+ #: languages/vue.php:1695
3720
  msgid "Please wait..."
3721
  msgstr ""
3722
 
3723
+ #: languages/vue.php:1698
3724
  msgid "Connection Information"
3725
  msgstr ""
3726
 
3727
+ #: languages/vue.php:1701
3728
  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."
3729
  msgstr ""
3730
 
3731
+ #: languages/vue.php:1704
3732
  msgid "Hostname"
3733
  msgstr ""
3734
 
3735
+ #: languages/vue.php:1707
3736
  msgid "FTP Username"
3737
  msgstr ""
3738
 
3739
+ #: languages/vue.php:1710
3740
  msgid "FTP Password"
3741
  msgstr ""
3742
 
3743
+ #: languages/vue.php:1713
3744
  msgid "This password will not be stored on the server."
3745
  msgstr ""
3746
 
3747
+ #: languages/vue.php:1716
3748
  msgid "Connection Type"
3749
  msgstr ""
3750
 
3751
+ #: languages/vue.php:1719
3752
  msgid "Cancel"
3753
  msgstr ""
3754
 
3755
+ #: languages/vue.php:1722
3756
  msgid "Can't deauthenticate. Error: %s, %s"
3757
  msgstr ""
3758
 
3759
+ #: languages/vue.php:1725
3760
  msgid "Can't load authentication details. Error: %s, %s"
3761
  msgstr ""
3762
 
3763
+ #: languages/vue.php:1728
3764
  msgid "Can't authenticate. Error: %s, %s"
3765
  msgstr ""
3766
 
3767
+ #: languages/vue.php:1731
3768
  msgid "Can't reauthenticate. Error: %s, %s"
3769
  msgstr ""
3770
 
3771
+ #: languages/vue.php:1734
3772
  msgid "Can't verify credentials. Error: %s, %s"
3773
  msgstr ""
3774
 
3775
+ #: languages/vue.php:1737
3776
  msgid "Help Us Improve"
3777
  msgstr ""
3778
 
3779
+ #: languages/vue.php:1740
3780
  msgid "Help us better understand our users and their website needs."
3781
  msgstr ""
3782
 
3783
+ #: languages/vue.php:1743
3784
  msgid "If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %svisit our website.%s"
3785
  msgstr ""
3786
 
3787
+ #: languages/vue.php:1746
3788
  msgid "Website profile"
3789
  msgstr ""
3790
 
3791
+ #: languages/vue.php:1749
3792
  msgid "Active profile"
3793
  msgstr ""
3794
 
3795
+ #: languages/vue.php:1752
3796
  msgid "Skip and Keep Connection"
3797
  msgstr ""
3798
 
3799
+ #: languages/vue.php:1755
3800
  msgid "Can't activate addon. Error: %s, %s"
3801
  msgstr ""
3802
 
3803
+ #: languages/vue.php:1758
3804
  msgid "You appear to be offline. Addon not activated."
3805
  msgstr ""
3806
 
3807
+ #: languages/vue.php:1761
3808
  msgid "Can't deactivate addon. Error: %s, %s"
3809
  msgstr ""
3810
 
3811
+ #: languages/vue.php:1764
3812
  msgid "You appear to be offline. Addon not deactivated."
3813
  msgstr ""
3814
 
3815
+ #: languages/vue.php:1767
3816
  msgid "Can't install plugin. Error: %s, %s"
3817
  msgstr ""
3818
 
3819
+ #: languages/vue.php:1770
3820
  msgid "You appear to be offline. Plugin not installed."
3821
  msgstr ""
3822
 
3823
+ #: languages/vue.php:1773
3824
  msgid "Can't install addon. Error: %s, %s"
3825
  msgstr ""
3826
 
3827
+ #: languages/vue.php:1776
3828
  msgid "You appear to be offline. Addon not installed."
3829
  msgstr ""
3830
 
3831
+ #: languages/vue.php:1779
3832
  msgid "Can't install WPForms. Error: %s, %s"
3833
  msgstr ""
3834
 
3835
+ #: languages/vue.php:1782
3836
  msgid "You appear to be offline. WPForms not installed."
3837
  msgstr ""
3838
 
3839
+ #: languages/vue.php:1785
3840
  msgid "Allow Usage Tracking"
3841
  msgstr ""
3842
 
3843
+ #: languages/vue.php:1788
3844
  msgid "Verifying License"
3845
  msgstr ""
3846
 
3847
+ #: languages/vue.php:1791
3848
  msgid "Success"
3849
  msgstr ""
3850
 
3851
+ #: languages/vue.php:1794
3852
  msgid "There was an error verifying your license"
3853
  msgstr ""
3854
 
3855
+ #: languages/vue.php:1797
3856
  msgid "There was an error unlocking MonsterInsights PRO please try again or install manually."
3857
  msgstr ""
3858
 
3859
+ #: languages/vue.php:1800
3860
  msgid "You're using %sMonsterInsights Lite%s - no license needed. Enjoy! %s"
3861
  msgstr ""
3862
 
3863
+ #: languages/vue.php:1804
3864
  msgid "To unlock more features consider %supgrading to PRO%s."
3865
  msgstr ""
3866
 
3867
+ #: languages/vue.php:1808
3868
  msgid "As a valued MonsterInsights Lite user you %sreceive 50%% off%s, automatically applied at checkout!"
3869
  msgstr ""
3870
 
3871
+ #: languages/vue.php:1811
3872
  msgid "Unlock PRO Features Now"
3873
  msgstr ""
3874
 
3875
+ #: languages/vue.php:1814
3876
  msgid "Paste your license key here"
3877
  msgstr ""
3878
 
3879
+ #: languages/vue.php:1817
3880
  msgid "Verify"
3881
  msgstr ""
3882
 
3883
+ #: languages/vue.php:1820
3884
  msgid "If you already have a License key add it below to unlock MonsterInsights PRO. %sRetrieve your license key%s."
3885
  msgstr ""
3886
 
3887
+ #: languages/vue.php:1823
3888
  msgid "Almost Done"
3889
  msgstr ""
3890
 
3891
+ #: languages/vue.php:1826
3892
  msgid "MonsterInsights can automatically upgrade the installed version to the paid version"
3893
  msgstr ""
3894
 
3895
+ #: languages/vue.php:1829
3896
  msgid "Complete Upgrade"
3897
  msgstr ""
3898
 
3899
+ #: languages/vue.php:1832
3900
  msgid "Do Upgrade Later"
3901
  msgstr ""
3902
 
3903
+ #: languages/vue.php:1836
3904
  msgid "Upgrade to PRO"
3905
  msgstr ""
3906
 
3907
+ #: languages/vue.php:1839
3908
  msgid "Upgrade to Pro"
3909
  msgstr ""
3910
 
3911
+ #: languages/vue.php:1842
3912
  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."
3913
  msgstr ""
3914
 
3915
+ #: languages/vue.php:1845
3916
  msgid "You're using %sMonsterInsights Lite%s - no license needed. Enjoy!"
3917
  msgstr ""
3918
 
3919
+ #: languages/vue.php:1848
3920
  msgid "You need to %sconnect MonsterInsights%s first"
3921
  msgstr ""
3922
 
3923
+ #: languages/vue.php:1852
3924
  #: lite/includes/admin/welcome.php:52
3925
  #: lite/includes/admin/welcome.php:53
3926
  msgid "Welcome to MonsterInsights"
3927
  msgstr ""
3928
 
3929
+ #: languages/vue.php:1855
3930
  msgid "Thank you for choosing MonsterInsights - The Most Powerful WordPress Analytics Plugin"
3931
  msgstr ""
3932
 
3933
+ #: languages/vue.php:1858
3934
  msgid "MonsterInsights makes it “effortless” to setup Google Analytics in WordPress, the RIGHT Way. You can watch the video tutorial or use our 3 minute setup wizard."
3935
  msgstr ""
3936
 
3937
+ #: languages/vue.php:1861
3938
  msgid "Launch the Wizard!"
3939
  msgstr ""
3940
 
3941
+ #: languages/vue.php:1864
3942
  msgid "Read the Full Guide"
3943
  msgstr ""
3944
 
3945
+ #: languages/vue.php:1867
3946
  msgid "MonsterInsights Features & Addons"
3947
  msgstr ""
3948
 
3949
+ #: languages/vue.php:1870
3950
  msgid "Here are the features that make MonsterInsights the most powerful and user-friendly WordPress analytics plugin in the market."
3951
  msgstr ""
3952
 
3953
+ #: languages/vue.php:1873
3954
  msgid "See All Features"
3955
  msgstr ""
3956
 
3957
+ #: languages/vue.php:1876
3958
  msgid "per year"
3959
  msgstr ""
3960
 
3961
+ #: languages/vue.php:1879
3962
  msgid "Testimonials"
3963
  msgstr ""
3964
 
3965
+ #: languages/vue.php:1882
3966
  msgid "Setup universal website tracking across devices and campaigns with just a few clicks (without any code)."
3967
  msgstr ""
3968
 
3969
+ #: languages/vue.php:1885
3970
  msgid "Google Analytics Dashboard"
3971
  msgstr ""
3972
 
3973
+ #: languages/vue.php:1888
3974
  msgid "See your website analytics report right inside your WordPress dashboard with actionable insights."
3975
  msgstr ""
3976
 
3977
+ #: languages/vue.php:1891
3978
  msgid "Real-time Stats"
3979
  msgstr ""
3980
 
3981
+ #: languages/vue.php:1894
3982
  msgid "Get real-time stats right inside WordPress to see who is online, what are they doing, and more."
3983
  msgstr ""
3984
 
3985
+ #: languages/vue.php:1897
3986
  msgid "Enhanced Ecommerce Tracking"
3987
  msgstr ""
3988
 
3989
+ #: languages/vue.php:1900
3990
  msgid "1-click Google Analytics Enhanced Ecommerce tracking for WooCommerce, Easy Digital Downloads & MemberPress."
3991
  msgstr ""
3992
 
3993
+ #: languages/vue.php:1903
3994
  msgid "Page Level Analytics"
3995
  msgstr ""
3996
 
3997
+ #: languages/vue.php:1906
3998
  msgid "Get detailed stats for each post and page, so you can see the most popular posts, pages, and sections of your site."
3999
  msgstr ""
4000
 
4001
+ #: languages/vue.php:1909
4002
  msgid "Affiliate Link & Ads Tracking"
4003
  msgstr ""
4004
 
4005
+ #: languages/vue.php:1912
4006
  msgid "Automatically track clicks on your affiliate links, banner ads, and other outbound links with our link tracking."
4007
  msgstr ""
4008
 
4009
+ #: languages/vue.php:1915
4010
  msgid "EU Compliance (GDPR Friendly)"
4011
  msgstr ""
4012
 
4013
+ #: languages/vue.php:1918
4014
  msgid "Make Google Analytics compliant with GDPR and other privacy regulations automatically."
4015
  msgstr ""
4016
 
4017
+ #: languages/vue.php:1921
4018
  msgid "Setup tracking for authors, categories, tags, searches, custom post types, users, and other events with 1-click."
4019
  msgstr ""
4020
 
4021
+ #: languages/vue.php:1924
4022
  msgid "Ecommerce Report"
4023
  msgstr ""
4024
 
4025
+ #: languages/vue.php:1927
4026
  msgid "Category / Tags Tracking"
4027
  msgstr ""
4028
 
4029
+ #: languages/vue.php:1930
4030
  msgid "WooCommerce"
4031
  msgstr ""
4032
 
4033
+ #: languages/vue.php:1933
4034
  msgid "Easy Digital Downloads"
4035
  msgstr ""
4036
 
4037
+ #: languages/vue.php:1936
4038
  msgid "MemberPress"
4039
  msgstr ""
4040
 
4041
+ #: languages/vue.php:1939
4042
  msgid "LifterLMS"
4043
  msgstr ""
4044
 
4045
+ #: languages/vue.php:1942
4046
  msgid "See how %s visitors found your site!"
4047
  msgstr ""
4048
 
4049
+ #: languages/vue.php:1945
4050
  msgid "Your website was visited by %s users in the last 30 days."
4051
  msgstr ""
4052
 
4053
+ #: languages/vue.php:1948
4054
  msgid "See the full analytics report!"
4055
  msgstr ""
4056
 
4057
+ #: languages/vue.php:1951
4058
  msgid "You must connect with MonsterInsights before you can view reports."
4059
  msgstr ""
4060
 
4061
+ #: languages/vue.php:1954
4062
  msgid "MonsterInsights makes it \"effortless\" for you to connect your site with Google Analytics and see reports right here in the WordPress dashboard."
4063
  msgstr ""
4064
 
4065
+ #: languages/vue.php:1957
4066
  msgid "See Quick Links"
4067
  msgstr ""
4068
 
4069
+ #: languages/vue.php:1960
4070
  msgid "Suggest a Feature"
4071
  msgstr ""
4072
 
4073
+ #: languages/vue.php:1963
4074
  msgid "Join Our Community"
4075
  msgstr ""
4076
 
4077
+ #: languages/vue.php:1966
4078
  msgid "Support & Docs"
4079
  msgstr ""
4080
 
4081
+ #: languages/vue.php:1969
4082
  msgid "Upgrade to Pro &#187;"
4083
  msgstr ""
4084
 
4085
+ #: languages/vue.php:1972
4086
  msgid "MonsterInsights encountered an error loading your report data"
4087
  msgstr ""
4088
 
4089
+ #: languages/vue.php:1975
4090
  msgid "There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating."
4091
  msgstr ""
4092
 
4093
+ #: languages/vue.php:1978
4094
  msgid "Last %s days"
4095
  msgstr ""
4096
 
4097
+ #: languages/vue.php:1981
4098
  #: lite/includes/admin/wp-site-health.php:179
4099
  msgid "View Reports"
4100
  msgstr ""
4101
 
4102
+ #: languages/vue.php:1984
4103
  msgid "Congratulations!"
4104
  msgstr ""
4105
 
4106
+ #: languages/vue.php:1987
4107
  msgid "MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %sGetting started video%s or use our %s to get you quickly set up."
4108
  msgstr ""
4109
 
4110
+ #: languages/vue.php:1990
4111
  msgid "Onboarding Wizard"
4112
  msgstr ""
4113
 
4114
+ #: languages/vue.php:1993
4115
  msgid "You are now connected with MonsterInsights. We make it effortless for you to implement Google Analytics tracking and see the stats that matter, right inside the WordPress dashboard."
4116
  msgstr ""
4117
 
4118
+ #: languages/vue.php:1996
4119
  msgid "Yup, we know a thing or two about building awesome products that customers love."
4120
  msgstr ""
4121
 
4122
+ #: languages/vue.php:1999
4123
  msgid "The MonsterInsights Team"
4124
  msgstr ""
4125
 
4126
+ #: languages/vue.php:2002
4127
  msgid "MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%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 %s) only takes a few minutes and will make your website significantly faster and more secure."
4128
  msgstr ""
4129
 
4130
+ #: languages/vue.php:2005
4131
  msgid "Important: this only includes users who are tracked in real-time. Not all users are tracked in real-time including (but not limited to) logged-in site administrators, certain mobile users, and users who match a Google Analytics filter."
4132
  msgstr ""
4133
 
4134
+ #: languages/vue.php:2017
4135
  msgid "You’re using MonsterInsights Lite. To unlock more features consider %supgrading to Pro%s."
4136
  msgstr ""
4137
 
4138
+ #: languages/vue.php:2020
4139
  msgid "Installing Addon"
4140
  msgstr ""
4141
 
4142
+ #: languages/vue.php:2023
4143
  msgid "Activating Addon"
4144
  msgstr ""
4145
 
4146
+ #: languages/vue.php:2026
4147
  msgid "Addon Activated"
4148
  msgstr ""
4149
 
4150
+ #: languages/vue.php:2029
4151
  msgid "Loading report data"
4152
  msgstr ""
4153
 
4154
+ #: languages/vue.php:2032
4155
  msgid "Please activate manually"
4156
  msgstr ""
4157
 
4158
+ #: languages/vue.php:2035
4159
  msgid "Error: %s, %s"
4160
  msgstr ""
4161
 
4162
+ #: languages/vue.php:2038
4163
  msgid "Error Activating Addon"
4164
  msgstr ""
4165
 
4166
+ #: languages/vue.php:2041
4167
  #: lite/includes/admin/wp-site-health.php:298
4168
  #: lite/includes/admin/wp-site-health.php:324
4169
  #: lite/includes/admin/wp-site-health.php:351
4170
  msgid "View Addons"
4171
  msgstr ""
4172
 
4173
+ #: languages/vue.php:2044
4174
  msgid "Dismiss"
4175
  msgstr ""
4176
 
4177
+ #: languages/vue.php:2047
4178
  msgid "Redirecting"
4179
  msgstr ""
4180
 
4181
+ #: languages/vue.php:2050
4182
  msgid "Please wait"
4183
  msgstr ""
4184
 
4185
+ #: languages/vue.php:2053
4186
  msgid "Visit addons page"
4187
  msgstr ""
4188
 
4189
+ #: languages/vue.php:2056
4190
  msgid "Report Unavailable"
4191
  msgstr ""
4192
 
4193
+ #: languages/vue.php:2059
4194
  msgid "%s Addon"
4195
  msgstr ""
4196
 
4197
+ #: languages/vue.php:2062
4198
  msgid "Scroll depth tracking allows you to see how far your users scroll before they leave a page. This is great for publishers (bloggers), and eCommerce websites to boost conversions."
4199
  msgstr ""
4200
 
4201
+ #: languages/vue.php:2065
4202
  msgid "See All Reports"
4203
  msgstr ""
4204
 
4205
+ #: languages/vue.php:2068
4206
  msgid "Go to the Analytics Dashboard"
4207
  msgstr ""
4208
 
4209
+ #: languages/vue.php:2071
4210
  msgid "Hide dashboard widget"
4211
  msgstr ""
4212
 
4213
+ #: languages/vue.php:2074
4214
  msgid "Are you sure you want to hide the MonsterInsights Dashboard Widget? "
4215
  msgstr ""
4216
 
4217
+ #: languages/vue.php:2077
4218
  msgid "Yes, hide it!"
4219
  msgstr ""
4220
 
4221
+ #: languages/vue.php:2080
4222
  msgid "No, cancel!"
4223
  msgstr ""
4224
 
4225
+ #: languages/vue.php:2083
4226
  msgid "MonsterInsights Widget Hidden"
4227
  msgstr ""
4228
 
4229
+ #: languages/vue.php:2086
4230
  msgid "You can re-enable the MonsterInsights widget at any time using the \"Screen Options\" menu on the top right of this page"
4231
  msgstr ""
4232
 
4233
+ #: languages/vue.php:2089
4234
  msgid "Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %sRetrieve your license key%s."
4235
  msgstr ""
4236
 
4237
+ #: languages/vue.php:2092
4238
  msgid "Forms Tracking help you see who’s viewing your forms, so you can increase conversions."
4239
  msgstr ""
4240
 
4241
+ #: languages/vue.php:2095
4242
  msgid "Custom Dimensions show you popular categories, best time to publish, focus keywords, etc."
4243
  msgstr ""
4244
 
4245
+ #: languages/vue.php:2098
4246
  msgid "Make Google Analytics GDPR compliant with our EU Compliance addon."
4247
  msgstr ""
4248
 
4249
+ #: languages/vue.php:2101
4250
  msgid "Get real-time Google Analytics report right inside your WordPress dashboard."
4251
  msgstr ""
4252
 
4253
+ #: languages/vue.php:2104
4254
  msgid "Use Google Optimize to easily perform A/B split tests on your site."
4255
  msgstr ""
4256
 
4257
+ #: languages/vue.php:2107
4258
  msgid "See all your important store metrics in one place with Enhanced Ecommerce Tracking."
4259
  msgstr ""
4260
 
4261
+ #: languages/vue.php:2110
4262
  msgid "Unlock search console report to see your top performing keywords in Google."
4263
  msgstr ""
4264
 
4265
+ #: languages/vue.php:2113
4266
  msgid "Get Page Insights to see important metrics for individual posts / pages in WordPress."
4267
  msgstr ""
4268
 
4269
+ #: languages/vue.php:2116
4270
  msgid "Publishers Report shows your top performing pages, audience demographics, and more."
4271
  msgstr ""
4272
 
4273
+ #: languages/vue.php:2119
4274
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving.s"
4275
  msgstr ""
4276
 
4277
+ #: languages/vue.php:2122
4278
  msgid "Upgrade to Pro »"
4279
  msgstr ""
4280
 
4281
+ #: languages/vue.php:2125
4282
  msgid "Pro Tip:"
4283
  msgstr ""
4284
 
4285
+ #: languages/vue.php:2128
4286
  msgid "MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install."
4287
  msgstr ""
4288
 
4289
+ #: languages/vue.php:2131
4290
  msgid "Can't load report data. Error: %s, %s"
4291
  msgstr ""
4292
 
4293
+ #: languages/vue.php:2134
4294
  msgid "Error loading report data"
4295
  msgstr ""
4296
 
4297
+ #: languages/vue.php:2137
4298
  msgid "Error loading license details"
4299
  msgstr ""
4300
 
4301
+ #: languages/vue.php:2140
4302
  msgid "Network error encountered. Settings not saved."
4303
  msgstr ""
4304
 
4305
+ #: languages/vue.php:2143
4306
  msgid "Please ask your webmaster to connect MonsterInsights to Google Analytics."
4307
  msgstr ""
4308
 
4309
+ #: languages/vue.php:2146
4310
  msgid "Get Scroll-Depth tracking to see how far users scroll on your pages before leaving."
4311
  msgstr ""
4312
 
4313
+ #: languages/vue.php:2149
4314
  msgid "Whoops, something went wrong and we weren't able to connect to MonsterInsights. Please enter your Google UA code manually."
4315
  msgstr ""
4316
 
4317
+ #: languages/vue.php:2152
4318
  msgid "UA code can't be empty"
4319
  msgstr ""
4320
 
4321
+ #: languages/vue.php:2155
4322
  msgid "Saving UA code..."
4323
  msgstr ""
4324
 
4325
+ #: languages/vue.php:2160
4326
  msgid "2019 Year in Review"
4327
  msgstr ""
4328
 
4329
+ #: languages/vue.php:2163
4330
  msgid "Still Calculating..."
4331
  msgstr ""
4332
 
4333
+ #: languages/vue.php:2166
4334
  msgid "Your 2019 Year in Review is still calculating. Please check back later to see how your website performed last year."
4335
  msgstr ""
4336
 
4337
+ #: languages/vue.php:2169
4338
  msgid "Back to Overview Report"
4339
  msgstr ""
4340
 
4341
+ #: languages/vue.php:2178
4342
  msgid "Audience"
4343
  msgstr ""
4344
 
4345
+ #: languages/vue.php:2181
4346
  msgid "Congrats"
4347
  msgstr ""
4348
 
4349
+ #: languages/vue.php:2184
4350
  msgid "Your website was quite popular this year! "
4351
  msgstr ""
4352
 
4353
+ #: languages/vue.php:2187
4354
  msgid "You had "
4355
  msgstr ""
4356
 
4357
+ #: languages/vue.php:2190
4358
  msgid " visitors!"
4359
  msgstr ""
4360
 
4361
+ #: languages/vue.php:2193
4362
  msgid " visitors"
4363
  msgstr ""
4364
 
4365
+ #: languages/vue.php:2196
4366
  msgid "Total Visitors"
4367
  msgstr ""
4368
 
4369
+ #: languages/vue.php:2199
4370
  msgid "Total Sessions"
4371
  msgstr ""
4372
 
4373
+ #: languages/vue.php:2202
4374
  msgid "Visitors by Month"
4375
  msgstr ""
4376
 
4377
+ #: languages/vue.php:2205
4378
  msgid "January 1, 2019 - December 31, 2019"
4379
  msgstr ""
4380
 
4381
+ #: languages/vue.php:2208
4382
  msgid "A Tip for 2020"
4383
  msgstr ""
4384
 
4385
+ #: languages/vue.php:2211
4386
  msgid "See the top Traffic Sources and Top Pages for the Month of May in the Overview Report to replicate your success."
4387
  msgstr ""
4388
 
4389
+ #: languages/vue.php:2214
4390
  msgid "#1"
4391
  msgstr ""
4392
 
4393
+ #: languages/vue.php:2217
4394
  msgid "You Top 5 Countries"
4395
  msgstr ""
4396
 
4397
+ #: languages/vue.php:2220
4398
  msgid "Let’s get to know your visitors a little better, shall we?"
4399
  msgstr ""
4400
 
4401
+ #: languages/vue.php:2223
4402
  msgid "Gender"
4403
  msgstr ""
4404
 
4405
+ #: languages/vue.php:2226
4406
  msgid "Female"
4407
  msgstr ""
4408
 
4409
+ #: languages/vue.php:2229
4410
  msgid "Women"
4411
  msgstr ""
4412
 
4413
+ #: languages/vue.php:2232
4414
  msgid "Male"
4415
  msgstr ""
4416
 
4417
+ #: languages/vue.php:2235
4418
  msgid "Average Age"
4419
  msgstr ""
4420
 
4421
+ #: languages/vue.php:2238
4422
  msgid "Behavior"
4423
  msgstr ""
4424
 
4425
+ #: languages/vue.php:2241
4426
  msgid "Your Top 5 Pages"
4427
  msgstr ""
4428
 
4429
+ #: languages/vue.php:2244
4430
  msgid "Time Spent on Site"
4431
  msgstr ""
4432
 
4433
+ #: languages/vue.php:2247
4434
  msgid "minutes"
4435
  msgstr ""
4436
 
4437
+ #: languages/vue.php:2250
4438
  msgid "Device Type"
4439
  msgstr ""
4440
 
4441
+ #: languages/vue.php:2253
4442
  msgid "A Tip For 2020"
4443
  msgstr ""
4444
 
4445
+ #: languages/vue.php:2256
4446
  msgid "Take advantage of what you’ve already built. See how to get more traffic from existing content in our 32 Marketing Hacks to Grow Your Traffic."
4447
  msgstr ""
4448
 
4449
+ #: languages/vue.php:2259
4450
  msgid "Read - 32 Marketing Hacks to Grow Your Traffic"
4451
  msgstr ""
4452
 
4453
+ #: languages/vue.php:2262
4454
  msgid "So, where did all of these visitors come from?"
4455
  msgstr ""
4456
 
4457
+ #: languages/vue.php:2265
4458
  msgid "Impressions"
4459
  msgstr ""
4460
 
4461
+ #: languages/vue.php:2268
4462
  msgid "Your Top 5 Keywords"
4463
  msgstr ""
4464
 
4465
+ #: languages/vue.php:2271
4466
  msgid "What keywords visitors searched for to find your site"
4467
  msgstr ""
4468
 
4469
+ #: languages/vue.php:2274
4470
  msgid "Your Top 5 Referrals"
4471
  msgstr ""
4472
 
4473
+ #: languages/vue.php:2277
4474
  msgid "The websites that link back to your website"
4475
  msgstr ""
4476
 
4477
+ #: languages/vue.php:2280
4478
  msgid "Opportunity"
4479
  msgstr ""
4480
 
4481
+ #: languages/vue.php:2283
4482
  msgid "Use referral sources to create new partnerships or expand existing ones. See our guide on how to spy on your competitors and ethically steal their traffic."
4483
  msgstr ""
4484
 
4485
+ #: languages/vue.php:2286
4486
  msgid "Read - How to Ethically Steal Your Competitor’s Traffic"
4487
  msgstr ""
4488
 
4489
+ #: languages/vue.php:2289
4490
  msgid "Thank you for using MonsterInsights!"
4491
  msgstr ""
4492
 
4493
+ #: languages/vue.php:2292
4494
  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."
4495
  msgstr ""
4496
 
4497
+ #: languages/vue.php:2295
4498
  msgid "Here's to an amazing 2020!"
4499
  msgstr ""
4500
 
4501
+ #: languages/vue.php:2298
4502
  msgid "Enjoying MonsterInsights"
4503
  msgstr ""
4504
 
4505
+ #: languages/vue.php:2301
4506
  msgid "Leave a five star review!"
4507
  msgstr ""
4508
 
4509
+ #: languages/vue.php:2304
4510
  msgid "Syed Balkhi"
4511
  msgstr ""
4512
 
4513
+ #: languages/vue.php:2307
4514
  msgid "Chris Christoff"
4515
  msgstr ""
4516
 
4517
+ #: languages/vue.php:2310
4518
  msgid "Write Review"
4519
  msgstr ""
4520
 
4521
+ #: languages/vue.php:2313
4522
  msgid "Did you know over 10 million websites use our plugins?"
4523
  msgstr ""
4524
 
4525
+ #: languages/vue.php:2316
4526
  msgid "Try our other popular WordPress plugins to grow your website in 2020."
4527
  msgstr ""
4528
 
4529
+ #: languages/vue.php:2319
4530
  msgid "Join our Communities!"
4531
  msgstr ""
4532
 
4533
+ #: languages/vue.php:2322
4534
  msgid "Become a WordPress expert in 2020. Join our amazing communities and take your website to the next level."
4535
  msgstr ""
4536
 
4537
+ #: languages/vue.php:2325
4538
  msgid "Facebook Group"
4539
  msgstr ""
4540
 
4541
+ #: languages/vue.php:2328
4542
  msgid "Join our team of WordPress experts and other motivated website owners in the WPBeginner Engage Facebook Group."
4543
  msgstr ""
4544
 
4545
+ #: languages/vue.php:2331
4546
  msgid "Join Now...It’s Free!"
4547
  msgstr ""
4548
 
4549
+ #: languages/vue.php:2334
4550
  msgid "WordPress Tutorials by WPBeginner"
4551
  msgstr ""
4552
 
4553
+ #: languages/vue.php:2337
4554
  msgid "WPBeginner is the largest free WordPress resource site for beginners and non-techy users."
4555
  msgstr ""
4556
 
4557
+ #: languages/vue.php:2340
4558
  msgid "Visit WPBeginner"
4559
  msgstr ""
4560
 
4561
+ #: languages/vue.php:2343
4562
  msgid "Follow Us!"
4563
  msgstr ""
4564
 
4565
+ #: languages/vue.php:2346
4566
  msgid "Follow MonsterInsights on social media to stay up to date with latest updates, trends, and tutorials on how to make the most out of analytics."
4567
  msgstr ""
4568
 
4569
+ #: languages/vue.php:2349
4570
  msgid "Copyright MonsterInsights, 2020"
4571
  msgstr ""
4572
 
4573
+ #: languages/vue.php:2352
4574
  msgid "Upgrade to MonsterInsights Pro to Unlock Additional Actionable Insights"
4575
  msgstr ""
4576
 
4577
+ #: languages/vue.php:2355
4578
  msgid "January"
4579
  msgstr ""
4580
 
4581
+ #: languages/vue.php:2358
4582
  msgid "February"
4583
  msgstr ""
4584
 
4585
+ #: languages/vue.php:2361
4586
  msgid "March"
4587
  msgstr ""
4588
 
4589
+ #: languages/vue.php:2364
4590
  msgid "April"
4591
  msgstr ""
4592
 
4593
+ #: languages/vue.php:2367
4594
  msgid "May"
4595
  msgstr ""
4596
 
4597
+ #: languages/vue.php:2370
4598
  msgid "June"
4599
  msgstr ""
4600
 
4601
+ #: languages/vue.php:2373
4602
  msgid "July"
4603
  msgstr ""
4604
 
4605
+ #: languages/vue.php:2376
4606
  msgid "August"
4607
  msgstr ""
4608
 
4609
+ #: languages/vue.php:2379
4610
  msgid "September"
4611
  msgstr ""
4612
 
4613
+ #: languages/vue.php:2382
4614
  msgid "October"
4615
  msgstr ""
4616
 
4617
+ #: languages/vue.php:2385
4618
  msgid "November"
4619
  msgstr ""
4620
 
4621
+ #: languages/vue.php:2388
4622
  msgid "December"
4623
  msgstr ""
4624
 
4625
+ #: languages/vue.php:2391
4626
  msgid "Your best month was <strong>%s</strong> with <strong>%s visitors!</strong>"
4627
  msgstr ""
4628
 
4629
+ #: languages/vue.php:2394
4630
  msgid "Your <strong>%s</strong> visitors came from <strong>%s</strong> different countries."
4631
  msgstr ""
4632
 
4633
+ #: languages/vue.php:2397
4634
  msgid "%s Visitors"
4635
  msgstr ""
4636
 
4637
+ #: languages/vue.php:2400
4638
  msgid "%s&#37 of your visitors were %s"
4639
  msgstr ""
4640
 
4641
+ #: languages/vue.php:2403
4642
  msgid "%s&#37 of your visitors were between the ages of %s"
4643
  msgstr ""
4644
 
4645
+ #: languages/vue.php:2406
4646
  msgid "Your <strong>%s</strong> visitors viewed a total of <strong>%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 %s pages for each visitor!</span>"
4647
  msgstr ""
4648
 
4649
+ #: languages/vue.php:2409
4650
  msgid "Each visitor spent an average of %s minutes on your website in 2019."
4651
  msgstr ""
4652
 
4653
+ #: languages/vue.php:2412
4654
  msgid "Most of your visitors viewed your website from their <strong>%s</strong> device."
4655
  msgstr ""
4656
 
4657
+ #: languages/vue.php:2415
4658
  msgid "%s&#37 of your visitors were on a %s device."
4659
  msgstr ""
4660
 
4661
+ #: languages/vue.php:2418
4662
+ msgid "Clicks"
4663
+ msgstr ""
4664
+
4665
  #: lite/includes/admin/connect.php:42
4666
  msgid "You are not allowed to install plugins."
4667
  msgstr ""
languages/vue.php CHANGED
@@ -8,13 +8,10 @@ $generated_i18n_strings = array(
8
  __( 'Loading new report data...', 'google-analytics-for-wordpress' ),
9
 
10
  // Reference: src/modules/reports/components/ReportReAuth.vue:45
11
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:227
12
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:67
13
- // Reference: src/modules/widget/components/WidgetReportError.vue:25
14
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:120
15
  __( 'Error', 'google-analytics-for-wordpress' ),
16
 
17
- // Reference: src/plugins/monsterinsights-frontend-helper-plugin.js:14
18
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
19
 
20
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:229
@@ -152,9 +149,6 @@ $generated_i18n_strings = array(
152
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:304
153
  __( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-for-wordpress' ),
154
 
155
- // Reference: src/modules/reports/components/reports/ReportOverview.vue:236
156
- // Reference: src/modules/reports/routes/index.js:24
157
- // Reference: src/modules/widget/store/index.js:13
158
  // Reference: src/modules/widget/widget.vue:27
159
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
160
 
@@ -183,55 +177,43 @@ $generated_i18n_strings = array(
183
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
184
 
185
  // Reference: src/modules/reports/components/reports/ReportEcommerce-Lite.vue:23
186
- // Reference: src/modules/reports/routes/index.js:40
187
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
188
 
189
  // Reference: src/modules/reports/components/reports/ReportSearchConsole-Lite.vue:26
190
  // Reference: src/modules/reports/routes/index.js:48
191
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
192
 
193
- // Reference: src/modules/reports/components/reports/ReportDimensions-Lite.vue:23
194
  // Reference: src/modules/reports/routes/index.js:56
195
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
196
 
197
- // Reference: src/modules/reports/components/reports/ReportForms-Lite.vue:25
198
  // Reference: src/modules/reports/routes/index.js:64
199
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
200
 
201
  // Reference: src/modules/reports/components/reports/ReportRealTime-Lite.vue:51
202
- // Reference: src/modules/reports/routes/index.js:72
203
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
204
 
205
  // Reference: src/modules/widget/components/WidgetFooter.vue:18
206
  __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
207
 
208
- // Reference: src/modules/addons/components/AddonBlock.vue:113
209
  // Reference: src/modules/addons/store/actions.js:47
210
  // Reference: src/modules/widget/components/WidgetFooter.vue:19
211
  __( 'Install', 'google-analytics-for-wordpress' ),
212
 
213
- // Reference: src/modules/addons/components/AddonBlock.vue:111
214
  // Reference: src/modules/addons/store/actions.js:47
215
  // Reference: src/modules/widget/components/WidgetFooter.vue:20
216
  __( 'Activate', 'google-analytics-for-wordpress' ),
217
 
218
- // Reference: src/modules/frontend/components/FrontendNoAuth.vue:27
219
  // Reference: src/modules/widget/components/WidgetFooter.vue:21
220
- // Reference: src/modules/wizard-onboarding/components/OnboardingAddon-Lite.vue:26
221
  __( 'Learn More', 'google-analytics-for-wordpress' ),
222
 
223
  // Reference: src/modules/reports/components/ReportsNavigation.vue:40
224
  // Reference: src/modules/widget/store/index.js:75
225
  __( 'Overview', 'google-analytics-for-wordpress' ),
226
 
227
- // Reference: src/modules/reports/components/ReportsNavigation.vue:41
228
  // Reference: src/modules/reports/components/reports/ReportPublishers-Lite.vue:25
229
  __( 'Publishers', 'google-analytics-for-wordpress' ),
230
 
231
- // Reference: src/modules/reports/components/ReportsNavigation.vue:42
232
  // Reference: src/modules/reports/components/reports/ReportEcommerce-Lite.vue:22
233
- // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:57
234
- // Reference: src/modules/settings/routes/site.js:45
235
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
236
 
237
  // Reference: src/modules/reports/components/ReportsNavigation.vue:43
@@ -250,47 +232,33 @@ $generated_i18n_strings = array(
250
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
251
  __( 'Loading settings', 'google-analytics-for-wordpress' ),
252
 
253
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:15
254
  // Reference: src/modules/settings/routes/network.js:35
255
- // Reference: src/modules/settings/routes/site.js:109
256
  __( 'About Us', 'google-analytics-for-wordpress' ),
257
 
258
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:16
259
  // Reference: src/modules/settings/routes/network.js:43
260
- // Reference: src/modules/settings/routes/site.js:117
261
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
262
 
263
- // Reference: src/modules/about/components/AboutNavigation-Lite.vue:17
264
- // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:52
265
  // Reference: src/modules/settings/routes/network.js:52
266
- // Reference: src/modules/settings/routes/site.js:126
267
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
268
 
269
  // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:55
270
- // Reference: src/modules/settings/routes/site.js:29
271
  __( 'General', 'google-analytics-for-wordpress' ),
272
 
273
  // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:56
274
- // Reference: src/modules/settings/routes/site.js:37
275
  __( 'Engagement', 'google-analytics-for-wordpress' ),
276
 
277
  // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:58
278
- // Reference: src/modules/settings/routes/site.js:53
279
  __( 'Publisher', 'google-analytics-for-wordpress' ),
280
 
281
  // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:59
282
- // Reference: src/modules/settings/routes/site.js:61
283
  __( 'Conversions', 'google-analytics-for-wordpress' ),
284
 
285
  // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:60
286
- // Reference: src/modules/settings/routes/site.js:69
287
  __( 'Advanced', 'google-analytics-for-wordpress' ),
288
 
289
- // Reference: src/modules/settings/routes/site.js:86
290
  // Reference: src/modules/tools/components/ToolsNavigation.vue:15
291
  __( 'URL Builder', 'google-analytics-for-wordpress' ),
292
 
293
- // Reference: src/modules/settings/routes/site.js:94
294
  // Reference: src/modules/tools/components/ToolsNavigation.vue:14
295
  __( 'Import Export', 'google-analytics-for-wordpress' ),
296
 
@@ -307,27 +275,21 @@ $generated_i18n_strings = array(
307
  __( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-for-wordpress' ),
308
 
309
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:249
310
- // Reference: src/modules/widget/store/index.js:19
311
  __( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
312
 
313
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:260
314
- // Reference: src/modules/widget/store/index.js:20
315
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
316
 
317
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:243
318
- // Reference: src/modules/widget/store/index.js:26
319
  __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
320
 
321
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:256
322
- // Reference: src/modules/widget/store/index.js:27
323
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
324
 
325
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:244
326
- // Reference: src/modules/widget/store/index.js:33
327
  __( 'Device Breakdown', 'google-analytics-for-wordpress' ),
328
 
329
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:257
330
- // Reference: src/modules/widget/store/index.js:34
331
  __( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-for-wordpress' ),
332
 
333
  // Reference: src/modules/widget/store/index.js:40
@@ -408,21 +370,16 @@ $generated_i18n_strings = array(
408
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:148
409
  __( 'Returning', 'google-analytics-for-wordpress' ),
410
 
411
- // Reference: src/modules/reports/components/reports/ReportOverview.vue:178
412
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:496
413
  __( 'Desktop', 'google-analytics-for-wordpress' ),
414
 
415
- // Reference: src/modules/reports/components/reports/ReportOverview.vue:179
416
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:497
417
  __( 'Tablet', 'google-analytics-for-wordpress' ),
418
 
419
- // Reference: src/modules/reports/components/reports/ReportOverview.vue:180
420
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:498
421
  __( 'Mobile', 'google-analytics-for-wordpress' ),
422
 
423
  // Reference: src/modules/frontend/components/FrontendStatsGeneral.vue:26
424
- // Reference: src/modules/reports/components/reports/ReportOverview.vue:237
425
- // Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:62
426
  __( 'Sessions', 'google-analytics-for-wordpress' ),
427
 
428
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:238
@@ -430,14 +387,9 @@ $generated_i18n_strings = array(
430
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
431
 
432
  // Reference: src/modules/frontend/components/FrontendStatsGeneral.vue:27
433
- // Reference: src/modules/reports/components/reports/ReportOverview.vue:239
434
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:300
435
- // Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:64
436
  __( 'Pageviews', 'google-analytics-for-wordpress' ),
437
 
438
- // Reference: src/modules/reports/components/reports/ReportOverview.vue:240
439
  // Reference: src/modules/reports/components/reports/ReportRealTime-Lite.vue:61
440
- // Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:65
441
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
442
 
443
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:241
@@ -445,8 +397,6 @@ $generated_i18n_strings = array(
445
  __( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
446
 
447
  // Reference: src/modules/frontend/components/FrontendStatsGeneral.vue:29
448
- // Reference: src/modules/reports/components/reports/ReportOverview.vue:242
449
- // Reference: src/modules/widget/components/reports/WidgetReportOverview-Lite.vue:71
450
  __( 'Bounce Rate', 'google-analytics-for-wordpress' ),
451
 
452
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:245
@@ -503,23 +453,16 @@ $generated_i18n_strings = array(
503
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:85
504
  __( 'None %s- Manually update everything.%s', 'google-analytics-for-wordpress' ),
505
 
506
- // Reference: src/modules/settings/components/SettingsNetwork.vue:33
507
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:88
508
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingLicense-Lite.vue:27
509
  __( 'License Key', 'google-analytics-for-wordpress' ),
510
 
511
- // Reference: src/modules/settings/components/SettingsNetwork.vue:35
512
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:89
513
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
514
 
515
- // Reference: src/modules/settings/components/SettingsNetwork.vue:36
516
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:90
517
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:50
518
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
519
 
520
- // Reference: src/modules/settings/components/SettingsNetwork.vue:37
521
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:91
522
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:51
523
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
524
 
525
  // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:68
@@ -532,28 +475,22 @@ $generated_i18n_strings = array(
532
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:94
533
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
534
 
535
- // Reference: src/modules/reports/components/ReportNoAuth.vue:27
536
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:95
537
  __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
538
 
539
  // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:41
540
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:70
541
  __( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
542
 
543
  // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:43
544
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:72
545
  __( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
546
 
547
  // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:47
548
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:76
549
  __( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
550
 
551
  // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:49
552
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:78
553
  __( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
554
 
555
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24
556
- // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:52
557
  __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
558
 
559
  // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:53
@@ -563,7 +500,6 @@ $generated_i18n_strings = array(
563
  __( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-for-wordpress' ),
564
 
565
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:277
566
- // Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:59
567
  __( 'Demographics', 'google-analytics-for-wordpress' ),
568
 
569
  // Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:60
@@ -648,7 +584,6 @@ $generated_i18n_strings = array(
648
  __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
649
 
650
  // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:57
651
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:86
652
  __( 'Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.', 'google-analytics-for-wordpress' ),
653
 
654
  // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:58
@@ -757,9 +692,6 @@ $generated_i18n_strings = array(
757
  __( 'Please choose a .json file generated by a MonsterInsights settings export.', 'google-analytics-for-wordpress' ),
758
 
759
  // Reference: src/modules/reports/components/ReportReAuth.vue:47
760
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:229
761
- // Reference: src/modules/tools/components/ToolsTabImportExport.vue:88
762
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:122
763
  __( 'Ok', 'google-analytics-for-wordpress' ),
764
 
765
  // Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:156
@@ -946,11 +878,9 @@ $generated_i18n_strings = array(
946
  __( 'More advanced features', 'google-analytics-for-wordpress' ),
947
 
948
  // Reference: src/modules/about/components/AboutTabGettingStarted.vue:85
949
- // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:57
950
  __( 'Get MonsterInsights Pro Today and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
951
 
952
  // Reference: src/modules/about/components/AboutTabGettingStarted.vue:86
953
- // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:58
954
  __( 'Bonus: MonsterInsights Lite users get %s50%% off regular price%s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
955
 
956
  // Reference: src/modules/about/components/AboutTabGettingStarted.vue:90
@@ -1004,14 +934,11 @@ $generated_i18n_strings = array(
1004
  // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:125
1005
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-for-wordpress' ),
1006
 
1007
- // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:128
1008
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:25
1009
  // Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:35
1010
- // Reference: src/modules/wizard-onboarding/welcome-Lite.vue:183
1011
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
1012
 
1013
  // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:131
1014
- // Reference: src/modules/addons/components/AddonBlock.vue:83
1015
  __( 'Not Available', 'google-analytics-for-wordpress' ),
1016
 
1017
  // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:132
@@ -1041,7 +968,6 @@ $generated_i18n_strings = array(
1041
  // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:56
1042
  __( 'Pro', 'google-analytics-for-wordpress' ),
1043
 
1044
- // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:61
1045
  // Reference: src/modules/wizard-onboarding/welcome-Lite.vue:140
1046
  __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
1047
 
@@ -1087,7 +1013,6 @@ $generated_i18n_strings = array(
1087
  // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:91
1088
  __( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-for-wordpress' ),
1089
 
1090
- // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:94
1091
  // Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:31
1092
  __( 'Forms Tracking', 'google-analytics-for-wordpress' ),
1093
 
@@ -1115,7 +1040,6 @@ $generated_i18n_strings = array(
1115
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
1116
  __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
1117
 
1118
- // Reference: src/modules/addons/components/AddonBlock.vue:105
1119
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46
1120
  __( 'Installing...', 'google-analytics-for-wordpress' ),
1121
 
@@ -1195,7 +1119,6 @@ $generated_i18n_strings = array(
1195
  __( 'These user roles will be able to access MonsterInsights\'s reports in the WordPress admin area.', 'google-analytics-for-wordpress' ),
1196
 
1197
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedAddons-Lite.vue:49
1198
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:87
1199
  __( 'Save and continue', 'google-analytics-for-wordpress' ),
1200
 
1201
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
@@ -1217,7 +1140,6 @@ $generated_i18n_strings = array(
1217
  __( 'No change', 'google-analytics-for-wordpress' ),
1218
 
1219
  // Reference: src/modules/reports/components/ReportListBox.vue:48
1220
- // Reference: src/modules/reports/components/ReportTableBox.vue:77
1221
  // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:38
1222
  __( 'Show', 'google-analytics-for-wordpress' ),
1223
 
@@ -1290,7 +1212,6 @@ $generated_i18n_strings = array(
1290
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
1291
  __( 'Let\'s get you set up.', 'google-analytics-for-wordpress' ),
1292
 
1293
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:55
1294
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
1295
  __( 'Save and Continue', 'google-analytics-for-wordpress' ),
1296
 
@@ -1313,7 +1234,6 @@ $generated_i18n_strings = array(
1313
  __( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-for-wordpress' ),
1314
 
1315
  // Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:33
1316
- // Reference: src/modules/wizard-onboarding/welcome-Lite.vue:185
1317
  __( 'Google Optimize', 'google-analytics-for-wordpress' ),
1318
 
1319
  // Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:34
@@ -1331,11 +1251,7 @@ $generated_i18n_strings = array(
1331
  // Reference: src/modules/license/store/actions.js:80
1332
  __( 'Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key.', 'google-analytics-for-wordpress' ),
1333
 
1334
- // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsell-Lite.vue:30
1335
- // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:327
1336
- // Reference: src/modules/reports/components/upsells/ReportUpsellOverlay.vue:29
1337
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:33
1338
- // Reference: src/modules/settings/components/tabs/SettingsTabEcommerce-Lite.vue:33
1339
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1340
 
1341
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
@@ -1364,7 +1280,6 @@ $generated_i18n_strings = array(
1364
 
1365
  // Reference: src/modules/auth/api/index.js:118
1366
  // Reference: src/modules/license/api/index.js:143
1367
- // Reference: src/modules/settings/api/index.js:22
1368
  // Reference: src/modules/wizard-onboarding/api/index.js:21
1369
  __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
1370
 
@@ -1413,9 +1328,6 @@ $generated_i18n_strings = array(
1413
  // Reference: src/modules/addons/components/AddonBlock.vue:88
1414
  __( 'Inactive', 'google-analytics-for-wordpress' ),
1415
 
1416
- // Reference: src/modules/addons/addons-Lite.vue:79
1417
- // Reference: src/modules/addons/components/AddonBlock.vue:96
1418
- // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:21
1419
  // Reference: src/modules/wizard-onboarding/welcome-Lite.vue:135
1420
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
1421
 
@@ -1535,12 +1447,9 @@ $generated_i18n_strings = array(
1535
  __( 'You appear to be offline. Settings not saved.', 'google-analytics-for-wordpress' ),
1536
 
1537
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:116
1538
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:78
1539
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
1540
 
1541
  // Reference: src/modules/reports/components/ReportReAuth.vue:30
1542
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:143
1543
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:105
1544
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
1545
 
1546
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:170
@@ -1556,15 +1465,12 @@ $generated_i18n_strings = array(
1556
  __( 'You\'ve disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won\'t see reports anymore.', 'google-analytics-for-wordpress' ),
1557
 
1558
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:67
1559
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:46
1560
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
1561
 
1562
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:68
1563
  __( 'Verify Credentials', 'google-analytics-for-wordpress' ),
1564
 
1565
  // Reference: src/modules/reports/components/ReportReAuth.vue:21
1566
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:69
1567
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:47
1568
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
1569
 
1570
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:70
@@ -1574,19 +1480,15 @@ $generated_i18n_strings = array(
1574
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
1575
 
1576
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:72
1577
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:50
1578
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
1579
 
1580
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:73
1581
- // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingAuthenticate-Lite.vue:51
1582
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
1583
 
1584
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:74
1585
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:53
1586
  __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
1587
 
1588
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:75
1589
- // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:54
1590
  __( '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.', 'google-analytics-for-wordpress' ),
1591
 
1592
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:76
@@ -1602,13 +1504,11 @@ $generated_i18n_strings = array(
1602
  __( 'Can\'t load errors. Error: %s, %s', 'google-analytics-for-wordpress' ),
1603
 
1604
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:30
1605
- // Reference: src/modules/settings/components/input/tab-publisher/SettingsInputAmp-Lite.vue:22
1606
  __( 'Google AMP', 'google-analytics-for-wordpress' ),
1607
 
1608
  // Reference: src/modules/settings/components/input/tab-publisher/SettingsInputAmp-Lite.vue:23
1609
  __( 'Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking.', 'google-analytics-for-wordpress' ),
1610
 
1611
- // Reference: src/modules/settings/components/SettingsAddonUpgrade.vue:29
1612
  // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:19
1613
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
1614
 
@@ -1622,11 +1522,9 @@ $generated_i18n_strings = array(
1622
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPerformance-Lite.vue:18
1623
  __( 'Adjust the sample rate so you don\'t exceed Google Analytics\' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization.', 'google-analytics-for-wordpress' ),
1624
 
1625
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:39
1626
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:27
1627
  __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
1628
 
1629
- // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputMisc-Lite.vue:40
1630
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
1631
  __( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'google-analytics-for-wordpress' ),
1632
 
@@ -1656,11 +1554,9 @@ $generated_i18n_strings = array(
1656
  __( 'Banner Ads', 'google-analytics-for-wordpress' ),
1657
 
1658
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
1659
- // Reference: src/modules/wizard-onboarding/welcome-Lite.vue:184
1660
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
1661
 
1662
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:29
1663
- // Reference: src/modules/wizard-onboarding/welcome-Lite.vue:182
1664
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
1665
 
1666
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:31
@@ -1691,7 +1587,6 @@ $generated_i18n_strings = array(
1691
  __( 'Proceed', 'google-analytics-for-wordpress' ),
1692
 
1693
  // Reference: src/components/TheAppFTPForm.vue:110
1694
- // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:51
1695
  __( 'Please wait...', 'google-analytics-for-wordpress' ),
1696
 
1697
  // Reference: src/components/TheAppFTPForm.vue:92
@@ -1831,7 +1726,6 @@ $generated_i18n_strings = array(
1831
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:99
1832
  __( 'Do Upgrade Later', 'google-analytics-for-wordpress' ),
1833
 
1834
- // Reference: src/modules/frontend/components/FrontendUpsell-Lite.vue:11
1835
  // Reference: src/modules/wizard-onboarding/welcome-Lite.vue:133
1836
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
1837
 
@@ -2154,9 +2048,7 @@ $generated_i18n_strings = array(
2154
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
2155
  __( 'Saving UA code...', 'google-analytics-for-wordpress' ),
2156
 
2157
- // Reference: src/modules/reports/components/ReportsNavigation.vue:48
2158
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:263
2159
- // Reference: src/modules/reports/routes/index.js:85
2160
  __( '2019 Year in Review', 'google-analytics-for-wordpress' ),
2161
 
2162
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:259
@@ -2415,6 +2307,216 @@ $generated_i18n_strings = array(
2415
  __( '%s&#37 of your visitors were on a %s device.', 'google-analytics-for-wordpress' ),
2416
 
2417
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:296
2418
- __( 'Clicks', 'google-analytics-for-wordpress' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2419
  );
2420
  /* THIS IS THE END OF THE GENERATED FILE */
8
  __( 'Loading new report data...', 'google-analytics-for-wordpress' ),
9
 
10
  // Reference: src/modules/reports/components/ReportReAuth.vue:45
11
+ // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:14
 
 
 
12
  __( 'Error', 'google-analytics-for-wordpress' ),
13
 
14
+ // Reference: src/plugins/monsterinsights-widget-helper-plugin.js:15
15
  __( 'Please try again.', 'google-analytics-for-wordpress' ),
16
 
17
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:229
149
  // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:304
150
  __( 'Get Fresh Reports Data Every 60 Seconds', 'google-analytics-for-wordpress' ),
151
 
 
 
 
152
  // Reference: src/modules/widget/widget.vue:27
153
  __( 'Overview Report', 'google-analytics-for-wordpress' ),
154
 
177
  __( 'Publishers Report', 'google-analytics-for-wordpress' ),
178
 
179
  // Reference: src/modules/reports/components/reports/ReportEcommerce-Lite.vue:23
 
180
  __( 'eCommerce Report', 'google-analytics-for-wordpress' ),
181
 
182
  // Reference: src/modules/reports/components/reports/ReportSearchConsole-Lite.vue:26
183
  // Reference: src/modules/reports/routes/index.js:48
184
  __( 'Search Console Report', 'google-analytics-for-wordpress' ),
185
 
 
186
  // Reference: src/modules/reports/routes/index.js:56
187
  __( 'Dimensions Report', 'google-analytics-for-wordpress' ),
188
 
 
189
  // Reference: src/modules/reports/routes/index.js:64
190
  __( 'Forms Report', 'google-analytics-for-wordpress' ),
191
 
192
  // Reference: src/modules/reports/components/reports/ReportRealTime-Lite.vue:51
 
193
  __( 'Real-Time Report', 'google-analytics-for-wordpress' ),
194
 
195
  // Reference: src/modules/widget/components/WidgetFooter.vue:18
196
  __( 'Recommended Plugin: %s', 'google-analytics-for-wordpress' ),
197
 
 
198
  // Reference: src/modules/addons/store/actions.js:47
199
  // Reference: src/modules/widget/components/WidgetFooter.vue:19
200
  __( 'Install', 'google-analytics-for-wordpress' ),
201
 
 
202
  // Reference: src/modules/addons/store/actions.js:47
203
  // Reference: src/modules/widget/components/WidgetFooter.vue:20
204
  __( 'Activate', 'google-analytics-for-wordpress' ),
205
 
 
206
  // Reference: src/modules/widget/components/WidgetFooter.vue:21
 
207
  __( 'Learn More', 'google-analytics-for-wordpress' ),
208
 
209
  // Reference: src/modules/reports/components/ReportsNavigation.vue:40
210
  // Reference: src/modules/widget/store/index.js:75
211
  __( 'Overview', 'google-analytics-for-wordpress' ),
212
 
 
213
  // Reference: src/modules/reports/components/reports/ReportPublishers-Lite.vue:25
214
  __( 'Publishers', 'google-analytics-for-wordpress' ),
215
 
 
216
  // Reference: src/modules/reports/components/reports/ReportEcommerce-Lite.vue:22
 
 
217
  __( 'eCommerce', 'google-analytics-for-wordpress' ),
218
 
219
  // Reference: src/modules/reports/components/ReportsNavigation.vue:43
232
  // Reference: src/plugins/monsterinsights-wizard-helper-plugin.js:13
233
  __( 'Loading settings', 'google-analytics-for-wordpress' ),
234
 
 
235
  // Reference: src/modules/settings/routes/network.js:35
 
236
  __( 'About Us', 'google-analytics-for-wordpress' ),
237
 
 
238
  // Reference: src/modules/settings/routes/network.js:43
 
239
  __( 'Getting Started', 'google-analytics-for-wordpress' ),
240
 
 
 
241
  // Reference: src/modules/settings/routes/network.js:52
 
242
  __( 'Lite vs Pro', 'google-analytics-for-wordpress' ),
243
 
244
  // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:55
 
245
  __( 'General', 'google-analytics-for-wordpress' ),
246
 
247
  // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:56
 
248
  __( 'Engagement', 'google-analytics-for-wordpress' ),
249
 
250
  // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:58
 
251
  __( 'Publisher', 'google-analytics-for-wordpress' ),
252
 
253
  // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:59
 
254
  __( 'Conversions', 'google-analytics-for-wordpress' ),
255
 
256
  // Reference: src/modules/settings/components/tabs/SettingsTabsNavigation.vue:60
 
257
  __( 'Advanced', 'google-analytics-for-wordpress' ),
258
 
 
259
  // Reference: src/modules/tools/components/ToolsNavigation.vue:15
260
  __( 'URL Builder', 'google-analytics-for-wordpress' ),
261
 
 
262
  // Reference: src/modules/tools/components/ToolsNavigation.vue:14
263
  __( 'Import Export', 'google-analytics-for-wordpress' ),
264
 
275
  __( 'This list shows the number of sessions it took users before they purchased a product from your website.', 'google-analytics-for-wordpress' ),
276
 
277
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:249
 
278
  __( 'Top Posts/Pages', 'google-analytics-for-wordpress' ),
279
 
280
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:260
 
281
  __( 'This list shows the most viewed posts and pages on your website.', 'google-analytics-for-wordpress' ),
282
 
283
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:243
 
284
  __( 'New vs. Returning Visitors', 'google-analytics-for-wordpress' ),
285
 
286
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:256
 
287
  __( 'This graph shows what percent of your user sessions come from new versus repeat visitors.', 'google-analytics-for-wordpress' ),
288
 
289
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:244
 
290
  __( 'Device Breakdown', 'google-analytics-for-wordpress' ),
291
 
292
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:257
 
293
  __( 'This graph shows what percent of your visitor sessions are done using a traditional computer or laptop, tablet or mobile device to view your site.', 'google-analytics-for-wordpress' ),
294
 
295
  // Reference: src/modules/widget/store/index.js:40
370
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:148
371
  __( 'Returning', 'google-analytics-for-wordpress' ),
372
 
 
373
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:496
374
  __( 'Desktop', 'google-analytics-for-wordpress' ),
375
 
 
376
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:497
377
  __( 'Tablet', 'google-analytics-for-wordpress' ),
378
 
 
379
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:498
380
  __( 'Mobile', 'google-analytics-for-wordpress' ),
381
 
382
  // Reference: src/modules/frontend/components/FrontendStatsGeneral.vue:26
 
 
383
  __( 'Sessions', 'google-analytics-for-wordpress' ),
384
 
385
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:238
387
  __( 'Unique %s Sessions', 'google-analytics-for-wordpress' ),
388
 
389
  // Reference: src/modules/frontend/components/FrontendStatsGeneral.vue:27
 
 
 
390
  __( 'Pageviews', 'google-analytics-for-wordpress' ),
391
 
 
392
  // Reference: src/modules/reports/components/reports/ReportRealTime-Lite.vue:61
 
393
  __( 'Unique %s Pageviews', 'google-analytics-for-wordpress' ),
394
 
395
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:241
397
  __( 'Avg. Session Duration', 'google-analytics-for-wordpress' ),
398
 
399
  // Reference: src/modules/frontend/components/FrontendStatsGeneral.vue:29
 
 
400
  __( 'Bounce Rate', 'google-analytics-for-wordpress' ),
401
 
402
  // Reference: src/modules/reports/components/reports/ReportOverview.vue:245
453
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:85
454
  __( 'None %s- Manually update everything.%s', 'google-analytics-for-wordpress' ),
455
 
 
456
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:88
 
457
  __( 'License Key', 'google-analytics-for-wordpress' ),
458
 
 
459
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:89
460
  __( 'Google Authentication', 'google-analytics-for-wordpress' ),
461
 
 
462
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:90
 
463
  __( 'Connect Google Analytics + WordPress', 'google-analytics-for-wordpress' ),
464
 
 
465
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:91
 
466
  __( 'You will be taken to the MonsterInsights website where you\'ll need to connect your Analytics account.', 'google-analytics-for-wordpress' ),
467
 
468
  // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:68
475
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:94
476
  __( 'Use our configuration wizard to properly setup Google Analytics with WordPress (with just a few clicks).', 'google-analytics-for-wordpress' ),
477
 
 
478
  // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:95
479
  __( 'Launch Setup Wizard', 'google-analytics-for-wordpress' ),
480
 
481
  // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:41
 
482
  __( 'Path (example: %s)', 'google-analytics-for-wordpress' ),
483
 
484
  // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:43
 
485
  __( 'Path has to start with a / and have no spaces', 'google-analytics-for-wordpress' ),
486
 
487
  // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:47
 
488
  __( 'Label (example: %s)', 'google-analytics-for-wordpress' ),
489
 
490
  // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:49
 
491
  __( 'Label can\'t contain any spaces', 'google-analytics-for-wordpress' ),
492
 
493
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:24
 
494
  __( 'Affiliate Links', 'google-analytics-for-wordpress' ),
495
 
496
  // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:53
500
  __( 'Our affiliate link tracking works by setting path for internal links to track as outbound links.', 'google-analytics-for-wordpress' ),
501
 
502
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:277
 
503
  __( 'Demographics', 'google-analytics-for-wordpress' ),
504
 
505
  // Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:60
584
  __( 'Users that have at least one of these roles will be able to view the reports.', 'google-analytics-for-wordpress' ),
585
 
586
  // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:57
 
587
  __( 'Users that have at least one of these roles will be able to view the reports, along with any user with the manage_options capability.', 'google-analytics-for-wordpress' ),
588
 
589
  // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:58
692
  __( 'Please choose a .json file generated by a MonsterInsights settings export.', 'google-analytics-for-wordpress' ),
693
 
694
  // Reference: src/modules/reports/components/ReportReAuth.vue:47
 
 
 
695
  __( 'Ok', 'google-analytics-for-wordpress' ),
696
 
697
  // Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:156
878
  __( 'More advanced features', 'google-analytics-for-wordpress' ),
879
 
880
  // Reference: src/modules/about/components/AboutTabGettingStarted.vue:85
 
881
  __( 'Get MonsterInsights Pro Today and Unlock all the Powerful Features', 'google-analytics-for-wordpress' ),
882
 
883
  // Reference: src/modules/about/components/AboutTabGettingStarted.vue:86
 
884
  __( 'Bonus: MonsterInsights Lite users get %s50%% off regular price%s, automatically applied at checkout.', 'google-analytics-for-wordpress' ),
885
 
886
  // Reference: src/modules/about/components/AboutTabGettingStarted.vue:90
934
  // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:125
935
  __( 'View Top Landing/Exit Pages, Top Links, Demographics & Interests data and more', 'google-analytics-for-wordpress' ),
936
 
 
937
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:25
938
  // Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:35
 
939
  __( 'Custom Dimensions', 'google-analytics-for-wordpress' ),
940
 
941
  // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:131
 
942
  __( 'Not Available', 'google-analytics-for-wordpress' ),
943
 
944
  // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:132
968
  // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:56
969
  __( 'Pro', 'google-analytics-for-wordpress' ),
970
 
 
971
  // Reference: src/modules/wizard-onboarding/welcome-Lite.vue:140
972
  __( 'Universal Tracking', 'google-analytics-for-wordpress' ),
973
 
1013
  // Reference: src/modules/about/components/AboutTabLiteVsPro.vue:91
1014
  __( 'Complete eCommerce tracking for WooCommerce, Easy Digital Downloads and MemberPress stores with no code or settings required', 'google-analytics-for-wordpress' ),
1015
 
 
1016
  // Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:31
1017
  __( 'Forms Tracking', 'google-analytics-for-wordpress' ),
1018
 
1040
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:45
1041
  __( 'Continue & Install WPForms', 'google-analytics-for-wordpress' ),
1042
 
 
1043
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWpforms.vue:46
1044
  __( 'Installing...', 'google-analytics-for-wordpress' ),
1045
 
1119
  __( 'These user roles will be able to access MonsterInsights\'s reports in the WordPress admin area.', 'google-analytics-for-wordpress' ),
1120
 
1121
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedAddons-Lite.vue:49
 
1122
  __( 'Save and continue', 'google-analytics-for-wordpress' ),
1123
 
1124
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepRecommendedSettings.vue:89
1140
  __( 'No change', 'google-analytics-for-wordpress' ),
1141
 
1142
  // Reference: src/modules/reports/components/ReportListBox.vue:48
 
1143
  // Reference: src/modules/reports/components/reports-year-in-review/ReportYearInReviewListBox.vue:38
1144
  __( 'Show', 'google-analytics-for-wordpress' ),
1145
 
1212
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:33
1213
  __( 'Let\'s get you set up.', 'google-analytics-for-wordpress' ),
1214
 
 
1215
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:34
1216
  __( 'Save and Continue', 'google-analytics-for-wordpress' ),
1217
 
1234
  __( 'See who\'s viewing and submitting your forms, so you can increase your conversion rate.', 'google-analytics-for-wordpress' ),
1235
 
1236
  // Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:33
 
1237
  __( 'Google Optimize', 'google-analytics-for-wordpress' ),
1238
 
1239
  // Reference: src/modules/settings/components/tabs/SettingsTabConversions-Lite.vue:34
1251
  // Reference: src/modules/license/store/actions.js:80
1252
  __( 'Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key.', 'google-analytics-for-wordpress' ),
1253
 
 
 
 
1254
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:33
 
1255
  __( 'Upgrade to MonsterInsights Pro', 'google-analytics-for-wordpress' ),
1256
 
1257
  // Reference: src/modules/widget/components/settings/WidgetSettingsWidth.vue:40
1280
 
1281
  // Reference: src/modules/auth/api/index.js:118
1282
  // Reference: src/modules/license/api/index.js:143
 
1283
  // Reference: src/modules/wizard-onboarding/api/index.js:21
1284
  __( 'You appear to be offline.', 'google-analytics-for-wordpress' ),
1285
 
1328
  // Reference: src/modules/addons/components/AddonBlock.vue:88
1329
  __( 'Inactive', 'google-analytics-for-wordpress' ),
1330
 
 
 
 
1331
  // Reference: src/modules/wizard-onboarding/welcome-Lite.vue:135
1332
  __( 'Upgrade Now', 'google-analytics-for-wordpress' ),
1333
 
1447
  __( 'You appear to be offline. Settings not saved.', 'google-analytics-for-wordpress' ),
1448
 
1449
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:116
 
1450
  __( 'Authenticating', 'google-analytics-for-wordpress' ),
1451
 
1452
  // Reference: src/modules/reports/components/ReportReAuth.vue:30
 
 
1453
  __( 'Re-Authenticating', 'google-analytics-for-wordpress' ),
1454
 
1455
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:170
1465
  __( 'You\'ve disconnected your site from MonsterInsights. Your site is no longer being tracked by Google Analytics and you won\'t see reports anymore.', 'google-analytics-for-wordpress' ),
1466
 
1467
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:67
 
1468
  __( 'Connect MonsterInsights', 'google-analytics-for-wordpress' ),
1469
 
1470
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:68
1471
  __( 'Verify Credentials', 'google-analytics-for-wordpress' ),
1472
 
1473
  // Reference: src/modules/reports/components/ReportReAuth.vue:21
 
 
1474
  __( 'Reconnect MonsterInsights', 'google-analytics-for-wordpress' ),
1475
 
1476
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:70
1480
  __( 'Active Profile', 'google-analytics-for-wordpress' ),
1481
 
1482
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:72
 
1483
  __( 'Your website profile has been set at the network level of your WordPress Multisite.', 'google-analytics-for-wordpress' ),
1484
 
1485
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:73
 
1486
  __( 'If you would like to use a different profile for this subsite, you can authenticate below.', 'google-analytics-for-wordpress' ),
1487
 
1488
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:74
 
1489
  __( 'Manually enter your UA code', 'google-analytics-for-wordpress' ),
1490
 
1491
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:75
 
1492
  __( '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.', 'google-analytics-for-wordpress' ),
1493
 
1494
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputAuthenticate-Lite.vue:76
1504
  __( 'Can\'t load errors. Error: %s, %s', 'google-analytics-for-wordpress' ),
1505
 
1506
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:30
 
1507
  __( 'Google AMP', 'google-analytics-for-wordpress' ),
1508
 
1509
  // Reference: src/modules/settings/components/input/tab-publisher/SettingsInputAmp-Lite.vue:23
1510
  __( 'Want to use track users visiting your AMP pages? By upgrading to MonsterInsights Pro, you can enable AMP page tracking.', 'google-analytics-for-wordpress' ),
1511
 
 
1512
  // Reference: src/modules/settings/components/input/tab-engagement/SettingsInputEUCompliance-Lite.vue:19
1513
  __( 'Upgrade', 'google-analytics-for-wordpress' ),
1514
 
1522
  // Reference: src/modules/settings/components/input/tab-advanced/SettingsInputPerformance-Lite.vue:18
1523
  __( 'Adjust the sample rate so you don\'t exceed Google Analytics\' processing limit. Can also be used to enable Google Optimize for A/B testing and personalization.', 'google-analytics-for-wordpress' ),
1524
 
 
1525
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:27
1526
  __( 'Usage Tracking', 'google-analytics-for-wordpress' ),
1527
 
 
1528
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:29
1529
  __( 'By allowing us to track usage data we can better help you because we know with which WordPress configurations, themes and plugins we should test.', 'google-analytics-for-wordpress' ),
1530
 
1554
  __( 'Banner Ads', 'google-analytics-for-wordpress' ),
1555
 
1556
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:28
 
1557
  __( 'Author Tracking', 'google-analytics-for-wordpress' ),
1558
 
1559
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:29
 
1560
  __( 'Form Conversions', 'google-analytics-for-wordpress' ),
1561
 
1562
  // Reference: src/modules/settings/components/SettingsLiteUpsellLarge.vue:31
1587
  __( 'Proceed', 'google-analytics-for-wordpress' ),
1588
 
1589
  // Reference: src/components/TheAppFTPForm.vue:110
 
1590
  __( 'Please wait...', 'google-analytics-for-wordpress' ),
1591
 
1592
  // Reference: src/components/TheAppFTPForm.vue:92
1726
  // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:99
1727
  __( 'Do Upgrade Later', 'google-analytics-for-wordpress' ),
1728
 
 
1729
  // Reference: src/modules/wizard-onboarding/welcome-Lite.vue:133
1730
  __( 'Upgrade to PRO', 'google-analytics-for-wordpress' ),
1731
 
2048
  // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepAuthenticate.vue:93
2049
  __( 'Saving UA code...', 'google-analytics-for-wordpress' ),
2050
 
 
2051
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:263
 
2052
  __( '2019 Year in Review', 'google-analytics-for-wordpress' ),
2053
 
2054
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:259
2307
  __( '%s&#37 of your visitors were on a %s device.', 'google-analytics-for-wordpress' ),
2308
 
2309
  // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:296
2310
+ __( 'Clicks', 'google-analytics-for-wordpress' ),
2311
+
2312
+ // Reference: src/plugins/monsterinsights-settings-helper-plugin.js:5
2313
+ __( 'You need to %1$sconnect MonsterInsights%2$s first', 'google-analytics-for-wordpress' ),
2314
+
2315
+ // Reference: src/plugins/monsterinsights-reports-helper-plugin.js:273
2316
+ __( 'See Your Blog\'s most popular SEO Scores', 'google-analytics-for-wordpress' ),
2317
+
2318
+ // Reference: src/plugins/monsterinsights-compatibility-plugin.js:38
2319
+ __( 'MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure.', 'google-analytics-for-wordpress' ),
2320
+
2321
+ // Reference: src/modules/addons/store/actions.js:32
2322
+ __( 'In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s', 'google-analytics-for-wordpress' ),
2323
+
2324
+ // Reference: src/modules/addons/store/actions.js:34
2325
+ __( 'In order for the MonsterInsights Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s', 'google-analytics-for-wordpress' ),
2326
+
2327
+ // Reference: src/modules/addons/store/actions.js:48
2328
+ __( 'In order for the MonsterInsights Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s', 'google-analytics-for-wordpress' ),
2329
+
2330
+ // Reference: src/modules/addons/store/actions.js:50
2331
+ __( 'In order for the MonsterInsights Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s', 'google-analytics-for-wordpress' ),
2332
+
2333
+ // Reference: src/modules/reports/api/index.js:20
2334
+ __( 'Can\'t load report data. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2335
+
2336
+ // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:88
2337
+ // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:77
2338
+ __( 'Yes (recommended) %1$s- Get the latest features, bugfixes, and security updates as they are released.%2$s', 'google-analytics-for-wordpress' ),
2339
+
2340
+ // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:92
2341
+ // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:81
2342
+ __( 'Minor only %1$s- Get bugfixes and security updates, but not major features.%2$s', 'google-analytics-for-wordpress' ),
2343
+
2344
+ // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:96
2345
+ // Reference: src/modules/settings/components/tabs/SettingsTabGeneral-Lite.vue:85
2346
+ __( 'None %1$s- Manually update everything.%2$s', 'google-analytics-for-wordpress' ),
2347
+
2348
+ // Reference: src/modules/settings/components/SettingsNetwork.vue:34
2349
+ __( 'Add your MonsterInsights license key from the email receipt or account area. %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
2350
+
2351
+ // Reference: src/modules/settings/components/tabs/SettingsTabPublisher.vue:53
2352
+ __( '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.', 'google-analytics-for-wordpress' ),
2353
+
2354
+ // Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:71
2355
+ __( '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.', 'google-analytics-for-wordpress' ),
2356
+
2357
+ // Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:72
2358
+ __( '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.', 'google-analytics-for-wordpress' ),
2359
+
2360
+ // Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:73
2361
+ __( 'Add %1$sEnhanced Link Attribution%2$s to your tracking code.', 'google-analytics-for-wordpress' ),
2362
+
2363
+ // Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:75
2364
+ __( '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.', 'google-analytics-for-wordpress' ),
2365
+
2366
+ // Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:76
2367
+ __( '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.', 'google-analytics-for-wordpress' ),
2368
+
2369
+ // Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:77
2370
+ __( '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.', 'google-analytics-for-wordpress' ),
2371
+
2372
+ // Reference: src/modules/settings/components/tabs/SettingsTabEngagement.vue:89
2373
+ __( 'Cross domain tracking makes it possible for Analytics to see sessions on two related sites as a single session. More info on specific setup steps can be found in our %1$sknowledge base%2$s.', 'google-analytics-for-wordpress' ),
2374
+
2375
+ // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:142
2376
+ __( '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.', 'google-analytics-for-wordpress' ),
2377
+
2378
+ // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:66
2379
+ __( '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.', 'google-analytics-for-wordpress' ),
2380
+
2381
+ // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:74
2382
+ __( 'Enabled %1$s- Show reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
2383
+
2384
+ // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:78
2385
+ __( 'Dashboard Widget Only %1$s- Disable reports, but show dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
2386
+
2387
+ // Reference: src/modules/settings/components/tabs/SettingsTabAdvanced.vue:82
2388
+ __( 'Disabled %1$s- Hide reports and dashboard widget.%2$s', 'google-analytics-for-wordpress' ),
2389
+
2390
+ // Reference: src/modules/addons/addons-Lite.vue:75
2391
+ __( 'Upgrade to Pro to unlock addons and other great features. As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
2392
+
2393
+ // Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:160
2394
+ __( 'The full website URL (e.g. %1$s %2$s%3$s)', 'google-analytics-for-wordpress' ),
2395
+
2396
+ // Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:162
2397
+ __( 'Enter a referrer (e.g. %1$sfacebook, newsletter, google%2$s)', 'google-analytics-for-wordpress' ),
2398
+
2399
+ // Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:164
2400
+ __( 'Enter a marketing medium (e.g. %1$scpc, banner, email%2$s)', 'google-analytics-for-wordpress' ),
2401
+
2402
+ // Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:166
2403
+ __( 'Enter a name to easily identify (e.g. %1$sspring_sale%2$s)', 'google-analytics-for-wordpress' ),
2404
+
2405
+ // Reference: src/modules/tools/components/ToolsTabUrlBuilder.vue:172
2406
+ __( 'Set the parameters in the fragment portion of the URL %1$s(not recommended)%2$s', 'google-analytics-for-wordpress' ),
2407
+
2408
+ // Reference: src/modules/addons/api/index.js:125
2409
+ __( 'Can\'t activate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2410
+
2411
+ // Reference: src/modules/addons/api/index.js:153
2412
+ __( 'Can\'t deactivate addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2413
+
2414
+ // Reference: src/modules/addons/api/index.js:187
2415
+ __( 'Can\'t install plugin. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2416
+
2417
+ // Reference: src/modules/addons/api/index.js:63
2418
+ __( 'Can\'t install addon. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2419
+
2420
+ // Reference: src/modules/addons/api/index.js:97
2421
+ __( 'Can\'t install WPForms. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2422
+
2423
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepSuccess.vue:33
2424
+ __( '%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.', 'google-analytics-for-wordpress' ),
2425
+
2426
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepSuccess.vue:34
2427
+ __( '%1$sSubscribe to the MonsterInsights blog%2$s for tips on how to get more traffic and grow your business.', 'google-analytics-for-wordpress' ),
2428
+
2429
+ // Reference: src/modules/wizard-onboarding/components/steps/OnboardingStepWelcome.vue:44
2430
+ __( 'Publisher %1$s(Blog)%2$s', 'google-analytics-for-wordpress' ),
2431
+
2432
+ // Reference: src/modules/settings/components/network/SettingsInputLicenseNetwork-Lite.vue:20
2433
+ __( 'You\'re using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy!', 'google-analytics-for-wordpress' ),
2434
+
2435
+ // Reference: src/modules/settings/components/network/SettingsInputLicenseNetwork-Lite.vue:21
2436
+ __( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'google-analytics-for-wordpress' ),
2437
+
2438
+ // Reference: src/modules/settings/components/network/SettingsInputLicenseNetwork-Lite.vue:22
2439
+ __( 'As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!', 'google-analytics-for-wordpress' ),
2440
+
2441
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputUsageTracking-Lite.vue:30
2442
+ __( 'Complete documentation on usage tracking is available %1$shere%2$s.', 'google-analytics-for-wordpress' ),
2443
+
2444
+ // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsell-Lite.vue:29
2445
+ __( 'Use coupon code %1$sLITEUPGRADE%2$s', 'google-analytics-for-wordpress' ),
2446
+
2447
+ // Reference: src/modules/settings/api/index.js:18
2448
+ __( 'Can\'t load settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2449
+
2450
+ // Reference: src/modules/auth/api/index.js:140
2451
+ __( 'Can\'t save settings. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2452
+
2453
+ // Reference: src/modules/reports/components/reports-overview/ReportOverviewUpsellMobile-Lite.vue:20
2454
+ __( 'Upgrade to Pro and unlock addons and other great features. %1$sSave 50%% automatically!%2$s', 'google-analytics-for-wordpress' ),
2455
+
2456
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:29
2457
+ __( 'You\'re using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s', 'google-analytics-for-wordpress' ),
2458
+
2459
+ // Reference: src/modules/settings/components/input/tab-general/SettingsInputLicense-Lite.vue:35
2460
+ __( 'Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.', 'google-analytics-for-wordpress' ),
2461
+
2462
+ // Reference: src/modules/wizard-onboarding/api/index.js:17
2463
+ __( 'Can\'t load errors. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2464
+
2465
+ // Reference: src/modules/wizard-onboarding/components/inputs/OnboardingImprove-Lite.vue:19
2466
+ __( 'If enabled MonsterInsights will send some information about your WordPress site like what plugins and themes you use and which MonsterInsights settings you use to us so that we can improve our product. For a complete list of what we send and what we use it for, %1$svisit our website.%2$s', 'google-analytics-for-wordpress' ),
2467
+
2468
+ // Reference: src/modules/license/api/index.js:114
2469
+ __( 'Can\'t deactivate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2470
+
2471
+ // Reference: src/modules/license/api/index.js:139
2472
+ __( 'Can\'t upgrade to PRO please try again. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2473
+
2474
+ // Reference: src/modules/license/api/index.js:17
2475
+ __( 'Can\'t load license details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2476
+
2477
+ // Reference: src/modules/license/api/index.js:55
2478
+ __( 'Can\'t verify the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2479
+
2480
+ // Reference: src/modules/license/api/index.js:79
2481
+ __( 'Can\'t validate the license. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2482
+
2483
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:367
2484
+ __( 'Your best month was <strong>%1$s</strong> with <strong>%2$s visitors!</strong>', 'google-analytics-for-wordpress' ),
2485
+
2486
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:385
2487
+ __( 'Your <strong>%1$s</strong> visitors came from <strong>%2$s</strong> different countries.', 'google-analytics-for-wordpress' ),
2488
+
2489
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:405
2490
+ __( '%1$s&#37 of your visitors were %2$s', 'google-analytics-for-wordpress' ),
2491
+
2492
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:411
2493
+ __( '%1$s&#37 of your visitors were between the ages of %2$s', 'google-analytics-for-wordpress' ),
2494
+
2495
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:423
2496
+ __( '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>', 'google-analytics-for-wordpress' ),
2497
+
2498
+ // Reference: src/modules/reports/components/reports/YearInReview-Lite.vue:471
2499
+ __( '%1$s&#37 of your visitors were on a %2$s device.', 'google-analytics-for-wordpress' ),
2500
+
2501
+ // Reference: src/modules/settings/components/SettingsFirstTImeNotice.vue:43
2502
+ __( 'MonsterInsights makes it easy to connect your website with Google Analytics and see all important website stats right inside your WordPress dashboard. In order to setup website analytics, please take a look at our %1$sGetting started video%2$s or use our %3$s to get you quickly set up.', 'google-analytics-for-wordpress' ),
2503
+
2504
+ // Reference: src/modules/license/store/actions.js:60
2505
+ __( 'Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s', 'google-analytics-for-wordpress' ),
2506
+
2507
+ // Reference: src/modules/auth/api/index.js:114
2508
+ __( 'Can\'t deauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2509
+
2510
+ // Reference: src/modules/auth/api/index.js:16
2511
+ __( 'Can\'t load authentication details. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2512
+
2513
+ // Reference: src/modules/auth/api/index.js:40
2514
+ __( 'Can\'t authenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2515
+
2516
+ // Reference: src/modules/auth/api/index.js:64
2517
+ __( 'Can\'t reauthenticate. Error: %1$s, %2$s', 'google-analytics-for-wordpress' ),
2518
+
2519
+ // Reference: src/modules/auth/api/index.js:86
2520
+ __( 'Can\'t verify credentials. Error: %1$s, %2$s', 'google-analytics-for-wordpress' )
2521
  );
2522
  /* THIS IS THE END OF THE GENERATED FILE */
lite/assets/vue/css/chunk-common.css CHANGED
@@ -1 +1 @@
1
- strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-493c7577]{display:block}.monsterinsights-reset-default[data-v-493c7577]{margin-left:5px}.monsterinsights-dark[data-v-f66259b4]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#4e5c66;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -10px 20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:10px;position:absolute;right:15px;top:50%;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.float-right[data-v-7a774924]{float:right}.monsterinsights-container[data-v-7a774924]:after{display:table;clear:both;content:""}.monsterinsights-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:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;left:2px;right:2px;top:2px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;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}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(../img/mascot.png)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}.monsterinsights-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}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;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}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-link-title{position:absolute;right:100%;margin-right:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,d09GRgABAAAAAAusAAsAAAAAMGgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADsAAABUIIslek9TLzIAAAFEAAAAPgAAAFZjRmM5Y21hcAAAAYQAAAgCAAArYmjjYVVnbHlmAAAJiAAAAEEAAABQiOYj2mhlYWQAAAnMAAAALgAAADYR8XmmaGhlYQAACfwAAAAcAAAAJAqNAyNobXR4AAAKGAAAAAgAAAAIAyAAAGxvY2EAAAogAAAABgAAAAYAKAAAbWF4cAAACigAAAAeAAAAIAEOACJuYW1lAAAKSAAAAUIAAAKOcN63t3Bvc3QAAAuMAAAAHQAAAC5lhHRpeJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiBmg4gCACY7BUgAeJxjYGScwDiBgZWBgSGVtYKBgVECQjMfYEhiYmFgYGJgZWbACgLSXFMYHIAq/rNfAHK3gEmgASACAIekCT4AAHic7dhl0zDVmUXh5+XFHYK7E0IguFtwt4QQgmtwd3d3d7cED+4SXIO7u7vbsNfaUzU1fyGcu66u1adOf+6uHhgYGGpgYGDwL37/iyEHBoZZcWDQLzUw9NK/7A5if/DA8OwPOfQknBky+0P8/PPPOcd1UJ785frr/Dq/zq/z6/w3zsCgoX/xX74GRsxbcYpRB1iDB/7PGvT/DFGDenBwe8hKD1XpoSs9TKWHrfRwlR6+0iNUesRKj1TpkSs9SqVHrfRolR690r+p9BiVHrPSY1V67EqPU+lxKz1epcev9ASVnrDSE1V64kpPUulJKz1ZpSev9BSVnrLSU1V66kr/ttLTVPp3lZ62/KJSerpKT1/pP1R6hkrPWOmZKj1zpWep9KyVnq3Ss1d6jkrPWem5Kj13peep9LyVnq/S81d6gUr/sdILVnqhSi9c6UUqvWilF6v04pVeotJLVnqpSi9d6WUqvWyll6v08pVeodIrVvpPlf5zpVeq9F8qvXKl/1rpVSr9t0qvWunVKr16pdeo9JqVXqvSa1d6nUqvW+n1Kr1+pTeo9N8rvWGlN6r0xpXepNKbVnqzSm9e6S0qvWWlt6r01pXeptLbVnq7Sm9f6R0qvWOld6r0zpXepdK7Vnq3Su9e6T0qvWel96r03pXep9L7Vnq/Su9f6QMqfWClD6r0wZU+pNKHVvqwSh9e6SMqfWSlj6r00ZU+ptLHVvq4Sh9f6RMqfWKlT6r0yZU+pdKnVvq0Sp9e6TMqfWalz6r02ZU+p9LnVvq8Sp9f6QsqfWGl/1Hpf1b6okpfXOlLKn1ppS+r9OWVvqLS/6r0lZW+qtJXV/qaSl9b6esqfX2lb6j0jZW+qdI3V/qWSt9a6dsqfXul76j0vyt9Z6XvqvTdlb6n0vdW+r5K31/pByr9YKUfqvTDlX6k0v+p9KOVfqzSj1f6iUo/WemnKv10pZ+p9LOVfq7Sz1f6hUq/WOmXKv1ypV+p9KuVfq3Sr1f6jUq/Wem3Kv12pd+p9LuVfq/S71f6g0p/WOmPKv1xpT+p9KeV/qzSn1f6i0p/WemvKv11pb+p9LeV/q7S31f6h0r/WOmfKv1zDfI26KKHED1Y9JCihxI9tOhhRA8rejjRw4seQfSIokcSPbLoUUSPKno00aOL/o3oMUSPKXos0WOLHkf0uKLHEz2+6AlETyh6ItETi55E9KSiJxM9uegpRE8peirRU4v+rehpRP9O9LSify96OtHTi/6D6BlEzyh6JtEzi55F9KyiZxM9u+g5RM8pei7Rc4ueR/S8oucTPb/oBUT/UfSCohcSvbDoRUQvKnox0YuLXkL0kqKXEr206GVELyt6OdHLi15B9Iqi/yT6z6JXEv0X0SuL/qvoVUT/TfSqolcTvbroNUSvKXot0WuLXkf0uqLXE72+6A1E/130hqI3Er2x6E1Ebyp6M9Gbi95C9JaitxK9tehtRG8rejvR24veQfSOoncSvbPoXUTvKno30buL3kP0nqL3Er236H1E7yt6P9H7iz5A9IGiDxJ9sOhDRB8q+jDRh4s+QvSRoo8SfbToY0QfK/o40ceLPkH0iaJPEn2y6FNEnyr6NNGniz5D9JmizxJ9tuhzRJ8r+jzR54u+QPSFov8h+p+iLxJ9sehLRF8q+jLRl4u+QvS/RF8p+irRV4u+RvS1oq8Tfb3oG0TfKPom0TeLvkX0raJvE3276DtE/1v0naLvEn236HtE3yv6PtH3i35A9IOiHxL9sOhHRP9H9KOiHxP9uOgnRD8p+inRT4t+RvSzop8T/bzoF0S/KPol0S+LfkX0q6JfE/266DdEvyn6LdFvi35H9Lui3xP9vugPRH8o+iPRH4v+RPSnoj8T/bnoL0R/Kfor0V+L/kb0t6K/E/296B9E/yj6J9E/K/2/v/npoocQPVj0kKKHEj206GFEDyt6ONHDix5B9IiiRxI9suhRRI8qejTRo4v+jegxRI8peizRY4seR/S4oscTPb7oCURPKHoi0ROLnkT0pKInEz256ClETyl6KtFTi/6t6GlE/070tKJ/L3o60dOL/oPoGUTPKHom0TOLnkX0rKJnEz276DlEzyl6LtFzi55H9Lyi5xM9v+gFRP9R9IKiFxK9sOhFRC8qejHRi4teQvSSopcSvbToZUQvK3o50cuLXkH0iqL/JPrPolcS/RfRK4v+q+hVRP9N9KqiVxO9uug1RK8pei3Ra4teR/S6otcTvb7oDUT/XfSGojcSvbHoTURvKnoz0ZuL3kL0lqK3Er216G1Ebyt6O9Hbi95B9I6idxK9s+hdRO8qejfRu4veQ/SeovcSvbfofUTvK3o/0fuLPkD0gaIPEn2w6ENEHyr6MNGHiz5C9JGijxJ9tOhjRB8r+jjRx4s+QfSJok8SfbLoU0SfKvo00aeLPkP0maLPEn226HNEnyv6PNHni75A9IWi/yH6n6IvEn2x6EtEXyr6MtGXi75C9L9EXyn6KtFXi75G9LWirxN9vegbRN8o+ibRN4u+RfStom8TfbvoO0T/W/Sdou8Sfbfoe0TfK/o+0feLfkD0g6IfEv2w6EdE/0f0o6IfE/246CdEPyn6KdFPi35G9LOinxP9vOgXRL8o+iXRL4t+RfSrol8T/broN0S/Kfot0W+Lfkf0u6LfE/2+6A9Efyj6I9Efi/5E9KeiPxP9uegvRH8p+ivRX4v+RvS3or8T/b3oH0T/KPon0T9rYND/AOaSEScAAHicY2BiAAKmPSy+QEqUgYFRUURcTFzMyNzM3MxEXU1dTYmdjZ2NccK/K5oaLm6L3Fw0NOEMZoVAFD6IAQD4PA9iAAAAeJxjYGRgYADilrme/fH8Nl8ZuNkvAEUYbnDPcEOmmfaw+AIpDgYmEA8AHMMJGAAAeJxjYGRgYL/AAATMCiCSaQ8DIwMqYAIAK/QBvQAAAAADIAAAAAAAAAAoAAB4nGNgZGBgYGIQA2IGMIuBgQsIGRj+g/kMAArUATEAAHicjY69TsMwFIWP+4doJYSKhMTmoUJIqOnPWIm1ZWDq0IEtTZw2VRpHjlu1D8A7MPMczAw8DM/AifFEl9qS9d1zzr3XAK7xBYHqCHTdW50aLlj9cZ1057lBfvTcRAdPnlvUnz23mXj13MEN3jhBNC6p9PDuuYYrfHquU//23CD/eG7iVnQ9t9ATD57bWIgXzx3ciw+rDrZfqmhnUnvsx2kZzdVql4Xm1DhVFsqUqc7lKBiemjOVKxNaFcvlUZb71djaRCZGb+VU51ZlmZaF0RsV2WBtbTEZDBKvB5HewkLhwLePkhRhB4OU9ZFKTCqpzems6GQI6Z7TcU5mQceQUmjkkBghwPCszhmd3HWHLh+ze8mEpLvnT8dULRLWCTMaW9LUbanSGa+mUjhv47ZY7l67rgITDHiTf/mAKU76BTuXfk8AAHicY2BigAARBuyAiZGJkZmBJSWzOJmBAQALQwHHAAAA) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.monsterinsights_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-check:before{content:"\f015"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-star:before{content:"\f025"}.monstericon-files:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand:before{content:"\f02d"}.monstericon-compress:before{content:"\f02f"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}@media (max-width:782px){.monsterinsights-notices-area{margin-left:10px;margin-right:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-left:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-left-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-left-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-left-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-left-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-left-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-right:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:right}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-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){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-left:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-left:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_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.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-left:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-left-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-left-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-left-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;left:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_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}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_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%)}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-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}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_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}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_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)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_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%}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_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}.monsterinsights_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}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.monsterinsights_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)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_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}.monsterinsights_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){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_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}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_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))}.monsterinsights_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))}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_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)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_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}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_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}.monsterinsights_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){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_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}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_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}.monsterinsights_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)}.monsterinsights_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)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_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%}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_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)}.monsterinsights_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)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_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}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{right:auto;left:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_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}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_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{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-left:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 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% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip[x-placement^=left]{padding-right:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;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% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;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)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-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}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:left;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-top:10px;padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{left:20px;right:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-right:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 50%;padding-left:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-left:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.monsterinsights-swal{margin-left:160px}.auto-fold .monsterinsights-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .monsterinsights-swal{margin-left:160px}.folded .monsterinsights-swal{margin-left:36px}}.monsterinsights-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}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}
1
+ strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-493c7577]{display:block}.monsterinsights-reset-default[data-v-493c7577]{margin-left:5px}.monsterinsights-dark[data-v-f66259b4]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#4e5c66;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -10px 20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-right:20px;padding-left:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:10px;position:absolute;right:15px;top:50%;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.float-right[data-v-7a774924]{float:right}.monsterinsights-container[data-v-7a774924]:after{display:table;clear:both;content:""}.monsterinsights-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:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;left:2px;right:2px;top:2px;bottom:2px;padding:6px 6px 6px 8px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;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}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(../img/mascot.png)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg)}.monsterinsights-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}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;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}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-link-title{position:absolute;right:100%;margin-right:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.monsterinsights_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-check:before{content:"\f015"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-star:before{content:"\f025"}.monstericon-files:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand:before{content:"\f02d"}.monstericon-compress:before{content:"\f02f"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}@media (max-width:782px){.monsterinsights-notices-area{margin-left:10px;margin-right:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-left:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-left-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-left-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-left-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-left-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-left-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-right:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:right}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-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){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-left:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-left:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-left:0;color:#fff}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_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.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-left:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-left-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-left-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-left-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;left:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;left:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;left:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;left:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;left:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_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}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_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%)}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-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}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_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}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_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)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_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%}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_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}.monsterinsights_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}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;background-color:rgba(0,0,0,0)}.monsterinsights_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)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_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}.monsterinsights_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){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_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}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_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))}.monsterinsights_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))}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_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)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_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}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_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}.monsterinsights_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){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_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}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_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}.monsterinsights_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)}.monsterinsights_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)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_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%}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_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)}.monsterinsights_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)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_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}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{right:auto;left:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_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}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_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{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-left:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 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% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip[x-placement^=left]{padding-right:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;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% - 5px);margin-left:0;margin-right:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;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)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:right}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{left:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{right:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-right:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-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}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;left:0;bottom:0;right:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:left;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;right:0;left:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-top:10px;padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{left:20px;right:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-right:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:0 50%;padding-left:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-left:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-left:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.monsterinsights-swal{margin-left:160px}.auto-fold .monsterinsights-swal{margin-left:36px}}@media (min-width:961px){.auto-fold .monsterinsights-swal{margin-left:160px}.folded .monsterinsights-swal{margin-left:36px}}.monsterinsights-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}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;left:0;right:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;right:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}
lite/assets/vue/css/chunk-common.rtl.css CHANGED
@@ -1 +1 @@
1
- strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-493c7577]{display:block}.monsterinsights-reset-default[data-v-493c7577]{margin-right:5px}.monsterinsights-dark[data-v-f66259b4]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#4e5c66;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -10px 20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:10px;position:absolute;left:15px;top:50%;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.float-right[data-v-7a774924]{float:left}.monsterinsights-container[data-v-7a774924]:after{display:table;clear:both;content:""}.monsterinsights-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:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;right:2px;left:2px;top:2px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;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}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(../img/mascot.png)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg)}.monsterinsights-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}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;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}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-link-title{position:absolute;left:100%;margin-left:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.monsterinsights_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-check:before{content:"\f015"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-star:before{content:"\f025"}.monstericon-files:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand:before{content:"\f02d"}.monstericon-compress:before{content:"\f02f"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}@media (max-width:782px){.monsterinsights-notices-area{margin-right:10px;margin-left:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-right:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-right-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-right-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-right-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-right-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-right-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-left:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:left}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-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){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-right:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-right:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-right:0;color:#fff}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_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.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-right:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-right-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-right-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-right-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;right:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_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}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_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%)}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-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}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_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}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_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)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_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%}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_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}.monsterinsights_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}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.monsterinsights_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)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_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}.monsterinsights_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){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_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}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_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))}.monsterinsights_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))}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_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)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_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}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_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}.monsterinsights_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){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_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}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_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}.monsterinsights_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)}.monsterinsights_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)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_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%}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_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)}.monsterinsights_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)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_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}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{left:auto;right:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_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}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_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{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-right:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;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% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip[x-placement^=left]{padding-left:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 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% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;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)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-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}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:right;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-top:10px;padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{right:20px;left:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-left:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:100% 50%;padding-right:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-right:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.monsterinsights-swal{margin-right:160px}.auto-fold .monsterinsights-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .monsterinsights-swal{margin-right:160px}.folded .monsterinsights-swal{margin-right:36px}}.monsterinsights-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}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}
1
+ strong[data-v-a9c27d52]{display:block}[data-v-6038a3d0]{will-change:height;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.expand-enter-active,.expand-leave-active{-webkit-transition:height .5s ease-in-out;transition:height .5s ease-in-out;overflow:hidden}.expand-enter,.expand-leave-to{height:0}.monsterinsights-dark[data-v-493c7577]{display:block}.monsterinsights-reset-default[data-v-493c7577]{margin-right:5px}.monsterinsights-dark[data-v-f66259b4]{display:block}.monsterinsights-admin-page .monsterinsights-floating-bar{background:#4e5c66;color:#fff;font-size:13px;padding:10px;text-align:center;position:relative;margin:-20px -10px 20px}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-floating-bar{margin-top:-10px;padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-floating-bar a{text-decoration:underline;color:#fff}.monsterinsights-admin-page .monsterinsights-floating-bar a:focus,.monsterinsights-admin-page .monsterinsights-floating-bar a:hover{color:#fff;text-decoration:none}.monsterinsights-admin-page .monsterinsights-floating-bar .monsterinsights-floating-bar-close{padding:0;border:0;background:rgba(0,0,0,0);color:#fff;font-size:10px;position:absolute;left:15px;top:50%;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-slide-enter-active,.monsterinsights-admin-page .monsterinsights-slide-leave-active{-webkit-transition-duration:.5s;transition-duration:.5s}.monsterinsights-admin-page .monsterinsights-slide-enter-to,.monsterinsights-admin-page .monsterinsights-slide-leave{max-height:100px;overflow:hidden}.monsterinsights-admin-page .monsterinsights-slide-enter,.monsterinsights-admin-page .monsterinsights-slide-leave-to{overflow:hidden;max-height:0}.float-right[data-v-7a774924]{float:left}.monsterinsights-container[data-v-7a774924]:after{display:table;clear:both;content:""}.monsterinsights-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:#fff;z-index:1000;padding:5px 10px}.monsterinsights-quick-links:focus,.monsterinsights-quick-links:hover{-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-label{border-radius:50%;background:#fff;border:2px solid rgba(147,120,207,.21);position:absolute;right:2px;left:2px;top:2px;bottom:2px;padding:6px 8px 6px 6px;display:block;width:56px;height:56px;outline:none;cursor:pointer}.monsterinsights-quick-links-open .monsterinsights-quick-links-label .monsterinsights-quick-link-title{opacity:0;pointer-events:none}.monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(15deg);-ms-transform:rotate(15deg);transform:rotate(15deg);-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center;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}.monsterinsights-bg-img.monsterinsights-quick-links-mascot:after{background-image:url(../img/mascot.png)}.monsterinsights-quick-links-open .monsterinsights-bg-img.monsterinsights-quick-links-mascot{-webkit-transform:rotate(-15deg);-ms-transform:rotate(-15deg);transform:rotate(-15deg)}.monsterinsights-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}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item{display:block;width:48px;height:48px;background:#509fe2;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}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item:hover{color:#fff;background:#50abee;-webkit-box-shadow:0 0 15px 2px #ababab;box-shadow:0 0 15px 2px #ababab}.monsterinsights-quick-links-menu .monsterinsights-quick-links-menu-item.monsterinsights-show{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.monsterinsights-quick-link-title{position:absolute;left:100%;margin-left:10px;font-size:13px;color:#fff;background:#595959;border-radius:5px;white-space:nowrap;padding:6px 8px;display:block;top:50%;margin-top:-12px;line-height:1;-webkit-transition:opacity .2s ease;transition:opacity .2s ease;outline:none}@font-face{font-family:Lato;src:url(../fonts/lato-regular-webfont.woff) format("woff"),url(../fonts/lato-regular-webfont.woff2) format("woff2");font-weight:400;font-style:normal}@font-face{font-family:Lato;src:url(../fonts/lato-bold-webfont.woff) format("woff"),url(../fonts/lato-bold-webfont.woff2) format("woff2");font-weight:700;font-style:normal}@font-face{font-family:text-security-disc;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff"),url(../fonts/text-security-disc.ttf) format("truetype")}@font-face{font-family:Misettings;src:url(../fonts/icons.woff2) format("woff2"),url(../fonts/icons.woff) format("woff"),url(../fonts/icons.ttf) format("truetype"),url(../fonts/icons.otf) format("opentype");font-weight:400;font-style:normal}[class*=monstericon-]:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before,body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before,body.swal2-toast-shown.monsterinsights_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-check:before{content:"\f015"}.monstericon-warning-triangle:before{content:"\f020"}.monstericon-star:before{content:"\f025"}.monstericon-files:before{content:"\f028"}.monstericon-search:before{content:"\f029"}.monstericon-user:before{content:"\f02a"}.monstericon-eye:before{content:"\f02b"}.monstericon-cog:before{content:"\f02c"}.monstericon-expand:before{content:"\f02d"}.monstericon-compress:before{content:"\f02f"}.monstericon-life-ring:before{content:"\f030"}.monstericon-wpbeginner:before{content:"\f031"}.monstericon-lightbulb:before{content:"\f032"}.monstericon-shopping-cart:before{content:"\f033"}@media (max-width:782px){.monsterinsights-notices-area{margin-right:10px;margin-left:10px}}.monsterinsights-notice{position:relative;color:#444}.monsterinsights-notice .monsterinsights-notice-inner{margin-top:25px;padding:20px;background:#fff;border-right:3px solid;line-height:1.5;font-size:14px}.monsterinsights-notice .monsterinsights-notice-inner .notice-title{color:#393f4c;font-weight:700;display:block;margin:0 0 6px;padding:0}@media (max-width:782px){.monsterinsights-notice .monsterinsights-notice-inner{padding:10px}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-notice-inner{border-right-color:#ea4e64}.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-inner{border-right-color:#f5c953}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-inner{border-right-color:#509fe2}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner{border:1px solid #509fe2;border-right-width:3px;color:#777}.monsterinsights-notice.monsterinsights-notice-info-xl .monsterinsights-notice-inner .monsterinsights-button{color:#fff;margin:15px 0 0}.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-inner{border-right-color:#5cc0a5}.monsterinsights-notice .notice-content{margin-left:20px}.monsterinsights-notice .notice-content a{color:#444}.monsterinsights-notice .dismiss-notice{border:none;background:none;padding:0;margin:0;display:inline-block;cursor:pointer;color:#acbdc9;position:relative;float:left}.monsterinsights-notice .dismiss-notice:focus,.monsterinsights-notice .dismiss-notice:hover{color:#444}.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:425px){.monsterinsights-notice.monsterinsights-notice-info .notice-content,.monsterinsights-notice.monsterinsights-notice-success .notice-content,.monsterinsights-notice.monsterinsights-notice-warning .notice-content{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-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){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-notice-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-notice-button{margin-right:0}}.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:0;padding:10px 16px 8px;line-height:1;font-size:14px;font-weight:600}@media (max-width:782px){.monsterinsights-notice.monsterinsights-notice-info .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-success .monsterinsights-button,.monsterinsights-notice.monsterinsights-notice-warning .monsterinsights-button{margin-top:10px;margin-right:0}}.monsterinsights-notice.monsterinsights-notice-error .monsterinsights-button{margin-top:10px;margin-right:0;color:#fff}body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-right{top:32px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-container.swal2-top-end,body.swal2-toast-shown.monsterinsights_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.monsterinsights_page .swal2-popup.swal2-toast{border-radius:0;padding:9px;border-right:3px solid #fff}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast{width:80vw}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-success{border-right-color:#5cc0a5}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-info{border-right-color:#509fe2}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast.mi-error{border-right-color:#ea4e64}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-title{color:#393f4c;font-size:13px;font-weight:400}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{font-size:15px;width:10px;height:10px;line-height:10px}@media screen and (max-width:767px){body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{padding:9px;line-height:0}}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:14px;height:14px;min-width:14px;margin:0;border:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info{border:none;position:relative}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info:before{content:"\f01e";position:absolute;top:-1px;right:0;color:#509fe2;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-info .swal2-icon-text{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error{border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error:before{content:"\f023";position:absolute;top:-1px;right:0;color:#ea4e64;line-height:1}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error .swal2-x-mark *{display:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon [class^=-ring]{width:14px;height:14px;top:0;right:0}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:14px;height:14px;top:0;right:0;border:none}body.swal2-toast-shown.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring:before{content:"\f027";position:absolute;top:-1px;right:0;color:#5cc0a5;line-height:1}body.swal2-toast-shown.monsterinsights_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}}.monsterinsights_page body.swal2-toast-shown .swal2-container,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-shown{background-color:rgba(0,0,0,0)}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;left:0;bottom:auto;right:auto}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;left:auto;bottom:auto;right:0}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-left,.monsterinsights_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%)}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-center-end,.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-left,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;left:auto;bottom:0;right:0}.monsterinsights_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%)}.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-end,.monsterinsights_page body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;left:0;bottom:0;right:auto}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-loading{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.monsterinsights_page body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast{-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}.monsterinsights_page .swal2-popup.swal2-toast,.monsterinsights_page .swal2-popup.swal2-toast .swal2-header{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monsterinsights_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}.monsterinsights_page .swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.monsterinsights_page .swal2-popup.swal2-toast .swal2-content{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;font-size:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon-text{font-size:2em;font-weight:700;line-height:1em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{right:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{left:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-actions{height:auto;margin:0 .3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.monsterinsights_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)}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.monsterinsights_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%}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;right:.4375em;width:.4375em;height:2.6875em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;right:.1875em;width:.75em}.monsterinsights_page .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;left:.1875em;width:1.375em}.monsterinsights_page .swal2-popup.swal2-toast.swal2-show{-webkit-animation:showSweetToast .5s;animation:showSweetToast .5s}.monsterinsights_page .swal2-popup.swal2-toast.swal2-hide{-webkit-animation:hideSweetToast .2s forwards;animation:hideSweetToast .2s forwards}.monsterinsights_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}.monsterinsights_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}}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}.monsterinsights_page body.swal2-height-auto{height:auto!important}.monsterinsights_page body.swal2-no-backdrop .swal2-shown{top:auto;left:auto;bottom:auto;right:auto;background-color:rgba(0,0,0,0)}.monsterinsights_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)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;left:0}.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-left,.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-center-end,.monsterinsights_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%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;right:50%;-webkit-transform:translateX(50%);-ms-transform:translateX(50%);transform:translateX(50%)}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;right:0}.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,.monsterinsights_page body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{left:0;bottom:0}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-top{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-top-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-top-end,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-center-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-center-end,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_page .swal2-container.swal2-bottom-left,.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-bottom-end,.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-grow-fullscreen>.swal2-modal,.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-start,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-left,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-bottom-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-center-right,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-end,.monsterinsights_page .swal2-container.swal2-grow-column.swal2-top-right{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.monsterinsights_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}.monsterinsights_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){.monsterinsights_page .swal2-container .swal2-modal{margin:0!important}}.monsterinsights_page .swal2-container.swal2-fade{-webkit-transition:background-color .1s;transition:background-color .1s}.monsterinsights_page .swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.monsterinsights_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}.monsterinsights_page .swal2-popup:focus{outline:0}.monsterinsights_page .swal2-popup.swal2-loading{overflow-y:hidden}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.monsterinsights_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))}.monsterinsights_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))}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-left:30px;margin-right:30px}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-styled{margin:.3125em;padding:.625em 2em;font-weight:500;-webkit-box-shadow:none;box-shadow:none}.monsterinsights_page .swal2-popup .swal2-styled:not([disabled]){cursor:pointer}.monsterinsights_page .swal2-popup .swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.monsterinsights_page .swal2-popup .swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.monsterinsights_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)}.monsterinsights_page .swal2-popup .swal2-styled::-moz-focus-inner{border:0}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-image{max-width:100%;margin:1.25em auto}.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-close:hover{-webkit-transform:none;-ms-transform:none;transform:none;color:#f27474}.monsterinsights_page .swal2-popup>.swal2-checkbox,.monsterinsights_page .swal2-popup>.swal2-file,.monsterinsights_page .swal2-popup>.swal2-input,.monsterinsights_page .swal2-popup>.swal2-radio,.monsterinsights_page .swal2-popup>.swal2-select,.monsterinsights_page .swal2-popup>.swal2-textarea{display:none}.monsterinsights_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}.monsterinsights_page .swal2-popup #swal2-content{text-align:center}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_page .swal2-popup .swal2-radio,.monsterinsights_page .swal2-popup .swal2-select,.monsterinsights_page .swal2-popup .swal2-textarea{margin:1em auto}.monsterinsights_page .swal2-popup .swal2-file,.monsterinsights_page .swal2-popup .swal2-input,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file.swal2-inputerror,.monsterinsights_page .swal2-popup .swal2-input.swal2-inputerror,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file:focus,.monsterinsights_page .swal2-popup .swal2-input:focus,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-file::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-webkit-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-webkit-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-moz-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-moz-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input:-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea:-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-input::-ms-input-placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::-ms-input-placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-file::placeholder,.monsterinsights_page .swal2-popup .swal2-input::placeholder,.monsterinsights_page .swal2-popup .swal2-textarea::placeholder{color:#ccc}.monsterinsights_page .swal2-popup .swal2-range input{width:80%}.monsterinsights_page .swal2-popup .swal2-range output{width:20%;font-weight:600;text-align:center}.monsterinsights_page .swal2-popup .swal2-range input,.monsterinsights_page .swal2-popup .swal2-range output{height:2.625em;margin:1em auto;padding:0;font-size:1.125em;line-height:2.625em}.monsterinsights_page .swal2-popup .swal2-input{height:2.625em;padding:0 .75em}.monsterinsights_page .swal2-popup .swal2-input[type=number]{max-width:10em}.monsterinsights_page .swal2-popup .swal2-file{font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-textarea{height:6.75em;padding:.75em}.monsterinsights_page .swal2-popup .swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;color:#545454;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox,.monsterinsights_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}.monsterinsights_page .swal2-popup .swal2-checkbox label,.monsterinsights_page .swal2-popup .swal2-radio label{margin:0 .6em;font-size:1.125em}.monsterinsights_page .swal2-popup .swal2-checkbox input,.monsterinsights_page .swal2-popup .swal2-radio input{margin:0 .4em}.monsterinsights_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}.monsterinsights_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){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.monsterinsights_page .swal2-range input{width:100%!important}.monsterinsights_page .swal2-range output{display:none}}@-moz-document url-prefix(){.monsterinsights_page .swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.monsterinsights_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}.monsterinsights_page .swal2-icon-text{font-size:3.75em}.monsterinsights_page .swal2-icon.swal2-error{border-color:#f27474}.monsterinsights_page .swal2-icon.swal2-error .swal2-x-mark{position:relative;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.monsterinsights_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}.monsterinsights_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)}.monsterinsights_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)}.monsterinsights_page .swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.monsterinsights_page .swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee;font-size:1rem}.monsterinsights_page .swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.monsterinsights_page .swal2-icon.swal2-success{border-color:#a5dc86}.monsterinsights_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%}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_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}.monsterinsights_page .swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;height:.3125em;border-radius:.125em;background-color:#a5dc86;z-index:2}.monsterinsights_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)}.monsterinsights_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)}.monsterinsights_page .swal2-progresssteps{-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 1.25em;padding:0;font-weight:600}.monsterinsights_page .swal2-progresssteps li{display:inline-block;position:relative}.monsterinsights_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}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:first-child{margin-right:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle:last-child{margin-left:0}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep{background:#3085d6}.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle,.monsterinsights_page .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline{background:#add8e6}.monsterinsights_page .swal2-progresssteps .swal2-progressline{width:2.5em;height:.4em;margin:0 -1px;background:#3085d6;z-index:10}.monsterinsights_page [class^=swal2]{-webkit-tap-highlight-color:transparent}.monsterinsights_page .swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.monsterinsights_page .swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.monsterinsights_page .swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.monsterinsights_page .swal2-rtl .swal2-close{left:auto;right:0}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.monsterinsights_page .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.monsterinsights_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}.monsterinsights_page .swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.monsterinsights_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{.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}.monsterinsights_page body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}.monsterinsights-tooltip{display:block!important;z-index:10000;max-width:350px}.monsterinsights-tooltip .monsterinsights-tooltip-inner{background:#5f6197;color:#fff;border-radius:5px;padding:16px 20px;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif}.monsterinsights-tooltip .monsterinsights-tooltip-inner a{color:#fff;font-weight:700}.monsterinsights-tooltip .monsterinsights-tooltip-arrow{width:0;height:0;border-style:solid;position:absolute;margin:5px;border-color:#5f6197;z-index:1}.monsterinsights-tooltip[x-placement^=top]{padding-bottom:5px}.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow{border-width:5px 5px 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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=bottom]{padding-top:5px}.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow{border-width:0 5px 5px;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% - 5px);margin-top:0;margin-bottom:0}.monsterinsights-tooltip[x-placement^=right]{padding-right:5px}.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow{border-width:5px 0 5px 5px;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% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip[x-placement^=left]{padding-left:5px}.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow{border-width:5px 5px 5px 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% - 5px);margin-right:0;margin-left:0}.monsterinsights-tooltip.popover .popover-inner{background:#fff;color:#5f6197;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)}.monsterinsights-tooltip.popover .popover-arrow{border-color:#fff}.monsterinsights-tooltip[aria-hidden=true]{visibility:hidden;opacity:0;-webkit-transition:opacity .15s,visibility .15s;transition:opacity .15s,visibility .15s}.monsterinsights-tooltip[aria-hidden=false]{visibility:visible;opacity:1;-webkit-transition:opacity .15s;transition:opacity .15s}.monsterinsights-conditional-logic-container button:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header{margin-bottom:30px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-header .monsterinsights-conditional-rule-sets-number{float:left}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator{text-align:center;font-weight:700;display:block;margin:0 auto 20px;position:relative}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after,.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{content:"";position:absolute;top:45%;width:45%;height:2px;background:#d6e2ed;margin-top:-1px}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:before{right:0}.monsterinsights-conditional-logic-container .monsterinsights-condition-rule-separator:after{left:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:24px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column{width:100%;margin-left:18px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field{text-transform:capitalize;width:100%;height:38px;min-height:38px;line-height:38px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.text-input{padding:0 8px;border-color:#ddd;text-transform:none;border-radius:5px;-webkit-box-sizing:border-box;box-sizing:border-box;height:38px;margin-top:0;line-height:38px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field input[type=text]{padding-top:5px;padding-bottom:5px;height:inherit}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field.multiselect--active .multiselect__tags .multiselect__spinner{z-index:1}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags{padding:0;height:38px;min-height:38px;border-color:#ddd;margin-top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags input[type=text]{border:0;height:36px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__single{margin-bottom:0;padding:0 8px;line-height:36px;font-size:14px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__placeholder{display:block;margin-bottom:0;line-height:36px;padding:0 8px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .monsterinsights-settings-conditional-column .monsterinsights-settings-conditional-input-field .multiselect__tags .multiselect__spinner{width:35px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition{padding:6px 12px;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .add-new-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition{border:0;padding:0;margin:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition:focus{outline:0}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle{color:#dc3232;cursor:pointer;padding:0;margin:0 15px}.monsterinsights-conditional-logic-container .monsterinsights-conditional-logic-repeater-row .remove-condition .monstericon-times-circle:focus{outline:0}body{background:#f3f6ff;margin:0}.monsterinsights-admin-page,.monsterinsights-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}.monsterinsights-highlighted-text{color:#64bfa5;font-weight:700}.monsterinsights-bold{font-weight:700}.monsterinsights-bg-img{width:100%;padding-top:66%;position:relative}.monsterinsights-bg-img:after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;background-repeat:no-repeat;background-size:contain}.monsterinsights-header{padding:20px 10px;background-color:#f9fbff}.monsterinsights-settings-panel-network>.monsterinsights-header{background-color:rgba(0,0,0,0)}.monsterinsights-logo-area{float:right;max-width:calc(100vw - 170px)}.monsterinsights-logo-area img{display:block;max-width:100%}@media (max-width:782px){.monsterinsights-logo-area{text-align:center;margin:0 auto;float:none}.monsterinsights-logo-area img{display:inline-block;max-height:35px}}@media (max-width:782px){.monsterinsights-header .monsterinsights-container,.monsterinsights-navigation-bar .monsterinsights-container{padding:0;width:100%}}.monsterinsights-navigation-bar{width:100%;background:#fff;border-top:1px solid #d5e2ed;border-bottom:1px solid #d5e2ed;padding:0 10px}@media (max-width:782px){.monsterinsights-navigation-bar{padding:0;border:0}}@media (max-width:750px){.monsterinsights-navigation-bar{background:none}}.monsterinsights-admin-page{position:relative}.monsterinsights-admin-page .monsterinsights-blocked{position:absolute;top:0;bottom:0;left:0;right:0;background:hsla(0,0%,100%,.5);z-index:999}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-header{padding-top:10px;padding-bottom:5px}.monsterinsights-admin-page .monsterinsights-header .monsterinsights-button{display:none}}.swal2-popup .swal2-title{line-height:1.2}#footer-left{color:#393f4c}#footer-left .monsterinsights-no-text-decoration{text-decoration:none;color:#fdb72c;font-size:14px}#footer-left a{color:#509fe1}#wpfooter{position:relative}#wpfooter:before{right:20px;left:20px;height:1px;background:#d6e2ed;content:"";position:absolute;top:-12px}.monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-navigation-tab-link{text-decoration:none;padding:17px 0 15px;border-bottom:2px solid #fff;font-size:14px;color:#393f4c;display:inline-block;margin-left:25px;line-height:1;outline:none;font-family:Lato,sans-serif}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link:hover{color:#509fe2;border-bottom-color:#509fe2;outline:none;-webkit-box-shadow:none;box-shadow:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{font-weight:700}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:focus,.monsterinsights-admin-page .monsterinsights-navigation-tab-link.monsterinsights-navigation-tab-disabled:hover{border-bottom-color:rgba(0,0,0,0);color:#393f4c;cursor:default}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.year-in-review{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAANCAYAAACdKY9CAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAJKSURBVHgBjdJbSFMBHMfx/7lMT7qdk5s7IsvWdIqZ6UFNJC+Yl4EGQUkYItHN8NZl7KESohUUVKCst8QoYkTFlLzlhWHZispSK7NWyjbdZmPJ5tbuLk9ZBD0U+H35v3xe/vADAEDgr15nZ3PgPymLi3E0o9F4XJim5P7GtfEpvIJHNYrJE6UXDXF/4MdKec3qrU2pakNS6+YuhULhQL98z3tvR26C58OKgY7aVJjWd/bUT8OuwtGsvSXJuICKQPEyLJZpTvjutI4UURqgiNm7NqE+I1EvXNDu60rShr2mM5K8etOK22H2OrCsCXUbGnD0PgD8a2B0uvKKTySBzVJqC8IsHR3cVhHNCgia3F2N0wKxnuUR4wiCsL8eLj8wxuyM0Q3l5nTTfDwIQhcNVL4HXK6Aqq9Dfu/2xpJoHhmViaEIiTyT1dMzQl0yKjqoI9e5kbStQ0ByMfBhcaCeqQO3n5i1hxgVB/NP8jiRDtzjXIoUb6fPR0h6EONwA9gIHsQXDQNfhMMR8j5Q9nHpp88uN8rEmJjSt1bMshDrSywoa0mNnxKI06fAZZEBTuwCPrMIaMQiPNEavvnZ5fl0WaqnKUnEYK3XhIVBc4GCR6yHDdIvkFw+BwSXghc3xOGBnonOEVdmg+Ly41uNEg7fGeKb8ahIulqSpwH7Ozl4pTtg2aOBN7rWO2NW69UuatrC4qFsJbSjKE5wM5sGX0H7oZu2+f7DbNBSFXqqOj3QnK7M+dcsjOc6Tz6sOEbCy+v7W56runvVF8rzYQ39AJVT15Tcu/1IAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:100% 50%;padding-right:18px;font-weight:700}@media (max-width:782px){.monsterinsights-admin-page .monsterinsights-navigation-tab-link{width:100%;text-align:center;padding:10px;color:#509fe2;font-size:16px;background:#fff;border:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link.router-link-exact-active{display:none}.monsterinsights-admin-page .monsterinsights-navigation-tab-link:focus{color:#393f4c;text-decoration:underline}}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text{background:rgba(0,0,0,0);border:none;color:#509fe2;padding:0;border-radius:0;text-decoration:underline}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-text:hover{background:rgba(0,0,0,0);color:#393f4c}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-green-text{color:#5cc0a5;font-weight:700}@media (max-width:782px){.wp-responsive-open #wpbody{margin-right:-18px}}.monsterinsights-mobile-nav-trigger{color:#393f4c;font-size:16px;font-weight:500;width:100%;display:block;border-color:#d6e2ed;border-style:solid;border-width:1px 0;background:#fff;padding:15px 10px;line-height:1;margin:0}@media (min-width:783px){.monsterinsights-mobile-nav-trigger{display:none}}.monsterinsights-mobile-nav-trigger i{color:#acbdc9;margin-right:10px;vertical-align:middle}@media (max-width:782px){.monsterinsights-main-navigation{background:#fff;height:0;overflow:hidden}.monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:10px 0;height:auto;border-bottom:1px solid #d6e2ed}}@media (min-width:782px){.monsterinsights-swal{margin-right:160px}.auto-fold .monsterinsights-swal{margin-right:36px}}@media (min-width:961px){.auto-fold .monsterinsights-swal{margin-right:160px}.folded .monsterinsights-swal{margin-right:36px}}.monsterinsights-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}.monsterinsights-modal .monsterinsights-modal-inner{background:#fff;padding:50px;border:1px solid #d6e2ed;text-align:center;width:750px}.monsterinsights-modal .monsterinsights-modal-inner h2{margin-top:0;margin-bottom:0;line-height:1.4}.monsterinsights-modal .monsterinsights-modal-inner p{margin-bottom:0}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-modal-buttons{margin-top:50px}.monsterinsights-modal .monsterinsights-modal-inner .monsterinsights-button{margin:0 10px}.monsterinsights-welcome-overlay{position:fixed;top:0;right:0;left:0;bottom:0;z-index:99999999;font-family:inherit;overflow:hidden;background-color:rgba(0,0,0,.5)}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-inner{background:#fff;padding:30px;width:70%;margin:0 auto;position:relative;top:10%;height:80%}.monsterinsights-welcome-overlay .monsterinsights-overlay-close{background:none;border:none;position:absolute;top:5px;left:7px;padding:0;color:#777}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content{height:100%}.monsterinsights-welcome-overlay .monsterinsights-welcome-overlay-content iframe{height:100%;width:100%}
lite/assets/vue/css/settings.css CHANGED
@@ -1 +1 @@
1
- .monsterinsights-dark[data-v-1eb99caf],.monsterinsights-dark[data-v-6a976dba],.monsterinsights-dark[data-v-4619bc56]{display:block}.monsterinsights-addons-navbar h1{display:inline-block;font-size:16px;line-height:48px;font-weight:400;margin:0;color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px;width:258px;position:relative}@media (max-width:750px){.monsterinsights-addons-navbar .monsterinsights-addons-filters{width:calc(100vw - 200px)}}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]{height:28px;margin-right:0;padding-left:10px;padding-right:28px;font-size:14px;border-color:#d6e2ed}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-webkit-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-moz-placeholder,.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-moz-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-ms-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters>i{position:absolute;right:10px;top:5px;z-index:10;color:#b7c9d9}.monsterinsights-addon-not-available .monsterinsights-addon-status span,.monsterinsights-addon-not-installed .monsterinsights-addon-status span{color:#777}.monsterinsights-addon-inactive .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}#monsterinsights-addons{width:770px}@media (max-width:782px){#monsterinsights-addons{width:100%}}#monsterinsights-addons .monsterinsights-addons-area{margin:0 10px}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button{background:#f9fbff;border-color:#d6e2eb;color:#8ba4b7}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:hover{background:#fff;border-color:#c4d6e2}#monsterinsights-addons .monsterinsights-addons-no-results{margin-top:25px;padding:0 10px}#monsterinsights-addons .monsterinsights-addons-no-results p{font-size:16px}#monsterinsights-addons .monsterinsights-addons-no-results>div{visibility:hidden;-webkit-animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards;animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards}.monsterinsights-path-addons .monsterinsights-navigation-bar{padding-left:10px;padding-right:10px;background:#fff;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-container,.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:0}.monsterinsights-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px}.monsterinsights-addons-list .monsterinsights-addon{width:calc(50% - 12.5px);border:1px solid #d6e2ed;position:relative;background:#fff;padding:0 0 72px;margin-bottom:25px}@media (max-width:782px){.monsterinsights-addons-list .monsterinsights-addon{width:100%}}.monsterinsights-addons-list .monsterinsights-addon h3{color:#393f4c;margin:0 0 -5px;font-size:15px}.monsterinsights-addons-list .monsterinsights-addon .monsterinsights-addon-excerpt{color:#777;font-weight:400;margin:10px 0 0;font-size:14px}.monsterinsights-addons-list .monsterinsights-addon-top{padding:20px 24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-addons-list .monsterinsights-addon-image{border:1px solid #d6e2ed;width:74px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:start;align-self:start;margin-right:20px}.monsterinsights-addons-list .monsterinsights-addon-image img{display:block;max-width:100%}.monsterinsights-addons-list .monsterinsights-addon-message{position:absolute;bottom:0;background:#f9fbff;border-top:1px solid #d6e2ed;left:0;right:0}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-interior{padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-status{font-weight:700;font-size:13px;color:#393f4c}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-action{-ms-flex-item-align:end;align-self:flex-end}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-button{padding-bottom:7px;padding-top:9px;min-width:120px;line-height:1}.monsterinsights-addons-list .monsterinsights-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.monsterinsights-file-input{margin-bottom:20px}.monsterinsights-tools .monsterinsights-dark{margin-bottom:5px;display:block}.monsterinsights-tools-url-builder p .monsterinsights-info{margin-left:0}.monsterinsights-tools-url-builder .monsterinsights-input-text{margin-bottom:20px}.monsterinsights-required{color:#d4393d}textarea:-moz-read-only{background-color:#f9fbff}textarea:read-only{background-color:#f9fbff}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-tools-info-row p{margin-top:0}.monsterinsights-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-tools-info-row .monsterinsights-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-tools-info-row .monsterinsights-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.monsterinsights-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info i{margin-right:10px;color:#b6c9da}.monsterinsights-about-block{padding:25px;background:#fff;border:1px solid #d6e2ed;margin-top:20px;margin-left:20px;margin-right:20px}.monsterinsights-about-block h3{color:#393f4c;font-size:18px;margin:0 0 20px;line-height:1.4}.monsterinsights-about-block p{font-size:16px}.monsterinsights-about-block:after{content:"";display:table;clear:both}div[class*=" monsterinsights-path-about-"] .monsterinsights-container,div[class^=monsterinsights-path-about-] .monsterinsights-container{width:100%}div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:20px;padding-right:20px}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:0;padding-right:0}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list{padding:0 20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:calc(33.3333% - 12.5px)}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:100%}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addon-image,div[class^=monsterinsights-path-about-] .monsterinsights-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" monsterinsights-path-about-"] .monstericon-star:before,div[class^=monsterinsights-path-about-] .monstericon-star:before{color:#fdb72c}.monsterinsights-lite-vs-pro-table{padding:0}.monsterinsights-lite-vs-pro-table .monsterinsights-lite-vs-pro-footer{background:#f0f0f0}.monsterinsights-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.monsterinsights-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.monsterinsights-features-table{width:100%;border-collapse:collapse;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-features-table td,.monsterinsights-features-table th{width:33.33333%;border-bottom:1px solid #d6e2ed;padding:30px;vertical-align:top}.monsterinsights-features-table td p,.monsterinsights-features-table th p{margin:0}.monsterinsights-features-table th{background:#f0f0f0;text-align:left;border-right:none}.monsterinsights-features-table td p>span{display:block;margin-left:30px}.monsterinsights-features-full:before,.monsterinsights-features-none:before,.monsterinsights-features-partial:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f021";font-size:20px;margin-right:10px;color:#d4393d;position:relative;top:2px}.monsterinsights-features-partial:before{content:"";background:url(../img/about-icon-check.svg) no-repeat 50%;background-size:19px auto;width:19px;height:19px;top:6px}.monsterinsights-features-full:before{content:"\f015";color:#4ab99b}.monsterinsights-lite-vs-pro-footer{padding:50px 20px 30px;text-align:center}.monsterinsights-lite-vs-pro-footer h3{margin-bottom:10px}.monsterinsights-lite-vs-pro-footer p{margin-bottom:0}.monsterinsights-lite-vs-pro-footer a{color:#509fe2}.monsterinsights-lite-vs-pro-footer a:focus,.monsterinsights-lite-vs-pro-footer a:hover{color:#393f4c}.monsterinsights-lite-vs-pro-footer.monsterinsights-small{padding:0;text-align:left}.monsterinsights-lite-vs-pro-footer.monsterinsights-small h3{margin-bottom:5px}.monsterinsights-lite-vs-pro-footer.monsterinsights-small p{margin-top:0}.monsterinsights-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-two-column>div{width:50%}.monsterinsights-list-check ul{margin:0}.monsterinsights-list-check li{font-size:16px;margin-top:10px;padding-left:30px;position:relative}.monsterinsights-list-check li:first-child{margin-top:0}.monsterinsights-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f015";font-size:20px;margin-right:10px;color:#5cc0a5;position:absolute;left:0;top:0}.monsterinsights-about-docs-row:after{display:table;clear:both;content:""}.monsterinsights-about-docs-image{width:270px;float:left;margin-right:20px}.monsterinsights-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.monsterinsights-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.monsterinsights-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.monsterinsights-about-docs-4:after{background-image:url(../img/about-icon-addons.png)}.monsterinsights-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.monsterinsights-bg-img.monsterinsights-about-team{padding-top:59%}.monsterinsights-bg-img.monsterinsights-about-team:after{background-image:url(../img/about-team.jpg)}.monsterinsights-about-page-right-image{float:right;width:40%;text-align:center;margin:0 0 0 20px}@media (max-width:782px){.monsterinsights-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.monsterinsights-about-page-right-image img{width:100%}.monsterinsights-about-page-right-image figcaption{color:#999797;margin-top:5px}.monsterinsights-about-page-right-image iframe{max-width:100%}.monsterinsights-dark[data-v-7dd26406]{display:block}button[data-v-45fbd430]{margin-top:3px}.monsterinsights-dark[data-v-33024a0a]{display:block}fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__loading-enter-active,.multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{opacity:.6}.multiselect--active{z-index:1}.multiselect--active:not(.multiselect--above) .multiselect__current,.multiselect--active:not(.multiselect--above) .multiselect__input,.multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.multiselect--active .multiselect__select{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.multiselect--above.multiselect--active .multiselect__current,.multiselect--above.multiselect--active .multiselect__input,.multiselect--above.multiselect--active .multiselect__tags{border-top-left-radius:0;border-top-right-radius:0}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 0 0 5px;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.multiselect__input:-ms-input-placeholder{color:#35495e}.multiselect__input::-webkit-input-placeholder{color:#35495e}.multiselect__input::-moz-placeholder{color:#35495e}.multiselect__input::-ms-input-placeholder{color:#35495e}.multiselect__input::placeholder{color:#35495e}.multiselect__tag~.multiselect__input,.multiselect__tag~.multiselect__single{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-left:5px;margin-bottom:8px}.multiselect__tags-wrap{display:inline}.multiselect__tags{min-height:40px;display:block;padding:9px 40px 0 8px;border-radius:5px;border:1px solid #b8c9d8;background:#fff;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:2px 8px 2px 20px;border-radius:5px;margin-right:10px;color:#393f4c;line-height:1;background:#f3f6ff;margin-bottom:5px;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;border:1px solid #b7c9d9;font-size:14px}.multiselect__tag.monsterinsights-tag-forced{padding-left:8px}.multiselect__tag.monsterinsights-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;left:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:22px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\D7";color:#b7c9d8;font-size:18px;margin-top:-4px;display:block}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#444}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 30px 0 12px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{display:none}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #b7c9d9;border-top:none;border-bottom-left-radius:5px;border-bottom-right-radius:5px;z-index:1;-webkit-overflow-scrolling:touch}.multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.multiselect__content::webkit-scrollbar{display:none}.multiselect__element{display:block}.multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px;font-size:13px}.multiselect__option--highlight{background:#acbdc9;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#acbdc9;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect--disabled{background:#ededed;pointer-events:none}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.multiselect__option--group{background:#ededed;color:#35495e}.multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.multiselect__option--group-selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect-enter-active,.multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.multiselect-enter,.multiselect-leave-active{opacity:0}.multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}[dir=rtl] .multiselect{text-align:right}[dir=rtl] .multiselect__select{right:auto;left:1px}[dir=rtl] .multiselect__tags{padding:8px 8px 0 40px}[dir=rtl] .multiselect__content{text-align:right}[dir=rtl] .multiselect__option:after{right:auto;left:0}[dir=rtl] .multiselect__clear{right:auto;left:12px}[dir=rtl] .multiselect__spinner{right:auto;left:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}.update-nag{display:none}.monsterinsights-admin-page{min-height:100vh;font-size:14px}.monsterinsights-admin-page a{color:#509fe2}.monsterinsights-admin-page a:focus,.monsterinsights-admin-page a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.monsterinsights-admin-page .monsterinsights-settings-content{margin-left:auto;margin-right:auto;max-width:750px}@media (min-width:783px) and (max-width:790px){.monsterinsights-admin-page .monsterinsights-settings-content{padding:0 10px}}.monsterinsights-admin-page input.monsterinsights-has-error{border-color:red}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;color:#fff;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page input[type=number],.monsterinsights-admin-page input[type=text],.monsterinsights-admin-page textarea{border:1px solid #b7c9d9;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#444}.monsterinsights-admin-page input[type=number]::-webkit-input-placeholder,.monsterinsights-admin-page input[type=text]::-webkit-input-placeholder,.monsterinsights-admin-page textarea::-webkit-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-moz-placeholder,.monsterinsights-admin-page input[type=number]::-moz-placeholder,.monsterinsights-admin-page input[type=text]:-moz-placeholder,.monsterinsights-admin-page input[type=text]::-moz-placeholder,.monsterinsights-admin-page textarea:-moz-placeholder,.monsterinsights-admin-page textarea::-moz-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-ms-input-placeholder,.monsterinsights-admin-page input[type=text]:-ms-input-placeholder,.monsterinsights-admin-page textarea:-ms-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number].monsterinsights-has-error,.monsterinsights-admin-page input[type=text].monsterinsights-has-error,.monsterinsights-admin-page textarea.monsterinsights-has-error{border-color:#d83638}.monsterinsights-admin-page input[type=text]:-moz-read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page input[type=text]:read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page textarea{height:150px}.monsterinsights-admin-page label{width:100%;font-size:14px;display:inline-block;color:#777;margin:2px 0 17px}.monsterinsights-admin-page .inline-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights-admin-page .inline-field input{width:100%}.monsterinsights-admin-page .inline-field .monsterinsights-button{margin-left:10px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-admin-page .monsterinsights-error{margin:18px 0 0;color:#d83638;cursor:default}.monsterinsights-admin-page .monsterinsights-error i{margin-right:10px}.monsterinsights-admin-page .monsterinsights-license-type-text{color:#777;font-weight:700;margin-top:16px}.monsterinsights-admin-page .monsterinsights-license-type-text a{color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-dark{color:#444;text-transform:capitalize;font-weight:700}.monsterinsights-admin-page .monsterinsights-settings-block{background:#fff;border:1px solid #d6e2ed;margin:25px 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{border-bottom:1px solid #d6e2ed;padding:16px 25px;font-weight:500;font-size:14px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding:25px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p{font-size:14px;color:#777;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p a{color:inherit}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding:25px 25px 25px 22px;margin:-25px;border-left:3px solid #64bfa5}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding-left:15px;padding-right:15px;margin:-25px -15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade.monsterinsights-settings-addon-disabled{border-left-color:#f5c953;padding-top:15px;padding-bottom:15px}.monsterinsights-admin-page .monsterinsights-settings-input-radio input{opacity:0;position:absolute}.monsterinsights-admin-page .monsterinsights-settings-input-radio label{color:#444;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio label>span{vertical-align:middle;font-weight:500}.monsterinsights-admin-page .monsterinsights-settings-input-radio label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-right:16px}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked{border-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked:after{left:2px;right:2px;top:2px;bottom:2px;position:absolute;content:"";background:#509fe2;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label{color:#444;font-size:14px;margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux{cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox{background-color:#dee5e9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#b9d8f3}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label input{display:none}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label>span{vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox{width:27px;height:18px;position:relative;display:inline-block;border-radius:10px;margin-right:9px;background-color:#acbdc9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked:after{right:2px;left:auto}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox:after{left:2px;top:2px;bottom:2px;width:14px;position:absolute;content:"";background:#fff;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-info{color:#b6c9da;margin-left:10px;cursor:help}.monsterinsights-admin-page .monsterinsights-settings-input-repeater .monsterinsights-error{margin-top:0;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-labels label{color:#393f4c;font-weight:700;margin-bottom:6px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input,.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{margin-right:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input[type=number]{width:30%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{width:70%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row.monsterinsights-disabled-row{opacity:.5}.monsterinsights-admin-page .monsterinsights-dimensions-count{color:#777;font-style:italic;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label{margin-bottom:0;width:auto}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-button{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-error{margin:0 0 20px}.monsterinsights-admin-page .monsterinsights-settings-input-select .monsterinsights-dark{margin-bottom:5px}.monsterinsights-admin-page .monsterinsights-settings-input-select label{margin-top:-4px}.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:30px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:15px}}.monsterinsights-admin-page .monsterinsights-collapsible>p{margin-top:0}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible{color:#b7c9d9;float:right;font-size:22px;padding-left:20px}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:focus{outline:none}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible i{cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-dark{display:block;margin-bottom:9px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate p{margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights- -ua,.monsterinsights-admin-page .monsterinsights-settings-input-authenticate button{margin-top:14px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-manual-ua+.monsterinsights-error{margin-top:15px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions{margin-top:18px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-right:20px;margin-top:0}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-bottom:10px}}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-settings-input-toggle-collapsible{margin-top:12px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-paragraph{padding-top:5px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text{color:#999797;font-size:12px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text:hover{text-decoration:underline}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-upgrade-icon{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-settings-addon-message{margin-right:25px;width:100%}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-button{font-size:12px;padding:6px 16px}.monsterinsights-admin-page .monsterinsights-icon-warning{width:48px}.monsterinsights-admin-page .monsterinsights-icon-warning:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-bg-img{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-network-message{width:100%}.monsterinsights-admin-page .monsterinsights-undo-redo{float:right;margin-top:16px}.monsterinsights-admin-page .monsterinsights-undo-redo button{border:none;background:rgba(0,0,0,0);color:#509fe2;padding:0;margin-left:5px}.monsterinsights-admin-page #monsterinsights-license-key-valid{-webkit-text-security:disc;text-security:disc;-moz-text-security:disc;font-family:text-security-disc;font-size:25px;line-height:1.2;color:#b7c9d9;padding-top:7px}.monsterinsights-admin-page #monsterinsights-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-moz-placeholder,.monsterinsights-admin-page #monsterinsights-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-first-time-notice .monsterinsights-notice-button{margin-top:20px}.monsterinsights-settings-blur .monsterinsights-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.monsterinsights-settings-blur.monsterinsights-path-general .monsterinsights-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate .monsterinsights-button{margin:0 20px}.monsterinsights-not-authenticated-notice .monsterinsights-dark{font-weight:400;margin-bottom:20px}.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{margin-top:18px}}.monsterinsights-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.monsterinsights-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.monsterinsights-admin-page .monsterinsights-logos-row{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;border:1px solid #d6e2ed;margin:40px 50px 60px;padding:25px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-logos-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:20px;margin-right:20px}}.monsterinsights-admin-page .monsterinsights-logos-row .monsterinsights-box-title{font-size:13px;font-weight:700;color:#8aa4b8;position:absolute;background:#fff;padding:0 10px;top:0;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);left:50%}.monsterinsights-admin-page .monsterinsights-upsell{background:#fff;border:1px solid #d6e2ed;text-align:center;margin-top:25px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-upsell h2{font-size:20px;color:#393f4c;margin:36px 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h3{font-size:18px;color:#393f4c;margin:0 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h4{font-size:18px;color:#4c6577;font-weight:400;margin:0;line-height:2}.monsterinsights-admin-page .monsterinsights-upsell p{font-size:14px;color:#4c6577}.monsterinsights-admin-page .monsterinsights-upsell .monsterinsights-upsell-top{padding-left:10px;padding-right:10px}.monsterinsights-admin-page .monsterinsights-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom{padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{min-width:288px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom img{max-width:100%}.monsterinsights-admin-page .monsterinsights-report-ecommerce:after{background-image:url(../img/monsterinsights-report-ecommerce.png)}.monsterinsights-admin-page .monsterinsights-addon-ads,.monsterinsights-admin-page .monsterinsights-addon-amp,.monsterinsights-admin-page .monsterinsights-addon-dimensions,.monsterinsights-admin-page .monsterinsights-addon-eu-compliance,.monsterinsights-admin-page .monsterinsights-addon-forms,.monsterinsights-admin-page .monsterinsights-addon-instant-articles,.monsterinsights-admin-page .monsterinsights-addon-optimize,.monsterinsights-admin-page .monsterinsights-addon-performance,.monsterinsights-admin-page .monsterinsights-addon-scroll{width:48px;padding-top:110%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-ads:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAYAAAA0wZQlAAAFk0lEQVR4nO2dv28bVRzAPz5ZjpM6VKmbhgS1CgSFCWVoYfDUyRKCoSDGtkKCgfwBHZAYOsHQPyATKgplg3YqCE9d8II6hE6NCLVSiOsmbtTaiR3L2Azu2eez3fjH832ffe8jRXLu3t37vu/n/N6755MduHRzm0H5O/WXe9MHwHfAPJAGPgd+dRZ4a/FtX9bhJqBCALQEv0MtaJs0sGD/02/Q41KHE2vgM7zEFcy8a/d8h3K+rMOJMgFwfFAqgh6XOmyUCoDOwakMelzqgIaAs8A6sAdUFfy1Q8V5x6GOPWq5PgsQBN4A/gDmOlRoUEsUuALEgQsW8C0m+RLMAd9YwIfSkfiYjyzglHQUPmYmcOnmdqfBpifK5TK72acUiwWq1dZTBgIBwuFJZqNnCAaDvq7DibJp6G72KYXCYdugAarVKoXCIbt7Gd/X4USZgKOjYlflil2WG+c6nCgTMDER7qpcuMty41yHE2UCZqNnmJycIhAItN0fCASYnJxi9nT/M95xqaPpfKoGYUN/KF8LMvSGESCMESCMESCMESCMESCMESCMESDM4Mt5AxBbnOLq+ZPMTcuEkcmVWb//nGTqUKR+EHwHxBanuHYxKpZ8gLnpINcuRoktTonFICbg6vmTUlW3IBmLmADJK9+NZCxmEBbGCBBGn37gFWxlS+SPKkQmLJaiob6OB/o6dthoLSBfqnD9t916AgHiyxFWYzNdnyOxmWctuQ80Zl46oXUXlEwdNiUfagnN5MpdnyOT+8/xuvvjvEJzAYW2238XvHFSjbZdUL5UYWOn/ZMHyVSBT959re2+jZ0iic0DMrkykQmLJxpe9U60FeBeHogvR0hs5oHaoLqVLbUMqmvJ/XqZUUHbLijx8KD+eika4sqF5rtVd/d0+8GLkUs+aCogkys3Db6xxUkiIYuVhcazOO5x4M6DXP11JGQRX45oOe10o2UX5E7uQalKYjPPiVDjerElLUVDtfuEUqW+bzU2U19g+/LntJazHxstBbTrXjqVW4qGyB9VmrY713Zenw5qLUC7Lsjd/byKxMNan790urmr+eH+czZ2itx+8KLjTEoXtHsHJDYPji/0EnuqurIQJrY4VZ85bewUtU+8jXYCnP3/ykKY6/HZpv35UoXVn9L1Pj+ZKrCyEGY1NsOfO8WmsWAU0K4LijgG2vjyibb74+9EGv9PWPXta5/Ot3y65TyfTp9B2Ig9nHvns7Ntt+dLFbb2SseufB63wrmVLTE3HSQSsrpaDf34+8fdhq4U7S4J93y/E8fN8Z37db4f0K4L8htGgDBiAnS6OZKMRUzA+v3nUlW3IBmLmIBk6pAb97KiV18mV+bGvazok3Gis6Bk6lC08TpgBmFhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhLOCZdBA+Zt8C7kpH4WPuWsDXgJqvgTX0Qgb4ygK2gfeAW8C+aEj+YB/4EXgf+Mf+TPgxtR8V6JrL59Lm+0Yd3Nqeb/9Nr8fQ1yzo8rl0P4eNNf3mpGcBJvmd6Sc3PQlwVWBMNHhiv+hVQtcC2pz4C2fFPuZfaj9xWKcXCYM8mPULrb80NxQepZ/1NeC/OX+qr4HRS7RfiniU7v9GfZBjvUJrASoSqLsEbQWoTJzOErQUMIyE6SpBOwHDTJSOErQS4EWCdJOgjQAvE6OTBC0ESCREFwniAiQToYMEUQE6JEA6BjEB0g13IhmLiACdkm8jFZPnAnRMvo1EbJ4K0Dn5Nl7H6JmAUUi+jZexeiJglJJv41XMQxcwism38SL2oQoY5eTbDLsNQxMwDsm3GWZbhiJgnJJvM6w2KRcwjsm3GUbblAoY5+TbqG6jMgF+SL6NyrYqEeCn5NuoavPAAvyYfBsVbf8f9GGopiPk4XgAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-addon-amp:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-instant-articles:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAYAAAA0wZQlAAABtElEQVR4nO3boW7WABRA4dMGMQsTvyAjQWDQGy+A45FAM14EHmE4XoAEW4NY0mHWZPwWBxaB2BKak6bnk03FTU+uuUmHaV4AzoD3wBvglKzpDvgMvANuhmlengLfgIM61v7cAucj8IE+vuEAXA7TvNwBT+xpduo40sc3PR7tCfauALICyAoge3Sfl6bv12vP8SAvXzz/5/OtzPm3NkBWAFkBZAWQFUA2TPPy2x5iz9oAWQFkBZAVQFYAWbegFXUL2oACyAogK4CsALJuQbI2QFYAWQFkBZAVQLbJW9BWdAvagALICiArgKwAsm5BsjZAVgBZAWQFkBVA1i1oRd2CNqAAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKz/hGVtgKwAsgLICiArgOxe/wm//fJr7Tke5PL1iT3Cf9MGyAogK4CsALICyAogK4Csa6isDZAVQFYAWQFkI/DTHmLHjiNwZU+xY1fDNC/PgK/AwZ5mZ26B8xGYgQvgI3BUR9qHI/AJeAX8+AOC40aexB/2CwAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-optimize{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-optimize:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABeCAYAAABFEMhQAAAFNUlEQVR4nO2dzavcVBiHn5Pb1lo/UBFxIbiQCq7EpVioxYUIBTfd+B/oX6CIuHCrLgXFlSjuBIsLRRDd6MKFiovupKj4QatW7+39mOQkx0UmMyfJSWaSnJN0Ou8Dl7mTTM7JfX7JyZtMZq668N5lRuI48CzwPPA4cGqsjifmD+Ai8C7wnT1DjST/LPA5cGKMzm5gvgeeBHYBohE6fA74ChEP8Bj5nnAXhJf/IPBh4D42jVPAt4AKLf+DwO1vKqeBp0LKj4AzAdvfdF4JKX8nYNs3A2dF/oSMUe0IDYj8CRH5E6Iu/XK1NOHVL6/7avskcOirsZuR2pb/2rnbp1iPraS25dsM3Atky19B65gve0FYVh5wJYBwrFXtSABhWLvUlAD806nOlwD80vkkSwLwR68zXAnAD70vL0gAwxl0bUcCGMbgC2sSQH+8XNWUAPrh7ZKyBNAdr9fzJYBueH8zRQJYnyDvZEkA63GsZZ6a//Ti9D07J366lvZdfFQyM02/1TdTbgVeBF4CbplkjSbg5U9+5thtd49wA18Ze8t/lPwewq27odVkKcnuFY7fed+oARQ9PQz8wBaKLzBpQrJ7BUw2Wp/R/Ofr0Xq8gRk7gAh4Grh3lN42AJMmJHtXRwkgAl4I3suGYXQ8SgARcC5oDxuK0Ql676+gAUSAnBHVUKDyIUhf/xtMmBMBuVezRvm80ugYvf9PkABEfgm1eFCL31WwAER+lYr4IhCjY/TBNa8BiPwFyiHenp3vAenhf4CfAEQ+823bKb7yXCkyPSM98BOAyAdQail+OXExr/RIPgSlB7sMDUDkV7HG+drQw3zvUAqTxqSHwwIQ+TZN4ue/F+ILjE5Ij/p/hkHkF9jia9Pr4hcnYjomm/ULQOQDpiq+Ms47jwfFURrIklmvAEQ+le29SbxdAanKUkqR6Zhstt+pX5Fv46hsys9VfWSyQjJpQhYfrN2dyIe8YHGIL4/zlfHeeq09LBkdk8XrfQ5Q5ENrSVk8Wz6sHpZMGpMlRyu7Ffk2jZUNTvHV5exhyegYk8xauxP5BStKSpf41mFJQZbGGN0cgMgHCnGrSsrynJZhabFMfhA2Onb2KvKh+aKao6TMp7QMS46wmgIQ+Ta9xKsG8Wr+svy5yTQmTUrdifwC59hdntc6LJXP1Erii+VNmpQCEPmAvbUuH3qc6c7HeVWbvpxvshSTaaD9LuXtpFNJWQ3LIb60TLEHaEDJlr+kT0mJQ7w9ry5+0V6mRT6Qi+ki3lFSLhdxDE92V9ZyIp9llV+fvk5JWR3zcYRlV0rL6SIfGFZS4qxs3O2VZ4l8m4G1fH0Zl/jla0U+zMf8NWr5yvS2ktLdXjkkkW+xspbvWFJaDVMVD/wp8qs0vWvVQ3z1AFsKxZjXRT6Qa2qq5ZtKymL26pKy3p3KMj17R+QX+KjlG0rK0muVAmPOA/siH1zHUtoOtPnDqpKyUfwF4FOQA24FnyUl1de+n8WH9wMfFRPkwhqwc/KOkP9owZg0cd7QKfJzxvvks4UMO0z3LSkif84UAYh8i7EDEPkVxgxA5DsYKwCR38AYAYj8FkIHIPJXEDIAkb8GoQIQ+WsSIgCR3wHfAYj8jvgMQOT3wFcAEfCrl5a2DB8BRMDHw1dlo+n99w8NIALeHtTC5vPmkIWHBBABl4AvhqzABvMjHr7QtW8AxQH3PPDb0JXYMP4FzuDra6N6UMg/Ah4CPptqRUbmG+ABYG/KlbBLzRnwDPAI8AZweZI1CsfvwFvk35b+BNDtWyoC8D/ypjW2YaKvCQAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-dimensions{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-performance{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-performance:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABlCAYAAACyVeaLAAAKrUlEQVR4nO2deWwU1x3HPzt7EGODg7GBmquc5r6SNrSFRkoKKSSkStVGkIY2Appe6pUe6kXTJoW2Ug6aVJWagNWGhBD+aFOUXqCmNClpqRqsgCGcaTgNNrYB2xjv2T9+u7C73pl9szs7M+D5SJbsneM9/74zb9/7vd/7Pd/+481cI/QDRgHDgKrkTzDt+HkgAlwAmoBjwCWb62iagNMV0CEE3A3MB6YAk4ARBdznHHAI2AQ8C4StqqBV+Fz4BkwEtgJ1Ft/3LeAu4KTF9y0KzekKZDEQ2Ib1xgeYCWwHBpTg3gXjNgEeBEaX8P6TgC+V8P6mcZsAi2wo424bylDGbQLU2FDGcBvKUMZtAvQ5PAEcxhPAYTwBHMYTwGE8ARzGE8Bh3CCAH1gMvAxMtqG8EcDvgIWAz4byDHHSGTcIcQt8Aah1qA6HgV8AG4DLTlTArAD9gNuB8cBZ4HXgtMkyK4CHgG/iHsfYaWAN4rKOmLx2DPAR4AZgD2KTuOrFZgS4FXieTL98D/Bb4EfIJEg+PgY8DYxULdRmDgBfA/6qcG418AjwOTKb8reBTwP/VSlQVYBZwE6gv87xTmAd8PPk79nUAr8E7lEpzAVsAr6KTOhkU4a8wd9B3uZcdCEtxa58BakIUAP8B3hvvhORt+ARYD0QTX52J/Ab5Im5ljgF3A/sSP6tAQ8AP0Ztdu4UcDNwxuikfAL4gb8gbZwZ9iNPyE3AD3FBb6NAYsBPkAdwDdISmGEncBsGU6H5BHgU+IHJQj0y+RUGk0BG44CFwPcsr07f44vAZ/QO6gkwBOnduGGgdj3wNDA21wE9A29A4m88rGEA8kD7sw/kEuABJHzDw1rmIYPPDLK/hIchPZhBNlWqZMQT8Ld3ouw6FeNSJGH6+gEhH/dMDjKp2tJWOAzMAfalPsi+++NcB8YHeP1YlL+/Gy3I+AAd4QRbD5r1SuQlhPSKrnTL0wWYDyyzukSneLMpVvQ9zl8uTLw8fBi4N/VHSgAf8BjX7oCpF4mS2M4y1iBvwxUBFgLvd6w6JWDqkF4dDjcxDlgOVwX4hnN1KQ0LxgaYONjVw5hvAT4NmA0scLgyluPXYPmMkNW9GCupA27TkBmp6xK/Bp+aHnJzc7RMw56A2LyEY3C2M0HM4i9PvwbLpgWZMdSVIswNIDH5jnLyYpzn3orQGU5Q3d/HitkhbrzBug5ZLA5dBY4HSkxQQ3HqrFScuhinviFMZ1gMdO5Sgmd3hy3rg0disHFPmKNtytO0drJHA550qvRTHXE2NES4HM38vL07wfrdYS4UKUIkDs/vCXPEncYHeEYDXsEBEU53xKnfHeFyNLeR27rlTbjQU5gI0aTxD7vX+E8B21N9tIeAz5N7EtpyTief/G4d46do606w/k3zIlwxfqu+8d8zQGNKjSNd1Dbg60j0RYYv6NfIpMHDyJrbktDUEae+IUK34pdia7I5uqgoQixp/ENGxq/wsWJ2kGXTQnYO1tqA1Ugc0TogAb29oR1IVMNYYC25Q0wKpqkzQX1DxLSHsvWSmggqxh9WIb2s8qDvyjhh3KDcIlSELOmJtSGBCWOQCf6L6Qf15G8Hvo8I8QTQXWwtznQmqG8IG3YHq/vr/8PnkiJ06IgQi8MLe8McNDD+0AofK2eHKE8zbNAPy2eGGFXZ2xSzhhU1dkg3/KNkGT6FamDWcOBdClxZf7YzwfqGMF1hfePPHx1g4bgALzVGaGzWdyXXlPtYNSfEgDQjxuKwaW+Yt88ZGD95XbnOU90ThT8clLI1H9xc62fR+CD+wlqoo8jES06jp6MqwCgk94JpznbJk2tk/HmjAiyeINrG4rB5X4R9BiIMSRqzIuQjFocXGyPsb1E73yYuApUqJ6rqW/DK9S2Nxsb/UJrxQVwHS6cGmVKj//o3J0W90JNg8z7XGR/Eu6AU1KAqwKhCa3K2y8D4IwPcOaF3q5by30w28GQ2dyV44o0ewzelptzHSvuNn0Jpxb9qm15wiMrMYX4ackwPfmCkn8UT9Yv3a3Df9BAv7A1zQKdtjxiMsar7+1g1O/O7wojOrm5ON7cQjUpdAwE/tUNqqCgvU7o+B0NVTlJ9A5Tas1x8fFLvyIK5I/zcNTGYd/4z1U2sM9lXr+6f/KLul1nC+QsdHPrfcTq7enfq0o0PEI3GON3cYqrcLG5UOUn1P9MLw85LyojzRwUYX6Vxx7gAS+ryGz/9+vtnqA+YBieNPzDL+N2Xe2hqadU1bLrxjT4zQbnKSbYkbPJrsChHW59NqhkYVDmQmqqrD1BKhHyDrMFluY0fjcY40XSWRHKmvkjDWorqG5C3P2sFqWagpbWdlrZMb0ggKcIEnTehqszHqptCVGYZP5FIcLKp2Qmjd6icpCpAVxEVUSbdSIYiVGVWu6rMx2fn9DY+wJmWVi5ddmT9nZIbR7UJKtgnVEzvoqW1HSCjOQomRfj9Aen/D6vQWDotSKXODFr7BaUHsRQoPbSqAhScZ02vdzFxjNrQoqW1PUMAEP/NvVODZCZNdB1KNlNtgg4XWosS9C6uBWKIPygvqgIcKbwufZITKKbIVGmCNGR5aVTx/JJTglGr1ZQBH0UWOBpi9Ab4gE8CjcBzuMT4UJJRq9UMBf4M/BsRQhc9AZYADcAW7EmgYYpr6HvlFq4KkTMALluABcjq7q1IolMPa7gF+BM5hEgJMBzJKruN6yxM3WWkhNhB0l2dCk3cgWRA8bCHW4F/ArM0JE7dM779jABWa6StV/KwnU9oOJetygNqNWTU5uEMxzVgs9O16MO8pJGZXMnDPhJAvYYkrNvicGX6ItuBg6mB2FpMZPrzsIQ1cHUkvA/Y6Fxd+hwvA69Bpi9oNRaHo4O4int95s8ddqh6rtP3LJIeZPALZApwAolft5TaIdUZ/0gg4Kd2aO4EiqrnOn3PIllH2gRXdnR0EMkQaDY7oIca7yBe5istTbY7OoIkkeixsVJ9hRiSvC+jmc81IdOIl6qyFDyGeEAz0Fug4QdeRZILeRTPHuB95Jio15uSjCEJqNtKWKm+QiewFJ0oCaNJ+WNIm1XocvVduGzjzAI5A7xRxPUPIhnVc5IvLugVkiM2E5wBVgIfRHJH/8Pk9W7iNSSf0jzgPszvlfAU8KLRCSqBWQ8Df1Q4L4pkXZwM1COujWYk8feVhcnXCHEkFf/tyAOVQAxZh7htVIKudqCQiUx1lWQlEmQ0V+f4NmT5/X6DeyxAPK8FrzeziaPIG2z05o5H1k8v0Tm+E9msojVfYWZ20Agh2bWWIQu4u5FNkp9BmioVKpDFy19GtvxwE13IG/wz1Bem3wF8BRm4asgDuBEJZFNybjq1ic9IZKyxAucj7sJInoy15NlsoRQ4ldHuBLL3Sh2yi1G7A3VoR5qROuQptt344J495cuQ6IwnKX3q5E4kVcwmLMiBUSxuESDFHmB6ics4Tmm3TTeFa5Nq9hU8ARzGE8BhPAEcxhPAYTwBHMZtAtixzkhp9aJduE0AXb+5hTTaUIYybhNgfYnvn0BcH67BbQK8SmlFeJyru6O6ArcJAJJC+adY66fpAL4LfNvCe1qC23xB6VQiKzanIrNsoxE3dhWysXT2vgcdwCVkEuRo8ucIkufiXyjm77EbNwugQmpPelcaV4X/A8ZmVvlIzmqnAAAAAElFTkSuQmCC)}.monsterinsights-admin-page .monsterinsights-addon-scroll{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-scroll:after{background-image:url(../img/icon-scroll-tracking.png)}.monsterinsights-admin-page .monsterinsights-upsell-large{padding-bottom:35px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-large{padding-left:10px;padding-right:10px;line-height:1.2}}.monsterinsights-admin-page .monsterinsights-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-upsell-large h2{font-size:18px;margin-top:0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-coupon{color:#509fe2;border:1px dashed #509fe2;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-flow:wrap;flex-flow:wrap;margin:30px auto 25px;max-width:525px}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:left;margin:10px 0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span:before{content:"";background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAj0lEQVQ4je2U0QmAIBCGv8QFXKEVapDGaYS2aJFGqBV8aAFX6EHB8OHOIIjA70nx/ED577ppPVHogR1wQABGwEsXjGZMUpfWLu1FaqSPadKfSC0xIlJMBmVf4i052LUsynkwD4U1OENsvTcJltjL2p/enzwDh1DvLXE4iAOi4AA2qeA/OW3Sb6Se3CCBivhdiyQVWMKC0oMAAAAASUVORK5CYII=);width:11px;height:11px;background-size:contain;display:inline-block;margin-right:12px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p a{color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADB0lEQVRYhc2X30tTYRjHP+dMU5dTxxRLS1hkDUTNNUGELiTQmyYDL8rr6Bd01UVgf0CBF10FWuG1eRGIu8obLwIRtlabFQOliTlLVDY3nb87XZyztc2d7SBb+r17z/O8z/N93/O+z/N9BTRCcttNgAPoAloAM1CumDeBAOADpoBxweZc1xJX0JC4BRgA+oBijXz3gffAC8Hm9B2LgOS2G4BB4IEWomphgNfAU8HmjGomILntTcA4cPmYidMxDzgEm/NbTgKS294BfAAq8pQ8jgjQI9icM6oElJVPFyB5MonO5J1IEFD+uYf8bbsa5gFr/EyISYbB/5AcJcdgfCBA4qp9IctpD0d2MJw9g04nqrkAcHj4h+jWHlUVpdncJOCaYHP6ipQPA2rJJQlGxjy4vEGqjXqe3O/EVFWWMep6eJuXb6ZZC8Vob63n7m0rQuYlCUrOflGpcH1qVGf9K7i8QQDWQjEmJv2qy5qY9LMWigHg8gaZ9a+o+gJ9kttuEpHLq2qF+/EzlDpeDKl4HrWlz01DMeAQkWv7SaFLRG4sqrh00Zg6bjCqeB61pc/NgBYRuaupotlSS3trPQDVRj293RZV395uC9VGPQDtrfU0W2pzETALktsu5fKCvF/DBIpyu8jQGlCnEzX7glwJNzV75x+bIrKSOSkERGQZdVLwicgaLitc3iALS2HNUReWwonqmQNTRcjKZ4gs1XBlbYuRMQ/Xm+voaLtAo9lEaUnq+d3ZPWAusM7M5yU+zS5z6+bVXMn3gfF4NxwF7qh57u4d8PzVR36v/juvlYZS9GUy59j2PhvRnYTtXE05zx7foORM1kv2TrA5+zW3443oDm9HPcwFsqvtRrOJe/1WKg3a2nGyIhoCHmaNDnyfW8Xz9ReLyxtEorsAVBhKaKirpK3pPE1XanKFABgWbM5HcJokmfLBgSwcC4UIsjxPvBFSCruiVnsKRCIuy1PeBkc6i6LbO5G3Kl+YR5bjM+mGjK1NYWkFhpFP7HEhKTGsmV5FcJofpxmIFOR5/hdt5RGc1JOx/AAAAABJRU5ErkJggg==)}
1
+ .monsterinsights-dark[data-v-3d45db8e],.monsterinsights-dark[data-v-5ed559f4],.monsterinsights-dark[data-v-4619bc56]{display:block}.monsterinsights-addons-navbar h1{display:inline-block;font-size:16px;line-height:48px;font-weight:400;margin:0;color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px;width:258px;position:relative}@media (max-width:750px){.monsterinsights-addons-navbar .monsterinsights-addons-filters{width:calc(100vw - 200px)}}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]{height:28px;margin-right:0;padding-left:10px;padding-right:28px;font-size:14px;border-color:#d6e2ed}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-webkit-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-moz-placeholder,.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-moz-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-ms-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters>i{position:absolute;right:10px;top:5px;z-index:10;color:#b7c9d9}.monsterinsights-addon-not-available .monsterinsights-addon-status span,.monsterinsights-addon-not-installed .monsterinsights-addon-status span{color:#777}.monsterinsights-addon-inactive .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}#monsterinsights-addons{width:770px}@media (max-width:782px){#monsterinsights-addons{width:100%}}#monsterinsights-addons .monsterinsights-addons-area{margin:0 10px}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button{background:#f9fbff;border-color:#d6e2eb;color:#8ba4b7}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:hover{background:#fff;border-color:#c4d6e2}#monsterinsights-addons .monsterinsights-addons-no-results{margin-top:25px;padding:0 10px}#monsterinsights-addons .monsterinsights-addons-no-results p{font-size:16px}#monsterinsights-addons .monsterinsights-addons-no-results>div{visibility:hidden;-webkit-animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards;animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards}.monsterinsights-path-addons .monsterinsights-navigation-bar{padding-left:10px;padding-right:10px;background:#fff;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-container,.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:0}.monsterinsights-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px}.monsterinsights-addons-list .monsterinsights-addon{width:calc(50% - 12.5px);border:1px solid #d6e2ed;position:relative;background:#fff;padding:0 0 72px;margin-bottom:25px}@media (max-width:782px){.monsterinsights-addons-list .monsterinsights-addon{width:100%}}.monsterinsights-addons-list .monsterinsights-addon h3{color:#393f4c;margin:0 0 -5px;font-size:15px}.monsterinsights-addons-list .monsterinsights-addon .monsterinsights-addon-excerpt{color:#777;font-weight:400;margin:10px 0 0;font-size:14px}.monsterinsights-addons-list .monsterinsights-addon-top{padding:20px 24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-addons-list .monsterinsights-addon-image{border:1px solid #d6e2ed;width:74px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:start;align-self:start;margin-right:20px}.monsterinsights-addons-list .monsterinsights-addon-image img{display:block;max-width:100%}.monsterinsights-addons-list .monsterinsights-addon-message{position:absolute;bottom:0;background:#f9fbff;border-top:1px solid #d6e2ed;left:0;right:0}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-interior{padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-status{font-weight:700;font-size:13px;color:#393f4c}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-action{-ms-flex-item-align:end;align-self:flex-end}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-button{padding-bottom:7px;padding-top:9px;min-width:120px;line-height:1}.monsterinsights-addons-list .monsterinsights-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.monsterinsights-file-input{margin-bottom:20px}.monsterinsights-tools .monsterinsights-dark{margin-bottom:5px;display:block}.monsterinsights-tools-url-builder p .monsterinsights-info{margin-left:0}.monsterinsights-tools-url-builder .monsterinsights-input-text{margin-bottom:20px}.monsterinsights-required{color:#d4393d}textarea:-moz-read-only{background-color:#f9fbff}textarea:read-only{background-color:#f9fbff}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-tools-info-row p{margin-top:0}.monsterinsights-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-tools-info-row .monsterinsights-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-tools-info-row .monsterinsights-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.monsterinsights-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info i{margin-right:10px;color:#b6c9da}.monsterinsights-about-block{padding:25px;background:#fff;border:1px solid #d6e2ed;margin-top:20px;margin-left:20px;margin-right:20px}.monsterinsights-about-block h3{color:#393f4c;font-size:18px;margin:0 0 20px;line-height:1.4}.monsterinsights-about-block p{font-size:16px}.monsterinsights-about-block:after{content:"";display:table;clear:both}div[class*=" monsterinsights-path-about-"] .monsterinsights-container,div[class^=monsterinsights-path-about-] .monsterinsights-container{width:100%}div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:20px;padding-right:20px}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-left:0;padding-right:0}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list{padding:0 20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:calc(33.3333% - 12.5px)}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:100%}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addon-image,div[class^=monsterinsights-path-about-] .monsterinsights-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" monsterinsights-path-about-"] .monstericon-star:before,div[class^=monsterinsights-path-about-] .monstericon-star:before{color:#fdb72c}.monsterinsights-lite-vs-pro-table{padding:0}.monsterinsights-lite-vs-pro-table .monsterinsights-lite-vs-pro-footer{background:#f0f0f0}.monsterinsights-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.monsterinsights-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.monsterinsights-features-table{width:100%;border-collapse:collapse;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-features-table td,.monsterinsights-features-table th{width:33.33333%;border-bottom:1px solid #d6e2ed;padding:30px;vertical-align:top}.monsterinsights-features-table td p,.monsterinsights-features-table th p{margin:0}.monsterinsights-features-table th{background:#f0f0f0;text-align:left;border-right:none}.monsterinsights-features-table td p>span{display:block;margin-left:30px}.monsterinsights-features-full:before,.monsterinsights-features-none:before,.monsterinsights-features-partial:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f021";font-size:20px;margin-right:10px;color:#d4393d;position:relative;top:2px}.monsterinsights-features-partial:before{content:"";background:url(../img/about-icon-check.svg) no-repeat 50%;background-size:19px auto;width:19px;height:19px;top:6px}.monsterinsights-features-full:before{content:"\f015";color:#4ab99b}.monsterinsights-lite-vs-pro-footer{padding:50px 20px 30px;text-align:center}.monsterinsights-lite-vs-pro-footer h3{margin-bottom:10px}.monsterinsights-lite-vs-pro-footer p{margin-bottom:0}.monsterinsights-lite-vs-pro-footer a{color:#509fe2}.monsterinsights-lite-vs-pro-footer a:focus,.monsterinsights-lite-vs-pro-footer a:hover{color:#393f4c}.monsterinsights-lite-vs-pro-footer.monsterinsights-small{padding:0;text-align:left}.monsterinsights-lite-vs-pro-footer.monsterinsights-small h3{margin-bottom:5px}.monsterinsights-lite-vs-pro-footer.monsterinsights-small p{margin-top:0}.monsterinsights-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-two-column>div{width:50%}.monsterinsights-list-check ul{margin:0}.monsterinsights-list-check li{font-size:16px;margin-top:10px;padding-left:30px;position:relative}.monsterinsights-list-check li:first-child{margin-top:0}.monsterinsights-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f015";font-size:20px;margin-right:10px;color:#5cc0a5;position:absolute;left:0;top:0}.monsterinsights-about-docs-row:after{display:table;clear:both;content:""}.monsterinsights-about-docs-image{width:270px;float:left;margin-right:20px}.monsterinsights-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.monsterinsights-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.monsterinsights-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.monsterinsights-about-docs-4:after{background-image:url(../img/about-icon-addons.png)}.monsterinsights-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.monsterinsights-bg-img.monsterinsights-about-team{padding-top:59%}.monsterinsights-bg-img.monsterinsights-about-team:after{background-image:url(../img/about-team.jpg)}.monsterinsights-about-page-right-image{float:right;width:40%;text-align:center;margin:0 0 0 20px}@media (max-width:782px){.monsterinsights-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.monsterinsights-about-page-right-image img{width:100%}.monsterinsights-about-page-right-image figcaption{color:#999797;margin-top:5px}.monsterinsights-about-page-right-image iframe{max-width:100%}.monsterinsights-dark[data-v-7dd26406]{display:block}button[data-v-45fbd430]{margin-top:3px}.monsterinsights-dark[data-v-5f7c038c]{display:block}fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;right:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;left:50%;margin:-8px 0 0 -8px;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__loading-enter-active,.multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:left;color:#35495e}.multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{opacity:.6}.multiselect--active{z-index:1}.multiselect--active:not(.multiselect--above) .multiselect__current,.multiselect--active:not(.multiselect--above) .multiselect__input,.multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-left-radius:0;border-bottom-right-radius:0}.multiselect--active .multiselect__select{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.multiselect--above.multiselect--active .multiselect__current,.multiselect--above.multiselect--active .multiselect__input,.multiselect--above.multiselect--active .multiselect__tags{border-top-left-radius:0;border-top-right-radius:0}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 0 0 5px;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.multiselect__input:-ms-input-placeholder{color:#35495e}.multiselect__input::-webkit-input-placeholder{color:#35495e}.multiselect__input::-moz-placeholder{color:#35495e}.multiselect__input::-ms-input-placeholder{color:#35495e}.multiselect__input::placeholder{color:#35495e}.multiselect__tag~.multiselect__input,.multiselect__tag~.multiselect__single{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-left:5px;margin-bottom:8px}.multiselect__tags-wrap{display:inline}.multiselect__tags{min-height:40px;display:block;padding:9px 40px 0 8px;border-radius:5px;border:1px solid #b8c9d8;background:#fff;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:2px 8px 2px 20px;border-radius:5px;margin-right:10px;color:#393f4c;line-height:1;background:#f3f6ff;margin-bottom:5px;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;border:1px solid #b7c9d9;font-size:14px}.multiselect__tag.monsterinsights-tag-forced{padding-left:8px}.multiselect__tag.monsterinsights-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;left:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:22px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\D7";color:#b7c9d8;font-size:18px;margin-top:-4px;display:block}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#444}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 30px 0 12px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{display:none}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #b7c9d9;border-top:none;border-bottom-left-radius:5px;border-bottom-right-radius:5px;z-index:1;-webkit-overflow-scrolling:touch}.multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-left-radius:0;border-bottom-right-radius:0;border-top-left-radius:5px;border-top-right-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.multiselect__content::webkit-scrollbar{display:none}.multiselect__element{display:block}.multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.multiselect__option:after{top:0;right:0;position:absolute;line-height:40px;padding-right:12px;padding-left:20px;font-size:13px}.multiselect__option--highlight{background:#acbdc9;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#acbdc9;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect--disabled{background:#ededed;pointer-events:none}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.multiselect__option--group{background:#ededed;color:#35495e}.multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.multiselect__option--group-selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect-enter-active,.multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.multiselect-enter,.multiselect-leave-active{opacity:0}.multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}[dir=rtl] .multiselect{text-align:right}[dir=rtl] .multiselect__select{right:auto;left:1px}[dir=rtl] .multiselect__tags{padding:8px 8px 0 40px}[dir=rtl] .multiselect__content{text-align:right}[dir=rtl] .multiselect__option:after{right:auto;left:0}[dir=rtl] .multiselect__clear{right:auto;left:12px}[dir=rtl] .multiselect__spinner{right:auto;left:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(2turn);transform:rotate(2turn)}}.update-nag{display:none}.monsterinsights-admin-page{min-height:100vh;font-size:14px}.monsterinsights-admin-page a{color:#509fe2}.monsterinsights-admin-page a:focus,.monsterinsights-admin-page a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.monsterinsights-admin-page .monsterinsights-settings-content{margin-left:auto;margin-right:auto;max-width:750px}@media (min-width:783px) and (max-width:790px){.monsterinsights-admin-page .monsterinsights-settings-content{padding:0 10px}}.monsterinsights-admin-page input.monsterinsights-has-error{border-color:red}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;color:#fff;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page input[type=number],.monsterinsights-admin-page input[type=text],.monsterinsights-admin-page textarea{border:1px solid #b7c9d9;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#444}.monsterinsights-admin-page input[type=number]::-webkit-input-placeholder,.monsterinsights-admin-page input[type=text]::-webkit-input-placeholder,.monsterinsights-admin-page textarea::-webkit-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-moz-placeholder,.monsterinsights-admin-page input[type=number]::-moz-placeholder,.monsterinsights-admin-page input[type=text]:-moz-placeholder,.monsterinsights-admin-page input[type=text]::-moz-placeholder,.monsterinsights-admin-page textarea:-moz-placeholder,.monsterinsights-admin-page textarea::-moz-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-ms-input-placeholder,.monsterinsights-admin-page input[type=text]:-ms-input-placeholder,.monsterinsights-admin-page textarea:-ms-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number].monsterinsights-has-error,.monsterinsights-admin-page input[type=text].monsterinsights-has-error,.monsterinsights-admin-page textarea.monsterinsights-has-error{border-color:#d83638}.monsterinsights-admin-page input[type=text]:-moz-read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page input[type=text]:read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page textarea{height:150px}.monsterinsights-admin-page label{width:100%;font-size:14px;display:inline-block;color:#777;margin:2px 0 17px}.monsterinsights-admin-page .inline-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights-admin-page .inline-field input{width:100%}.monsterinsights-admin-page .inline-field .monsterinsights-button{margin-left:10px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-admin-page .monsterinsights-error{margin:18px 0 0;color:#d83638;cursor:default}.monsterinsights-admin-page .monsterinsights-error i{margin-right:10px}.monsterinsights-admin-page .monsterinsights-license-type-text{color:#777;font-weight:700;margin-top:16px}.monsterinsights-admin-page .monsterinsights-license-type-text a{color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-dark{color:#444;text-transform:capitalize;font-weight:700}.monsterinsights-admin-page .monsterinsights-settings-block{background:#fff;border:1px solid #d6e2ed;margin:25px 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{border-bottom:1px solid #d6e2ed;padding:16px 25px;font-weight:500;font-size:14px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding:25px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding-left:15px;padding-right:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p{font-size:14px;color:#777;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p a{color:inherit}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding:25px 25px 25px 22px;margin:-25px;border-left:3px solid #64bfa5}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding-left:15px;padding-right:15px;margin:-25px -15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade.monsterinsights-settings-addon-disabled{border-left-color:#f5c953;padding-top:15px;padding-bottom:15px}.monsterinsights-admin-page .monsterinsights-settings-input-radio input{opacity:0;position:absolute}.monsterinsights-admin-page .monsterinsights-settings-input-radio label{color:#444;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio label>span{vertical-align:middle;font-weight:500}.monsterinsights-admin-page .monsterinsights-settings-input-radio label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-right:16px}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked{border-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked:after{left:2px;right:2px;top:2px;bottom:2px;position:absolute;content:"";background:#509fe2;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label{color:#444;font-size:14px;margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux{cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox{background-color:#dee5e9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#b9d8f3}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label input{display:none}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label>span{vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox{width:27px;height:18px;position:relative;display:inline-block;border-radius:10px;margin-right:9px;background-color:#acbdc9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked:after{right:2px;left:auto}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox:after{left:2px;top:2px;bottom:2px;width:14px;position:absolute;content:"";background:#fff;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-info{color:#b6c9da;margin-left:10px;cursor:help}.monsterinsights-admin-page .monsterinsights-settings-input-repeater .monsterinsights-error{margin-top:0;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-labels label{color:#393f4c;font-weight:700;margin-bottom:6px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input,.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{margin-right:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input[type=number]{width:30%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{width:70%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row.monsterinsights-disabled-row{opacity:.5}.monsterinsights-admin-page .monsterinsights-dimensions-count{color:#777;font-style:italic;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label{margin-bottom:0;width:auto}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-button{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-error{margin:0 0 20px}.monsterinsights-admin-page .monsterinsights-settings-input-select .monsterinsights-dark{margin-bottom:5px}.monsterinsights-admin-page .monsterinsights-settings-input-select label{margin-top:-4px}.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:30px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-left:15px}}.monsterinsights-admin-page .monsterinsights-collapsible>p{margin-top:0}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible{color:#b7c9d9;float:right;font-size:22px;padding-left:20px}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:focus{outline:none}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible i{cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-dark{display:block;margin-bottom:9px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate p{margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights- -ua,.monsterinsights-admin-page .monsterinsights-settings-input-authenticate button{margin-top:14px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-manual-ua+.monsterinsights-error{margin-top:15px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions{margin-top:18px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-right:20px;margin-top:0}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-bottom:10px}}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-settings-input-toggle-collapsible{margin-top:12px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-paragraph{padding-top:5px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text{color:#999797;font-size:12px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text:hover{text-decoration:underline}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-upgrade-icon{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-settings-addon-message{margin-right:25px;width:100%}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-button{font-size:12px;padding:6px 16px}.monsterinsights-admin-page .monsterinsights-icon-warning{width:48px}.monsterinsights-admin-page .monsterinsights-icon-warning:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-bg-img{margin-right:25px}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-network-message{width:100%}.monsterinsights-admin-page .monsterinsights-undo-redo{float:right;margin-top:16px}.monsterinsights-admin-page .monsterinsights-undo-redo button{border:none;background:rgba(0,0,0,0);color:#509fe2;padding:0;margin-left:5px}.monsterinsights-admin-page #monsterinsights-license-key-valid{-webkit-text-security:disc;text-security:disc;-moz-text-security:disc;font-family:text-security-disc;font-size:25px;line-height:1.2;color:#b7c9d9;padding-top:7px}.monsterinsights-admin-page #monsterinsights-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-moz-placeholder,.monsterinsights-admin-page #monsterinsights-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-first-time-notice .monsterinsights-notice-button{margin-top:20px}.monsterinsights-settings-blur .monsterinsights-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.monsterinsights-settings-blur.monsterinsights-path-general .monsterinsights-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;left:50%;width:750px;max-width:100%;margin-left:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-left:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{left:0;margin-left:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-left:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate .monsterinsights-button{margin:0 20px}.monsterinsights-not-authenticated-notice .monsterinsights-dark{font-weight:400;margin-bottom:20px}.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{margin-top:18px}}.monsterinsights-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.monsterinsights-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.monsterinsights-admin-page .monsterinsights-logos-row{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;border:1px solid #d6e2ed;margin:40px 50px 60px;padding:25px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-logos-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-left:20px;margin-right:20px}}.monsterinsights-admin-page .monsterinsights-logos-row .monsterinsights-box-title{font-size:13px;font-weight:700;color:#8aa4b8;position:absolute;background:#fff;padding:0 10px;top:0;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);left:50%}.monsterinsights-admin-page .monsterinsights-upsell{background:#fff;border:1px solid #d6e2ed;text-align:center;margin-top:25px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell{margin-left:10px;margin-right:10px}}.monsterinsights-admin-page .monsterinsights-upsell h2{font-size:20px;color:#393f4c;margin:36px 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h3{font-size:18px;color:#393f4c;margin:0 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h4{font-size:18px;color:#4c6577;font-weight:400;margin:0;line-height:2}.monsterinsights-admin-page .monsterinsights-upsell p{font-size:14px;color:#4c6577}.monsterinsights-admin-page .monsterinsights-upsell .monsterinsights-upsell-top{padding-left:10px;padding-right:10px}.monsterinsights-admin-page .monsterinsights-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom{padding-left:20px;padding-right:20px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{position:absolute;top:0;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{min-width:288px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom img{max-width:100%}.monsterinsights-admin-page .monsterinsights-report-ecommerce:after{background-image:url(../img/monsterinsights-report-ecommerce.png)}.monsterinsights-admin-page .monsterinsights-addon-ads,.monsterinsights-admin-page .monsterinsights-addon-amp,.monsterinsights-admin-page .monsterinsights-addon-dimensions,.monsterinsights-admin-page .monsterinsights-addon-eu-compliance,.monsterinsights-admin-page .monsterinsights-addon-forms,.monsterinsights-admin-page .monsterinsights-addon-instant-articles,.monsterinsights-admin-page .monsterinsights-addon-optimize,.monsterinsights-admin-page .monsterinsights-addon-performance,.monsterinsights-admin-page .monsterinsights-addon-scroll{width:48px;padding-top:110%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-ads:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAYAAAA0wZQlAAAFk0lEQVR4nO2dv28bVRzAPz5ZjpM6VKmbhgS1CgSFCWVoYfDUyRKCoSDGtkKCgfwBHZAYOsHQPyATKgplg3YqCE9d8II6hE6NCLVSiOsmbtTaiR3L2Azu2eez3fjH832ffe8jRXLu3t37vu/n/N6755MduHRzm0H5O/WXe9MHwHfAPJAGPgd+dRZ4a/FtX9bhJqBCALQEv0MtaJs0sGD/02/Q41KHE2vgM7zEFcy8a/d8h3K+rMOJMgFwfFAqgh6XOmyUCoDOwakMelzqgIaAs8A6sAdUFfy1Q8V5x6GOPWq5PgsQBN4A/gDmOlRoUEsUuALEgQsW8C0m+RLMAd9YwIfSkfiYjyzglHQUPmYmcOnmdqfBpifK5TK72acUiwWq1dZTBgIBwuFJZqNnCAaDvq7DibJp6G72KYXCYdugAarVKoXCIbt7Gd/X4USZgKOjYlflil2WG+c6nCgTMDER7qpcuMty41yHE2UCZqNnmJycIhAItN0fCASYnJxi9nT/M95xqaPpfKoGYUN/KF8LMvSGESCMESCMESCMESCMESCMESCMESDM4Mt5AxBbnOLq+ZPMTcuEkcmVWb//nGTqUKR+EHwHxBanuHYxKpZ8gLnpINcuRoktTonFICbg6vmTUlW3IBmLmADJK9+NZCxmEBbGCBBGn37gFWxlS+SPKkQmLJaiob6OB/o6dthoLSBfqnD9t916AgHiyxFWYzNdnyOxmWctuQ80Zl46oXUXlEwdNiUfagnN5MpdnyOT+8/xuvvjvEJzAYW2238XvHFSjbZdUL5UYWOn/ZMHyVSBT959re2+jZ0iic0DMrkykQmLJxpe9U60FeBeHogvR0hs5oHaoLqVLbUMqmvJ/XqZUUHbLijx8KD+eika4sqF5rtVd/d0+8GLkUs+aCogkys3Db6xxUkiIYuVhcazOO5x4M6DXP11JGQRX45oOe10o2UX5E7uQalKYjPPiVDjerElLUVDtfuEUqW+bzU2U19g+/LntJazHxstBbTrXjqVW4qGyB9VmrY713Zenw5qLUC7Lsjd/byKxMNan790urmr+eH+czZ2itx+8KLjTEoXtHsHJDYPji/0EnuqurIQJrY4VZ85bewUtU+8jXYCnP3/ykKY6/HZpv35UoXVn9L1Pj+ZKrCyEGY1NsOfO8WmsWAU0K4LijgG2vjyibb74+9EGv9PWPXta5/Ot3y65TyfTp9B2Ig9nHvns7Ntt+dLFbb2SseufB63wrmVLTE3HSQSsrpaDf34+8fdhq4U7S4J93y/E8fN8Z37db4f0K4L8htGgDBiAnS6OZKMRUzA+v3nUlW3IBmLmIBk6pAb97KiV18mV+bGvazok3Gis6Bk6lC08TpgBmFhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhLOCZdBA+Zt8C7kpH4WPuWsDXgJqvgTX0Qgb4ygK2gfeAW8C+aEj+YB/4EXgf+Mf+TPgxtR8V6JrL59Lm+0Yd3Nqeb/9Nr8fQ1yzo8rl0P4eNNf3mpGcBJvmd6Sc3PQlwVWBMNHhiv+hVQtcC2pz4C2fFPuZfaj9xWKcXCYM8mPULrb80NxQepZ/1NeC/OX+qr4HRS7RfiniU7v9GfZBjvUJrASoSqLsEbQWoTJzOErQUMIyE6SpBOwHDTJSOErQS4EWCdJOgjQAvE6OTBC0ESCREFwniAiQToYMEUQE6JEA6BjEB0g13IhmLiACdkm8jFZPnAnRMvo1EbJ4K0Dn5Nl7H6JmAUUi+jZexeiJglJJv41XMQxcwism38SL2oQoY5eTbDLsNQxMwDsm3GWZbhiJgnJJvM6w2KRcwjsm3GUbblAoY5+TbqG6jMgF+SL6NyrYqEeCn5NuoavPAAvyYfBsVbf8f9GGopiPk4XgAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-addon-amp:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-instant-articles:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAYAAAA0wZQlAAABtElEQVR4nO3boW7WABRA4dMGMQsTvyAjQWDQGy+A45FAM14EHmE4XoAEW4NY0mHWZPwWBxaB2BKak6bnk03FTU+uuUmHaV4AzoD3wBvglKzpDvgMvANuhmlengLfgIM61v7cAucj8IE+vuEAXA7TvNwBT+xpduo40sc3PR7tCfauALICyAoge3Sfl6bv12vP8SAvXzz/5/OtzPm3NkBWAFkBZAWQFUA2TPPy2x5iz9oAWQFkBZAVQFYAWbegFXUL2oACyAogK4CsALJuQbI2QFYAWQFkBZAVQLbJW9BWdAvagALICiArgKwAsm5BsjZAVgBZAWQFkBVA1i1oRd2CNqAAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKz/hGVtgKwAsgLICiArgOxe/wm//fJr7Tke5PL1iT3Cf9MGyAogK4CsALICyAogK4Csa6isDZAVQFYAWQFkI/DTHmLHjiNwZU+xY1fDNC/PgK/AwZ5mZ26B8xGYgQvgI3BUR9qHI/AJeAX8+AOC40aexB/2CwAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-optimize{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-optimize:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABeCAYAAABFEMhQAAAFNUlEQVR4nO2dzavcVBiHn5Pb1lo/UBFxIbiQCq7EpVioxYUIBTfd+B/oX6CIuHCrLgXFlSjuBIsLRRDd6MKFiovupKj4QatW7+39mOQkx0UmMyfJSWaSnJN0Ou8Dl7mTTM7JfX7JyZtMZq668N5lRuI48CzwPPA4cGqsjifmD+Ai8C7wnT1DjST/LPA5cGKMzm5gvgeeBHYBohE6fA74ChEP8Bj5nnAXhJf/IPBh4D42jVPAt4AKLf+DwO1vKqeBp0LKj4AzAdvfdF4JKX8nYNs3A2dF/oSMUe0IDYj8CRH5E6Iu/XK1NOHVL6/7avskcOirsZuR2pb/2rnbp1iPraS25dsM3Atky19B65gve0FYVh5wJYBwrFXtSABhWLvUlAD806nOlwD80vkkSwLwR68zXAnAD70vL0gAwxl0bUcCGMbgC2sSQH+8XNWUAPrh7ZKyBNAdr9fzJYBueH8zRQJYnyDvZEkA63GsZZ6a//Ti9D07J366lvZdfFQyM02/1TdTbgVeBF4CbplkjSbg5U9+5thtd49wA18Ze8t/lPwewq27odVkKcnuFY7fed+oARQ9PQz8wBaKLzBpQrJ7BUw2Wp/R/Ofr0Xq8gRk7gAh4Grh3lN42AJMmJHtXRwkgAl4I3suGYXQ8SgARcC5oDxuK0Ql676+gAUSAnBHVUKDyIUhf/xtMmBMBuVezRvm80ugYvf9PkABEfgm1eFCL31WwAER+lYr4IhCjY/TBNa8BiPwFyiHenp3vAenhf4CfAEQ+823bKb7yXCkyPSM98BOAyAdQail+OXExr/RIPgSlB7sMDUDkV7HG+drQw3zvUAqTxqSHwwIQ+TZN4ue/F+ILjE5Ij/p/hkHkF9jia9Pr4hcnYjomm/ULQOQDpiq+Ms47jwfFURrIklmvAEQ+le29SbxdAanKUkqR6Zhstt+pX5Fv46hsys9VfWSyQjJpQhYfrN2dyIe8YHGIL4/zlfHeeq09LBkdk8XrfQ5Q5ENrSVk8Wz6sHpZMGpMlRyu7Ffk2jZUNTvHV5exhyegYk8xauxP5BStKSpf41mFJQZbGGN0cgMgHCnGrSsrynJZhabFMfhA2Onb2KvKh+aKao6TMp7QMS46wmgIQ+Ta9xKsG8Wr+svy5yTQmTUrdifwC59hdntc6LJXP1Erii+VNmpQCEPmAvbUuH3qc6c7HeVWbvpxvshSTaaD9LuXtpFNJWQ3LIb60TLEHaEDJlr+kT0mJQ7w9ry5+0V6mRT6Qi+ki3lFSLhdxDE92V9ZyIp9llV+fvk5JWR3zcYRlV0rL6SIfGFZS4qxs3O2VZ4l8m4G1fH0Zl/jla0U+zMf8NWr5yvS2ktLdXjkkkW+xspbvWFJaDVMVD/wp8qs0vWvVQ3z1AFsKxZjXRT6Qa2qq5ZtKymL26pKy3p3KMj17R+QX+KjlG0rK0muVAmPOA/siH1zHUtoOtPnDqpKyUfwF4FOQA24FnyUl1de+n8WH9wMfFRPkwhqwc/KOkP9owZg0cd7QKfJzxvvks4UMO0z3LSkif84UAYh8i7EDEPkVxgxA5DsYKwCR38AYAYj8FkIHIPJXEDIAkb8GoQIQ+WsSIgCR3wHfAYj8jvgMQOT3wFcAEfCrl5a2DB8BRMDHw1dlo+n99w8NIALeHtTC5vPmkIWHBBABl4AvhqzABvMjHr7QtW8AxQH3PPDb0JXYMP4FzuDra6N6UMg/Ah4CPptqRUbmG+ABYG/KlbBLzRnwDPAI8AZweZI1CsfvwFvk35b+BNDtWyoC8D/ypjW2YaKvCQAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-dimensions{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-performance{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-performance:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-scroll{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-scroll:after{background-image:url(../img/icon-scroll-tracking.png)}.monsterinsights-admin-page .monsterinsights-upsell-large{padding-bottom:35px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-large{padding-left:10px;padding-right:10px;line-height:1.2}}.monsterinsights-admin-page .monsterinsights-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-upsell-large h2{font-size:18px;margin-top:0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-coupon{color:#509fe2;border:1px dashed #509fe2;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-flow:wrap;flex-flow:wrap;margin:30px auto 25px;max-width:525px}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:left;margin:10px 0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span:before{content:"";background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAj0lEQVQ4je2U0QmAIBCGv8QFXKEVapDGaYS2aJFGqBV8aAFX6EHB8OHOIIjA70nx/ED577ppPVHogR1wQABGwEsXjGZMUpfWLu1FaqSPadKfSC0xIlJMBmVf4i052LUsynkwD4U1OENsvTcJltjL2p/enzwDh1DvLXE4iAOi4AA2qeA/OW3Sb6Se3CCBivhdiyQVWMKC0oMAAAAASUVORK5CYII=);width:11px;height:11px;background-size:contain;display:inline-block;margin-right:12px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p a{color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADB0lEQVRYhc2X30tTYRjHP+dMU5dTxxRLS1hkDUTNNUGELiTQmyYDL8rr6Bd01UVgf0CBF10FWuG1eRGIu8obLwIRtlabFQOliTlLVDY3nb87XZyztc2d7SBb+r17z/O8z/N93/O+z/N9BTRCcttNgAPoAloAM1CumDeBAOADpoBxweZc1xJX0JC4BRgA+oBijXz3gffAC8Hm9B2LgOS2G4BB4IEWomphgNfAU8HmjGomILntTcA4cPmYidMxDzgEm/NbTgKS294BfAAq8pQ8jgjQI9icM6oElJVPFyB5MonO5J1IEFD+uYf8bbsa5gFr/EyISYbB/5AcJcdgfCBA4qp9IctpD0d2MJw9g04nqrkAcHj4h+jWHlUVpdncJOCaYHP6ipQPA2rJJQlGxjy4vEGqjXqe3O/EVFWWMep6eJuXb6ZZC8Vob63n7m0rQuYlCUrOflGpcH1qVGf9K7i8QQDWQjEmJv2qy5qY9LMWigHg8gaZ9a+o+gJ9kttuEpHLq2qF+/EzlDpeDKl4HrWlz01DMeAQkWv7SaFLRG4sqrh00Zg6bjCqeB61pc/NgBYRuaupotlSS3trPQDVRj293RZV395uC9VGPQDtrfU0W2pzETALktsu5fKCvF/DBIpyu8jQGlCnEzX7glwJNzV75x+bIrKSOSkERGQZdVLwicgaLitc3iALS2HNUReWwonqmQNTRcjKZ4gs1XBlbYuRMQ/Xm+voaLtAo9lEaUnq+d3ZPWAusM7M5yU+zS5z6+bVXMn3gfF4NxwF7qh57u4d8PzVR36v/juvlYZS9GUy59j2PhvRnYTtXE05zx7foORM1kv2TrA5+zW3443oDm9HPcwFsqvtRrOJe/1WKg3a2nGyIhoCHmaNDnyfW8Xz9ReLyxtEorsAVBhKaKirpK3pPE1XanKFABgWbM5HcJokmfLBgSwcC4UIsjxPvBFSCruiVnsKRCIuy1PeBkc6i6LbO5G3Kl+YR5bjM+mGjK1NYWkFhpFP7HEhKTGsmV5FcJofpxmIFOR5/hdt5RGc1JOx/AAAAABJRU5ErkJggg==)}
lite/assets/vue/css/settings.rtl.css CHANGED
@@ -1 +1 @@
1
- .monsterinsights-dark[data-v-1eb99caf],.monsterinsights-dark[data-v-6a976dba],.monsterinsights-dark[data-v-4619bc56]{display:block}.monsterinsights-addons-navbar h1{display:inline-block;font-size:16px;line-height:48px;font-weight:400;margin:0;color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px;width:258px;position:relative}@media (max-width:750px){.monsterinsights-addons-navbar .monsterinsights-addons-filters{width:calc(100vw - 200px)}}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]{height:28px;margin-left:0;padding-right:10px;padding-left:28px;font-size:14px;border-color:#d6e2ed}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-webkit-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-moz-placeholder,.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-moz-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-ms-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters>i{position:absolute;left:10px;top:5px;z-index:10;color:#b7c9d9}.monsterinsights-addon-not-available .monsterinsights-addon-status span,.monsterinsights-addon-not-installed .monsterinsights-addon-status span{color:#777}.monsterinsights-addon-inactive .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}#monsterinsights-addons{width:770px}@media (max-width:782px){#monsterinsights-addons{width:100%}}#monsterinsights-addons .monsterinsights-addons-area{margin:0 10px}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button{background:#f9fbff;border-color:#d6e2eb;color:#8ba4b7}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:hover{background:#fff;border-color:#c4d6e2}#monsterinsights-addons .monsterinsights-addons-no-results{margin-top:25px;padding:0 10px}#monsterinsights-addons .monsterinsights-addons-no-results p{font-size:16px}#monsterinsights-addons .monsterinsights-addons-no-results>div{visibility:hidden;-webkit-animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards;animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards}.monsterinsights-path-addons .monsterinsights-navigation-bar{padding-right:10px;padding-left:10px;background:#fff;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-container,.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:0}.monsterinsights-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px}.monsterinsights-addons-list .monsterinsights-addon{width:calc(50% - 12.5px);border:1px solid #d6e2ed;position:relative;background:#fff;padding:0 0 72px;margin-bottom:25px}@media (max-width:782px){.monsterinsights-addons-list .monsterinsights-addon{width:100%}}.monsterinsights-addons-list .monsterinsights-addon h3{color:#393f4c;margin:0 0 -5px;font-size:15px}.monsterinsights-addons-list .monsterinsights-addon .monsterinsights-addon-excerpt{color:#777;font-weight:400;margin:10px 0 0;font-size:14px}.monsterinsights-addons-list .monsterinsights-addon-top{padding:20px 24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-addons-list .monsterinsights-addon-image{border:1px solid #d6e2ed;width:74px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:start;align-self:start;margin-left:20px}.monsterinsights-addons-list .monsterinsights-addon-image img{display:block;max-width:100%}.monsterinsights-addons-list .monsterinsights-addon-message{position:absolute;bottom:0;background:#f9fbff;border-top:1px solid #d6e2ed;right:0;left:0}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-interior{padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-status{font-weight:700;font-size:13px;color:#393f4c}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-action{-ms-flex-item-align:end;align-self:flex-end}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-button{padding-bottom:7px;padding-top:9px;min-width:120px;line-height:1}.monsterinsights-addons-list .monsterinsights-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.monsterinsights-file-input{margin-bottom:20px}.monsterinsights-tools .monsterinsights-dark{margin-bottom:5px;display:block}.monsterinsights-tools-url-builder p .monsterinsights-info{margin-right:0}.monsterinsights-tools-url-builder .monsterinsights-input-text{margin-bottom:20px}.monsterinsights-required{color:#d4393d}textarea:-moz-read-only{background-color:#f9fbff}textarea:read-only{background-color:#f9fbff}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-tools-info-row p{margin-top:0}.monsterinsights-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-tools-info-row .monsterinsights-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-tools-info-row .monsterinsights-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.monsterinsights-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info i{margin-left:10px;color:#b6c9da}.monsterinsights-about-block{padding:25px;background:#fff;border:1px solid #d6e2ed;margin-top:20px;margin-right:20px;margin-left:20px}.monsterinsights-about-block h3{color:#393f4c;font-size:18px;margin:0 0 20px;line-height:1.4}.monsterinsights-about-block p{font-size:16px}.monsterinsights-about-block:after{content:"";display:table;clear:both}div[class*=" monsterinsights-path-about-"] .monsterinsights-container,div[class^=monsterinsights-path-about-] .monsterinsights-container{width:100%}div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-right:20px;padding-left:20px}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-right:0;padding-left:0}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list{padding:0 20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:calc(33.3333% - 12.5px)}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:100%}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addon-image,div[class^=monsterinsights-path-about-] .monsterinsights-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" monsterinsights-path-about-"] .monstericon-star:before,div[class^=monsterinsights-path-about-] .monstericon-star:before{color:#fdb72c}.monsterinsights-lite-vs-pro-table{padding:0}.monsterinsights-lite-vs-pro-table .monsterinsights-lite-vs-pro-footer{background:#f0f0f0}.monsterinsights-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.monsterinsights-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.monsterinsights-features-table{width:100%;border-collapse:collapse;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-features-table td,.monsterinsights-features-table th{width:33.33333%;border-bottom:1px solid #d6e2ed;padding:30px;vertical-align:top}.monsterinsights-features-table td p,.monsterinsights-features-table th p{margin:0}.monsterinsights-features-table th{background:#f0f0f0;text-align:right;border-left:none}.monsterinsights-features-table td p>span{display:block;margin-right:30px}.monsterinsights-features-full:before,.monsterinsights-features-none:before,.monsterinsights-features-partial:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f021";font-size:20px;margin-left:10px;color:#d4393d;position:relative;top:2px}.monsterinsights-features-partial:before{content:"";background:url(../img/about-icon-check.svg) no-repeat 50%;background-size:19px auto;width:19px;height:19px;top:6px}.monsterinsights-features-full:before{content:"\f015";color:#4ab99b}.monsterinsights-lite-vs-pro-footer{padding:50px 20px 30px;text-align:center}.monsterinsights-lite-vs-pro-footer h3{margin-bottom:10px}.monsterinsights-lite-vs-pro-footer p{margin-bottom:0}.monsterinsights-lite-vs-pro-footer a{color:#509fe2}.monsterinsights-lite-vs-pro-footer a:focus,.monsterinsights-lite-vs-pro-footer a:hover{color:#393f4c}.monsterinsights-lite-vs-pro-footer.monsterinsights-small{padding:0;text-align:right}.monsterinsights-lite-vs-pro-footer.monsterinsights-small h3{margin-bottom:5px}.monsterinsights-lite-vs-pro-footer.monsterinsights-small p{margin-top:0}.monsterinsights-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-two-column>div{width:50%}.monsterinsights-list-check ul{margin:0}.monsterinsights-list-check li{font-size:16px;margin-top:10px;padding-right:30px;position:relative}.monsterinsights-list-check li:first-child{margin-top:0}.monsterinsights-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f015";font-size:20px;margin-left:10px;color:#5cc0a5;position:absolute;right:0;top:0}.monsterinsights-about-docs-row:after{display:table;clear:both;content:""}.monsterinsights-about-docs-image{width:270px;float:right;margin-left:20px}.monsterinsights-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.monsterinsights-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.monsterinsights-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.monsterinsights-about-docs-4:after{background-image:url(../img/about-icon-addons.png)}.monsterinsights-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.monsterinsights-bg-img.monsterinsights-about-team{padding-top:59%}.monsterinsights-bg-img.monsterinsights-about-team:after{background-image:url(../img/about-team.jpg)}.monsterinsights-about-page-right-image{float:left;width:40%;text-align:center;margin:0 20px 0 0}@media (max-width:782px){.monsterinsights-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.monsterinsights-about-page-right-image img{width:100%}.monsterinsights-about-page-right-image figcaption{color:#999797;margin-top:5px}.monsterinsights-about-page-right-image iframe{max-width:100%}.monsterinsights-dark[data-v-7dd26406]{display:block}button[data-v-45fbd430]{margin-top:3px}.monsterinsights-dark[data-v-33024a0a]{display:block}fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;left:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;right:50%;margin:-8px -8px 0 0;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__loading-enter-active,.multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:right;color:#35495e}.multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{opacity:.6}.multiselect--active{z-index:1}.multiselect--active:not(.multiselect--above) .multiselect__current,.multiselect--active:not(.multiselect--above) .multiselect__input,.multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-right-radius:0;border-bottom-left-radius:0}.multiselect--active .multiselect__select{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.multiselect--above.multiselect--active .multiselect__current,.multiselect--above.multiselect--active .multiselect__input,.multiselect--above.multiselect--active .multiselect__tags{border-top-right-radius:0;border-top-left-radius:0}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 5px 0 0;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.multiselect__input:-ms-input-placeholder{color:#35495e}.multiselect__input::-webkit-input-placeholder{color:#35495e}.multiselect__input::-moz-placeholder{color:#35495e}.multiselect__input::-ms-input-placeholder{color:#35495e}.multiselect__input::placeholder{color:#35495e}.multiselect__tag~.multiselect__input,.multiselect__tag~.multiselect__single{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-right:5px;margin-bottom:8px}.multiselect__tags-wrap{display:inline}.multiselect__tags{min-height:40px;display:block;padding:9px 8px 0 40px;border-radius:5px;border:1px solid #b8c9d8;background:#fff;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:2px 20px 2px 8px;border-radius:5px;margin-left:10px;color:#393f4c;line-height:1;background:#f3f6ff;margin-bottom:5px;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;border:1px solid #b7c9d9;font-size:14px}.multiselect__tag.monsterinsights-tag-forced{padding-right:8px}.multiselect__tag.monsterinsights-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;right:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:22px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\D7";color:#b7c9d8;font-size:18px;margin-top:-4px;display:block}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#444}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 12px 0 30px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{display:none}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #b7c9d9;border-top:none;border-bottom-right-radius:5px;border-bottom-left-radius:5px;z-index:1;-webkit-overflow-scrolling:touch}.multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:5px;border-top-left-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.multiselect__content::webkit-scrollbar{display:none}.multiselect__element{display:block}.multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.multiselect__option:after{top:0;left:0;position:absolute;line-height:40px;padding-left:12px;padding-right:20px;font-size:13px}.multiselect__option--highlight{background:#acbdc9;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#acbdc9;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect--disabled{background:#ededed;pointer-events:none}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.multiselect__option--group{background:#ededed;color:#35495e}.multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.multiselect__option--group-selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect-enter-active,.multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.multiselect-enter,.multiselect-leave-active{opacity:0}.multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}[dir=rtl] .multiselect{text-align:left}[dir=rtl] .multiselect__select{left:auto;right:1px}[dir=rtl] .multiselect__tags{padding:8px 40px 0 8px}[dir=rtl] .multiselect__content{text-align:left}[dir=rtl] .multiselect__option:after{left:auto;right:0}[dir=rtl] .multiselect__clear{left:auto;right:12px}[dir=rtl] .multiselect__spinner{left:auto;right:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}.update-nag{display:none}.monsterinsights-admin-page{min-height:100vh;font-size:14px}.monsterinsights-admin-page a{color:#509fe2}.monsterinsights-admin-page a:focus,.monsterinsights-admin-page a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.monsterinsights-admin-page .monsterinsights-settings-content{margin-right:auto;margin-left:auto;max-width:750px}@media (min-width:783px) and (max-width:790px){.monsterinsights-admin-page .monsterinsights-settings-content{padding:0 10px}}.monsterinsights-admin-page input.monsterinsights-has-error{border-color:red}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;color:#fff;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page input[type=number],.monsterinsights-admin-page input[type=text],.monsterinsights-admin-page textarea{border:1px solid #b7c9d9;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#444}.monsterinsights-admin-page input[type=number]::-webkit-input-placeholder,.monsterinsights-admin-page input[type=text]::-webkit-input-placeholder,.monsterinsights-admin-page textarea::-webkit-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-moz-placeholder,.monsterinsights-admin-page input[type=number]::-moz-placeholder,.monsterinsights-admin-page input[type=text]:-moz-placeholder,.monsterinsights-admin-page input[type=text]::-moz-placeholder,.monsterinsights-admin-page textarea:-moz-placeholder,.monsterinsights-admin-page textarea::-moz-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-ms-input-placeholder,.monsterinsights-admin-page input[type=text]:-ms-input-placeholder,.monsterinsights-admin-page textarea:-ms-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number].monsterinsights-has-error,.monsterinsights-admin-page input[type=text].monsterinsights-has-error,.monsterinsights-admin-page textarea.monsterinsights-has-error{border-color:#d83638}.monsterinsights-admin-page input[type=text]:-moz-read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page input[type=text]:read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page textarea{height:150px}.monsterinsights-admin-page label{width:100%;font-size:14px;display:inline-block;color:#777;margin:2px 0 17px}.monsterinsights-admin-page .inline-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights-admin-page .inline-field input{width:100%}.monsterinsights-admin-page .inline-field .monsterinsights-button{margin-right:10px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-admin-page .monsterinsights-error{margin:18px 0 0;color:#d83638;cursor:default}.monsterinsights-admin-page .monsterinsights-error i{margin-left:10px}.monsterinsights-admin-page .monsterinsights-license-type-text{color:#777;font-weight:700;margin-top:16px}.monsterinsights-admin-page .monsterinsights-license-type-text a{color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-dark{color:#444;text-transform:capitalize;font-weight:700}.monsterinsights-admin-page .monsterinsights-settings-block{background:#fff;border:1px solid #d6e2ed;margin:25px 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block{margin-right:10px;margin-left:10px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{border-bottom:1px solid #d6e2ed;padding:16px 25px;font-weight:500;font-size:14px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{padding-right:15px;padding-left:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding:25px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding-right:15px;padding-left:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p{font-size:14px;color:#777;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p a{color:inherit}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding:25px 22px 25px 25px;margin:-25px;border-right:3px solid #64bfa5}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding-right:15px;padding-left:15px;margin:-25px -15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade.monsterinsights-settings-addon-disabled{border-right-color:#f5c953;padding-top:15px;padding-bottom:15px}.monsterinsights-admin-page .monsterinsights-settings-input-radio input{opacity:0;position:absolute}.monsterinsights-admin-page .monsterinsights-settings-input-radio label{color:#444;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio label>span{vertical-align:middle;font-weight:500}.monsterinsights-admin-page .monsterinsights-settings-input-radio label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-left:16px}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked{border-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked:after{right:2px;left:2px;top:2px;bottom:2px;position:absolute;content:"";background:#509fe2;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label{color:#444;font-size:14px;margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux{cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox{background-color:#dee5e9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#b9d8f3}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label input{display:none}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label>span{vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox{width:27px;height:18px;position:relative;display:inline-block;border-radius:10px;margin-left:9px;background-color:#acbdc9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked:after{left:2px;right:auto}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox:after{right:2px;top:2px;bottom:2px;width:14px;position:absolute;content:"";background:#fff;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-info{color:#b6c9da;margin-right:10px;cursor:help}.monsterinsights-admin-page .monsterinsights-settings-input-repeater .monsterinsights-error{margin-top:0;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-labels label{color:#393f4c;font-weight:700;margin-bottom:6px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input,.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{margin-left:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input[type=number]{width:30%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{width:70%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row.monsterinsights-disabled-row{opacity:.5}.monsterinsights-admin-page .monsterinsights-dimensions-count{color:#777;font-style:italic;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label{margin-bottom:0;width:auto}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-button{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-error{margin:0 0 20px}.monsterinsights-admin-page .monsterinsights-settings-input-select .monsterinsights-dark{margin-bottom:5px}.monsterinsights-admin-page .monsterinsights-settings-input-select label{margin-top:-4px}.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-right:30px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-right:15px}}.monsterinsights-admin-page .monsterinsights-collapsible>p{margin-top:0}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible{color:#b7c9d9;float:left;font-size:22px;padding-right:20px}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:focus{outline:none}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible i{cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-dark{display:block;margin-bottom:9px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate p{margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights- -ua,.monsterinsights-admin-page .monsterinsights-settings-input-authenticate button{margin-top:14px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-manual-ua+.monsterinsights-error{margin-top:15px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions{margin-top:18px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-left:20px;margin-top:0}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-bottom:10px}}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-settings-input-toggle-collapsible{margin-top:12px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-paragraph{padding-top:5px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text{color:#999797;font-size:12px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text:hover{text-decoration:underline}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-upgrade-icon{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-settings-addon-message{margin-left:25px;width:100%}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-button{font-size:12px;padding:6px 16px}.monsterinsights-admin-page .monsterinsights-icon-warning{width:48px}.monsterinsights-admin-page .monsterinsights-icon-warning:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-bg-img{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-network-message{width:100%}.monsterinsights-admin-page .monsterinsights-undo-redo{float:left;margin-top:16px}.monsterinsights-admin-page .monsterinsights-undo-redo button{border:none;background:rgba(0,0,0,0);color:#509fe2;padding:0;margin-right:5px}.monsterinsights-admin-page #monsterinsights-license-key-valid{-webkit-text-security:disc;text-security:disc;-moz-text-security:disc;font-family:text-security-disc;font-size:25px;line-height:1.2;color:#b7c9d9;padding-top:7px}.monsterinsights-admin-page #monsterinsights-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-moz-placeholder,.monsterinsights-admin-page #monsterinsights-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-first-time-notice .monsterinsights-notice-button{margin-top:20px}.monsterinsights-settings-blur .monsterinsights-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.monsterinsights-settings-blur.monsterinsights-path-general .monsterinsights-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;right:50%;width:750px;max-width:100%;margin-right:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{right:0;margin-right:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-right:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate .monsterinsights-button{margin:0 20px}.monsterinsights-not-authenticated-notice .monsterinsights-dark{font-weight:400;margin-bottom:20px}.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{margin-top:18px}}.monsterinsights-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.monsterinsights-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.monsterinsights-admin-page .monsterinsights-logos-row{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;border:1px solid #d6e2ed;margin:40px 50px 60px;padding:25px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-logos-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:20px;margin-left:20px}}.monsterinsights-admin-page .monsterinsights-logos-row .monsterinsights-box-title{font-size:13px;font-weight:700;color:#8aa4b8;position:absolute;background:#fff;padding:0 10px;top:0;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);right:50%}.monsterinsights-admin-page .monsterinsights-upsell{background:#fff;border:1px solid #d6e2ed;text-align:center;margin-top:25px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell{margin-right:10px;margin-left:10px}}.monsterinsights-admin-page .monsterinsights-upsell h2{font-size:20px;color:#393f4c;margin:36px 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h3{font-size:18px;color:#393f4c;margin:0 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h4{font-size:18px;color:#4c6577;font-weight:400;margin:0;line-height:2}.monsterinsights-admin-page .monsterinsights-upsell p{font-size:14px;color:#4c6577}.monsterinsights-admin-page .monsterinsights-upsell .monsterinsights-upsell-top{padding-right:10px;padding-left:10px}.monsterinsights-admin-page .monsterinsights-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom{padding-right:20px;padding-left:20px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{position:absolute;top:0;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{min-width:288px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom img{max-width:100%}.monsterinsights-admin-page .monsterinsights-report-ecommerce:after{background-image:url(../img/monsterinsights-report-ecommerce.png)}.monsterinsights-admin-page .monsterinsights-addon-ads,.monsterinsights-admin-page .monsterinsights-addon-amp,.monsterinsights-admin-page .monsterinsights-addon-dimensions,.monsterinsights-admin-page .monsterinsights-addon-eu-compliance,.monsterinsights-admin-page .monsterinsights-addon-forms,.monsterinsights-admin-page .monsterinsights-addon-instant-articles,.monsterinsights-admin-page .monsterinsights-addon-optimize,.monsterinsights-admin-page .monsterinsights-addon-performance,.monsterinsights-admin-page .monsterinsights-addon-scroll{width:48px;padding-top:110%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-ads:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAYAAAA0wZQlAAAFk0lEQVR4nO2dv28bVRzAPz5ZjpM6VKmbhgS1CgSFCWVoYfDUyRKCoSDGtkKCgfwBHZAYOsHQPyATKgplg3YqCE9d8II6hE6NCLVSiOsmbtTaiR3L2Azu2eez3fjH832ffe8jRXLu3t37vu/n/N6755MduHRzm0H5O/WXe9MHwHfAPJAGPgd+dRZ4a/FtX9bhJqBCALQEv0MtaJs0sGD/02/Q41KHE2vgM7zEFcy8a/d8h3K+rMOJMgFwfFAqgh6XOmyUCoDOwakMelzqgIaAs8A6sAdUFfy1Q8V5x6GOPWq5PgsQBN4A/gDmOlRoUEsUuALEgQsW8C0m+RLMAd9YwIfSkfiYjyzglHQUPmYmcOnmdqfBpifK5TK72acUiwWq1dZTBgIBwuFJZqNnCAaDvq7DibJp6G72KYXCYdugAarVKoXCIbt7Gd/X4USZgKOjYlflil2WG+c6nCgTMDER7qpcuMty41yHE2UCZqNnmJycIhAItN0fCASYnJxi9nT/M95xqaPpfKoGYUN/KF8LMvSGESCMESCMESCMESCMESCMESCMESDM4Mt5AxBbnOLq+ZPMTcuEkcmVWb//nGTqUKR+EHwHxBanuHYxKpZ8gLnpINcuRoktTonFICbg6vmTUlW3IBmLmADJK9+NZCxmEBbGCBBGn37gFWxlS+SPKkQmLJaiob6OB/o6dthoLSBfqnD9t916AgHiyxFWYzNdnyOxmWctuQ80Zl46oXUXlEwdNiUfagnN5MpdnyOT+8/xuvvjvEJzAYW2238XvHFSjbZdUL5UYWOn/ZMHyVSBT959re2+jZ0iic0DMrkykQmLJxpe9U60FeBeHogvR0hs5oHaoLqVLbUMqmvJ/XqZUUHbLijx8KD+eika4sqF5rtVd/d0+8GLkUs+aCogkys3Db6xxUkiIYuVhcazOO5x4M6DXP11JGQRX45oOe10o2UX5E7uQalKYjPPiVDjerElLUVDtfuEUqW+bzU2U19g+/LntJazHxstBbTrXjqVW4qGyB9VmrY713Zenw5qLUC7Lsjd/byKxMNan790urmr+eH+czZ2itx+8KLjTEoXtHsHJDYPji/0EnuqurIQJrY4VZ85bewUtU+8jXYCnP3/ykKY6/HZpv35UoXVn9L1Pj+ZKrCyEGY1NsOfO8WmsWAU0K4LijgG2vjyibb74+9EGv9PWPXta5/Ot3y65TyfTp9B2Ig9nHvns7Ntt+dLFbb2SseufB63wrmVLTE3HSQSsrpaDf34+8fdhq4U7S4J93y/E8fN8Z37db4f0K4L8htGgDBiAnS6OZKMRUzA+v3nUlW3IBmLmIBk6pAb97KiV18mV+bGvazok3Gis6Bk6lC08TpgBmFhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhLOCZdBA+Zt8C7kpH4WPuWsDXgJqvgTX0Qgb4ygK2gfeAW8C+aEj+YB/4EXgf+Mf+TPgxtR8V6JrL59Lm+0Yd3Nqeb/9Nr8fQ1yzo8rl0P4eNNf3mpGcBJvmd6Sc3PQlwVWBMNHhiv+hVQtcC2pz4C2fFPuZfaj9xWKcXCYM8mPULrb80NxQepZ/1NeC/OX+qr4HRS7RfiniU7v9GfZBjvUJrASoSqLsEbQWoTJzOErQUMIyE6SpBOwHDTJSOErQS4EWCdJOgjQAvE6OTBC0ESCREFwniAiQToYMEUQE6JEA6BjEB0g13IhmLiACdkm8jFZPnAnRMvo1EbJ4K0Dn5Nl7H6JmAUUi+jZexeiJglJJv41XMQxcwism38SL2oQoY5eTbDLsNQxMwDsm3GWZbhiJgnJJvM6w2KRcwjsm3GUbblAoY5+TbqG6jMgF+SL6NyrYqEeCn5NuoavPAAvyYfBsVbf8f9GGopiPk4XgAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-addon-amp:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-instant-articles:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAYAAAA0wZQlAAABtElEQVR4nO3boW7WABRA4dMGMQsTvyAjQWDQGy+A45FAM14EHmE4XoAEW4NY0mHWZPwWBxaB2BKak6bnk03FTU+uuUmHaV4AzoD3wBvglKzpDvgMvANuhmlengLfgIM61v7cAucj8IE+vuEAXA7TvNwBT+xpduo40sc3PR7tCfauALICyAoge3Sfl6bv12vP8SAvXzz/5/OtzPm3NkBWAFkBZAWQFUA2TPPy2x5iz9oAWQFkBZAVQFYAWbegFXUL2oACyAogK4CsALJuQbI2QFYAWQFkBZAVQLbJW9BWdAvagALICiArgKwAsm5BsjZAVgBZAWQFkBVA1i1oRd2CNqAAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKz/hGVtgKwAsgLICiArgOxe/wm//fJr7Tke5PL1iT3Cf9MGyAogK4CsALICyAogK4Csa6isDZAVQFYAWQFkI/DTHmLHjiNwZU+xY1fDNC/PgK/AwZ5mZ26B8xGYgQvgI3BUR9qHI/AJeAX8+AOC40aexB/2CwAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-optimize{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-optimize:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABeCAYAAABFEMhQAAAFNUlEQVR4nO2dzavcVBiHn5Pb1lo/UBFxIbiQCq7EpVioxYUIBTfd+B/oX6CIuHCrLgXFlSjuBIsLRRDd6MKFiovupKj4QatW7+39mOQkx0UmMyfJSWaSnJN0Ou8Dl7mTTM7JfX7JyZtMZq668N5lRuI48CzwPPA4cGqsjifmD+Ai8C7wnT1DjST/LPA5cGKMzm5gvgeeBHYBohE6fA74ChEP8Bj5nnAXhJf/IPBh4D42jVPAt4AKLf+DwO1vKqeBp0LKj4AzAdvfdF4JKX8nYNs3A2dF/oSMUe0IDYj8CRH5E6Iu/XK1NOHVL6/7avskcOirsZuR2pb/2rnbp1iPraS25dsM3Atky19B65gve0FYVh5wJYBwrFXtSABhWLvUlAD806nOlwD80vkkSwLwR68zXAnAD70vL0gAwxl0bUcCGMbgC2sSQH+8XNWUAPrh7ZKyBNAdr9fzJYBueH8zRQJYnyDvZEkA63GsZZ6a//Ti9D07J366lvZdfFQyM02/1TdTbgVeBF4CbplkjSbg5U9+5thtd49wA18Ze8t/lPwewq27odVkKcnuFY7fed+oARQ9PQz8wBaKLzBpQrJ7BUw2Wp/R/Ofr0Xq8gRk7gAh4Grh3lN42AJMmJHtXRwkgAl4I3suGYXQ8SgARcC5oDxuK0Ql676+gAUSAnBHVUKDyIUhf/xtMmBMBuVezRvm80ugYvf9PkABEfgm1eFCL31WwAER+lYr4IhCjY/TBNa8BiPwFyiHenp3vAenhf4CfAEQ+823bKb7yXCkyPSM98BOAyAdQail+OXExr/RIPgSlB7sMDUDkV7HG+drQw3zvUAqTxqSHwwIQ+TZN4ue/F+ILjE5Ij/p/hkHkF9jia9Pr4hcnYjomm/ULQOQDpiq+Ms47jwfFURrIklmvAEQ+le29SbxdAanKUkqR6Zhstt+pX5Fv46hsys9VfWSyQjJpQhYfrN2dyIe8YHGIL4/zlfHeeq09LBkdk8XrfQ5Q5ENrSVk8Wz6sHpZMGpMlRyu7Ffk2jZUNTvHV5exhyegYk8xauxP5BStKSpf41mFJQZbGGN0cgMgHCnGrSsrynJZhabFMfhA2Onb2KvKh+aKao6TMp7QMS46wmgIQ+Ta9xKsG8Wr+svy5yTQmTUrdifwC59hdntc6LJXP1Erii+VNmpQCEPmAvbUuH3qc6c7HeVWbvpxvshSTaaD9LuXtpFNJWQ3LIb60TLEHaEDJlr+kT0mJQ7w9ry5+0V6mRT6Qi+ki3lFSLhdxDE92V9ZyIp9llV+fvk5JWR3zcYRlV0rL6SIfGFZS4qxs3O2VZ4l8m4G1fH0Zl/jla0U+zMf8NWr5yvS2ktLdXjkkkW+xspbvWFJaDVMVD/wp8qs0vWvVQ3z1AFsKxZjXRT6Qa2qq5ZtKymL26pKy3p3KMj17R+QX+KjlG0rK0muVAmPOA/siH1zHUtoOtPnDqpKyUfwF4FOQA24FnyUl1de+n8WH9wMfFRPkwhqwc/KOkP9owZg0cd7QKfJzxvvks4UMO0z3LSkif84UAYh8i7EDEPkVxgxA5DsYKwCR38AYAYj8FkIHIPJXEDIAkb8GoQIQ+WsSIgCR3wHfAYj8jvgMQOT3wFcAEfCrl5a2DB8BRMDHw1dlo+n99w8NIALeHtTC5vPmkIWHBBABl4AvhqzABvMjHr7QtW8AxQH3PPDb0JXYMP4FzuDra6N6UMg/Ah4CPptqRUbmG+ABYG/KlbBLzRnwDPAI8AZweZI1CsfvwFvk35b+BNDtWyoC8D/ypjW2YaKvCQAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-dimensions{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-dimensions:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-performance{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-performance:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-scroll{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-scroll:after{background-image:url(../img/icon-scroll-tracking.png)}.monsterinsights-admin-page .monsterinsights-upsell-large{padding-bottom:35px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-large{padding-right:10px;padding-left:10px;line-height:1.2}}.monsterinsights-admin-page .monsterinsights-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-upsell-large h2{font-size:18px;margin-top:0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-coupon{color:#509fe2;border:1px dashed #509fe2;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-flow:wrap;flex-flow:wrap;margin:30px auto 25px;max-width:525px}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:right;margin:10px 0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span:before{content:"";background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAj0lEQVQ4je2U0QmAIBCGv8QFXKEVapDGaYS2aJFGqBV8aAFX6EHB8OHOIIjA70nx/ED577ppPVHogR1wQABGwEsXjGZMUpfWLu1FaqSPadKfSC0xIlJMBmVf4i052LUsynkwD4U1OENsvTcJltjL2p/enzwDh1DvLXE4iAOi4AA2qeA/OW3Sb6Se3CCBivhdiyQVWMKC0oMAAAAASUVORK5CYII=);width:11px;height:11px;background-size:contain;display:inline-block;margin-left:12px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p a{color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADB0lEQVRYhc2X30tTYRjHP+dMU5dTxxRLS1hkDUTNNUGELiTQmyYDL8rr6Bd01UVgf0CBF10FWuG1eRGIu8obLwIRtlabFQOliTlLVDY3nb87XZyztc2d7SBb+r17z/O8z/N93/O+z/N9BTRCcttNgAPoAloAM1CumDeBAOADpoBxweZc1xJX0JC4BRgA+oBijXz3gffAC8Hm9B2LgOS2G4BB4IEWomphgNfAU8HmjGomILntTcA4cPmYidMxDzgEm/NbTgKS294BfAAq8pQ8jgjQI9icM6oElJVPFyB5MonO5J1IEFD+uYf8bbsa5gFr/EyISYbB/5AcJcdgfCBA4qp9IctpD0d2MJw9g04nqrkAcHj4h+jWHlUVpdncJOCaYHP6ipQPA2rJJQlGxjy4vEGqjXqe3O/EVFWWMep6eJuXb6ZZC8Vob63n7m0rQuYlCUrOflGpcH1qVGf9K7i8QQDWQjEmJv2qy5qY9LMWigHg8gaZ9a+o+gJ9kttuEpHLq2qF+/EzlDpeDKl4HrWlz01DMeAQkWv7SaFLRG4sqrh00Zg6bjCqeB61pc/NgBYRuaupotlSS3trPQDVRj293RZV395uC9VGPQDtrfU0W2pzETALktsu5fKCvF/DBIpyu8jQGlCnEzX7glwJNzV75x+bIrKSOSkERGQZdVLwicgaLitc3iALS2HNUReWwonqmQNTRcjKZ4gs1XBlbYuRMQ/Xm+voaLtAo9lEaUnq+d3ZPWAusM7M5yU+zS5z6+bVXMn3gfF4NxwF7qh57u4d8PzVR36v/juvlYZS9GUy59j2PhvRnYTtXE05zx7foORM1kv2TrA5+zW3443oDm9HPcwFsqvtRrOJe/1WKg3a2nGyIhoCHmaNDnyfW8Xz9ReLyxtEorsAVBhKaKirpK3pPE1XanKFABgWbM5HcJokmfLBgSwcC4UIsjxPvBFSCruiVnsKRCIuy1PeBkc6i6LbO5G3Kl+YR5bjM+mGjK1NYWkFhpFP7HEhKTGsmV5FcJofpxmIFOR5/hdt5RGc1JOx/AAAAABJRU5ErkJggg==)}
1
+ .monsterinsights-dark[data-v-3d45db8e],.monsterinsights-dark[data-v-5ed559f4],.monsterinsights-dark[data-v-4619bc56]{display:block}.monsterinsights-addons-navbar h1{display:inline-block;font-size:16px;line-height:48px;font-weight:400;margin:0;color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:10px;width:258px;position:relative}@media (max-width:750px){.monsterinsights-addons-navbar .monsterinsights-addons-filters{width:calc(100vw - 200px)}}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]{height:28px;margin-left:0;padding-right:10px;padding-left:28px;font-size:14px;border-color:#d6e2ed}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-webkit-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-moz-placeholder,.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]::-moz-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters input[type=text]:-ms-input-placeholder{color:#8ba4b7}.monsterinsights-addons-navbar .monsterinsights-addons-filters>i{position:absolute;left:10px;top:5px;z-index:10;color:#b7c9d9}.monsterinsights-addon-not-available .monsterinsights-addon-status span,.monsterinsights-addon-not-installed .monsterinsights-addon-status span{color:#777}.monsterinsights-addon-inactive .monsterinsights-addon-status span{color:#d4393d}.monsterinsights-addon-active .monsterinsights-addon-status span{color:#64bfa5}#monsterinsights-addons{width:770px}@media (max-width:782px){#monsterinsights-addons{width:100%}}#monsterinsights-addons .monsterinsights-addons-area{margin:0 10px}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button{background:#f9fbff;border-color:#d6e2eb;color:#8ba4b7}#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-active .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-inactive .monsterinsights-button:hover,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:focus,#monsterinsights-addons .monsterinsights-addon-not-available .monsterinsights-button:hover{background:#fff;border-color:#c4d6e2}#monsterinsights-addons .monsterinsights-addons-no-results{margin-top:25px;padding:0 10px}#monsterinsights-addons .monsterinsights-addons-no-results p{font-size:16px}#monsterinsights-addons .monsterinsights-addons-no-results>div{visibility:hidden;-webkit-animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards;animation:loadMonsterInsightsSettingsNoJSView 0s 2s forwards}.monsterinsights-path-addons .monsterinsights-navigation-bar{padding-right:10px;padding-left:10px;background:#fff;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-container,.monsterinsights-path-addons .monsterinsights-navigation-bar .monsterinsights-main-navigation.monsterinsights-main-navigation-open{padding:0}.monsterinsights-addons-list{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:25px}.monsterinsights-addons-list .monsterinsights-addon{width:calc(50% - 12.5px);border:1px solid #d6e2ed;position:relative;background:#fff;padding:0 0 72px;margin-bottom:25px}@media (max-width:782px){.monsterinsights-addons-list .monsterinsights-addon{width:100%}}.monsterinsights-addons-list .monsterinsights-addon h3{color:#393f4c;margin:0 0 -5px;font-size:15px}.monsterinsights-addons-list .monsterinsights-addon .monsterinsights-addon-excerpt{color:#777;font-weight:400;margin:10px 0 0;font-size:14px}.monsterinsights-addons-list .monsterinsights-addon-top{padding:20px 24px;display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-addons-list .monsterinsights-addon-image{border:1px solid #d6e2ed;width:74px;-ms-flex-negative:0;flex-shrink:0;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-item-align:start;align-self:start;margin-left:20px}.monsterinsights-addons-list .monsterinsights-addon-image img{display:block;max-width:100%}.monsterinsights-addons-list .monsterinsights-addon-message{position:absolute;bottom:0;background:#f9fbff;border-top:1px solid #d6e2ed;right:0;left:0}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-interior{padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-status{font-weight:700;font-size:13px;color:#393f4c}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-addon-action{-ms-flex-item-align:end;align-self:flex-end}.monsterinsights-addons-list .monsterinsights-addon-message .monsterinsights-button{padding-bottom:7px;padding-top:9px;min-width:120px;line-height:1}.monsterinsights-addons-list .monsterinsights-addon-upgrade{text-align:center;width:100%}#request-filesystem-credentials-dialog[data-v-496d2653]{display:block}.monsterinsights-file-input{margin-bottom:20px}.monsterinsights-tools .monsterinsights-dark{margin-bottom:5px;display:block}.monsterinsights-tools-url-builder p .monsterinsights-info{margin-right:0}.monsterinsights-tools-url-builder .monsterinsights-input-text{margin-bottom:20px}.monsterinsights-required{color:#d4393d}textarea:-moz-read-only{background-color:#f9fbff}textarea:read-only{background-color:#f9fbff}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-tools-info-row p{margin-top:0}.monsterinsights-tools-info-row{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-tools-info-row .monsterinsights-tools-info-label{width:230px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-tools-info-row .monsterinsights-tools-info-description p{margin-bottom:5px}@media (max-width:782px){.monsterinsights-tools-info-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a{color:#777}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:focus,.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-toolsadditional-info i{margin-left:10px;color:#b6c9da}.monsterinsights-about-block{padding:25px;background:#fff;border:1px solid #d6e2ed;margin-top:20px;margin-right:20px;margin-left:20px}.monsterinsights-about-block h3{color:#393f4c;font-size:18px;margin:0 0 20px;line-height:1.4}.monsterinsights-about-block p{font-size:16px}.monsterinsights-about-block:after{content:"";display:table;clear:both}div[class*=" monsterinsights-path-about-"] .monsterinsights-container,div[class^=monsterinsights-path-about-] .monsterinsights-container{width:100%}div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-right:20px;padding-left:20px}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-header,div[class*=" monsterinsights-path-about-"] .monsterinsights-navigation-bar,div[class^=monsterinsights-path-about-] .monsterinsights-header,div[class^=monsterinsights-path-about-] .monsterinsights-navigation-bar{padding-right:0;padding-left:0}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list{padding:0 20px}div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:calc(33.3333% - 12.5px)}@media (max-width:782px){div[class*=" monsterinsights-path-about-"] .monsterinsights-addons-list .monsterinsights-addon,div[class^=monsterinsights-path-about-] .monsterinsights-addons-list .monsterinsights-addon{width:100%}}div[class*=" monsterinsights-path-about-"] .monsterinsights-addon-image,div[class^=monsterinsights-path-about-] .monsterinsights-addon-image{min-height:74px;padding:5px;display:-webkit-box;display:-ms-flexbox;display:flex;height:74px;-webkit-box-align:center;-ms-flex-align:center;align-items:center}div[class*=" monsterinsights-path-about-"] .monstericon-star:before,div[class^=monsterinsights-path-about-] .monstericon-star:before{color:#fdb72c}.monsterinsights-lite-vs-pro-table{padding:0}.monsterinsights-lite-vs-pro-table .monsterinsights-lite-vs-pro-footer{background:#f0f0f0}.monsterinsights-lite-vs-pro-header{text-align:center;padding:40px 0 22px}.monsterinsights-lite-vs-pro-header h1{font-size:22px;margin:0 0 22px}.monsterinsights-features-table{width:100%;border-collapse:collapse;border-top:1px solid #d6e2ed;border-bottom:1px solid #d6e2ed}.monsterinsights-features-table td,.monsterinsights-features-table th{width:33.33333%;border-bottom:1px solid #d6e2ed;padding:30px;vertical-align:top}.monsterinsights-features-table td p,.monsterinsights-features-table th p{margin:0}.monsterinsights-features-table th{background:#f0f0f0;text-align:right;border-left:none}.monsterinsights-features-table td p>span{display:block;margin-right:30px}.monsterinsights-features-full:before,.monsterinsights-features-none:before,.monsterinsights-features-partial:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f021";font-size:20px;margin-left:10px;color:#d4393d;position:relative;top:2px}.monsterinsights-features-partial:before{content:"";background:url(../img/about-icon-check.svg) no-repeat 50%;background-size:19px auto;width:19px;height:19px;top:6px}.monsterinsights-features-full:before{content:"\f015";color:#4ab99b}.monsterinsights-lite-vs-pro-footer{padding:50px 20px 30px;text-align:center}.monsterinsights-lite-vs-pro-footer h3{margin-bottom:10px}.monsterinsights-lite-vs-pro-footer p{margin-bottom:0}.monsterinsights-lite-vs-pro-footer a{color:#509fe2}.monsterinsights-lite-vs-pro-footer a:focus,.monsterinsights-lite-vs-pro-footer a:hover{color:#393f4c}.monsterinsights-lite-vs-pro-footer.monsterinsights-small{padding:0;text-align:right}.monsterinsights-lite-vs-pro-footer.monsterinsights-small h3{margin-bottom:5px}.monsterinsights-lite-vs-pro-footer.monsterinsights-small p{margin-top:0}.monsterinsights-two-column{display:-webkit-box;display:-ms-flexbox;display:flex}.monsterinsights-two-column>div{width:50%}.monsterinsights-list-check ul{margin:0}.monsterinsights-list-check li{font-size:16px;margin-top:10px;padding-right:30px;position:relative}.monsterinsights-list-check li:first-child{margin-top:0}.monsterinsights-list-check li:before{display:inline-block;font-family:Misettings;font-style:normal;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"\f015";font-size:20px;margin-left:10px;color:#5cc0a5;position:absolute;right:0;top:0}.monsterinsights-about-docs-row:after{display:table;clear:both;content:""}.monsterinsights-about-docs-image{width:270px;float:right;margin-left:20px}.monsterinsights-about-docs-1:after{background-image:url(../img/about-icon-connect.png)}.monsterinsights-about-docs-2:after{background-image:url(../img/about-icon-guide.png)}.monsterinsights-about-docs-3:after{background-image:url(../img/about-icon-gdpr.png)}.monsterinsights-about-docs-4:after{background-image:url(../img/about-icon-addons.png)}.monsterinsights-about-docs-5:after{background-image:url(../img/about-icon-ecommerce.png)}.monsterinsights-bg-img.monsterinsights-about-team{padding-top:59%}.monsterinsights-bg-img.monsterinsights-about-team:after{background-image:url(../img/about-team.jpg)}.monsterinsights-about-page-right-image{float:left;width:40%;text-align:center;margin:0 20px 0 0}@media (max-width:782px){.monsterinsights-about-page-right-image{width:100%;float:none;margin:0 0 20px}}.monsterinsights-about-page-right-image img{width:100%}.monsterinsights-about-page-right-image figcaption{color:#999797;margin-top:5px}.monsterinsights-about-page-right-image iframe{max-width:100%}.monsterinsights-dark[data-v-7dd26406]{display:block}button[data-v-45fbd430]{margin-top:3px}.monsterinsights-dark[data-v-5f7c038c]{display:block}fieldset[disabled] .multiselect{pointer-events:none}.multiselect__spinner{position:absolute;left:1px;top:1px;width:48px;height:35px;background:#fff;display:block}.multiselect__spinner:after,.multiselect__spinner:before{position:absolute;content:"";top:50%;right:50%;margin:-8px -8px 0 0;width:16px;height:16px;border-radius:100%;border:2px solid rgba(0,0,0,0);border-top-color:#b7c9d9;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0);box-shadow:0 0 0 1px rgba(0,0,0,0)}.multiselect__spinner:before{-webkit-animation:a 2.4s cubic-bezier(.41,.26,.2,.62);animation:a 2.4s cubic-bezier(.41,.26,.2,.62);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__spinner:after{-webkit-animation:a 2.4s cubic-bezier(.51,.09,.21,.8);animation:a 2.4s cubic-bezier(.51,.09,.21,.8);-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.multiselect__loading-enter-active,.multiselect__loading-leave-active{-webkit-transition:opacity .4s ease-in-out;transition:opacity .4s ease-in-out;opacity:1}.multiselect__loading-enter,.multiselect__loading-leave-active{opacity:0}.multiselect,.multiselect__input,.multiselect__single{font-family:inherit;font-size:16px;-ms-touch-action:manipulation;touch-action:manipulation}.multiselect{-webkit-box-sizing:content-box;box-sizing:content-box;display:block;position:relative;width:100%;min-height:40px;text-align:right;color:#35495e}.multiselect *{-webkit-box-sizing:border-box;box-sizing:border-box}.multiselect:focus{outline:none}.multiselect--disabled{opacity:.6}.multiselect--active{z-index:1}.multiselect--active:not(.multiselect--above) .multiselect__current,.multiselect--active:not(.multiselect--above) .multiselect__input,.multiselect--active:not(.multiselect--above) .multiselect__tags{border-bottom-right-radius:0;border-bottom-left-radius:0}.multiselect--active .multiselect__select{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg)}.multiselect--above.multiselect--active .multiselect__current,.multiselect--above.multiselect--active .multiselect__input,.multiselect--above.multiselect--active .multiselect__tags{border-top-right-radius:0;border-top-left-radius:0}.multiselect__input,.multiselect__single{position:relative;display:inline-block;min-height:20px;line-height:20px;border:none;border-radius:5px;background:#fff;padding:0 5px 0 0;width:100%;-webkit-transition:border .1s ease;transition:border .1s ease;-webkit-box-sizing:border-box;box-sizing:border-box;margin-bottom:8px;vertical-align:top}.multiselect__input:-ms-input-placeholder{color:#35495e}.multiselect__input::-webkit-input-placeholder{color:#35495e}.multiselect__input::-moz-placeholder{color:#35495e}.multiselect__input::-ms-input-placeholder{color:#35495e}.multiselect__input::placeholder{color:#35495e}.multiselect__tag~.multiselect__input,.multiselect__tag~.multiselect__single{width:auto}.multiselect__input:hover,.multiselect__single:hover{border-color:#cfcfcf}.multiselect__input:focus,.multiselect__single:focus{border-color:#a8a8a8;outline:none}.multiselect__single{padding-right:5px;margin-bottom:8px}.multiselect__tags-wrap{display:inline}.multiselect__tags{min-height:40px;display:block;padding:9px 8px 0 40px;border-radius:5px;border:1px solid #b8c9d8;background:#fff;font-size:14px}.multiselect__tag{position:relative;display:inline-block;padding:2px 20px 2px 8px;border-radius:5px;margin-left:10px;color:#393f4c;line-height:1;background:#f3f6ff;margin-bottom:5px;white-space:nowrap;overflow:hidden;max-width:100%;text-overflow:ellipsis;border:1px solid #b7c9d9;font-size:14px}.multiselect__tag.monsterinsights-tag-forced{padding-right:8px}.multiselect__tag.monsterinsights-tag-forced i{display:none}.multiselect__tag-icon{cursor:pointer;position:absolute;right:0;top:0;bottom:0;font-weight:700;font-style:normal;width:22px;text-align:center;line-height:22px;-webkit-transition:all .2s ease;transition:all .2s ease;border-radius:5px}.multiselect__tag-icon:after{content:"\D7";color:#b7c9d8;font-size:18px;margin-top:-4px;display:block}.multiselect__tag-icon:focus:after,.multiselect__tag-icon:hover:after{color:#444}.multiselect__current{min-height:40px;overflow:hidden;padding:8px 12px 0 30px;white-space:nowrap;border-radius:5px;border:1px solid #e8e8e8}.multiselect__current,.multiselect__select{line-height:16px;-webkit-box-sizing:border-box;box-sizing:border-box;display:block;margin:0;text-decoration:none;cursor:pointer}.multiselect__select{display:none}.multiselect__placeholder{color:#adadad;display:inline-block;margin-bottom:10px;padding-top:2px}.multiselect--active .multiselect__placeholder{display:none}.multiselect__content-wrapper{position:absolute;display:block;background:#fff;width:100%;max-height:240px;overflow:auto;border:1px solid #b7c9d9;border-top:none;border-bottom-right-radius:5px;border-bottom-left-radius:5px;z-index:1;-webkit-overflow-scrolling:touch}.multiselect__content{list-style:none;display:inline-block;padding:0;margin:0;min-width:100%;vertical-align:top}.multiselect--above .multiselect__content-wrapper{bottom:100%;border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:5px;border-top-left-radius:5px;border-bottom:none;border-top:1px solid #e8e8e8}.multiselect__content::webkit-scrollbar{display:none}.multiselect__element{display:block}.multiselect__option{display:block;padding:10px;line-height:16px;text-decoration:none;text-transform:none;vertical-align:middle;position:relative;cursor:pointer;white-space:nowrap;font-size:14px}.multiselect__option:after{top:0;left:0;position:absolute;line-height:40px;padding-left:12px;padding-right:20px;font-size:13px}.multiselect__option--highlight{background:#acbdc9;outline:none;color:#fff}.multiselect__option--highlight:after{content:attr(data-select);background:#acbdc9;color:#fff}.multiselect__option--selected{background:#f3f3f3;color:#35495e;font-weight:700}.multiselect__option--selected:after{content:attr(data-selected);color:silver}.multiselect__option--selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect--disabled{background:#ededed;pointer-events:none}.multiselect--disabled .multiselect__current,.multiselect--disabled .multiselect__select{background:#ededed;color:#a6a6a6}.multiselect__option--disabled{background:#ededed!important;color:#a6a6a6!important;cursor:text;pointer-events:none}.multiselect__option--group{background:#ededed;color:#35495e}.multiselect__option--group.multiselect__option--highlight{background:#35495e;color:#fff}.multiselect__option--group.multiselect__option--highlight:after{background:#35495e}.multiselect__option--disabled.multiselect__option--highlight{background:#dedede}.multiselect__option--group-selected.multiselect__option--highlight{background:#509fe2;color:#fff}.multiselect__option--group-selected.multiselect__option--highlight:after{background:#509fe2;content:attr(data-deselect);color:#fff}.multiselect-enter-active,.multiselect-leave-active{-webkit-transition:all .15s ease;transition:all .15s ease}.multiselect-enter,.multiselect-leave-active{opacity:0}.multiselect__strong{margin-bottom:8px;line-height:20px;display:inline-block;vertical-align:top}[dir=rtl] .multiselect{text-align:left}[dir=rtl] .multiselect__select{left:auto;right:1px}[dir=rtl] .multiselect__tags{padding:8px 40px 0 8px}[dir=rtl] .multiselect__content{text-align:left}[dir=rtl] .multiselect__option:after{left:auto;right:0}[dir=rtl] .multiselect__clear{left:auto;right:12px}[dir=rtl] .multiselect__spinner{left:auto;right:1px}@-webkit-keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}@keyframes a{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(-2turn);transform:rotate(-2turn)}}.update-nag{display:none}.monsterinsights-admin-page{min-height:100vh;font-size:14px}.monsterinsights-admin-page a{color:#509fe2}.monsterinsights-admin-page a:focus,.monsterinsights-admin-page a:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-container{margin:0 auto;max-width:100%;width:750px}.monsterinsights-admin-page .monsterinsights-separator{background:#d6e2ed;display:block;height:1px;margin:25px 0}.monsterinsights-admin-page .monsterinsights-settings-content{margin-right:auto;margin-left:auto;max-width:750px}@media (min-width:783px) and (max-width:790px){.monsterinsights-admin-page .monsterinsights-settings-content{padding:0 10px}}.monsterinsights-admin-page input.monsterinsights-has-error{border-color:red}.monsterinsights-admin-page .monsterinsights-button{background:#509fe2;color:#fff;border:solid #2e7fbe;border-width:1px 1px 2px;border-radius:3px;cursor:pointer;display:inline-block;font-size:14px;font-weight:400;padding:10px 20px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-button:focus,.monsterinsights-admin-page .monsterinsights-button:hover{background-color:#3a93dd;border-color:#2971a9;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-disabled{background:#f3f6ff;border-color:#d6e2eb;color:#8ba4b7}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary{background:#8da4b5;border-color:#6f8ca0;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-secondary:hover{background-color:#7e98ab;border-color:#627f94;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green{background:#5cc0a5;border-color:#40a88d;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:focus,.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-green:hover{background-color:#4ab99b;border-color:#39967e;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-red{background:#ea4e64;border-color:#d21933;color:#fff}.monsterinsights-admin-page .monsterinsights-button.monsterinsights-button-large{font-size:16px;padding:14px 27px}.monsterinsights-admin-page input[type=number],.monsterinsights-admin-page input[type=text],.monsterinsights-admin-page textarea{border:1px solid #b7c9d9;border-radius:3px;font-size:14px;padding:9px 15px;width:100%;-webkit-box-shadow:none;box-shadow:none;height:40px;margin:0;color:#444}.monsterinsights-admin-page input[type=number]::-webkit-input-placeholder,.monsterinsights-admin-page input[type=text]::-webkit-input-placeholder,.monsterinsights-admin-page textarea::-webkit-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-moz-placeholder,.monsterinsights-admin-page input[type=number]::-moz-placeholder,.monsterinsights-admin-page input[type=text]:-moz-placeholder,.monsterinsights-admin-page input[type=text]::-moz-placeholder,.monsterinsights-admin-page textarea:-moz-placeholder,.monsterinsights-admin-page textarea::-moz-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number]:-ms-input-placeholder,.monsterinsights-admin-page input[type=text]:-ms-input-placeholder,.monsterinsights-admin-page textarea:-ms-input-placeholder{color:#b7c9d9}.monsterinsights-admin-page input[type=number].monsterinsights-has-error,.monsterinsights-admin-page input[type=text].monsterinsights-has-error,.monsterinsights-admin-page textarea.monsterinsights-has-error{border-color:#d83638}.monsterinsights-admin-page input[type=text]:-moz-read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page input[type=text]:read-only{background:#fff;color:#b7c9d9}.monsterinsights-admin-page textarea{height:150px}.monsterinsights-admin-page label{width:100%;font-size:14px;display:inline-block;color:#777;margin:2px 0 17px}.monsterinsights-admin-page .inline-field{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.monsterinsights-admin-page .inline-field input{width:100%}.monsterinsights-admin-page .inline-field .monsterinsights-button{margin-right:10px;-ms-flex-negative:0;flex-shrink:0}.monsterinsights-admin-page .monsterinsights-error{margin:18px 0 0;color:#d83638;cursor:default}.monsterinsights-admin-page .monsterinsights-error i{margin-left:10px}.monsterinsights-admin-page .monsterinsights-license-type-text{color:#777;font-weight:700;margin-top:16px}.monsterinsights-admin-page .monsterinsights-license-type-text a{color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-dark{color:#444;text-transform:capitalize;font-weight:700}.monsterinsights-admin-page .monsterinsights-settings-block{background:#fff;border:1px solid #d6e2ed;margin:25px 0}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block{margin-right:10px;margin-left:10px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{border-bottom:1px solid #d6e2ed;padding:16px 25px;font-weight:500;font-size:14px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-title{padding-right:15px;padding-left:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding:25px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content{padding-right:15px;padding-left:15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p{font-size:14px;color:#777;margin-top:-5px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content p a{color:inherit}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding:25px 22px 25px 25px;margin:-25px;border-right:3px solid #64bfa5}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade{padding-right:15px;padding-left:15px;margin:-25px -15px}}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-settings-addon-upgrade.monsterinsights-settings-addon-disabled{border-right-color:#f5c953;padding-top:15px;padding-bottom:15px}.monsterinsights-admin-page .monsterinsights-settings-input-radio input{opacity:0;position:absolute}.monsterinsights-admin-page .monsterinsights-settings-input-radio label{color:#444;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-radio label small{font-size:14px;color:#777;font-weight:400}.monsterinsights-admin-page .monsterinsights-settings-input-radio label>span{vertical-align:middle;font-weight:500}.monsterinsights-admin-page .monsterinsights-settings-input-radio label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio{width:20px;height:20px;border:1px solid #b2c1cd;position:relative;display:inline-block;border-radius:50%;margin-left:16px}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked{border-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-radio .monsterinsights-styled-radio.monsterinsights-styled-radio-checked:after{right:2px;left:2px;top:2px;bottom:2px;position:absolute;content:"";background:#509fe2;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label{color:#444;font-size:14px;margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux{cursor:default}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox{background-color:#dee5e9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label.monsterinsights-styled-checkbox-faux .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#b9d8f3}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label input{display:none}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label>span{vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox>label:last-child{margin-bottom:0}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox{width:27px;height:18px;position:relative;display:inline-block;border-radius:10px;margin-left:9px;background-color:#acbdc9}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked{background-color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked:after{left:2px;right:auto}.monsterinsights-admin-page .monsterinsights-settings-input-checkbox .monsterinsights-styled-checkbox:after{right:2px;top:2px;bottom:2px;width:14px;position:absolute;content:"";background:#fff;display:block;border-radius:50%}.monsterinsights-admin-page .monsterinsights-info{color:#b6c9da;margin-right:10px;cursor:help}.monsterinsights-admin-page .monsterinsights-settings-input-repeater .monsterinsights-error{margin-top:0;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-labels label{color:#393f4c;font-weight:700;margin-bottom:6px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input,.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{margin-left:18px}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row button{padding:0;border:none;background:rgba(0,0,0,0);color:#dc3232;cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row input[type=number]{width:30%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row select{width:70%}.monsterinsights-admin-page .monsterinsights-settings-input-repeater-row.monsterinsights-disabled-row{opacity:.5}.monsterinsights-admin-page .monsterinsights-dimensions-count{color:#777;font-style:italic;font-size:14px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label{margin-bottom:0;width:auto}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-settings-input-repeater-labels label:first-child{width:calc(70% - 20px)}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-button{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-input-dimensions .monsterinsights-error{margin:0 0 20px}.monsterinsights-admin-page .monsterinsights-settings-input-select .monsterinsights-dark{margin-bottom:5px}.monsterinsights-admin-page .monsterinsights-settings-input-select label{margin-top:-4px}.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-right:30px}@media screen and (max-width:767px){.monsterinsights-admin-page .monsterinsights-collapsible .monsterinsights-collapsible-content{padding-right:15px}}.monsterinsights-admin-page .monsterinsights-collapsible>p{margin-top:0}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible{color:#b7c9d9;float:left;font-size:22px;padding-right:20px}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:hover{color:#393f4c}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible:focus{outline:none}.monsterinsights-admin-page .monsterinsights-settings-input-toggle-collapsible i{cursor:pointer}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-dark{display:block;margin-bottom:9px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate label{margin-top:0;margin-bottom:4px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate p{margin:0}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights- -ua,.monsterinsights-admin-page .monsterinsights-settings-input-authenticate button{margin-top:14px}.monsterinsights-admin-page .monsterinsights-settings-input-authenticate .monsterinsights-manual-ua+.monsterinsights-error{margin-top:15px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions{margin-top:18px}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-left:20px;margin-top:0}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-auth-actions .monsterinsights-button{margin-bottom:10px}}.monsterinsights-admin-page .monsterinsights-auth-info .monsterinsights-settings-input-toggle-collapsible{margin-top:12px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-paragraph{padding-top:5px}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text{color:#999797;font-size:12px;text-decoration:none}.monsterinsights-admin-page .monsterinsights-auth-manual-connect-text:hover{text-decoration:underline}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-upgrade-icon{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-settings-addon-message{margin-left:25px;width:100%}.monsterinsights-admin-page .monsterinsights-settings-addon-upgrade .monsterinsights-button{font-size:12px;padding:6px 16px}.monsterinsights-admin-page .monsterinsights-icon-warning{width:48px}.monsterinsights-admin-page .monsterinsights-icon-warning:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-settings-network-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-bottom:20px;border-bottom:1px solid #d6e2ed;margin-bottom:15px;color:#777}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-bg-img{margin-left:25px}.monsterinsights-admin-page .monsterinsights-settings-network-notice .monsterinsights-network-message{width:100%}.monsterinsights-admin-page .monsterinsights-undo-redo{float:left;margin-top:16px}.monsterinsights-admin-page .monsterinsights-undo-redo button{border:none;background:rgba(0,0,0,0);color:#509fe2;padding:0;margin-right:5px}.monsterinsights-admin-page #monsterinsights-license-key-valid{-webkit-text-security:disc;text-security:disc;-moz-text-security:disc;font-family:text-security-disc;font-size:25px;line-height:1.2;color:#b7c9d9;padding-top:7px}.monsterinsights-admin-page #monsterinsights-license-key-valid::-webkit-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-moz-placeholder,.monsterinsights-admin-page #monsterinsights-license-key-valid::-moz-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-admin-page #monsterinsights-license-key-valid:-ms-input-placeholder{font-size:14px;line-height:normal;position:relative;bottom:4px}.monsterinsights-first-time-notice .monsterinsights-notice-button{margin-top:20px}.monsterinsights-settings-blur .monsterinsights-settings-content{-webkit-filter:blur(5px);filter:blur(5px);pointer-events:none}.monsterinsights-settings-blur.monsterinsights-path-general .monsterinsights-settings-content{-webkit-filter:none;filter:none;pointer-events:auto}.monsterinsights-not-authenticated-notice{position:fixed;top:40%;right:50%;width:750px;max-width:100%;margin-right:-295px;background:#fff;padding:0 20px 20px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border:1px solid #d6e2ed;text-align:center}@media (min-width:783px){.folded .monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:960px){.monsterinsights-not-authenticated-notice{margin-right:-357px}}@media (max-width:750px){.monsterinsights-not-authenticated-notice{right:0;margin-right:0}}@media (min-width:750px) and (max-width:782px){.monsterinsights-not-authenticated-notice{margin-right:-375px}}.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph{display:none}.monsterinsights-not-authenticated-notice h3{text-align:center;color:#393f4c;font-size:20px;margin:32px 0 20px;line-height:1.4}.monsterinsights-not-authenticated-notice .monsterinsights-license-button{line-height:1;margin-top:20px}.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate .monsterinsights-button{margin:0 20px}.monsterinsights-not-authenticated-notice .monsterinsights-dark{font-weight:400;margin-bottom:20px}.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{background:url(../img/woocommerce.png) no-repeat;background-size:contain;width:156px;height:31px}@media (max-width:767px){.monsterinsights-admin-page .edd-logo,.monsterinsights-admin-page .memberpress-logo,.monsterinsights-admin-page .woocommerce-logo{margin-top:18px}}.monsterinsights-admin-page .edd-logo{background-image:url(../img/easy-digital-downloads.png);width:194px}.monsterinsights-admin-page .memberpress-logo{background-image:url(../img/memberpress.png)}.monsterinsights-admin-page .monsterinsights-logos-row{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;border:1px solid #d6e2ed;margin:40px 50px 60px;padding:25px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-logos-row{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-flow:column;flex-flow:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:20px;margin-left:20px}}.monsterinsights-admin-page .monsterinsights-logos-row .monsterinsights-box-title{font-size:13px;font-weight:700;color:#8aa4b8;position:absolute;background:#fff;padding:0 10px;top:0;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%);right:50%}.monsterinsights-admin-page .monsterinsights-upsell{background:#fff;border:1px solid #d6e2ed;text-align:center;margin-top:25px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell{margin-right:10px;margin-left:10px}}.monsterinsights-admin-page .monsterinsights-upsell h2{font-size:20px;color:#393f4c;margin:36px 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h3{font-size:18px;color:#393f4c;margin:0 0 14px}.monsterinsights-admin-page .monsterinsights-upsell h4{font-size:18px;color:#4c6577;font-weight:400;margin:0;line-height:2}.monsterinsights-admin-page .monsterinsights-upsell p{font-size:14px;color:#4c6577}.monsterinsights-admin-page .monsterinsights-upsell .monsterinsights-upsell-top{padding-right:10px;padding-left:10px}.monsterinsights-admin-page .monsterinsights-upsell-bottom{background:#f7f9fd;border-top:1px solid #d6e2ed;padding:36px 50px 30px;position:relative}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom{padding-right:20px;padding-left:20px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{position:absolute;top:0;right:50%;-webkit-transform:translate(50%,-50%);-ms-transform:translate(50%,-50%);transform:translate(50%,-50%)}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-bottom .monsterinsights-button-top{min-width:288px}}.monsterinsights-admin-page .monsterinsights-upsell-bottom img{max-width:100%}.monsterinsights-admin-page .monsterinsights-report-ecommerce:after{background-image:url(../img/monsterinsights-report-ecommerce.png)}.monsterinsights-admin-page .monsterinsights-addon-ads,.monsterinsights-admin-page .monsterinsights-addon-amp,.monsterinsights-admin-page .monsterinsights-addon-dimensions,.monsterinsights-admin-page .monsterinsights-addon-eu-compliance,.monsterinsights-admin-page .monsterinsights-addon-forms,.monsterinsights-admin-page .monsterinsights-addon-instant-articles,.monsterinsights-admin-page .monsterinsights-addon-optimize,.monsterinsights-admin-page .monsterinsights-addon-performance,.monsterinsights-admin-page .monsterinsights-addon-scroll{width:48px;padding-top:110%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-eu-compliance:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-ads:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAYAAAA0wZQlAAAFk0lEQVR4nO2dv28bVRzAPz5ZjpM6VKmbhgS1CgSFCWVoYfDUyRKCoSDGtkKCgfwBHZAYOsHQPyATKgplg3YqCE9d8II6hE6NCLVSiOsmbtTaiR3L2Azu2eez3fjH832ffe8jRXLu3t37vu/n/N6755MduHRzm0H5O/WXe9MHwHfAPJAGPgd+dRZ4a/FtX9bhJqBCALQEv0MtaJs0sGD/02/Q41KHE2vgM7zEFcy8a/d8h3K+rMOJMgFwfFAqgh6XOmyUCoDOwakMelzqgIaAs8A6sAdUFfy1Q8V5x6GOPWq5PgsQBN4A/gDmOlRoUEsUuALEgQsW8C0m+RLMAd9YwIfSkfiYjyzglHQUPmYmcOnmdqfBpifK5TK72acUiwWq1dZTBgIBwuFJZqNnCAaDvq7DibJp6G72KYXCYdugAarVKoXCIbt7Gd/X4USZgKOjYlflil2WG+c6nCgTMDER7qpcuMty41yHE2UCZqNnmJycIhAItN0fCASYnJxi9nT/M95xqaPpfKoGYUN/KF8LMvSGESCMESCMESCMESCMESCMESCMESDM4Mt5AxBbnOLq+ZPMTcuEkcmVWb//nGTqUKR+EHwHxBanuHYxKpZ8gLnpINcuRoktTonFICbg6vmTUlW3IBmLmADJK9+NZCxmEBbGCBBGn37gFWxlS+SPKkQmLJaiob6OB/o6dthoLSBfqnD9t916AgHiyxFWYzNdnyOxmWctuQ80Zl46oXUXlEwdNiUfagnN5MpdnyOT+8/xuvvjvEJzAYW2238XvHFSjbZdUL5UYWOn/ZMHyVSBT959re2+jZ0iic0DMrkykQmLJxpe9U60FeBeHogvR0hs5oHaoLqVLbUMqmvJ/XqZUUHbLijx8KD+eika4sqF5rtVd/d0+8GLkUs+aCogkys3Db6xxUkiIYuVhcazOO5x4M6DXP11JGQRX45oOe10o2UX5E7uQalKYjPPiVDjerElLUVDtfuEUqW+bzU2U19g+/LntJazHxstBbTrXjqVW4qGyB9VmrY713Zenw5qLUC7Lsjd/byKxMNan790urmr+eH+czZ2itx+8KLjTEoXtHsHJDYPji/0EnuqurIQJrY4VZ85bewUtU+8jXYCnP3/ykKY6/HZpv35UoXVn9L1Pj+ZKrCyEGY1NsOfO8WmsWAU0K4LijgG2vjyibb74+9EGv9PWPXta5/Ot3y65TyfTp9B2Ig9nHvns7Ntt+dLFbb2SseufB63wrmVLTE3HSQSsrpaDf34+8fdhq4U7S4J93y/E8fN8Z37db4f0K4L8htGgDBiAnS6OZKMRUzA+v3nUlW3IBmLmIBk6pAb97KiV18mV+bGvazok3Gis6Bk6lC08TpgBmFhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhjABhLOCZdBA+Zt8C7kpH4WPuWsDXgJqvgTX0Qgb4ygK2gfeAW8C+aEj+YB/4EXgf+Mf+TPgxtR8V6JrL59Lm+0Yd3Nqeb/9Nr8fQ1yzo8rl0P4eNNf3mpGcBJvmd6Sc3PQlwVWBMNHhiv+hVQtcC2pz4C2fFPuZfaj9xWKcXCYM8mPULrb80NxQepZ/1NeC/OX+qr4HRS7RfiniU7v9GfZBjvUJrASoSqLsEbQWoTJzOErQUMIyE6SpBOwHDTJSOErQS4EWCdJOgjQAvE6OTBC0ESCREFwniAiQToYMEUQE6JEA6BjEB0g13IhmLiACdkm8jFZPnAnRMvo1EbJ4K0Dn5Nl7H6JmAUUi+jZexeiJglJJv41XMQxcwism38SL2oQoY5eTbDLsNQxMwDsm3GWZbhiJgnJJvM6w2KRcwjsm3GUbblAoY5+TbqG6jMgF+SL6NyrYqEeCn5NuoavPAAvyYfBsVbf8f9GGopiPk4XgAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-addon-amp:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-instant-articles:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-forms:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABmCAYAAAA0wZQlAAABtElEQVR4nO3boW7WABRA4dMGMQsTvyAjQWDQGy+A45FAM14EHmE4XoAEW4NY0mHWZPwWBxaB2BKak6bnk03FTU+uuUmHaV4AzoD3wBvglKzpDvgMvANuhmlengLfgIM61v7cAucj8IE+vuEAXA7TvNwBT+xpduo40sc3PR7tCfauALICyAoge3Sfl6bv12vP8SAvXzz/5/OtzPm3NkBWAFkBZAWQFUA2TPPy2x5iz9oAWQFkBZAVQFYAWbegFXUL2oACyAogK4CsALJuQbI2QFYAWQFkBZAVQLbJW9BWdAvagALICiArgKwAsm5BsjZAVgBZAWQFkBVA1i1oRd2CNqAAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKwAsgLICiArgKz/hGVtgKwAsgLICiArgOxe/wm//fJr7Tke5PL1iT3Cf9MGyAogK4CsALICyAogK4Csa6isDZAVQFYAWQFkI/DTHmLHjiNwZU+xY1fDNC/PgK/AwZ5mZ26B8xGYgQvgI3BUR9qHI/AJeAX8+AOC40aexB/2CwAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-optimize{padding-top:100%}.monsterinsights-admin-page .monsterinsights-addon-optimize:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABeCAYAAABFEMhQAAAFNUlEQVR4nO2dzavcVBiHn5Pb1lo/UBFxIbiQCq7EpVioxYUIBTfd+B/oX6CIuHCrLgXFlSjuBIsLRRDd6MKFiovupKj4QatW7+39mOQkx0UmMyfJSWaSnJN0Ou8Dl7mTTM7JfX7JyZtMZq668N5lRuI48CzwPPA4cGqsjifmD+Ai8C7wnT1DjST/LPA5cGKMzm5gvgeeBHYBohE6fA74ChEP8Bj5nnAXhJf/IPBh4D42jVPAt4AKLf+DwO1vKqeBp0LKj4AzAdvfdF4JKX8nYNs3A2dF/oSMUe0IDYj8CRH5E6Iu/XK1NOHVL6/7avskcOirsZuR2pb/2rnbp1iPraS25dsM3Atky19B65gve0FYVh5wJYBwrFXtSABhWLvUlAD806nOlwD80vkkSwLwR68zXAnAD70vL0gAwxl0bUcCGMbgC2sSQH+8XNWUAPrh7ZKyBNAdr9fzJYBueH8zRQJYnyDvZEkA63GsZZ6a//Ti9D07J366lvZdfFQyM02/1TdTbgVeBF4CbplkjSbg5U9+5thtd49wA18Ze8t/lPwewq27odVkKcnuFY7fed+oARQ9PQz8wBaKLzBpQrJ7BUw2Wp/R/Ofr0Xq8gRk7gAh4Grh3lN42AJMmJHtXRwkgAl4I3suGYXQ8SgARcC5oDxuK0Ql676+gAUSAnBHVUKDyIUhf/xtMmBMBuVezRvm80ugYvf9PkABEfgm1eFCL31WwAER+lYr4IhCjY/TBNa8BiPwFyiHenp3vAenhf4CfAEQ+823bKb7yXCkyPSM98BOAyAdQail+OXExr/RIPgSlB7sMDUDkV7HG+drQw3zvUAqTxqSHwwIQ+TZN4ue/F+ILjE5Ij/p/hkHkF9jia9Pr4hcnYjomm/ULQOQDpiq+Ms47jwfFURrIklmvAEQ+le29SbxdAanKUkqR6Zhstt+pX5Fv46hsys9VfWSyQjJpQhYfrN2dyIe8YHGIL4/zlfHeeq09LBkdk8XrfQ5Q5ENrSVk8Wz6sHpZMGpMlRyu7Ffk2jZUNTvHV5exhyegYk8xauxP5BStKSpf41mFJQZbGGN0cgMgHCnGrSsrynJZhabFMfhA2Onb2KvKh+aKao6TMp7QMS46wmgIQ+Ta9xKsG8Wr+svy5yTQmTUrdifwC59hdntc6LJXP1Erii+VNmpQCEPmAvbUuH3qc6c7HeVWbvpxvshSTaaD9LuXtpFNJWQ3LIb60TLEHaEDJlr+kT0mJQ7w9ry5+0V6mRT6Qi+ki3lFSLhdxDE92V9ZyIp9llV+fvk5JWR3zcYRlV0rL6SIfGFZS4qxs3O2VZ4l8m4G1fH0Zl/jla0U+zMf8NWr5yvS2ktLdXjkkkW+xspbvWFJaDVMVD/wp8qs0vWvVQ3z1AFsKxZjXRT6Qa2qq5ZtKymL26pKy3p3KMj17R+QX+KjlG0rK0muVAmPOA/siH1zHUtoOtPnDqpKyUfwF4FOQA24FnyUl1de+n8WH9wMfFRPkwhqwc/KOkP9owZg0cd7QKfJzxvvks4UMO0z3LSkif84UAYh8i7EDEPkVxgxA5DsYKwCR38AYAYj8FkIHIPJXEDIAkb8GoQIQ+WsSIgCR3wHfAYj8jvgMQOT3wFcAEfCrl5a2DB8BRMDHw1dlo+n99w8NIALeHtTC5vPmkIWHBBABl4AvhqzABvMjHr7QtW8AxQH3PPDb0JXYMP4FzuDra6N6UMg/Ah4CPptqRUbmG+ABYG/KlbBLzRnwDPAI8AZweZI1CsfvwFvk35b+BNDtWyoC8D/ypjW2YaKvCQAAAABJRU5ErkJggg==)}.monsterinsights-admin-page .monsterinsights-addon-dimensions{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-dimensions:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAF8AAABmCAYAAACtOU2QAAALS0lEQVR4nO2de5RVVR3HP/fOMANDMzxmzJCCBUUgzyQkrQyzrMzKXlIgLioqMjOwxFyWKWJoGbVaFalZUiJLkpa9CI14aBiPKJVHqUAYymIWw2N4wwxzb39872Xu3LnnnH1e95y5l89a88fcu8/ee357n71/+7d/v98kPvrQLkqIzwLfAgYBiSK1uRO4B3jA7YOVwfclMq4CfhlBu4OA+4GDwGNuHkyG0p1o+HzE7U9z+0ApCb93xO33c/tA5ZQBeyy/XLjLdX3ljOs9xnbm2w1MDGmLuP1jbh9wXHa60ACsibj9p9w+YLTmd5EBmAs8E1Hb6zPtuyKxZMV648JdYA9IAu8GBgM3AKNsyi7CfrZOACbbfL8Z+DHS81cCKVc9xaWe7/YNiGCwUsCKzM9V2At/DfYHowrshb8L+LnbDuYSqqo5ZcCerrJkRUJR9Pyzg1CYoh6yzg5AR4p+wj07AO1EYl44OwAiMtvO2QGI2LBW7gMQuVWznAcgcuFD+Q5ALIQP5TkAsRF+ORIr4Zfb7I+V8MuN2Am/nGZ/7IRfTsRS+OUy+2Mp/HIhtsIvh9kfW+H75DXA6JDbuCDTjmdKVfjfBN7gsw4nP6DzgDv8NFCKwh8GfN2g3BaH7583qGMGMNKgXEFiLXyP6/58oJtDmb/j7GS1HrmE2FEJ/BSP7uixFr4HJiO/HTvagOuBtEF9M4DTDmXeBUwxqKsTpST8OuBeg3L3Ac8Z1rkFzWwn7sWDl3QpCX822gTtaEKRK274NtDoUOZcYI7LektG+GOArxiU+wbQ7LLuw8DNBuWuQ+qnMaUg/ATwE5xdH9cBCzy2sRD4m0OZCrTZG8s09sI30HimAu90KNMGfBmzTbYQaeR467T5XgR8zrTS2Avfgd7A9wzKPQA867Ot59HMduIeoN6kwjCFPxiYBTyI9OVtwD4UwdECHABeRT71i4CJHtqYC5zjUKYJnXiD4HacN9964G6TysIKBZ0ALAN62JTpk/npD7wdmARcBnzJsI1xwBcNyt2KwjSDoBm4Bee9YxoKS11nVygs4X8fe8FbMR39YbadRm/sfLTJ2fECsAq9hUGxBtgKjLApk0Tng/HY2IjCEr5dUIITY3AW/heACw3qGgZs99EXP4xFb7HlIS2sNb/ax7Md+lQguuUc4Ds+6i8md6EDWEFir+0UUDWNtYkYYKuNxV74eVyMklt0Ja4FLin0RVcSfvYEWaxsIkGRQP3utL8GKfw6YCawyWc9d6MQy2F5n18PvMVn3VExEpmnO2AXh9uAju61wHKsA4x7oJujG4G+vrvZTgp4FLh94a5+R4EX0QCfoTqZYnDPE3RLptl1vDvNrbHOYHMEOB/Ynf3ASvivR7c9ufegy9CJdWvOZ+8DfkawenQ+J7cfrdn2j4N1o9rSWnEqEmmG1R5jRN0xqpKKPU4DGw/24sUjNSF2xTeLgU9nfykk/CpgNdrc8kmhQ9Bd6EB0M0Vagw+0dOOZ/b1pqG5hdN1RelZ2PrukgZV7+7LnpB9NN3Tei4K0Cwr/PiRYO9LEdONrSSVZ1ljPkdOxXYJeQHvXqfwN91M4Cx5iKniAqmSKSxqaSSa8Wo9DZxjaHztoO/3R+t3l6VvVyuheR6Puhh23AH1zhX8/sjKWBCPqjlJf1Rp1N6zoBVybFf6VmZ+SIQFc2OdQ1N2w4yNJtPTMi7onYdBQ3crAmpNRd8OK0Ung48DQqHsSFufXxnbtr08CXy1igyl0fXiiWA02VLfSu5vTvXckHE7i7+LDhM3A14DhyIeyHugJDERudn/Gu1eBEYUOZDFgexI5hIZBI3A1upn6IfAf2vOQpVGarEfQRj8e+HcYnUhDXG0+TyWRtXBHwBU/jd6oJZjN6o3A24C/BtwPnmuu5dhpp6veSPhVEgl+HPJ1PBxApQeRt/A+l88dBT6Jlinf7D5RzRONDWw97Ct4JCz+BGzK6vnNKMpiEPKF8aMizCbHbOqSQ2jgPO+Qr57ozrLGBlY19WVfi5ObfiQ0kXGPybftHEAORkM8VrwPD3nk89gCPOTlwQ0HerG6qQ/74yl0kOA/QGZyWt1keX1XFxOMGulJ+N2SrvOKFpM1wFuBf2U/sFIDvF6OPO3xuXzWoSWol5uHaipiJfwU0ujWIi/nZeQpH0HP/P95fC6fNB5Uz6G1xx5GZp04/FSgPXQyFmcZK+F3d/uHZwjyLO/Fv9L2/wHEDSvhH/dYn6tlwgEn7+NCtEDXiV63WvOPeKxvMLp490sSvbJuOWNDzh0Aq4Tac9/T8QW/dUVhC6hpObdYeS8MBF72UN+DyInVL2OBf3p47iZszOMLd/XrJEi/+BkIq2WnF96MXRORv49fpnp8rgab++WgBZ+t02u9+cIfiqJEnsXbJXkdOuH64Vy8vz13ovCdiRTZFdLLIGQ7+Ebg18ghahL+On4duqDxyo/wFliRZRQ67G1C3hh2k6g3CiF9HPu37eJMmdk4nIHcDEJiyYr1lwJL0SsbFC3ANciqaUolinlyG6TsxGI0odLDh5zZw6uQw9cs2l0QU8i0nb/X9ABeQl58ILvTQhTTu9epcbs9IYlC14P2sasCfgP8Aud/3pUAPoxC8oMWPGj2vyPn90HoDmMOHX0/k+jeYTDa8Eci39MZtAseNEk+g2xQlzk1bvcmJJasWH8orxNBcxy9WU8i8/UBdILuj/zWryRcX0/IBKhlZv5aFC8bBCdRygFPAXeVyODzwYA6U4gadKN1dYht2JGm49kjSEfOSnxcgSbRBlfK/AX5R2YxipE1ZD7uczmcIYk6tyGw7sSP/Jiox8gx6/qgFam2nsmqlDMJ2YMgIn5PJltUjqZzEbrU90s3vB8GgXbhrwUe9t2deHEcmRtyBV+BbtqCulGfQ0dNyBW5hrWZKEWW36x8ceGm4UMG5QdAT8LeTymFbO9r0JXfaHResTKZ1CB9/wYvHcwV/kGkvy6na0UpFmIpCvKoQg5b2al/uc0zr6CT+ca8z29DrvPXWDw3LdMOyKr6A5yTYwCdTcor0SZyh8Nz25FJothBEi+j19zOC2onWovTyA/exNZ0Gv0vxUJpYY4gAY+nsGNBDzom4BhATtyVHYVm+J3Ir6QQ+5Dbw9BMZz2rWR5YgFwOxwBPWJQ5jmbv/sw6b5pVdgn2+XhOodOvCcapvgoJP418KHPzTrYgO/kQFESRAv6I/rilpo15ZDfwMRR5fgLd7V6BBn9bTrm9SPC5mQNN0wSsNihj+s+GX2dYzvL1PYSO/hegaJXNaAPK5xXgQ0g4swnW6fYQmm3zKHw3/Ac08OPRmruBjNtKjnZj6s5wyqCM6dWqsdOQkwepaWqsx4HfoQ1tOv5MyjtQmpQFONtM2pCabIXRxodZSt6xhnXtNywXqFaTRqflT/isZx6a8Z6MVTmzHjoGbNsxFXvjYgLzOAbTNru8SunEo5gJowGpk1UFvqtAaWYmGNTThPJGGFHqwv8vWlKyjkzftSk7Gd1+Tc88MwydezZgn9R0XU79r8WFAhLLqIEQmYeuOa2WmKHocOaG27x2JqyZ78fPP8wAqiZ0dRgUi/AR0BGW8L06zLZhpnP7IYgEp6CzT6ccOm4IS/g34j5Aog0Z97Y5FfTJOIIxKVdhbe8xwi7ZkV9qgfcDbwbehO5sa2nXKJrRQWpH5mcV8hLwTJ6aacVylHYlCA4iW5Mn39YwN9wjuHMdKRae7e8F6IM279gJv6gYznrQ0vYIhe0+O5Fh8TxkJmhENqQrCpQ9jVIFm56iO1EywnfBk2jNX0Dn5WcW8Nu8z5ahGOJc36btKGWjU+ZbW0r9kGXFbmSHuhztNS3IWpsveFBoz0ykPr+E8uOPwKfgAf4PENliVPJHqFIAAAAASUVORK5CYII=)}.monsterinsights-admin-page .monsterinsights-addon-performance{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-performance:after{background-image:url(data:image/png;base64,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)}.monsterinsights-admin-page .monsterinsights-addon-scroll{padding-top:105%}.monsterinsights-admin-page .monsterinsights-addon-scroll:after{background-image:url(../img/icon-scroll-tracking.png)}.monsterinsights-admin-page .monsterinsights-upsell-large{padding-bottom:35px}@media (max-width:767px){.monsterinsights-admin-page .monsterinsights-upsell-large{padding-right:10px;padding-left:10px;line-height:1.2}}.monsterinsights-admin-page .monsterinsights-upsell-large h3{color:#4c6577;font-size:18px;font-weight:400;margin-top:33px;margin-bottom:14px}.monsterinsights-admin-page .monsterinsights-upsell-large h2{font-size:18px;margin-top:0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-coupon{color:#509fe2;border:1px dashed #509fe2;padding:7px;margin:0 7px;vertical-align:middle;line-height:1}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-flow:wrap;flex-flow:wrap;margin:30px auto 25px;max-width:525px}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span{display:block;width:33%;color:#393f4a;font-size:14px;text-align:right;margin:10px 0}.monsterinsights-admin-page .monsterinsights-upsell-large .monsterinsights-features span:before{content:"";background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVCAYAAACpF6WWAAAAj0lEQVQ4je2U0QmAIBCGv8QFXKEVapDGaYS2aJFGqBV8aAFX6EHB8OHOIIjA70nx/ED577ppPVHogR1wQABGwEsXjGZMUpfWLu1FaqSPadKfSC0xIlJMBmVf4i052LUsynkwD4U1OENsvTcJltjL2p/enzwDh1DvLXE4iAOi4AA2qeA/OW3Sb6Se3CCBivhdiyQVWMKC0oMAAAAASUVORK5CYII=);width:11px;height:11px;background-size:contain;display:inline-block;margin-left:12px}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p{color:#444}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .settings-input-license p a{color:#509fe2}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile{display:inline-block;width:16px;height:16px;padding:0;vertical-align:middle}.monsterinsights-admin-page .monsterinsights-settings-block .monsterinsights-settings-block-content .monsterinsights-smile:after{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAADB0lEQVRYhc2X30tTYRjHP+dMU5dTxxRLS1hkDUTNNUGELiTQmyYDL8rr6Bd01UVgf0CBF10FWuG1eRGIu8obLwIRtlabFQOliTlLVDY3nb87XZyztc2d7SBb+r17z/O8z/N93/O+z/N9BTRCcttNgAPoAloAM1CumDeBAOADpoBxweZc1xJX0JC4BRgA+oBijXz3gffAC8Hm9B2LgOS2G4BB4IEWomphgNfAU8HmjGomILntTcA4cPmYidMxDzgEm/NbTgKS294BfAAq8pQ8jgjQI9icM6oElJVPFyB5MonO5J1IEFD+uYf8bbsa5gFr/EyISYbB/5AcJcdgfCBA4qp9IctpD0d2MJw9g04nqrkAcHj4h+jWHlUVpdncJOCaYHP6ipQPA2rJJQlGxjy4vEGqjXqe3O/EVFWWMep6eJuXb6ZZC8Vob63n7m0rQuYlCUrOflGpcH1qVGf9K7i8QQDWQjEmJv2qy5qY9LMWigHg8gaZ9a+o+gJ9kttuEpHLq2qF+/EzlDpeDKl4HrWlz01DMeAQkWv7SaFLRG4sqrh00Zg6bjCqeB61pc/NgBYRuaupotlSS3trPQDVRj293RZV395uC9VGPQDtrfU0W2pzETALktsu5fKCvF/DBIpyu8jQGlCnEzX7glwJNzV75x+bIrKSOSkERGQZdVLwicgaLitc3iALS2HNUReWwonqmQNTRcjKZ4gs1XBlbYuRMQ/Xm+voaLtAo9lEaUnq+d3ZPWAusM7M5yU+zS5z6+bVXMn3gfF4NxwF7qh57u4d8PzVR36v/juvlYZS9GUy59j2PhvRnYTtXE05zx7foORM1kv2TrA5+zW3443oDm9HPcwFsqvtRrOJe/1WKg3a2nGyIhoCHmaNDnyfW8Xz9ReLyxtEorsAVBhKaKirpK3pPE1XanKFABgWbM5HcJokmfLBgSwcC4UIsjxPvBFSCruiVnsKRCIuy1PeBkc6i6LbO5G3Kl+YR5bjM+mGjK1NYWkFhpFP7HEhKTGsmV5FcJofpxmIFOR5/hdt5RGc1JOx/AAAAABJRU5ErkJggg==)}
lite/assets/vue/js/chunk-common.js CHANGED
@@ -1 +1 @@
1
- (window["monsterinsightsjsonp"]=window["monsterinsightsjsonp"]||[]).push([["chunk-common"],{"088d":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{class:t.componentClass},[o("label",{class:t.disabled?"monsterinsights-styled-checkbox-faux":"",on:{click:function(e){return e.preventDefault(),t.stopClick(e)},keyup:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.stopClick(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:t.stopClick(e)}]}},[o("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.labelClass(),attrs:{tabindex:t.faux?"":0}}),o("input",{directives:[{name:"model",rawName:"v-model",value:t.checked,expression:"checked"}],attrs:{type:"checkbox",name:t.name,disabled:t.disabled},domProps:{checked:Array.isArray(t.checked)?t._i(t.checked,null)>-1:t.checked},on:{change:function(e){var o=t.checked,n=e.target,s=!!n.checked;if(Array.isArray(o)){var a=null,r=t._i(o,a);n.checked?r<0&&(t.checked=o.concat([a])):r>-1&&(t.checked=o.slice(0,r).concat(o.slice(r+1)))}else t.checked=s}}}),o("span",{staticClass:"monsterinsights-checkbox-label",domProps:{innerHTML:t._s(t.label)}}),t.description?o("span",{staticClass:"monsterinsights-checkbox-description",domProps:{innerHTML:t._s(t.description)}}):t._e(),t.tooltip?o("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e(),t.hasCollapsibleSlot?o("span",{staticClass:"monsterinsights-settings-input-toggle-collapsible",attrs:{role:"button"},on:{click:t.toggleCollapsible,keyup:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.toggleCollapsible(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:t.toggleCollapsible(e)}]}},[o("i",{class:t.iconClass,attrs:{tabindex:"0",onkeypress:"if(event.keyCode==32||event.keyCode==13){return false;};"}})]):t._e()],1),o("slide-down-up",[t.slotCollapsibleVisible&&t.hasCollapsibleSlot?o("div",{staticClass:"monsterinsights-collapsible"},[t.hasCollapsibleSlot?o("div",{staticClass:"monsterinsights-separator"}):t._e(),o("div",{staticClass:"monsterinsights-collapsible-content"},[t._t("collapsible")],2)]):t._e()])],1)},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("b0c0"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("2fa7")),r=o("2f62"),i=o("93ec"),c=o("d98d");function l(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function u(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?l(o,!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):l(o).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var p={name:"SettingsInputCheckbox",components:{SlideDownUp:c["a"],SettingsInfoTooltip:i["a"]},props:{name:String,label:String,description:String,tooltip:String,faux:Boolean,faux_tooltip:String,faux_tooltip_off:String,valueOn:String,valueOff:String,default:{type:Boolean,default:!0}},data:function(){return{is_loading:!1,has_error:!1,slotCollapsibleVisible:!1}},computed:u({},Object(r["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},hasCollapsibleSlot:function(){return this.$slots["collapsible"]},iconClass:function(){var t="monstericon-arrow";return this.slotCollapsibleVisible&&(t+=" monstericon-down"),t},componentClass:function(){var t="monsterinsights-settings-input-checkbox";return this.$slots["collapsible"]&&(t+=" has-collapsible"),t},checked:{get:function(){var t=this.valueOn?this.valueOn===this.settings[this.name]:this.settings[this.name];return this.faux?this.default:t},set:function(t){var e=!!this.valueOff&&this.valueOff;t&&(e=!this.valueOn||this.valueOn),this.updateSetting(e)}},tooltip_data:function(){return{content:this.faux_tooltip_text,autoHide:!1,trigger:"hover focus click"}},faux_tooltip_text:function(){return this.has_ua?this.checked?this.faux_tooltip:this.faux_tooltip_off:this.$mi_need_to_auth},disabled:function(){return!this.has_ua||this.faux}}),watch:{checked:function(t){this.slotCollapsibleVisible=t}},methods:{stopClick:function(t){t.target.classList.contains("monsterinsights-styled-checkbox")?this.checked=!this.checked:(t.preventDefault(),t.stopPropagation())},updateSetting:function(t){var e=this;if(this.disabled)return!1;this.$mi_saving_toast({}),this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:t}).then((function(t){t.success?e.$mi_success_toast({}):e.$mi_error_toast({})}))},toggleCollapsible:function(t){t.preventDefault(),this.slotCollapsibleVisible=!this.slotCollapsibleVisible},labelClass:function(){var t="monsterinsights-styled-checkbox";return this.checked&&(t+=" monsterinsights-styled-checkbox-checked"),t},mounted:function(){this.slotCollapsibleVisible=this.checked}}},d=p,g=o("2877"),f=Object(g["a"])(d,n,s,!1,null,null,null);e["a"]=f.exports},"0f8f":function(t,e,o){},1096:function(t,e,o){"use strict";o("4160"),o("e25e"),o("159b");var n=o("561c"),s={install:function(t){t.prototype.$miOverviewTooltips=function(t){if(!t.title){var e=document.querySelectorAll(".monsterinsights-line-chart-tooltip");return e.forEach((function(t){t.style.opacity=0})),!1}var o=t.title[0],n=t.title[1],s=parseInt(t.title[2]),a=t.title[3],r=t.title[4],i=document.getElementById("monsterinsights-chartjs-line-"+r+"-tooltip");if(null===i&&(i=document.createElement("div"),document.body.appendChild(i),i.setAttribute("id","monsterinsights-chartjs-line-"+r+"-tooltip"),i.classList.add("monsterinsights-line-chart-tooltip")),t.opacity){i.classList.remove("above"),i.classList.remove("below"),i.classList.remove("no-transform"),t.yAlign?i.classList.add(t.yAlign):i.classList.add("no-transform");var c="";c+=0===s?"0%":s>0?'<span class="monsterinsights-green"><span class="monsterinsights-arrow monsterinsights-up"></span>'+s+"%</span>":'<span class="monsterinsights-red"><span class="monsterinsights-arrow monsterinsights-down"></span>'+Math.abs(s)+"%</span>";var l='<div class="monsterinsights-reports-overview-datagraph-tooltip-container monsterinsights-reports-tooltip">';l+='<div class="monsterinsights-reports-overview-datagraph-tooltip-title">'+o+"</div>",l+='<div class="monsterinsights-reports-overview-datagraph-tooltip-number">'+n+"</div>",l+='<div class="monsterinsights-reports-overview-datagraph-tooltip-descriptor">'+a+"</div>",l+='<div class="monsterinsights-reports-overview-datagraph-tooltip-trend">'+c+"</div>",l+="</div>",i.innerHTML=l;var u=this._chart.canvas.getBoundingClientRect();i.style.opacity="1",i.style.left=u.left+window.pageXOffset+t.x+"px",i.style.top=u.top+window.pageYOffset+t.y+"px",i.style.fontFamily="Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;",i.style.fontSize=t.fontSize,i.style.fontStyle=t._fontStyle,i.style.padding=t.yPadding+"px "+t.xPadding+"px",i.style.zIndex=99999,i.style.pointerEvents="none"}else i.style.opacity=0},t.prototype.$miPieTooltips=function(t){if(!t.title){var e=document.querySelectorAll(".monsterinsights-pie-chart-tooltip");return e.forEach((function(t){t.style.opacity=0})),!1}var o=t.title[0],n=t.title[1],s=t.title[2],a=document.getElementById("monsterinsights-chartjs-pie-"+s+"-tooltip");null===a&&(a=document.createElement("div"),document.body.appendChild(a),a.setAttribute("id","monsterinsights-chartjs-pie-"+s+"-tooltip")),a.classList.remove("above"),a.classList.remove("below"),a.classList.remove("no-transform"),t.yAlign?a.classList.add(t.yAlign):a.classList.add("no-transform");var r='<div class="monsterinsights-reports-overview-datagraph-tooltip-container monsterinsights-reports-tooltip">';r+='<div class="monsterinsights-reports-overview-datagraph-tooltip-title">'+o+"</div>",r+='<div class="monsterinsights-reports-overview-datagraph-tooltip-number">'+n+"%</div>",r+="</div>",a.innerHTML=r;var i=0;if(t.yAlign){var c=0;t.caretHeight&&(c=t.caretHeight),i="above"===t.yAlign?t.y-c-t.caretPadding:t.y+c+t.caretPadding}a.style.opacity=1,a.style.left=t.x-50+"px",a.style.top=i-40+"px",a.style.padding=t.yPadding+"px "+t.xPadding+"px",a.style.zIndex="99999"},t.prototype.$miyearInReviewTooltips=function(t){if(!t.title){var e=document.querySelectorAll(".monsterinsights-line-chart-tooltip");return e.forEach((function(t){t.style.opacity=0})),!1}var o=t.title[0],n=t.title[1],s=t.title[4],a=document.getElementById("monsterinsights-chartjs-line-"+s+"-tooltip");if(null===a&&(a=document.createElement("div"),document.body.appendChild(a),a.setAttribute("id","monsterinsights-chartjs-line-"+s+"-tooltip"),a.classList.add("monsterinsights-line-chart-tooltip")),t.opacity){a.classList.remove("above"),a.classList.remove("below"),a.classList.remove("no-transform"),t.yAlign?a.classList.add(t.yAlign):a.classList.add("no-transform");var r='<div class="monsterinsights-reports-overview-datagraph-tooltip-container monsterinsights-reports-tooltip">';r+='<div class="monsterinsights-reports-overview-datagraph-tooltip-title">'+o+"</div>",r+='<div class="monsterinsights-reports-overview-datagraph-tooltip-number">'+n+"</div>",r+="</div>",a.innerHTML=r;var i=this._chart.canvas.getBoundingClientRect();a.style.opacity="1",a.style.left=i.left+window.pageXOffset+t.x+"px",a.style.top=i.top+window.pageYOffset+t.y+"px",a.style.fontFamily="Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;",a.style.fontSize=t.fontSize,a.style.fontStyle=t._fontStyle,a.style.padding=t.yPadding+"px "+t.xPadding+"px",a.style.zIndex=99999,a.style.pointerEvents="none"}else a.style.opacity=0},t.prototype.$mi_loading_toast=function(e,o){t.prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:e||Object(n["a"])("Refreshing Report","google-analytics-for-wordpress"),html:o||Object(n["a"])("Loading new report data...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){t.prototype.$swal.showLoading()}})},t.prototype.$mi_error_toast=function(e){var o=e.type,s=void 0===o?"error":o,a=e.customContainerClass,r=void 0===a?"monsterinsights-swal":a,i=e.allowOutsideClick,c=void 0!==i&&i,l=e.allowEscapeKey,u=void 0!==l&&l,p=e.allowEnterKey,d=void 0!==p&&p,g=e.title,f=void 0===g?Object(n["a"])("Error","google-analytics-for-wordpress"):g,h=e.html,m=void 0===h?Object(n["a"])("Please try again.","google-analytics-for-wordpress"):h,_=e.footer,y=void 0!==_&&_;return t.prototype.$swal({type:s,customContainerClass:r,allowOutsideClick:c,allowEscapeKey:u,allowEnterKey:d,title:f,html:m,footer:y,onOpen:function(){t.prototype.$swal.hideLoading()}})},t.prototype.$mi_get_upsell_content=function(t){var e={},o={overview:{title:Object(n["a"])("Unlock the Publishers Report and Focus on the Content that Matters","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Your Top Landing Pages to Improve Enagement","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Exit Pages to Reduce Abandonment","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Outbound Links to Find New Revenue Opportunities","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Affiliate Links and Focus on what's working","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Downloads and Improve Conversions","google-analytics-for-wordpress"),Object(n["a"])("See Audience Demographic Report ( Age / Gender / Interests )","google-analytics-for-wordpress")]},publisher:{title:Object(n["a"])("Unlock the Publishers Report and Focus on the Content That Matters","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Your Top Landing Pages to Improve Enagement","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Exit Pages to Reduce Abandonment","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Outbound Links to Find New Revenue Opportunities","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Affiliate Links and Focus on what's working","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Downloads and Improve Conversions","google-analytics-for-wordpress"),Object(n["a"])("See Audience Demographic Report ( Age / Gender / Interests )","google-analytics-for-wordpress")]},ecommerce:{title:Object(n["a"])("Unlock the eCommerce Report and See Your Important Store Metrics","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Your Conversion Rate to Improve Funnel","google-analytics-for-wordpress"),Object(n["a"])("See The Number of Transactions and make data-driven decisions","google-analytics-for-wordpress"),Object(n["a"])("See The Total Revenue to Track Growth","google-analytics-for-wordpress"),Object(n["a"])("See Average Order Value to Find Offer Opportunities","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Products to See Individual Performance","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Conversion Sources and Focus on what's working","google-analytics-for-wordpress"),Object(n["a"])("See The Time it takes for Customers to Purchase","google-analytics-for-wordpress"),Object(n["a"])("See How Many Sessions are needed for a Purchase","google-analytics-for-wordpress")]},dimensions:{title:Object(n["a"])("Unlock the Dimensions Report and Track Your Own Custom Data","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Which Authors Generate the Most Traffic","google-analytics-for-wordpress"),Object(n["a"])("See Which Post Types Perform Better","google-analytics-for-wordpress"),Object(n["a"])("See Which Categories are the Most Popular","google-analytics-for-wordpress"),Object(n["a"])("See Your Blog's most populare SEO Scores","google-analytics-for-wordpress"),Object(n["a"])("See Which Focus Keyword is Performing Better in Search Engines","google-analytics-for-wordpress")]},forms:{title:Object(n["a"])("Unlock the Forms Report and Improve Conversions","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Reports for Any Contact Form Plugin or Sign-up Form","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Converting Forms and Optimize","google-analytics-for-wordpress"),Object(n["a"])("See Your Forms Impressions Count to Find the Best Placement","google-analytics-for-wordpress")]},queries:{title:Object(n["a"])("Unlock the Search Console Report and See How People Find Your Website","google-analytics-for-wordpress"),subtitle:Object(n["a"])("See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Your Top Google Search Terms and Optimize Content","google-analytics-for-wordpress"),Object(n["a"])("See The Number of Clicks and Track Interests","google-analytics-for-wordpress"),Object(n["a"])("See The Click-Through-Ratio and Improve SEO","google-analytics-for-wordpress"),Object(n["a"])("See The Average Results Position and Focus on what works","google-analytics-for-wordpress")]},realtime:{title:Object(n["a"])("Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Your Active Visitors and Track Their Behaviour to Optimize","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Pages Immediately After Making Changes","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Referral Sources and Adapt Faster","google-analytics-for-wordpress"),Object(n["a"])("See Your Traffic Demographics and ","google-analytics-for-wordpress"),Object(n["a"])("Get Fresh Reports Data Every 60 Seconds","google-analytics-for-wordpress")]}};return o[t]&&(e=o[t]),e}}};e["a"]=s},"1b31":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-addon"},[o("div",{staticClass:"monsterinsights-addon-top"},[t.addon.icon?o("div",{staticClass:"monsterinsights-addon-image"},[o("img",{staticClass:"monsterinsights-addon-thumb",attrs:{src:t.addon.icon,alt:t.addon.title}})]):t._e(),o("div",{staticClass:"monsterinsights-addon-text"},[o("h3",{staticClass:"monsterinsights-addon-title",domProps:{textContent:t._s(t.addonTitle)}}),t.addon.excerpt?o("p",{staticClass:"monsterinsights-addon-excerpt",domProps:{textContent:t._s(t.addon.excerpt)}}):t._e()])]),o("div",{class:t.actionsClass()},[o("div",{staticClass:"monsterinsights-interior"},[o("span",{staticClass:"monsterinsights-addon-status",domProps:{innerHTML:t._s(t.statusText())}}),o("div",{staticClass:"monsterinsights-addon-action"},["licensed"===t.addon.type?o("button",{staticClass:"monsterinsights-button",on:{click:function(e){return e.preventDefault(),t.clickAction(e)}}},[o("span",{domProps:{innerHTML:t._s(t.textButtonAction())}})]):o("a",{staticClass:"monsterinsights-button",attrs:{href:t.upgrade_url,target:"_blank"},domProps:{textContent:t._s(t.textButtonAction())}})])])])])},s=[],a=(o("c975"),o("ac1f"),o("5319"),o("561c")),r={name:"AddonBlock",props:{addon:Object,isAddon:{type:Boolean,default:!0}},data:function(){return{text_status:Object(a["a"])("Status: %s","google-analytics-for-wordpress"),text_upgrade:Object(a["a"])("Upgrade Now","google-analytics-for-wordpress"),upgrade_url:this.$getUpgradeUrl(),activating:!1,deactivating:!1,installing:!1}},computed:{addonTitle:function(){var t=this.addon.title;return 0===t.indexOf("MonsterInsights")&&(t=t.replace("MonsterInsights ","")),t}},methods:{actionsClass:function(){var t="monsterinsights-addon-message ";return"licensed"===this.addon.type?this.addon.active?t+="monsterinsights-addon-active":!1===this.addon.installed?t+="monsterinsights-addon-not-installed":t+="monsterinsights-addon-inactive":t+="monsterinsights-addon-not-available",t},statusText:function(){var t=Object(a["a"])("Not Installed","google-analytics-for-wordpress");return"licensed"!==this.addon.type?t=Object(a["a"])("Not Available","google-analytics-for-wordpress"):this.addon.active?t=this.$mi.network?Object(a["a"])("Network Active","google-analytics-for-wordpress"):Object(a["a"])("Active","google-analytics-for-wordpress"):this.addon.installed&&(t=Object(a["a"])("Inactive","google-analytics-for-wordpress")),Object(a["d"])(this.text_status,"<span>"+t+"</span>")},textButtonAction:function(){return"licensed"!==this.addon.type?Object(a["a"])("Upgrade Now","google-analytics-for-wordpress"):this.activating?Object(a["a"])("Activating...","google-analytics-for-wordpress"):this.deactivating?Object(a["a"])("Deactivating...","google-analytics-for-wordpress"):this.installing?Object(a["a"])("Installing...","google-analytics-for-wordpress"):this.addon.active?Object(a["a"])("Deactivate","google-analytics-for-wordpress"):this.addon.installed?Object(a["a"])("Activate","google-analytics-for-wordpress"):Object(a["a"])("Install","google-analytics-for-wordpress")},clickAction:function(){if(this.activating||this.deactivating||this.installing)return!1;this.addon.installed?this.addon.active?this.deactivateAddon():this.activateAddon():this.installAddon()},installAddon:function(){var t=this,e=this.isAddon?"$_addons/installAddon":"$_addons/installPlugin";this.installing=!0,this.$store.dispatch(e,this.addon).then((function(){t.installing=!1})).catch((function(){t.installing=!1}))},activateAddon:function(){var t=this;this.activating=!0,this.$store.dispatch("$_addons/activateAddon",this.addon).then((function(){t.activating=!1})).catch((function(){t.activating=!1}))},deactivateAddon:function(){var t=this;this.deactivating=!0,this.$store.dispatch("$_addons/deactivateAddon",this.addon).then((function(){t.deactivating=!1})).catch((function(){t.deactivating=!1}))}}},i=r,c=o("2877"),l=Object(c["a"])(i,n,s,!1,null,null,null);e["a"]=l.exports},"3bc9":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"settings-input settings-input-license"},[o("p",{domProps:{innerHTML:t._s(t.text_license_row_1)}}),o("p",{domProps:{innerHTML:t._s(t.text_license_row_2)}}),o("p",{domProps:{innerHTML:t._s(t.text_license_row_3)}}),o("div",{staticClass:"monsterinsights-settings-license-lite"},[o("label",{attrs:{for:"monsterinsights-license-key"},domProps:{innerHTML:t._s(t.text_license_label)}}),o("div",{staticClass:"inline-field"},[o("input",{directives:[{name:"model",rawName:"v-model",value:t.connect_key,expression:"connect_key"}],attrs:{id:"monsterinsights-license-key",readonly:t.is_loading,type:"text",autocomplete:"off",placeholder:t.text_license_placeholder},domProps:{value:t.connect_key},on:{input:[function(e){e.target.composing||(t.connect_key=e.target.value)},t.fieldInput]}}),t.show_connect?o("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_upgrade_to_pro)},on:{click:function(e){return e.preventDefault(),t.startUpgradeToPro(e)}}}):t._e()])])])},s=[],a=o("561c"),r=o("f7fe"),i=o.n(r),c=o("dd62"),l={name:"SettingsInputLicense",props:{label:String},data:function(){return{is_network:this.$mi.network,text_license_row_1:Object(a["d"])(Object(a["a"])("You're using %sMonsterInsights Lite%s - no license needed. Enjoy! %s","google-analytics-for-wordpress"),"<strong>","</strong>",'<span class="monsterinsights-bg-img monsterinsights-smile"></span>'),text_license_row_2:Object(a["d"])(Object(a["a"])("To unlock more features consider %supgrading to PRO%s.","google-analytics-for-wordpress"),'<a href="'+this.$getUpgradeUrl("settings-panel","license")+'" class="monsterinsights-bold" target="_blank">',"</a>"),text_license_row_3:Object(a["d"])(Object(a["a"])("As a valued MonsterInsights Lite user you %sreceive 50%% off%s, automatically applied at checkout!","google-analytics-for-wordpress"),'<span class="monsterinsights-highlighted-text">',"</span>"),text_upgrade_to_pro:Object(a["a"])("Unlock PRO Features Now","google-analytics-for-wordpress"),text_license_placeholder:Object(a["a"])("Paste your license key here","google-analytics-for-wordpress"),text_license_verify:Object(a["a"])("Verify","google-analytics-for-wordpress"),text_license_label:Object(a["d"])(Object(a["a"])("Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %sRetrieve your license key%s.","google-analytics-for-wordpress"),'<a href="'+this.$getUrl("license","settings_panel","https://www.monsterinsights.com/my-account/")+'" target="_blank">',"</a>"),is_loading:!1,show_connect:!1,connect_key:""}},methods:{fieldInput:i()((function(){this.show_connect=""!==this.connect_key}),100),startUpgradeToPro:function(){var t=this;this.$swal({type:"info",title:Object(a["a"])("Please wait...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,customContainerClass:"monsterinsights-swal",onOpen:function(){t.$swal.showLoading()}}),c["a"].getUpgradeLink(this.connect_key).then((function(e){if(e.success&&e.data.url)return window.location=e.data.url;var o=e.data.message?e.data.message:Object(a["a"])("There was an error unlocking MonsterInsights PRO please try again or install manually.","google-analytics-for-wordpress");t.$mi_error_toast({title:Object(a["a"])("Error","google-analytics-for-wordpress"),text:o,toast:!1,position:"center",showConfirmButton:!0,showCloseButton:!1,customClass:!1}).then((function(){e.data.reload&&window.location.reload()}))})).catch((function(){t.$swal.close()}))}}},u=l,p=o("2877"),d=Object(p["a"])(u,n,s,!1,null,null,null);e["a"]=d.exports},4360:function(t,e,o){"use strict";var n=o("2b0e"),s=o("2f62"),a=o("dd62"),r=o("f7fe"),i=o.n(r),c=o("561c"),l=function(t){var e=a["a"].fetchLicense();e.then((function(e){e.network&&t.commit("LICENSE_NETWORK_UPDATED",e.network),e.site&&t.commit("LICENSE_UPDATED",e.site),_(t)})).catch((function(t){console.error(t)}))},u=function(t,e){return a["a"].verifyLicense(e,t)},p=function(t,e){return t.commit("LICENSE_KEY_UPDATED",e),g(e,t)},d=function(t,e){return t.commit("LICENSE_NETWORK_KEY_UPDATED",e),g(e,t,!0)},g=i()(a["a"].verifyLicense,500,{leading:!0}),f=function(t,e){return a["a"].validateLicense(e)},h=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return a["a"].deactivateLicense(t,e)},m=function(t){t.dispatch("$_app/removeNotice","license_expired",{root:!0}),t.dispatch("$_app/removeNotice","license_disabled",{root:!0}),t.dispatch("$_app/removeNotice","license_invalid",{root:!0})},_=function(t){t.state.license.is_expired||t.state.license_network.is_expired?t.dispatch("$_app/addNotice",{id:"license_expired",content:Object(c["d"])(Object(c["a"])("Your license key for MonsterInsights has expired. %sPlease click here to renew your license key.%s","google-analytics-for-wordpress"),'<a target="blank" href="'+n["a"].prototype.$getUrl("admin-notices","expired-license","https://www.monsterinsights.com/login/")+'">',"</a>"),type:"error"},{root:!0}):t.state.license.is_disabled||t.state.license_network.is_disabled?t.dispatch("$_app/addNotice",{id:"license_disabled",content:Object(c["a"])("Your license key for MonsterInsights has been disabled. Please use a different key.","google-analytics-for-wordpress"),type:"error"},{root:!0}):(t.state.license.is_invalid||t.state.license_network.is_invalid)&&t.dispatch("$_app/addNotice",{id:"license_invalid",content:Object(c["a"])("Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key.","google-analytics-for-wordpress"),type:"error"},{root:!0})},y={getLicense:l,updateLicense:p,verifyLicense:u,updateNetworkLicense:d,validateLicense:f,deactivateLicense:h,removeLicenseNotices:m,addLicenseNotices:_},b=function(t){return t.license},v=function(t){return t.license_network},w={license:b,license_network:v},O=function(t,e){t.license=e},k=function(t,e){t.license_network=e},j=function(t,e){t.license.key=e},E=function(t,e){t.license.type=e},P=function(t,e){t.license_network.key=e},T=function(t,e){t.license_network.type=e},C={LICENSE_UPDATED:O,LICENSE_NETWORK_UPDATED:k,LICENSE_KEY_UPDATED:j,LICENSE_TYPE_UPDATED:E,LICENSE_NETWORK_KEY_UPDATED:P,LICENSE_NETWORK_TYPE_UPDATED:T},S={license:{key:"",type:"",is_expired:!1,is_disabled:!1,is_invalid:!0},license_network:{key:"",type:"",is_expired:!1,is_disabled:!1,is_invalid:!0}},x={namespaced:!0,state:S,actions:y,getters:w,mutations:C},$=(o("d3b7"),o("bc3a")),A=o.n($),D=function(){return new Promise((function(t){var e=new FormData;e.append("action","monsterinsights_vue_get_profile"),e.append("nonce",n["a"].prototype.$mi.nonce),A.a.post(n["a"].prototype.$mi.ajax,e).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't load authentication details. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},L=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_maybe_authenticate"),o.append("nonce",n["a"].prototype.$mi.nonce),t&&o.append("isnetwork",!0),A.a.post(n["a"].prototype.$mi.ajax,o).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't authenticate. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},I=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_maybe_reauthenticate"),o.append("nonce",n["a"].prototype.$mi.nonce),t&&o.append("isnetwork",!0),A.a.post(n["a"].prototype.$mi.ajax,o).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't reauthenticate. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},N=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_maybe_verify"),o.append("nonce",n["a"].prototype.$mi.nonce),o.append("isnetwork",t),A.a.post(n["a"].prototype.$mi.ajax,o).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't verify credentials. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},U=function(t,e,o){return new Promise((function(s){var a=new FormData;a.append("action","monsterinsights_maybe_delete"),a.append("nonce",n["a"].prototype.$mi.nonce),a.append("isnetwork",e),o&&a.append("forcedelete",!0),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(o){o.data.success&&t.commit("AUTH_DELETED",e),s(o.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't deauthenticate. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},R=function(t,e,o){return new Promise((function(s){var a=new FormData;a.append("action","monsterinsights_update_manual_ua"),a.append("manual_ua_code",e),a.append("nonce",n["a"].prototype.$mi.nonce),o&&a.append("isnetwork",o),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(n){t.commit("MANUAL_UA_UPDATE",e,o),s(n.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't save settings. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Settings not saved.","google-analytics-for-wordpress")})}))}))},M={fetchAuth:D,getAuthRedirect:L,getReAuthRedirect:I,verifyAuth:N,deleteAuth:U,updateManualUa:R},B=function(t){var e=M.fetchAuth();e.then((function(e){e&&t.commit("AUTH_UPDATED",e)})).catch((function(t){console.error(t)}))},Y=function(t,e){return M.getAuthRedirect(e)},F=function(t,e){return M.getReAuthRedirect(e)},H=function(t,e){return M.verifyAuth(e)},K=function(t,e){return M.deleteAuth(t,e.network,e.force)},W=function(t,e){return M.updateManualUa(t,e.ua,e.network)},V={getAuth:B,doAuth:Y,doReAuth:F,verifyAuth:H,deleteAuth:K,updateManualUa:W},G=function(t){return t.auth},q={auth:G},z=function(t,e){t.auth=e},J=function(t,e){e?(t.auth.network_manual_ua=t.auth.network_ua,t.auth.network_ua=!1,t.auth.network_viewname=!1):(t.auth.manual_ua=t.auth.ua,t.auth.ua=!1,t.auth.viewname=!1)},Q=function(t,e,o){o?t.auth.network_manual_ua=e:t.auth.manual_ua=e},X={AUTH_UPDATED:z,AUTH_DELETED:J,MANUAL_UA_UPDATE:Q},Z={auth:{ua:"",viewname:"",network_ua:"",network_viewname:""}},tt={namespaced:!0,state:Z,actions:V,getters:q,mutations:X},et=(o("c975"),function(){return new Promise((function(t){var e=new FormData;e.append("action","monsterinsights_vue_get_addons"),e.append("network",n["a"].prototype.$mi.network),e.append("nonce",n["a"].prototype.$mi.nonce),A.a.post(n["a"].prototype.$mi.ajax,e).then((function(e){t(e.data)}))}))}),ot=function(t,e){return new Promise((function(o,s){var a=new FormData;a.append("action","monsterinsights_install_addon"),a.append("nonce",n["a"].prototype.$mi.install_nonce),a.append("plugin",e.url),t.rootState.$_app.ftp_form.hostname&&a.append("hostname",t.rootState.$_app.ftp_form.hostname),t.rootState.$_app.ftp_form.username&&a.append("username",t.rootState.$_app.ftp_form.username),t.rootState.$_app.ftp_form.password&&a.append("password",t.rootState.$_app.ftp_form.password),t.rootState.$_app.ftp_form.connection_type&&a.append("connection_type",t.rootState.$_app.ftp_form.connection_type),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(s){s.data.form?t.commit("$_app/SHOW_FTP_FORM",{action:"$_addons/installAddon",data:e},{root:!0}):s.data.error?n["a"].prototype.$mi_error_toast({title:s.data.error}):(t.commit("ADDON_INSTALLED",{slug:e.slug,basename:s.data.plugin}),st(t,e)),o(s.data)})).catch((function(t){if(s(t),t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install addon. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not installed.","google-analytics-for-wordpress")})}))}))},nt=function(t){return new Promise((function(e,o){var s=new FormData,a=n["a"].prototype.$addQueryArg(n["a"].prototype.$mi.ajax,"page","monsterinsights-onboarding");s.append("action","monsterinsights_onboarding_wpforms_install"),s.append("nonce",n["a"].prototype.$mi.install_nonce),A.a.post(a,s).then((function(o){o.data.error?n["a"].prototype.$mi_error_toast({title:o.data.error}):t.commit("ADDON_INSTALLED",{slug:"wpforms",basename:""}),e(o.data)})).catch((function(t){if(o(t),t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install WPForms. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. WPForms not installed.","google-analytics-for-wordpress")})}))}))},st=function(t,e){return new Promise((function(o,s){var a=new FormData;a.append("action","monsterinsights_activate_addon"),a.append("nonce",n["a"].prototype.$mi.activate_nonce),a.append("isnetwork",n["a"].prototype.$mi.network),a.append("plugin",e.basename),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(n){n.data.error||t.commit("ADDON_ACTIVATED",e.slug),o(n.data)})).catch((function(t){if(s(t),t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't activate addon. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not activated.","google-analytics-for-wordpress")})}))}))},at=function(t,e){return new Promise((function(o,s){var a=new FormData;a.append("action","monsterinsights_deactivate_addon"),a.append("nonce",n["a"].prototype.$mi.deactivate_nonce),a.append("isnetwork",n["a"].prototype.$mi.network),a.append("plugin",e.basename),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(n){n.data.error||t.commit("ADDON_DEACTIVATED",e.slug),o(n.data)})).catch((function(t){if(s(t),t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't deactivate addon. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not deactivated.","google-analytics-for-wordpress")})}))}))},rt=function(t,e){return new Promise((function(o,s){var a=new FormData;a.append("action","monsterinsights_vue_install_plugin"),a.append("slug",e),a.append("nonce",n["a"].prototype.$mi.nonce),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(s){s.data.error?n["a"].prototype.$mi_error_toast({title:s.data.error}):t.commit("ADDON_INSTALLED",{slug:e,basename:""}),o(s.data)})).catch((function(t){if(s(t),t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install plugin. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Plugin not installed.","google-analytics-for-wordpress")})}))}))},it={fetchAddons:et,installAddon:ot,activateAddon:st,deactivateAddon:at,installWPForms:nt,installPlugin:rt},ct=function(t){return new Promise((function(e){var o=it.fetchAddons();o.then((function(o){o&&(t.commit("ADDONS_UPDATED",o),lt(t)),e(!0)})).catch((function(t){console.error(t),e(!1)}))}))},lt=function(t){if(t.dispatch("$_app/removeNotice","google_amp_addon",{root:!0}),t.dispatch("$_app/removeNotice","instant_articles_addon",{root:!0}),ut(t,"amp")&&!ut(t,"google_amp")){var e=t.rootGetters["$_app/mi"].install_amp_url,o=e.indexOf("activate")>0?Object(c["a"])("Activate","google-analytics-for-wordpress"):Object(c["a"])("Install","google-analytics-for-wordpress"),s=Object(c["d"])(Object(c["a"])("In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %sLearn More%s","google-analytics-for-wordpress"),'<a target="_blank" href="'+n["a"].prototype.$getUrl("settings-panel","amp-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-google-amp-addon/")+'">',"</a>");n["a"].prototype.$mi.install_plugins&&(s=Object(c["d"])(Object(c["a"])("In order for the MonsterInsights Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %s%s Plugin%s | %sLearn More%s","google-analytics-for-wordpress"),'<a href="'+e+'">',o,"</a>",'<a target="_blank" href="'+n["a"].prototype.$getUrl("settings-panel","amp-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-google-amp-addon/")+'">',"</a>")),t.dispatch("$_app/addNotice",{id:"google_amp_addon",content:s,type:"error"},{root:!0})}if(ut(t,"facebook-instant-articles")&&!ut(t,"instant_articles")){var a=t.rootGetters["$_app/mi"].install_fbia_url,r=a.indexOf("activate")>0?Object(c["a"])("Activate","google-analytics-for-wordpress"):Object(c["a"])("Install","google-analytics-for-wordpress"),i=Object(c["d"])(Object(c["a"])("In order for the MonsterInsights Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %sLearn More%s","google-analytics-for-wordpress"),'<a target="_blank" href="'+n["a"].prototype.$getUrl("settings-panel","fbia-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-facebook-instant-articles-addon/")+'">',"</a>");n["a"].prototype.$mi.install_plugins&&(i=Object(c["d"])(Object(c["a"])("In order for the MonsterInsights Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %s%s Plugin%s | %sLearn More%s","google-analytics-for-wordpress"),'<a href="'+a+'">',r,"</a>",'<a target="_blank" href="'+n["a"].prototype.$getUrl("settings-panel","fbia-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-facebook-instant-articles-addon/")+'">',"</a>")),t.dispatch("$_app/addNotice",{id:"instant_articles_addon",content:i,type:"error"},{root:!0})}},ut=function(t,e){return!!t.state.addons[e]&&t.state.addons[e].active},pt=function(t,e){return it.installAddon(t,e)},dt=function(t,e){return it.installPlugin(t,e.slug)},gt=function(t,e){return it.activateAddon(t,e).then((function(){lt(t)}))},ft=function(t,e){return it.deactivateAddon(t,e).then((function(){lt(t)}))},ht=function(t){return it.installWPForms(t)},mt={getAddons:ct,installAddon:pt,activateAddon:gt,deactivateAddon:ft,installWPForms:ht,installPlugin:dt},_t=(o("4e82"),o("ac1f"),o("841c"),function(t){return t.addons}),yt=function(t){return t.sort},bt=function(t){return t.search},vt={addons:_t,sort:yt,search:bt},wt=function(t,e){t.addons=e},Ot=function(t,e){t.addons[e].active=!0},kt=function(t,e){t.addons[e].active=!1},jt=function(t,e){t.addons[e.slug].installed=!0,t.addons[e.slug].basename=e.basename},Et=function(t,e){t.sort=e},Pt=function(t,e){t.search=e},Tt={ADDONS_UPDATED:wt,ADDON_ACTIVATED:Ot,ADDON_DEACTIVATED:kt,ADDON_INSTALLED:jt,UPDATE_SORT:Et,UPDATE_SEARCH:Pt},Ct={addons:{},search:""},St={namespaced:!0,state:Ct,actions:mt,getters:vt,mutations:Tt},xt=function(t){t.commit("INIT")},$t=function(t){t.commit("BLOCK_APP")},At=function(t){t.commit("UNBLOCK_APP")},Dt=function(t,e){t.commit("ADD_NOTICE",e)},Lt=function(t,e){t.commit("REMOVE_NOTICE",e)},It=function(t){t.commit("RESET_NOTICES")},Nt={init:xt,block:$t,unblock:At,addNotice:Dt,removeNotice:Lt,resetNotices:It},Ut=function(t){return t.blocked},Rt=function(t){return t.notices},Mt=function(t){return t.mi},Bt=function(t){return t.ftp_form},Yt={blocked:Ut,notices:Rt,mi:Mt,ftp_form:Bt},Ft=function(){},Ht=function(t){t.blocked=!0},Kt=function(t){t.blocked=!1},Wt=function(t,e){e.id&&n["a"].set(t.notices,e.id,e)},Vt=function(t,e){t.notices[e]&&n["a"].delete(t.notices,e)},Gt=function(t){t.notices={}},qt=function(t,e){t.ftp_form.hostname=e},zt=function(t,e){t.ftp_form.username=e},Jt=function(t,e){t.ftp_form.password=e},Qt=function(t,e){t.ftp_form.connection_type=e},Xt=function(t,e){t.ftp_form.visible=!0,t.ftp_form.action=e.action,t.ftp_form.data=e.data},Zt=function(t){t.ftp_form.visible=!1},te={INIT:Ft,BLOCK_APP:Ht,UNBLOCK_APP:Kt,ADD_NOTICE:Wt,REMOVE_NOTICE:Vt,RESET_NOTICES:Gt,UPDATE_HOSTNAME:qt,UPDATE_USERNAME:zt,UPDATE_PASSWORD:Jt,UPDATE_CONNECTION_TYPE:Qt,SHOW_FTP_FORM:Xt,HIDE_FTP_FORM:Zt},ee={blocked:!1,notices:{},mi:window.monsterinsights?window.monsterinsights:{},ftp_form:{hostname:"",username:"",password:"",connection_type:"ftp",visible:!1,action:"",data:{}}},oe={namespaced:!0,state:ee,actions:Nt,getters:Yt,mutations:te},ne=function(t){t.subscribe((function(e,o){if("$_app/INIT"===e.type){var n=o["$_app"].mi.versions;n.php_version_below_54?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! PHP Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%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 %s) only takes a few minutes and will make your website significantly faster and more secure.","google-analytics-for-wordpress"),n.php_version,"7.3"),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating PHP","google-analytics-for-wordpress"),link:n.php_update_link},dismissable:!0,id:"php_update_54"}):n.wp_version_below_46?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! WordPress Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.","google-analytics-for-wordpress"),n.php_version,n.php_min_version),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating WordPress","google-analytics-for-wordpress"),link:n.wp_update_link},dismissable:!0,id:"wp_update_46"}):n.php_version_below_56?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! PHP Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%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 %s) only takes a few minutes and will make your website significantly faster and more secure.","google-analytics-for-wordpress"),n.php_version,"7.3"),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating PHP","google-analytics-for-wordpress"),link:n.php_update_link},dismissable:!0,id:"php_update_56"}):n.wp_version_below_49&&t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! WordPress Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.","google-analytics-for-wordpress"),n.php_version,n.php_min_version),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating WordPress","google-analytics-for-wordpress"),link:n.wp_update_link},dismissable:!0,id:"wp_update_49"})}}))},se=ne;n["a"].use(s["a"]);var ae=[se];e["a"]=new s["a"].Store({modules:{$_app:oe,$_license:x,$_auth:tt,$_addons:St},plugins:ae})},"48c7":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return t.noauth?t._e():o("div",{staticClass:"monsterinsights-upsell-overlay"},[o("div",{staticClass:"monsterinsights-upsell-top"},[t.upsellData.title?o("h3",{domProps:{textContent:t._s(t.upsellData.title)}}):t._e(),t.upsellData.subtitle?o("p",{staticClass:"monsterinsights-upsell-subtitle",domProps:{textContent:t._s(t.upsellData.subtitle)}}):t._e()]),o("div",{staticClass:"monsterinsights-upsell-content"},[t.upsellData.features?o("ul",t._l(t.upsellData.features,(function(e,n){return o("li",{key:n,domProps:{textContent:t._s(e)}})})),0):t._e(),o("div",{staticClass:"monsterinsights-center"},[o("a",{staticClass:"monsterinsights-button",attrs:{href:t.upgrade_link,target:"_blank"},domProps:{textContent:t._s(t.text_upsell_button)}})])])])},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("2fa7")),r=o("2f62"),i=o("561c");function c(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function l(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?c(o,!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):c(o).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var u={name:"ReportUpsellOverlay",props:{report:String},data:function(){return{upgrade_link:this.$getUpgradeUrl("report",this.report),text_upsell_button:Object(i["a"])("Upgrade to MonsterInsights Pro","google-analytics-for-wordpress")}},computed:l({},Object(r["b"])({noauth:"$_reports/noauth"}),{upsellData:function(){return this.$mi_get_upsell_content(this.report)}})},p=u,d=o("2877"),g=Object(d["a"])(p,n,s,!1,null,null,null);e["a"]=g.exports},"4bdc":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-navigation-bar"},[o("div",{staticClass:"monsterinsights-container"},[t._t("default")],2)])},s=[],a={name:"TheAppNavigation"},r=a,i=o("2877"),c=Object(i["a"])(r,n,s,!1,null,null,null);e["a"]=c.exports},5443:function(t,e,o){"use strict";var n=o("0f8f"),s=o.n(n);s.a},"5eda":function(t,e,o){},"6d70":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("fieldset",[o("div",{staticClass:"monsterinsights-settings-input-radio"},t._l(t.options,(function(e){return o("label",{key:e.value,attrs:{for:"monsterinsights-settings-radio-"+t.name+"["+e.value+"]"}},[o("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.labelClass(e.value)}),o("input",{attrs:{id:"monsterinsights-settings-radio-"+t.name+"["+e.value+"]",type:"radio",name:t.name,autocomplete:"off",readonly:t.disabled},domProps:{value:e.value,checked:t.isChecked(e.value)},on:{change:t.updateSetting}}),o("span",{domProps:{innerHTML:t._s(e.label)}})])})),0)])},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("b0c0"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("2fa7")),r=o("2f62");function i(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function c(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?i(o,!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):i(o).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var l={name:"SettingsInputRadio",props:{options:Array,name:String,auth_disabled:{type:Boolean,default:!0}},data:function(){return{is_loading:!1,has_error:!1}},computed:c({},Object(r["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},tooltip_data:function(){return{content:this.disabled?this.$mi_need_to_auth:"",autoHide:!1,trigger:"hover focus click"}},disabled:function(){return!!this.auth_disabled&&!this.has_ua}}),methods:{updateSetting:function(t){var e=this;if(this.disabled)return!1;this.$mi_saving_toast({}),this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:t.target.value}).then((function(t){t.success?e.$mi_success_toast({}):e.$mi_error_toast({})}))},labelClass:function(t){var e="monsterinsights-styled-radio";return this.isChecked(t)&&(e+=" monsterinsights-styled-radio-checked"),e},isChecked:function(t){return this.settings[this.name]?t===this.settings[this.name]:t===this.options[0].value}}},u=l,p=o("2877"),d=Object(p["a"])(u,n,s,!1,null,null,null);e["a"]=d.exports},"6ffa":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-settings-input-repeater"},[t.rows.length?o("div",{staticClass:"monsterinsights-settings-input-repeater-labels monsterinsights-settings-input-repeater-row"},t._l(t.structure,(function(e,n){return o("label",{key:n,domProps:{textContent:t._s(e.label)}})})),0):t._e(),t._l(t.rows,(function(e,n){return[o("div",{key:n,staticClass:"monsterinsights-settings-input-repeater-row"},[t._l(t.structure,(function(e,s){return[o("input",{directives:[{name:"model",rawName:"v-model",value:t.rows[n][e.name],expression:"rows[index][input.name]"}],key:s,attrs:{type:"text",readonly:t.disabled},domProps:{value:t.rows[n][e.name]},on:{change:function(o){return t.updateSetting(!1,e.pattern)},input:function(o){o.target.composing||t.$set(t.rows[n],e.name,o.target.value)}}})]})),o("button",{attrs:{title:t.text_remove_row},on:{click:function(e){return e.preventDefault(),t.removeRow(n)}}},[o("i",{staticClass:"monstericon-times-circle"})])],2),t.has_errors[n]?o("label",{key:n+"error",staticClass:"monsterinsights-error"},[o("i",{staticClass:"monstericon-warning-triangle"}),o("span",{domProps:{innerHTML:t._s(t.has_errors[n])}})]):t._e()]})),o("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.button_class,domProps:{textContent:t._s(t.text_add_path)},on:{click:function(e){return e.preventDefault(),t.addRow(e)}}})],2)},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("c975"),o("a434"),o("b0c0"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("2fa7")),r=o("2b0e"),i=o("561c"),c=o("2f62");function l(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function u(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?l(o,!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):l(o).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var p={name:"SettingsInputRepeater",props:{structure:Array,name:String,text_add:String},data:function(){return{text_add_path:this.text_add?this.text_add:Object(i["a"])("Add Another Link Path","google-analytics-for-wordpress"),text_remove_row:Object(i["a"])("Remove row","google-analytics-for-wordpress"),has_errors:[]}},computed:u({},Object(c["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{rows:{get:function(){return this.settings[this.name]||r["a"].set(this.settings,this.name,[]),JSON.parse(JSON.stringify(this.settings[this.name]))},set:function(){this.updateSetting(!1)}},has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},disabled:function(){return!this.has_ua},tooltip_data:function(){return{content:this.has_ua?"":this.$mi_need_to_auth,autoHide:!1,trigger:"hover focus click"}},button_class:function(){var t="monsterinsights-button";return this.disabled&&(t+=" monsterinsights-button-disabled"),t}}),methods:{updateSetting:function(t){var e=this;return!this.disabled&&(!(!t&&!this.validateSettings())&&(this.$mi_saving_toast({}),void this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:this.rows}).then((function(t){t.success?e.$mi_success_toast({}):e.$mi_error_toast({})}))))},addRow:function(){var t={};for(var e in this.structure)t[this.structure[e]["name"]]="";this.rows.push(t),this.updateSetting(!0)},removeRow:function(t){this.rows&&this.rows instanceof Array?this.rows.splice(t,1):this.rows="",this.updateSetting()},validateSettings:function(){var t=this;this.has_errors=[];var e={};for(var o in this.rows)for(var n in this.structure){if(""===this.rows[o][this.structure[n]["name"]]){this.has_errors[o]=Object(i["d"])(Object(i["a"])("%s can't be empty.","google-analytics-for-wordpress"),"<strong>"+this.structure[n]["label"]+"</strong>");break}if(this.structure[n]["pattern"]){var s=this.structure[n]["pattern"].test(this.rows[o][this.structure[n]["name"]]);if(!1===s){this.has_errors[o]=this.structure[n]["error"];break}}this.structure[n]["prevent_duplicates"]&&function(){"undefined"===typeof e[t.structure[n]["name"]]&&(e[t.structure[n]["name"]]=[]),e[t.structure[n]["name"]].push(t.rows[o][t.structure[n]["name"]]);var s=e[t.structure[n]["name"]],a=function(){return s.filter((function(t,e){return s.indexOf(t)===e}))};s.length!==a(s).length&&(t.has_errors[o]=Object(i["a"])("Duplicate values are not allowed.","google-analytics-for-wordpress"))}()}return 0===this.has_errors.length}}},d=p,g=o("2877"),f=Object(g["a"])(d,n,s,!1,null,null,null);e["a"]=f.exports},7220:function(t,e,o){"use strict";o("4795"),o("b0c0"),o("d3b7");var n=o("bc3a"),s=o.n(n),a=o("2b0e"),r=o("561c"),i=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_vue_get_settings"),o.append("nonce",a["a"].prototype.$mi.nonce),s.a.post(a["a"].prototype.$mi.ajax,o).then((function(t){a["a"].prototype.$swal.close(),e(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var o=e.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't load settings. Error: %s, %s","google-analytics-for-wordpress"),o.status,o.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},c=function(t,e){return new Promise((function(t){var o=new FormData;o.append("action","monsterinsights_vue_update_settings"),o.append("nonce",a["a"].prototype.$mi.nonce),o.append("setting",e.name),!1!==e.value&&(Array===e.value.constructor?o.append("value",JSON.stringify(e.value)):o.append("value",e.value)),s.a.post(a["a"].prototype.$mi.ajax,o).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't save settings. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("Network error encountered. Settings not saved.","google-analytics-for-wordpress")})}))}))},l={fetchSettings:i,saveSettings:c},u=function(t){l.fetchSettings(t).then((function(e){t.commit("SETTINGS_UPDATED",e)})).catch((function(t){console.error(t)}))},p=function(t,e){t.commit("SETTING_UPDATE",e),t.commit("SETTINGS_SAVE_START");var o=l.saveSettings(t,e);return o.then((function(){t.commit("SETTINGS_SAVE_END")})),o},d=function(t,e){t.commit("SETTING_UPDATE_UNDO",e),t.commit("SETTINGS_SAVE_START");var o=l.saveSettings(t,e);return o.then((function(){t.commit("SETTINGS_SAVE_END")})),o},g=function(t,e){t.commit("SETTING_UPDATE_REDO",e),t.commit("SETTINGS_SAVE_START");var o=l.saveSettings(t,e);return o.then((function(){t.commit("SETTINGS_SAVE_END")})),o},f=function(t){t.commit("SETTINGS_SAVE_START"),a["a"].prototype.$mi_saving_toast({}),setTimeout((function(){t.commit("SETTINGS_SAVE_END"),a["a"].prototype.$mi_success_toast({})}),1e3)},h=function(t){t.dispatch("updateSettingsUndo",t.state.history[t.state.historyIndex-1])},m=function(t){t.dispatch("updateSettingsRedo",t.state.history[t.state.historyIndex+1])},_={getSettings:u,updateSettings:p,simulateSave:f,undo:h,redo:m,updateSettingsUndo:d,updateSettingsRedo:g},y=function(t){return t.settings},b=function(t){return t.history},v=function(t){return t.historyIndex},w={settings:y,history:b,historyIndex:v},O=(o("a434"),function(t,e){e.is_saving=!1,t.settings=e}),k=function(t,e){t.settings.is_saving=!0,t.history[t.historyIndex]&&t.history[t.historyIndex].name===e.name||(t.history.push({name:e.name,value:!!t.settings[e.name]&&t.settings[e.name]}),t.historyIndex++),t.historyIndex<t.history.length-1&&t.history.splice(t.historyIndex+1),t.history.push({name:e.name,value:e.value}),t.historyIndex++,a["a"].set(t.settings,e.name,e.value)},j=function(t,e){t.settings.is_saving=!0,t.historyIndex--,a["a"].set(t.settings,e.name,e.value)},E=function(t,e){t.settings.is_saving=!0,t.historyIndex++,a["a"].set(t.settings,e.name,e.value)},P=function(t){t.settings.is_saving=!0},T=function(t){t.settings.is_saving=!1},C={SETTINGS_UPDATED:O,SETTING_UPDATE:k,SETTINGS_SAVE_START:P,SETTINGS_SAVE_END:T,SETTING_UPDATE_UNDO:j,SETTING_UPDATE_REDO:E},S={settings:{automatic_updates:"all"},history:[],historyIndex:-1};e["a"]={namespaced:!0,state:S,actions:_,getters:w,mutations:C}},7460:function(t,e,o){"use strict";o("c975"),o("4d63"),o("ac1f"),o("25f0"),o("466d"),o("5319");var n=o("2b0e"),s={install:function(t){window.monsterinsights&&(t.prototype.$mi=window.monsterinsights),t.prototype.$isPro=i,t.prototype.$addQueryArg=c,t.prototype.$getUrl=r,t.prototype.$getUpgradeUrl=a}};function a(t,e,o){var n=r(t,e,o);return i()?n:"0"!==window.monsterinsights.shareasale_id?c(window.monsterinsights.shareasale_url,"urllink",n):n}function r(t,e,o){var s=i()?"proplugin":"liteplugin",a=i()?"my-account/":"lite/",r=n["a"].prototype.$mi.plugin_version;return t=t||"defaultmedium",e=e||"defaultcampaign",o=o||"https://www.monsterinsights.com/"+a,o=c(o,"utm_source",s),o=c(o,"utm_medium",t),o=c(o,"utm_campaign",e),o=c(o,"utm_content",r),o}function i(){return!1}function c(t,e,o){var n=new RegExp("([?&])"+e+"=.*?(&|#|$)","i");if(t.match(n))return t.replace(n,"$1"+e+"="+o+"$2");var s="";-1!==t.indexOf("#")&&(s=t.replace(/.*#/,"#"),t=t.replace(/#.*/,""));var a=-1!==t.indexOf("?")?"&":"?";return t+a+e+"="+o+s}e["a"]=s},"79b7":function(t,e,o){"use strict";var n=o("f6bd"),s=o.n(n);s.a},"8c1c":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-not-authenticated-notice"},[o("h3",{domProps:{textContent:t._s(t.text_no_auth)}}),o("p",{domProps:{textContent:t._s(t.text_auth_label)}}),o("p",[o("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_button_reconnect)},on:{click:t.doReAuth}})])])},s=[],a=o("561c"),r={name:"ReportReAuth",data:function(){return{text_no_auth:Object(a["a"])("MonsterInsights encountered an error loading your report data","google-analytics-for-wordpress"),text_auth_label:Object(a["a"])("There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.","google-analytics-for-wordpress"),text_button_reconnect:Object(a["a"])("Reconnect MonsterInsights","google-analytics-for-wordpress")}},methods:{doReAuth:function(t){t.preventDefault();var e=this;this.$swal({type:"info",title:Object(a["a"])("Re-Authenticating","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading()}}),this.$store.dispatch("$_auth/doReAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(a["a"])("Error","google-analytics-for-wordpress"),text:t.data.message,confirmButtonText:Object(a["a"])("Ok","google-analytics-for-wordpress")})}))}}},i=r,c=o("2877"),l=Object(c["a"])(i,n,s,!1,null,null,null);e["a"]=l.exports},"8c50":function(t,e,o){},"93ec":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],staticClass:"monsterinsights-info",attrs:{tabindex:"0"}},[o("i",{staticClass:"monstericon monstericon-info-circle-regular"})])},s=[],a={name:"SettingsInfoTooltip",props:{content:String},data:function(){return{tooltip_data:{content:this.content,autoHide:!1,trigger:"hover focus click"}}}},r=a,i=o("2877"),c=Object(i["a"])(r,n,s,!1,null,null,null);e["a"]=c.exports},"9d59":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-notices-area"},[o("div",{staticClass:"monsterinsights-container"},[o("slide-down-up",{attrs:{group:!0}},t._l(t.notices,(function(e,n){return o("div",{key:n,class:t.getNoticeClass(e.type)},[o("div",{staticClass:"monsterinsights-notice-inner"},[e.dismissable?o("button",{staticClass:"dismiss-notice",on:{click:function(e){return t.removeNotice(n)}}},[o("i",{staticClass:"monstericon-times"})]):t._e(),o("div",{staticClass:"notice-content"},[e.title?o("h2",{staticClass:"notice-title",domProps:{innerHTML:t._s(e.title)}}):t._e(),o("span",{domProps:{innerHTML:t._s(e.content)}}),e.button&&e.button.enabled?o("div",{staticClass:"monsterinsights-notice-button"},[o("a",{class:t.buttonClass(e.type),attrs:{target:"_blank",href:e.button.link},domProps:{textContent:t._s(e.button.text)}})]):t._e()])])])})),0)],1)])},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("2fa7")),r=o("2f62"),i=o("d98d");function c(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function l(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?c(o,!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):c(o).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var u={name:"TheAppNotices",components:{SlideDownUp:i["a"]},computed:l({},Object(r["b"])({notices:"$_app/notices"})),methods:{removeNotice:function(t){this.$store.dispatch("$_app/removeNotice",t)},getNoticeClass:function(t){return"monsterinsights-notice monsterinsights-notice-"+t},buttonClass:function(t){var e="monsterinsights-button";return"success"===t&&(e+=" monsterinsights-button-green"),e}}},p=u,d=o("2877"),g=Object(d["a"])(p,n,s,!1,null,null,null);e["a"]=g.exports},"9df6":function(t,e,o){"use strict";var n=o("8c50"),s=o.n(n);s.a},a158:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("header",{staticClass:"monsterinsights-header"},[o("the-floating-bar"),o("div",{staticClass:"monsterinsights-container"},[o("div",{staticClass:"monsterinsights-logo-area"},[o("img",{attrs:{src:t.logo,srcset:t.logo2x}})]),o("div",{staticClass:"float-right"},[t._t("default")],2)])],1)},s=[],a=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("transition",{attrs:{name:"monsterinsights-slide"}},[t.showBar?o("div",{staticClass:"monsterinsights-floating-bar"},[o("span",{domProps:{innerHTML:t._s(t.barText)}}),o("button",{staticClass:"monsterinsights-floating-bar-close",on:{click:t.hideBar}},[o("span",{staticClass:"monstericon-times"})])]):t._e()])},r=[],i=(o("4795"),o("c8cf"),o("561c")),c=o("bc3a"),l=o.n(c),u={name:"TheFloatingBar",data:function(){return{showBar:!1,barLink:this.$getUpgradeUrl("floatbar","upgrade")}},computed:{barText:function(){return Object(i["d"])(Object(i["a"])("You’re using MonsterInsights Lite. To unlock more features consider %supgrading to Pro%s.","google-analytics-for-wordpress"),'<a href="'+this.barLink+'" target="_blank">',"</a>")}},methods:{hideBar:function(){this.showBar=!1;var t=new FormData;t.append("action","monsterinsights_hide_floatbar"),t.append("nonce",this.$mi.nonce),l.a.post(this.$mi.ajax,t)},getBarStatus:function(){var t=this,e=new FormData;e.append("action","monsterinsights_get_floatbar"),e.append("nonce",this.$mi.nonce),l.a.post(this.$mi.ajax,e).then((function(e){t.showBar=e.data.show})).catch((function(){t.showBar=!1}))}},mounted:function(){var t=this;setTimeout((function(){t.getBarStatus()}),1500)}},p=u,d=o("2877"),g=Object(d["a"])(p,a,r,!1,null,null,null),f=g.exports,h={name:"TheAppHeader",components:{TheFloatingBar:f},data:function(){return{logo:this.$mi.assets+"/img/logo.png",logo2x:this.$mi.assets+"/img/logo@2x.png 2x"}}},m=h,_=(o("9df6"),Object(d["a"])(m,n,s,!1,null,"7a774924",null));e["a"]=_.exports},a4cc:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-welcome-overlay",on:{click:t.maybeClose}},[o("div",{staticClass:"monsterinsights-welcome-overlay-inner"},[o("button",{staticClass:"monsterinsights-overlay-close",on:{click:t.close}},[o("span",{staticClass:"monstericon-times"})]),o("div",{staticClass:"monsterinsights-welcome-overlay-content"},[t._t("default")],2)])])},s=[],a={name:"WelcomeOverlay",props:{id:String},methods:{close:function(){this.$emit("close",this.id)},maybeClose:function(t){t.target.classList.contains("monsterinsights-welcome-overlay")&&this.close()}}},r=a,i=o("2877"),c=Object(i["a"])(r,n,s,!1,null,null,null);e["a"]=c.exports},aa9f:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-settings-input-select"},[o("label",{attrs:{for:t.id}},[o("span",{staticClass:"monsterinsights-dark",domProps:{innerHTML:t._s(t.label)}}),t.description?o("span",{domProps:{innerHTML:t._s(t.description)}}):t._e(),t.tooltip?o("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e()],1),o("div",{staticClass:"monsterinsights-settings-input-select-input"},[o("multiselect",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.disabled_tooltip,expression:"disabled_tooltip"}],attrs:{options:t.options,multiple:t.multiple,"track-by":"value",label:"label",searchable:!1,selectLabel:"",selectedLabel:"",deselectLabel:"",readonly:t.disabled},on:{input:t.updateSetting},scopedSlots:t._u([{key:"tag",fn:function(e){var n=e.option,s=(e.search,e.remove);return[o("span",{class:t.tagClass(n)},[o("span",{domProps:{textContent:t._s(n.label)}}),o("i",{staticClass:"multiselect__tag-icon",attrs:{"aria-hidden":"true",tabindex:"0"},on:{keypress:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:(e.preventDefault(),s(n))},mousedown:function(t){return t.preventDefault(),s(n)}}})])]}}]),model:{value:t.selected,callback:function(e){t.selected=e},expression:"selected"}})],1)])},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("c975"),o("b0c0"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("2fa7")),r=o("561c"),i=o("2f62"),c=o("8e5f"),l=o.n(c),u=o("93ec");function p(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function d(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?p(o,!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):p(o).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var g={name:"SettingsInputSelect",components:{SettingsInfoTooltip:u["a"],Multiselect:l.a},props:{options:Array,forced:{type:Array,default:function(){return[]}},name:String,label:String,description:String,multiple:{type:Boolean,default:!1},tooltip:String,disabled:{type:Boolean,default:!1}},data:function(){return{is_loading:!1,has_error:!1,id:"input-"+this.name,text_no_options:Object(r["a"])("No options available","google-analytics-for-wordpress")}},computed:d({},Object(i["b"])({settings:"$_settings/settings"}),{selected:{get:function(){var t=JSON.parse(JSON.stringify(this.forced));if(this.settings[this.name])for(var e in this.options)this.settings[this.name].indexOf(this.options[e].value)>=0&&this.notForced(this.options[e])&&t.push(this.options[e]);return t},set:function(){}},disabled_tooltip:function(){return{content:this.disabled?this.$mi_need_to_auth:"",autoHide:!1,trigger:"hover focus click"}}}),methods:{updateSetting:function(t){var e=this;if(this.disabled)return!1;this.$mi_saving_toast({});var o=[];for(var n in t)o.push(t[n].value);this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:o}).then((function(t){t.success?e.$mi_success_toast({}):e.$mi_error_toast({})}))},notForced:function(t){for(var e in this.forced)if(this.forced[e].value===t.value)return!1;return!0},tagClass:function(t){var e="multiselect__tag";return this.notForced(t)||(e+=" monsterinsights-tag-forced"),e}}},f=g,h=(o("ed71"),o("2877")),m=Object(h["a"])(f,n,s,!1,null,"f66259b4",null);e["a"]=m.exports},ac39:function(t,e,o){},b333:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-settings-network-notice"},[t._m(0),o("div",{staticClass:"monsterinsights-network-message"},[t._t("default")],2)])},s=[function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",[o("div",{staticClass:"monsterinsights-bg-img monsterinsights-icon-warning"})])}],a={name:"SettingsNetworkNotice"},r=a,i=(o("5443"),o("2877")),c=Object(i["a"])(r,n,s,!1,null,"a9c27d52",null);e["a"]=c.exports},b52e:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{class:t.boxClass},[o("button",{staticClass:"monsterinsights-quick-links-label",on:{click:function(e){e.stopPropagation(),t.showMenu=!t.showMenu}}},[o("span",{staticClass:"monsterinsights-bg-img monsterinsights-quick-links-mascot"}),o("span",{staticClass:"monsterinsights-quick-link-title",domProps:{textContent:t._s(t.text_see_quick)}})]),o("transition-group",{staticClass:"monsterinsights-quick-links-menu",attrs:{tag:"div",name:"monsterinsights-staggered-fade"},on:{enter:t.enter,leave:t.leave}},[t.showMenu?t._l(t.menuItems,(function(e,n){return o("a",{key:e.key,staticClass:"monsterinsights-quick-links-menu-item",attrs:{href:e.link,"data-index":n,target:"_blank"}},[o("span",{class:e.icon}),o("span",{staticClass:"monsterinsights-quick-link-title",domProps:{innerHTML:t._s(e.tooltip)}})])})):t._e()],2)],1)},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("4795"),o("2fa7")),r=(o("ac39"),o("561c")),i=o("2f62");function c(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function l(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?c(o,!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):c(o).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var u={name:"TheQuickLinks",data:function(){return{showMenu:!1,text_see_quick:Object(r["a"])("See Quick Links","google-analytics-for-wordpress")}},computed:l({},Object(i["b"])({license:"$_license/license",license_network:"$_license/license_network"}),{boxClass:function(){var t="monsterinsights-quick-links";return this.showMenu&&(t+=" monsterinsights-quick-links-open"),t},licenseLevel:function(){return this.$mi.network?this.license_network.type:this.license.type},showUpsell:function(){return"plus"===this.licenseLevel||"basic"===this.licenseLevel||""===this.licenseLevel},menuItems:function(){var t=[{icon:"monstericon-lightbulb",tooltip:Object(r["a"])("Suggest a Feature","google-analytics-for-wordpress"),link:this.$getUrl("quick-links","suggest-feature","https://www.monsterinsights.com/customer-feedback/"),key:"suggest"},{icon:"monstericon-wpbeginner",tooltip:Object(r["a"])("Join Our Community","google-analytics-for-wordpress"),link:this.$getUrl("quick-links","suggest-feature","https://www.facebook.com/groups/wpbeginner/"),key:"community"},{icon:"monstericon-life-ring",tooltip:Object(r["a"])("Support & Docs","google-analytics-for-wordpress"),link:this.$getUrl("quick-links","support","https://www.monsterinsights.com/docs/"),key:"support"}];return this.showUpsell&&t.unshift({icon:"monstericon-shopping-cart",tooltip:Object(r["a"])("Upgrade to Pro &#187;","google-analytics-for-wordpress"),link:this.$getUpgradeUrl("quick-links","upgrade"),key:"upgrade"}),t}}),methods:{enter:function(t,e){var o=50*t.dataset.index;setTimeout((function(){t.classList.add("monsterinsights-show"),e()}),o)},leave:function(t,e){t.classList.remove("monsterinsights-show"),setTimeout((function(){e()}),200)}}},p=u,d=o("2877"),g=Object(d["a"])(p,n,s,!1,null,null,null);e["a"]=g.exports},bd74:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return t.value?o("div",{staticClass:"monsterinsights-reports-infobox"},[t.title?o("div",{staticClass:"monsterinsights-report-title",domProps:{textContent:t._s(t.title)}}):t._e(),t.tooltip?o("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e(),t.value?o("div",{staticClass:"monsterinsights-reports-infobox-number",attrs:{title:t.value},domProps:{textContent:t._s(t.value)}}):t._e(),o("div",{class:t.changeClass,domProps:{innerHTML:t._s(t.changeText)}}),t.days?o("div",{staticClass:"monsterinsights-reports-infobox-compare",domProps:{textContent:t._s(t.compare)}}):t._e()],1):t._e()},s=[],a=(o("a9e3"),o("561c")),r=o("93ec"),i={name:"ReportInfobox",components:{SettingsInfoTooltip:r["a"]},props:{title:String,value:String,days:Number,tooltip:String,change:Number,color:{default:"green",type:String},direction:{default:"up",type:String}},computed:{compare:function(){return Object(a["b"])("vs. Previous Day",Object(a["d"])("vs. Previous %s Days",this.days),this.days,"google-analytics-for-wordpress")},changeClass:function(){var t="monsterinsights-reports-infobox-prev";return 0===this.change?t:t+" monsterinsights-"+this.color},changeText:function(){return this.change?""===this.direction?this.change+"%":'<span class="monsterinsights-arrow monsterinsights-'+this.direction+" monsterinsights-"+this.color+'"></span> '+this.change+"%":Object(a["a"])("No change","google-analytics-for-wordpress")}}},c=i,l=o("2877"),u=Object(l["a"])(c,n,s,!1,null,null,null);e["a"]=u.exports},bef0:function(t,e,o){},c472:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"settings-input-text"},[o("label",{attrs:{for:t.id}},[o("span",{staticClass:"monsterinsights-dark",domProps:{innerHTML:t._s(t.label)}}),t.description?o("span",{domProps:{innerHTML:t._s(t.description)}}):t._e(),t.showReset()?o("a",{staticClass:"monsterinsights-reset-default",attrs:{href:"#"},domProps:{textContent:t._s(t.text_reset)},on:{click:function(e){return e.preventDefault(),t.resetValue(e)}}}):t._e(),t.tooltip?o("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e()],1),o("div",{staticClass:"settings-input-text-input"},["checkbox"===t.type?o("input",{directives:[{name:"model",rawName:"v-model",value:t.value,expression:"value"},{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],attrs:{id:t.id,name:t.name,placeholder:t.placeholder,readonly:t.disabled,type:"checkbox"},domProps:{checked:Array.isArray(t.value)?t._i(t.value,null)>-1:t.value},on:{change:[function(e){var o=t.value,n=e.target,s=!!n.checked;if(Array.isArray(o)){var a=null,r=t._i(o,a);n.checked?r<0&&(t.value=o.concat([a])):r>-1&&(t.value=o.slice(0,r).concat(o.slice(r+1)))}else t.value=s},t.inputUpdate]}}):"radio"===t.type?o("input",{directives:[{name:"model",rawName:"v-model",value:t.value,expression:"value"},{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],attrs:{id:t.id,name:t.name,placeholder:t.placeholder,readonly:t.disabled,type:"radio"},domProps:{checked:t._q(t.value,null)},on:{change:[function(e){t.value=null},t.inputUpdate]}}):o("input",{directives:[{name:"model",rawName:"v-model",value:t.value,expression:"value"},{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],attrs:{id:t.id,name:t.name,placeholder:t.placeholder,readonly:t.disabled,type:t.type},domProps:{value:t.value},on:{change:t.inputUpdate,input:function(e){e.target.composing||(t.value=e.target.value)}}})]),t.has_error?o("label",{staticClass:"monsterinsights-error"},[o("i",{staticClass:"monstericon-warning-triangle"}),o("span",{domProps:{innerHTML:t._s(t.text_error)}})]):t._e()])},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("b0c0"),o("e439"),o("dbb4"),o("b64b"),o("4d63"),o("ac1f"),o("25f0"),o("159b"),o("2fa7")),r=o("561c"),i=o("2f62"),c=o("93ec");function l(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function u(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?l(o,!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):l(o).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var p={name:"SettingsInputText",components:{SettingsInfoTooltip:c["a"]},props:{name:String,label:String,description:String,placeholder:String,type:{type:String,default:"text"},tooltip:String,default_value:String,format:RegExp},data:function(){return{is_loading:!1,has_error:!1,id:"input-"+this.name,text_reset:Object(r["a"])("Reset to default","google-analytics-for-wordpress"),text_error:Object(r["a"])("The value entered does not match the required format","google-analytics-for-wordpress"),updated_value:!1}},computed:u({},Object(i["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},value:{get:function(){return!1!==this.updated_value?this.updated_value:this.settings[this.name]},set:function(t){return this.updated_value=t}},tooltip_data:function(){return{content:this.has_ua?"":this.$mi_need_to_auth,autoHide:!1,trigger:"hover focus click"}},disabled:function(){return!this.has_ua}}),methods:{inputUpdate:function(t){this.updateSetting(t.target.name,t.target.value)},updateSetting:function(t,e){var o=this;return!this.disabled&&(this.has_error=!1,this.format&&!this.format.test(e)?(this.has_error=!0,!1):(this.$mi_saving_toast({}),void this.$store.dispatch("$_settings/updateSettings",{name:t,value:e}).then((function(t){t.success?o.$mi_success_toast({}):o.$mi_error_toast({})}))))},showReset:function(){return this.default_value&&this.settings[this.name]!==this.default_value},resetValue:function(){return this.updateSetting(this.name,this.default_value)}}},d=p,g=(o("79b7"),o("2877")),f=Object(g["a"])(d,n,s,!1,null,"493c7577",null);e["a"]=f.exports},c8cf:function(t,e,o){},d3fc:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-widget-error"},[o("div",{staticClass:"swal2-header"},[t._m(0),o("h2",{staticClass:"swal2-title",attrs:{id:"monsterinsights-error-title"},domProps:{textContent:t._s(t.title)}})]),t.error.content?o("div",{staticClass:"monsterinsights-error-content",domProps:{innerHTML:t._s(t.error.content)}}):t._e(),t.error.footer?o("div",{staticClass:"monsterinsights-error-footer",domProps:{innerHTML:t._s(t.error.footer)}}):t._e()])},s=[function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"swal2-icon swal2-error swal2-animate-error-icon",staticStyle:{display:"flex"}},[o("span",{staticClass:"swal2-x-mark"},[o("span",{staticClass:"swal2-x-mark-line-left"}),o("span",{staticClass:"swal2-x-mark-line-right"})])])}],a=o("561c"),r={props:{error:[Object,Boolean]},computed:{title:function(){return this.error.title.title?this.error.title.title:Object(a["a"])("Error","google-analytics-for-wordpress")}},name:"WidgetReportError"},i=r,c=o("2877"),l=Object(c["a"])(i,n,s,!1,null,null,null);e["a"]=l.exports},d429:function(t,e,o){"use strict";o("d3b7");var n=o("bc3a"),s=o.n(n),a=o("2b0e"),r=o("561c"),i=function(t,e,o,n){return new Promise((function(i){var c=new FormData;c.append("action","monsterinsights_vue_get_report_data"),c.append("nonce",a["a"].prototype.$mi.nonce),c.append("report",e),c.append("start",o),c.append("end",n),s.a.post(a["a"].prototype.$mi.ajax,c).then((function(t){i(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var o=e.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't load report data. Error: %s, %s","google-analytics-for-wordpress"),o.status,o.statusText)})}a["a"].prototype.$swal.hideLoading(),a["a"].prototype.$mi_error_toast({allowOutsideClick:!0,allowEscapeKey:!0,title:Object(r["a"])("Error loading report data","google-analytics-for-wordpress"),html:e.message})}))}))};e["a"]={fetchReportData:i}},d98d:function(t,e,o){"use strict";o("4795");var n,s,a={name:"SlideDownUp",functional:!0,props:{group:{type:Boolean,default:!1},done:Function},render:function(t,e){var o={props:{name:"expand"},on:{afterEnter:function(t){t.style.height="auto"},enter:function(t){var o=getComputedStyle(t),n=o.width;t.style.width=n,t.style.position="absolute",t.style.visibility="hidden",t.style.height="auto";var s=getComputedStyle(t),a=s.height;t.style.width="auto",t.style.position="relative",t.style.visibility="visible",t.style.height=0,setTimeout((function(){t.style.height=a})),e.props.done&&setTimeout((function(){e.props.done()}),500)},leave:function(t){var e=getComputedStyle(t),o=e.height;t.style.height=o,setTimeout((function(){t.style.height=0}))}}},n="transition";return e.props.group&&(n="transition-group"),t(n,o,e.children)}},r=a,i=(o("dffc"),o("e8ca"),o("2877")),c=Object(i["a"])(r,n,s,!1,null,"6038a3d0",null);e["a"]=c.exports},dd62:function(t,e,o){"use strict";o("d3b7");var n=o("bc3a"),s=o.n(n),a=o("2b0e"),r=o("561c"),i=function(){return new Promise((function(t){var e=a["a"].prototype.$mi.ajax,o=new FormData;o.append("action","monsterinsights_vue_get_license"),o.append("nonce",a["a"].prototype.$mi.nonce),s.a.post(e,o).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't load license details. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}a["a"].prototype.$mi_error_toast({allowOutsideClick:!0,allowEscapeKey:!0,title:Object(r["a"])("Error loading license details","google-analytics-for-wordpress"),html:t.message})}))}))},c=function(t,e){var o=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return new Promise((function(n){var i=new FormData;i.append("action","monsterinsights_verify_license"),i.append("nonce",a["a"].prototype.$mi.nonce),i.append("license",t),o&&i.append("network",!0),s.a.post(a["a"].prototype.$mi.ajax,i).then((function(t){t.data.success&&(o?e.commit("LICENSE_NETWORK_TYPE_UPDATED",t.data.data.license_type):e.commit("LICENSE_TYPE_UPDATED",t.data.data.license_type),e.dispatch("$_addons/getAddons","",{root:!0})),n(t)})).catch((function(t){if(t.response){var e=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't verify the license. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},l=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_validate_license"),o.append("nonce",a["a"].prototype.$mi.nonce),t&&o.append("network",!0),s.a.post(a["a"].prototype.$mi.ajax,o).then((function(t){e(t)})).catch((function(t){if(t.response){var e=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't validate the license. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},u=function(t,e){return new Promise((function(o){var n=new FormData,i=e?t.state.license_network.key:t.state.license.key;n.append("action","monsterinsights_deactivate_license"),n.append("nonce",a["a"].prototype.$mi.nonce),n.append("license",i),e&&n.append("network",!0),s.a.post(a["a"].prototype.$mi.ajax,n).then((function(n){n.data.success&&(e?(t.commit("LICENSE_NETWORK_KEY_UPDATED",""),t.commit("LICENSE_NETWORK_TYPE_UPDATED","")):(t.commit("LICENSE_KEY_UPDATED",""),t.commit("LICENSE_TYPE_UPDATED",""))),o(n)})).catch((function(t){if(t.response){var e=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't deactivate the license. Error: %s, %s","google-analytics-for-wordpress"),e.status,e.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},p=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_connect_url"),o.append("nonce",a["a"].prototype.$mi.nonce),o.append("key",t),s.a.post(a["a"].prototype.$mi.ajax,o).then((function(t){t.data&&e(t.data)})).catch((function(t){if(e(!1),t.response){var o=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't upgrade to PRO please try again. Error: %s, %s","google-analytics-for-wordpress"),o.status,o.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))};e["a"]={fetchLicense:i,verifyLicense:c,validateLicense:l,deactivateLicense:u,getUpgradeLink:p}},dffc:function(t,e,o){"use strict";var n=o("f6e1"),s=o.n(n);s.a},e8ca:function(t,e,o){"use strict";var n=o("bef0"),s=o.n(n);s.a},ed71:function(t,e,o){"use strict";var n=o("f87e"),s=o.n(n);s.a},f284:function(t,e,o){"use strict";o("fb6a"),o("d3b7"),o("4795");var n=o("d429"),s=o("2b0e"),a=o("561c"),r=function(t,e){return new Promise((function(o){return s["a"].prototype.$mi.authed?t.state[e]&&t.state[e].reportcurrentrange&&t.state[e].reportcurrentrange.startDate===t.state.date.start&&t.state[e].reportcurrentrange.endDate===t.state.date.end?(o(!1),t.commit("DISABLE_BLUR"),!1):(s["a"].prototype.$mi_loading_toast(),t.commit("ENABLE_BLUR"),void n["a"].fetchReportData(t,e,t.state.date.start,t.state.date.end).then((function(n){if("license_level"===n.data.message)return p(t),void o(!1);if(n.success)p(t),t.commit("DISABLE_BLUR"),t.commit("UPDATE_REPORT_DATA",{report:e,data:n.data}),o(!0);else{if("invalid_grant"===n.data.message)return p(t),o(!1),void t.commit("ENABLE_REAUTH");n.data.footer&&"install_addon"===n.data.footer?i(t,e).then((function(o){t.rootState.$_widget&&(t.commit("DISABLE_BLUR"),t.commit("$_widget/UPDATE_LOADED",!0,{root:!0}));var r=o?"activate":"install";s["a"].prototype.$mi_error_toast({title:!1,html:Object(a["d"])(n.data.message,r),footer:'<a href="'+s["a"].prototype.$mi.addons_url+'">'+Object(a["a"])("Visit addons page","google-analytics-for-wordpress")+"</a>",report:e}),s["a"].prototype.$swal({type:"error",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Report Unavailable","google-analytics-for-wordpress"),html:Object(a["d"])(n.data.message,r),allowOutsideClick:!0,allowEscapeKey:!0,allowEnterKey:!1,showCancelButton:!0,confirmButtonText:Object(a["d"])(Object(a["a"])("%s Addon","google-analytics-for-wordpress"),r.charAt(0).toUpperCase()+r.slice(1)),cancelButtonText:Object(a["a"])("Dismiss","google-analytics-for-wordpress")}).then((function(n){n.value&&(o?l(t,t.rootState.$_addons.addons[e]):c(t,e))}))})):(o(!1),s["a"].prototype.$mi_error_toast({title:!1,html:n.data.message,footer:n.data.footer,report:e}))}}))):(o(!1),t.commit("ENABLE_BLUR"),t.commit("ENABLE_NOAUTH"),!1)}))};function i(t,e){return new Promise((function(o){t.dispatch("$_addons/getAddons","",{root:!0}).then((function(){t.rootState.$_addons.addons[e]&&t.rootState.$_addons.addons[e].installed?o(!0):o(!1)})).catch((function(){o(!1),u()}))}))}function c(t,e){s["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Installing Addon","google-analytics-for-wordpress"),html:Object(a["a"])("Please wait","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){s["a"].prototype.$swal.showLoading(),t.dispatch("$_addons/installAddon",t.rootState.$_addons.addons[e],{root:!0}).then((function(){l(t,t.rootState.$_addons.addons[e])})).catch((function(){u()}))}})}function l(t,e){s["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Activating Addon","google-analytics-for-wordpress"),html:Object(a["a"])("Please wait","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){s["a"].prototype.$swal.showLoading()}}),t.dispatch("$_addons/activateAddon",e,{root:!0}).then((function(){s["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Addon Activated","google-analytics-for-wordpress"),html:Object(a["a"])("Loading report data","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){s["a"].prototype.$swal.showLoading(),setTimeout((function(){window.location.reload()}),1e3)}})})).catch((function(t){u(t)}))}function u(t){var e=Object(a["a"])("Please activate manually","google-analytics-for-wordpress");t.response&&(e=Object(a["d"])(Object(a["a"])("Error: %s, %s","google-analytics-for-wordpress"),t.response.status,t.response.statusText)),s["a"].prototype.$swal({type:"error",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Error Activating Addon","google-analytics-for-wordpress"),html:e,allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,showCancelButton:!0,confirmButtonText:Object(a["a"])("View Addons","google-analytics-for-wordpress"),cancelButtonText:Object(a["a"])("Dismiss","google-analytics-for-wordpress")}).then((function(t){t.value&&(window.location=s["a"].prototype.$mi.addons_url,s["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Redirecting","google-analytics-for-wordpress"),html:Object(a["a"])("Please wait","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){s["a"].prototype.$swal.showLoading()}}))}))}function p(t){t.rootState.$_widget||s["a"].prototype.$swal.close()}var d={getReportData:r},g=function(t){return t.date},f=function(t){return t.activeReport},h=function(t){return t.blur},m=function(t){return t.mobileTableExpanded},_=function(t){return t.overview},y=function(t){return t.publisher},b=function(t){return t.ecommerce},v=function(t){return t.queries},w=function(t){return t.dimensions},O=function(t){return t.forms},k=function(t){return t.realtime},j=function(t){return t.yearinreview},E=function(t){return t.noauth},P=function(t){return t.reauth},T={date:g,activeReport:f,blur:h,mobileTableExpanded:m,overview:_,publisher:y,ecommerce:b,queries:v,dimensions:w,forms:O,realtime:k,noauth:E,yearinreview:j,reauth:P},C=function(t,e){e.report&&e.data&&t[e.report]&&s["a"].set(t,e.report,e.data)},S=function(t,e){e.start&&e.end&&(s["a"].set(t.date,"start",e.start),s["a"].set(t.date,"end",e.end))},x=function(t,e){s["a"].set(t.date,"interval",e)},$=function(t,e){s["a"].set(t.date,"text",e)},A=function(t,e){t.activeReport=e},D=function(t){t.blur=!0},L=function(t){t.blur=!1},I=function(t){t.mobileTableExpanded=!0},N=function(t){t.mobileTableExpanded=!1},U=function(t){t.noauth=!0},R=function(t){t.reauth=!0},M={UPDATE_REPORT_DATA:C,UPDATE_DATE:S,UPDATE_ACTIVE_REPORT:A,UPDATE_INTERVAL:x,UPDATE_DATE_TEXT:$,ENABLE_BLUR:D,DISABLE_BLUR:L,EXPAND_TABLES:I,CONTRACT_TABLES:N,ENABLE_NOAUTH:U,ENABLE_REAUTH:R},B={date:{start:"",end:"",interval:30,text:""},blur:!1,activeReport:"overview",mobileTableExpanded:!1,overview:{},publisher:{},ecommerce:{},queries:{},dimensions:{},forms:{},realtime:{},yearinreview:{},noauth:!1,reauth:!1};e["a"]={namespaced:!0,state:B,actions:d,getters:T,mutations:M}},f6bd:function(t,e,o){},f6e1:function(t,e,o){},f87e:function(t,e,o){}}]);
1
+ (window["monsterinsightsjsonp"]=window["monsterinsightsjsonp"]||[]).push([["chunk-common"],{"088d":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{class:t.componentClass},[o("label",{class:t.disabled?"monsterinsights-styled-checkbox-faux":"",on:{click:function(e){return e.preventDefault(),t.stopClick(e)},keyup:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.stopClick(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:t.stopClick(e)}]}},[o("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.labelClass(),attrs:{tabindex:t.faux?"":0}}),o("input",{directives:[{name:"model",rawName:"v-model",value:t.checked,expression:"checked"}],attrs:{type:"checkbox",name:t.name,disabled:t.disabled},domProps:{checked:Array.isArray(t.checked)?t._i(t.checked,null)>-1:t.checked},on:{change:function(e){var o=t.checked,n=e.target,s=!!n.checked;if(Array.isArray(o)){var a=null,r=t._i(o,a);n.checked?r<0&&(t.checked=o.concat([a])):r>-1&&(t.checked=o.slice(0,r).concat(o.slice(r+1)))}else t.checked=s}}}),o("span",{staticClass:"monsterinsights-checkbox-label",domProps:{innerHTML:t._s(t.label)}}),t.description?o("span",{staticClass:"monsterinsights-checkbox-description",domProps:{innerHTML:t._s(t.description)}}):t._e(),t.tooltip?o("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e(),t.hasCollapsibleSlot?o("span",{staticClass:"monsterinsights-settings-input-toggle-collapsible",attrs:{role:"button"},on:{click:t.toggleCollapsible,keyup:[function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.toggleCollapsible(e)},function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"space",32,e.key,[" ","Spacebar"])?null:t.toggleCollapsible(e)}]}},[o("i",{class:t.iconClass,attrs:{tabindex:"0",onkeypress:"if(event.keyCode==32||event.keyCode==13){return false;};"}})]):t._e()],1),o("slide-down-up",[t.slotCollapsibleVisible&&t.hasCollapsibleSlot?o("div",{staticClass:"monsterinsights-collapsible"},[t.hasCollapsibleSlot?o("div",{staticClass:"monsterinsights-separator"}):t._e(),o("div",{staticClass:"monsterinsights-collapsible-content"},[t._t("collapsible")],2)]):t._e()])],1)},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("b0c0"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("fc11")),r=o("2f62"),i=o("93ec"),c=o("d98d");function l(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function u(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?l(Object(o),!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):l(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var p={name:"SettingsInputCheckbox",components:{SlideDownUp:c["a"],SettingsInfoTooltip:i["a"]},props:{name:String,label:String,description:String,tooltip:String,faux:Boolean,faux_tooltip:String,faux_tooltip_off:String,valueOn:String,valueOff:String,default:{type:Boolean,default:!0}},data:function(){return{is_loading:!1,has_error:!1,slotCollapsibleVisible:!1}},computed:u({},Object(r["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},hasCollapsibleSlot:function(){return this.$slots["collapsible"]},iconClass:function(){var t="monstericon-arrow";return this.slotCollapsibleVisible&&(t+=" monstericon-down"),t},componentClass:function(){var t="monsterinsights-settings-input-checkbox";return this.$slots["collapsible"]&&(t+=" has-collapsible"),t},checked:{get:function(){var t=this.valueOn?this.valueOn===this.settings[this.name]:this.settings[this.name];return this.faux?this.default:t},set:function(t){var e=!!this.valueOff&&this.valueOff;t&&(e=!this.valueOn||this.valueOn),this.updateSetting(e)}},tooltip_data:function(){return{content:this.faux_tooltip_text,autoHide:!1,trigger:"hover focus click"}},faux_tooltip_text:function(){return this.has_ua?this.checked?this.faux_tooltip:this.faux_tooltip_off:this.$mi_need_to_auth},disabled:function(){return!this.has_ua||this.faux}}),watch:{checked:function(t){this.slotCollapsibleVisible=t}},methods:{stopClick:function(t){t.target.classList.contains("monsterinsights-styled-checkbox")?this.checked=!this.checked:(t.preventDefault(),t.stopPropagation())},updateSetting:function(t){var e=this;if(this.disabled)return!1;this.$mi_saving_toast({}),this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:t}).then((function(t){t.success?e.$mi_success_toast({}):e.$mi_error_toast({})}))},toggleCollapsible:function(t){t.preventDefault(),this.slotCollapsibleVisible=!this.slotCollapsibleVisible},labelClass:function(){var t="monsterinsights-styled-checkbox";return this.checked&&(t+=" monsterinsights-styled-checkbox-checked"),t},mounted:function(){this.slotCollapsibleVisible=this.checked}}},d=p,g=o("2877"),f=Object(g["a"])(d,n,s,!1,null,null,null);e["a"]=f.exports},"0f8f":function(t,e,o){},1096:function(t,e,o){"use strict";o("4160"),o("e25e"),o("159b");var n=o("561c"),s={install:function(t){t.prototype.$miOverviewTooltips=function(t){if(!t.title){var e=document.querySelectorAll(".monsterinsights-line-chart-tooltip");return e.forEach((function(t){t.style.opacity=0})),!1}var o=t.title[0],n=t.title[1],s=parseInt(t.title[2]),a=t.title[3],r=t.title[4],i=document.getElementById("monsterinsights-chartjs-line-"+r+"-tooltip");if(null===i&&(i=document.createElement("div"),document.body.appendChild(i),i.setAttribute("id","monsterinsights-chartjs-line-"+r+"-tooltip"),i.classList.add("monsterinsights-line-chart-tooltip")),t.opacity){i.classList.remove("above"),i.classList.remove("below"),i.classList.remove("no-transform"),t.yAlign?i.classList.add(t.yAlign):i.classList.add("no-transform");var c="";c+=0===s?"0%":s>0?'<span class="monsterinsights-green"><span class="monsterinsights-arrow monsterinsights-up"></span>'+s+"%</span>":'<span class="monsterinsights-red"><span class="monsterinsights-arrow monsterinsights-down"></span>'+Math.abs(s)+"%</span>";var l='<div class="monsterinsights-reports-overview-datagraph-tooltip-container monsterinsights-reports-tooltip">';l+='<div class="monsterinsights-reports-overview-datagraph-tooltip-title">'+o+"</div>",l+='<div class="monsterinsights-reports-overview-datagraph-tooltip-number">'+n+"</div>",l+='<div class="monsterinsights-reports-overview-datagraph-tooltip-descriptor">'+a+"</div>",l+='<div class="monsterinsights-reports-overview-datagraph-tooltip-trend">'+c+"</div>",l+="</div>",i.innerHTML=l;var u=this._chart.canvas.getBoundingClientRect();i.style.opacity="1",i.style.left=u.left+window.pageXOffset+t.x+"px",i.style.top=u.top+window.pageYOffset+t.y+"px",i.style.fontFamily="Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;",i.style.fontSize=t.fontSize,i.style.fontStyle=t._fontStyle,i.style.padding=t.yPadding+"px "+t.xPadding+"px",i.style.zIndex=99999,i.style.pointerEvents="none"}else i.style.opacity=0},t.prototype.$miPieTooltips=function(t){if(!t.title){var e=document.querySelectorAll(".monsterinsights-pie-chart-tooltip");return e.forEach((function(t){t.style.opacity=0})),!1}var o=t.title[0],n=t.title[1],s=t.title[2],a=document.getElementById("monsterinsights-chartjs-pie-"+s+"-tooltip");null===a&&(a=document.createElement("div"),document.body.appendChild(a),a.setAttribute("id","monsterinsights-chartjs-pie-"+s+"-tooltip")),a.classList.remove("above"),a.classList.remove("below"),a.classList.remove("no-transform"),t.yAlign?a.classList.add(t.yAlign):a.classList.add("no-transform");var r='<div class="monsterinsights-reports-overview-datagraph-tooltip-container monsterinsights-reports-tooltip">';r+='<div class="monsterinsights-reports-overview-datagraph-tooltip-title">'+o+"</div>",r+='<div class="monsterinsights-reports-overview-datagraph-tooltip-number">'+n+"%</div>",r+="</div>",a.innerHTML=r;var i=0;if(t.yAlign){var c=0;t.caretHeight&&(c=t.caretHeight),i="above"===t.yAlign?t.y-c-t.caretPadding:t.y+c+t.caretPadding}a.style.opacity=1,a.style.left=t.x-50+"px",a.style.top=i-40+"px",a.style.padding=t.yPadding+"px "+t.xPadding+"px",a.style.zIndex="99999"},t.prototype.$miyearInReviewTooltips=function(t){if(!t.title){var e=document.querySelectorAll(".monsterinsights-line-chart-tooltip");return e.forEach((function(t){t.style.opacity=0})),!1}var o=t.title[0],n=t.title[1],s=t.title[4],a=document.getElementById("monsterinsights-chartjs-line-"+s+"-tooltip");if(null===a&&(a=document.createElement("div"),document.body.appendChild(a),a.setAttribute("id","monsterinsights-chartjs-line-"+s+"-tooltip"),a.classList.add("monsterinsights-line-chart-tooltip")),t.opacity){a.classList.remove("above"),a.classList.remove("below"),a.classList.remove("no-transform"),t.yAlign?a.classList.add(t.yAlign):a.classList.add("no-transform");var r='<div class="monsterinsights-reports-overview-datagraph-tooltip-container monsterinsights-reports-tooltip">';r+='<div class="monsterinsights-reports-overview-datagraph-tooltip-title">'+o+"</div>",r+='<div class="monsterinsights-reports-overview-datagraph-tooltip-number">'+n+"</div>",r+="</div>",a.innerHTML=r;var i=this._chart.canvas.getBoundingClientRect();a.style.opacity="1",a.style.left=i.left+window.pageXOffset+t.x+"px",a.style.top=i.top+window.pageYOffset+t.y+"px",a.style.fontFamily="Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;",a.style.fontSize=t.fontSize,a.style.fontStyle=t._fontStyle,a.style.padding=t.yPadding+"px "+t.xPadding+"px",a.style.zIndex=99999,a.style.pointerEvents="none"}else a.style.opacity=0},t.prototype.$mi_loading_toast=function(e,o){t.prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:e||Object(n["a"])("Refreshing Report","google-analytics-for-wordpress"),html:o||Object(n["a"])("Loading new report data...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){t.prototype.$swal.showLoading()}})},t.prototype.$mi_error_toast=function(e){var o=e.type,s=void 0===o?"error":o,a=e.customContainerClass,r=void 0===a?"monsterinsights-swal":a,i=e.allowOutsideClick,c=void 0!==i&&i,l=e.allowEscapeKey,u=void 0!==l&&l,p=e.allowEnterKey,d=void 0!==p&&p,g=e.title,f=void 0===g?Object(n["a"])("Error","google-analytics-for-wordpress"):g,h=e.html,m=void 0===h?Object(n["a"])("Please try again.","google-analytics-for-wordpress"):h,_=e.footer,y=void 0!==_&&_;return t.prototype.$swal({type:s,customContainerClass:r,allowOutsideClick:c,allowEscapeKey:u,allowEnterKey:d,title:f,html:m,footer:y,onOpen:function(){t.prototype.$swal.hideLoading()}})},t.prototype.$mi_get_upsell_content=function(t){var e={},o={overview:{title:Object(n["a"])("Unlock the Publishers Report and Focus on the Content that Matters","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Stop guessing about what content your visitors are interested in. MonsterInsights Publisher Report shows you exactly which content gets the most visits, so you can analyze and optimize it for higher conversions.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Your Top Landing Pages to Improve Enagement","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Exit Pages to Reduce Abandonment","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Outbound Links to Find New Revenue Opportunities","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Affiliate Links and Focus on what's working","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Downloads and Improve Conversions","google-analytics-for-wordpress"),Object(n["a"])("See Audience Demographic Report ( Age / Gender / Interests )","google-analytics-for-wordpress")]},publisher:{title:Object(n["a"])("Unlock the Publishers Report and Focus on the Content That Matters","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Stop guessing about what content your visitors are interested in. The Publisher Report shows you exactly which content gets the most traffic, so you can analyze and optimize it for higher conversions.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Your Top Landing Pages to Improve Enagement","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Exit Pages to Reduce Abandonment","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Outbound Links to Find New Revenue Opportunities","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Affiliate Links and Focus on what's working","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Downloads and Improve Conversions","google-analytics-for-wordpress"),Object(n["a"])("See Audience Demographic Report ( Age / Gender / Interests )","google-analytics-for-wordpress")]},ecommerce:{title:Object(n["a"])("Unlock the eCommerce Report and See Your Important Store Metrics","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Increase your sales & revenue with insights. MonsterInsights answers all your top eCommerce questions using metrics like total revenue, conversion rate, average order value, top products, top referral sources and more.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Your Conversion Rate to Improve Funnel","google-analytics-for-wordpress"),Object(n["a"])("See The Number of Transactions and make data-driven decisions","google-analytics-for-wordpress"),Object(n["a"])("See The Total Revenue to Track Growth","google-analytics-for-wordpress"),Object(n["a"])("See Average Order Value to Find Offer Opportunities","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Products to See Individual Performance","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Conversion Sources and Focus on what's working","google-analytics-for-wordpress"),Object(n["a"])("See The Time it takes for Customers to Purchase","google-analytics-for-wordpress"),Object(n["a"])("See How Many Sessions are needed for a Purchase","google-analytics-for-wordpress")]},dimensions:{title:Object(n["a"])("Unlock the Dimensions Report and Track Your Own Custom Data","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Decide what data is important using your own custom tracking parameters. The Dimensions report allows you to easily see what's working right inside your WordPress dashboard.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Which Authors Generate the Most Traffic","google-analytics-for-wordpress"),Object(n["a"])("See Which Post Types Perform Better","google-analytics-for-wordpress"),Object(n["a"])("See Which Categories are the Most Popular","google-analytics-for-wordpress"),Object(n["a"])("See Your Blog's most popular SEO Scores","google-analytics-for-wordpress"),Object(n["a"])("See Which Focus Keyword is Performing Better in Search Engines","google-analytics-for-wordpress")]},forms:{title:Object(n["a"])("Unlock the Forms Report and Improve Conversions","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Easily track your form views and conversions. The Forms Report allows you to see which forms are performing better and which forms have lower conversion rates so you can optimize using real data.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Reports for Any Contact Form Plugin or Sign-up Form","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Converting Forms and Optimize","google-analytics-for-wordpress"),Object(n["a"])("See Your Forms Impressions Count to Find the Best Placement","google-analytics-for-wordpress")]},queries:{title:Object(n["a"])("Unlock the Search Console Report and See How People Find Your Website","google-analytics-for-wordpress"),subtitle:Object(n["a"])("See exactly how people find your website, which keywords they searched for, how many times the results were viewed, and more.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Your Top Google Search Terms and Optimize Content","google-analytics-for-wordpress"),Object(n["a"])("See The Number of Clicks and Track Interests","google-analytics-for-wordpress"),Object(n["a"])("See The Click-Through-Ratio and Improve SEO","google-analytics-for-wordpress"),Object(n["a"])("See The Average Results Position and Focus on what works","google-analytics-for-wordpress")]},realtime:{title:Object(n["a"])("Unlock the Real-Time Report and Track the Visitors on Your Site in Real-Time","google-analytics-for-wordpress"),subtitle:Object(n["a"])("Track the results of your marketing efforts and product launches as-it-happens right from your WordPress site. The Real-Time report allows you to view your traffic sources and visitors activity when you need it.","google-analytics-for-wordpress"),features:[Object(n["a"])("See Your Active Visitors and Track Their Behaviour to Optimize","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Pages Immediately After Making Changes","google-analytics-for-wordpress"),Object(n["a"])("See Your Top Referral Sources and Adapt Faster","google-analytics-for-wordpress"),Object(n["a"])("See Your Traffic Demographics and ","google-analytics-for-wordpress"),Object(n["a"])("Get Fresh Reports Data Every 60 Seconds","google-analytics-for-wordpress")]}};return o[t]&&(e=o[t]),e}}};e["a"]=s},"1b31":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-addon"},[o("div",{staticClass:"monsterinsights-addon-top"},[t.addon.icon?o("div",{staticClass:"monsterinsights-addon-image"},[o("img",{staticClass:"monsterinsights-addon-thumb",attrs:{src:t.addon.icon,alt:t.addon.title}})]):t._e(),o("div",{staticClass:"monsterinsights-addon-text"},[o("h3",{staticClass:"monsterinsights-addon-title",domProps:{textContent:t._s(t.addonTitle)}}),t.addon.excerpt?o("p",{staticClass:"monsterinsights-addon-excerpt",domProps:{textContent:t._s(t.addon.excerpt)}}):t._e()])]),o("div",{class:t.actionsClass()},[o("div",{staticClass:"monsterinsights-interior"},[o("span",{staticClass:"monsterinsights-addon-status",domProps:{innerHTML:t._s(t.statusText())}}),o("div",{staticClass:"monsterinsights-addon-action"},["licensed"===t.addon.type?o("button",{staticClass:"monsterinsights-button",on:{click:function(e){return e.preventDefault(),t.clickAction(e)}}},[o("span",{domProps:{innerHTML:t._s(t.textButtonAction())}})]):o("a",{staticClass:"monsterinsights-button",attrs:{href:t.upgrade_url,target:"_blank"},domProps:{textContent:t._s(t.textButtonAction())}})])])])])},s=[],a=(o("c975"),o("ac1f"),o("5319"),o("561c")),r={name:"AddonBlock",props:{addon:Object,isAddon:{type:Boolean,default:!0}},data:function(){return{text_status:Object(a["a"])("Status: %s","google-analytics-for-wordpress"),text_upgrade:Object(a["a"])("Upgrade Now","google-analytics-for-wordpress"),upgrade_url:this.$getUpgradeUrl(),activating:!1,deactivating:!1,installing:!1}},computed:{addonTitle:function(){var t=this.addon.title;return 0===t.indexOf("MonsterInsights")&&(t=t.replace("MonsterInsights ","")),t}},methods:{actionsClass:function(){var t="monsterinsights-addon-message ";return"licensed"===this.addon.type?this.addon.active?t+="monsterinsights-addon-active":!1===this.addon.installed?t+="monsterinsights-addon-not-installed":t+="monsterinsights-addon-inactive":t+="monsterinsights-addon-not-available",t},statusText:function(){var t=Object(a["a"])("Not Installed","google-analytics-for-wordpress");return"licensed"!==this.addon.type?t=Object(a["a"])("Not Available","google-analytics-for-wordpress"):this.addon.active?t=this.$mi.network?Object(a["a"])("Network Active","google-analytics-for-wordpress"):Object(a["a"])("Active","google-analytics-for-wordpress"):this.addon.installed&&(t=Object(a["a"])("Inactive","google-analytics-for-wordpress")),Object(a["d"])(this.text_status,"<span>"+t+"</span>")},textButtonAction:function(){return"licensed"!==this.addon.type?Object(a["a"])("Upgrade Now","google-analytics-for-wordpress"):this.activating?Object(a["a"])("Activating...","google-analytics-for-wordpress"):this.deactivating?Object(a["a"])("Deactivating...","google-analytics-for-wordpress"):this.installing?Object(a["a"])("Installing...","google-analytics-for-wordpress"):this.addon.active?Object(a["a"])("Deactivate","google-analytics-for-wordpress"):this.addon.installed?Object(a["a"])("Activate","google-analytics-for-wordpress"):Object(a["a"])("Install","google-analytics-for-wordpress")},clickAction:function(){if(this.activating||this.deactivating||this.installing)return!1;this.addon.installed?this.addon.active?this.deactivateAddon():this.activateAddon():this.installAddon()},installAddon:function(){var t=this,e=this.isAddon?"$_addons/installAddon":"$_addons/installPlugin";this.installing=!0,this.$store.dispatch(e,this.addon).then((function(){t.installing=!1})).catch((function(){t.installing=!1}))},activateAddon:function(){var t=this;this.activating=!0,this.$store.dispatch("$_addons/activateAddon",this.addon).then((function(){t.activating=!1})).catch((function(){t.activating=!1}))},deactivateAddon:function(){var t=this;this.deactivating=!0,this.$store.dispatch("$_addons/deactivateAddon",this.addon).then((function(){t.deactivating=!1})).catch((function(){t.deactivating=!1}))}}},i=r,c=o("2877"),l=Object(c["a"])(i,n,s,!1,null,null,null);e["a"]=l.exports},"3bc9":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"settings-input settings-input-license"},[o("p",{domProps:{innerHTML:t._s(t.text_license_row_1)}}),o("p",{domProps:{innerHTML:t._s(t.text_license_row_2)}}),o("p",{domProps:{innerHTML:t._s(t.text_license_row_3)}}),o("div",{staticClass:"monsterinsights-settings-license-lite"},[o("label",{attrs:{for:"monsterinsights-license-key"},domProps:{innerHTML:t._s(t.text_license_label)}}),o("div",{staticClass:"inline-field"},[o("input",{directives:[{name:"model",rawName:"v-model",value:t.connect_key,expression:"connect_key"}],attrs:{id:"monsterinsights-license-key",readonly:t.is_loading,type:"text",autocomplete:"off",placeholder:t.text_license_placeholder},domProps:{value:t.connect_key},on:{input:[function(e){e.target.composing||(t.connect_key=e.target.value)},t.fieldInput]}}),t.show_connect?o("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_upgrade_to_pro)},on:{click:function(e){return e.preventDefault(),t.startUpgradeToPro(e)}}}):t._e()])])])},s=[],a=o("561c"),r=o("f7fe"),i=o.n(r),c=o("dd62"),l={name:"SettingsInputLicense",props:{label:String},data:function(){return{is_network:this.$mi.network,text_license_row_1:Object(a["d"])(Object(a["a"])("You're using %1$sMonsterInsights Lite%2$s - no license needed. Enjoy! %3$s","google-analytics-for-wordpress"),"<strong>","</strong>",'<span class="monsterinsights-bg-img monsterinsights-smile"></span>'),text_license_row_2:Object(a["d"])(Object(a["a"])("To unlock more features consider %1$supgrading to PRO%2$s.","google-analytics-for-wordpress"),'<a href="'+this.$getUpgradeUrl("settings-panel","license")+'" class="monsterinsights-bold" target="_blank">',"</a>"),text_license_row_3:Object(a["d"])(Object(a["a"])("As a valued MonsterInsights Lite user you %1$sreceive 50%% off%2$s, automatically applied at checkout!","google-analytics-for-wordpress"),'<span class="monsterinsights-highlighted-text">',"</span>"),text_upgrade_to_pro:Object(a["a"])("Unlock PRO Features Now","google-analytics-for-wordpress"),text_license_placeholder:Object(a["a"])("Paste your license key here","google-analytics-for-wordpress"),text_license_verify:Object(a["a"])("Verify","google-analytics-for-wordpress"),text_license_label:Object(a["d"])(Object(a["a"])("Already purchased? Simply enter your license key below to connect with MonsterInsights PRO! %1$sRetrieve your license key%2$s.","google-analytics-for-wordpress"),'<a href="'+this.$getUrl("license","settings_panel","https://www.monsterinsights.com/my-account/")+'" target="_blank">',"</a>"),is_loading:!1,show_connect:!1,connect_key:""}},methods:{fieldInput:i()((function(){this.show_connect=""!==this.connect_key}),100),startUpgradeToPro:function(){var t=this;this.$swal({type:"info",title:Object(a["a"])("Please wait...","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,customContainerClass:"monsterinsights-swal",onOpen:function(){t.$swal.showLoading()}}),c["a"].getUpgradeLink(this.connect_key).then((function(e){if(e.success&&e.data.url)return window.location=e.data.url;var o=e.data.message?e.data.message:Object(a["a"])("There was an error unlocking MonsterInsights PRO please try again or install manually.","google-analytics-for-wordpress");t.$mi_error_toast({title:Object(a["a"])("Error","google-analytics-for-wordpress"),text:o,toast:!1,position:"center",showConfirmButton:!0,showCloseButton:!1,customClass:!1}).then((function(){e.data.reload&&window.location.reload()}))})).catch((function(){t.$swal.close()}))}}},u=l,p=o("2877"),d=Object(p["a"])(u,n,s,!1,null,null,null);e["a"]=d.exports},4360:function(t,e,o){"use strict";var n=o("2b0e"),s=o("2f62"),a=o("dd62"),r=o("f7fe"),i=o.n(r),c=o("561c"),l=function(t){var e=a["a"].fetchLicense();e.then((function(e){e.network&&t.commit("LICENSE_NETWORK_UPDATED",e.network),e.site&&t.commit("LICENSE_UPDATED",e.site),_(t)})).catch((function(t){console.error(t)}))},u=function(t,e){return a["a"].verifyLicense(e,t)},p=function(t,e){return t.commit("LICENSE_KEY_UPDATED",e),g(e,t)},d=function(t,e){return t.commit("LICENSE_NETWORK_KEY_UPDATED",e),g(e,t,!0)},g=i()(a["a"].verifyLicense,500,{leading:!0}),f=function(t,e){return a["a"].validateLicense(e)},h=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return a["a"].deactivateLicense(t,e)},m=function(t){t.dispatch("$_app/removeNotice","license_expired",{root:!0}),t.dispatch("$_app/removeNotice","license_disabled",{root:!0}),t.dispatch("$_app/removeNotice","license_invalid",{root:!0})},_=function(t){t.state.license.is_expired||t.state.license_network.is_expired?t.dispatch("$_app/addNotice",{id:"license_expired",content:Object(c["d"])(Object(c["a"])("Your license key for MonsterInsights has expired. %1$sPlease click here to renew your license key.%2$s","google-analytics-for-wordpress"),'<a target="blank" href="'+n["a"].prototype.$getUrl("admin-notices","expired-license","https://www.monsterinsights.com/login/")+'">',"</a>"),type:"error"},{root:!0}):t.state.license.is_disabled||t.state.license_network.is_disabled?t.dispatch("$_app/addNotice",{id:"license_disabled",content:Object(c["a"])("Your license key for MonsterInsights has been disabled. Please use a different key.","google-analytics-for-wordpress"),type:"error"},{root:!0}):(t.state.license.is_invalid||t.state.license_network.is_invalid)&&t.dispatch("$_app/addNotice",{id:"license_invalid",content:Object(c["a"])("Your license key for MonsterInsights is invalid. The key no longer exists or the user associated with the key has been deleted. Please use a different key.","google-analytics-for-wordpress"),type:"error"},{root:!0})},y={getLicense:l,updateLicense:p,verifyLicense:u,updateNetworkLicense:d,validateLicense:f,deactivateLicense:h,removeLicenseNotices:m,addLicenseNotices:_},b=function(t){return t.license},v=function(t){return t.license_network},w={license:b,license_network:v},O=function(t,e){t.license=e},j=function(t,e){t.license_network=e},k=function(t,e){t.license.key=e},$=function(t,e){t.license.type=e},E=function(t,e){t.license_network.key=e},P=function(t,e){t.license_network.type=e},T={LICENSE_UPDATED:O,LICENSE_NETWORK_UPDATED:j,LICENSE_KEY_UPDATED:k,LICENSE_TYPE_UPDATED:$,LICENSE_NETWORK_KEY_UPDATED:E,LICENSE_NETWORK_TYPE_UPDATED:P},C={license:{key:"",type:"",is_expired:!1,is_disabled:!1,is_invalid:!0},license_network:{key:"",type:"",is_expired:!1,is_disabled:!1,is_invalid:!0}},S={namespaced:!0,state:C,actions:y,getters:w,mutations:T},x=(o("d3b7"),o("bc3a")),A=o.n(x),D=function(){return new Promise((function(t){var e=new FormData;e.append("action","monsterinsights_vue_get_profile"),e.append("nonce",n["a"].prototype.$mi.nonce),A.a.post(n["a"].prototype.$mi.ajax,e).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't load authentication details. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},L=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_maybe_authenticate"),o.append("nonce",n["a"].prototype.$mi.nonce),t&&o.append("isnetwork",!0),A.a.post(n["a"].prototype.$mi.ajax,o).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't authenticate. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},I=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_maybe_reauthenticate"),o.append("nonce",n["a"].prototype.$mi.nonce),t&&o.append("isnetwork",!0),A.a.post(n["a"].prototype.$mi.ajax,o).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't reauthenticate. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},N=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_maybe_verify"),o.append("nonce",n["a"].prototype.$mi.nonce),o.append("isnetwork",t),A.a.post(n["a"].prototype.$mi.ajax,o).then((function(t){e(t.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't verify credentials. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},U=function(t,e,o){return new Promise((function(s){var a=new FormData;a.append("action","monsterinsights_maybe_delete"),a.append("nonce",n["a"].prototype.$mi.nonce),a.append("isnetwork",e),o&&a.append("forcedelete",!0),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(o){o.data.success&&t.commit("AUTH_DELETED",e),s(o.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't deauthenticate. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},R=function(t,e,o){return new Promise((function(s){var a=new FormData;a.append("action","monsterinsights_update_manual_ua"),a.append("manual_ua_code",e),a.append("nonce",n["a"].prototype.$mi.nonce),o&&a.append("isnetwork",o),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(n){t.commit("MANUAL_UA_UPDATE",e,o),s(n.data)})).catch((function(t){if(t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't save settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Settings not saved.","google-analytics-for-wordpress")})}))}))},M={fetchAuth:D,getAuthRedirect:L,getReAuthRedirect:I,verifyAuth:N,deleteAuth:U,updateManualUa:R},B=function(t){var e=M.fetchAuth();e.then((function(e){e&&t.commit("AUTH_UPDATED",e)})).catch((function(t){console.error(t)}))},Y=function(t,e){return M.getAuthRedirect(e)},F=function(t,e){return M.getReAuthRedirect(e)},H=function(t,e){return M.verifyAuth(e)},K=function(t,e){return M.deleteAuth(t,e.network,e.force)},W=function(t,e){return M.updateManualUa(t,e.ua,e.network)},V={getAuth:B,doAuth:Y,doReAuth:F,verifyAuth:H,deleteAuth:K,updateManualUa:W},G=function(t){return t.auth},q={auth:G},z=function(t,e){t.auth=e},J=function(t,e){e?(t.auth.network_manual_ua=t.auth.network_ua,t.auth.network_ua=!1,t.auth.network_viewname=!1):(t.auth.manual_ua=t.auth.ua,t.auth.ua=!1,t.auth.viewname=!1)},Q=function(t,e,o){o?t.auth.network_manual_ua=e:t.auth.manual_ua=e},X={AUTH_UPDATED:z,AUTH_DELETED:J,MANUAL_UA_UPDATE:Q},Z={auth:{ua:"",viewname:"",network_ua:"",network_viewname:""}},tt={namespaced:!0,state:Z,actions:V,getters:q,mutations:X},et=(o("c975"),function(){return new Promise((function(t){var e=new FormData;e.append("action","monsterinsights_vue_get_addons"),e.append("network",n["a"].prototype.$mi.network),e.append("nonce",n["a"].prototype.$mi.nonce),A.a.post(n["a"].prototype.$mi.ajax,e).then((function(e){t(e.data)}))}))}),ot=function(t,e){return new Promise((function(o,s){var a=new FormData;a.append("action","monsterinsights_install_addon"),a.append("nonce",n["a"].prototype.$mi.install_nonce),a.append("plugin",e.url),t.rootState.$_app.ftp_form.hostname&&a.append("hostname",t.rootState.$_app.ftp_form.hostname),t.rootState.$_app.ftp_form.username&&a.append("username",t.rootState.$_app.ftp_form.username),t.rootState.$_app.ftp_form.password&&a.append("password",t.rootState.$_app.ftp_form.password),t.rootState.$_app.ftp_form.connection_type&&a.append("connection_type",t.rootState.$_app.ftp_form.connection_type),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(s){s.data.form?t.commit("$_app/SHOW_FTP_FORM",{action:"$_addons/installAddon",data:e},{root:!0}):s.data.error?n["a"].prototype.$mi_error_toast({title:s.data.error}):(t.commit("ADDON_INSTALLED",{slug:e.slug,basename:s.data.plugin}),st(t,e)),o(s.data)})).catch((function(t){if(s(t),t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install addon. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not installed.","google-analytics-for-wordpress")})}))}))},nt=function(t){return new Promise((function(e,o){var s=new FormData,a=n["a"].prototype.$addQueryArg(n["a"].prototype.$mi.ajax,"page","monsterinsights-onboarding");s.append("action","monsterinsights_onboarding_wpforms_install"),s.append("nonce",n["a"].prototype.$mi.install_nonce),A.a.post(a,s).then((function(o){o.data.error?n["a"].prototype.$mi_error_toast({title:o.data.error}):t.commit("ADDON_INSTALLED",{slug:"wpforms",basename:""}),e(o.data)})).catch((function(t){if(o(t),t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install WPForms. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. WPForms not installed.","google-analytics-for-wordpress")})}))}))},st=function(t,e){return new Promise((function(o,s){var a=new FormData;a.append("action","monsterinsights_activate_addon"),a.append("nonce",n["a"].prototype.$mi.activate_nonce),a.append("isnetwork",n["a"].prototype.$mi.network),a.append("plugin",e.basename),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(n){n.data.error||t.commit("ADDON_ACTIVATED",e.slug),o(n.data)})).catch((function(t){if(s(t),t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't activate addon. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not activated.","google-analytics-for-wordpress")})}))}))},at=function(t,e){return new Promise((function(o,s){var a=new FormData;a.append("action","monsterinsights_deactivate_addon"),a.append("nonce",n["a"].prototype.$mi.deactivate_nonce),a.append("isnetwork",n["a"].prototype.$mi.network),a.append("plugin",e.basename),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(n){n.data.error||t.commit("ADDON_DEACTIVATED",e.slug),o(n.data)})).catch((function(t){if(s(t),t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't deactivate addon. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Addon not deactivated.","google-analytics-for-wordpress")})}))}))},rt=function(t,e){return new Promise((function(o,s){var a=new FormData;a.append("action","monsterinsights_vue_install_plugin"),a.append("slug",e),a.append("nonce",n["a"].prototype.$mi.nonce),A.a.post(n["a"].prototype.$mi.ajax,a).then((function(s){s.data.error?n["a"].prototype.$mi_error_toast({title:s.data.error}):t.commit("ADDON_INSTALLED",{slug:e,basename:""}),o(s.data)})).catch((function(t){if(s(t),t.response){var e=t.response;return n["a"].prototype.$mi_error_toast({title:Object(c["d"])(Object(c["a"])("Can't install plugin. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}n["a"].prototype.$mi_error_toast({title:Object(c["a"])("You appear to be offline. Plugin not installed.","google-analytics-for-wordpress")})}))}))},it={fetchAddons:et,installAddon:ot,activateAddon:st,deactivateAddon:at,installWPForms:nt,installPlugin:rt},ct=function(t){return new Promise((function(e){var o=it.fetchAddons();o.then((function(o){o&&(t.commit("ADDONS_UPDATED",o),lt(t)),e(!0)})).catch((function(t){console.error(t),e(!1)}))}))},lt=function(t){if(t.dispatch("$_app/removeNotice","google_amp_addon",{root:!0}),t.dispatch("$_app/removeNotice","instant_articles_addon",{root:!0}),ut(t,"amp")&&!ut(t,"google_amp")){var e=t.rootGetters["$_app/mi"].install_amp_url,o=e.indexOf("activate")>0?Object(c["a"])("Activate","google-analytics-for-wordpress"):Object(c["a"])("Install","google-analytics-for-wordpress"),s=Object(c["d"])(Object(c["a"])("In order for the MonsterInsights Google AMP addon to work properly, please ask your webmaster to install the WordPress AMP plugin by Automattic. %1$sLearn More%2$s","google-analytics-for-wordpress"),'<a target="_blank" href="'+n["a"].prototype.$getUrl("settings-panel","amp-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-google-amp-addon/")+'">',"</a>");n["a"].prototype.$mi.install_plugins&&(s=Object(c["d"])(Object(c["a"])("In order for the MonsterInsights Google AMP addon to work properly, you need to install the WordPress AMP plugin by Automattic. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s","google-analytics-for-wordpress"),'<a href="'+e+'">',o,"</a>",'<a target="_blank" href="'+n["a"].prototype.$getUrl("settings-panel","amp-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-google-amp-addon/")+'">',"</a>")),t.dispatch("$_app/addNotice",{id:"google_amp_addon",content:s,type:"error"},{root:!0})}if(ut(t,"facebook-instant-articles")&&!ut(t,"instant_articles")){var a=t.rootGetters["$_app/mi"].install_fbia_url,r=a.indexOf("activate")>0?Object(c["a"])("Activate","google-analytics-for-wordpress"):Object(c["a"])("Install","google-analytics-for-wordpress"),i=Object(c["d"])(Object(c["a"])("In order for the MonsterInsights Instant Articles addon to work properly, please ask your webmaster to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$sLearn More%2$s","google-analytics-for-wordpress"),'<a target="_blank" href="'+n["a"].prototype.$getUrl("settings-panel","fbia-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-facebook-instant-articles-addon/")+'">',"</a>");n["a"].prototype.$mi.install_plugins&&(i=Object(c["d"])(Object(c["a"])("In order for the MonsterInsights Instant Articles addon to work properly, you need to install the Instant Articles for WP plugin by Automattic version 3.3.5 or newer. %1$s%2$s Plugin%3$s | %4$sLearn More%5$s","google-analytics-for-wordpress"),'<a href="'+a+'">',r,"</a>",'<a target="_blank" href="'+n["a"].prototype.$getUrl("settings-panel","fbia-plugin-notice","https://www.monsterinsights.com/docs/how-to-get-started-with-the-facebook-instant-articles-addon/")+'">',"</a>")),t.dispatch("$_app/addNotice",{id:"instant_articles_addon",content:i,type:"error"},{root:!0})}},ut=function(t,e){return!!t.state.addons[e]&&t.state.addons[e].active},pt=function(t,e){return it.installAddon(t,e)},dt=function(t,e){return it.installPlugin(t,e.slug)},gt=function(t,e){return it.activateAddon(t,e).then((function(){lt(t)}))},ft=function(t,e){return it.deactivateAddon(t,e).then((function(){lt(t)}))},ht=function(t){return it.installWPForms(t)},mt={getAddons:ct,installAddon:pt,activateAddon:gt,deactivateAddon:ft,installWPForms:ht,installPlugin:dt},_t=(o("4e82"),o("ac1f"),o("841c"),function(t){return t.addons}),yt=function(t){return t.sort},bt=function(t){return t.search},vt={addons:_t,sort:yt,search:bt},wt=function(t,e){t.addons=e},Ot=function(t,e){t.addons[e].active=!0},jt=function(t,e){t.addons[e].active=!1},kt=function(t,e){t.addons[e.slug].installed=!0,t.addons[e.slug].basename=e.basename},$t=function(t,e){t.sort=e},Et=function(t,e){t.search=e},Pt={ADDONS_UPDATED:wt,ADDON_ACTIVATED:Ot,ADDON_DEACTIVATED:jt,ADDON_INSTALLED:kt,UPDATE_SORT:$t,UPDATE_SEARCH:Et},Tt={addons:{},search:""},Ct={namespaced:!0,state:Tt,actions:mt,getters:vt,mutations:Pt},St=function(t){t.commit("INIT")},xt=function(t){t.commit("BLOCK_APP")},At=function(t){t.commit("UNBLOCK_APP")},Dt=function(t,e){t.commit("ADD_NOTICE",e)},Lt=function(t,e){t.commit("REMOVE_NOTICE",e)},It=function(t){t.commit("RESET_NOTICES")},Nt={init:St,block:xt,unblock:At,addNotice:Dt,removeNotice:Lt,resetNotices:It},Ut=function(t){return t.blocked},Rt=function(t){return t.notices},Mt=function(t){return t.mi},Bt=function(t){return t.ftp_form},Yt={blocked:Ut,notices:Rt,mi:Mt,ftp_form:Bt},Ft=function(){},Ht=function(t){t.blocked=!0},Kt=function(t){t.blocked=!1},Wt=function(t,e){e.id&&n["a"].set(t.notices,e.id,e)},Vt=function(t,e){t.notices[e]&&n["a"].delete(t.notices,e)},Gt=function(t){t.notices={}},qt=function(t,e){t.ftp_form.hostname=e},zt=function(t,e){t.ftp_form.username=e},Jt=function(t,e){t.ftp_form.password=e},Qt=function(t,e){t.ftp_form.connection_type=e},Xt=function(t,e){t.ftp_form.visible=!0,t.ftp_form.action=e.action,t.ftp_form.data=e.data},Zt=function(t){t.ftp_form.visible=!1},te={INIT:Ft,BLOCK_APP:Ht,UNBLOCK_APP:Kt,ADD_NOTICE:Wt,REMOVE_NOTICE:Vt,RESET_NOTICES:Gt,UPDATE_HOSTNAME:qt,UPDATE_USERNAME:zt,UPDATE_PASSWORD:Jt,UPDATE_CONNECTION_TYPE:Qt,SHOW_FTP_FORM:Xt,HIDE_FTP_FORM:Zt},ee={blocked:!1,notices:{},mi:window.monsterinsights?window.monsterinsights:{},ftp_form:{hostname:"",username:"",password:"",connection_type:"ftp",visible:!1,action:"",data:{}}},oe={namespaced:!0,state:ee,actions:Nt,getters:Yt,mutations:te},ne=function(t){t.subscribe((function(e,o){if("$_app/INIT"===e.type){var n=o["$_app"].mi.versions;n.php_version_below_54?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! PHP Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure.","google-analytics-for-wordpress"),n.php_version,"7.3"),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating PHP","google-analytics-for-wordpress"),link:n.php_update_link},dismissable:!0,id:"php_update_54"}):n.wp_version_below_46?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! WordPress Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.6 in April, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.","google-analytics-for-wordpress"),n.php_version,n.php_min_version),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating WordPress","google-analytics-for-wordpress"),link:n.wp_update_link},dismissable:!0,id:"wp_update_46"}):n.php_version_below_56?t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! PHP Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("MonsterInsights has detected that your site is running an outdated, insecure version of PHP (%1$s), which could be putting your site at risk for being hacked. WordPress stopped supporting your PHP version in April, 2019. Updating to the recommended version (PHP %2$s) only takes a few minutes and will make your website significantly faster and more secure.","google-analytics-for-wordpress"),n.php_version,"7.3"),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating PHP","google-analytics-for-wordpress"),link:n.php_update_link},dismissable:!0,id:"php_update_56"}):n.wp_version_below_49&&t.commit("$_app/ADD_NOTICE",{title:Object(c["a"])("Yikes! WordPress Update Required","google-analytics-for-wordpress"),content:Object(c["d"])(Object(c["a"])("MonsterInsights has detected that your site is running an outdated version of WordPress (%s). MonsterInsights will stop supporting WordPress versions lower than 4.9 in October, 2019. Updating WordPress takes just a few minutes and will also solve many bugs that exist in your WordPress install.","google-analytics-for-wordpress"),n.php_version,n.php_min_version),type:"error",button:{enabled:!0,text:Object(c["a"])("Learn more about updating WordPress","google-analytics-for-wordpress"),link:n.wp_update_link},dismissable:!0,id:"wp_update_49"})}}))},se=ne;n["a"].use(s["a"]);var ae=[se];e["a"]=new s["a"].Store({modules:{$_app:oe,$_license:S,$_auth:tt,$_addons:Ct},plugins:ae})},"48c7":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return t.noauth?t._e():o("div",{staticClass:"monsterinsights-upsell-overlay"},[o("div",{staticClass:"monsterinsights-upsell-top"},[t.upsellData.title?o("h3",{domProps:{textContent:t._s(t.upsellData.title)}}):t._e(),t.upsellData.subtitle?o("p",{staticClass:"monsterinsights-upsell-subtitle",domProps:{textContent:t._s(t.upsellData.subtitle)}}):t._e()]),o("div",{staticClass:"monsterinsights-upsell-content"},[t.upsellData.features?o("ul",t._l(t.upsellData.features,(function(e,n){return o("li",{key:n,domProps:{textContent:t._s(e)}})})),0):t._e(),o("div",{staticClass:"monsterinsights-center"},[o("a",{staticClass:"monsterinsights-button",attrs:{href:t.upgrade_link,target:"_blank"},domProps:{textContent:t._s(t.text_upsell_button)}})])])])},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("fc11")),r=o("2f62"),i=o("561c");function c(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function l(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?c(Object(o),!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):c(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var u={name:"ReportUpsellOverlay",props:{report:String},data:function(){return{upgrade_link:this.$getUpgradeUrl("report",this.report),text_upsell_button:Object(i["a"])("Upgrade to MonsterInsights Pro","google-analytics-for-wordpress")}},computed:l({},Object(r["b"])({noauth:"$_reports/noauth"}),{upsellData:function(){return this.$mi_get_upsell_content(this.report)}})},p=u,d=o("2877"),g=Object(d["a"])(p,n,s,!1,null,null,null);e["a"]=g.exports},"4bdc":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-navigation-bar"},[o("div",{staticClass:"monsterinsights-container"},[t._t("default")],2)])},s=[],a={name:"TheAppNavigation"},r=a,i=o("2877"),c=Object(i["a"])(r,n,s,!1,null,null,null);e["a"]=c.exports},5443:function(t,e,o){"use strict";var n=o("0f8f"),s=o.n(n);s.a},"5eda":function(t,e,o){},"6d70":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("fieldset",[o("div",{staticClass:"monsterinsights-settings-input-radio"},t._l(t.options,(function(e){return o("label",{key:e.value,attrs:{for:"monsterinsights-settings-radio-"+t.name+"["+e.value+"]"}},[o("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.labelClass(e.value)}),o("input",{attrs:{id:"monsterinsights-settings-radio-"+t.name+"["+e.value+"]",type:"radio",name:t.name,autocomplete:"off",readonly:t.disabled},domProps:{value:e.value,checked:t.isChecked(e.value)},on:{change:t.updateSetting}}),o("span",{domProps:{innerHTML:t._s(e.label)}})])})),0)])},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("b0c0"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("fc11")),r=o("2f62");function i(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function c(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?i(Object(o),!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):i(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var l={name:"SettingsInputRadio",props:{options:Array,name:String,auth_disabled:{type:Boolean,default:!0}},data:function(){return{is_loading:!1,has_error:!1}},computed:c({},Object(r["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},tooltip_data:function(){return{content:this.disabled?this.$mi_need_to_auth:"",autoHide:!1,trigger:"hover focus click"}},disabled:function(){return!!this.auth_disabled&&!this.has_ua}}),methods:{updateSetting:function(t){var e=this;if(this.disabled)return!1;this.$mi_saving_toast({}),this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:t.target.value}).then((function(t){t.success?e.$mi_success_toast({}):e.$mi_error_toast({})}))},labelClass:function(t){var e="monsterinsights-styled-radio";return this.isChecked(t)&&(e+=" monsterinsights-styled-radio-checked"),e},isChecked:function(t){return this.settings[this.name]?t===this.settings[this.name]:t===this.options[0].value}}},u=l,p=o("2877"),d=Object(p["a"])(u,n,s,!1,null,null,null);e["a"]=d.exports},"6ffa":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-settings-input-repeater"},[t.rows.length?o("div",{staticClass:"monsterinsights-settings-input-repeater-labels monsterinsights-settings-input-repeater-row"},t._l(t.structure,(function(e,n){return o("label",{key:n,domProps:{textContent:t._s(e.label)}})})),0):t._e(),t._l(t.rows,(function(e,n){return[o("div",{key:n,staticClass:"monsterinsights-settings-input-repeater-row"},[t._l(t.structure,(function(e,s){return[o("input",{directives:[{name:"model",rawName:"v-model",value:t.rows[n][e.name],expression:"rows[index][input.name]"}],key:s,attrs:{type:"text",readonly:t.disabled},domProps:{value:t.rows[n][e.name]},on:{change:function(o){return t.updateSetting(!1,e.pattern)},input:function(o){o.target.composing||t.$set(t.rows[n],e.name,o.target.value)}}})]})),o("button",{attrs:{title:t.text_remove_row},on:{click:function(e){return e.preventDefault(),t.removeRow(n)}}},[o("i",{staticClass:"monstericon-times-circle"})])],2),t.has_errors[n]?o("label",{key:n+"error",staticClass:"monsterinsights-error"},[o("i",{staticClass:"monstericon-warning-triangle"}),o("span",{domProps:{innerHTML:t._s(t.has_errors[n])}})]):t._e()]})),o("button",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],class:t.button_class,domProps:{textContent:t._s(t.text_add_path)},on:{click:function(e){return e.preventDefault(),t.addRow(e)}}})],2)},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("c975"),o("a434"),o("b0c0"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("fc11")),r=o("2b0e"),i=o("561c"),c=o("2f62");function l(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function u(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?l(Object(o),!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):l(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var p={name:"SettingsInputRepeater",props:{structure:Array,name:String,text_add:String},data:function(){return{text_add_path:this.text_add?this.text_add:Object(i["a"])("Add Another Link Path","google-analytics-for-wordpress"),text_remove_row:Object(i["a"])("Remove row","google-analytics-for-wordpress"),has_errors:[]}},computed:u({},Object(c["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{rows:{get:function(){return this.settings[this.name]||r["a"].set(this.settings,this.name,[]),JSON.parse(JSON.stringify(this.settings[this.name]))},set:function(){this.updateSetting(!1)}},has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},disabled:function(){return!this.has_ua},tooltip_data:function(){return{content:this.has_ua?"":this.$mi_need_to_auth,autoHide:!1,trigger:"hover focus click"}},button_class:function(){var t="monsterinsights-button";return this.disabled&&(t+=" monsterinsights-button-disabled"),t}}),methods:{updateSetting:function(t){var e=this;return!this.disabled&&(!(!t&&!this.validateSettings())&&(this.$mi_saving_toast({}),void this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:this.rows}).then((function(t){t.success?e.$mi_success_toast({}):e.$mi_error_toast({})}))))},addRow:function(){var t={};for(var e in this.structure)t[this.structure[e]["name"]]="";this.rows.push(t),this.updateSetting(!0)},removeRow:function(t){this.rows&&this.rows instanceof Array?this.rows.splice(t,1):this.rows="",this.updateSetting()},validateSettings:function(){var t=this;this.has_errors=[];var e={};for(var o in this.rows)for(var n in this.structure){if(""===this.rows[o][this.structure[n]["name"]]){this.has_errors[o]=Object(i["d"])(Object(i["a"])("%s can't be empty.","google-analytics-for-wordpress"),"<strong>"+this.structure[n]["label"]+"</strong>");break}if(this.structure[n]["pattern"]){var s=this.structure[n]["pattern"].test(this.rows[o][this.structure[n]["name"]]);if(!1===s){this.has_errors[o]=this.structure[n]["error"];break}}this.structure[n]["prevent_duplicates"]&&function(){"undefined"===typeof e[t.structure[n]["name"]]&&(e[t.structure[n]["name"]]=[]),e[t.structure[n]["name"]].push(t.rows[o][t.structure[n]["name"]]);var s=e[t.structure[n]["name"]],a=function(){return s.filter((function(t,e){return s.indexOf(t)===e}))};s.length!==a(s).length&&(t.has_errors[o]=Object(i["a"])("Duplicate values are not allowed.","google-analytics-for-wordpress"))}()}return 0===this.has_errors.length}}},d=p,g=o("2877"),f=Object(g["a"])(d,n,s,!1,null,null,null);e["a"]=f.exports},7220:function(t,e,o){"use strict";o("4795"),o("b0c0"),o("d3b7");var n=o("bc3a"),s=o.n(n),a=o("2b0e"),r=o("561c"),i=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_vue_get_settings"),o.append("nonce",a["a"].prototype.$mi.nonce),s.a.post(a["a"].prototype.$mi.ajax,o).then((function(t){a["a"].prototype.$swal.close(),e(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var o=e.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't load settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),o.status,o.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},c=function(t,e){return new Promise((function(t){var o=new FormData;o.append("action","monsterinsights_vue_update_settings"),o.append("nonce",a["a"].prototype.$mi.nonce),o.append("setting",e.name),!1!==e.value&&(Array===e.value.constructor?o.append("value",JSON.stringify(e.value)):o.append("value",e.value)),s.a.post(a["a"].prototype.$mi.ajax,o).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't save settings. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("Network error encountered. Settings not saved.","google-analytics-for-wordpress")})}))}))},l={fetchSettings:i,saveSettings:c},u=function(t){l.fetchSettings(t).then((function(e){t.commit("SETTINGS_UPDATED",e)})).catch((function(t){console.error(t)}))},p=function(t,e){t.commit("SETTING_UPDATE",e),t.commit("SETTINGS_SAVE_START");var o=l.saveSettings(t,e);return o.then((function(){t.commit("SETTINGS_SAVE_END")})),o},d=function(t,e){t.commit("SETTING_UPDATE_UNDO",e),t.commit("SETTINGS_SAVE_START");var o=l.saveSettings(t,e);return o.then((function(){t.commit("SETTINGS_SAVE_END")})),o},g=function(t,e){t.commit("SETTING_UPDATE_REDO",e),t.commit("SETTINGS_SAVE_START");var o=l.saveSettings(t,e);return o.then((function(){t.commit("SETTINGS_SAVE_END")})),o},f=function(t){t.commit("SETTINGS_SAVE_START"),a["a"].prototype.$mi_saving_toast({}),setTimeout((function(){t.commit("SETTINGS_SAVE_END"),a["a"].prototype.$mi_success_toast({})}),1e3)},h=function(t){t.dispatch("updateSettingsUndo",t.state.history[t.state.historyIndex-1])},m=function(t){t.dispatch("updateSettingsRedo",t.state.history[t.state.historyIndex+1])},_={getSettings:u,updateSettings:p,simulateSave:f,undo:h,redo:m,updateSettingsUndo:d,updateSettingsRedo:g},y=function(t){return t.settings},b=function(t){return t.history},v=function(t){return t.historyIndex},w={settings:y,history:b,historyIndex:v},O=(o("a434"),function(t,e){e.is_saving=!1,t.settings=e}),j=function(t,e){t.settings.is_saving=!0,t.history[t.historyIndex]&&t.history[t.historyIndex].name===e.name||(t.history.push({name:e.name,value:!!t.settings[e.name]&&t.settings[e.name]}),t.historyIndex++),t.historyIndex<t.history.length-1&&t.history.splice(t.historyIndex+1),t.history.push({name:e.name,value:e.value}),t.historyIndex++,a["a"].set(t.settings,e.name,e.value)},k=function(t,e){t.settings.is_saving=!0,t.historyIndex--,a["a"].set(t.settings,e.name,e.value)},$=function(t,e){t.settings.is_saving=!0,t.historyIndex++,a["a"].set(t.settings,e.name,e.value)},E=function(t){t.settings.is_saving=!0},P=function(t){t.settings.is_saving=!1},T={SETTINGS_UPDATED:O,SETTING_UPDATE:j,SETTINGS_SAVE_START:E,SETTINGS_SAVE_END:P,SETTING_UPDATE_UNDO:k,SETTING_UPDATE_REDO:$},C={settings:{automatic_updates:"all"},history:[],historyIndex:-1};e["a"]={namespaced:!0,state:C,actions:_,getters:w,mutations:T}},7460:function(t,e,o){"use strict";o("c975"),o("4d63"),o("ac1f"),o("25f0"),o("466d"),o("5319");var n=o("2b0e"),s={install:function(t){window.monsterinsights&&(t.prototype.$mi=window.monsterinsights),t.prototype.$isPro=i,t.prototype.$addQueryArg=c,t.prototype.$getUrl=r,t.prototype.$getUpgradeUrl=a}};function a(t,e,o){var n=r(t,e,o);return i()?n:"0"!==window.monsterinsights.shareasale_id?c(window.monsterinsights.shareasale_url,"urllink",n):n}function r(t,e,o){var s=i()?"proplugin":"liteplugin",a=i()?"my-account/":"lite/",r=n["a"].prototype.$mi.plugin_version;return t=t||"defaultmedium",e=e||"defaultcampaign",o=o||"https://www.monsterinsights.com/"+a,o=c(o,"utm_source",s),o=c(o,"utm_medium",t),o=c(o,"utm_campaign",e),o=c(o,"utm_content",r),o}function i(){return!1}function c(t,e,o){var n=new RegExp("([?&])"+e+"=.*?(&|#|$)","i");if(t.match(n))return t.replace(n,"$1"+e+"="+o+"$2");var s="";-1!==t.indexOf("#")&&(s=t.replace(/.*#/,"#"),t=t.replace(/#.*/,""));var a=-1!==t.indexOf("?")?"&":"?";return t+a+e+"="+o+s}e["a"]=s},"79b7":function(t,e,o){"use strict";var n=o("f6bd"),s=o.n(n);s.a},"8c1c":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-not-authenticated-notice"},[o("h3",{domProps:{textContent:t._s(t.text_no_auth)}}),o("p",{domProps:{textContent:t._s(t.text_auth_label)}}),o("p",[o("button",{staticClass:"monsterinsights-button",domProps:{textContent:t._s(t.text_button_reconnect)},on:{click:t.doReAuth}})])])},s=[],a=o("561c"),r={name:"ReportReAuth",data:function(){return{text_no_auth:Object(a["a"])("MonsterInsights encountered an error loading your report data","google-analytics-for-wordpress"),text_auth_label:Object(a["a"])("There is an issue with your Google Account authentication. Please use the button below to fix it by re-authenticating.","google-analytics-for-wordpress"),text_button_reconnect:Object(a["a"])("Reconnect MonsterInsights","google-analytics-for-wordpress")}},methods:{doReAuth:function(t){t.preventDefault();var e=this;this.$swal({type:"info",title:Object(a["a"])("Re-Authenticating","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){e.$swal.showLoading()}}),this.$store.dispatch("$_auth/doReAuth",this.is_network).then((function(t){t.data.redirect?window.location=t.data.redirect:e.$swal({type:"error",title:Object(a["a"])("Error","google-analytics-for-wordpress"),text:t.data.message,confirmButtonText:Object(a["a"])("Ok","google-analytics-for-wordpress")})}))}}},i=r,c=o("2877"),l=Object(c["a"])(i,n,s,!1,null,null,null);e["a"]=l.exports},"8c50":function(t,e,o){},"93ec":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("span",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],staticClass:"monsterinsights-info",attrs:{tabindex:"0"}},[o("i",{staticClass:"monstericon monstericon-info-circle-regular"})])},s=[],a={name:"SettingsInfoTooltip",props:{content:String},data:function(){return{tooltip_data:{content:this.content,autoHide:!1,trigger:"hover focus click"}}}},r=a,i=o("2877"),c=Object(i["a"])(r,n,s,!1,null,null,null);e["a"]=c.exports},"9d59":function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-notices-area"},[o("div",{staticClass:"monsterinsights-container"},[o("slide-down-up",{attrs:{group:!0}},t._l(t.notices,(function(e,n){return o("div",{key:n,class:t.getNoticeClass(e.type)},[o("div",{staticClass:"monsterinsights-notice-inner"},[e.dismissable?o("button",{staticClass:"dismiss-notice",on:{click:function(e){return t.removeNotice(n)}}},[o("i",{staticClass:"monstericon-times"})]):t._e(),o("div",{staticClass:"notice-content"},[e.title?o("h2",{staticClass:"notice-title",domProps:{innerHTML:t._s(e.title)}}):t._e(),o("span",{domProps:{innerHTML:t._s(e.content)}}),e.button&&e.button.enabled?o("div",{staticClass:"monsterinsights-notice-button"},[o("a",{class:t.buttonClass(e.type),attrs:{target:"_blank",href:e.button.link},domProps:{textContent:t._s(e.button.text)}})]):t._e()])])])})),0)],1)])},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("fc11")),r=o("2f62"),i=o("d98d");function c(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function l(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?c(Object(o),!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):c(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var u={name:"TheAppNotices",components:{SlideDownUp:i["a"]},computed:l({},Object(r["b"])({notices:"$_app/notices"})),methods:{removeNotice:function(t){this.$store.dispatch("$_app/removeNotice",t)},getNoticeClass:function(t){return"monsterinsights-notice monsterinsights-notice-"+t},buttonClass:function(t){var e="monsterinsights-button";return"success"===t&&(e+=" monsterinsights-button-green"),e}}},p=u,d=o("2877"),g=Object(d["a"])(p,n,s,!1,null,null,null);e["a"]=g.exports},"9df6":function(t,e,o){"use strict";var n=o("8c50"),s=o.n(n);s.a},a158:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("header",{staticClass:"monsterinsights-header"},[o("the-floating-bar"),o("div",{staticClass:"monsterinsights-container"},[o("div",{staticClass:"monsterinsights-logo-area"},[o("img",{attrs:{src:t.logo,srcset:t.logo2x}})]),o("div",{staticClass:"float-right"},[t._t("default")],2)])],1)},s=[],a=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("transition",{attrs:{name:"monsterinsights-slide"}},[t.showBar?o("div",{staticClass:"monsterinsights-floating-bar"},[o("span",{domProps:{innerHTML:t._s(t.barText)}}),o("button",{staticClass:"monsterinsights-floating-bar-close",on:{click:t.hideBar}},[o("span",{staticClass:"monstericon-times"})])]):t._e()])},r=[],i=(o("4795"),o("c8cf"),o("561c")),c=o("bc3a"),l=o.n(c),u={name:"TheFloatingBar",data:function(){return{showBar:!1,barLink:this.$getUpgradeUrl("floatbar","upgrade")}},computed:{barText:function(){return Object(i["d"])(Object(i["a"])("You’re using MonsterInsights Lite. To unlock more features consider %supgrading to Pro%s.","google-analytics-for-wordpress"),'<a href="'+this.barLink+'" target="_blank">',"</a>")}},methods:{hideBar:function(){this.showBar=!1;var t=new FormData;t.append("action","monsterinsights_hide_floatbar"),t.append("nonce",this.$mi.nonce),l.a.post(this.$mi.ajax,t)},getBarStatus:function(){var t=this,e=new FormData;e.append("action","monsterinsights_get_floatbar"),e.append("nonce",this.$mi.nonce),l.a.post(this.$mi.ajax,e).then((function(e){t.showBar=e.data.show})).catch((function(){t.showBar=!1}))}},mounted:function(){var t=this;setTimeout((function(){t.getBarStatus()}),1500)}},p=u,d=o("2877"),g=Object(d["a"])(p,a,r,!1,null,null,null),f=g.exports,h={name:"TheAppHeader",components:{TheFloatingBar:f},data:function(){return{logo:this.$mi.assets+"/img/logo.png",logo2x:this.$mi.assets+"/img/logo@2x.png 2x"}}},m=h,_=(o("9df6"),Object(d["a"])(m,n,s,!1,null,"7a774924",null));e["a"]=_.exports},a4cc:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-welcome-overlay",on:{click:t.maybeClose}},[o("div",{staticClass:"monsterinsights-welcome-overlay-inner"},[o("button",{staticClass:"monsterinsights-overlay-close",on:{click:t.close}},[o("span",{staticClass:"monstericon-times"})]),o("div",{staticClass:"monsterinsights-welcome-overlay-content"},[t._t("default")],2)])])},s=[],a={name:"WelcomeOverlay",props:{id:String},methods:{close:function(){this.$emit("close",this.id)},maybeClose:function(t){t.target.classList.contains("monsterinsights-welcome-overlay")&&this.close()}}},r=a,i=o("2877"),c=Object(i["a"])(r,n,s,!1,null,null,null);e["a"]=c.exports},aa9f:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-settings-input-select"},[o("label",{attrs:{for:t.id}},[o("span",{staticClass:"monsterinsights-dark",domProps:{innerHTML:t._s(t.label)}}),t.description?o("span",{domProps:{innerHTML:t._s(t.description)}}):t._e(),t.tooltip?o("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e()],1),o("div",{staticClass:"monsterinsights-settings-input-select-input"},[o("multiselect",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.disabled_tooltip,expression:"disabled_tooltip"}],attrs:{options:t.options,multiple:t.multiple,"track-by":"value",label:"label",searchable:!1,selectLabel:"",selectedLabel:"",deselectLabel:"",readonly:t.disabled},on:{input:t.updateSetting},scopedSlots:t._u([{key:"tag",fn:function(e){var n=e.option,s=(e.search,e.remove);return[o("span",{class:t.tagClass(n)},[o("span",{domProps:{textContent:t._s(n.label)}}),o("i",{staticClass:"multiselect__tag-icon",attrs:{"aria-hidden":"true",tabindex:"0"},on:{keypress:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:(e.preventDefault(),s(n))},mousedown:function(t){return t.preventDefault(),s(n)}}})])]}}]),model:{value:t.selected,callback:function(e){t.selected=e},expression:"selected"}})],1)])},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("c975"),o("b0c0"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("fc11")),r=o("561c"),i=o("2f62"),c=o("8e5f"),l=o.n(c),u=o("93ec");function p(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function d(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?p(Object(o),!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):p(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var g={name:"SettingsInputSelect",components:{SettingsInfoTooltip:u["a"],Multiselect:l.a},props:{options:Array,forced:{type:Array,default:function(){return[]}},name:String,label:String,description:String,multiple:{type:Boolean,default:!1},tooltip:String,disabled:{type:Boolean,default:!1}},data:function(){return{is_loading:!1,has_error:!1,id:"input-"+this.name,text_no_options:Object(r["a"])("No options available","google-analytics-for-wordpress")}},computed:d({},Object(i["b"])({settings:"$_settings/settings"}),{selected:{get:function(){var t=JSON.parse(JSON.stringify(this.forced));if(this.settings[this.name])for(var e in this.options)this.settings[this.name].indexOf(this.options[e].value)>=0&&this.notForced(this.options[e])&&t.push(this.options[e]);return t},set:function(){}},disabled_tooltip:function(){return{content:this.disabled?this.$mi_need_to_auth:"",autoHide:!1,trigger:"hover focus click"}}}),methods:{updateSetting:function(t){var e=this;if(this.disabled)return!1;this.$mi_saving_toast({});var o=[];for(var n in t)o.push(t[n].value);this.$store.dispatch("$_settings/updateSettings",{name:this.name,value:o}).then((function(t){t.success?e.$mi_success_toast({}):e.$mi_error_toast({})}))},notForced:function(t){for(var e in this.forced)if(this.forced[e].value===t.value)return!1;return!0},tagClass:function(t){var e="multiselect__tag";return this.notForced(t)||(e+=" monsterinsights-tag-forced"),e}}},f=g,h=(o("ed71"),o("2877")),m=Object(h["a"])(f,n,s,!1,null,"f66259b4",null);e["a"]=m.exports},ac39:function(t,e,o){},b333:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-settings-network-notice"},[t._m(0),o("div",{staticClass:"monsterinsights-network-message"},[t._t("default")],2)])},s=[function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",[o("div",{staticClass:"monsterinsights-bg-img monsterinsights-icon-warning"})])}],a={name:"SettingsNetworkNotice"},r=a,i=(o("5443"),o("2877")),c=Object(i["a"])(r,n,s,!1,null,"a9c27d52",null);e["a"]=c.exports},b52e:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{class:t.boxClass},[o("button",{staticClass:"monsterinsights-quick-links-label",on:{click:function(e){e.stopPropagation(),t.showMenu=!t.showMenu}}},[o("span",{staticClass:"monsterinsights-bg-img monsterinsights-quick-links-mascot"}),o("span",{staticClass:"monsterinsights-quick-link-title",domProps:{textContent:t._s(t.text_see_quick)}})]),o("transition-group",{staticClass:"monsterinsights-quick-links-menu",attrs:{tag:"div",name:"monsterinsights-staggered-fade"},on:{enter:t.enter,leave:t.leave}},[t.showMenu?t._l(t.menuItems,(function(e,n){return o("a",{key:e.key,staticClass:"monsterinsights-quick-links-menu-item",attrs:{href:e.link,"data-index":n,target:"_blank"}},[o("span",{class:e.icon}),o("span",{staticClass:"monsterinsights-quick-link-title",domProps:{innerHTML:t._s(e.tooltip)}})])})):t._e()],2)],1)},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("e439"),o("dbb4"),o("b64b"),o("159b"),o("4795"),o("fc11")),r=(o("ac39"),o("561c")),i=o("2f62");function c(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function l(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?c(Object(o),!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):c(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var u={name:"TheQuickLinks",data:function(){return{showMenu:!1,text_see_quick:Object(r["a"])("See Quick Links","google-analytics-for-wordpress")}},computed:l({},Object(i["b"])({license:"$_license/license",license_network:"$_license/license_network"}),{boxClass:function(){var t="monsterinsights-quick-links";return this.showMenu&&(t+=" monsterinsights-quick-links-open"),t},licenseLevel:function(){return this.$mi.network?this.license_network.type:this.license.type},showUpsell:function(){return"plus"===this.licenseLevel||"basic"===this.licenseLevel||""===this.licenseLevel},menuItems:function(){var t=[{icon:"monstericon-lightbulb",tooltip:Object(r["a"])("Suggest a Feature","google-analytics-for-wordpress"),link:this.$getUrl("quick-links","suggest-feature","https://www.monsterinsights.com/customer-feedback/"),key:"suggest"},{icon:"monstericon-wpbeginner",tooltip:Object(r["a"])("Join Our Community","google-analytics-for-wordpress"),link:this.$getUrl("quick-links","suggest-feature","https://www.facebook.com/groups/wpbeginner/"),key:"community"},{icon:"monstericon-life-ring",tooltip:Object(r["a"])("Support & Docs","google-analytics-for-wordpress"),link:this.$getUrl("quick-links","support","https://www.monsterinsights.com/docs/"),key:"support"}];return this.showUpsell&&t.unshift({icon:"monstericon-shopping-cart",tooltip:Object(r["a"])("Upgrade to Pro &#187;","google-analytics-for-wordpress"),link:this.$getUpgradeUrl("quick-links","upgrade"),key:"upgrade"}),t}}),methods:{enter:function(t,e){var o=50*t.dataset.index;setTimeout((function(){t.classList.add("monsterinsights-show"),e()}),o)},leave:function(t,e){t.classList.remove("monsterinsights-show"),setTimeout((function(){e()}),200)}}},p=u,d=o("2877"),g=Object(d["a"])(p,n,s,!1,null,null,null);e["a"]=g.exports},bd74:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return t.value?o("div",{staticClass:"monsterinsights-reports-infobox"},[t.title?o("div",{staticClass:"monsterinsights-report-title",domProps:{textContent:t._s(t.title)}}):t._e(),t.tooltip?o("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e(),t.value?o("div",{staticClass:"monsterinsights-reports-infobox-number",attrs:{title:t.value},domProps:{textContent:t._s(t.value)}}):t._e(),o("div",{class:t.changeClass,domProps:{innerHTML:t._s(t.changeText)}}),t.days?o("div",{staticClass:"monsterinsights-reports-infobox-compare",domProps:{textContent:t._s(t.compare)}}):t._e()],1):t._e()},s=[],a=(o("a9e3"),o("561c")),r=o("93ec"),i={name:"ReportInfobox",components:{SettingsInfoTooltip:r["a"]},props:{title:String,value:String,days:Number,tooltip:String,change:Number,color:{default:"green",type:String},direction:{default:"up",type:String}},computed:{compare:function(){return Object(a["b"])("vs. Previous Day",Object(a["d"])("vs. Previous %s Days",this.days),this.days,"google-analytics-for-wordpress")},changeClass:function(){var t="monsterinsights-reports-infobox-prev";return 0===this.change?t:t+" monsterinsights-"+this.color},changeText:function(){return this.change?""===this.direction?this.change+"%":'<span class="monsterinsights-arrow monsterinsights-'+this.direction+" monsterinsights-"+this.color+'"></span> '+this.change+"%":Object(a["a"])("No change","google-analytics-for-wordpress")}}},c=i,l=o("2877"),u=Object(l["a"])(c,n,s,!1,null,null,null);e["a"]=u.exports},bef0:function(t,e,o){},c472:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"settings-input-text"},[o("label",{attrs:{for:t.id}},[o("span",{staticClass:"monsterinsights-dark",domProps:{innerHTML:t._s(t.label)}}),t.description?o("span",{domProps:{innerHTML:t._s(t.description)}}):t._e(),t.showReset()?o("a",{staticClass:"monsterinsights-reset-default",attrs:{href:"#"},domProps:{textContent:t._s(t.text_reset)},on:{click:function(e){return e.preventDefault(),t.resetValue(e)}}}):t._e(),t.tooltip?o("settings-info-tooltip",{attrs:{content:t.tooltip}}):t._e()],1),o("div",{staticClass:"settings-input-text-input"},["checkbox"===t.type?o("input",{directives:[{name:"model",rawName:"v-model",value:t.value,expression:"value"},{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],attrs:{id:t.id,name:t.name,placeholder:t.placeholder,readonly:t.disabled,type:"checkbox"},domProps:{checked:Array.isArray(t.value)?t._i(t.value,null)>-1:t.value},on:{change:[function(e){var o=t.value,n=e.target,s=!!n.checked;if(Array.isArray(o)){var a=null,r=t._i(o,a);n.checked?r<0&&(t.value=o.concat([a])):r>-1&&(t.value=o.slice(0,r).concat(o.slice(r+1)))}else t.value=s},t.inputUpdate]}}):"radio"===t.type?o("input",{directives:[{name:"model",rawName:"v-model",value:t.value,expression:"value"},{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],attrs:{id:t.id,name:t.name,placeholder:t.placeholder,readonly:t.disabled,type:"radio"},domProps:{checked:t._q(t.value,null)},on:{change:[function(e){t.value=null},t.inputUpdate]}}):o("input",{directives:[{name:"model",rawName:"v-model",value:t.value,expression:"value"},{name:"tooltip",rawName:"v-tooltip",value:t.tooltip_data,expression:"tooltip_data"}],attrs:{id:t.id,name:t.name,placeholder:t.placeholder,readonly:t.disabled,type:t.type},domProps:{value:t.value},on:{change:t.inputUpdate,input:function(e){e.target.composing||(t.value=e.target.value)}}})]),t.has_error?o("label",{staticClass:"monsterinsights-error"},[o("i",{staticClass:"monstericon-warning-triangle"}),o("span",{domProps:{innerHTML:t._s(t.text_error)}})]):t._e()])},s=[],a=(o("a4d3"),o("4de4"),o("4160"),o("b0c0"),o("e439"),o("dbb4"),o("b64b"),o("4d63"),o("ac1f"),o("25f0"),o("159b"),o("fc11")),r=o("561c"),i=o("2f62"),c=o("93ec");function l(t,e){var o=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),o.push.apply(o,n)}return o}function u(t){for(var e=1;e<arguments.length;e++){var o=null!=arguments[e]?arguments[e]:{};e%2?l(Object(o),!0).forEach((function(e){Object(a["a"])(t,e,o[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(o)):l(Object(o)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(o,e))}))}return t}var p={name:"SettingsInputText",components:{SettingsInfoTooltip:c["a"]},props:{name:String,label:String,description:String,placeholder:String,type:{type:String,default:"text"},tooltip:String,default_value:String,format:RegExp},data:function(){return{is_loading:!1,has_error:!1,id:"input-"+this.name,text_reset:Object(r["a"])("Reset to default","google-analytics-for-wordpress"),text_error:Object(r["a"])("The value entered does not match the required format","google-analytics-for-wordpress"),updated_value:!1}},computed:u({},Object(i["b"])({settings:"$_settings/settings",auth:"$_auth/auth"}),{has_ua:function(){var t=this.auth.network_ua?this.auth.network_ua:this.auth.ua;return t||(t=this.auth.network_manual_ua?this.auth.network_manual_ua:this.auth.manual_ua),""!==t},value:{get:function(){return!1!==this.updated_value?this.updated_value:this.settings[this.name]},set:function(t){return this.updated_value=t}},tooltip_data:function(){return{content:this.has_ua?"":this.$mi_need_to_auth,autoHide:!1,trigger:"hover focus click"}},disabled:function(){return!this.has_ua}}),methods:{inputUpdate:function(t){this.updateSetting(t.target.name,t.target.value)},updateSetting:function(t,e){var o=this;return!this.disabled&&(this.has_error=!1,this.format&&!this.format.test(e)?(this.has_error=!0,!1):(this.$mi_saving_toast({}),void this.$store.dispatch("$_settings/updateSettings",{name:t,value:e}).then((function(t){t.success?o.$mi_success_toast({}):o.$mi_error_toast({})}))))},showReset:function(){return this.default_value&&this.settings[this.name]!==this.default_value},resetValue:function(){return this.updateSetting(this.name,this.default_value)}}},d=p,g=(o("79b7"),o("2877")),f=Object(g["a"])(d,n,s,!1,null,"493c7577",null);e["a"]=f.exports},c8cf:function(t,e,o){},d3fc:function(t,e,o){"use strict";var n=function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"monsterinsights-widget-error"},[o("div",{staticClass:"swal2-header"},[t._m(0),o("h2",{staticClass:"swal2-title",attrs:{id:"monsterinsights-error-title"},domProps:{textContent:t._s(t.title)}})]),t.error.content?o("div",{staticClass:"monsterinsights-error-content",domProps:{innerHTML:t._s(t.error.content)}}):t._e(),t.error.footer?o("div",{staticClass:"monsterinsights-error-footer",domProps:{innerHTML:t._s(t.error.footer)}}):t._e()])},s=[function(){var t=this,e=t.$createElement,o=t._self._c||e;return o("div",{staticClass:"swal2-icon swal2-error swal2-animate-error-icon",staticStyle:{display:"flex"}},[o("span",{staticClass:"swal2-x-mark"},[o("span",{staticClass:"swal2-x-mark-line-left"}),o("span",{staticClass:"swal2-x-mark-line-right"})])])}],a=o("561c"),r={props:{error:[Object,Boolean]},computed:{title:function(){return this.error.title.title?this.error.title.title:Object(a["a"])("Error","google-analytics-for-wordpress")}},name:"WidgetReportError"},i=r,c=o("2877"),l=Object(c["a"])(i,n,s,!1,null,null,null);e["a"]=l.exports},d429:function(t,e,o){"use strict";o("d3b7");var n=o("bc3a"),s=o.n(n),a=o("2b0e"),r=o("561c"),i=function(t,e,o,n){return new Promise((function(i){var c=new FormData;c.append("action","monsterinsights_vue_get_report_data"),c.append("nonce",a["a"].prototype.$mi.nonce),c.append("report",e),c.append("start",o),c.append("end",n),s.a.post(a["a"].prototype.$mi.ajax,c).then((function(t){i(t.data)})).catch((function(e){if(t.dispatch("$_app/block",!1,{root:!0}),e.response){var o=e.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't load report data. Error: %1$s, %2$s","google-analytics-for-wordpress"),o.status,o.statusText)})}a["a"].prototype.$swal.hideLoading(),a["a"].prototype.$mi_error_toast({allowOutsideClick:!0,allowEscapeKey:!0,title:Object(r["a"])("Error loading report data","google-analytics-for-wordpress"),html:e.message})}))}))};e["a"]={fetchReportData:i}},d98d:function(t,e,o){"use strict";o("4795");var n,s,a={name:"SlideDownUp",functional:!0,props:{group:{type:Boolean,default:!1},done:Function},render:function(t,e){var o={props:{name:"expand"},on:{afterEnter:function(t){t.style.height="auto"},enter:function(t){var o=getComputedStyle(t),n=o.width;t.style.width=n,t.style.position="absolute",t.style.visibility="hidden",t.style.height="auto";var s=getComputedStyle(t),a=s.height;t.style.width="auto",t.style.position="relative",t.style.visibility="visible",t.style.height=0,setTimeout((function(){t.style.height=a})),e.props.done&&setTimeout((function(){e.props.done()}),500)},leave:function(t){var e=getComputedStyle(t),o=e.height;t.style.height=o,setTimeout((function(){t.style.height=0}))}}},n="transition";return e.props.group&&(n="transition-group"),t(n,o,e.children)}},r=a,i=(o("dffc"),o("e8ca"),o("2877")),c=Object(i["a"])(r,n,s,!1,null,"6038a3d0",null);e["a"]=c.exports},dd62:function(t,e,o){"use strict";o("d3b7");var n=o("bc3a"),s=o.n(n),a=o("2b0e"),r=o("561c"),i=function(){return new Promise((function(t){var e=a["a"].prototype.$mi.ajax,o=new FormData;o.append("action","monsterinsights_vue_get_license"),o.append("nonce",a["a"].prototype.$mi.nonce),s.a.post(e,o).then((function(e){t(e.data)})).catch((function(t){if(t.response){var e=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't load license details. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}a["a"].prototype.$mi_error_toast({allowOutsideClick:!0,allowEscapeKey:!0,title:Object(r["a"])("Error loading license details","google-analytics-for-wordpress"),html:t.message})}))}))},c=function(t,e){var o=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return new Promise((function(n){var i=new FormData;i.append("action","monsterinsights_verify_license"),i.append("nonce",a["a"].prototype.$mi.nonce),i.append("license",t),o&&i.append("network",!0),s.a.post(a["a"].prototype.$mi.ajax,i).then((function(t){t.data.success&&(o?e.commit("LICENSE_NETWORK_TYPE_UPDATED",t.data.data.license_type):e.commit("LICENSE_TYPE_UPDATED",t.data.data.license_type),e.dispatch("$_addons/getAddons","",{root:!0})),n(t)})).catch((function(t){if(t.response){var e=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't verify the license. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},l=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_validate_license"),o.append("nonce",a["a"].prototype.$mi.nonce),t&&o.append("network",!0),s.a.post(a["a"].prototype.$mi.ajax,o).then((function(t){e(t)})).catch((function(t){if(t.response){var e=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't validate the license. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},u=function(t,e){return new Promise((function(o){var n=new FormData,i=e?t.state.license_network.key:t.state.license.key;n.append("action","monsterinsights_deactivate_license"),n.append("nonce",a["a"].prototype.$mi.nonce),n.append("license",i),e&&n.append("network",!0),s.a.post(a["a"].prototype.$mi.ajax,n).then((function(n){n.data.success&&(e?(t.commit("LICENSE_NETWORK_KEY_UPDATED",""),t.commit("LICENSE_NETWORK_TYPE_UPDATED","")):(t.commit("LICENSE_KEY_UPDATED",""),t.commit("LICENSE_TYPE_UPDATED",""))),o(n)})).catch((function(t){if(t.response){var e=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't deactivate the license. Error: %1$s, %2$s","google-analytics-for-wordpress"),e.status,e.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))},p=function(t){return new Promise((function(e){var o=new FormData;o.append("action","monsterinsights_connect_url"),o.append("nonce",a["a"].prototype.$mi.nonce),o.append("key",t),s.a.post(a["a"].prototype.$mi.ajax,o).then((function(t){t.data&&e(t.data)})).catch((function(t){if(e(!1),t.response){var o=t.response;return a["a"].prototype.$mi_error_toast({title:Object(r["d"])(Object(r["a"])("Can't upgrade to PRO please try again. Error: %1$s, %2$s","google-analytics-for-wordpress"),o.status,o.statusText)})}a["a"].prototype.$mi_error_toast({title:Object(r["a"])("You appear to be offline.","google-analytics-for-wordpress")})}))}))};e["a"]={fetchLicense:i,verifyLicense:c,validateLicense:l,deactivateLicense:u,getUpgradeLink:p}},dffc:function(t,e,o){"use strict";var n=o("f6e1"),s=o.n(n);s.a},e8ca:function(t,e,o){"use strict";var n=o("bef0"),s=o.n(n);s.a},ed71:function(t,e,o){"use strict";var n=o("f87e"),s=o.n(n);s.a},f284:function(t,e,o){"use strict";o("fb6a"),o("d3b7"),o("4795");var n=o("d429"),s=o("2b0e"),a=o("561c"),r=function(t,e){return new Promise((function(o){return s["a"].prototype.$mi.authed?t.state[e]&&t.state[e].reportcurrentrange&&t.state[e].reportcurrentrange.startDate===t.state.date.start&&t.state[e].reportcurrentrange.endDate===t.state.date.end?(o(!1),t.commit("DISABLE_BLUR"),!1):(s["a"].prototype.$mi_loading_toast(),t.commit("ENABLE_BLUR"),void n["a"].fetchReportData(t,e,t.state.date.start,t.state.date.end).then((function(n){if("license_level"===n.data.message)return p(t),void o(!1);if(n.success)p(t),t.commit("DISABLE_BLUR"),t.commit("UPDATE_REPORT_DATA",{report:e,data:n.data}),o(!0);else{if("invalid_grant"===n.data.message)return p(t),o(!1),void t.commit("ENABLE_REAUTH");n.data.footer&&"install_addon"===n.data.footer?i(t,e).then((function(o){t.rootState.$_widget&&(t.commit("DISABLE_BLUR"),t.commit("$_widget/UPDATE_LOADED",!0,{root:!0}));var r=o?"activate":"install";s["a"].prototype.$mi_error_toast({title:!1,html:Object(a["d"])(n.data.message,r),footer:'<a href="'+s["a"].prototype.$mi.addons_url+'">'+Object(a["a"])("Visit addons page","google-analytics-for-wordpress")+"</a>",report:e}),s["a"].prototype.$swal({type:"error",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Report Unavailable","google-analytics-for-wordpress"),html:Object(a["d"])(n.data.message,r),allowOutsideClick:!0,allowEscapeKey:!0,allowEnterKey:!1,showCancelButton:!0,confirmButtonText:Object(a["d"])(Object(a["a"])("%s Addon","google-analytics-for-wordpress"),r.charAt(0).toUpperCase()+r.slice(1)),cancelButtonText:Object(a["a"])("Dismiss","google-analytics-for-wordpress")}).then((function(n){n.value&&(o?l(t,t.rootState.$_addons.addons[e]):c(t,e))}))})):(o(!1),s["a"].prototype.$mi_error_toast({title:!1,html:n.data.message,footer:n.data.footer,report:e}))}}))):(o(!1),t.commit("ENABLE_BLUR"),t.commit("ENABLE_NOAUTH"),!1)}))};function i(t,e){return new Promise((function(o){t.dispatch("$_addons/getAddons","",{root:!0}).then((function(){t.rootState.$_addons.addons[e]&&t.rootState.$_addons.addons[e].installed?o(!0):o(!1)})).catch((function(){o(!1),u()}))}))}function c(t,e){s["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Installing Addon","google-analytics-for-wordpress"),html:Object(a["a"])("Please wait","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){s["a"].prototype.$swal.showLoading(),t.dispatch("$_addons/installAddon",t.rootState.$_addons.addons[e],{root:!0}).then((function(){l(t,t.rootState.$_addons.addons[e])})).catch((function(){u()}))}})}function l(t,e){s["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Activating Addon","google-analytics-for-wordpress"),html:Object(a["a"])("Please wait","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){s["a"].prototype.$swal.showLoading()}}),t.dispatch("$_addons/activateAddon",e,{root:!0}).then((function(){s["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Addon Activated","google-analytics-for-wordpress"),html:Object(a["a"])("Loading report data","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){s["a"].prototype.$swal.showLoading(),setTimeout((function(){window.location.reload()}),1e3)}})})).catch((function(t){u(t)}))}function u(t){var e=Object(a["a"])("Please activate manually","google-analytics-for-wordpress");t.response&&(e=Object(a["d"])(Object(a["a"])("Error: %s, %s","google-analytics-for-wordpress"),t.response.status,t.response.statusText)),s["a"].prototype.$swal({type:"error",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Error Activating Addon","google-analytics-for-wordpress"),html:e,allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,showCancelButton:!0,confirmButtonText:Object(a["a"])("View Addons","google-analytics-for-wordpress"),cancelButtonText:Object(a["a"])("Dismiss","google-analytics-for-wordpress")}).then((function(t){t.value&&(window.location=s["a"].prototype.$mi.addons_url,s["a"].prototype.$swal({type:"info",customContainerClass:"monsterinsights-swal",title:Object(a["a"])("Redirecting","google-analytics-for-wordpress"),html:Object(a["a"])("Please wait","google-analytics-for-wordpress"),allowOutsideClick:!1,allowEscapeKey:!1,allowEnterKey:!1,onOpen:function(){s["a"].prototype.$swal.showLoading()}}))}))}function p(t){t.rootState.$_widget||s["a"].prototype.$swal.close()}var d={getReportData:r},g=function(t){return t.date},f=function(t){return t.activeReport},h=function(t){return t.blur},m=function(t){return t.mobileTableExpanded},_=function(t){return t.overview},y=function(t){return t.publisher},b=function(t){return t.ecommerce},v=function(t){return t.queries},w=function(t){return t.dimensions},O=function(t){return t.forms},j=function(t){return t.realtime},k=function(t){return t.yearinreview},$=function(t){return t.noauth},E=function(t){return t.reauth},P={date:g,activeReport:f,blur:h,mobileTableExpanded:m,overview:_,publisher:y,ecommerce:b,queries:v,dimensions:w,forms:O,realtime:j,noauth:$,yearinreview:k,reauth:E},T=function(t,e){e.report&&e.data&&t[e.report]&&s["a"].set(t,e.report,e.data)},C=function(t,e){e.start&&e.end&&(s["a"].set(t.date,"start",e.start),s["a"].set(t.date,"end",e.end))},S=function(t,e){s["a"].set(t.date,"interval",e)},x=function(t,e){s["a"].set(t.date,"text",e)},A=function(t,e){t.activeReport=e},D=function(t){t.blur=!0},L=function(t){t.blur=!1},I=function(t){t.mobileTableExpanded=!0},N=function(t){t.mobileTableExpanded=!1},U=function(t){t.noauth=!0},R=function(t){t.reauth=!0},M={UPDATE_REPORT_DATA:T,UPDATE_DATE:C,UPDATE_ACTIVE_REPORT:A,UPDATE_INTERVAL:S,UPDATE_DATE_TEXT:x,ENABLE_BLUR:D,DISABLE_BLUR:L,EXPAND_TABLES:I,CONTRACT_TABLES:N,ENABLE_NOAUTH:U,ENABLE_REAUTH:R},B={date:{start:"",end:"",interval:30,text:""},blur:!1,activeReport:"overview",mobileTableExpanded:!1,overview:{},publisher:{},ecommerce:{},queries:{},dimensions:{},forms:{},realtime:{},yearinreview:{},noauth:!1,reauth:!1};e["a"]={namespaced:!0,state:B,actions:d,getters:P,mutations:M}},f6bd:function(t,e,o){},f6e1:function(t,e,o){},f87e:function(t,e,o){}}]);
lite/assets/vue/js/chunk-frontend-vendors.js CHANGED
@@ -1,20 +1,20 @@
1
- (window["monsterinsightsjsonp"]=window["monsterinsightsjsonp"]||[]).push([["chunk-frontend-vendors"],{"0273":function(t,e,n){var r=n("c1b2"),o=n("4180"),i=n("2c6c");t.exports=r?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},"057f":function(t,e,n){var r=n("fc6a"),o=n("241c").f,i={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],c=function(t){try{return o(t)}catch(e){return a.slice()}};t.exports.f=function(t){return a&&"[object Window]"==i.call(t)?c(t):o(r(t))}},"06cf":function(t,e,n){var r=n("83ab"),o=n("d1e7"),i=n("5c6c"),a=n("fc6a"),c=n("c04e"),s=n("5135"),u=n("0cfb"),f=Object.getOwnPropertyDescriptor;e.f=r?f:function(t,e){if(t=a(t),e=c(e,!0),u)try{return f(t,e)}catch(n){}if(s(t,e))return i(!o.f.call(t,e),t[e])}},"06fa":function(t,e){t.exports=function(t){try{return!!t()}catch(e){return!0}}},"0a06":function(t,e,n){"use strict";var r=n("2444"),o=n("c532"),i=n("f6b4"),a=n("5270");function c(t){this.defaults=t,this.interceptors={request:new i,response:new i}}c.prototype.request=function(t){"string"===typeof t&&(t=o.merge({url:arguments[0]},arguments[1])),t=o.merge(r,{method:"get"},this.defaults,t),t.method=t.method.toLowerCase();var e=[a,void 0],n=Promise.resolve(t);this.interceptors.request.forEach((function(t){e.unshift(t.fulfilled,t.rejected)})),this.interceptors.response.forEach((function(t){e.push(t.fulfilled,t.rejected)}));while(e.length)n=n.then(e.shift(),e.shift());return n},o.forEach(["delete","get","head","options"],(function(t){c.prototype[t]=function(e,n){return this.request(o.merge(n||{},{method:t,url:e}))}})),o.forEach(["post","put","patch"],(function(t){c.prototype[t]=function(e,n,r){return this.request(o.merge(r||{},{method:t,url:e,data:n}))}})),t.exports=c},"0cfb":function(t,e,n){var r=n("83ab"),o=n("d039"),i=n("cc12");t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},"0df6":function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},"129f":function(t,e){t.exports=Object.is||function(t,e){return t===e?0!==t||1/t===1/e:t!=t&&e!=e}},"14c3":function(t,e,n){var r=n("c6b6"),o=n("9263");t.exports=function(t,e){var n=t.exec;if("function"===typeof n){var i=n.call(t,e);if("object"!==typeof i)throw TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==r(t))throw TypeError("RegExp#exec called on incompatible receiver");return o.call(t,e)}},"159b":function(t,e,n){var r=n("da84"),o=n("fdbc"),i=n("17c2"),a=n("9112");for(var c in o){var s=r[c],u=s&&s.prototype;if(u&&u.forEach!==i)try{a(u,"forEach",i)}catch(f){u.forEach=i}}},"17c2":function(t,e,n){"use strict";var r=n("b727").forEach,o=n("b301");t.exports=o("forEach")?function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}:[].forEach},1875:function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},"194a":function(t,e,n){var r=n("cc94");t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},"19aa":function(t,e){t.exports=function(t,e,n){if(!(t instanceof e))throw TypeError("Incorrect "+(n?n+" ":"")+"invocation");return t}},"1be4":function(t,e,n){var r=n("d066");t.exports=r("document","documentElement")},"1c0b":function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},"1c7e":function(t,e,n){var r=n("b622"),o=r("iterator"),i=!1;try{var a=0,c={next:function(){return{done:!!a++}},return:function(){i=!0}};c[o]=function(){return this},Array.from(c,(function(){throw 2}))}catch(s){}t.exports=function(t,e){if(!e&&!i)return!1;var n=!1;try{var r={};r[o]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(s){}return n}},"1d2b":function(t,e,n){"use strict";t.exports=function(t,e){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return t.apply(e,n)}}},"1d80":function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},"1dde":function(t,e,n){var r=n("d039"),o=n("b622"),i=o("species");t.exports=function(t){return!r((function(){var e=[],n=e.constructor={};return n[i]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},2266:function(t,e,n){var r=n("825a"),o=n("e95a"),i=n("50c4"),a=n("f8c2"),c=n("35a1"),s=n("9bdd"),u=function(t,e){this.stopped=t,this.result=e},f=t.exports=function(t,e,n,f,l){var p,d,v,h,y,m,g,b=a(e,n,f?2:1);if(l)p=t;else{if(d=c(t),"function"!=typeof d)throw TypeError("Target is not iterable");if(o(d)){for(v=0,h=i(t.length);h>v;v++)if(y=f?b(r(g=t[v])[0],g[1]):b(t[v]),y&&y instanceof u)return y;return new u(!1)}p=d.call(t)}m=p.next;while(!(g=m.call(p)).done)if(y=s(p,b,g.value,f),"object"==typeof y&&y&&y instanceof u)return y;return new u(!1)};f.stop=function(t){return new u(!0,t)}},"23cb":function(t,e,n){var r=n("a691"),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},"23e7":function(t,e,n){var r=n("da84"),o=n("06cf").f,i=n("9112"),a=n("6eeb"),c=n("ce4e"),s=n("e893"),u=n("94ca");t.exports=function(t,e){var n,f,l,p,d,v,h=t.target,y=t.global,m=t.stat;if(f=y?r:m?r[h]||c(h,{}):(r[h]||{}).prototype,f)for(l in e){if(d=e[l],t.noTargetGet?(v=o(f,l),p=v&&v.value):p=f[l],n=u(y?l:h+(m?".":"#")+l,t.forced),!n&&void 0!==p){if(typeof d===typeof p)continue;s(d,p)}(t.sham||p&&p.sham)&&i(d,"sham",!0),a(f,l,d,t)}}},"241c":function(t,e,n){var r=n("ca84"),o=n("7839"),i=o.concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,i)}},2444:function(t,e,n){"use strict";(function(e){var r=n("c532"),o=n("c8af"),i={"Content-Type":"application/x-www-form-urlencoded"};function a(t,e){!r.isUndefined(t)&&r.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}function c(){var t;return"undefined"!==typeof XMLHttpRequest?t=n("b50d"):"undefined"!==typeof e&&(t=n("b50d")),t}var s={adapter:c(),transformRequest:[function(t,e){return o(e,"Content-Type"),r.isFormData(t)||r.isArrayBuffer(t)||r.isBuffer(t)||r.isStream(t)||r.isFile(t)||r.isBlob(t)?t:r.isArrayBufferView(t)?t.buffer:r.isURLSearchParams(t)?(a(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):r.isObject(t)?(a(e,"application/json;charset=utf-8"),JSON.stringify(t)):t}],transformResponse:[function(t){if("string"===typeof t)try{t=JSON.parse(t)}catch(e){}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};r.forEach(["delete","get","head"],(function(t){s.headers[t]={}})),r.forEach(["post","put","patch"],(function(t){s.headers[t]=r.merge(i)})),t.exports=s}).call(this,n("4362"))},"25f0":function(t,e,n){"use strict";var r=n("6eeb"),o=n("825a"),i=n("d039"),a=n("ad6d"),c="toString",s=RegExp.prototype,u=s[c],f=i((function(){return"/a/b"!=u.call({source:"a",flags:"b"})})),l=u.name!=c;(f||l)&&r(RegExp.prototype,c,(function(){var t=o(this),e=String(t.source),n=t.flags,r=String(void 0===n&&t instanceof RegExp&&!("flags"in s)?a.call(t):n);return"/"+e+"/"+r}),{unsafe:!0})},2626:function(t,e,n){"use strict";var r=n("d066"),o=n("9bf2"),i=n("b622"),a=n("83ab"),c=i("species");t.exports=function(t){var e=r(t),n=o.f;a&&e&&!e[c]&&n(e,c,{configurable:!0,get:function(){return this}})}},2877:function(t,e,n){"use strict";function r(t,e,n,r,o,i,a,c){var s,u="function"===typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i),a?(s=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},u._ssrRegister=s):o&&(s=c?function(){o.call(this,this.$root.$options.shadowRoot)}:o),s)if(u.functional){u._injectStyles=s;var f=u.render;u.render=function(t,e){return s.call(e),f(t,e)}}else{var l=u.beforeCreate;u.beforeCreate=l?[].concat(l,s):[s]}return{exports:t,options:u}}n.d(e,"a",(function(){return r}))},"2b0e":function(t,e,n){"use strict";(function(t){
2
  /*!
3
- * Vue.js v2.6.10
4
  * (c) 2014-2019 Evan You
5
  * Released under the MIT License.
6
  */
7
- var n=Object.freeze({});function r(t){return void 0===t||null===t}function o(t){return void 0!==t&&null!==t}function i(t){return!0===t}function a(t){return!1===t}function c(t){return"string"===typeof t||"number"===typeof t||"symbol"===typeof t||"boolean"===typeof t}function s(t){return null!==t&&"object"===typeof t}var u=Object.prototype.toString;function f(t){return"[object Object]"===u.call(t)}function l(t){return"[object RegExp]"===u.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return o(t)&&"function"===typeof t.then&&"function"===typeof t.catch}function v(t){return null==t?"":Array.isArray(t)||f(t)&&t.toString===u?JSON.stringify(t,null,2):String(t)}function h(t){var e=parseFloat(t);return isNaN(e)?t:e}function y(t,e){for(var n=Object.create(null),r=t.split(","),o=0;o<r.length;o++)n[r[o]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}y("slot,component",!0);var m=y("key,ref,slot,slot-scope,is");function g(t,e){if(t.length){var n=t.indexOf(e);if(n>-1)return t.splice(n,1)}}var b=Object.prototype.hasOwnProperty;function _(t,e){return b.call(t,e)}function w(t){var e=Object.create(null);return function(n){var r=e[n];return r||(e[n]=t(n))}}var x=/-(\w)/g,O=w((function(t){return t.replace(x,(function(t,e){return e?e.toUpperCase():""}))})),j=w((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),S=/\B([A-Z])/g,A=w((function(t){return t.replace(S,"-$1").toLowerCase()}));function C(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function $(t,e){return t.bind(e)}var k=Function.prototype.bind?$:C;function E(t,e){e=e||0;var n=t.length-e,r=new Array(n);while(n--)r[n]=t[n+e];return r}function T(t,e){for(var n in e)t[n]=e[n];return t}function P(t){for(var e={},n=0;n<t.length;n++)t[n]&&T(e,t[n]);return e}function I(t,e,n){}var M=function(t,e,n){return!1},L=function(t){return t};function N(t,e){if(t===e)return!0;var n=s(t),r=s(e);if(!n||!r)return!n&&!r&&String(t)===String(e);try{var o=Array.isArray(t),i=Array.isArray(e);if(o&&i)return t.length===e.length&&t.every((function(t,n){return N(t,e[n])}));if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(o||i)return!1;var a=Object.keys(t),c=Object.keys(e);return a.length===c.length&&a.every((function(n){return N(t[n],e[n])}))}catch(u){return!1}}function D(t,e){for(var n=0;n<t.length;n++)if(N(t[n],e))return n;return-1}function R(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}var F="data-server-rendered",U=["component","directive","filter"],B=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch"],V={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:M,isReservedAttr:M,isUnknownElement:M,getTagNamespace:I,parsePlatformTagName:L,mustUseProp:M,async:!0,_lifecycleHooks:B},z=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function H(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}function G(t,e,n,r){Object.defineProperty(t,e,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var q=new RegExp("[^"+z.source+".$_\\d]");function W(t){if(!q.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}var K,X="__proto__"in{},J="undefined"!==typeof window,Y="undefined"!==typeof WXEnvironment&&!!WXEnvironment.platform,Z=Y&&WXEnvironment.platform.toLowerCase(),Q=J&&window.navigator.userAgent.toLowerCase(),tt=Q&&/msie|trident/.test(Q),et=Q&&Q.indexOf("msie 9.0")>0,nt=Q&&Q.indexOf("edge/")>0,rt=(Q&&Q.indexOf("android"),Q&&/iphone|ipad|ipod|ios/.test(Q)||"ios"===Z),ot=(Q&&/chrome\/\d+/.test(Q),Q&&/phantomjs/.test(Q),Q&&Q.match(/firefox\/(\d+)/)),it={}.watch,at=!1;if(J)try{var ct={};Object.defineProperty(ct,"passive",{get:function(){at=!0}}),window.addEventListener("test-passive",null,ct)}catch(Oa){}var st=function(){return void 0===K&&(K=!J&&!Y&&"undefined"!==typeof t&&(t["process"]&&"server"===t["process"].env.VUE_ENV)),K},ut=J&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ft(t){return"function"===typeof t&&/native code/.test(t.toString())}var lt,pt="undefined"!==typeof Symbol&&ft(Symbol)&&"undefined"!==typeof Reflect&&ft(Reflect.ownKeys);lt="undefined"!==typeof Set&&ft(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var dt=I,vt=0,ht=function(){this.id=vt++,this.subs=[]};ht.prototype.addSub=function(t){this.subs.push(t)},ht.prototype.removeSub=function(t){g(this.subs,t)},ht.prototype.depend=function(){ht.target&&ht.target.addDep(this)},ht.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e<n;e++)t[e].update()},ht.target=null;var yt=[];function mt(t){yt.push(t),ht.target=t}function gt(){yt.pop(),ht.target=yt[yt.length-1]}var bt=function(t,e,n,r,o,i,a,c){this.tag=t,this.data=e,this.children=n,this.text=r,this.elm=o,this.ns=void 0,this.context=i,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=c,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},_t={child:{configurable:!0}};_t.child.get=function(){return this.componentInstance},Object.defineProperties(bt.prototype,_t);var wt=function(t){void 0===t&&(t="");var e=new bt;return e.text=t,e.isComment=!0,e};function xt(t){return new bt(void 0,void 0,void 0,String(t))}function Ot(t){var e=new bt(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var jt=Array.prototype,St=Object.create(jt),At=["push","pop","shift","unshift","splice","sort","reverse"];At.forEach((function(t){var e=jt[t];G(St,t,(function(){var n=[],r=arguments.length;while(r--)n[r]=arguments[r];var o,i=e.apply(this,n),a=this.__ob__;switch(t){case"push":case"unshift":o=n;break;case"splice":o=n.slice(2);break}return o&&a.observeArray(o),a.dep.notify(),i}))}));var Ct=Object.getOwnPropertyNames(St),$t=!0;function kt(t){$t=t}var Et=function(t){this.value=t,this.dep=new ht,this.vmCount=0,G(t,"__ob__",this),Array.isArray(t)?(X?Tt(t,St):Pt(t,St,Ct),this.observeArray(t)):this.walk(t)};function Tt(t,e){t.__proto__=e}function Pt(t,e,n){for(var r=0,o=n.length;r<o;r++){var i=n[r];G(t,i,e[i])}}function It(t,e){var n;if(s(t)&&!(t instanceof bt))return _(t,"__ob__")&&t.__ob__ instanceof Et?n=t.__ob__:$t&&!st()&&(Array.isArray(t)||f(t))&&Object.isExtensible(t)&&!t._isVue&&(n=new Et(t)),e&&n&&n.vmCount++,n}function Mt(t,e,n,r,o){var i=new ht,a=Object.getOwnPropertyDescriptor(t,e);if(!a||!1!==a.configurable){var c=a&&a.get,s=a&&a.set;c&&!s||2!==arguments.length||(n=t[e]);var u=!o&&It(n);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=c?c.call(t):n;return ht.target&&(i.depend(),u&&(u.dep.depend(),Array.isArray(e)&&Dt(e))),e},set:function(e){var r=c?c.call(t):n;e===r||e!==e&&r!==r||c&&!s||(s?s.call(t,e):n=e,u=!o&&It(e),i.notify())}})}}function Lt(t,e,n){if(Array.isArray(t)&&p(e))return t.length=Math.max(t.length,e),t.splice(e,1,n),n;if(e in t&&!(e in Object.prototype))return t[e]=n,n;var r=t.__ob__;return t._isVue||r&&r.vmCount?n:r?(Mt(r.value,e,n),r.dep.notify(),n):(t[e]=n,n)}function Nt(t,e){if(Array.isArray(t)&&p(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||_(t,e)&&(delete t[e],n&&n.dep.notify())}}function Dt(t){for(var e=void 0,n=0,r=t.length;n<r;n++)e=t[n],e&&e.__ob__&&e.__ob__.dep.depend(),Array.isArray(e)&&Dt(e)}Et.prototype.walk=function(t){for(var e=Object.keys(t),n=0;n<e.length;n++)Mt(t,e[n])},Et.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)It(t[e])};var Rt=V.optionMergeStrategies;function Ft(t,e){if(!e)return t;for(var n,r,o,i=pt?Reflect.ownKeys(e):Object.keys(e),a=0;a<i.length;a++)n=i[a],"__ob__"!==n&&(r=t[n],o=e[n],_(t,n)?r!==o&&f(r)&&f(o)&&Ft(r,o):Lt(t,n,o));return t}function Ut(t,e,n){return n?function(){var r="function"===typeof e?e.call(n,n):e,o="function"===typeof t?t.call(n,n):t;return r?Ft(r,o):o}:e?t?function(){return Ft("function"===typeof e?e.call(this,this):e,"function"===typeof t?t.call(this,this):t)}:e:t}function Bt(t,e){var n=e?t?t.concat(e):Array.isArray(e)?e:[e]:t;return n?Vt(n):n}function Vt(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e}function zt(t,e,n,r){var o=Object.create(t||null);return e?T(o,e):o}Rt.data=function(t,e,n){return n?Ut(t,e,n):e&&"function"!==typeof e?t:Ut(t,e)},B.forEach((function(t){Rt[t]=Bt})),U.forEach((function(t){Rt[t+"s"]=zt})),Rt.watch=function(t,e,n,r){if(t===it&&(t=void 0),e===it&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var o={};for(var i in T(o,t),e){var a=o[i],c=e[i];a&&!Array.isArray(a)&&(a=[a]),o[i]=a?a.concat(c):Array.isArray(c)?c:[c]}return o},Rt.props=Rt.methods=Rt.inject=Rt.computed=function(t,e,n,r){if(!t)return e;var o=Object.create(null);return T(o,t),e&&T(o,e),o},Rt.provide=Ut;var Ht=function(t,e){return void 0===e?t:e};function Gt(t,e){var n=t.props;if(n){var r,o,i,a={};if(Array.isArray(n)){r=n.length;while(r--)o=n[r],"string"===typeof o&&(i=O(o),a[i]={type:null})}else if(f(n))for(var c in n)o=n[c],i=O(c),a[i]=f(o)?o:{type:o};else 0;t.props=a}}function qt(t,e){var n=t.inject;if(n){var r=t.inject={};if(Array.isArray(n))for(var o=0;o<n.length;o++)r[n[o]]={from:n[o]};else if(f(n))for(var i in n){var a=n[i];r[i]=f(a)?T({from:i},a):{from:a}}else 0}}function Wt(t){var e=t.directives;if(e)for(var n in e){var r=e[n];"function"===typeof r&&(e[n]={bind:r,update:r})}}function Kt(t,e,n){if("function"===typeof e&&(e=e.options),Gt(e,n),qt(e,n),Wt(e),!e._base&&(e.extends&&(t=Kt(t,e.extends,n)),e.mixins))for(var r=0,o=e.mixins.length;r<o;r++)t=Kt(t,e.mixins[r],n);var i,a={};for(i in t)c(i);for(i in e)_(t,i)||c(i);function c(r){var o=Rt[r]||Ht;a[r]=o(t[r],e[r],n,r)}return a}function Xt(t,e,n,r){if("string"===typeof n){var o=t[e];if(_(o,n))return o[n];var i=O(n);if(_(o,i))return o[i];var a=j(i);if(_(o,a))return o[a];var c=o[n]||o[i]||o[a];return c}}function Jt(t,e,n,r){var o=e[t],i=!_(n,t),a=n[t],c=te(Boolean,o.type);if(c>-1)if(i&&!_(o,"default"))a=!1;else if(""===a||a===A(t)){var s=te(String,o.type);(s<0||c<s)&&(a=!0)}if(void 0===a){a=Yt(r,o,t);var u=$t;kt(!0),It(a),kt(u)}return a}function Yt(t,e,n){if(_(e,"default")){var r=e.default;return t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n]?t._props[n]:"function"===typeof r&&"Function"!==Zt(e.type)?r.call(t):r}}function Zt(t){var e=t&&t.toString().match(/^\s*function (\w+)/);return e?e[1]:""}function Qt(t,e){return Zt(t)===Zt(e)}function te(t,e){if(!Array.isArray(e))return Qt(e,t)?0:-1;for(var n=0,r=e.length;n<r;n++)if(Qt(e[n],t))return n;return-1}function ee(t,e,n){mt();try{if(e){var r=e;while(r=r.$parent){var o=r.$options.errorCaptured;if(o)for(var i=0;i<o.length;i++)try{var a=!1===o[i].call(r,t,e,n);if(a)return}catch(Oa){re(Oa,r,"errorCaptured hook")}}}re(t,e,n)}finally{gt()}}function ne(t,e,n,r,o){var i;try{i=n?t.apply(e,n):t.call(e),i&&!i._isVue&&d(i)&&!i._handled&&(i.catch((function(t){return ee(t,r,o+" (Promise/async)")})),i._handled=!0)}catch(Oa){ee(Oa,r,o)}return i}function re(t,e,n){if(V.errorHandler)try{return V.errorHandler.call(null,t,e,n)}catch(Oa){Oa!==t&&oe(Oa,null,"config.errorHandler")}oe(t,e,n)}function oe(t,e,n){if(!J&&!Y||"undefined"===typeof console)throw t;console.error(t)}var ie,ae=!1,ce=[],se=!1;function ue(){se=!1;var t=ce.slice(0);ce.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!==typeof Promise&&ft(Promise)){var fe=Promise.resolve();ie=function(){fe.then(ue),rt&&setTimeout(I)},ae=!0}else if(tt||"undefined"===typeof MutationObserver||!ft(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())ie="undefined"!==typeof setImmediate&&ft(setImmediate)?function(){setImmediate(ue)}:function(){setTimeout(ue,0)};else{var le=1,pe=new MutationObserver(ue),de=document.createTextNode(String(le));pe.observe(de,{characterData:!0}),ie=function(){le=(le+1)%2,de.data=String(le)},ae=!0}function ve(t,e){var n;if(ce.push((function(){if(t)try{t.call(e)}catch(Oa){ee(Oa,e,"nextTick")}else n&&n(e)})),se||(se=!0,ie()),!t&&"undefined"!==typeof Promise)return new Promise((function(t){n=t}))}var he=new lt;function ye(t){me(t,he),he.clear()}function me(t,e){var n,r,o=Array.isArray(t);if(!(!o&&!s(t)||Object.isFrozen(t)||t instanceof bt)){if(t.__ob__){var i=t.__ob__.dep.id;if(e.has(i))return;e.add(i)}if(o){n=t.length;while(n--)me(t[n],e)}else{r=Object.keys(t),n=r.length;while(n--)me(t[r[n]],e)}}}var ge=w((function(t){var e="&"===t.charAt(0);t=e?t.slice(1):t;var n="~"===t.charAt(0);t=n?t.slice(1):t;var r="!"===t.charAt(0);return t=r?t.slice(1):t,{name:t,once:n,capture:r,passive:e}}));function be(t,e){function n(){var t=arguments,r=n.fns;if(!Array.isArray(r))return ne(r,null,arguments,e,"v-on handler");for(var o=r.slice(),i=0;i<o.length;i++)ne(o[i],null,t,e,"v-on handler")}return n.fns=t,n}function _e(t,e,n,o,a,c){var s,u,f,l;for(s in t)u=t[s],f=e[s],l=ge(s),r(u)||(r(f)?(r(u.fns)&&(u=t[s]=be(u,c)),i(l.once)&&(u=t[s]=a(l.name,u,l.capture)),n(l.name,u,l.capture,l.passive,l.params)):u!==f&&(f.fns=u,t[s]=f));for(s in e)r(t[s])&&(l=ge(s),o(l.name,e[s],l.capture))}function we(t,e,n){var a;t instanceof bt&&(t=t.data.hook||(t.data.hook={}));var c=t[e];function s(){n.apply(this,arguments),g(a.fns,s)}r(c)?a=be([s]):o(c.fns)&&i(c.merged)?(a=c,a.fns.push(s)):a=be([c,s]),a.merged=!0,t[e]=a}function xe(t,e,n){var i=e.options.props;if(!r(i)){var a={},c=t.attrs,s=t.props;if(o(c)||o(s))for(var u in i){var f=A(u);Oe(a,s,u,f,!0)||Oe(a,c,u,f,!1)}return a}}function Oe(t,e,n,r,i){if(o(e)){if(_(e,n))return t[n]=e[n],i||delete e[n],!0;if(_(e,r))return t[n]=e[r],i||delete e[r],!0}return!1}function je(t){for(var e=0;e<t.length;e++)if(Array.isArray(t[e]))return Array.prototype.concat.apply([],t);return t}function Se(t){return c(t)?[xt(t)]:Array.isArray(t)?Ce(t):void 0}function Ae(t){return o(t)&&o(t.text)&&a(t.isComment)}function Ce(t,e){var n,a,s,u,f=[];for(n=0;n<t.length;n++)a=t[n],r(a)||"boolean"===typeof a||(s=f.length-1,u=f[s],Array.isArray(a)?a.length>0&&(a=Ce(a,(e||"")+"_"+n),Ae(a[0])&&Ae(u)&&(f[s]=xt(u.text+a[0].text),a.shift()),f.push.apply(f,a)):c(a)?Ae(u)?f[s]=xt(u.text+a):""!==a&&f.push(xt(a)):Ae(a)&&Ae(u)?f[s]=xt(u.text+a.text):(i(t._isVList)&&o(a.tag)&&r(a.key)&&o(e)&&(a.key="__vlist"+e+"_"+n+"__"),f.push(a)));return f}function $e(t){var e=t.$options.provide;e&&(t._provided="function"===typeof e?e.call(t):e)}function ke(t){var e=Ee(t.$options.inject,t);e&&(kt(!1),Object.keys(e).forEach((function(n){Mt(t,n,e[n])})),kt(!0))}function Ee(t,e){if(t){for(var n=Object.create(null),r=pt?Reflect.ownKeys(t):Object.keys(t),o=0;o<r.length;o++){var i=r[o];if("__ob__"!==i){var a=t[i].from,c=e;while(c){if(c._provided&&_(c._provided,a)){n[i]=c._provided[a];break}c=c.$parent}if(!c)if("default"in t[i]){var s=t[i].default;n[i]="function"===typeof s?s.call(e):s}else 0}}return n}}function Te(t,e){if(!t||!t.length)return{};for(var n={},r=0,o=t.length;r<o;r++){var i=t[r],a=i.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,i.context!==e&&i.fnContext!==e||!a||null==a.slot)(n.default||(n.default=[])).push(i);else{var c=a.slot,s=n[c]||(n[c]=[]);"template"===i.tag?s.push.apply(s,i.children||[]):s.push(i)}}for(var u in n)n[u].every(Pe)&&delete n[u];return n}function Pe(t){return t.isComment&&!t.asyncFactory||" "===t.text}function Ie(t,e,r){var o,i=Object.keys(e).length>0,a=t?!!t.$stable:!i,c=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&r&&r!==n&&c===r.$key&&!i&&!r.$hasNormal)return r;for(var s in o={},t)t[s]&&"$"!==s[0]&&(o[s]=Me(e,s,t[s]))}else o={};for(var u in e)u in o||(o[u]=Le(e,u));return t&&Object.isExtensible(t)&&(t._normalized=o),G(o,"$stable",a),G(o,"$key",c),G(o,"$hasNormal",i),o}function Me(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return t=t&&"object"===typeof t&&!Array.isArray(t)?[t]:Se(t),t&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function Le(t,e){return function(){return t[e]}}function Ne(t,e){var n,r,i,a,c;if(Array.isArray(t)||"string"===typeof t)for(n=new Array(t.length),r=0,i=t.length;r<i;r++)n[r]=e(t[r],r);else if("number"===typeof t)for(n=new Array(t),r=0;r<t;r++)n[r]=e(r+1,r);else if(s(t))if(pt&&t[Symbol.iterator]){n=[];var u=t[Symbol.iterator](),f=u.next();while(!f.done)n.push(e(f.value,n.length)),f=u.next()}else for(a=Object.keys(t),n=new Array(a.length),r=0,i=a.length;r<i;r++)c=a[r],n[r]=e(t[c],c,r);return o(n)||(n=[]),n._isVList=!0,n}function De(t,e,n,r){var o,i=this.$scopedSlots[t];i?(n=n||{},r&&(n=T(T({},r),n)),o=i(n)||e):o=this.$slots[t]||e;var a=n&&n.slot;return a?this.$createElement("template",{slot:a},o):o}function Re(t){return Xt(this.$options,"filters",t,!0)||L}function Fe(t,e){return Array.isArray(t)?-1===t.indexOf(e):t!==e}function Ue(t,e,n,r,o){var i=V.keyCodes[e]||n;return o&&r&&!V.keyCodes[e]?Fe(o,r):i?Fe(i,t):r?A(r)!==e:void 0}function Be(t,e,n,r,o){if(n)if(s(n)){var i;Array.isArray(n)&&(n=P(n));var a=function(a){if("class"===a||"style"===a||m(a))i=t;else{var c=t.attrs&&t.attrs.type;i=r||V.mustUseProp(e,c,a)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var s=O(a),u=A(a);if(!(s in i)&&!(u in i)&&(i[a]=n[a],o)){var f=t.on||(t.on={});f["update:"+a]=function(t){n[a]=t}}};for(var c in n)a(c)}else;return t}function Ve(t,e){var n=this._staticTrees||(this._staticTrees=[]),r=n[t];return r&&!e?r:(r=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,null,this),He(r,"__static__"+t,!1),r)}function ze(t,e,n){return He(t,"__once__"+e+(n?"_"+n:""),!0),t}function He(t,e,n){if(Array.isArray(t))for(var r=0;r<t.length;r++)t[r]&&"string"!==typeof t[r]&&Ge(t[r],e+"_"+r,n);else Ge(t,e,n)}function Ge(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function qe(t,e){if(e)if(f(e)){var n=t.on=t.on?T({},t.on):{};for(var r in e){var o=n[r],i=e[r];n[r]=o?[].concat(o,i):i}}else;return t}function We(t,e,n,r){e=e||{$stable:!n};for(var o=0;o<t.length;o++){var i=t[o];Array.isArray(i)?We(i,e,n):i&&(i.proxy&&(i.fn.proxy=!0),e[i.key]=i.fn)}return r&&(e.$key=r),e}function Ke(t,e){for(var n=0;n<e.length;n+=2){var r=e[n];"string"===typeof r&&r&&(t[e[n]]=e[n+1])}return t}function Xe(t,e){return"string"===typeof t?e+t:t}function Je(t){t._o=ze,t._n=h,t._s=v,t._l=Ne,t._t=De,t._q=N,t._i=D,t._m=Ve,t._f=Re,t._k=Ue,t._b=Be,t._v=xt,t._e=wt,t._u=We,t._g=qe,t._d=Ke,t._p=Xe}function Ye(t,e,r,o,a){var c,s=this,u=a.options;_(o,"_uid")?(c=Object.create(o),c._original=o):(c=o,o=o._original);var f=i(u._compiled),l=!f;this.data=t,this.props=e,this.children=r,this.parent=o,this.listeners=t.on||n,this.injections=Ee(u.inject,o),this.slots=function(){return s.$slots||Ie(t.scopedSlots,s.$slots=Te(r,o)),s.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return Ie(t.scopedSlots,this.slots())}}),f&&(this.$options=u,this.$slots=this.slots(),this.$scopedSlots=Ie(t.scopedSlots,this.$slots)),u._scopeId?this._c=function(t,e,n,r){var i=ln(c,t,e,n,r,l);return i&&!Array.isArray(i)&&(i.fnScopeId=u._scopeId,i.fnContext=o),i}:this._c=function(t,e,n,r){return ln(c,t,e,n,r,l)}}function Ze(t,e,r,i,a){var c=t.options,s={},u=c.props;if(o(u))for(var f in u)s[f]=Jt(f,u,e||n);else o(r.attrs)&&tn(s,r.attrs),o(r.props)&&tn(s,r.props);var l=new Ye(r,s,a,i,t),p=c.render.call(null,l._c,l);if(p instanceof bt)return Qe(p,r,l.parent,c,l);if(Array.isArray(p)){for(var d=Se(p)||[],v=new Array(d.length),h=0;h<d.length;h++)v[h]=Qe(d[h],r,l.parent,c,l);return v}}function Qe(t,e,n,r,o){var i=Ot(t);return i.fnContext=n,i.fnOptions=r,e.slot&&((i.data||(i.data={})).slot=e.slot),i}function tn(t,e){for(var n in e)t[O(n)]=e[n]}Je(Ye.prototype);var en={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var n=t;en.prepatch(n,n)}else{var r=t.componentInstance=on(t,En);r.$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var n=e.componentOptions,r=e.componentInstance=t.componentInstance;Ln(r,n.propsData,n.listeners,e,n.children)},insert:function(t){var e=t.context,n=t.componentInstance;n._isMounted||(n._isMounted=!0,Fn(n,"mounted")),t.data.keepAlive&&(e._isMounted?Zn(n):Dn(n,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?Rn(e,!0):e.$destroy())}},nn=Object.keys(en);function rn(t,e,n,a,c){if(!r(t)){var u=n.$options._base;if(s(t)&&(t=u.extend(t)),"function"===typeof t){var f;if(r(t.cid)&&(f=t,t=wn(f,u),void 0===t))return _n(f,e,n,a,c);e=e||{},wr(t),o(e.model)&&sn(t.options,e);var l=xe(e,t,c);if(i(t.options.functional))return Ze(t,l,e,n,a);var p=e.on;if(e.on=e.nativeOn,i(t.options.abstract)){var d=e.slot;e={},d&&(e.slot=d)}an(e);var v=t.options.name||c,h=new bt("vue-component-"+t.cid+(v?"-"+v:""),e,void 0,void 0,void 0,n,{Ctor:t,propsData:l,listeners:p,tag:c,children:a},f);return h}}}function on(t,e){var n={_isComponent:!0,_parentVnode:t,parent:e},r=t.data.inlineTemplate;return o(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns),new t.componentOptions.Ctor(n)}function an(t){for(var e=t.hook||(t.hook={}),n=0;n<nn.length;n++){var r=nn[n],o=e[r],i=en[r];o===i||o&&o._merged||(e[r]=o?cn(i,o):i)}}function cn(t,e){var n=function(n,r){t(n,r),e(n,r)};return n._merged=!0,n}function sn(t,e){var n=t.model&&t.model.prop||"value",r=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[n]=e.model.value;var i=e.on||(e.on={}),a=i[r],c=e.model.callback;o(a)?(Array.isArray(a)?-1===a.indexOf(c):a!==c)&&(i[r]=[c].concat(a)):i[r]=c}var un=1,fn=2;function ln(t,e,n,r,o,a){return(Array.isArray(n)||c(n))&&(o=r,r=n,n=void 0),i(a)&&(o=fn),pn(t,e,n,r,o)}function pn(t,e,n,r,i){if(o(n)&&o(n.__ob__))return wt();if(o(n)&&o(n.is)&&(e=n.is),!e)return wt();var a,c,s;(Array.isArray(r)&&"function"===typeof r[0]&&(n=n||{},n.scopedSlots={default:r[0]},r.length=0),i===fn?r=Se(r):i===un&&(r=je(r)),"string"===typeof e)?(c=t.$vnode&&t.$vnode.ns||V.getTagNamespace(e),a=V.isReservedTag(e)?new bt(V.parsePlatformTagName(e),n,r,void 0,void 0,t):n&&n.pre||!o(s=Xt(t.$options,"components",e))?new bt(e,n,r,void 0,void 0,t):rn(s,n,t,r,e)):a=rn(e,n,t,r);return Array.isArray(a)?a:o(a)?(o(c)&&dn(a,c),o(n)&&vn(n),a):wt()}function dn(t,e,n){if(t.ns=e,"foreignObject"===t.tag&&(e=void 0,n=!0),o(t.children))for(var a=0,c=t.children.length;a<c;a++){var s=t.children[a];o(s.tag)&&(r(s.ns)||i(n)&&"svg"!==s.tag)&&dn(s,e,n)}}function vn(t){s(t.style)&&ye(t.style),s(t.class)&&ye(t.class)}function hn(t){t._vnode=null,t._staticTrees=null;var e=t.$options,r=t.$vnode=e._parentVnode,o=r&&r.context;t.$slots=Te(e._renderChildren,o),t.$scopedSlots=n,t._c=function(e,n,r,o){return ln(t,e,n,r,o,!1)},t.$createElement=function(e,n,r,o){return ln(t,e,n,r,o,!0)};var i=r&&r.data;Mt(t,"$attrs",i&&i.attrs||n,null,!0),Mt(t,"$listeners",e._parentListeners||n,null,!0)}var yn,mn=null;function gn(t){Je(t.prototype),t.prototype.$nextTick=function(t){return ve(t,this)},t.prototype._render=function(){var t,e=this,n=e.$options,r=n.render,o=n._parentVnode;o&&(e.$scopedSlots=Ie(o.data.scopedSlots,e.$slots,e.$scopedSlots)),e.$vnode=o;try{mn=e,t=r.call(e._renderProxy,e.$createElement)}catch(Oa){ee(Oa,e,"render"),t=e._vnode}finally{mn=null}return Array.isArray(t)&&1===t.length&&(t=t[0]),t instanceof bt||(t=wt()),t.parent=o,t}}function bn(t,e){return(t.__esModule||pt&&"Module"===t[Symbol.toStringTag])&&(t=t.default),s(t)?e.extend(t):t}function _n(t,e,n,r,o){var i=wt();return i.asyncFactory=t,i.asyncMeta={data:e,context:n,children:r,tag:o},i}function wn(t,e){if(i(t.error)&&o(t.errorComp))return t.errorComp;if(o(t.resolved))return t.resolved;var n=mn;if(n&&o(t.owners)&&-1===t.owners.indexOf(n)&&t.owners.push(n),i(t.loading)&&o(t.loadingComp))return t.loadingComp;if(n&&!o(t.owners)){var a=t.owners=[n],c=!0,u=null,f=null;n.$on("hook:destroyed",(function(){return g(a,n)}));var l=function(t){for(var e=0,n=a.length;e<n;e++)a[e].$forceUpdate();t&&(a.length=0,null!==u&&(clearTimeout(u),u=null),null!==f&&(clearTimeout(f),f=null))},p=R((function(n){t.resolved=bn(n,e),c?a.length=0:l(!0)})),v=R((function(e){o(t.errorComp)&&(t.error=!0,l(!0))})),h=t(p,v);return s(h)&&(d(h)?r(t.resolved)&&h.then(p,v):d(h.component)&&(h.component.then(p,v),o(h.error)&&(t.errorComp=bn(h.error,e)),o(h.loading)&&(t.loadingComp=bn(h.loading,e),0===h.delay?t.loading=!0:u=setTimeout((function(){u=null,r(t.resolved)&&r(t.error)&&(t.loading=!0,l(!1))}),h.delay||200)),o(h.timeout)&&(f=setTimeout((function(){f=null,r(t.resolved)&&v(null)}),h.timeout)))),c=!1,t.loading?t.loadingComp:t.resolved}}function xn(t){return t.isComment&&t.asyncFactory}function On(t){if(Array.isArray(t))for(var e=0;e<t.length;e++){var n=t[e];if(o(n)&&(o(n.componentOptions)||xn(n)))return n}}function jn(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&$n(t,e)}function Sn(t,e){yn.$on(t,e)}function An(t,e){yn.$off(t,e)}function Cn(t,e){var n=yn;return function r(){var o=e.apply(null,arguments);null!==o&&n.$off(t,r)}}function $n(t,e,n){yn=t,_e(e,n||{},Sn,An,Cn,t),yn=void 0}function kn(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var o=0,i=t.length;o<i;o++)r.$on(t[o],n);else(r._events[t]||(r._events[t]=[])).push(n),e.test(t)&&(r._hasHookEvent=!0);return r},t.prototype.$once=function(t,e){var n=this;function r(){n.$off(t,r),e.apply(n,arguments)}return r.fn=e,n.$on(t,r),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(t)){for(var r=0,o=t.length;r<o;r++)n.$off(t[r],e);return n}var i,a=n._events[t];if(!a)return n;if(!e)return n._events[t]=null,n;var c=a.length;while(c--)if(i=a[c],i===e||i.fn===e){a.splice(c,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?E(n):n;for(var r=E(arguments,1),o='event handler for "'+t+'"',i=0,a=n.length;i<a;i++)ne(n[i],e,r,e,o)}return e}}var En=null;function Tn(t){var e=En;return En=t,function(){En=e}}function Pn(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){while(n.$options.abstract&&n.$parent)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}function In(t){t.prototype._update=function(t,e){var n=this,r=n.$el,o=n._vnode,i=Tn(n);n._vnode=t,n.$el=o?n.__patch__(o,t):n.__patch__(n.$el,t,e,!1),i(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},t.prototype.$forceUpdate=function(){var t=this;t._watcher&&t._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){Fn(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||g(e.$children,t),t._watcher&&t._watcher.teardown();var n=t._watchers.length;while(n--)t._watchers[n].teardown();t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),Fn(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}function Mn(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=wt),Fn(t,"beforeMount"),r=function(){t._update(t._render(),n)},new nr(t,r,I,{before:function(){t._isMounted&&!t._isDestroyed&&Fn(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,Fn(t,"mounted")),t}function Ln(t,e,r,o,i){var a=o.data.scopedSlots,c=t.$scopedSlots,s=!!(a&&!a.$stable||c!==n&&!c.$stable||a&&t.$scopedSlots.$key!==a.$key),u=!!(i||t.$options._renderChildren||s);if(t.$options._parentVnode=o,t.$vnode=o,t._vnode&&(t._vnode.parent=o),t.$options._renderChildren=i,t.$attrs=o.data.attrs||n,t.$listeners=r||n,e&&t.$options.props){kt(!1);for(var f=t._props,l=t.$options._propKeys||[],p=0;p<l.length;p++){var d=l[p],v=t.$options.props;f[d]=Jt(d,v,e,t)}kt(!0),t.$options.propsData=e}r=r||n;var h=t.$options._parentListeners;t.$options._parentListeners=r,$n(t,r,h),u&&(t.$slots=Te(i,o.context),t.$forceUpdate())}function Nn(t){while(t&&(t=t.$parent))if(t._inactive)return!0;return!1}function Dn(t,e){if(e){if(t._directInactive=!1,Nn(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)Dn(t.$children[n]);Fn(t,"activated")}}function Rn(t,e){if((!e||(t._directInactive=!0,!Nn(t)))&&!t._inactive){t._inactive=!0;for(var n=0;n<t.$children.length;n++)Rn(t.$children[n]);Fn(t,"deactivated")}}function Fn(t,e){mt();var n=t.$options[e],r=e+" hook";if(n)for(var o=0,i=n.length;o<i;o++)ne(n[o],t,null,t,r);t._hasHookEvent&&t.$emit("hook:"+e),gt()}var Un=[],Bn=[],Vn={},zn=!1,Hn=!1,Gn=0;function qn(){Gn=Un.length=Bn.length=0,Vn={},zn=Hn=!1}var Wn=0,Kn=Date.now;if(J&&!tt){var Xn=window.performance;Xn&&"function"===typeof Xn.now&&Kn()>document.createEvent("Event").timeStamp&&(Kn=function(){return Xn.now()})}function Jn(){var t,e;for(Wn=Kn(),Hn=!0,Un.sort((function(t,e){return t.id-e.id})),Gn=0;Gn<Un.length;Gn++)t=Un[Gn],t.before&&t.before(),e=t.id,Vn[e]=null,t.run();var n=Bn.slice(),r=Un.slice();qn(),Qn(n),Yn(r),ut&&V.devtools&&ut.emit("flush")}function Yn(t){var e=t.length;while(e--){var n=t[e],r=n.vm;r._watcher===n&&r._isMounted&&!r._isDestroyed&&Fn(r,"updated")}}function Zn(t){t._inactive=!1,Bn.push(t)}function Qn(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,Dn(t[e],!0)}function tr(t){var e=t.id;if(null==Vn[e]){if(Vn[e]=!0,Hn){var n=Un.length-1;while(n>Gn&&Un[n].id>t.id)n--;Un.splice(n+1,0,t)}else Un.push(t);zn||(zn=!0,ve(Jn))}}var er=0,nr=function(t,e,n,r,o){this.vm=t,o&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++er,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new lt,this.newDepIds=new lt,this.expression="","function"===typeof e?this.getter=e:(this.getter=W(e),this.getter||(this.getter=I)),this.value=this.lazy?void 0:this.get()};nr.prototype.get=function(){var t;mt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(Oa){if(!this.user)throw Oa;ee(Oa,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&ye(t),gt(),this.cleanupDeps()}return t},nr.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},nr.prototype.cleanupDeps=function(){var t=this.deps.length;while(t--){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},nr.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():tr(this)},nr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||s(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(Oa){ee(Oa,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},nr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},nr.prototype.depend=function(){var t=this.deps.length;while(t--)this.deps[t].depend()},nr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);var t=this.deps.length;while(t--)this.deps[t].removeSub(this);this.active=!1}};var rr={enumerable:!0,configurable:!0,get:I,set:I};function or(t,e,n){rr.get=function(){return this[e][n]},rr.set=function(t){this[e][n]=t},Object.defineProperty(t,n,rr)}function ir(t){t._watchers=[];var e=t.$options;e.props&&ar(t,e.props),e.methods&&vr(t,e.methods),e.data?cr(t):It(t._data={},!0),e.computed&&fr(t,e.computed),e.watch&&e.watch!==it&&hr(t,e.watch)}function ar(t,e){var n=t.$options.propsData||{},r=t._props={},o=t.$options._propKeys=[],i=!t.$parent;i||kt(!1);var a=function(i){o.push(i);var a=Jt(i,e,n,t);Mt(r,i,a),i in t||or(t,"_props",i)};for(var c in e)a(c);kt(!0)}function cr(t){var e=t.$options.data;e=t._data="function"===typeof e?sr(e,t):e||{},f(e)||(e={});var n=Object.keys(e),r=t.$options.props,o=(t.$options.methods,n.length);while(o--){var i=n[o];0,r&&_(r,i)||H(i)||or(t,"_data",i)}It(e,!0)}function sr(t,e){mt();try{return t.call(e,e)}catch(Oa){return ee(Oa,e,"data()"),{}}finally{gt()}}var ur={lazy:!0};function fr(t,e){var n=t._computedWatchers=Object.create(null),r=st();for(var o in e){var i=e[o],a="function"===typeof i?i:i.get;0,r||(n[o]=new nr(t,a||I,I,ur)),o in t||lr(t,o,i)}}function lr(t,e,n){var r=!st();"function"===typeof n?(rr.get=r?pr(e):dr(n),rr.set=I):(rr.get=n.get?r&&!1!==n.cache?pr(e):dr(n.get):I,rr.set=n.set||I),Object.defineProperty(t,e,rr)}function pr(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),ht.target&&e.depend(),e.value}}function dr(t){return function(){return t.call(this,this)}}function vr(t,e){t.$options.props;for(var n in e)t[n]="function"!==typeof e[n]?I:k(e[n],t)}function hr(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var o=0;o<r.length;o++)yr(t,n,r[o]);else yr(t,n,r)}}function yr(t,e,n,r){return f(n)&&(r=n,n=n.handler),"string"===typeof n&&(n=t[n]),t.$watch(e,n,r)}function mr(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=Lt,t.prototype.$delete=Nt,t.prototype.$watch=function(t,e,n){var r=this;if(f(e))return yr(r,t,e,n);n=n||{},n.user=!0;var o=new nr(r,t,e,n);if(n.immediate)try{e.call(r,o.value)}catch(i){ee(i,r,'callback for immediate watcher "'+o.expression+'"')}return function(){o.teardown()}}}var gr=0;function br(t){t.prototype._init=function(t){var e=this;e._uid=gr++,e._isVue=!0,t&&t._isComponent?_r(e,t):e.$options=Kt(wr(e.constructor),t||{},e),e._renderProxy=e,e._self=e,Pn(e),jn(e),hn(e),Fn(e,"beforeCreate"),ke(e),ir(e),$e(e),Fn(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}function _r(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var o=r.componentOptions;n.propsData=o.propsData,n._parentListeners=o.listeners,n._renderChildren=o.children,n._componentTag=o.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}function wr(t){var e=t.options;if(t.super){var n=wr(t.super),r=t.superOptions;if(n!==r){t.superOptions=n;var o=xr(t);o&&T(t.extendOptions,o),e=t.options=Kt(n,t.extendOptions),e.name&&(e.components[e.name]=t)}}return e}function xr(t){var e,n=t.options,r=t.sealedOptions;for(var o in n)n[o]!==r[o]&&(e||(e={}),e[o]=n[o]);return e}function Or(t){this._init(t)}function jr(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=E(arguments,1);return n.unshift(this),"function"===typeof t.install?t.install.apply(t,n):"function"===typeof t&&t.apply(null,n),e.push(t),this}}function Sr(t){t.mixin=function(t){return this.options=Kt(this.options,t),this}}function Ar(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,o=t._Ctor||(t._Ctor={});if(o[r])return o[r];var i=t.name||n.options.name;var a=function(t){this._init(t)};return a.prototype=Object.create(n.prototype),a.prototype.constructor=a,a.cid=e++,a.options=Kt(n.options,t),a["super"]=n,a.options.props&&Cr(a),a.options.computed&&$r(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,U.forEach((function(t){a[t]=n[t]})),i&&(a.options.components[i]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=T({},a.options),o[r]=a,a}}function Cr(t){var e=t.options.props;for(var n in e)or(t.prototype,"_props",n)}function $r(t){var e=t.options.computed;for(var n in e)lr(t.prototype,n,e[n])}function kr(t){U.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&f(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"===typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}function Er(t){return t&&(t.Ctor.options.name||t.tag)}function Tr(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"===typeof t?t.split(",").indexOf(e)>-1:!!l(t)&&t.test(e)}function Pr(t,e){var n=t.cache,r=t.keys,o=t._vnode;for(var i in n){var a=n[i];if(a){var c=Er(a.componentOptions);c&&!e(c)&&Ir(n,i,r,o)}}}function Ir(t,e,n,r){var o=t[e];!o||r&&o.tag===r.tag||o.componentInstance.$destroy(),t[e]=null,g(n,e)}br(Or),mr(Or),kn(Or),In(Or),gn(Or);var Mr=[String,RegExp,Array],Lr={name:"keep-alive",abstract:!0,props:{include:Mr,exclude:Mr,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Ir(this.cache,t,this.keys)},mounted:function(){var t=this;this.$watch("include",(function(e){Pr(t,(function(t){return Tr(e,t)}))})),this.$watch("exclude",(function(e){Pr(t,(function(t){return!Tr(e,t)}))}))},render:function(){var t=this.$slots.default,e=On(t),n=e&&e.componentOptions;if(n){var r=Er(n),o=this,i=o.include,a=o.exclude;if(i&&(!r||!Tr(i,r))||a&&r&&Tr(a,r))return e;var c=this,s=c.cache,u=c.keys,f=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;s[f]?(e.componentInstance=s[f].componentInstance,g(u,f),u.push(f)):(s[f]=e,u.push(f),this.max&&u.length>parseInt(this.max)&&Ir(s,u[0],u,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}},Nr={KeepAlive:Lr};function Dr(t){var e={get:function(){return V}};Object.defineProperty(t,"config",e),t.util={warn:dt,extend:T,mergeOptions:Kt,defineReactive:Mt},t.set=Lt,t.delete=Nt,t.nextTick=ve,t.observable=function(t){return It(t),t},t.options=Object.create(null),U.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,T(t.options.components,Nr),jr(t),Sr(t),Ar(t),kr(t)}Dr(Or),Object.defineProperty(Or.prototype,"$isServer",{get:st}),Object.defineProperty(Or.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Or,"FunctionalRenderContext",{value:Ye}),Or.version="2.6.10";var Rr=y("style,class"),Fr=y("input,textarea,option,select,progress"),Ur=function(t,e,n){return"value"===n&&Fr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Br=y("contenteditable,draggable,spellcheck"),Vr=y("events,caret,typing,plaintext-only"),zr=function(t,e){return Kr(e)||"false"===e?"false":"contenteditable"===t&&Vr(e)?e:"true"},Hr=y("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Gr="http://www.w3.org/1999/xlink",qr=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Wr=function(t){return qr(t)?t.slice(6,t.length):""},Kr=function(t){return null==t||!1===t};function Xr(t){var e=t.data,n=t,r=t;while(o(r.componentInstance))r=r.componentInstance._vnode,r&&r.data&&(e=Jr(r.data,e));while(o(n=n.parent))n&&n.data&&(e=Jr(e,n.data));return Yr(e.staticClass,e.class)}function Jr(t,e){return{staticClass:Zr(t.staticClass,e.staticClass),class:o(t.class)?[t.class,e.class]:e.class}}function Yr(t,e){return o(t)||o(e)?Zr(t,Qr(e)):""}function Zr(t,e){return t?e?t+" "+e:t:e||""}function Qr(t){return Array.isArray(t)?to(t):s(t)?eo(t):"string"===typeof t?t:""}function to(t){for(var e,n="",r=0,i=t.length;r<i;r++)o(e=Qr(t[r]))&&""!==e&&(n&&(n+=" "),n+=e);return n}function eo(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}var no={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ro=y("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),oo=y("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),io=function(t){return ro(t)||oo(t)};function ao(t){return oo(t)?"svg":"math"===t?"math":void 0}var co=Object.create(null);function so(t){if(!J)return!0;if(io(t))return!1;if(t=t.toLowerCase(),null!=co[t])return co[t];var e=document.createElement(t);return t.indexOf("-")>-1?co[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:co[t]=/HTMLUnknownElement/.test(e.toString())}var uo=y("text,number,password,search,email,tel,url");function fo(t){if("string"===typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}function lo(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)}function po(t,e){return document.createElementNS(no[t],e)}function vo(t){return document.createTextNode(t)}function ho(t){return document.createComment(t)}function yo(t,e,n){t.insertBefore(e,n)}function mo(t,e){t.removeChild(e)}function go(t,e){t.appendChild(e)}function bo(t){return t.parentNode}function _o(t){return t.nextSibling}function wo(t){return t.tagName}function xo(t,e){t.textContent=e}function Oo(t,e){t.setAttribute(e,"")}var jo=Object.freeze({createElement:lo,createElementNS:po,createTextNode:vo,createComment:ho,insertBefore:yo,removeChild:mo,appendChild:go,parentNode:bo,nextSibling:_o,tagName:wo,setTextContent:xo,setStyleScope:Oo}),So={create:function(t,e){Ao(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ao(t,!0),Ao(e))},destroy:function(t){Ao(t,!0)}};function Ao(t,e){var n=t.data.ref;if(o(n)){var r=t.context,i=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],i):a[n]===i&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(i)<0&&a[n].push(i):a[n]=[i]:a[n]=i}}var Co=new bt("",{},[]),$o=["create","activate","update","remove","destroy"];function ko(t,e){return t.key===e.key&&(t.tag===e.tag&&t.isComment===e.isComment&&o(t.data)===o(e.data)&&Eo(t,e)||i(t.isAsyncPlaceholder)&&t.asyncFactory===e.asyncFactory&&r(e.asyncFactory.error))}function Eo(t,e){if("input"!==t.tag)return!0;var n,r=o(n=t.data)&&o(n=n.attrs)&&n.type,i=o(n=e.data)&&o(n=n.attrs)&&n.type;return r===i||uo(r)&&uo(i)}function To(t,e,n){var r,i,a={};for(r=e;r<=n;++r)i=t[r].key,o(i)&&(a[i]=r);return a}function Po(t){var e,n,a={},s=t.modules,u=t.nodeOps;for(e=0;e<$o.length;++e)for(a[$o[e]]=[],n=0;n<s.length;++n)o(s[n][$o[e]])&&a[$o[e]].push(s[n][$o[e]]);function f(t){return new bt(u.tagName(t).toLowerCase(),{},[],void 0,t)}function l(t,e){function n(){0===--n.listeners&&p(t)}return n.listeners=e,n}function p(t){var e=u.parentNode(t);o(e)&&u.removeChild(e,t)}function d(t,e,n,r,a,c,s){if(o(t.elm)&&o(c)&&(t=c[s]=Ot(t)),t.isRootInsert=!a,!v(t,e,n,r)){var f=t.data,l=t.children,p=t.tag;o(p)?(t.elm=t.ns?u.createElementNS(t.ns,p):u.createElement(p,t),x(t),b(t,l,e),o(f)&&w(t,e),g(n,t.elm,r)):i(t.isComment)?(t.elm=u.createComment(t.text),g(n,t.elm,r)):(t.elm=u.createTextNode(t.text),g(n,t.elm,r))}}function v(t,e,n,r){var a=t.data;if(o(a)){var c=o(t.componentInstance)&&a.keepAlive;if(o(a=a.hook)&&o(a=a.init)&&a(t,!1),o(t.componentInstance))return h(t,e),g(n,t.elm,r),i(c)&&m(t,e,n,r),!0}}function h(t,e){o(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,_(t)?(w(t,e),x(t)):(Ao(t),e.push(t))}function m(t,e,n,r){var i,c=t;while(c.componentInstance)if(c=c.componentInstance._vnode,o(i=c.data)&&o(i=i.transition)){for(i=0;i<a.activate.length;++i)a.activate[i](Co,c);e.push(c);break}g(n,t.elm,r)}function g(t,e,n){o(t)&&(o(n)?u.parentNode(n)===t&&u.insertBefore(t,e,n):u.appendChild(t,e))}function b(t,e,n){if(Array.isArray(e)){0;for(var r=0;r<e.length;++r)d(e[r],n,t.elm,null,!0,e,r)}else c(t.text)&&u.appendChild(t.elm,u.createTextNode(String(t.text)))}function _(t){while(t.componentInstance)t=t.componentInstance._vnode;return o(t.tag)}function w(t,n){for(var r=0;r<a.create.length;++r)a.create[r](Co,t);e=t.data.hook,o(e)&&(o(e.create)&&e.create(Co,t),o(e.insert)&&n.push(t))}function x(t){var e;if(o(e=t.fnScopeId))u.setStyleScope(t.elm,e);else{var n=t;while(n)o(e=n.context)&&o(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e),n=n.parent}o(e=En)&&e!==t.context&&e!==t.fnContext&&o(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e)}function O(t,e,n,r,o,i){for(;r<=o;++r)d(n[r],i,t,e,!1,n,r)}function j(t){var e,n,r=t.data;if(o(r))for(o(e=r.hook)&&o(e=e.destroy)&&e(t),e=0;e<a.destroy.length;++e)a.destroy[e](t);if(o(e=t.children))for(n=0;n<t.children.length;++n)j(t.children[n])}function S(t,e,n,r){for(;n<=r;++n){var i=e[n];o(i)&&(o(i.tag)?(A(i),j(i)):p(i.elm))}}function A(t,e){if(o(e)||o(t.data)){var n,r=a.remove.length+1;for(o(e)?e.listeners+=r:e=l(t.elm,r),o(n=t.componentInstance)&&o(n=n._vnode)&&o(n.data)&&A(n,e),n=0;n<a.remove.length;++n)a.remove[n](t,e);o(n=t.data.hook)&&o(n=n.remove)?n(t,e):e()}else p(t.elm)}function C(t,e,n,i,a){var c,s,f,l,p=0,v=0,h=e.length-1,y=e[0],m=e[h],g=n.length-1,b=n[0],_=n[g],w=!a;while(p<=h&&v<=g)r(y)?y=e[++p]:r(m)?m=e[--h]:ko(y,b)?(k(y,b,i,n,v),y=e[++p],b=n[++v]):ko(m,_)?(k(m,_,i,n,g),m=e[--h],_=n[--g]):ko(y,_)?(k(y,_,i,n,g),w&&u.insertBefore(t,y.elm,u.nextSibling(m.elm)),y=e[++p],_=n[--g]):ko(m,b)?(k(m,b,i,n,v),w&&u.insertBefore(t,m.elm,y.elm),m=e[--h],b=n[++v]):(r(c)&&(c=To(e,p,h)),s=o(b.key)?c[b.key]:$(b,e,p,h),r(s)?d(b,i,t,y.elm,!1,n,v):(f=e[s],ko(f,b)?(k(f,b,i,n,v),e[s]=void 0,w&&u.insertBefore(t,f.elm,y.elm)):d(b,i,t,y.elm,!1,n,v)),b=n[++v]);p>h?(l=r(n[g+1])?null:n[g+1].elm,O(t,l,n,v,g,i)):v>g&&S(t,e,p,h)}function $(t,e,n,r){for(var i=n;i<r;i++){var a=e[i];if(o(a)&&ko(t,a))return i}}function k(t,e,n,c,s,f){if(t!==e){o(e.elm)&&o(c)&&(e=c[s]=Ot(e));var l=e.elm=t.elm;if(i(t.isAsyncPlaceholder))o(e.asyncFactory.resolved)?P(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(i(e.isStatic)&&i(t.isStatic)&&e.key===t.key&&(i(e.isCloned)||i(e.isOnce)))e.componentInstance=t.componentInstance;else{var p,d=e.data;o(d)&&o(p=d.hook)&&o(p=p.prepatch)&&p(t,e);var v=t.children,h=e.children;if(o(d)&&_(e)){for(p=0;p<a.update.length;++p)a.update[p](t,e);o(p=d.hook)&&o(p=p.update)&&p(t,e)}r(e.text)?o(v)&&o(h)?v!==h&&C(l,v,h,n,f):o(h)?(o(t.text)&&u.setTextContent(l,""),O(l,null,h,0,h.length-1,n)):o(v)?S(l,v,0,v.length-1):o(t.text)&&u.setTextContent(l,""):t.text!==e.text&&u.setTextContent(l,e.text),o(d)&&o(p=d.hook)&&o(p=p.postpatch)&&p(t,e)}}}function E(t,e,n){if(i(n)&&o(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r<e.length;++r)e[r].data.hook.insert(e[r])}var T=y("attrs,class,staticClass,staticStyle,key");function P(t,e,n,r){var a,c=e.tag,s=e.data,u=e.children;if(r=r||s&&s.pre,e.elm=t,i(e.isComment)&&o(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(o(s)&&(o(a=s.hook)&&o(a=a.init)&&a(e,!0),o(a=e.componentInstance)))return h(e,n),!0;if(o(c)){if(o(u))if(t.hasChildNodes())if(o(a=s)&&o(a=a.domProps)&&o(a=a.innerHTML)){if(a!==t.innerHTML)return!1}else{for(var f=!0,l=t.firstChild,p=0;p<u.length;p++){if(!l||!P(l,u[p],n,r)){f=!1;break}l=l.nextSibling}if(!f||l)return!1}else b(e,u,n);if(o(s)){var d=!1;for(var v in s)if(!T(v)){d=!0,w(e,n);break}!d&&s["class"]&&ye(s["class"])}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,c){if(!r(e)){var s=!1,l=[];if(r(t))s=!0,d(e,l);else{var p=o(t.nodeType);if(!p&&ko(t,e))k(t,e,l,null,null,c);else{if(p){if(1===t.nodeType&&t.hasAttribute(F)&&(t.removeAttribute(F),n=!0),i(n)&&P(t,e,l))return E(e,l,!0),t;t=f(t)}var v=t.elm,h=u.parentNode(v);if(d(e,l,v._leaveCb?null:h,u.nextSibling(v)),o(e.parent)){var y=e.parent,m=_(e);while(y){for(var g=0;g<a.destroy.length;++g)a.destroy[g](y);if(y.elm=e.elm,m){for(var b=0;b<a.create.length;++b)a.create[b](Co,y);var w=y.data.hook.insert;if(w.merged)for(var x=1;x<w.fns.length;x++)w.fns[x]()}else Ao(y);y=y.parent}}o(h)?S(h,[t],0,0):o(t.tag)&&j(t)}}return E(e,l,s),e.elm}o(t)&&j(t)}}var Io={create:Mo,update:Mo,destroy:function(t){Mo(t,Co)}};function Mo(t,e){(t.data.directives||e.data.directives)&&Lo(t,e)}function Lo(t,e){var n,r,o,i=t===Co,a=e===Co,c=Do(t.data.directives,t.context),s=Do(e.data.directives,e.context),u=[],f=[];for(n in s)r=c[n],o=s[n],r?(o.oldValue=r.value,o.oldArg=r.arg,Fo(o,"update",e,t),o.def&&o.def.componentUpdated&&f.push(o)):(Fo(o,"bind",e,t),o.def&&o.def.inserted&&u.push(o));if(u.length){var l=function(){for(var n=0;n<u.length;n++)Fo(u[n],"inserted",e,t)};i?we(e,"insert",l):l()}if(f.length&&we(e,"postpatch",(function(){for(var n=0;n<f.length;n++)Fo(f[n],"componentUpdated",e,t)})),!i)for(n in c)s[n]||Fo(c[n],"unbind",t,t,a)}var No=Object.create(null);function Do(t,e){var n,r,o=Object.create(null);if(!t)return o;for(n=0;n<t.length;n++)r=t[n],r.modifiers||(r.modifiers=No),o[Ro(r)]=r,r.def=Xt(e.$options,"directives",r.name,!0);return o}function Ro(t){return t.rawName||t.name+"."+Object.keys(t.modifiers||{}).join(".")}function Fo(t,e,n,r,o){var i=t.def&&t.def[e];if(i)try{i(n.elm,t,n,r,o)}catch(Oa){ee(Oa,n.context,"directive "+t.name+" "+e+" hook")}}var Uo=[So,Io];function Bo(t,e){var n=e.componentOptions;if((!o(n)||!1!==n.Ctor.options.inheritAttrs)&&(!r(t.data.attrs)||!r(e.data.attrs))){var i,a,c,s=e.elm,u=t.data.attrs||{},f=e.data.attrs||{};for(i in o(f.__ob__)&&(f=e.data.attrs=T({},f)),f)a=f[i],c=u[i],c!==a&&Vo(s,i,a);for(i in(tt||nt)&&f.value!==u.value&&Vo(s,"value",f.value),u)r(f[i])&&(qr(i)?s.removeAttributeNS(Gr,Wr(i)):Br(i)||s.removeAttribute(i))}}function Vo(t,e,n){t.tagName.indexOf("-")>-1?zo(t,e,n):Hr(e)?Kr(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):Br(e)?t.setAttribute(e,zr(e,n)):qr(e)?Kr(n)?t.removeAttributeNS(Gr,Wr(e)):t.setAttributeNS(Gr,e,n):zo(t,e,n)}function zo(t,e,n){if(Kr(n))t.removeAttribute(e);else{if(tt&&!et&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var Ho={create:Bo,update:Bo};function Go(t,e){var n=e.elm,i=e.data,a=t.data;if(!(r(i.staticClass)&&r(i.class)&&(r(a)||r(a.staticClass)&&r(a.class)))){var c=Xr(e),s=n._transitionClasses;o(s)&&(c=Zr(c,Qr(s))),c!==n._prevClass&&(n.setAttribute("class",c),n._prevClass=c)}}var qo,Wo={create:Go,update:Go},Ko="__r",Xo="__c";function Jo(t){if(o(t[Ko])){var e=tt?"change":"input";t[e]=[].concat(t[Ko],t[e]||[]),delete t[Ko]}o(t[Xo])&&(t.change=[].concat(t[Xo],t.change||[]),delete t[Xo])}function Yo(t,e,n){var r=qo;return function o(){var i=e.apply(null,arguments);null!==i&&ti(t,o,n,r)}}var Zo=ae&&!(ot&&Number(ot[1])<=53);function Qo(t,e,n,r){if(Zo){var o=Wn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=o||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}qo.addEventListener(t,e,at?{capture:n,passive:r}:n)}function ti(t,e,n,r){(r||qo).removeEventListener(t,e._wrapper||e,n)}function ei(t,e){if(!r(t.data.on)||!r(e.data.on)){var n=e.data.on||{},o=t.data.on||{};qo=e.elm,Jo(n),_e(n,o,Qo,ti,Yo,e.context),qo=void 0}}var ni,ri={create:ei,update:ei};function oi(t,e){if(!r(t.data.domProps)||!r(e.data.domProps)){var n,i,a=e.elm,c=t.data.domProps||{},s=e.data.domProps||{};for(n in o(s.__ob__)&&(s=e.data.domProps=T({},s)),c)n in s||(a[n]="");for(n in s){if(i=s[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),i===c[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=i;var u=r(i)?"":String(i);ii(a,u)&&(a.value=u)}else if("innerHTML"===n&&oo(a.tagName)&&r(a.innerHTML)){ni=ni||document.createElement("div"),ni.innerHTML="<svg>"+i+"</svg>";var f=ni.firstChild;while(a.firstChild)a.removeChild(a.firstChild);while(f.firstChild)a.appendChild(f.firstChild)}else if(i!==c[n])try{a[n]=i}catch(Oa){}}}}function ii(t,e){return!t.composing&&("OPTION"===t.tagName||ai(t,e)||ci(t,e))}function ai(t,e){var n=!0;try{n=document.activeElement!==t}catch(Oa){}return n&&t.value!==e}function ci(t,e){var n=t.value,r=t._vModifiers;if(o(r)){if(r.number)return h(n)!==h(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}var si={create:oi,update:oi},ui=w((function(t){var e={},n=/;(?![^(]*\))/g,r=/:(.+)/;return t.split(n).forEach((function(t){if(t){var n=t.split(r);n.length>1&&(e[n[0].trim()]=n[1].trim())}})),e}));function fi(t){var e=li(t.style);return t.staticStyle?T(t.staticStyle,e):e}function li(t){return Array.isArray(t)?P(t):"string"===typeof t?ui(t):t}function pi(t,e){var n,r={};if(e){var o=t;while(o.componentInstance)o=o.componentInstance._vnode,o&&o.data&&(n=fi(o.data))&&T(r,n)}(n=fi(t.data))&&T(r,n);var i=t;while(i=i.parent)i.data&&(n=fi(i.data))&&T(r,n);return r}var di,vi=/^--/,hi=/\s*!important$/,yi=function(t,e,n){if(vi.test(e))t.style.setProperty(e,n);else if(hi.test(n))t.style.setProperty(A(e),n.replace(hi,""),"important");else{var r=gi(e);if(Array.isArray(n))for(var o=0,i=n.length;o<i;o++)t.style[r]=n[o];else t.style[r]=n}},mi=["Webkit","Moz","ms"],gi=w((function(t){if(di=di||document.createElement("div").style,t=O(t),"filter"!==t&&t in di)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<mi.length;n++){var r=mi[n]+e;if(r in di)return r}}));function bi(t,e){var n=e.data,i=t.data;if(!(r(n.staticStyle)&&r(n.style)&&r(i.staticStyle)&&r(i.style))){var a,c,s=e.elm,u=i.staticStyle,f=i.normalizedStyle||i.style||{},l=u||f,p=li(e.data.style)||{};e.data.normalizedStyle=o(p.__ob__)?T({},p):p;var d=pi(e,!0);for(c in l)r(d[c])&&yi(s,c,"");for(c in d)a=d[c],a!==l[c]&&yi(s,c,null==a?"":a)}}var _i={create:bi,update:bi},wi=/\s+/;function xi(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(wi).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Oi(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(wi).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";while(n.indexOf(r)>=0)n=n.replace(r," ");n=n.trim(),n?t.setAttribute("class",n):t.removeAttribute("class")}}function ji(t){if(t){if("object"===typeof t){var e={};return!1!==t.css&&T(e,Si(t.name||"v")),T(e,t),e}return"string"===typeof t?Si(t):void 0}}var Si=w((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Ai=J&&!et,Ci="transition",$i="animation",ki="transition",Ei="transitionend",Ti="animation",Pi="animationend";Ai&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(ki="WebkitTransition",Ei="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Ti="WebkitAnimation",Pi="webkitAnimationEnd"));var Ii=J?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Mi(t){Ii((function(){Ii(t)}))}function Li(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),xi(t,e))}function Ni(t,e){t._transitionClasses&&g(t._transitionClasses,e),Oi(t,e)}function Di(t,e,n){var r=Fi(t,e),o=r.type,i=r.timeout,a=r.propCount;if(!o)return n();var c=o===Ci?Ei:Pi,s=0,u=function(){t.removeEventListener(c,f),n()},f=function(e){e.target===t&&++s>=a&&u()};setTimeout((function(){s<a&&u()}),i+1),t.addEventListener(c,f)}var Ri=/\b(transform|all)(,|$)/;function Fi(t,e){var n,r=window.getComputedStyle(t),o=(r[ki+"Delay"]||"").split(", "),i=(r[ki+"Duration"]||"").split(", "),a=Ui(o,i),c=(r[Ti+"Delay"]||"").split(", "),s=(r[Ti+"Duration"]||"").split(", "),u=Ui(c,s),f=0,l=0;e===Ci?a>0&&(n=Ci,f=a,l=i.length):e===$i?u>0&&(n=$i,f=u,l=s.length):(f=Math.max(a,u),n=f>0?a>u?Ci:$i:null,l=n?n===Ci?i.length:s.length:0);var p=n===Ci&&Ri.test(r[ki+"Property"]);return{type:n,timeout:f,propCount:l,hasTransform:p}}function Ui(t,e){while(t.length<e.length)t=t.concat(t);return Math.max.apply(null,e.map((function(e,n){return Bi(e)+Bi(t[n])})))}function Bi(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function Vi(t,e){var n=t.elm;o(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var i=ji(t.data.transition);if(!r(i)&&!o(n._enterCb)&&1===n.nodeType){var a=i.css,c=i.type,u=i.enterClass,f=i.enterToClass,l=i.enterActiveClass,p=i.appearClass,d=i.appearToClass,v=i.appearActiveClass,y=i.beforeEnter,m=i.enter,g=i.afterEnter,b=i.enterCancelled,_=i.beforeAppear,w=i.appear,x=i.afterAppear,O=i.appearCancelled,j=i.duration,S=En,A=En.$vnode;while(A&&A.parent)S=A.context,A=A.parent;var C=!S._isMounted||!t.isRootInsert;if(!C||w||""===w){var $=C&&p?p:u,k=C&&v?v:l,E=C&&d?d:f,T=C&&_||y,P=C&&"function"===typeof w?w:m,I=C&&x||g,M=C&&O||b,L=h(s(j)?j.enter:j);0;var N=!1!==a&&!et,D=Gi(P),F=n._enterCb=R((function(){N&&(Ni(n,E),Ni(n,k)),F.cancelled?(N&&Ni(n,$),M&&M(n)):I&&I(n),n._enterCb=null}));t.data.show||we(t,"insert",(function(){var e=n.parentNode,r=e&&e._pending&&e._pending[t.key];r&&r.tag===t.tag&&r.elm._leaveCb&&r.elm._leaveCb(),P&&P(n,F)})),T&&T(n),N&&(Li(n,$),Li(n,k),Mi((function(){Ni(n,$),F.cancelled||(Li(n,E),D||(Hi(L)?setTimeout(F,L):Di(n,c,F)))}))),t.data.show&&(e&&e(),P&&P(n,F)),N||D||F()}}}function zi(t,e){var n=t.elm;o(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var i=ji(t.data.transition);if(r(i)||1!==n.nodeType)return e();if(!o(n._leaveCb)){var a=i.css,c=i.type,u=i.leaveClass,f=i.leaveToClass,l=i.leaveActiveClass,p=i.beforeLeave,d=i.leave,v=i.afterLeave,y=i.leaveCancelled,m=i.delayLeave,g=i.duration,b=!1!==a&&!et,_=Gi(d),w=h(s(g)?g.leave:g);0;var x=n._leaveCb=R((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),b&&(Ni(n,f),Ni(n,l)),x.cancelled?(b&&Ni(n,u),y&&y(n)):(e(),v&&v(n)),n._leaveCb=null}));m?m(O):O()}function O(){x.cancelled||(!t.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),p&&p(n),b&&(Li(n,u),Li(n,l),Mi((function(){Ni(n,u),x.cancelled||(Li(n,f),_||(Hi(w)?setTimeout(x,w):Di(n,c,x)))}))),d&&d(n,x),b||_||x())}}function Hi(t){return"number"===typeof t&&!isNaN(t)}function Gi(t){if(r(t))return!1;var e=t.fns;return o(e)?Gi(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function qi(t,e){!0!==e.data.show&&Vi(e)}var Wi=J?{create:qi,activate:qi,remove:function(t,e){!0!==t.data.show?zi(t,e):e()}}:{},Ki=[Ho,Wo,ri,si,_i,Wi],Xi=Ki.concat(Uo),Ji=Po({nodeOps:jo,modules:Xi});et&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&oa(t,"input")}));var Yi={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?we(n,"postpatch",(function(){Yi.componentUpdated(t,e,n)})):Zi(t,e,n.context),t._vOptions=[].map.call(t.options,ea)):("textarea"===n.tag||uo(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",na),t.addEventListener("compositionend",ra),t.addEventListener("change",ra),et&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){Zi(t,e,n.context);var r=t._vOptions,o=t._vOptions=[].map.call(t.options,ea);if(o.some((function(t,e){return!N(t,r[e])}))){var i=t.multiple?e.value.some((function(t){return ta(t,o)})):e.value!==e.oldValue&&ta(e.value,o);i&&oa(t,"change")}}}};function Zi(t,e,n){Qi(t,e,n),(tt||nt)&&setTimeout((function(){Qi(t,e,n)}),0)}function Qi(t,e,n){var r=e.value,o=t.multiple;if(!o||Array.isArray(r)){for(var i,a,c=0,s=t.options.length;c<s;c++)if(a=t.options[c],o)i=D(r,ea(a))>-1,a.selected!==i&&(a.selected=i);else if(N(ea(a),r))return void(t.selectedIndex!==c&&(t.selectedIndex=c));o||(t.selectedIndex=-1)}}function ta(t,e){return e.every((function(e){return!N(e,t)}))}function ea(t){return"_value"in t?t._value:t.value}function na(t){t.target.composing=!0}function ra(t){t.target.composing&&(t.target.composing=!1,oa(t.target,"input"))}function oa(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function ia(t){return!t.componentInstance||t.data&&t.data.transition?t:ia(t.componentInstance._vnode)}var aa={bind:function(t,e,n){var r=e.value;n=ia(n);var o=n.data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&o?(n.data.show=!0,Vi(n,(function(){t.style.display=i}))):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value,o=e.oldValue;if(!r!==!o){n=ia(n);var i=n.data&&n.data.transition;i?(n.data.show=!0,r?Vi(n,(function(){t.style.display=t.__vOriginalDisplay})):zi(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none"}},unbind:function(t,e,n,r,o){o||(t.style.display=t.__vOriginalDisplay)}},ca={model:Yi,show:aa},sa={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function ua(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?ua(On(e.children)):t}function fa(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var o=n._parentListeners;for(var i in o)e[O(i)]=o[i];return e}function la(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function pa(t){while(t=t.parent)if(t.data.transition)return!0}function da(t,e){return e.key===t.key&&e.tag===t.tag}var va=function(t){return t.tag||xn(t)},ha=function(t){return"show"===t.name},ya={name:"transition",props:sa,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(va),n.length)){0;var r=this.mode;0;var o=n[0];if(pa(this.$vnode))return o;var i=ua(o);if(!i)return o;if(this._leaving)return la(t,o);var a="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?a+"comment":a+i.tag:c(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var s=(i.data||(i.data={})).transition=fa(this),u=this._vnode,f=ua(u);if(i.data.directives&&i.data.directives.some(ha)&&(i.data.show=!0),f&&f.data&&!da(i,f)&&!xn(f)&&(!f.componentInstance||!f.componentInstance._vnode.isComment)){var l=f.data.transition=T({},s);if("out-in"===r)return this._leaving=!0,we(l,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),la(t,o);if("in-out"===r){if(xn(i))return u;var p,d=function(){p()};we(s,"afterEnter",d),we(s,"enterCancelled",d),we(l,"delayLeave",(function(t){p=t}))}}return o}}},ma=T({tag:String,moveClass:String},sa);delete ma.mode;var ga={props:ma,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var o=Tn(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,o(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],a=fa(this),c=0;c<o.length;c++){var s=o[c];if(s.tag)if(null!=s.key&&0!==String(s.key).indexOf("__vlist"))i.push(s),n[s.key]=s,(s.data||(s.data={})).transition=a;else;}if(r){for(var u=[],f=[],l=0;l<r.length;l++){var p=r[l];p.data.transition=a,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?u.push(p):f.push(p)}this.kept=t(e,null,u),this.removed=f}return t(e,null,i)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(ba),t.forEach(_a),t.forEach(wa),this._reflow=document.body.offsetHeight,t.forEach((function(t){if(t.data.moved){var n=t.elm,r=n.style;Li(n,e),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(Ei,n._moveCb=function t(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(Ei,t),n._moveCb=null,Ni(n,e))})}})))},methods:{hasMove:function(t,e){if(!Ai)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach((function(t){Oi(n,t)})),xi(n,e),n.style.display="none",this.$el.appendChild(n);var r=Fi(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}};function ba(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function _a(t){t.data.newPos=t.elm.getBoundingClientRect()}function wa(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,o=e.top-n.top;if(r||o){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+r+"px,"+o+"px)",i.transitionDuration="0s"}}var xa={Transition:ya,TransitionGroup:ga};Or.config.mustUseProp=Ur,Or.config.isReservedTag=io,Or.config.isReservedAttr=Rr,Or.config.getTagNamespace=ao,Or.config.isUnknownElement=so,T(Or.options.directives,ca),T(Or.options.components,xa),Or.prototype.__patch__=J?Ji:I,Or.prototype.$mount=function(t,e){return t=t&&J?fo(t):void 0,Mn(this,t,e)},J&&setTimeout((function(){V.devtools&&ut&&ut.emit("init",Or)}),0),e["a"]=Or}).call(this,n("c8ba"))},"2c6c":function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},"2cf4":function(t,e,n){var r,o,i,a=n("da84"),c=n("d039"),s=n("c6b6"),u=n("f8c2"),f=n("1be4"),l=n("cc12"),p=n("b39a"),d=a.location,v=a.setImmediate,h=a.clearImmediate,y=a.process,m=a.MessageChannel,g=a.Dispatch,b=0,_={},w="onreadystatechange",x=function(t){if(_.hasOwnProperty(t)){var e=_[t];delete _[t],e()}},O=function(t){return function(){x(t)}},j=function(t){x(t.data)},S=function(t){a.postMessage(t+"",d.protocol+"//"+d.host)};v&&h||(v=function(t){var e=[],n=1;while(arguments.length>n)e.push(arguments[n++]);return _[++b]=function(){("function"==typeof t?t:Function(t)).apply(void 0,e)},r(b),b},h=function(t){delete _[t]},"process"==s(y)?r=function(t){y.nextTick(O(t))}:g&&g.now?r=function(t){g.now(O(t))}:m&&!/(iphone|ipod|ipad).*applewebkit/i.test(p)?(o=new m,i=o.port2,o.port1.onmessage=j,r=u(i.postMessage,i,1)):!a.addEventListener||"function"!=typeof postMessage||a.importScripts||c(S)?r=w in l("script")?function(t){f.appendChild(l("script"))[w]=function(){f.removeChild(this),x(t)}}:function(t){setTimeout(O(t),0)}:(r=S,a.addEventListener("message",j,!1))),t.exports={set:v,clear:h}},"2d83":function(t,e,n){"use strict";var r=n("387f");t.exports=function(t,e,n,o,i){var a=new Error(t);return r(a,e,n,o,i)}},"2e67":function(t,e,n){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},"2f62":function(t,e,n){"use strict";(function(t){
8
  /**
9
- * vuex v3.1.1
10
  * (c) 2019 Evan You
11
  * @license MIT
12
  */
13
- function r(t){var e=Number(t.version.split(".")[0]);if(e>=2)t.mixin({beforeCreate:r});else{var n=t.prototype._init;t.prototype._init=function(t){void 0===t&&(t={}),t.init=t.init?[r].concat(t.init):r,n.call(this,t)}}function r(){var t=this.$options;t.store?this.$store="function"===typeof t.store?t.store():t.store:t.parent&&t.parent.$store&&(this.$store=t.parent.$store)}}n.d(e,"b",(function(){return I}));var o="undefined"!==typeof window?window:"undefined"!==typeof t?t:{},i=o.__VUE_DEVTOOLS_GLOBAL_HOOK__;function a(t){i&&(t._devtoolHook=i,i.emit("vuex:init",t),i.on("vuex:travel-to-state",(function(e){t.replaceState(e)})),t.subscribe((function(t,e){i.emit("vuex:mutation",t,e)})))}function c(t,e){Object.keys(t).forEach((function(n){return e(t[n],n)}))}function s(t){return null!==t&&"object"===typeof t}function u(t){return t&&"function"===typeof t.then}function f(t,e){return function(){return t(e)}}var l=function(t,e){this.runtime=e,this._children=Object.create(null),this._rawModule=t;var n=t.state;this.state=("function"===typeof n?n():n)||{}},p={namespaced:{configurable:!0}};p.namespaced.get=function(){return!!this._rawModule.namespaced},l.prototype.addChild=function(t,e){this._children[t]=e},l.prototype.removeChild=function(t){delete this._children[t]},l.prototype.getChild=function(t){return this._children[t]},l.prototype.update=function(t){this._rawModule.namespaced=t.namespaced,t.actions&&(this._rawModule.actions=t.actions),t.mutations&&(this._rawModule.mutations=t.mutations),t.getters&&(this._rawModule.getters=t.getters)},l.prototype.forEachChild=function(t){c(this._children,t)},l.prototype.forEachGetter=function(t){this._rawModule.getters&&c(this._rawModule.getters,t)},l.prototype.forEachAction=function(t){this._rawModule.actions&&c(this._rawModule.actions,t)},l.prototype.forEachMutation=function(t){this._rawModule.mutations&&c(this._rawModule.mutations,t)},Object.defineProperties(l.prototype,p);var d=function(t){this.register([],t,!1)};function v(t,e,n){if(e.update(n),n.modules)for(var r in n.modules){if(!e.getChild(r))return void 0;v(t.concat(r),e.getChild(r),n.modules[r])}}d.prototype.get=function(t){return t.reduce((function(t,e){return t.getChild(e)}),this.root)},d.prototype.getNamespace=function(t){var e=this.root;return t.reduce((function(t,n){return e=e.getChild(n),t+(e.namespaced?n+"/":"")}),"")},d.prototype.update=function(t){v([],this.root,t)},d.prototype.register=function(t,e,n){var r=this;void 0===n&&(n=!0);var o=new l(e,n);if(0===t.length)this.root=o;else{var i=this.get(t.slice(0,-1));i.addChild(t[t.length-1],o)}e.modules&&c(e.modules,(function(e,o){r.register(t.concat(o),e,n)}))},d.prototype.unregister=function(t){var e=this.get(t.slice(0,-1)),n=t[t.length-1];e.getChild(n).runtime&&e.removeChild(n)};var h;var y=function(t){var e=this;void 0===t&&(t={}),!h&&"undefined"!==typeof window&&window.Vue&&E(window.Vue);var n=t.plugins;void 0===n&&(n=[]);var r=t.strict;void 0===r&&(r=!1),this._committing=!1,this._actions=Object.create(null),this._actionSubscribers=[],this._mutations=Object.create(null),this._wrappedGetters=Object.create(null),this._modules=new d(t),this._modulesNamespaceMap=Object.create(null),this._subscribers=[],this._watcherVM=new h;var o=this,i=this,c=i.dispatch,s=i.commit;this.dispatch=function(t,e){return c.call(o,t,e)},this.commit=function(t,e,n){return s.call(o,t,e,n)},this.strict=r;var u=this._modules.root.state;w(this,u,[],this._modules.root),_(this,u),n.forEach((function(t){return t(e)}));var f=void 0!==t.devtools?t.devtools:h.config.devtools;f&&a(this)},m={state:{configurable:!0}};function g(t,e){return e.indexOf(t)<0&&e.push(t),function(){var n=e.indexOf(t);n>-1&&e.splice(n,1)}}function b(t,e){t._actions=Object.create(null),t._mutations=Object.create(null),t._wrappedGetters=Object.create(null),t._modulesNamespaceMap=Object.create(null);var n=t.state;w(t,n,[],t._modules.root,!0),_(t,n,e)}function _(t,e,n){var r=t._vm;t.getters={};var o=t._wrappedGetters,i={};c(o,(function(e,n){i[n]=f(e,t),Object.defineProperty(t.getters,n,{get:function(){return t._vm[n]},enumerable:!0})}));var a=h.config.silent;h.config.silent=!0,t._vm=new h({data:{$$state:e},computed:i}),h.config.silent=a,t.strict&&C(t),r&&(n&&t._withCommit((function(){r._data.$$state=null})),h.nextTick((function(){return r.$destroy()})))}function w(t,e,n,r,o){var i=!n.length,a=t._modules.getNamespace(n);if(r.namespaced&&(t._modulesNamespaceMap[a]=r),!i&&!o){var c=$(e,n.slice(0,-1)),s=n[n.length-1];t._withCommit((function(){h.set(c,s,r.state)}))}var u=r.context=x(t,a,n);r.forEachMutation((function(e,n){var r=a+n;j(t,r,e,u)})),r.forEachAction((function(e,n){var r=e.root?n:a+n,o=e.handler||e;S(t,r,o,u)})),r.forEachGetter((function(e,n){var r=a+n;A(t,r,e,u)})),r.forEachChild((function(r,i){w(t,e,n.concat(i),r,o)}))}function x(t,e,n){var r=""===e,o={dispatch:r?t.dispatch:function(n,r,o){var i=k(n,r,o),a=i.payload,c=i.options,s=i.type;return c&&c.root||(s=e+s),t.dispatch(s,a)},commit:r?t.commit:function(n,r,o){var i=k(n,r,o),a=i.payload,c=i.options,s=i.type;c&&c.root||(s=e+s),t.commit(s,a,c)}};return Object.defineProperties(o,{getters:{get:r?function(){return t.getters}:function(){return O(t,e)}},state:{get:function(){return $(t.state,n)}}}),o}function O(t,e){var n={},r=e.length;return Object.keys(t.getters).forEach((function(o){if(o.slice(0,r)===e){var i=o.slice(r);Object.defineProperty(n,i,{get:function(){return t.getters[o]},enumerable:!0})}})),n}function j(t,e,n,r){var o=t._mutations[e]||(t._mutations[e]=[]);o.push((function(e){n.call(t,r.state,e)}))}function S(t,e,n,r){var o=t._actions[e]||(t._actions[e]=[]);o.push((function(e,o){var i=n.call(t,{dispatch:r.dispatch,commit:r.commit,getters:r.getters,state:r.state,rootGetters:t.getters,rootState:t.state},e,o);return u(i)||(i=Promise.resolve(i)),t._devtoolHook?i.catch((function(e){throw t._devtoolHook.emit("vuex:error",e),e})):i}))}function A(t,e,n,r){t._wrappedGetters[e]||(t._wrappedGetters[e]=function(t){return n(r.state,r.getters,t.state,t.getters)})}function C(t){t._vm.$watch((function(){return this._data.$$state}),(function(){0}),{deep:!0,sync:!0})}function $(t,e){return e.length?e.reduce((function(t,e){return t[e]}),t):t}function k(t,e,n){return s(t)&&t.type&&(n=e,e=t,t=t.type),{type:t,payload:e,options:n}}function E(t){h&&t===h||(h=t,r(h))}m.state.get=function(){return this._vm._data.$$state},m.state.set=function(t){0},y.prototype.commit=function(t,e,n){var r=this,o=k(t,e,n),i=o.type,a=o.payload,c=(o.options,{type:i,payload:a}),s=this._mutations[i];s&&(this._withCommit((function(){s.forEach((function(t){t(a)}))})),this._subscribers.forEach((function(t){return t(c,r.state)})))},y.prototype.dispatch=function(t,e){var n=this,r=k(t,e),o=r.type,i=r.payload,a={type:o,payload:i},c=this._actions[o];if(c){try{this._actionSubscribers.filter((function(t){return t.before})).forEach((function(t){return t.before(a,n.state)}))}catch(u){0}var s=c.length>1?Promise.all(c.map((function(t){return t(i)}))):c[0](i);return s.then((function(t){try{n._actionSubscribers.filter((function(t){return t.after})).forEach((function(t){return t.after(a,n.state)}))}catch(u){0}return t}))}},y.prototype.subscribe=function(t){return g(t,this._subscribers)},y.prototype.subscribeAction=function(t){var e="function"===typeof t?{before:t}:t;return g(e,this._actionSubscribers)},y.prototype.watch=function(t,e,n){var r=this;return this._watcherVM.$watch((function(){return t(r.state,r.getters)}),e,n)},y.prototype.replaceState=function(t){var e=this;this._withCommit((function(){e._vm._data.$$state=t}))},y.prototype.registerModule=function(t,e,n){void 0===n&&(n={}),"string"===typeof t&&(t=[t]),this._modules.register(t,e),w(this,this.state,t,this._modules.get(t),n.preserveState),_(this,this.state)},y.prototype.unregisterModule=function(t){var e=this;"string"===typeof t&&(t=[t]),this._modules.unregister(t),this._withCommit((function(){var n=$(e.state,t.slice(0,-1));h.delete(n,t[t.length-1])})),b(this)},y.prototype.hotUpdate=function(t){this._modules.update(t),b(this,!0)},y.prototype._withCommit=function(t){var e=this._committing;this._committing=!0,t(),this._committing=e},Object.defineProperties(y.prototype,m);var T=D((function(t,e){var n={};return N(e).forEach((function(e){var r=e.key,o=e.val;n[r]=function(){var e=this.$store.state,n=this.$store.getters;if(t){var r=R(this.$store,"mapState",t);if(!r)return;e=r.context.state,n=r.context.getters}return"function"===typeof o?o.call(this,e,n):e[o]},n[r].vuex=!0})),n})),P=D((function(t,e){var n={};return N(e).forEach((function(e){var r=e.key,o=e.val;n[r]=function(){var e=[],n=arguments.length;while(n--)e[n]=arguments[n];var r=this.$store.commit;if(t){var i=R(this.$store,"mapMutations",t);if(!i)return;r=i.context.commit}return"function"===typeof o?o.apply(this,[r].concat(e)):r.apply(this.$store,[o].concat(e))}})),n})),I=D((function(t,e){var n={};return N(e).forEach((function(e){var r=e.key,o=e.val;o=t+o,n[r]=function(){if(!t||R(this.$store,"mapGetters",t))return this.$store.getters[o]},n[r].vuex=!0})),n})),M=D((function(t,e){var n={};return N(e).forEach((function(e){var r=e.key,o=e.val;n[r]=function(){var e=[],n=arguments.length;while(n--)e[n]=arguments[n];var r=this.$store.dispatch;if(t){var i=R(this.$store,"mapActions",t);if(!i)return;r=i.context.dispatch}return"function"===typeof o?o.apply(this,[r].concat(e)):r.apply(this.$store,[o].concat(e))}})),n})),L=function(t){return{mapState:T.bind(null,t),mapGetters:I.bind(null,t),mapMutations:P.bind(null,t),mapActions:M.bind(null,t)}};function N(t){return Array.isArray(t)?t.map((function(t){return{key:t,val:t}})):Object.keys(t).map((function(e){return{key:e,val:t[e]}}))}function D(t){return function(e,n){return"string"!==typeof e?(n=e,e=""):"/"!==e.charAt(e.length-1)&&(e+="/"),t(e,n)}}function R(t,e,n){var r=t._modulesNamespaceMap[n];return r}var F={Store:y,install:E,version:"3.1.1",mapState:T,mapMutations:P,mapGetters:I,mapActions:M,createNamespacedHelpers:L};e["a"]=F}).call(this,n("c8ba"))},"2fa7":function(t,e,n){"use strict";n.d(e,"a",(function(){return i}));var r=n("85d3"),o=n.n(r);function i(t,e,n){return e in t?o()(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}},"30b5":function(t,e,n){"use strict";var r=n("c532");function o(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,e,n){if(!e)return t;var i;if(n)i=n(e);else if(r.isURLSearchParams(e))i=e.toString();else{var a=[];r.forEach(e,(function(t,e){null!==t&&"undefined"!==typeof t&&(r.isArray(t)?e+="[]":t=[t],r.forEach(t,(function(t){r.isDate(t)?t=t.toISOString():r.isObject(t)&&(t=JSON.stringify(t)),a.push(o(e)+"="+o(t))})))})),i=a.join("&")}return i&&(t+=(-1===t.indexOf("?")?"?":"&")+i),t}},"35a1":function(t,e,n){var r=n("f5df"),o=n("3f8c"),i=n("b622"),a=i("iterator");t.exports=function(t){if(void 0!=t)return t[a]||t["@@iterator"]||o[r(t)]}},"37e8":function(t,e,n){var r=n("83ab"),o=n("9bf2"),i=n("825a"),a=n("df75");t.exports=r?Object.defineProperties:function(t,e){i(t);var n,r=a(e),c=r.length,s=0;while(c>s)o.f(t,n=r[s++],e[n]);return t}},"387f":function(t,e,n){"use strict";t.exports=function(t,e,n,r,o){return t.config=e,n&&(t.code=n),t.request=r,t.response=o,t}},3934:function(t,e,n){"use strict";var r=n("c532");t.exports=r.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function o(t){var r=t;return e&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return t=o(window.location.href),function(e){var n=r.isString(e)?o(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return function(){return!0}}()},"3ac6":function(t,e,n){(function(e){var n=function(t){return t&&t.Math==Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof e&&e)||Function("return this")()}).call(this,n("c8ba"))},"3bbe":function(t,e,n){var r=n("861d");t.exports=function(t){if(!r(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},"3e47":function(t,e,n){var r=n("a5eb"),o=n("c1b2"),i=n("4180");r({target:"Object",stat:!0,forced:!o,sham:!o},{defineProperty:i.f})},"3f8c":function(t,e){t.exports={}},4160:function(t,e,n){"use strict";var r=n("23e7"),o=n("17c2");r({target:"Array",proto:!0,forced:[].forEach!=o},{forEach:o})},4180:function(t,e,n){var r=n("c1b2"),o=n("77b2"),i=n("6f8d"),a=n("7168"),c=Object.defineProperty;e.f=r?c:function(t,e,n){if(i(t),e=a(e,!0),i(n),o)try{return c(t,e,n)}catch(r){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},"428f":function(t,e,n){t.exports=n("da84")},4362:function(t,e,n){e.nextTick=function(t){setTimeout(t,0)},e.platform=e.arch=e.execPath=e.title="browser",e.pid=1,e.browser=!0,e.env={},e.argv=[],e.binding=function(t){throw new Error("No such module. (Possibly not yet loaded)")},function(){var t,r="/";e.cwd=function(){return r},e.chdir=function(e){t||(t=n("df7c")),r=t.resolve(e,r)}}(),e.exit=e.kill=e.umask=e.dlopen=e.uptime=e.memoryUsage=e.uvCounters=function(){},e.features={}},"44ad":function(t,e,n){var r=n("d039"),o=n("c6b6"),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},"44ba":function(t,e,n){var r=n("c1b2"),o=n("7043"),i=n("2c6c"),a=n("a421"),c=n("7168"),s=n("78e7"),u=n("77b2"),f=Object.getOwnPropertyDescriptor;e.f=r?f:function(t,e){if(t=a(t),e=c(e,!0),u)try{return f(t,e)}catch(n){}if(s(t,e))return i(!o.f.call(t,e),t[e])}},"44d2":function(t,e,n){var r=n("b622"),o=n("7c73"),i=n("9112"),a=r("unscopables"),c=Array.prototype;void 0==c[a]&&i(c,a,o(null)),t.exports=function(t){c[a][t]=!0}},"44de":function(t,e,n){var r=n("da84");t.exports=function(t,e){var n=r.console;n&&n.error&&(1===arguments.length?n.error(t):n.error(t,e))}},"44e7":function(t,e,n){var r=n("861d"),o=n("c6b6"),i=n("b622"),a=i("match");t.exports=function(t){var e;return r(t)&&(void 0!==(e=t[a])?!!e:"RegExp"==o(t))}},"466d":function(t,e,n){"use strict";var r=n("d784"),o=n("825a"),i=n("50c4"),a=n("1d80"),c=n("8aa5"),s=n("14c3");r("match",1,(function(t,e,n){return[function(e){var n=a(this),r=void 0==e?void 0:e[t];return void 0!==r?r.call(e,n):new RegExp(e)[t](String(n))},function(t){var r=n(e,t,this);if(r.done)return r.value;var a=o(t),u=String(this);if(!a.global)return s(a,u);var f=a.unicode;a.lastIndex=0;var l,p=[],d=0;while(null!==(l=s(a,u))){var v=String(l[0]);p[d]=v,""===v&&(a.lastIndex=c(u,i(a.lastIndex),f)),d++}return 0===d?null:p}]}))},"467f":function(t,e,n){"use strict";var r=n("2d83");t.exports=function(t,e,n){var o=n.config.validateStatus;n.status&&o&&!o(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},4795:function(t,e,n){var r=n("23e7"),o=n("da84"),i=n("b39a"),a=[].slice,c=/MSIE .\./.test(i),s=function(t){return function(e,n){var r=arguments.length>2,o=r?a.call(arguments,2):void 0;return t(r?function(){("function"==typeof e?e:Function(e)).apply(this,o)}:e,n)}};r({global:!0,bind:!0,forced:c},{setTimeout:s(o.setTimeout),setInterval:s(o.setInterval)})},4840:function(t,e,n){var r=n("825a"),o=n("1c0b"),i=n("b622"),a=i("species");t.exports=function(t,e){var n,i=r(t).constructor;return void 0===i||void 0==(n=r(i)[a])?e:o(n)}},4930:function(t,e,n){var r=n("d039");t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},"4d63":function(t,e,n){var r=n("83ab"),o=n("da84"),i=n("94ca"),a=n("7156"),c=n("9bf2").f,s=n("241c").f,u=n("44e7"),f=n("ad6d"),l=n("6eeb"),p=n("d039"),d=n("2626"),v=n("b622"),h=v("match"),y=o.RegExp,m=y.prototype,g=/a/g,b=/a/g,_=new y(g)!==g,w=r&&i("RegExp",!_||p((function(){return b[h]=!1,y(g)!=g||y(b)==b||"/a/i"!=y(g,"i")})));if(w){var x=function(t,e){var n=this instanceof x,r=u(t),o=void 0===e;return!n&&r&&t.constructor===x&&o?t:a(_?new y(r&&!o?t.source:t,e):y((r=t instanceof x)?t.source:t,r&&o?f.call(t):e),n?this:m,x)},O=function(t){t in x||c(x,t,{configurable:!0,get:function(){return y[t]},set:function(e){y[t]=e}})},j=s(y),S=0;while(j.length>S)O(j[S++]);m.constructor=x,x.prototype=m,l(o,"RegExp",x)}d("RegExp")},"4d64":function(t,e,n){var r=n("fc6a"),o=n("50c4"),i=n("23cb"),a=function(t){return function(e,n,a){var c,s=r(e),u=o(s.length),f=i(a,u);if(t&&n!=n){while(u>f)if(c=s[f++],c!=c)return!0}else for(;u>f;f++)if((t||f in s)&&s[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},"4de4":function(t,e,n){"use strict";var r=n("23e7"),o=n("b727").filter,i=n("1dde");r({target:"Array",proto:!0,forced:!i("filter")},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},"4e82":function(t,e,n){"use strict";var r=n("23e7"),o=n("1c0b"),i=n("7b0b"),a=n("d039"),c=n("b301"),s=[].sort,u=[1,2,3],f=a((function(){u.sort(void 0)})),l=a((function(){u.sort(null)})),p=c("sort"),d=f||!l||p;r({target:"Array",proto:!0,forced:d},{sort:function(t){return void 0===t?s.call(i(this)):s.call(i(this),o(t))}})},"50c4":function(t,e,n){var r=n("a691"),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},5135:function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},5270:function(t,e,n){"use strict";var r=n("c532"),o=n("c401"),i=n("2e67"),a=n("2444"),c=n("d925"),s=n("e683");function u(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){u(t),t.baseURL&&!c(t.url)&&(t.url=s(t.baseURL,t.url)),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),r.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]}));var e=t.adapter||a.adapter;return e(t).then((function(e){return u(t),e.data=o(e.data,e.headers,t.transformResponse),e}),(function(e){return i(e)||(u(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},5319:function(t,e,n){"use strict";var r=n("d784"),o=n("825a"),i=n("7b0b"),a=n("50c4"),c=n("a691"),s=n("1d80"),u=n("8aa5"),f=n("14c3"),l=Math.max,p=Math.min,d=Math.floor,v=/\$([$&'`]|\d\d?|<[^>]*>)/g,h=/\$([$&'`]|\d\d?)/g,y=function(t){return void 0===t?t:String(t)};r("replace",2,(function(t,e,n){return[function(n,r){var o=s(this),i=void 0==n?void 0:n[t];return void 0!==i?i.call(n,o,r):e.call(String(o),n,r)},function(t,i){var s=n(e,t,this,i);if(s.done)return s.value;var d=o(t),v=String(this),h="function"===typeof i;h||(i=String(i));var m=d.global;if(m){var g=d.unicode;d.lastIndex=0}var b=[];while(1){var _=f(d,v);if(null===_)break;if(b.push(_),!m)break;var w=String(_[0]);""===w&&(d.lastIndex=u(v,a(d.lastIndex),g))}for(var x="",O=0,j=0;j<b.length;j++){_=b[j];for(var S=String(_[0]),A=l(p(c(_.index),v.length),0),C=[],$=1;$<_.length;$++)C.push(y(_[$]));var k=_.groups;if(h){var E=[S].concat(C,A,v);void 0!==k&&E.push(k);var T=String(i.apply(void 0,E))}else T=r(S,v,A,C,k,i);A>=O&&(x+=v.slice(O,A)+T,O=A+S.length)}return x+v.slice(O)}];function r(t,n,r,o,a,c){var s=r+t.length,u=o.length,f=h;return void 0!==a&&(a=i(a),f=v),e.call(c,f,(function(e,i){var c;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return n.slice(0,r);case"'":return n.slice(s);case"<":c=a[i.slice(1,-1)];break;default:var f=+i;if(0===f)return e;if(f>u){var l=d(f/10);return 0===l?e:l<=u?void 0===o[l-1]?i.charAt(1):o[l-1]+i.charAt(1):e}c=o[f-1]}return void 0===c?"":c}))}}))},"561c":function(t,e,n){"use strict";function r(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function o(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},o=Object.keys(n);"function"===typeof Object.getOwnPropertySymbols&&(o=o.concat(Object.getOwnPropertySymbols(n).filter((function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable})))),o.forEach((function(e){r(t,e,n[e])}))}return t}var i,a,c,s;function u(t){var e,n,r,o,u=[],f=[];while(e=t.match(s)){n=e[0],r=t.substr(0,e.index).trim(),r&&u.push(r);while(o=f.pop()){if(c[n]){if(c[n][0]===o){n=c[n][1]||n;break}}else if(a.indexOf(o)>=0||i[o]<i[n]){f.push(o);break}u.push(o)}c[n]||f.push(n),t=t.substr(e.index+n.length)}return t=t.trim(),t&&u.push(t),u.concat(f.reverse())}i={"(":9,"!":8,"*":7,"/":7,"%":7,"+":6,"-":6,"<":5,"<=":5,">":5,">=":5,"==":4,"!=":4,"&&":3,"||":2,"?":1,"?:":1},a=["(","?"],c={")":["("],":":["?","?:"]},s=/<=|>=|==|!=|&&|\|\||\?:|\(|!|\*|\/|%|\+|-|<|>|\?|\)|:/;var f={"!":function(t){return!t},"*":function(t,e){return t*e},"/":function(t,e){return t/e},"%":function(t,e){return t%e},"+":function(t,e){return t+e},"-":function(t,e){return t-e},"<":function(t,e){return t<e},"<=":function(t,e){return t<=e},">":function(t,e){return t>e},">=":function(t,e){return t>=e},"==":function(t,e){return t===e},"!=":function(t,e){return t!==e},"&&":function(t,e){return t&&e},"||":function(t,e){return t||e},"?:":function(t,e,n){if(t)throw e;return n}};function l(t,e){var n,r,o,i,a,c,s=[];for(n=0;n<t.length;n++){if(a=t[n],i=f[a],i){r=i.length,o=Array(r);while(r--)o[r]=s.pop();try{c=i.apply(null,o)}catch(u){return u}}else c=e.hasOwnProperty(a)?e[a]:+a;s.push(c)}return s[0]}function p(t){var e=u(t);return function(t){return l(e,t)}}function d(t){var e=p(t);return function(t){return+e({n:t})}}var v={contextDelimiter:"",onMissingKey:null};function h(t){var e,n,r;for(e=t.split(";"),n=0;n<e.length;n++)if(r=e[n].trim(),0===r.indexOf("plural="))return r.substr(7)}function y(t,e){var n;for(n in this.data=t,this.pluralForms={},e=e||{},this.options={},v)this.options[n]=e[n]||v[n]}y.prototype.getPluralForm=function(t,e){var n,r,o,i=this.pluralForms[t];return i||(n=this.data[t][""],o=n["Plural-Forms"]||n["plural-forms"]||n.plural_forms,"function"!==typeof o&&(r=h(n["Plural-Forms"]||n["plural-forms"]||n.plural_forms),o=d(r)),i=this.pluralForms[t]=o),i(e)},y.prototype.dcnpgettext=function(t,e,n,r,o){var i,a,c;return i=void 0===o?0:this.getPluralForm(t,o),a=n,e&&(a=e+this.options.contextDelimiter+n),c=this.data[t][a],c&&c[i]?c[i]:(this.options.onMissingKey&&this.options.onMissingKey(n,t),0===i?n:r)};var m=n("e1e2"),g=n.n(m),b=n("e19f"),_=n.n(b);n.d(e,"c",(function(){return j})),n.d(e,"a",(function(){return A})),n.d(e,"b",(function(){return C})),n.d(e,"d",(function(){return $}));var w={"":{plural_forms:function(t){return 1===t?0:1}}},x=g()(console.error),O=new y({});function j(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"default";O.data[e]=o({},w,O.data[e],t),O.data[e][""]=o({},w[""],O.data[e][""])}function S(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"default",e=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,r=arguments.length>3?arguments[3]:void 0,o=arguments.length>4?arguments[4]:void 0;return O.data[t]||j(void 0,t),O.dcnpgettext(t,e,n,r,o)}function A(t,e){return S(e,void 0,t)}function C(t,e,n,r){return S(r,void 0,t,e,n)}function $(t){try{for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return _.a.sprintf.apply(_.a,[t].concat(n))}catch(o){return x("sprintf error: \n\n"+o.toString()),t}}},5692:function(t,e,n){var r=n("c430"),o=n("c6cd");(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.3.2",mode:r?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},"56ef":function(t,e,n){var r=n("d066"),o=n("241c"),i=n("7418"),a=n("825a");t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},"5c6c":function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},"60da":function(t,e,n){"use strict";var r=n("83ab"),o=n("d039"),i=n("df75"),a=n("7418"),c=n("d1e7"),s=n("7b0b"),u=n("44ad"),f=Object.assign;t.exports=!f||o((function(){var t={},e={},n=Symbol(),r="abcdefghijklmnopqrst";return t[n]=7,r.split("").forEach((function(t){e[t]=t})),7!=f({},t)[n]||i(f({},e)).join("")!=r}))?function(t,e){var n=s(t),o=arguments.length,f=1,l=a.f,p=c.f;while(o>f){var d,v=u(arguments[f++]),h=l?i(v).concat(l(v)):i(v),y=h.length,m=0;while(y>m)d=h[m++],r&&!p.call(v,d)||(n[d]=v[d])}return n}:f},"62e4":function(t,e){t.exports=function(t){return t.webpackPolyfill||(t.deprecate=function(){},t.paths=[],t.children||(t.children=[]),Object.defineProperty(t,"loaded",{enumerable:!0,get:function(){return t.l}}),Object.defineProperty(t,"id",{enumerable:!0,get:function(){return t.i}}),t.webpackPolyfill=1),t}},"638c":function(t,e,n){var r=n("06fa"),o=n("fc48"),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},6547:function(t,e,n){var r=n("a691"),o=n("1d80"),i=function(t){return function(e,n){var i,a,c=String(o(e)),s=r(n),u=c.length;return s<0||s>=u?t?"":void 0:(i=c.charCodeAt(s),i<55296||i>56319||s+1===u||(a=c.charCodeAt(s+1))<56320||a>57343?t?c.charAt(s):i:t?c.slice(s,s+2):a-56320+(i-55296<<10)+65536)}};t.exports={codeAt:i(!1),charAt:i(!0)}},"65f0":function(t,e,n){var r=n("861d"),o=n("e8b5"),i=n("b622"),a=i("species");t.exports=function(t,e){var n;return o(t)&&(n=t.constructor,"function"!=typeof n||n!==Array&&!o(n.prototype)?r(n)&&(n=n[a],null===n&&(n=void 0)):n=void 0),new(void 0===n?Array:n)(0===e?0:e)}},"69f3":function(t,e,n){var r,o,i,a=n("7f9a"),c=n("da84"),s=n("861d"),u=n("9112"),f=n("5135"),l=n("f772"),p=n("d012"),d=c.WeakMap,v=function(t){return i(t)?o(t):r(t,{})},h=function(t){return function(e){var n;if(!s(e)||(n=o(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}};if(a){var y=new d,m=y.get,g=y.has,b=y.set;r=function(t,e){return b.call(y,t,e),e},o=function(t){return m.call(y,t)||{}},i=function(t){return g.call(y,t)}}else{var _=l("state");p[_]=!0,r=function(t,e){return u(t,_,e),e},o=function(t){return f(t,_)?t[_]:{}},i=function(t){return f(t,_)}}t.exports={set:r,get:o,has:i,enforce:v,getterFor:h}},"6c6b":function(t,e,n){"use strict";var r=n("cd3f"),o=n.n(r);function i(t){void 0===t&&(t={shift:!1,ctrl:!1,left:!1}),document.addEventListener(t.left?"click":"contextmenu",(function(e){if((!t.ctrl||e.ctrlKey)&&(!t.shift||e.shiftKey)){t.stop&&(e.preventDefault(),e.stopPropagation());var n=u(e.target);n&&f(n)}}))}function a(t){while(t.length<8)t+=" ";return t}function c(t){console.log(a(t)+" %cnone","color:grey")}i.install=function(t,e){i(e)};var s="background:#42b983;color:white;border-radius:99px;padding:0px 6px;";function u(t){var e=t&&t.__vue__;return e||(t.parentNode?u(t.parentNode):void console.info("no Vue component found"))}function f(t,e){if(e?console.groupCollapsed("%cparent %c"+(t.$parent?t.$options.name||t.$options._componentTag||"anonymous":"Root"),"font-weight:normal",s,t):console.group("%c"+(t.$parent?t.$options.name||t.$options._componentTag||"anonymous":"Root"),s,t),Object.keys(t.$data).length?console.log(a("data"),o()(t.$data)):c("data"),t._computedWatchers&&Object.keys(t._computedWatchers).length){var n={};for(var r in t._computedWatchers)try{n[r]=o()(t[r])}catch(i){n[r]="["+i.message+"]"}console.log(a("computed"),n)}else c("computed");t._props&&Object.keys(t._props).length?console.log(a("props"),o()(t._props)):c("props"),console.log(a("element"),t.$el),!e&&t.$route&&console.log(a("route"),t.$route),t.$parent?f(t.$parent,!0):c("parent"),console.groupEnd()}e["a"]=i},"6eeb":function(t,e,n){var r=n("da84"),o=n("5692"),i=n("9112"),a=n("5135"),c=n("ce4e"),s=n("9e81"),u=n("69f3"),f=u.get,l=u.enforce,p=String(s).split("toString");o("inspectSource",(function(t){return s.call(t)})),(t.exports=function(t,e,n,o){var s=!!o&&!!o.unsafe,u=!!o&&!!o.enumerable,f=!!o&&!!o.noTargetGet;"function"==typeof n&&("string"!=typeof e||a(n,"name")||i(n,"name",e),l(n).source=p.join("string"==typeof e?e:"")),t!==r?(s?!f&&t[e]&&(u=!0):delete t[e],u?t[e]=n:i(t,e,n)):u?t[e]=n:c(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&f(this).source||s.call(this)}))},"6f8d":function(t,e,n){var r=n("dfdb");t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},7043:function(t,e,n){"use strict";var r={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!r.call({1:2},1);e.f=i?function(t){var e=o(this,t);return!!e&&e.enumerable}:r},7156:function(t,e,n){var r=n("861d"),o=n("d2bb");t.exports=function(t,e,n){var i,a;return o&&"function"==typeof(i=e.constructor)&&i!==n&&r(a=i.prototype)&&a!==n.prototype&&o(t,a),t}},7168:function(t,e,n){var r=n("dfdb");t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},7418:function(t,e){e.f=Object.getOwnPropertySymbols},"746f":function(t,e,n){var r=n("428f"),o=n("5135"),i=n("c032"),a=n("9bf2").f;t.exports=function(t){var e=r.Symbol||(r.Symbol={});o(e,t)||a(e,t,{value:i.f(t)})}},"764b":function(t,e){t.exports={}},"77b2":function(t,e,n){var r=n("c1b2"),o=n("06fa"),i=n("7a37");t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},7839:function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},"78e7":function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},"7a37":function(t,e,n){var r=n("3ac6"),o=n("dfdb"),i=r.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},"7a77":function(t,e,n){"use strict";function r(t){this.message=t}r.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},r.prototype.__CANCEL__=!0,t.exports=r},"7aac":function(t,e,n){"use strict";var r=n("c532");t.exports=r.isStandardBrowserEnv()?function(){return{write:function(t,e,n,o,i,a){var c=[];c.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&c.push("expires="+new Date(n).toGMTString()),r.isString(o)&&c.push("path="+o),r.isString(i)&&c.push("domain="+i),!0===a&&c.push("secure"),document.cookie=c.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}()},"7b0b":function(t,e,n){var r=n("1d80");t.exports=function(t){return Object(r(t))}},"7c73":function(t,e,n){var r=n("825a"),o=n("37e8"),i=n("7839"),a=n("d012"),c=n("1be4"),s=n("cc12"),u=n("f772"),f=u("IE_PROTO"),l="prototype",p=function(){},d=function(){var t,e=s("iframe"),n=i.length,r="<",o="script",a=">",u="java"+o+":";e.style.display="none",c.appendChild(e),e.src=String(u),t=e.contentWindow.document,t.open(),t.write(r+o+a+"document.F=Object"+r+"/"+o+a),t.close(),d=t.F;while(n--)delete d[l][i[n]];return d()};t.exports=Object.create||function(t,e){var n;return null!==t?(p[l]=r(t),n=new p,p[l]=null,n[f]=t):n=d(),void 0===e?n:o(n,e)},a[f]=!0},"7dd0":function(t,e,n){"use strict";var r=n("23e7"),o=n("9ed3"),i=n("e163"),a=n("d2bb"),c=n("d44e"),s=n("9112"),u=n("6eeb"),f=n("b622"),l=n("c430"),p=n("3f8c"),d=n("ae93"),v=d.IteratorPrototype,h=d.BUGGY_SAFARI_ITERATORS,y=f("iterator"),m="keys",g="values",b="entries",_=function(){return this};t.exports=function(t,e,n,f,d,w,x){o(n,e,f);var O,j,S,A=function(t){if(t===d&&T)return T;if(!h&&t in k)return k[t];switch(t){case m:return function(){return new n(this,t)};case g:return function(){return new n(this,t)};case b:return function(){return new n(this,t)}}return function(){return new n(this)}},C=e+" Iterator",$=!1,k=t.prototype,E=k[y]||k["@@iterator"]||d&&k[d],T=!h&&E||A(d),P="Array"==e&&k.entries||E;if(P&&(O=i(P.call(new t)),v!==Object.prototype&&O.next&&(l||i(O)===v||(a?a(O,v):"function"!=typeof O[y]&&s(O,y,_)),c(O,C,!0,!0),l&&(p[C]=_))),d==g&&E&&E.name!==g&&($=!0,T=function(){return E.call(this)}),l&&!x||k[y]===T||s(k,y,T),p[e]=T,d)if(j={values:A(g),keys:w?T:A(m),entries:A(b)},x)for(S in j)!h&&!$&&S in k||u(k,S,j[S]);else r({target:e,proto:!0,forced:h||$},j);return j}},"7f9a":function(t,e,n){var r=n("da84"),o=n("9e81"),i=r.WeakMap;t.exports="function"===typeof i&&/native code/.test(o.call(i))},"825a":function(t,e,n){var r=n("861d");t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},"83ab":function(t,e,n){var r=n("d039");t.exports=!r((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},8418:function(t,e,n){"use strict";var r=n("c04e"),o=n("9bf2"),i=n("5c6c");t.exports=function(t,e,n){var a=r(e);a in t?o.f(t,a,i(0,n)):t[a]=n}},"841c":function(t,e,n){"use strict";var r=n("d784"),o=n("825a"),i=n("1d80"),a=n("129f"),c=n("14c3");r("search",1,(function(t,e,n){return[function(e){var n=i(this),r=void 0==e?void 0:e[t];return void 0!==r?r.call(e,n):new RegExp(e)[t](String(n))},function(t){var r=n(e,t,this);if(r.done)return r.value;var i=o(t),s=String(this),u=i.lastIndex;a(u,0)||(i.lastIndex=0);var f=c(i,s);return a(i.lastIndex,u)||(i.lastIndex=u),null===f?-1:f.index}]}))},"85d3":function(t,e,n){t.exports=n("9a13")},"861d":function(t,e){t.exports=function(t){return"object"===typeof t?null!==t:"function"===typeof t}},"8aa5":function(t,e,n){"use strict";var r=n("6547").charAt;t.exports=function(t,e,n){return e+(n?r(t,e).length:1)}},"8df4":function(t,e,n){"use strict";var r=n("7a77");function o(t){if("function"!==typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(t){e=t}));var n=this;t((function(t){n.reason||(n.reason=new r(t),e(n.reason))}))}o.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},o.source=function(){var t,e=new o((function(e){t=e}));return{token:e,cancel:t}},t.exports=o},"90e3":function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++n+r).toString(36)}},9112:function(t,e,n){var r=n("83ab"),o=n("9bf2"),i=n("5c6c");t.exports=r?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},9263:function(t,e,n){"use strict";var r=n("ad6d"),o=RegExp.prototype.exec,i=String.prototype.replace,a=o,c=function(){var t=/a/,e=/b*/g;return o.call(t,"a"),o.call(e,"a"),0!==t.lastIndex||0!==e.lastIndex}(),s=void 0!==/()??/.exec("")[1],u=c||s;u&&(a=function(t){var e,n,a,u,f=this;return s&&(n=new RegExp("^"+f.source+"$(?!\\s)",r.call(f))),c&&(e=f.lastIndex),a=o.call(f,t),c&&a&&(f.lastIndex=f.global?a.index+a[0].length:e),s&&a&&a.length>1&&i.call(a[0],n,(function(){for(u=1;u<arguments.length-2;u++)void 0===arguments[u]&&(a[u]=void 0)})),a}),t.exports=a},"94ca":function(t,e,n){var r=n("d039"),o=/#|\.prototype\./,i=function(t,e){var n=c[a(t)];return n==u||n!=s&&("function"==typeof e?r(e):!!e)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},c=i.data={},s=i.NATIVE="N",u=i.POLYFILL="P";t.exports=i},"9a13":function(t,e,n){t.exports=n("a38c")},"9bdd":function(t,e,n){var r=n("825a");t.exports=function(t,e,n,o){try{return o?e(r(n)[0],n[1]):e(n)}catch(a){var i=t["return"];throw void 0!==i&&r(i.call(t)),a}}},"9bf2":function(t,e,n){var r=n("83ab"),o=n("0cfb"),i=n("825a"),a=n("c04e"),c=Object.defineProperty;e.f=r?c:function(t,e,n){if(i(t),e=a(e,!0),i(n),o)try{return c(t,e,n)}catch(r){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},"9e81":function(t,e,n){var r=n("5692");t.exports=r("native-function-to-string",Function.toString)},"9ed3":function(t,e,n){"use strict";var r=n("ae93").IteratorPrototype,o=n("7c73"),i=n("5c6c"),a=n("d44e"),c=n("3f8c"),s=function(){return this};t.exports=function(t,e,n){var u=e+" Iterator";return t.prototype=o(r,{next:i(1,n)}),a(t,u,!1,!0),c[u]=s,t}},a0e5:function(t,e,n){var r=n("06fa"),o=/#|\.prototype\./,i=function(t,e){var n=c[a(t)];return n==u||n!=s&&("function"==typeof e?r(e):!!e)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},c=i.data={},s=i.NATIVE="N",u=i.POLYFILL="P";t.exports=i},a38c:function(t,e,n){n("3e47");var r=n("764b"),o=r.Object,i=t.exports=function(t,e,n){return o.defineProperty(t,e,n)};o.defineProperty.sham&&(i.sham=!0)},a421:function(t,e,n){var r=n("638c"),o=n("1875");t.exports=function(t){return r(o(t))}},a4d3:function(t,e,n){"use strict";var r=n("23e7"),o=n("da84"),i=n("c430"),a=n("83ab"),c=n("4930"),s=n("d039"),u=n("5135"),f=n("e8b5"),l=n("861d"),p=n("825a"),d=n("7b0b"),v=n("fc6a"),h=n("c04e"),y=n("5c6c"),m=n("7c73"),g=n("df75"),b=n("241c"),_=n("057f"),w=n("7418"),x=n("06cf"),O=n("9bf2"),j=n("d1e7"),S=n("9112"),A=n("6eeb"),C=n("5692"),$=n("f772"),k=n("d012"),E=n("90e3"),T=n("b622"),P=n("c032"),I=n("746f"),M=n("d44e"),L=n("69f3"),N=n("b727").forEach,D=$("hidden"),R="Symbol",F="prototype",U=T("toPrimitive"),B=L.set,V=L.getterFor(R),z=Object[F],H=o.Symbol,G=o.JSON,q=G&&G.stringify,W=x.f,K=O.f,X=_.f,J=j.f,Y=C("symbols"),Z=C("op-symbols"),Q=C("string-to-symbol-registry"),tt=C("symbol-to-string-registry"),et=C("wks"),nt=o.QObject,rt=!nt||!nt[F]||!nt[F].findChild,ot=a&&s((function(){return 7!=m(K({},"a",{get:function(){return K(this,"a",{value:7}).a}})).a}))?function(t,e,n){var r=W(z,e);r&&delete z[e],K(t,e,n),r&&t!==z&&K(z,e,r)}:K,it=function(t,e){var n=Y[t]=m(H[F]);return B(n,{type:R,tag:t,description:e}),a||(n.description=e),n},at=c&&"symbol"==typeof H.iterator?function(t){return"symbol"==typeof t}:function(t){return Object(t)instanceof H},ct=function(t,e,n){t===z&&ct(Z,e,n),p(t);var r=h(e,!0);return p(n),u(Y,r)?(n.enumerable?(u(t,D)&&t[D][r]&&(t[D][r]=!1),n=m(n,{enumerable:y(0,!1)})):(u(t,D)||K(t,D,y(1,{})),t[D][r]=!0),ot(t,r,n)):K(t,r,n)},st=function(t,e){p(t);var n=v(e),r=g(n).concat(dt(n));return N(r,(function(e){a&&!ft.call(n,e)||ct(t,e,n[e])})),t},ut=function(t,e){return void 0===e?m(t):st(m(t),e)},ft=function(t){var e=h(t,!0),n=J.call(this,e);return!(this===z&&u(Y,e)&&!u(Z,e))&&(!(n||!u(this,e)||!u(Y,e)||u(this,D)&&this[D][e])||n)},lt=function(t,e){var n=v(t),r=h(e,!0);if(n!==z||!u(Y,r)||u(Z,r)){var o=W(n,r);return!o||!u(Y,r)||u(n,D)&&n[D][r]||(o.enumerable=!0),o}},pt=function(t){var e=X(v(t)),n=[];return N(e,(function(t){u(Y,t)||u(k,t)||n.push(t)})),n},dt=function(t){var e=t===z,n=X(e?Z:v(t)),r=[];return N(n,(function(t){!u(Y,t)||e&&!u(z,t)||r.push(Y[t])})),r};c||(H=function(){if(this instanceof H)throw TypeError("Symbol is not a constructor");var t=arguments.length&&void 0!==arguments[0]?String(arguments[0]):void 0,e=E(t),n=function(t){this===z&&n.call(Z,t),u(this,D)&&u(this[D],e)&&(this[D][e]=!1),ot(this,e,y(1,t))};return a&&rt&&ot(z,e,{configurable:!0,set:n}),it(e,t)},A(H[F],"toString",(function(){return V(this).tag})),j.f=ft,O.f=ct,x.f=lt,b.f=_.f=pt,w.f=dt,a&&(K(H[F],"description",{configurable:!0,get:function(){return V(this).description}}),i||A(z,"propertyIsEnumerable",ft,{unsafe:!0})),P.f=function(t){return it(T(t),t)}),r({global:!0,wrap:!0,forced:!c,sham:!c},{Symbol:H}),N(g(et),(function(t){I(t)})),r({target:R,stat:!0,forced:!c},{for:function(t){var e=String(t);if(u(Q,e))return Q[e];var n=H(e);return Q[e]=n,tt[n]=e,n},keyFor:function(t){if(!at(t))throw TypeError(t+" is not a symbol");if(u(tt,t))return tt[t]},useSetter:function(){rt=!0},useSimple:function(){rt=!1}}),r({target:"Object",stat:!0,forced:!c,sham:!a},{create:ut,defineProperty:ct,defineProperties:st,getOwnPropertyDescriptor:lt}),r({target:"Object",stat:!0,forced:!c},{getOwnPropertyNames:pt,getOwnPropertySymbols:dt}),r({target:"Object",stat:!0,forced:s((function(){w.f(1)}))},{getOwnPropertySymbols:function(t){return w.f(d(t))}}),G&&r({target:"JSON",stat:!0,forced:!c||s((function(){var t=H();return"[null]"!=q([t])||"{}"!=q({a:t})||"{}"!=q(Object(t))}))},{stringify:function(t){var e,n,r=[t],o=1;while(arguments.length>o)r.push(arguments[o++]);if(n=e=r[1],(l(e)||void 0!==t)&&!at(t))return f(e)||(e=function(t,e){if("function"==typeof n&&(e=n.call(this,t,e)),!at(e))return e}),r[1]=e,q.apply(G,r)}}),H[F][U]||S(H[F],U,H[F].valueOf),M(H,R),k[D]=!0},a5eb:function(t,e,n){"use strict";var r=n("3ac6"),o=n("44ba").f,i=n("a0e5"),a=n("764b"),c=n("194a"),s=n("0273"),u=n("78e7"),f=function(t){var e=function(e,n,r){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,n)}return new t(e,n,r)}return t.apply(this,arguments)};return e.prototype=t.prototype,e};t.exports=function(t,e){var n,l,p,d,v,h,y,m,g,b=t.target,_=t.global,w=t.stat,x=t.proto,O=_?r:w?r[b]:(r[b]||{}).prototype,j=_?a:a[b]||(a[b]={}),S=j.prototype;for(d in e)n=i(_?d:b+(w?".":"#")+d,t.forced),l=!n&&O&&u(O,d),h=j[d],l&&(t.noTargetGet?(g=o(O,d),y=g&&g.value):y=O[d]),v=l&&y?y:e[d],l&&typeof h===typeof v||(m=t.bind&&l?c(v,r):t.wrap&&l?f(v):x&&"function"==typeof v?c(Function.call,v):v,(t.sham||v&&v.sham||h&&h.sham)&&s(m,"sham",!0),j[d]=m,x&&(p=b+"Prototype",u(a,p)||s(a,p,{}),a[p][d]=v,t.real&&S&&!S[d]&&s(S,d,v)))}},a691:function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},a79d:function(t,e,n){"use strict";var r=n("23e7"),o=n("c430"),i=n("fea9"),a=n("d066"),c=n("4840"),s=n("cdf9"),u=n("6eeb");r({target:"Promise",proto:!0,real:!0},{finally:function(t){var e=c(this,a("Promise")),n="function"==typeof t;return this.then(n?function(n){return s(e,t()).then((function(){return n}))}:t,n?function(n){return s(e,t()).then((function(){throw n}))}:t)}}),o||"function"!=typeof i||i.prototype["finally"]||u(i.prototype,"finally",a("Promise").prototype["finally"])},ac1f:function(t,e,n){"use strict";var r=n("23e7"),o=n("9263");r({target:"RegExp",proto:!0,forced:/./.exec!==o},{exec:o})},ad6d:function(t,e,n){"use strict";var r=n("825a");t.exports=function(){var t=r(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},ae93:function(t,e,n){"use strict";var r,o,i,a=n("e163"),c=n("9112"),s=n("5135"),u=n("b622"),f=n("c430"),l=u("iterator"),p=!1,d=function(){return this};[].keys&&(i=[].keys(),"next"in i?(o=a(a(i)),o!==Object.prototype&&(r=o)):p=!0),void 0==r&&(r={}),f||s(r,l)||c(r,l,d),t.exports={IteratorPrototype:r,BUGGY_SAFARI_ITERATORS:p}},b041:function(t,e,n){"use strict";var r=n("f5df"),o=n("b622"),i=o("toStringTag"),a={};a[i]="z",t.exports="[object z]"!==String(a)?function(){return"[object "+r(this)+"]"}:a.toString},b301:function(t,e,n){"use strict";var r=n("d039");t.exports=function(t,e){var n=[][t];return!n||!r((function(){n.call(null,e||function(){throw 1},1)}))}},b39a:function(t,e,n){var r=n("d066");t.exports=r("navigator","userAgent")||""},b50d:function(t,e,n){"use strict";var r=n("c532"),o=n("467f"),i=n("30b5"),a=n("c345"),c=n("3934"),s=n("2d83");t.exports=function(t){return new Promise((function(e,u){var f=t.data,l=t.headers;r.isFormData(f)&&delete l["Content-Type"];var p=new XMLHttpRequest;if(t.auth){var d=t.auth.username||"",v=t.auth.password||"";l.Authorization="Basic "+btoa(d+":"+v)}if(p.open(t.method.toUpperCase(),i(t.url,t.params,t.paramsSerializer),!0),p.timeout=t.timeout,p.onreadystatechange=function(){if(p&&4===p.readyState&&(0!==p.status||p.responseURL&&0===p.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in p?a(p.getAllResponseHeaders()):null,r=t.responseType&&"text"!==t.responseType?p.response:p.responseText,i={data:r,status:p.status,statusText:p.statusText,headers:n,config:t,request:p};o(e,u,i),p=null}},p.onerror=function(){u(s("Network Error",t,null,p)),p=null},p.ontimeout=function(){u(s("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",p)),p=null},r.isStandardBrowserEnv()){var h=n("7aac"),y=(t.withCredentials||c(t.url))&&t.xsrfCookieName?h.read(t.xsrfCookieName):void 0;y&&(l[t.xsrfHeaderName]=y)}if("setRequestHeader"in p&&r.forEach(l,(function(t,e){"undefined"===typeof f&&"content-type"===e.toLowerCase()?delete l[e]:p.setRequestHeader(e,t)})),t.withCredentials&&(p.withCredentials=!0),t.responseType)try{p.responseType=t
1
+ (window["monsterinsightsjsonp"]=window["monsterinsightsjsonp"]||[]).push([["chunk-frontend-vendors"],{"00ee":function(t,e,n){var r=n("b622"),o=r("toStringTag"),i={};i[o]="z",t.exports="[object z]"===String(i)},"0366":function(t,e,n){var r=n("1c0b");t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 0:return function(){return t.call(e)};case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,o){return t.call(e,n,r,o)}}return function(){return t.apply(e,arguments)}}},"057f":function(t,e,n){var r=n("fc6a"),o=n("241c").f,i={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],c=function(t){try{return o(t)}catch(e){return a.slice()}};t.exports.f=function(t){return a&&"[object Window]"==i.call(t)?c(t):o(r(t))}},"06cf":function(t,e,n){var r=n("83ab"),o=n("d1e7"),i=n("5c6c"),a=n("fc6a"),c=n("c04e"),s=n("5135"),u=n("0cfb"),f=Object.getOwnPropertyDescriptor;e.f=r?f:function(t,e){if(t=a(t),e=c(e,!0),u)try{return f(t,e)}catch(n){}if(s(t,e))return i(!o.f.call(t,e),t[e])}},"0a06":function(t,e,n){"use strict";var r=n("2444"),o=n("c532"),i=n("f6b4"),a=n("5270");function c(t){this.defaults=t,this.interceptors={request:new i,response:new i}}c.prototype.request=function(t){"string"===typeof t&&(t=o.merge({url:arguments[0]},arguments[1])),t=o.merge(r,{method:"get"},this.defaults,t),t.method=t.method.toLowerCase();var e=[a,void 0],n=Promise.resolve(t);this.interceptors.request.forEach((function(t){e.unshift(t.fulfilled,t.rejected)})),this.interceptors.response.forEach((function(t){e.push(t.fulfilled,t.rejected)}));while(e.length)n=n.then(e.shift(),e.shift());return n},o.forEach(["delete","get","head","options"],(function(t){c.prototype[t]=function(e,n){return this.request(o.merge(n||{},{method:t,url:e}))}})),o.forEach(["post","put","patch"],(function(t){c.prototype[t]=function(e,n,r){return this.request(o.merge(r||{},{method:t,url:e,data:n}))}})),t.exports=c},"0cfb":function(t,e,n){var r=n("83ab"),o=n("d039"),i=n("cc12");t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},"0df6":function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},"129f":function(t,e){t.exports=Object.is||function(t,e){return t===e?0!==t||1/t===1/e:t!=t&&e!=e}},"14c3":function(t,e,n){var r=n("c6b6"),o=n("9263");t.exports=function(t,e){var n=t.exec;if("function"===typeof n){var i=n.call(t,e);if("object"!==typeof i)throw TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==r(t))throw TypeError("RegExp#exec called on incompatible receiver");return o.call(t,e)}},"159b":function(t,e,n){var r=n("da84"),o=n("fdbc"),i=n("17c2"),a=n("9112");for(var c in o){var s=r[c],u=s&&s.prototype;if(u&&u.forEach!==i)try{a(u,"forEach",i)}catch(f){u.forEach=i}}},"17c2":function(t,e,n){"use strict";var r=n("b727").forEach,o=n("a640"),i=n("ae40"),a=o("forEach"),c=i("forEach");t.exports=a&&c?[].forEach:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}},"19aa":function(t,e){t.exports=function(t,e,n){if(!(t instanceof e))throw TypeError("Incorrect "+(n?n+" ":"")+"invocation");return t}},"1be4":function(t,e,n){var r=n("d066");t.exports=r("document","documentElement")},"1c0b":function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},"1c7e":function(t,e,n){var r=n("b622"),o=r("iterator"),i=!1;try{var a=0,c={next:function(){return{done:!!a++}},return:function(){i=!0}};c[o]=function(){return this},Array.from(c,(function(){throw 2}))}catch(s){}t.exports=function(t,e){if(!e&&!i)return!1;var n=!1;try{var r={};r[o]=function(){return{next:function(){return{done:n=!0}}}},t(r)}catch(s){}return n}},"1cdc":function(t,e,n){var r=n("342f");t.exports=/(iphone|ipod|ipad).*applewebkit/i.test(r)},"1d2b":function(t,e,n){"use strict";t.exports=function(t,e){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return t.apply(e,n)}}},"1d80":function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},"1dde":function(t,e,n){var r=n("d039"),o=n("b622"),i=n("2d00"),a=o("species");t.exports=function(t){return i>=51||!r((function(){var e=[],n=e.constructor={};return n[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},2266:function(t,e,n){var r=n("825a"),o=n("e95a"),i=n("50c4"),a=n("0366"),c=n("35a1"),s=n("9bdd"),u=function(t,e){this.stopped=t,this.result=e},f=t.exports=function(t,e,n,f,l){var p,d,v,h,y,m,g,b=a(e,n,f?2:1);if(l)p=t;else{if(d=c(t),"function"!=typeof d)throw TypeError("Target is not iterable");if(o(d)){for(v=0,h=i(t.length);h>v;v++)if(y=f?b(r(g=t[v])[0],g[1]):b(t[v]),y&&y instanceof u)return y;return new u(!1)}p=d.call(t)}m=p.next;while(!(g=m.call(p)).done)if(y=s(p,b,g.value,f),"object"==typeof y&&y&&y instanceof u)return y;return new u(!1)};f.stop=function(t){return new u(!0,t)}},"23cb":function(t,e,n){var r=n("a691"),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},"23e7":function(t,e,n){var r=n("da84"),o=n("06cf").f,i=n("9112"),a=n("6eeb"),c=n("ce4e"),s=n("e893"),u=n("94ca");t.exports=function(t,e){var n,f,l,p,d,v,h=t.target,y=t.global,m=t.stat;if(f=y?r:m?r[h]||c(h,{}):(r[h]||{}).prototype,f)for(l in e){if(d=e[l],t.noTargetGet?(v=o(f,l),p=v&&v.value):p=f[l],n=u(y?l:h+(m?".":"#")+l,t.forced),!n&&void 0!==p){if(typeof d===typeof p)continue;s(d,p)}(t.sham||p&&p.sham)&&i(d,"sham",!0),a(f,l,d,t)}}},"241c":function(t,e,n){var r=n("ca84"),o=n("7839"),i=o.concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,i)}},2444:function(t,e,n){"use strict";(function(e){var r=n("c532"),o=n("c8af"),i={"Content-Type":"application/x-www-form-urlencoded"};function a(t,e){!r.isUndefined(t)&&r.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}function c(){var t;return"undefined"!==typeof XMLHttpRequest?t=n("b50d"):"undefined"!==typeof e&&(t=n("b50d")),t}var s={adapter:c(),transformRequest:[function(t,e){return o(e,"Content-Type"),r.isFormData(t)||r.isArrayBuffer(t)||r.isBuffer(t)||r.isStream(t)||r.isFile(t)||r.isBlob(t)?t:r.isArrayBufferView(t)?t.buffer:r.isURLSearchParams(t)?(a(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):r.isObject(t)?(a(e,"application/json;charset=utf-8"),JSON.stringify(t)):t}],transformResponse:[function(t){if("string"===typeof t)try{t=JSON.parse(t)}catch(e){}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};r.forEach(["delete","get","head"],(function(t){s.headers[t]={}})),r.forEach(["post","put","patch"],(function(t){s.headers[t]=r.merge(i)})),t.exports=s}).call(this,n("4362"))},"25f0":function(t,e,n){"use strict";var r=n("6eeb"),o=n("825a"),i=n("d039"),a=n("ad6d"),c="toString",s=RegExp.prototype,u=s[c],f=i((function(){return"/a/b"!=u.call({source:"a",flags:"b"})})),l=u.name!=c;(f||l)&&r(RegExp.prototype,c,(function(){var t=o(this),e=String(t.source),n=t.flags,r=String(void 0===n&&t instanceof RegExp&&!("flags"in s)?a.call(t):n);return"/"+e+"/"+r}),{unsafe:!0})},2626:function(t,e,n){"use strict";var r=n("d066"),o=n("9bf2"),i=n("b622"),a=n("83ab"),c=i("species");t.exports=function(t){var e=r(t),n=o.f;a&&e&&!e[c]&&n(e,c,{configurable:!0,get:function(){return this}})}},2877:function(t,e,n){"use strict";function r(t,e,n,r,o,i,a,c){var s,u="function"===typeof t?t.options:t;if(e&&(u.render=e,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),i&&(u._scopeId="data-v-"+i),a?(s=function(t){t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext,t||"undefined"===typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),o&&o.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},u._ssrRegister=s):o&&(s=c?function(){o.call(this,this.$root.$options.shadowRoot)}:o),s)if(u.functional){u._injectStyles=s;var f=u.render;u.render=function(t,e){return s.call(e),f(t,e)}}else{var l=u.beforeCreate;u.beforeCreate=l?[].concat(l,s):[s]}return{exports:t,options:u}}n.d(e,"a",(function(){return r}))},"2b0e":function(t,e,n){"use strict";(function(t){
2
  /*!
3
+ * Vue.js v2.6.11
4
  * (c) 2014-2019 Evan You
5
  * Released under the MIT License.
6
  */
7
+ var n=Object.freeze({});function r(t){return void 0===t||null===t}function o(t){return void 0!==t&&null!==t}function i(t){return!0===t}function a(t){return!1===t}function c(t){return"string"===typeof t||"number"===typeof t||"symbol"===typeof t||"boolean"===typeof t}function s(t){return null!==t&&"object"===typeof t}var u=Object.prototype.toString;function f(t){return"[object Object]"===u.call(t)}function l(t){return"[object RegExp]"===u.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return o(t)&&"function"===typeof t.then&&"function"===typeof t.catch}function v(t){return null==t?"":Array.isArray(t)||f(t)&&t.toString===u?JSON.stringify(t,null,2):String(t)}function h(t){var e=parseFloat(t);return isNaN(e)?t:e}function y(t,e){for(var n=Object.create(null),r=t.split(","),o=0;o<r.length;o++)n[r[o]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}y("slot,component",!0);var m=y("key,ref,slot,slot-scope,is");function g(t,e){if(t.length){var n=t.indexOf(e);if(n>-1)return t.splice(n,1)}}var b=Object.prototype.hasOwnProperty;function _(t,e){return b.call(t,e)}function w(t){var e=Object.create(null);return function(n){var r=e[n];return r||(e[n]=t(n))}}var x=/-(\w)/g,O=w((function(t){return t.replace(x,(function(t,e){return e?e.toUpperCase():""}))})),S=w((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),j=/\B([A-Z])/g,A=w((function(t){return t.replace(j,"-$1").toLowerCase()}));function C(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n}function E(t,e){return t.bind(e)}var $=Function.prototype.bind?E:C;function k(t,e){e=e||0;var n=t.length-e,r=new Array(n);while(n--)r[n]=t[n+e];return r}function T(t,e){for(var n in e)t[n]=e[n];return t}function P(t){for(var e={},n=0;n<t.length;n++)t[n]&&T(e,t[n]);return e}function I(t,e,n){}var M=function(t,e,n){return!1},L=function(t){return t};function N(t,e){if(t===e)return!0;var n=s(t),r=s(e);if(!n||!r)return!n&&!r&&String(t)===String(e);try{var o=Array.isArray(t),i=Array.isArray(e);if(o&&i)return t.length===e.length&&t.every((function(t,n){return N(t,e[n])}));if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(o||i)return!1;var a=Object.keys(t),c=Object.keys(e);return a.length===c.length&&a.every((function(n){return N(t[n],e[n])}))}catch(u){return!1}}function R(t,e){for(var n=0;n<t.length;n++)if(N(t[n],e))return n;return-1}function D(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}var F="data-server-rendered",U=["component","directive","filter"],B=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch"],V={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:M,isReservedAttr:M,isUnknownElement:M,getTagNamespace:I,parsePlatformTagName:L,mustUseProp:M,async:!0,_lifecycleHooks:B},z=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function H(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}function G(t,e,n,r){Object.defineProperty(t,e,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var q=new RegExp("[^"+z.source+".$_\\d]");function W(t){if(!q.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}var K,X="__proto__"in{},J="undefined"!==typeof window,Y="undefined"!==typeof WXEnvironment&&!!WXEnvironment.platform,Z=Y&&WXEnvironment.platform.toLowerCase(),Q=J&&window.navigator.userAgent.toLowerCase(),tt=Q&&/msie|trident/.test(Q),et=Q&&Q.indexOf("msie 9.0")>0,nt=Q&&Q.indexOf("edge/")>0,rt=(Q&&Q.indexOf("android"),Q&&/iphone|ipad|ipod|ios/.test(Q)||"ios"===Z),ot=(Q&&/chrome\/\d+/.test(Q),Q&&/phantomjs/.test(Q),Q&&Q.match(/firefox\/(\d+)/)),it={}.watch,at=!1;if(J)try{var ct={};Object.defineProperty(ct,"passive",{get:function(){at=!0}}),window.addEventListener("test-passive",null,ct)}catch(Oa){}var st=function(){return void 0===K&&(K=!J&&!Y&&"undefined"!==typeof t&&(t["process"]&&"server"===t["process"].env.VUE_ENV)),K},ut=J&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function ft(t){return"function"===typeof t&&/native code/.test(t.toString())}var lt,pt="undefined"!==typeof Symbol&&ft(Symbol)&&"undefined"!==typeof Reflect&&ft(Reflect.ownKeys);lt="undefined"!==typeof Set&&ft(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var dt=I,vt=0,ht=function(){this.id=vt++,this.subs=[]};ht.prototype.addSub=function(t){this.subs.push(t)},ht.prototype.removeSub=function(t){g(this.subs,t)},ht.prototype.depend=function(){ht.target&&ht.target.addDep(this)},ht.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e<n;e++)t[e].update()},ht.target=null;var yt=[];function mt(t){yt.push(t),ht.target=t}function gt(){yt.pop(),ht.target=yt[yt.length-1]}var bt=function(t,e,n,r,o,i,a,c){this.tag=t,this.data=e,this.children=n,this.text=r,this.elm=o,this.ns=void 0,this.context=i,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=c,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},_t={child:{configurable:!0}};_t.child.get=function(){return this.componentInstance},Object.defineProperties(bt.prototype,_t);var wt=function(t){void 0===t&&(t="");var e=new bt;return e.text=t,e.isComment=!0,e};function xt(t){return new bt(void 0,void 0,void 0,String(t))}function Ot(t){var e=new bt(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var St=Array.prototype,jt=Object.create(St),At=["push","pop","shift","unshift","splice","sort","reverse"];At.forEach((function(t){var e=St[t];G(jt,t,(function(){var n=[],r=arguments.length;while(r--)n[r]=arguments[r];var o,i=e.apply(this,n),a=this.__ob__;switch(t){case"push":case"unshift":o=n;break;case"splice":o=n.slice(2);break}return o&&a.observeArray(o),a.dep.notify(),i}))}));var Ct=Object.getOwnPropertyNames(jt),Et=!0;function $t(t){Et=t}var kt=function(t){this.value=t,this.dep=new ht,this.vmCount=0,G(t,"__ob__",this),Array.isArray(t)?(X?Tt(t,jt):Pt(t,jt,Ct),this.observeArray(t)):this.walk(t)};function Tt(t,e){t.__proto__=e}function Pt(t,e,n){for(var r=0,o=n.length;r<o;r++){var i=n[r];G(t,i,e[i])}}function It(t,e){var n;if(s(t)&&!(t instanceof bt))return _(t,"__ob__")&&t.__ob__ instanceof kt?n=t.__ob__:Et&&!st()&&(Array.isArray(t)||f(t))&&Object.isExtensible(t)&&!t._isVue&&(n=new kt(t)),e&&n&&n.vmCount++,n}function Mt(t,e,n,r,o){var i=new ht,a=Object.getOwnPropertyDescriptor(t,e);if(!a||!1!==a.configurable){var c=a&&a.get,s=a&&a.set;c&&!s||2!==arguments.length||(n=t[e]);var u=!o&&It(n);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=c?c.call(t):n;return ht.target&&(i.depend(),u&&(u.dep.depend(),Array.isArray(e)&&Rt(e))),e},set:function(e){var r=c?c.call(t):n;e===r||e!==e&&r!==r||c&&!s||(s?s.call(t,e):n=e,u=!o&&It(e),i.notify())}})}}function Lt(t,e,n){if(Array.isArray(t)&&p(e))return t.length=Math.max(t.length,e),t.splice(e,1,n),n;if(e in t&&!(e in Object.prototype))return t[e]=n,n;var r=t.__ob__;return t._isVue||r&&r.vmCount?n:r?(Mt(r.value,e,n),r.dep.notify(),n):(t[e]=n,n)}function Nt(t,e){if(Array.isArray(t)&&p(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||_(t,e)&&(delete t[e],n&&n.dep.notify())}}function Rt(t){for(var e=void 0,n=0,r=t.length;n<r;n++)e=t[n],e&&e.__ob__&&e.__ob__.dep.depend(),Array.isArray(e)&&Rt(e)}kt.prototype.walk=function(t){for(var e=Object.keys(t),n=0;n<e.length;n++)Mt(t,e[n])},kt.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)It(t[e])};var Dt=V.optionMergeStrategies;function Ft(t,e){if(!e)return t;for(var n,r,o,i=pt?Reflect.ownKeys(e):Object.keys(e),a=0;a<i.length;a++)n=i[a],"__ob__"!==n&&(r=t[n],o=e[n],_(t,n)?r!==o&&f(r)&&f(o)&&Ft(r,o):Lt(t,n,o));return t}function Ut(t,e,n){return n?function(){var r="function"===typeof e?e.call(n,n):e,o="function"===typeof t?t.call(n,n):t;return r?Ft(r,o):o}:e?t?function(){return Ft("function"===typeof e?e.call(this,this):e,"function"===typeof t?t.call(this,this):t)}:e:t}function Bt(t,e){var n=e?t?t.concat(e):Array.isArray(e)?e:[e]:t;return n?Vt(n):n}function Vt(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e}function zt(t,e,n,r){var o=Object.create(t||null);return e?T(o,e):o}Dt.data=function(t,e,n){return n?Ut(t,e,n):e&&"function"!==typeof e?t:Ut(t,e)},B.forEach((function(t){Dt[t]=Bt})),U.forEach((function(t){Dt[t+"s"]=zt})),Dt.watch=function(t,e,n,r){if(t===it&&(t=void 0),e===it&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var o={};for(var i in T(o,t),e){var a=o[i],c=e[i];a&&!Array.isArray(a)&&(a=[a]),o[i]=a?a.concat(c):Array.isArray(c)?c:[c]}return o},Dt.props=Dt.methods=Dt.inject=Dt.computed=function(t,e,n,r){if(!t)return e;var o=Object.create(null);return T(o,t),e&&T(o,e),o},Dt.provide=Ut;var Ht=function(t,e){return void 0===e?t:e};function Gt(t,e){var n=t.props;if(n){var r,o,i,a={};if(Array.isArray(n)){r=n.length;while(r--)o=n[r],"string"===typeof o&&(i=O(o),a[i]={type:null})}else if(f(n))for(var c in n)o=n[c],i=O(c),a[i]=f(o)?o:{type:o};else 0;t.props=a}}function qt(t,e){var n=t.inject;if(n){var r=t.inject={};if(Array.isArray(n))for(var o=0;o<n.length;o++)r[n[o]]={from:n[o]};else if(f(n))for(var i in n){var a=n[i];r[i]=f(a)?T({from:i},a):{from:a}}else 0}}function Wt(t){var e=t.directives;if(e)for(var n in e){var r=e[n];"function"===typeof r&&(e[n]={bind:r,update:r})}}function Kt(t,e,n){if("function"===typeof e&&(e=e.options),Gt(e,n),qt(e,n),Wt(e),!e._base&&(e.extends&&(t=Kt(t,e.extends,n)),e.mixins))for(var r=0,o=e.mixins.length;r<o;r++)t=Kt(t,e.mixins[r],n);var i,a={};for(i in t)c(i);for(i in e)_(t,i)||c(i);function c(r){var o=Dt[r]||Ht;a[r]=o(t[r],e[r],n,r)}return a}function Xt(t,e,n,r){if("string"===typeof n){var o=t[e];if(_(o,n))return o[n];var i=O(n);if(_(o,i))return o[i];var a=S(i);if(_(o,a))return o[a];var c=o[n]||o[i]||o[a];return c}}function Jt(t,e,n,r){var o=e[t],i=!_(n,t),a=n[t],c=te(Boolean,o.type);if(c>-1)if(i&&!_(o,"default"))a=!1;else if(""===a||a===A(t)){var s=te(String,o.type);(s<0||c<s)&&(a=!0)}if(void 0===a){a=Yt(r,o,t);var u=Et;$t(!0),It(a),$t(u)}return a}function Yt(t,e,n){if(_(e,"default")){var r=e.default;return t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n]?t._props[n]:"function"===typeof r&&"Function"!==Zt(e.type)?r.call(t):r}}function Zt(t){var e=t&&t.toString().match(/^\s*function (\w+)/);return e?e[1]:""}function Qt(t,e){return Zt(t)===Zt(e)}function te(t,e){if(!Array.isArray(e))return Qt(e,t)?0:-1;for(var n=0,r=e.length;n<r;n++)if(Qt(e[n],t))return n;return-1}function ee(t,e,n){mt();try{if(e){var r=e;while(r=r.$parent){var o=r.$options.errorCaptured;if(o)for(var i=0;i<o.length;i++)try{var a=!1===o[i].call(r,t,e,n);if(a)return}catch(Oa){re(Oa,r,"errorCaptured hook")}}}re(t,e,n)}finally{gt()}}function ne(t,e,n,r,o){var i;try{i=n?t.apply(e,n):t.call(e),i&&!i._isVue&&d(i)&&!i._handled&&(i.catch((function(t){return ee(t,r,o+" (Promise/async)")})),i._handled=!0)}catch(Oa){ee(Oa,r,o)}return i}function re(t,e,n){if(V.errorHandler)try{return V.errorHandler.call(null,t,e,n)}catch(Oa){Oa!==t&&oe(Oa,null,"config.errorHandler")}oe(t,e,n)}function oe(t,e,n){if(!J&&!Y||"undefined"===typeof console)throw t;console.error(t)}var ie,ae=!1,ce=[],se=!1;function ue(){se=!1;var t=ce.slice(0);ce.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!==typeof Promise&&ft(Promise)){var fe=Promise.resolve();ie=function(){fe.then(ue),rt&&setTimeout(I)},ae=!0}else if(tt||"undefined"===typeof MutationObserver||!ft(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())ie="undefined"!==typeof setImmediate&&ft(setImmediate)?function(){setImmediate(ue)}:function(){setTimeout(ue,0)};else{var le=1,pe=new MutationObserver(ue),de=document.createTextNode(String(le));pe.observe(de,{characterData:!0}),ie=function(){le=(le+1)%2,de.data=String(le)},ae=!0}function ve(t,e){var n;if(ce.push((function(){if(t)try{t.call(e)}catch(Oa){ee(Oa,e,"nextTick")}else n&&n(e)})),se||(se=!0,ie()),!t&&"undefined"!==typeof Promise)return new Promise((function(t){n=t}))}var he=new lt;function ye(t){me(t,he),he.clear()}function me(t,e){var n,r,o=Array.isArray(t);if(!(!o&&!s(t)||Object.isFrozen(t)||t instanceof bt)){if(t.__ob__){var i=t.__ob__.dep.id;if(e.has(i))return;e.add(i)}if(o){n=t.length;while(n--)me(t[n],e)}else{r=Object.keys(t),n=r.length;while(n--)me(t[r[n]],e)}}}var ge=w((function(t){var e="&"===t.charAt(0);t=e?t.slice(1):t;var n="~"===t.charAt(0);t=n?t.slice(1):t;var r="!"===t.charAt(0);return t=r?t.slice(1):t,{name:t,once:n,capture:r,passive:e}}));function be(t,e){function n(){var t=arguments,r=n.fns;if(!Array.isArray(r))return ne(r,null,arguments,e,"v-on handler");for(var o=r.slice(),i=0;i<o.length;i++)ne(o[i],null,t,e,"v-on handler")}return n.fns=t,n}function _e(t,e,n,o,a,c){var s,u,f,l;for(s in t)u=t[s],f=e[s],l=ge(s),r(u)||(r(f)?(r(u.fns)&&(u=t[s]=be(u,c)),i(l.once)&&(u=t[s]=a(l.name,u,l.capture)),n(l.name,u,l.capture,l.passive,l.params)):u!==f&&(f.fns=u,t[s]=f));for(s in e)r(t[s])&&(l=ge(s),o(l.name,e[s],l.capture))}function we(t,e,n){var a;t instanceof bt&&(t=t.data.hook||(t.data.hook={}));var c=t[e];function s(){n.apply(this,arguments),g(a.fns,s)}r(c)?a=be([s]):o(c.fns)&&i(c.merged)?(a=c,a.fns.push(s)):a=be([c,s]),a.merged=!0,t[e]=a}function xe(t,e,n){var i=e.options.props;if(!r(i)){var a={},c=t.attrs,s=t.props;if(o(c)||o(s))for(var u in i){var f=A(u);Oe(a,s,u,f,!0)||Oe(a,c,u,f,!1)}return a}}function Oe(t,e,n,r,i){if(o(e)){if(_(e,n))return t[n]=e[n],i||delete e[n],!0;if(_(e,r))return t[n]=e[r],i||delete e[r],!0}return!1}function Se(t){for(var e=0;e<t.length;e++)if(Array.isArray(t[e]))return Array.prototype.concat.apply([],t);return t}function je(t){return c(t)?[xt(t)]:Array.isArray(t)?Ce(t):void 0}function Ae(t){return o(t)&&o(t.text)&&a(t.isComment)}function Ce(t,e){var n,a,s,u,f=[];for(n=0;n<t.length;n++)a=t[n],r(a)||"boolean"===typeof a||(s=f.length-1,u=f[s],Array.isArray(a)?a.length>0&&(a=Ce(a,(e||"")+"_"+n),Ae(a[0])&&Ae(u)&&(f[s]=xt(u.text+a[0].text),a.shift()),f.push.apply(f,a)):c(a)?Ae(u)?f[s]=xt(u.text+a):""!==a&&f.push(xt(a)):Ae(a)&&Ae(u)?f[s]=xt(u.text+a.text):(i(t._isVList)&&o(a.tag)&&r(a.key)&&o(e)&&(a.key="__vlist"+e+"_"+n+"__"),f.push(a)));return f}function Ee(t){var e=t.$options.provide;e&&(t._provided="function"===typeof e?e.call(t):e)}function $e(t){var e=ke(t.$options.inject,t);e&&($t(!1),Object.keys(e).forEach((function(n){Mt(t,n,e[n])})),$t(!0))}function ke(t,e){if(t){for(var n=Object.create(null),r=pt?Reflect.ownKeys(t):Object.keys(t),o=0;o<r.length;o++){var i=r[o];if("__ob__"!==i){var a=t[i].from,c=e;while(c){if(c._provided&&_(c._provided,a)){n[i]=c._provided[a];break}c=c.$parent}if(!c)if("default"in t[i]){var s=t[i].default;n[i]="function"===typeof s?s.call(e):s}else 0}}return n}}function Te(t,e){if(!t||!t.length)return{};for(var n={},r=0,o=t.length;r<o;r++){var i=t[r],a=i.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,i.context!==e&&i.fnContext!==e||!a||null==a.slot)(n.default||(n.default=[])).push(i);else{var c=a.slot,s=n[c]||(n[c]=[]);"template"===i.tag?s.push.apply(s,i.children||[]):s.push(i)}}for(var u in n)n[u].every(Pe)&&delete n[u];return n}function Pe(t){return t.isComment&&!t.asyncFactory||" "===t.text}function Ie(t,e,r){var o,i=Object.keys(e).length>0,a=t?!!t.$stable:!i,c=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&r&&r!==n&&c===r.$key&&!i&&!r.$hasNormal)return r;for(var s in o={},t)t[s]&&"$"!==s[0]&&(o[s]=Me(e,s,t[s]))}else o={};for(var u in e)u in o||(o[u]=Le(e,u));return t&&Object.isExtensible(t)&&(t._normalized=o),G(o,"$stable",a),G(o,"$key",c),G(o,"$hasNormal",i),o}function Me(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return t=t&&"object"===typeof t&&!Array.isArray(t)?[t]:je(t),t&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function Le(t,e){return function(){return t[e]}}function Ne(t,e){var n,r,i,a,c;if(Array.isArray(t)||"string"===typeof t)for(n=new Array(t.length),r=0,i=t.length;r<i;r++)n[r]=e(t[r],r);else if("number"===typeof t)for(n=new Array(t),r=0;r<t;r++)n[r]=e(r+1,r);else if(s(t))if(pt&&t[Symbol.iterator]){n=[];var u=t[Symbol.iterator](),f=u.next();while(!f.done)n.push(e(f.value,n.length)),f=u.next()}else for(a=Object.keys(t),n=new Array(a.length),r=0,i=a.length;r<i;r++)c=a[r],n[r]=e(t[c],c,r);return o(n)||(n=[]),n._isVList=!0,n}function Re(t,e,n,r){var o,i=this.$scopedSlots[t];i?(n=n||{},r&&(n=T(T({},r),n)),o=i(n)||e):o=this.$slots[t]||e;var a=n&&n.slot;return a?this.$createElement("template",{slot:a},o):o}function De(t){return Xt(this.$options,"filters",t,!0)||L}function Fe(t,e){return Array.isArray(t)?-1===t.indexOf(e):t!==e}function Ue(t,e,n,r,o){var i=V.keyCodes[e]||n;return o&&r&&!V.keyCodes[e]?Fe(o,r):i?Fe(i,t):r?A(r)!==e:void 0}function Be(t,e,n,r,o){if(n)if(s(n)){var i;Array.isArray(n)&&(n=P(n));var a=function(a){if("class"===a||"style"===a||m(a))i=t;else{var c=t.attrs&&t.attrs.type;i=r||V.mustUseProp(e,c,a)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var s=O(a),u=A(a);if(!(s in i)&&!(u in i)&&(i[a]=n[a],o)){var f=t.on||(t.on={});f["update:"+a]=function(t){n[a]=t}}};for(var c in n)a(c)}else;return t}function Ve(t,e){var n=this._staticTrees||(this._staticTrees=[]),r=n[t];return r&&!e?r:(r=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,null,this),He(r,"__static__"+t,!1),r)}function ze(t,e,n){return He(t,"__once__"+e+(n?"_"+n:""),!0),t}function He(t,e,n){if(Array.isArray(t))for(var r=0;r<t.length;r++)t[r]&&"string"!==typeof t[r]&&Ge(t[r],e+"_"+r,n);else Ge(t,e,n)}function Ge(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function qe(t,e){if(e)if(f(e)){var n=t.on=t.on?T({},t.on):{};for(var r in e){var o=n[r],i=e[r];n[r]=o?[].concat(o,i):i}}else;return t}function We(t,e,n,r){e=e||{$stable:!n};for(var o=0;o<t.length;o++){var i=t[o];Array.isArray(i)?We(i,e,n):i&&(i.proxy&&(i.fn.proxy=!0),e[i.key]=i.fn)}return r&&(e.$key=r),e}function Ke(t,e){for(var n=0;n<e.length;n+=2){var r=e[n];"string"===typeof r&&r&&(t[e[n]]=e[n+1])}return t}function Xe(t,e){return"string"===typeof t?e+t:t}function Je(t){t._o=ze,t._n=h,t._s=v,t._l=Ne,t._t=Re,t._q=N,t._i=R,t._m=Ve,t._f=De,t._k=Ue,t._b=Be,t._v=xt,t._e=wt,t._u=We,t._g=qe,t._d=Ke,t._p=Xe}function Ye(t,e,r,o,a){var c,s=this,u=a.options;_(o,"_uid")?(c=Object.create(o),c._original=o):(c=o,o=o._original);var f=i(u._compiled),l=!f;this.data=t,this.props=e,this.children=r,this.parent=o,this.listeners=t.on||n,this.injections=ke(u.inject,o),this.slots=function(){return s.$slots||Ie(t.scopedSlots,s.$slots=Te(r,o)),s.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return Ie(t.scopedSlots,this.slots())}}),f&&(this.$options=u,this.$slots=this.slots(),this.$scopedSlots=Ie(t.scopedSlots,this.$slots)),u._scopeId?this._c=function(t,e,n,r){var i=ln(c,t,e,n,r,l);return i&&!Array.isArray(i)&&(i.fnScopeId=u._scopeId,i.fnContext=o),i}:this._c=function(t,e,n,r){return ln(c,t,e,n,r,l)}}function Ze(t,e,r,i,a){var c=t.options,s={},u=c.props;if(o(u))for(var f in u)s[f]=Jt(f,u,e||n);else o(r.attrs)&&tn(s,r.attrs),o(r.props)&&tn(s,r.props);var l=new Ye(r,s,a,i,t),p=c.render.call(null,l._c,l);if(p instanceof bt)return Qe(p,r,l.parent,c,l);if(Array.isArray(p)){for(var d=je(p)||[],v=new Array(d.length),h=0;h<d.length;h++)v[h]=Qe(d[h],r,l.parent,c,l);return v}}function Qe(t,e,n,r,o){var i=Ot(t);return i.fnContext=n,i.fnOptions=r,e.slot&&((i.data||(i.data={})).slot=e.slot),i}function tn(t,e){for(var n in e)t[O(n)]=e[n]}Je(Ye.prototype);var en={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var n=t;en.prepatch(n,n)}else{var r=t.componentInstance=on(t,kn);r.$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var n=e.componentOptions,r=e.componentInstance=t.componentInstance;Ln(r,n.propsData,n.listeners,e,n.children)},insert:function(t){var e=t.context,n=t.componentInstance;n._isMounted||(n._isMounted=!0,Fn(n,"mounted")),t.data.keepAlive&&(e._isMounted?Zn(n):Rn(n,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?Dn(e,!0):e.$destroy())}},nn=Object.keys(en);function rn(t,e,n,a,c){if(!r(t)){var u=n.$options._base;if(s(t)&&(t=u.extend(t)),"function"===typeof t){var f;if(r(t.cid)&&(f=t,t=wn(f,u),void 0===t))return _n(f,e,n,a,c);e=e||{},wr(t),o(e.model)&&sn(t.options,e);var l=xe(e,t,c);if(i(t.options.functional))return Ze(t,l,e,n,a);var p=e.on;if(e.on=e.nativeOn,i(t.options.abstract)){var d=e.slot;e={},d&&(e.slot=d)}an(e);var v=t.options.name||c,h=new bt("vue-component-"+t.cid+(v?"-"+v:""),e,void 0,void 0,void 0,n,{Ctor:t,propsData:l,listeners:p,tag:c,children:a},f);return h}}}function on(t,e){var n={_isComponent:!0,_parentVnode:t,parent:e},r=t.data.inlineTemplate;return o(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns),new t.componentOptions.Ctor(n)}function an(t){for(var e=t.hook||(t.hook={}),n=0;n<nn.length;n++){var r=nn[n],o=e[r],i=en[r];o===i||o&&o._merged||(e[r]=o?cn(i,o):i)}}function cn(t,e){var n=function(n,r){t(n,r),e(n,r)};return n._merged=!0,n}function sn(t,e){var n=t.model&&t.model.prop||"value",r=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[n]=e.model.value;var i=e.on||(e.on={}),a=i[r],c=e.model.callback;o(a)?(Array.isArray(a)?-1===a.indexOf(c):a!==c)&&(i[r]=[c].concat(a)):i[r]=c}var un=1,fn=2;function ln(t,e,n,r,o,a){return(Array.isArray(n)||c(n))&&(o=r,r=n,n=void 0),i(a)&&(o=fn),pn(t,e,n,r,o)}function pn(t,e,n,r,i){if(o(n)&&o(n.__ob__))return wt();if(o(n)&&o(n.is)&&(e=n.is),!e)return wt();var a,c,s;(Array.isArray(r)&&"function"===typeof r[0]&&(n=n||{},n.scopedSlots={default:r[0]},r.length=0),i===fn?r=je(r):i===un&&(r=Se(r)),"string"===typeof e)?(c=t.$vnode&&t.$vnode.ns||V.getTagNamespace(e),a=V.isReservedTag(e)?new bt(V.parsePlatformTagName(e),n,r,void 0,void 0,t):n&&n.pre||!o(s=Xt(t.$options,"components",e))?new bt(e,n,r,void 0,void 0,t):rn(s,n,t,r,e)):a=rn(e,n,t,r);return Array.isArray(a)?a:o(a)?(o(c)&&dn(a,c),o(n)&&vn(n),a):wt()}function dn(t,e,n){if(t.ns=e,"foreignObject"===t.tag&&(e=void 0,n=!0),o(t.children))for(var a=0,c=t.children.length;a<c;a++){var s=t.children[a];o(s.tag)&&(r(s.ns)||i(n)&&"svg"!==s.tag)&&dn(s,e,n)}}function vn(t){s(t.style)&&ye(t.style),s(t.class)&&ye(t.class)}function hn(t){t._vnode=null,t._staticTrees=null;var e=t.$options,r=t.$vnode=e._parentVnode,o=r&&r.context;t.$slots=Te(e._renderChildren,o),t.$scopedSlots=n,t._c=function(e,n,r,o){return ln(t,e,n,r,o,!1)},t.$createElement=function(e,n,r,o){return ln(t,e,n,r,o,!0)};var i=r&&r.data;Mt(t,"$attrs",i&&i.attrs||n,null,!0),Mt(t,"$listeners",e._parentListeners||n,null,!0)}var yn,mn=null;function gn(t){Je(t.prototype),t.prototype.$nextTick=function(t){return ve(t,this)},t.prototype._render=function(){var t,e=this,n=e.$options,r=n.render,o=n._parentVnode;o&&(e.$scopedSlots=Ie(o.data.scopedSlots,e.$slots,e.$scopedSlots)),e.$vnode=o;try{mn=e,t=r.call(e._renderProxy,e.$createElement)}catch(Oa){ee(Oa,e,"render"),t=e._vnode}finally{mn=null}return Array.isArray(t)&&1===t.length&&(t=t[0]),t instanceof bt||(t=wt()),t.parent=o,t}}function bn(t,e){return(t.__esModule||pt&&"Module"===t[Symbol.toStringTag])&&(t=t.default),s(t)?e.extend(t):t}function _n(t,e,n,r,o){var i=wt();return i.asyncFactory=t,i.asyncMeta={data:e,context:n,children:r,tag:o},i}function wn(t,e){if(i(t.error)&&o(t.errorComp))return t.errorComp;if(o(t.resolved))return t.resolved;var n=mn;if(n&&o(t.owners)&&-1===t.owners.indexOf(n)&&t.owners.push(n),i(t.loading)&&o(t.loadingComp))return t.loadingComp;if(n&&!o(t.owners)){var a=t.owners=[n],c=!0,u=null,f=null;n.$on("hook:destroyed",(function(){return g(a,n)}));var l=function(t){for(var e=0,n=a.length;e<n;e++)a[e].$forceUpdate();t&&(a.length=0,null!==u&&(clearTimeout(u),u=null),null!==f&&(clearTimeout(f),f=null))},p=D((function(n){t.resolved=bn(n,e),c?a.length=0:l(!0)})),v=D((function(e){o(t.errorComp)&&(t.error=!0,l(!0))})),h=t(p,v);return s(h)&&(d(h)?r(t.resolved)&&h.then(p,v):d(h.component)&&(h.component.then(p,v),o(h.error)&&(t.errorComp=bn(h.error,e)),o(h.loading)&&(t.loadingComp=bn(h.loading,e),0===h.delay?t.loading=!0:u=setTimeout((function(){u=null,r(t.resolved)&&r(t.error)&&(t.loading=!0,l(!1))}),h.delay||200)),o(h.timeout)&&(f=setTimeout((function(){f=null,r(t.resolved)&&v(null)}),h.timeout)))),c=!1,t.loading?t.loadingComp:t.resolved}}function xn(t){return t.isComment&&t.asyncFactory}function On(t){if(Array.isArray(t))for(var e=0;e<t.length;e++){var n=t[e];if(o(n)&&(o(n.componentOptions)||xn(n)))return n}}function Sn(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&En(t,e)}function jn(t,e){yn.$on(t,e)}function An(t,e){yn.$off(t,e)}function Cn(t,e){var n=yn;return function r(){var o=e.apply(null,arguments);null!==o&&n.$off(t,r)}}function En(t,e,n){yn=t,_e(e,n||{},jn,An,Cn,t),yn=void 0}function $n(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var o=0,i=t.length;o<i;o++)r.$on(t[o],n);else(r._events[t]||(r._events[t]=[])).push(n),e.test(t)&&(r._hasHookEvent=!0);return r},t.prototype.$once=function(t,e){var n=this;function r(){n.$off(t,r),e.apply(n,arguments)}return r.fn=e,n.$on(t,r),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(t)){for(var r=0,o=t.length;r<o;r++)n.$off(t[r],e);return n}var i,a=n._events[t];if(!a)return n;if(!e)return n._events[t]=null,n;var c=a.length;while(c--)if(i=a[c],i===e||i.fn===e){a.splice(c,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?k(n):n;for(var r=k(arguments,1),o='event handler for "'+t+'"',i=0,a=n.length;i<a;i++)ne(n[i],e,r,e,o)}return e}}var kn=null;function Tn(t){var e=kn;return kn=t,function(){kn=e}}function Pn(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){while(n.$options.abstract&&n.$parent)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}function In(t){t.prototype._update=function(t,e){var n=this,r=n.$el,o=n._vnode,i=Tn(n);n._vnode=t,n.$el=o?n.__patch__(o,t):n.__patch__(n.$el,t,e,!1),i(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},t.prototype.$forceUpdate=function(){var t=this;t._watcher&&t._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){Fn(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||g(e.$children,t),t._watcher&&t._watcher.teardown();var n=t._watchers.length;while(n--)t._watchers[n].teardown();t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),Fn(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}function Mn(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=wt),Fn(t,"beforeMount"),r=function(){t._update(t._render(),n)},new nr(t,r,I,{before:function(){t._isMounted&&!t._isDestroyed&&Fn(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,Fn(t,"mounted")),t}function Ln(t,e,r,o,i){var a=o.data.scopedSlots,c=t.$scopedSlots,s=!!(a&&!a.$stable||c!==n&&!c.$stable||a&&t.$scopedSlots.$key!==a.$key),u=!!(i||t.$options._renderChildren||s);if(t.$options._parentVnode=o,t.$vnode=o,t._vnode&&(t._vnode.parent=o),t.$options._renderChildren=i,t.$attrs=o.data.attrs||n,t.$listeners=r||n,e&&t.$options.props){$t(!1);for(var f=t._props,l=t.$options._propKeys||[],p=0;p<l.length;p++){var d=l[p],v=t.$options.props;f[d]=Jt(d,v,e,t)}$t(!0),t.$options.propsData=e}r=r||n;var h=t.$options._parentListeners;t.$options._parentListeners=r,En(t,r,h),u&&(t.$slots=Te(i,o.context),t.$forceUpdate())}function Nn(t){while(t&&(t=t.$parent))if(t._inactive)return!0;return!1}function Rn(t,e){if(e){if(t._directInactive=!1,Nn(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)Rn(t.$children[n]);Fn(t,"activated")}}function Dn(t,e){if((!e||(t._directInactive=!0,!Nn(t)))&&!t._inactive){t._inactive=!0;for(var n=0;n<t.$children.length;n++)Dn(t.$children[n]);Fn(t,"deactivated")}}function Fn(t,e){mt();var n=t.$options[e],r=e+" hook";if(n)for(var o=0,i=n.length;o<i;o++)ne(n[o],t,null,t,r);t._hasHookEvent&&t.$emit("hook:"+e),gt()}var Un=[],Bn=[],Vn={},zn=!1,Hn=!1,Gn=0;function qn(){Gn=Un.length=Bn.length=0,Vn={},zn=Hn=!1}var Wn=0,Kn=Date.now;if(J&&!tt){var Xn=window.performance;Xn&&"function"===typeof Xn.now&&Kn()>document.createEvent("Event").timeStamp&&(Kn=function(){return Xn.now()})}function Jn(){var t,e;for(Wn=Kn(),Hn=!0,Un.sort((function(t,e){return t.id-e.id})),Gn=0;Gn<Un.length;Gn++)t=Un[Gn],t.before&&t.before(),e=t.id,Vn[e]=null,t.run();var n=Bn.slice(),r=Un.slice();qn(),Qn(n),Yn(r),ut&&V.devtools&&ut.emit("flush")}function Yn(t){var e=t.length;while(e--){var n=t[e],r=n.vm;r._watcher===n&&r._isMounted&&!r._isDestroyed&&Fn(r,"updated")}}function Zn(t){t._inactive=!1,Bn.push(t)}function Qn(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,Rn(t[e],!0)}function tr(t){var e=t.id;if(null==Vn[e]){if(Vn[e]=!0,Hn){var n=Un.length-1;while(n>Gn&&Un[n].id>t.id)n--;Un.splice(n+1,0,t)}else Un.push(t);zn||(zn=!0,ve(Jn))}}var er=0,nr=function(t,e,n,r,o){this.vm=t,o&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++er,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new lt,this.newDepIds=new lt,this.expression="","function"===typeof e?this.getter=e:(this.getter=W(e),this.getter||(this.getter=I)),this.value=this.lazy?void 0:this.get()};nr.prototype.get=function(){var t;mt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(Oa){if(!this.user)throw Oa;ee(Oa,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&ye(t),gt(),this.cleanupDeps()}return t},nr.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},nr.prototype.cleanupDeps=function(){var t=this.deps.length;while(t--){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},nr.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():tr(this)},nr.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||s(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(Oa){ee(Oa,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},nr.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},nr.prototype.depend=function(){var t=this.deps.length;while(t--)this.deps[t].depend()},nr.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);var t=this.deps.length;while(t--)this.deps[t].removeSub(this);this.active=!1}};var rr={enumerable:!0,configurable:!0,get:I,set:I};function or(t,e,n){rr.get=function(){return this[e][n]},rr.set=function(t){this[e][n]=t},Object.defineProperty(t,n,rr)}function ir(t){t._watchers=[];var e=t.$options;e.props&&ar(t,e.props),e.methods&&vr(t,e.methods),e.data?cr(t):It(t._data={},!0),e.computed&&fr(t,e.computed),e.watch&&e.watch!==it&&hr(t,e.watch)}function ar(t,e){var n=t.$options.propsData||{},r=t._props={},o=t.$options._propKeys=[],i=!t.$parent;i||$t(!1);var a=function(i){o.push(i);var a=Jt(i,e,n,t);Mt(r,i,a),i in t||or(t,"_props",i)};for(var c in e)a(c);$t(!0)}function cr(t){var e=t.$options.data;e=t._data="function"===typeof e?sr(e,t):e||{},f(e)||(e={});var n=Object.keys(e),r=t.$options.props,o=(t.$options.methods,n.length);while(o--){var i=n[o];0,r&&_(r,i)||H(i)||or(t,"_data",i)}It(e,!0)}function sr(t,e){mt();try{return t.call(e,e)}catch(Oa){return ee(Oa,e,"data()"),{}}finally{gt()}}var ur={lazy:!0};function fr(t,e){var n=t._computedWatchers=Object.create(null),r=st();for(var o in e){var i=e[o],a="function"===typeof i?i:i.get;0,r||(n[o]=new nr(t,a||I,I,ur)),o in t||lr(t,o,i)}}function lr(t,e,n){var r=!st();"function"===typeof n?(rr.get=r?pr(e):dr(n),rr.set=I):(rr.get=n.get?r&&!1!==n.cache?pr(e):dr(n.get):I,rr.set=n.set||I),Object.defineProperty(t,e,rr)}function pr(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),ht.target&&e.depend(),e.value}}function dr(t){return function(){return t.call(this,this)}}function vr(t,e){t.$options.props;for(var n in e)t[n]="function"!==typeof e[n]?I:$(e[n],t)}function hr(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var o=0;o<r.length;o++)yr(t,n,r[o]);else yr(t,n,r)}}function yr(t,e,n,r){return f(n)&&(r=n,n=n.handler),"string"===typeof n&&(n=t[n]),t.$watch(e,n,r)}function mr(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=Lt,t.prototype.$delete=Nt,t.prototype.$watch=function(t,e,n){var r=this;if(f(e))return yr(r,t,e,n);n=n||{},n.user=!0;var o=new nr(r,t,e,n);if(n.immediate)try{e.call(r,o.value)}catch(i){ee(i,r,'callback for immediate watcher "'+o.expression+'"')}return function(){o.teardown()}}}var gr=0;function br(t){t.prototype._init=function(t){var e=this;e._uid=gr++,e._isVue=!0,t&&t._isComponent?_r(e,t):e.$options=Kt(wr(e.constructor),t||{},e),e._renderProxy=e,e._self=e,Pn(e),Sn(e),hn(e),Fn(e,"beforeCreate"),$e(e),ir(e),Ee(e),Fn(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}function _r(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var o=r.componentOptions;n.propsData=o.propsData,n._parentListeners=o.listeners,n._renderChildren=o.children,n._componentTag=o.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}function wr(t){var e=t.options;if(t.super){var n=wr(t.super),r=t.superOptions;if(n!==r){t.superOptions=n;var o=xr(t);o&&T(t.extendOptions,o),e=t.options=Kt(n,t.extendOptions),e.name&&(e.components[e.name]=t)}}return e}function xr(t){var e,n=t.options,r=t.sealedOptions;for(var o in n)n[o]!==r[o]&&(e||(e={}),e[o]=n[o]);return e}function Or(t){this._init(t)}function Sr(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=k(arguments,1);return n.unshift(this),"function"===typeof t.install?t.install.apply(t,n):"function"===typeof t&&t.apply(null,n),e.push(t),this}}function jr(t){t.mixin=function(t){return this.options=Kt(this.options,t),this}}function Ar(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,o=t._Ctor||(t._Ctor={});if(o[r])return o[r];var i=t.name||n.options.name;var a=function(t){this._init(t)};return a.prototype=Object.create(n.prototype),a.prototype.constructor=a,a.cid=e++,a.options=Kt(n.options,t),a["super"]=n,a.options.props&&Cr(a),a.options.computed&&Er(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,U.forEach((function(t){a[t]=n[t]})),i&&(a.options.components[i]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=T({},a.options),o[r]=a,a}}function Cr(t){var e=t.options.props;for(var n in e)or(t.prototype,"_props",n)}function Er(t){var e=t.options.computed;for(var n in e)lr(t.prototype,n,e[n])}function $r(t){U.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&f(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"===typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}function kr(t){return t&&(t.Ctor.options.name||t.tag)}function Tr(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"===typeof t?t.split(",").indexOf(e)>-1:!!l(t)&&t.test(e)}function Pr(t,e){var n=t.cache,r=t.keys,o=t._vnode;for(var i in n){var a=n[i];if(a){var c=kr(a.componentOptions);c&&!e(c)&&Ir(n,i,r,o)}}}function Ir(t,e,n,r){var o=t[e];!o||r&&o.tag===r.tag||o.componentInstance.$destroy(),t[e]=null,g(n,e)}br(Or),mr(Or),$n(Or),In(Or),gn(Or);var Mr=[String,RegExp,Array],Lr={name:"keep-alive",abstract:!0,props:{include:Mr,exclude:Mr,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Ir(this.cache,t,this.keys)},mounted:function(){var t=this;this.$watch("include",(function(e){Pr(t,(function(t){return Tr(e,t)}))})),this.$watch("exclude",(function(e){Pr(t,(function(t){return!Tr(e,t)}))}))},render:function(){var t=this.$slots.default,e=On(t),n=e&&e.componentOptions;if(n){var r=kr(n),o=this,i=o.include,a=o.exclude;if(i&&(!r||!Tr(i,r))||a&&r&&Tr(a,r))return e;var c=this,s=c.cache,u=c.keys,f=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;s[f]?(e.componentInstance=s[f].componentInstance,g(u,f),u.push(f)):(s[f]=e,u.push(f),this.max&&u.length>parseInt(this.max)&&Ir(s,u[0],u,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}},Nr={KeepAlive:Lr};function Rr(t){var e={get:function(){return V}};Object.defineProperty(t,"config",e),t.util={warn:dt,extend:T,mergeOptions:Kt,defineReactive:Mt},t.set=Lt,t.delete=Nt,t.nextTick=ve,t.observable=function(t){return It(t),t},t.options=Object.create(null),U.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,T(t.options.components,Nr),Sr(t),jr(t),Ar(t),$r(t)}Rr(Or),Object.defineProperty(Or.prototype,"$isServer",{get:st}),Object.defineProperty(Or.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(Or,"FunctionalRenderContext",{value:Ye}),Or.version="2.6.11";var Dr=y("style,class"),Fr=y("input,textarea,option,select,progress"),Ur=function(t,e,n){return"value"===n&&Fr(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},Br=y("contenteditable,draggable,spellcheck"),Vr=y("events,caret,typing,plaintext-only"),zr=function(t,e){return Kr(e)||"false"===e?"false":"contenteditable"===t&&Vr(e)?e:"true"},Hr=y("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Gr="http://www.w3.org/1999/xlink",qr=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Wr=function(t){return qr(t)?t.slice(6,t.length):""},Kr=function(t){return null==t||!1===t};function Xr(t){var e=t.data,n=t,r=t;while(o(r.componentInstance))r=r.componentInstance._vnode,r&&r.data&&(e=Jr(r.data,e));while(o(n=n.parent))n&&n.data&&(e=Jr(e,n.data));return Yr(e.staticClass,e.class)}function Jr(t,e){return{staticClass:Zr(t.staticClass,e.staticClass),class:o(t.class)?[t.class,e.class]:e.class}}function Yr(t,e){return o(t)||o(e)?Zr(t,Qr(e)):""}function Zr(t,e){return t?e?t+" "+e:t:e||""}function Qr(t){return Array.isArray(t)?to(t):s(t)?eo(t):"string"===typeof t?t:""}function to(t){for(var e,n="",r=0,i=t.length;r<i;r++)o(e=Qr(t[r]))&&""!==e&&(n&&(n+=" "),n+=e);return n}function eo(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}var no={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},ro=y("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),oo=y("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),io=function(t){return ro(t)||oo(t)};function ao(t){return oo(t)?"svg":"math"===t?"math":void 0}var co=Object.create(null);function so(t){if(!J)return!0;if(io(t))return!1;if(t=t.toLowerCase(),null!=co[t])return co[t];var e=document.createElement(t);return t.indexOf("-")>-1?co[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:co[t]=/HTMLUnknownElement/.test(e.toString())}var uo=y("text,number,password,search,email,tel,url");function fo(t){if("string"===typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}function lo(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)}function po(t,e){return document.createElementNS(no[t],e)}function vo(t){return document.createTextNode(t)}function ho(t){return document.createComment(t)}function yo(t,e,n){t.insertBefore(e,n)}function mo(t,e){t.removeChild(e)}function go(t,e){t.appendChild(e)}function bo(t){return t.parentNode}function _o(t){return t.nextSibling}function wo(t){return t.tagName}function xo(t,e){t.textContent=e}function Oo(t,e){t.setAttribute(e,"")}var So=Object.freeze({createElement:lo,createElementNS:po,createTextNode:vo,createComment:ho,insertBefore:yo,removeChild:mo,appendChild:go,parentNode:bo,nextSibling:_o,tagName:wo,setTextContent:xo,setStyleScope:Oo}),jo={create:function(t,e){Ao(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Ao(t,!0),Ao(e))},destroy:function(t){Ao(t,!0)}};function Ao(t,e){var n=t.data.ref;if(o(n)){var r=t.context,i=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],i):a[n]===i&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(i)<0&&a[n].push(i):a[n]=[i]:a[n]=i}}var Co=new bt("",{},[]),Eo=["create","activate","update","remove","destroy"];function $o(t,e){return t.key===e.key&&(t.tag===e.tag&&t.isComment===e.isComment&&o(t.data)===o(e.data)&&ko(t,e)||i(t.isAsyncPlaceholder)&&t.asyncFactory===e.asyncFactory&&r(e.asyncFactory.error))}function ko(t,e){if("input"!==t.tag)return!0;var n,r=o(n=t.data)&&o(n=n.attrs)&&n.type,i=o(n=e.data)&&o(n=n.attrs)&&n.type;return r===i||uo(r)&&uo(i)}function To(t,e,n){var r,i,a={};for(r=e;r<=n;++r)i=t[r].key,o(i)&&(a[i]=r);return a}function Po(t){var e,n,a={},s=t.modules,u=t.nodeOps;for(e=0;e<Eo.length;++e)for(a[Eo[e]]=[],n=0;n<s.length;++n)o(s[n][Eo[e]])&&a[Eo[e]].push(s[n][Eo[e]]);function f(t){return new bt(u.tagName(t).toLowerCase(),{},[],void 0,t)}function l(t,e){function n(){0===--n.listeners&&p(t)}return n.listeners=e,n}function p(t){var e=u.parentNode(t);o(e)&&u.removeChild(e,t)}function d(t,e,n,r,a,c,s){if(o(t.elm)&&o(c)&&(t=c[s]=Ot(t)),t.isRootInsert=!a,!v(t,e,n,r)){var f=t.data,l=t.children,p=t.tag;o(p)?(t.elm=t.ns?u.createElementNS(t.ns,p):u.createElement(p,t),x(t),b(t,l,e),o(f)&&w(t,e),g(n,t.elm,r)):i(t.isComment)?(t.elm=u.createComment(t.text),g(n,t.elm,r)):(t.elm=u.createTextNode(t.text),g(n,t.elm,r))}}function v(t,e,n,r){var a=t.data;if(o(a)){var c=o(t.componentInstance)&&a.keepAlive;if(o(a=a.hook)&&o(a=a.init)&&a(t,!1),o(t.componentInstance))return h(t,e),g(n,t.elm,r),i(c)&&m(t,e,n,r),!0}}function h(t,e){o(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,_(t)?(w(t,e),x(t)):(Ao(t),e.push(t))}function m(t,e,n,r){var i,c=t;while(c.componentInstance)if(c=c.componentInstance._vnode,o(i=c.data)&&o(i=i.transition)){for(i=0;i<a.activate.length;++i)a.activate[i](Co,c);e.push(c);break}g(n,t.elm,r)}function g(t,e,n){o(t)&&(o(n)?u.parentNode(n)===t&&u.insertBefore(t,e,n):u.appendChild(t,e))}function b(t,e,n){if(Array.isArray(e)){0;for(var r=0;r<e.length;++r)d(e[r],n,t.elm,null,!0,e,r)}else c(t.text)&&u.appendChild(t.elm,u.createTextNode(String(t.text)))}function _(t){while(t.componentInstance)t=t.componentInstance._vnode;return o(t.tag)}function w(t,n){for(var r=0;r<a.create.length;++r)a.create[r](Co,t);e=t.data.hook,o(e)&&(o(e.create)&&e.create(Co,t),o(e.insert)&&n.push(t))}function x(t){var e;if(o(e=t.fnScopeId))u.setStyleScope(t.elm,e);else{var n=t;while(n)o(e=n.context)&&o(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e),n=n.parent}o(e=kn)&&e!==t.context&&e!==t.fnContext&&o(e=e.$options._scopeId)&&u.setStyleScope(t.elm,e)}function O(t,e,n,r,o,i){for(;r<=o;++r)d(n[r],i,t,e,!1,n,r)}function S(t){var e,n,r=t.data;if(o(r))for(o(e=r.hook)&&o(e=e.destroy)&&e(t),e=0;e<a.destroy.length;++e)a.destroy[e](t);if(o(e=t.children))for(n=0;n<t.children.length;++n)S(t.children[n])}function j(t,e,n){for(;e<=n;++e){var r=t[e];o(r)&&(o(r.tag)?(A(r),S(r)):p(r.elm))}}function A(t,e){if(o(e)||o(t.data)){var n,r=a.remove.length+1;for(o(e)?e.listeners+=r:e=l(t.elm,r),o(n=t.componentInstance)&&o(n=n._vnode)&&o(n.data)&&A(n,e),n=0;n<a.remove.length;++n)a.remove[n](t,e);o(n=t.data.hook)&&o(n=n.remove)?n(t,e):e()}else p(t.elm)}function C(t,e,n,i,a){var c,s,f,l,p=0,v=0,h=e.length-1,y=e[0],m=e[h],g=n.length-1,b=n[0],_=n[g],w=!a;while(p<=h&&v<=g)r(y)?y=e[++p]:r(m)?m=e[--h]:$o(y,b)?($(y,b,i,n,v),y=e[++p],b=n[++v]):$o(m,_)?($(m,_,i,n,g),m=e[--h],_=n[--g]):$o(y,_)?($(y,_,i,n,g),w&&u.insertBefore(t,y.elm,u.nextSibling(m.elm)),y=e[++p],_=n[--g]):$o(m,b)?($(m,b,i,n,v),w&&u.insertBefore(t,m.elm,y.elm),m=e[--h],b=n[++v]):(r(c)&&(c=To(e,p,h)),s=o(b.key)?c[b.key]:E(b,e,p,h),r(s)?d(b,i,t,y.elm,!1,n,v):(f=e[s],$o(f,b)?($(f,b,i,n,v),e[s]=void 0,w&&u.insertBefore(t,f.elm,y.elm)):d(b,i,t,y.elm,!1,n,v)),b=n[++v]);p>h?(l=r(n[g+1])?null:n[g+1].elm,O(t,l,n,v,g,i)):v>g&&j(e,p,h)}function E(t,e,n,r){for(var i=n;i<r;i++){var a=e[i];if(o(a)&&$o(t,a))return i}}function $(t,e,n,c,s,f){if(t!==e){o(e.elm)&&o(c)&&(e=c[s]=Ot(e));var l=e.elm=t.elm;if(i(t.isAsyncPlaceholder))o(e.asyncFactory.resolved)?P(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(i(e.isStatic)&&i(t.isStatic)&&e.key===t.key&&(i(e.isCloned)||i(e.isOnce)))e.componentInstance=t.componentInstance;else{var p,d=e.data;o(d)&&o(p=d.hook)&&o(p=p.prepatch)&&p(t,e);var v=t.children,h=e.children;if(o(d)&&_(e)){for(p=0;p<a.update.length;++p)a.update[p](t,e);o(p=d.hook)&&o(p=p.update)&&p(t,e)}r(e.text)?o(v)&&o(h)?v!==h&&C(l,v,h,n,f):o(h)?(o(t.text)&&u.setTextContent(l,""),O(l,null,h,0,h.length-1,n)):o(v)?j(v,0,v.length-1):o(t.text)&&u.setTextContent(l,""):t.text!==e.text&&u.setTextContent(l,e.text),o(d)&&o(p=d.hook)&&o(p=p.postpatch)&&p(t,e)}}}function k(t,e,n){if(i(n)&&o(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r<e.length;++r)e[r].data.hook.insert(e[r])}var T=y("attrs,class,staticClass,staticStyle,key");function P(t,e,n,r){var a,c=e.tag,s=e.data,u=e.children;if(r=r||s&&s.pre,e.elm=t,i(e.isComment)&&o(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(o(s)&&(o(a=s.hook)&&o(a=a.init)&&a(e,!0),o(a=e.componentInstance)))return h(e,n),!0;if(o(c)){if(o(u))if(t.hasChildNodes())if(o(a=s)&&o(a=a.domProps)&&o(a=a.innerHTML)){if(a!==t.innerHTML)return!1}else{for(var f=!0,l=t.firstChild,p=0;p<u.length;p++){if(!l||!P(l,u[p],n,r)){f=!1;break}l=l.nextSibling}if(!f||l)return!1}else b(e,u,n);if(o(s)){var d=!1;for(var v in s)if(!T(v)){d=!0,w(e,n);break}!d&&s["class"]&&ye(s["class"])}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,c){if(!r(e)){var s=!1,l=[];if(r(t))s=!0,d(e,l);else{var p=o(t.nodeType);if(!p&&$o(t,e))$(t,e,l,null,null,c);else{if(p){if(1===t.nodeType&&t.hasAttribute(F)&&(t.removeAttribute(F),n=!0),i(n)&&P(t,e,l))return k(e,l,!0),t;t=f(t)}var v=t.elm,h=u.parentNode(v);if(d(e,l,v._leaveCb?null:h,u.nextSibling(v)),o(e.parent)){var y=e.parent,m=_(e);while(y){for(var g=0;g<a.destroy.length;++g)a.destroy[g](y);if(y.elm=e.elm,m){for(var b=0;b<a.create.length;++b)a.create[b](Co,y);var w=y.data.hook.insert;if(w.merged)for(var x=1;x<w.fns.length;x++)w.fns[x]()}else Ao(y);y=y.parent}}o(h)?j([t],0,0):o(t.tag)&&S(t)}}return k(e,l,s),e.elm}o(t)&&S(t)}}var Io={create:Mo,update:Mo,destroy:function(t){Mo(t,Co)}};function Mo(t,e){(t.data.directives||e.data.directives)&&Lo(t,e)}function Lo(t,e){var n,r,o,i=t===Co,a=e===Co,c=Ro(t.data.directives,t.context),s=Ro(e.data.directives,e.context),u=[],f=[];for(n in s)r=c[n],o=s[n],r?(o.oldValue=r.value,o.oldArg=r.arg,Fo(o,"update",e,t),o.def&&o.def.componentUpdated&&f.push(o)):(Fo(o,"bind",e,t),o.def&&o.def.inserted&&u.push(o));if(u.length){var l=function(){for(var n=0;n<u.length;n++)Fo(u[n],"inserted",e,t)};i?we(e,"insert",l):l()}if(f.length&&we(e,"postpatch",(function(){for(var n=0;n<f.length;n++)Fo(f[n],"componentUpdated",e,t)})),!i)for(n in c)s[n]||Fo(c[n],"unbind",t,t,a)}var No=Object.create(null);function Ro(t,e){var n,r,o=Object.create(null);if(!t)return o;for(n=0;n<t.length;n++)r=t[n],r.modifiers||(r.modifiers=No),o[Do(r)]=r,r.def=Xt(e.$options,"directives",r.name,!0);return o}function Do(t){return t.rawName||t.name+"."+Object.keys(t.modifiers||{}).join(".")}function Fo(t,e,n,r,o){var i=t.def&&t.def[e];if(i)try{i(n.elm,t,n,r,o)}catch(Oa){ee(Oa,n.context,"directive "+t.name+" "+e+" hook")}}var Uo=[jo,Io];function Bo(t,e){var n=e.componentOptions;if((!o(n)||!1!==n.Ctor.options.inheritAttrs)&&(!r(t.data.attrs)||!r(e.data.attrs))){var i,a,c,s=e.elm,u=t.data.attrs||{},f=e.data.attrs||{};for(i in o(f.__ob__)&&(f=e.data.attrs=T({},f)),f)a=f[i],c=u[i],c!==a&&Vo(s,i,a);for(i in(tt||nt)&&f.value!==u.value&&Vo(s,"value",f.value),u)r(f[i])&&(qr(i)?s.removeAttributeNS(Gr,Wr(i)):Br(i)||s.removeAttribute(i))}}function Vo(t,e,n){t.tagName.indexOf("-")>-1?zo(t,e,n):Hr(e)?Kr(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):Br(e)?t.setAttribute(e,zr(e,n)):qr(e)?Kr(n)?t.removeAttributeNS(Gr,Wr(e)):t.setAttributeNS(Gr,e,n):zo(t,e,n)}function zo(t,e,n){if(Kr(n))t.removeAttribute(e);else{if(tt&&!et&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var Ho={create:Bo,update:Bo};function Go(t,e){var n=e.elm,i=e.data,a=t.data;if(!(r(i.staticClass)&&r(i.class)&&(r(a)||r(a.staticClass)&&r(a.class)))){var c=Xr(e),s=n._transitionClasses;o(s)&&(c=Zr(c,Qr(s))),c!==n._prevClass&&(n.setAttribute("class",c),n._prevClass=c)}}var qo,Wo={create:Go,update:Go},Ko="__r",Xo="__c";function Jo(t){if(o(t[Ko])){var e=tt?"change":"input";t[e]=[].concat(t[Ko],t[e]||[]),delete t[Ko]}o(t[Xo])&&(t.change=[].concat(t[Xo],t.change||[]),delete t[Xo])}function Yo(t,e,n){var r=qo;return function o(){var i=e.apply(null,arguments);null!==i&&ti(t,o,n,r)}}var Zo=ae&&!(ot&&Number(ot[1])<=53);function Qo(t,e,n,r){if(Zo){var o=Wn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=o||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}qo.addEventListener(t,e,at?{capture:n,passive:r}:n)}function ti(t,e,n,r){(r||qo).removeEventListener(t,e._wrapper||e,n)}function ei(t,e){if(!r(t.data.on)||!r(e.data.on)){var n=e.data.on||{},o=t.data.on||{};qo=e.elm,Jo(n),_e(n,o,Qo,ti,Yo,e.context),qo=void 0}}var ni,ri={create:ei,update:ei};function oi(t,e){if(!r(t.data.domProps)||!r(e.data.domProps)){var n,i,a=e.elm,c=t.data.domProps||{},s=e.data.domProps||{};for(n in o(s.__ob__)&&(s=e.data.domProps=T({},s)),c)n in s||(a[n]="");for(n in s){if(i=s[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),i===c[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=i;var u=r(i)?"":String(i);ii(a,u)&&(a.value=u)}else if("innerHTML"===n&&oo(a.tagName)&&r(a.innerHTML)){ni=ni||document.createElement("div"),ni.innerHTML="<svg>"+i+"</svg>";var f=ni.firstChild;while(a.firstChild)a.removeChild(a.firstChild);while(f.firstChild)a.appendChild(f.firstChild)}else if(i!==c[n])try{a[n]=i}catch(Oa){}}}}function ii(t,e){return!t.composing&&("OPTION"===t.tagName||ai(t,e)||ci(t,e))}function ai(t,e){var n=!0;try{n=document.activeElement!==t}catch(Oa){}return n&&t.value!==e}function ci(t,e){var n=t.value,r=t._vModifiers;if(o(r)){if(r.number)return h(n)!==h(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}var si={create:oi,update:oi},ui=w((function(t){var e={},n=/;(?![^(]*\))/g,r=/:(.+)/;return t.split(n).forEach((function(t){if(t){var n=t.split(r);n.length>1&&(e[n[0].trim()]=n[1].trim())}})),e}));function fi(t){var e=li(t.style);return t.staticStyle?T(t.staticStyle,e):e}function li(t){return Array.isArray(t)?P(t):"string"===typeof t?ui(t):t}function pi(t,e){var n,r={};if(e){var o=t;while(o.componentInstance)o=o.componentInstance._vnode,o&&o.data&&(n=fi(o.data))&&T(r,n)}(n=fi(t.data))&&T(r,n);var i=t;while(i=i.parent)i.data&&(n=fi(i.data))&&T(r,n);return r}var di,vi=/^--/,hi=/\s*!important$/,yi=function(t,e,n){if(vi.test(e))t.style.setProperty(e,n);else if(hi.test(n))t.style.setProperty(A(e),n.replace(hi,""),"important");else{var r=gi(e);if(Array.isArray(n))for(var o=0,i=n.length;o<i;o++)t.style[r]=n[o];else t.style[r]=n}},mi=["Webkit","Moz","ms"],gi=w((function(t){if(di=di||document.createElement("div").style,t=O(t),"filter"!==t&&t in di)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<mi.length;n++){var r=mi[n]+e;if(r in di)return r}}));function bi(t,e){var n=e.data,i=t.data;if(!(r(n.staticStyle)&&r(n.style)&&r(i.staticStyle)&&r(i.style))){var a,c,s=e.elm,u=i.staticStyle,f=i.normalizedStyle||i.style||{},l=u||f,p=li(e.data.style)||{};e.data.normalizedStyle=o(p.__ob__)?T({},p):p;var d=pi(e,!0);for(c in l)r(d[c])&&yi(s,c,"");for(c in d)a=d[c],a!==l[c]&&yi(s,c,null==a?"":a)}}var _i={create:bi,update:bi},wi=/\s+/;function xi(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(wi).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function Oi(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(wi).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";while(n.indexOf(r)>=0)n=n.replace(r," ");n=n.trim(),n?t.setAttribute("class",n):t.removeAttribute("class")}}function Si(t){if(t){if("object"===typeof t){var e={};return!1!==t.css&&T(e,ji(t.name||"v")),T(e,t),e}return"string"===typeof t?ji(t):void 0}}var ji=w((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Ai=J&&!et,Ci="transition",Ei="animation",$i="transition",ki="transitionend",Ti="animation",Pi="animationend";Ai&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&($i="WebkitTransition",ki="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Ti="WebkitAnimation",Pi="webkitAnimationEnd"));var Ii=J?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Mi(t){Ii((function(){Ii(t)}))}function Li(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),xi(t,e))}function Ni(t,e){t._transitionClasses&&g(t._transitionClasses,e),Oi(t,e)}function Ri(t,e,n){var r=Fi(t,e),o=r.type,i=r.timeout,a=r.propCount;if(!o)return n();var c=o===Ci?ki:Pi,s=0,u=function(){t.removeEventListener(c,f),n()},f=function(e){e.target===t&&++s>=a&&u()};setTimeout((function(){s<a&&u()}),i+1),t.addEventListener(c,f)}var Di=/\b(transform|all)(,|$)/;function Fi(t,e){var n,r=window.getComputedStyle(t),o=(r[$i+"Delay"]||"").split(", "),i=(r[$i+"Duration"]||"").split(", "),a=Ui(o,i),c=(r[Ti+"Delay"]||"").split(", "),s=(r[Ti+"Duration"]||"").split(", "),u=Ui(c,s),f=0,l=0;e===Ci?a>0&&(n=Ci,f=a,l=i.length):e===Ei?u>0&&(n=Ei,f=u,l=s.length):(f=Math.max(a,u),n=f>0?a>u?Ci:Ei:null,l=n?n===Ci?i.length:s.length:0);var p=n===Ci&&Di.test(r[$i+"Property"]);return{type:n,timeout:f,propCount:l,hasTransform:p}}function Ui(t,e){while(t.length<e.length)t=t.concat(t);return Math.max.apply(null,e.map((function(e,n){return Bi(e)+Bi(t[n])})))}function Bi(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function Vi(t,e){var n=t.elm;o(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var i=Si(t.data.transition);if(!r(i)&&!o(n._enterCb)&&1===n.nodeType){var a=i.css,c=i.type,u=i.enterClass,f=i.enterToClass,l=i.enterActiveClass,p=i.appearClass,d=i.appearToClass,v=i.appearActiveClass,y=i.beforeEnter,m=i.enter,g=i.afterEnter,b=i.enterCancelled,_=i.beforeAppear,w=i.appear,x=i.afterAppear,O=i.appearCancelled,S=i.duration,j=kn,A=kn.$vnode;while(A&&A.parent)j=A.context,A=A.parent;var C=!j._isMounted||!t.isRootInsert;if(!C||w||""===w){var E=C&&p?p:u,$=C&&v?v:l,k=C&&d?d:f,T=C&&_||y,P=C&&"function"===typeof w?w:m,I=C&&x||g,M=C&&O||b,L=h(s(S)?S.enter:S);0;var N=!1!==a&&!et,R=Gi(P),F=n._enterCb=D((function(){N&&(Ni(n,k),Ni(n,$)),F.cancelled?(N&&Ni(n,E),M&&M(n)):I&&I(n),n._enterCb=null}));t.data.show||we(t,"insert",(function(){var e=n.parentNode,r=e&&e._pending&&e._pending[t.key];r&&r.tag===t.tag&&r.elm._leaveCb&&r.elm._leaveCb(),P&&P(n,F)})),T&&T(n),N&&(Li(n,E),Li(n,$),Mi((function(){Ni(n,E),F.cancelled||(Li(n,k),R||(Hi(L)?setTimeout(F,L):Ri(n,c,F)))}))),t.data.show&&(e&&e(),P&&P(n,F)),N||R||F()}}}function zi(t,e){var n=t.elm;o(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var i=Si(t.data.transition);if(r(i)||1!==n.nodeType)return e();if(!o(n._leaveCb)){var a=i.css,c=i.type,u=i.leaveClass,f=i.leaveToClass,l=i.leaveActiveClass,p=i.beforeLeave,d=i.leave,v=i.afterLeave,y=i.leaveCancelled,m=i.delayLeave,g=i.duration,b=!1!==a&&!et,_=Gi(d),w=h(s(g)?g.leave:g);0;var x=n._leaveCb=D((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),b&&(Ni(n,f),Ni(n,l)),x.cancelled?(b&&Ni(n,u),y&&y(n)):(e(),v&&v(n)),n._leaveCb=null}));m?m(O):O()}function O(){x.cancelled||(!t.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),p&&p(n),b&&(Li(n,u),Li(n,l),Mi((function(){Ni(n,u),x.cancelled||(Li(n,f),_||(Hi(w)?setTimeout(x,w):Ri(n,c,x)))}))),d&&d(n,x),b||_||x())}}function Hi(t){return"number"===typeof t&&!isNaN(t)}function Gi(t){if(r(t))return!1;var e=t.fns;return o(e)?Gi(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function qi(t,e){!0!==e.data.show&&Vi(e)}var Wi=J?{create:qi,activate:qi,remove:function(t,e){!0!==t.data.show?zi(t,e):e()}}:{},Ki=[Ho,Wo,ri,si,_i,Wi],Xi=Ki.concat(Uo),Ji=Po({nodeOps:So,modules:Xi});et&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&oa(t,"input")}));var Yi={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?we(n,"postpatch",(function(){Yi.componentUpdated(t,e,n)})):Zi(t,e,n.context),t._vOptions=[].map.call(t.options,ea)):("textarea"===n.tag||uo(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",na),t.addEventListener("compositionend",ra),t.addEventListener("change",ra),et&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){Zi(t,e,n.context);var r=t._vOptions,o=t._vOptions=[].map.call(t.options,ea);if(o.some((function(t,e){return!N(t,r[e])}))){var i=t.multiple?e.value.some((function(t){return ta(t,o)})):e.value!==e.oldValue&&ta(e.value,o);i&&oa(t,"change")}}}};function Zi(t,e,n){Qi(t,e,n),(tt||nt)&&setTimeout((function(){Qi(t,e,n)}),0)}function Qi(t,e,n){var r=e.value,o=t.multiple;if(!o||Array.isArray(r)){for(var i,a,c=0,s=t.options.length;c<s;c++)if(a=t.options[c],o)i=R(r,ea(a))>-1,a.selected!==i&&(a.selected=i);else if(N(ea(a),r))return void(t.selectedIndex!==c&&(t.selectedIndex=c));o||(t.selectedIndex=-1)}}function ta(t,e){return e.every((function(e){return!N(e,t)}))}function ea(t){return"_value"in t?t._value:t.value}function na(t){t.target.composing=!0}function ra(t){t.target.composing&&(t.target.composing=!1,oa(t.target,"input"))}function oa(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function ia(t){return!t.componentInstance||t.data&&t.data.transition?t:ia(t.componentInstance._vnode)}var aa={bind:function(t,e,n){var r=e.value;n=ia(n);var o=n.data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&o?(n.data.show=!0,Vi(n,(function(){t.style.display=i}))):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value,o=e.oldValue;if(!r!==!o){n=ia(n);var i=n.data&&n.data.transition;i?(n.data.show=!0,r?Vi(n,(function(){t.style.display=t.__vOriginalDisplay})):zi(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none"}},unbind:function(t,e,n,r,o){o||(t.style.display=t.__vOriginalDisplay)}},ca={model:Yi,show:aa},sa={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function ua(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?ua(On(e.children)):t}function fa(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var o=n._parentListeners;for(var i in o)e[O(i)]=o[i];return e}function la(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}function pa(t){while(t=t.parent)if(t.data.transition)return!0}function da(t,e){return e.key===t.key&&e.tag===t.tag}var va=function(t){return t.tag||xn(t)},ha=function(t){return"show"===t.name},ya={name:"transition",props:sa,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(va),n.length)){0;var r=this.mode;0;var o=n[0];if(pa(this.$vnode))return o;var i=ua(o);if(!i)return o;if(this._leaving)return la(t,o);var a="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?a+"comment":a+i.tag:c(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var s=(i.data||(i.data={})).transition=fa(this),u=this._vnode,f=ua(u);if(i.data.directives&&i.data.directives.some(ha)&&(i.data.show=!0),f&&f.data&&!da(i,f)&&!xn(f)&&(!f.componentInstance||!f.componentInstance._vnode.isComment)){var l=f.data.transition=T({},s);if("out-in"===r)return this._leaving=!0,we(l,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),la(t,o);if("in-out"===r){if(xn(i))return u;var p,d=function(){p()};we(s,"afterEnter",d),we(s,"enterCancelled",d),we(l,"delayLeave",(function(t){p=t}))}}return o}}},ma=T({tag:String,moveClass:String},sa);delete ma.mode;var ga={props:ma,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var o=Tn(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,o(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],a=fa(this),c=0;c<o.length;c++){var s=o[c];if(s.tag)if(null!=s.key&&0!==String(s.key).indexOf("__vlist"))i.push(s),n[s.key]=s,(s.data||(s.data={})).transition=a;else;}if(r){for(var u=[],f=[],l=0;l<r.length;l++){var p=r[l];p.data.transition=a,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?u.push(p):f.push(p)}this.kept=t(e,null,u),this.removed=f}return t(e,null,i)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(ba),t.forEach(_a),t.forEach(wa),this._reflow=document.body.offsetHeight,t.forEach((function(t){if(t.data.moved){var n=t.elm,r=n.style;Li(n,e),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(ki,n._moveCb=function t(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(ki,t),n._moveCb=null,Ni(n,e))})}})))},methods:{hasMove:function(t,e){if(!Ai)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach((function(t){Oi(n,t)})),xi(n,e),n.style.display="none",this.$el.appendChild(n);var r=Fi(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}};function ba(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function _a(t){t.data.newPos=t.elm.getBoundingClientRect()}function wa(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,o=e.top-n.top;if(r||o){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+r+"px,"+o+"px)",i.transitionDuration="0s"}}var xa={Transition:ya,TransitionGroup:ga};Or.config.mustUseProp=Ur,Or.config.isReservedTag=io,Or.config.isReservedAttr=Dr,Or.config.getTagNamespace=ao,Or.config.isUnknownElement=so,T(Or.options.directives,ca),T(Or.options.components,xa),Or.prototype.__patch__=J?Ji:I,Or.prototype.$mount=function(t,e){return t=t&&J?fo(t):void 0,Mn(this,t,e)},J&&setTimeout((function(){V.devtools&&ut&&ut.emit("init",Or)}),0),e["a"]=Or}).call(this,n("c8ba"))},"2cf4":function(t,e,n){var r,o,i,a=n("da84"),c=n("d039"),s=n("c6b6"),u=n("0366"),f=n("1be4"),l=n("cc12"),p=n("1cdc"),d=a.location,v=a.setImmediate,h=a.clearImmediate,y=a.process,m=a.MessageChannel,g=a.Dispatch,b=0,_={},w="onreadystatechange",x=function(t){if(_.hasOwnProperty(t)){var e=_[t];delete _[t],e()}},O=function(t){return function(){x(t)}},S=function(t){x(t.data)},j=function(t){a.postMessage(t+"",d.protocol+"//"+d.host)};v&&h||(v=function(t){var e=[],n=1;while(arguments.length>n)e.push(arguments[n++]);return _[++b]=function(){("function"==typeof t?t:Function(t)).apply(void 0,e)},r(b),b},h=function(t){delete _[t]},"process"==s(y)?r=function(t){y.nextTick(O(t))}:g&&g.now?r=function(t){g.now(O(t))}:m&&!p?(o=new m,i=o.port2,o.port1.onmessage=S,r=u(i.postMessage,i,1)):!a.addEventListener||"function"!=typeof postMessage||a.importScripts||c(j)?r=w in l("script")?function(t){f.appendChild(l("script"))[w]=function(){f.removeChild(this),x(t)}}:function(t){setTimeout(O(t),0)}:(r=j,a.addEventListener("message",S,!1))),t.exports={set:v,clear:h}},"2d00":function(t,e,n){var r,o,i=n("da84"),a=n("342f"),c=i.process,s=c&&c.versions,u=s&&s.v8;u?(r=u.split("."),o=r[0]+r[1]):a&&(r=a.match(/Edge\/(\d+)/),(!r||r[1]>=74)&&(r=a.match(/Chrome\/(\d+)/),r&&(o=r[1]))),t.exports=o&&+o},"2d83":function(t,e,n){"use strict";var r=n("387f");t.exports=function(t,e,n,o,i){var a=new Error(t);return r(a,e,n,o,i)}},"2e67":function(t,e,n){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},"2f62":function(t,e,n){"use strict";(function(t){
8
  /**
9
+ * vuex v3.1.2
10
  * (c) 2019 Evan You
11
  * @license MIT
12
  */