Hummingbird Page Speed Optimization - Version 1.8.1

Version Description

( 2018-04-11 ) = - New: Option to auto clear cache on plugin/theme update - New: Option to hide all notices - New: Option to show clear cache button on the admin bar - Enhance: Various performance improvements and tweaks - Enhance: Removed duplicate queries - Enhance: Optimize database writes/reads - Enhance: Keep compression settings when switching from advanced to basic view in asset optimization - Enhance: Javascript code optimization - Enhance: Improve WP_CACHE detection to avoid PHP warnings on some configurations - Enhance: Increased expiry time for files in asset optimization module - Fix: Remove RSS feeds from page caching - Fix: Empty exclusion rules in page cache settings were halting all page caching - Fix: Publish changes button not working after bulk updates - Fix: Page caching exclusion rules will now only escape the dot in the file extension (if present) - Fix: Product page type not showing in page caching settings

Download this release

Release Info

Developer vanyukov
Plugin Icon 128x128 Hummingbird Page Speed Optimization
Version 1.8.1
Comparing to
See all releases

Code changes from version 1.8.0.4 to 1.8.1

_src/js/admin-advanced.js CHANGED
@@ -3,34 +3,43 @@ import Fetcher from './utils/fetcher';
3
  ( function( $ ) {
4
  'use strict';
5
  WPHB_Admin.advanced = {
6
-
7
  module: 'advanced',
8
 
9
  init: function () {
10
- let self = this,
11
- common_footer = $('section[class^="box-advanced-"] .box-footer');
 
12
 
13
  /**
14
  * Process form submit for advanced tools forms
15
  */
16
- common_footer.on('click', '.button[type="submit"]', function (e) {
17
  e.preventDefault();
 
 
18
 
19
- const spinner = $(this).parent().find('.spinner');
20
- const settings_form = $(this).closest('section').find('form[id^="advanced-"]');
 
 
 
 
 
21
 
22
- spinner.addClass('visible');
23
 
24
- Fetcher.advanced.saveSettings( settings_form.serialize(), settings_form.attr('id') )
25
  .then( ( response ) => {
26
- spinner.removeClass('visible');
27
 
28
  if ( 'undefined' !== typeof response && response.success ) {
29
- self.showNotice( 'success' );
30
  // Schedule cleanup.
31
- Fetcher.advanced.scheduleCleanup();
 
 
 
32
  } else {
33
- self.showNotice( 'error', wphb.strings.errorSettingsUpdate );
34
  }
35
  });
36
  });
@@ -45,30 +54,6 @@ import Fetcher from './utils/fetcher';
45
  return this;
46
  },
47
 
48
- /**
49
- * Notice on settings update.
50
- *
51
- * @param type
52
- * @param message
53
- */
54
- showNotice: function ( type, message = wphb.strings.successUpdate ) {
55
- const notice = $('#wphb-notice-advanced-tools');
56
-
57
- // Remove set classes if doing multiple calls per page load.
58
- notice.removeClass('wphb-notice-error');
59
- notice.removeClass('wphb-notice-success');
60
-
61
- window.scrollTo( 0, 0 );
62
- notice.addClass('wphb-notice-' + type);
63
-
64
- notice.find('p').html(message);
65
-
66
- notice.slideDown();
67
- setTimeout( function() {
68
- notice.slideUp();
69
- }, 5000 );
70
- },
71
-
72
  /**
73
  * Show the modal window asking if a user is sure he wants to delete the db records.
74
  *
@@ -80,9 +65,11 @@ import Fetcher from './utils/fetcher';
80
  const modal = $('.wphb-database-cleanup-modal');
81
 
82
  modal.find( 'p' ).html( dialog );
83
- modal.find( '.button-grey' ).attr( 'data-type', type );
84
 
85
- window.WDP.showOverlay("#wphb-database-cleanup-modal", { class: 'wphb-modal small wphb-database-cleanup-modal no-close' } );
 
 
86
  },
87
 
88
  /**
@@ -91,37 +78,42 @@ import Fetcher from './utils/fetcher';
91
  * @param type Data type to delete from db (See data-type element for each row in the code).
92
  */
93
  confirmDelete: function ( type ) {
94
- window.WDP.closeOverlay("#wphb-database-cleanup-modal");
 
 
95
 
96
  let row;
 
97
 
98
  if ( 'all' === type ) {
99
- row = $('.box-advanced-db .table-footer');
100
  } else {
101
  row = $('.box-advanced-db .wphb-border-frame').find('div[data-type=' + type + ']');
102
  }
103
 
104
- const spinner = row.find('.spinner');
105
 
106
- spinner.addClass('visible');
107
 
108
  Fetcher.advanced.deleteSelectedData( type )
109
  .then( ( response ) => {
110
- this.showNotice( 'success', response.message );
111
- spinner.removeClass('visible');
112
 
113
  for ( let prop in response.left ) {
114
  if ( 'total' === prop ) {
115
- $('.box-advanced-db .table-footer .wphb-db-delete-all')
116
- .html( wphb.strings.deleteAll + ' (' + response.left[prop] + ')' );
 
117
  } else {
118
- $('.box-advanced-db div[data-type=' + prop + '] > .wphb-db-items')
119
- .html( response.left[prop] );
 
120
  }
121
  }
122
  })
123
  .catch( ( error ) => {
124
- this.showNotice( 'error', error );
125
  spinner.removeClass('visible');
126
  });
127
  }
3
  ( function( $ ) {
4
  'use strict';
5
  WPHB_Admin.advanced = {
 
6
  module: 'advanced',
7
 
8
  init: function () {
9
+ let self = this,
10
+ common_form = $('form[id="advanced-db-settings"], form[id="advanced-general-settings"]'),
11
+ delete_entries = $('#wphb-db-delete-all, #wphb-db-row-delete');
12
 
13
  /**
14
  * Process form submit for advanced tools forms
15
  */
16
+ delete_entries.on('click', function (e) {
17
  e.preventDefault();
18
+ self.showModal( $(this).attr('data-entries'), $(this).attr('data-type') );
19
+ });
20
 
21
+ /**
22
+ * Process form submit for advanced tools forms
23
+ */
24
+ common_form.on('submit', function(e) {
25
+ e.preventDefault();
26
+
27
+ const spinner = $(this).parent().find('.sui-icon-loader');
28
 
29
+ spinner.removeClass('sui-hidden');
30
 
31
+ Fetcher.advanced.saveSettings( $(this).serialize(), $(this).attr('id') )
32
  .then( ( response ) => {
33
+ spinner.addClass('sui-hidden');
34
 
35
  if ( 'undefined' !== typeof response && response.success ) {
 
36
  // Schedule cleanup.
37
+ if ( 'advanced-db-settings' === $(this).attr('id') ) {
38
+ Fetcher.advanced.scheduleCleanup();
39
+ }
40
+ WPHB_Admin.notices.show( 'wphb-notice-advanced-tools', true, 'success' );
41
  } else {
42
+ WPHB_Admin.notices.show( 'wphb-notice-advanced-tools', true, 'error', wphb.strings.errorSettingsUpdate );
43
  }
44
  });
45
  });
54
  return this;
55
  },
56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  /**
58
  * Show the modal window asking if a user is sure he wants to delete the db records.
59
  *
65
  const modal = $('.wphb-database-cleanup-modal');
66
 
67
  modal.find( 'p' ).html( dialog );
68
+ modal.find( '.wphb-delete-db-row' ).attr( 'data-type', type );
69
 
70
+ let el = document.getElementById('wphb-database-cleanup-modal');
71
+ let dia = new A11yDialog(el);
72
+ dia.show();
73
  },
74
 
75
  /**
78
  * @param type Data type to delete from db (See data-type element for each row in the code).
79
  */
80
  confirmDelete: function ( type ) {
81
+ let el = document.getElementById('wphb-database-cleanup-modal');
82
+ let dialog = new A11yDialog(el);
83
+ dialog.hide();
84
 
85
  let row;
86
+ let footer = $('.box-advanced-db .sui-box-footer');
87
 
88
  if ( 'all' === type ) {
89
+ row = footer;
90
  } else {
91
  row = $('.box-advanced-db .wphb-border-frame').find('div[data-type=' + type + ']');
92
  }
93
 
94
+ const spinner = row.find('.sui-icon-loader');
95
 
96
+ spinner.removeClass('sui-hidden');
97
 
98
  Fetcher.advanced.deleteSelectedData( type )
99
  .then( ( response ) => {
100
+ WPHB_Admin.notices.show( 'wphb-notice-advanced-tools', true, 'success', response.message );
101
+ spinner.addClass('sui-hidden');
102
 
103
  for ( let prop in response.left ) {
104
  if ( 'total' === prop ) {
105
+ let leftString = wphb.strings.deleteAll + ' (' + response.left[prop] + ')';
106
+ footer.find('.wphb-db-delete-all').html( leftString );
107
+ footer.find('#wphb-db-delete-all').attr( 'data-entries', response.left[prop] );
108
  } else {
109
+ let itemRow = $('.box-advanced-db div[data-type=' + prop + ']');
110
+ itemRow.find('.wphb-db-items').html( response.left[prop] );
111
+ itemRow.find('#wphb-db-row-delete').attr( 'data-entries', response.left[prop] );
112
  }
113
  }
114
  })
115
  .catch( ( error ) => {
116
+ WPHB_Admin.notices.show( 'wphb-notice-advanced-tools', true, 'error', error );
117
  spinner.removeClass('visible');
118
  });
119
  }
_src/js/admin-caching.js CHANGED
@@ -28,7 +28,7 @@ import Fetcher from './utils/fetcher';
28
 
29
  cloudflareLink.on('click', function(e) {
30
  e.preventDefault();
31
- $('#wphb-server-type').val('cloudflare').trigger('wpmu:change');
32
  self.hideCurrentInstructions();
33
  self.setServer('cloudflare');
34
  self.showServerInstructions('cloudflare');
@@ -108,7 +108,7 @@ import Fetcher from './utils/fetcher';
108
  });
109
 
110
  let expiryInput = $("input[name='expiry-set-type']");
111
- let expirySettingsForm = $('.settings-form');
112
  expiryInput.each( function () {
113
  if ( this.checked ) {
114
  if ( 'expiry-all-types' === $(this).attr('id') ) {
@@ -140,11 +140,6 @@ import Fetcher from './utils/fetcher';
140
  self.reloadSnippets( expiry_times );
141
  });
142
 
143
- $( '.tab label' ).on( 'click', function() {
144
- $( this ).parent().parent().find( '.tab label.active' ).removeClass( 'active' );
145
- $( this ).addClass( 'active' );
146
- });
147
-
148
  cloudFlareDismissLink.click( function(e) {
149
  e.preventDefault();
150
  Fetcher.notice.dismissCloudflareDash();
@@ -168,12 +163,14 @@ import Fetcher from './utils/fetcher';
168
 
169
  /**
170
  * Parse rss cache settings.
 
 
171
  */
172
- $('.box-caching-rss .box-footer').on('click', '.button[type="submit"]', function (e) {
173
  e.preventDefault();
174
 
175
  const spinner = $(this).parent().find('.spinner');
176
- const settings_form = $('.box-caching-rss').closest('section').find('form[id="rss-caching-settings"]');
177
 
178
  // Make sure a positive value is always reflected for the rss expiry time input.
179
  let rss_expiry_time = settings_form.find('#rss-expiry-time');
@@ -186,14 +183,40 @@ import Fetcher from './utils/fetcher';
186
  spinner.removeClass('visible');
187
 
188
  if ( 'undefined' !== typeof response && response.success ) {
189
- self.showNotice( 'success' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
190
  } else {
191
- self.showNotice( 'error', wphb.strings.errorSettingsUpdate );
192
  }
193
  });
194
  });
195
 
196
- return this;
197
  },
198
 
199
  setServer: function( value ) {
@@ -201,9 +224,9 @@ import Fetcher from './utils/fetcher';
201
  },
202
 
203
  updateTabSize: function() {
204
- let jq = $( '#wphb-server-instructions-' + this.selectedServer.toLowerCase() ).find( '.tabs' ),
205
- current = jq.find('.tab > input:checked').parent(),
206
- content = current.find('.content');
207
  jq.height( content.outerHeight() + current.outerHeight() - 6 );
208
  },
209
 
@@ -219,7 +242,7 @@ import Fetcher from './utils/fetcher';
219
  let serverTab = this.$serverInstructions[ server ];
220
  serverTab.show();
221
  // Show tab.
222
- serverTab.find('.tab:first-child > label').trigger('click');
223
  }
224
 
225
  if ( 'apache' === server || 'LiteSpeed' === server ) {
@@ -267,32 +290,6 @@ import Fetcher from './utils/fetcher';
267
  };
268
  }
269
  return expiry_times;
270
- },
271
-
272
- /**
273
- * Notice on settings update.
274
- *
275
- * @param type
276
- * @param message
277
- */
278
- showNotice: function ( type, message = '' ) {
279
- const notice = $('#wphb-notice-rss-cache');
280
-
281
- // Remove set classes if doing multiple calls per page load.
282
- notice.removeClass('wphb-notice-error');
283
- notice.removeClass('wphb-notice-success');
284
-
285
- window.scrollTo( 0, 0 );
286
- notice.addClass('wphb-notice-' + type);
287
-
288
- if ( '' !== message ) {
289
- notice.find('p').html(message);
290
- }
291
-
292
- notice.slideDown();
293
- setTimeout( function() {
294
- notice.slideUp();
295
- }, 5000 );
296
- }
297
  };
298
  }( jQuery ));
28
 
29
  cloudflareLink.on('click', function(e) {
30
  e.preventDefault();
31
+ $('#wphb-server-type').val('cloudflare').trigger('sui:change');
32
  self.hideCurrentInstructions();
33
  self.setServer('cloudflare');
34
  self.showServerInstructions('cloudflare');
108
  });
109
 
110
  let expiryInput = $("input[name='expiry-set-type']");
111
+ let expirySettingsForm = $('.sui-box-settings-row');
112
  expiryInput.each( function () {
113
  if ( this.checked ) {
114
  if ( 'expiry-all-types' === $(this).attr('id') ) {
140
  self.reloadSnippets( expiry_times );
141
  });
142
 
 
 
 
 
 
143
  cloudFlareDismissLink.click( function(e) {
144
  e.preventDefault();
145
  Fetcher.notice.dismissCloudflareDash();
163
 
164
  /**
165
  * Parse rss cache settings.
166
+ *
167
+ * @since 1.8
168
  */
169
+ $('.box-caching-rss .sui-box-footer').on('click', '.sui-button[type="submit"]', function (e) {
170
  e.preventDefault();
171
 
172
  const spinner = $(this).parent().find('.spinner');
173
+ const settings_form = $('form[id="rss-caching-settings"]');
174
 
175
  // Make sure a positive value is always reflected for the rss expiry time input.
176
  let rss_expiry_time = settings_form.find('#rss-expiry-time');
183
  spinner.removeClass('visible');
184
 
185
  if ( 'undefined' !== typeof response && response.success ) {
186
+ WPHB_Admin.notices.show( 'wphb-notice-cache', true, 'success' );
187
+ } else {
188
+ WPHB_Admin.notices.show( 'wphb-notice-cache', true, 'error', wphb.strings.errorSettingsUpdate );
189
+ }
190
+ });
191
+ });
192
+
193
+ /**
194
+ * Parse page cache settings.
195
+ *
196
+ * TODO: this method and the method above are very similar, maybe refactor at some point?
197
+ * @since 1.8.1
198
+ */
199
+ $('.box-caching-other-settings').on('click', 'input[type="submit"]', function (e) {
200
+ e.preventDefault();
201
+
202
+ const spinner = $(this).parent().find('.spinner');
203
+ const settings_form = $('form[id="other-caching-settings"]');
204
+
205
+ spinner.addClass('visible');
206
+
207
+ Fetcher.caching.saveOtherSettings( settings_form.serialize() )
208
+ .then( ( response ) => {
209
+ spinner.removeClass('visible');
210
+
211
+ if ( 'undefined' !== typeof response && response.success ) {
212
+ WPHB_Admin.notices.show( 'wphb-notice-cache', true, 'success' );
213
  } else {
214
+ WPHB_Admin.notices.show( 'wphb-notice-cache', true, 'error', wphb.strings.errorSettingsUpdate );
215
  }
216
  });
217
  });
218
 
219
+ return this;
220
  },
221
 
222
  setServer: function( value ) {
224
  },
225
 
226
  updateTabSize: function() {
227
+ let jq = $( '#wphb-server-instructions-' + this.selectedServer.toLowerCase() ).find( '.sui-tabs' ),
228
+ current = jq.find('.sui-tab > input:checked').parent(),
229
+ content = current.find('.sui-tab-content');
230
  jq.height( content.outerHeight() + current.outerHeight() - 6 );
231
  },
232
 
242
  let serverTab = this.$serverInstructions[ server ];
243
  serverTab.show();
244
  // Show tab.
245
+ serverTab.find('.sui-tab:first-child > label').trigger('click');
246
  }
247
 
248
  if ( 'apache' === server || 'LiteSpeed' === server ) {
290
  };
291
  }
292
  return expiry_times;
293
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
294
  };
295
  }( jQuery ));
_src/js/admin-dashboard-cloudflare.js CHANGED
@@ -76,7 +76,7 @@ import Fetcher from './utils/fetcher';
76
  });
77
 
78
  this.$stepsContainer.find( 'select' ).each( function() {
79
- window.WDP.wpmuSelect( this );
80
  });
81
 
82
  if ( 'final' === this.currentStep ) {
76
  });
77
 
78
  this.$stepsContainer.find( 'select' ).each( function() {
79
+ suiSelect( this );
80
  });
81
 
82
  if ( 'final' === this.currentStep ) {
_src/js/admin-dashboard.js CHANGED
@@ -27,7 +27,7 @@ import Fetcher from './utils/fetcher';
27
  CDNcheckbox.prop( 'disabled', false );
28
  CDNtooltip.attr( 'tooltip', $('input[id="cdn_enabled_tooltip"]').val() );
29
  }
30
- self.showNotice();
31
  });
32
  });
33
 
@@ -35,7 +35,7 @@ import Fetcher from './utils/fetcher';
35
  const value = $(this).is(':checked');
36
  Fetcher.minification.toggleCDN( value )
37
  .then( () => {
38
- self.showNotice();
39
  });
40
  });
41
 
@@ -43,7 +43,7 @@ import Fetcher from './utils/fetcher';
43
  const value = $(this).is(':checked');
44
  Fetcher.caching.toggleSubsitePageCaching( value )
45
  .then( () => {
46
- self.showFixedNotice();
47
  });
48
  });
49
 
@@ -64,34 +64,15 @@ import Fetcher from './utils/fetcher';
64
  return this;
65
  },
66
 
67
- /**
68
- * Notice on settings update.
69
- */
70
- showNotice: function () {
71
- const notice = $('#wphb-notice-minification-settings-updated');
72
- notice.slideDown();
73
- setTimeout( function() {
74
- notice.slideUp();
75
- }, 5000 );
76
- },
77
-
78
- /**
79
- * Fixed notice on settings update.
80
- */
81
- showFixedNotice: function () {
82
- const notice = $('#wphb-notice-settings-updated');
83
- notice.slideDown();
84
- setTimeout( function() {
85
- notice.slideUp();
86
- }, 5000 );
87
- },
88
-
89
  /**
90
  * Run quick setup.
91
  */
92
  startQuickSetup: function () {
93
  // Show quick setup modal
94
- window.WDP.showOverlay( '#wphb-quick-setup-modal', { class: 'wphb-modal small wphb-quick-setup-modal no-close' } );
 
 
 
95
  },
96
 
97
  /**
@@ -109,7 +90,9 @@ import Fetcher from './utils/fetcher';
109
  */
110
  runPerformanceTest: function() {
111
  // Show performance test modal
112
- window.WDP.showOverlay("#run-performance-test-modal", { class: 'wphb-modal small wphb-progress-modal no-close' } );
 
 
113
 
114
  // Run performance test
115
  const module = window.WPHB_Admin.getModule('performance');
27
  CDNcheckbox.prop( 'disabled', false );
28
  CDNtooltip.attr( 'tooltip', $('input[id="cdn_enabled_tooltip"]').val() );
29
  }
30
+ WPHB_Admin.notices.show( 'wphb-notice-minification-settings-updated' );
31
  });
32
  });
33
 
35
  const value = $(this).is(':checked');
36
  Fetcher.minification.toggleCDN( value )
37
  .then( () => {
38
+ WPHB_Admin.notices.show( 'wphb-notice-minification-settings-updated' );
39
  });
40
  });
41
 
43
  const value = $(this).is(':checked');
44
  Fetcher.caching.toggleSubsitePageCaching( value )
45
  .then( () => {
46
+ WPHB_Admin.notices.show( 'wphb-notice-pc-settings-updated' );
47
  });
48
  });
49
 
64
  return this;
65
  },
66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
  /**
68
  * Run quick setup.
69
  */
70
  startQuickSetup: function () {
71
  // Show quick setup modal
72
+ let el = document.getElementById('wphb-quick-setup-modal');
73
+ let dialog = new A11yDialog(el);
74
+ dialog.show();
75
+
76
  },
77
 
78
  /**
90
  */
91
  runPerformanceTest: function() {
92
  // Show performance test modal
93
+ let el = document.getElementById('run-performance-test-modal');
94
+ let dialog = new A11yDialog(el);
95
+ dialog.show();
96
 
97
  // Run performance test
98
  const module = window.WPHB_Admin.getModule('performance');
_src/js/admin-gzip.js CHANGED
@@ -45,15 +45,6 @@ import Clipboard from './utils/clipboard';
45
  e.preventDefault();
46
  $('html, body').animate({ scrollTop: $('#troubleshooting-gzip-litespeed').offset().top }, 'slow');
47
  });
48
- $( '.tab label' ).on( 'click', function() {
49
- $( this ).parent().parent().find( '.tab label.active' ).removeClass( 'active' );
50
- $( this ).addClass( 'active' );
51
- });
52
- $( '.switch-manual' ).on( 'click', function() {
53
- let lowercaseServername = self.selectedServer.toLowerCase();
54
- $( '#wphb-server-instructions-' + lowercaseServername ).find( '.tab label.active' ).first().removeClass( 'active' );
55
- $( this ).parents().find( '#' + lowercaseServername + '-config-manual' ).prev().addClass( 'active' );
56
- });
57
  return this;
58
  },
59
 
@@ -75,9 +66,9 @@ import Clipboard from './utils/clipboard';
75
  }
76
  },
77
  updateTabSize: function() {
78
- let jq = $( '#wphb-server-instructions-' + this.selectedServer.toLowerCase() ).find( '.tabs' ),
79
- current = jq.find('.tab > input:checked').parent(),
80
- content = current.find('.content');
81
 
82
  jq.height( content.outerHeight() + current.outerHeight() - 6 );
83
  },
45
  e.preventDefault();
46
  $('html, body').animate({ scrollTop: $('#troubleshooting-gzip-litespeed').offset().top }, 'slow');
47
  });
 
 
 
 
 
 
 
 
 
48
  return this;
49
  },
50
 
66
  }
67
  },
68
  updateTabSize: function() {
69
+ let jq = $( '#wphb-server-instructions-' + this.selectedServer.toLowerCase() ).find( '.sui-tabs' ),
70
+ current = jq.find('.sui-tab > input:checked').parent(),
71
+ content = current.find('.sui-tab-content');
72
 
73
  jq.height( content.outerHeight() + current.outerHeight() - 6 );
74
  },
_src/js/admin-main.js CHANGED
@@ -20,7 +20,7 @@ import Fetcher from './utils/fetcher';
20
  };
21
  }
22
 
23
- /*
24
  $('body').on('change', '.mobile-nav', function () {
25
  let url = $(this).val();
26
  if (url.length > 0) {
@@ -30,7 +30,7 @@ import Fetcher from './utils/fetcher';
30
  */
31
 
32
  // Dismiss notice via an ajax call.
33
- let notice = document.querySelector('#wphb-dismissable > .close');
34
 
35
  if ( notice ) {
36
  notice.addEventListener('click', () => {
@@ -39,7 +39,7 @@ import Fetcher from './utils/fetcher';
39
  });
40
  }
41
 
42
- /*
43
  $('#wphb-dismissable').on('click', '.close', function() {
44
  const notice_id = $(this).parent().attr('data-id');
45
  Fetcher.notice.dismiss( notice_id );
@@ -99,7 +99,9 @@ import Fetcher from './utils/fetcher';
99
  WPHB_Admin.utils = {
100
  membershipModal: {
101
  open: function() {
102
- $( '#wphb-upgrade-membership-modal-link').trigger( 'click' );
 
 
103
  }
104
  },
105
 
@@ -114,17 +116,43 @@ import Fetcher from './utils/fetcher';
114
  }
115
  };
116
 
117
- /*WPHB_Admin.notices = {
118
- init: function() {
119
- $( '.wphb-notice:not(.notice) a.wphb-dismiss').click( function( e ) {
120
- e.preventDefault();
121
- let id = $(this).data( 'id' );
122
- let nonce = $(this).data( 'nonce' );
123
-
124
- $(this).parent( '.error' ).hide();
125
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
  }
127
- };*/
128
 
129
  window.WPHB_Admin = WPHB_Admin;
130
 
20
  };
21
  }
22
 
23
+ /* Above code replaces this with native js
24
  $('body').on('change', '.mobile-nav', function () {
25
  let url = $(this).val();
26
  if (url.length > 0) {
30
  */
31
 
32
  // Dismiss notice via an ajax call.
33
+ let notice = document.querySelector('#wphb-dismissable > .sui-notice-dismiss');
34
 
35
  if ( notice ) {
36
  notice.addEventListener('click', () => {
39
  });
40
  }
41
 
42
+ /* Above code replaces this with native js
43
  $('#wphb-dismissable').on('click', '.close', function() {
44
  const notice_id = $(this).parent().attr('data-id');
45
  Fetcher.notice.dismiss( notice_id );
99
  WPHB_Admin.utils = {
100
  membershipModal: {
101
  open: function() {
102
+ let el = document.getElementById('wphb-upgrade-membership-modal');
103
+ let dialog = new A11yDialog(el);
104
+ dialog.show();
105
  }
106
  },
107
 
116
  }
117
  };
118
 
119
+ /**
120
+ * Admin notices.
121
+ */
122
+ WPHB_Admin.notices = {
123
+ init: function() {},
124
+ /**
125
+ * Show notice.
126
+ *
127
+ * @since 1.8
128
+ *
129
+ * @param id ID of notice element.
130
+ * @param top Scroll to top.
131
+ * @param type Error or success.
132
+ * @param message Message to display.
133
+ */
134
+ show: function( id, top = false, type = '', message = wphb.strings.successUpdate ) {
135
+ const notice = $('#' + id);
136
+
137
+ if ( top ) {
138
+ window.scrollTo(0,0);
139
+ }
140
+
141
+ if ( '' !== type ) {
142
+ // Remove set classes if doing multiple calls per page load.
143
+ notice.removeClass('sui-notice-error');
144
+ notice.removeClass('sui-notice-success');
145
+ notice.addClass('sui-notice-' + type);
146
+ }
147
+
148
+ notice.find('p').html(message);
149
+
150
+ notice.slideDown();
151
+ setTimeout( function() {
152
+ notice.slideUp();
153
+ }, 5000 );
154
  }
155
+ };
156
 
157
  window.WPHB_Admin = WPHB_Admin;
158
 
_src/js/admin-minification.js CHANGED
@@ -37,7 +37,10 @@ import Scanner from './minification/Scanner';
37
  if ( this.$checkFilesButton.length ) {
38
  this.$checkFilesButton.click( function( e ) {
39
  e.preventDefault();
40
- window.WDP.showOverlay("#check-files-modal", { class: 'wphb-modal small wphb-progress-modal no-close' } );
 
 
 
41
  $(this).attr('disabled', true);
42
  self.updateProgressBar( self.scanner.getProgress() );
43
  self.scanner.scan();
@@ -71,16 +74,14 @@ import Scanner from './minification/Scanner';
71
 
72
  // Enable/disable bulk update button.
73
  $(':input.wphb-minification-file-selector, :input.wphb-minification-bulk-file-selector').on('change', function() {
74
- $(this).toggleClass('changed');
75
  let changed = $('.wphb-minification-files').find('input.changed');
76
  let bulkUpdateButton = $('#bulk-update');
77
 
78
  if ( changed.length === 0 ) {
79
- bulkUpdateButton.removeClass('button-grey');
80
  bulkUpdateButton.addClass('button-notice disabled');
81
  } else {
82
  bulkUpdateButton.removeClass('button-notice disabled');
83
- bulkUpdateButton.addClass('button-grey');
84
  }
85
  });
86
 
@@ -88,14 +89,19 @@ import Scanner from './minification/Scanner';
88
  let switchButtons = $('.box-title-basic > a.wphb-switch-button, #wphb-dismissable a.wphb-switch-button');
89
  switchButtons.on('click', function(e) {
90
  e.preventDefault();
91
- window.WDP.showOverlay("#wphb-advanced-minification-modal" );
92
- Fetcher.minification.toggleView( 'advanced' );
 
 
93
  });
94
 
95
  // Switch back to basic mode
96
  $('.box-title-advanced > a').on('click', function(e) {
97
  e.preventDefault();
98
- window.WDP.showOverlay("#wphb-basic-minification-modal" );
 
 
 
99
  });
100
 
101
  // Filter action button on Asset Optimization page
@@ -133,14 +139,14 @@ import Scanner from './minification/Scanner';
133
  // Update CDN status
134
  Fetcher.minification.toggleCDN( cdn_value )
135
  .then( () => {
136
- self.showNotice();
137
  });
138
  });
139
 
140
  $("input[type=checkbox][name=debug_log]").change( function() {
141
  Fetcher.minification.toggleLog( $(this).is(':checked') )
142
  .then( () => {
143
- self.showNotice();
144
  });
145
  });
146
 
@@ -157,9 +163,9 @@ import Scanner from './minification/Scanner';
157
  .then( ( response ) => {
158
  spinner.removeClass('visible');
159
  if ( 'undefined' !== typeof response && response.success ) {
160
- self.showNotice( 'success', response.message );
161
  } else {
162
- self.showNotice( 'error', response.message );
163
  }
164
 
165
  });
@@ -274,13 +280,13 @@ import Scanner from './minification/Scanner';
274
  progress = 100;
275
  }
276
  // Update progress bar
277
- $('.wphb-scan-progress .wphb-scan-progress-text span').text( progress + '%' );
278
- $('.wphb-scan-progress .wphb-scan-progress-bar span').width( progress + '%' );
279
  if ( progress >= 90 ) {
280
- $('.wphb-progress-state .wphb-progress-state-text').text('Finalizing...');
281
  }
282
  if ( cancel ) {
283
- $('.wphb-progress-state .wphb-progress-state-text').text('Cancelling...');
284
  }
285
  },
286
 
@@ -288,38 +294,14 @@ import Scanner from './minification/Scanner';
288
  * Switch from advanced to basic view.
289
  * Called from switch view modal.
290
  */
291
- switchView: function() {
292
  Fetcher.minification
293
- .toggleView( 'basic' )
294
  .then( () => {
295
  window.location.href = getLink( 'minification' );
296
  });
297
  },
298
 
299
- /**
300
- * Notice on settings update.
301
- *
302
- * @param type
303
- * @param message
304
- */
305
- showNotice: function ( type = 'success', message = wphb.strings.successUpdate ) {
306
- const notice = $('#wphb-notice-minification-advanced-settings-updated');
307
-
308
- // Remove set classes if doing multiple calls per page load.
309
- notice.removeClass('wphb-notice-error');
310
- notice.removeClass('wphb-notice-success');
311
-
312
- window.scrollTo( 0, 0 );
313
- notice.addClass('wphb-notice-' + type);
314
-
315
- notice.find('p').html(message);
316
-
317
- notice.slideDown();
318
- setTimeout( function() {
319
- notice.slideUp();
320
- }, 5000 );
321
- },
322
-
323
  }; // End WPHB_Admin.minification
324
 
325
  WPHB_Admin.minification.Row = Row;
37
  if ( this.$checkFilesButton.length ) {
38
  this.$checkFilesButton.click( function( e ) {
39
  e.preventDefault();
40
+ let el = document.getElementById('check-files-modal');
41
+ let dialog = new A11yDialog(el);
42
+ dialog.show();
43
+
44
  $(this).attr('disabled', true);
45
  self.updateProgressBar( self.scanner.getProgress() );
46
  self.scanner.scan();
74
 
75
  // Enable/disable bulk update button.
76
  $(':input.wphb-minification-file-selector, :input.wphb-minification-bulk-file-selector').on('change', function() {
77
+ $(this).toggleClass('changed');
78
  let changed = $('.wphb-minification-files').find('input.changed');
79
  let bulkUpdateButton = $('#bulk-update');
80
 
81
  if ( changed.length === 0 ) {
 
82
  bulkUpdateButton.addClass('button-notice disabled');
83
  } else {
84
  bulkUpdateButton.removeClass('button-notice disabled');
 
85
  }
86
  });
87
 
89
  let switchButtons = $('.box-title-basic > a.wphb-switch-button, #wphb-dismissable a.wphb-switch-button');
90
  switchButtons.on('click', function(e) {
91
  e.preventDefault();
92
+
93
+ let el = document.getElementById('wphb-advanced-minification-modal');
94
+ let dialog = new A11yDialog(el);
95
+ dialog.show();
96
  });
97
 
98
  // Switch back to basic mode
99
  $('.box-title-advanced > a').on('click', function(e) {
100
  e.preventDefault();
101
+
102
+ let el = document.getElementById('wphb-basic-minification-modal');
103
+ let dialog = new A11yDialog(el);
104
+ dialog.show();
105
  });
106
 
107
  // Filter action button on Asset Optimization page
139
  // Update CDN status
140
  Fetcher.minification.toggleCDN( cdn_value )
141
  .then( () => {
142
+ WPHB_Admin.notices.show( 'wphb-notice-minification-advanced-settings-updated', true);
143
  });
144
  });
145
 
146
  $("input[type=checkbox][name=debug_log]").change( function() {
147
  Fetcher.minification.toggleLog( $(this).is(':checked') )
148
  .then( () => {
149
+ WPHB_Admin.notices.show( 'wphb-notice-minification-advanced-settings-updated', true);
150
  });
151
  });
152
 
163
  .then( ( response ) => {
164
  spinner.removeClass('visible');
165
  if ( 'undefined' !== typeof response && response.success ) {
166
+ WPHB_Admin.notices.show( 'wphb-notice-minification-advanced-settings-updated', true, 'success', response.message );
167
  } else {
168
+ WPHB_Admin.notices.show( 'wphb-notice-minification-advanced-settings-updated', true, 'error', response.message );
169
  }
170
 
171
  });
280
  progress = 100;
281
  }
282
  // Update progress bar
283
+ $('.sui-progress-block .sui-progress-text span').text( progress + '%' );
284
+ $('.sui-progress-block .sui-progress-bar span').width( progress + '%' );
285
  if ( progress >= 90 ) {
286
+ $('.sui-progress-state .sui-progress-state-text').text('Finalizing...');
287
  }
288
  if ( cancel ) {
289
+ $('.sui-progress-state .sui-progress-state-text').text('Cancelling...');
290
  }
291
  },
292
 
294
  * Switch from advanced to basic view.
295
  * Called from switch view modal.
296
  */
297
+ switchView: function( mode ) {
298
  Fetcher.minification
299
+ .toggleView( mode )
300
  .then( () => {
301
  window.location.href = getLink( 'minification' );
302
  });
303
  },
304
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  }; // End WPHB_Admin.minification
306
 
307
  WPHB_Admin.minification.Row = Row;
_src/js/admin-performance.js CHANGED
@@ -39,7 +39,9 @@ import Fetcher from './utils/fetcher';
39
  if (this.$runTestButton.length) {
40
  this.$runTestButton.click(function (e) {
41
  e.preventDefault();
42
- window.WDP.showOverlay("#run-performance-test-modal", { class: 'wphb-modal small wphb-progress-modal no-close' } );
 
 
43
  $(this).attr('disabled', true);
44
  self.performanceTest(self.strings.finishedTestURLsLink);
45
  });
@@ -124,7 +126,7 @@ import Fetcher from './utils/fetcher';
124
  Fetcher.performance.saveReportsSettings( form_data )
125
  .then( () => {
126
  that.find('.button').removeAttr('disabled');
127
- self.showUpdateMessage();
128
  });
129
  return false;
130
  });
@@ -135,7 +137,7 @@ import Fetcher from './utils/fetcher';
135
 
136
  Fetcher.performance.savePerformanceTestSettings( form_data )
137
  .then( () => {
138
- self.showUpdateMessage();
139
  });
140
  return false;
141
  });
@@ -143,15 +145,6 @@ import Fetcher from './utils/fetcher';
143
  return this;
144
  },
145
 
146
- showUpdateMessage: function () {
147
- const notice = $('#wphb-notice-performance-report-settings-updated');
148
- window.scrollTo(0,0);
149
- notice.slideDown();
150
- setTimeout( function() {
151
- notice.slideUp();
152
- }, 5000 );
153
- },
154
-
155
  performanceTest: function ( redirect ) {
156
  const self = this;
157
 
@@ -184,8 +177,8 @@ import Fetcher from './utils/fetcher';
184
  if ( this.progress > 100 ) {
185
  this.progress = 90;
186
  }
187
- $('.wphb-scan-progress .wphb-scan-progress-text span').text( this.progress + '%' );
188
- $('.wphb-scan-progress .wphb-scan-progress-bar span').attr( 'style', 'width:' + this.progress + '%' );
189
  }
190
  };
191
  }( jQuery ));
39
  if (this.$runTestButton.length) {
40
  this.$runTestButton.click(function (e) {
41
  e.preventDefault();
42
+ let el = document.getElementById('run-performance-test-modal');
43
+ let dialog = new A11yDialog(el);
44
+ dialog.show();
45
  $(this).attr('disabled', true);
46
  self.performanceTest(self.strings.finishedTestURLsLink);
47
  });
126
  Fetcher.performance.saveReportsSettings( form_data )
127
  .then( () => {
128
  that.find('.button').removeAttr('disabled');
129
+ WPHB_Admin.notices.show('wphb-notice-performance-report-settings-updated', true);
130
  });
131
  return false;
132
  });
137
 
138
  Fetcher.performance.savePerformanceTestSettings( form_data )
139
  .then( () => {
140
+ WPHB_Admin.notices.show('wphb-notice-performance-report-settings-updated', true);
141
  });
142
  return false;
143
  });
145
  return this;
146
  },
147
 
 
 
 
 
 
 
 
 
 
148
  performanceTest: function ( redirect ) {
149
  const self = this;
150
 
177
  if ( this.progress > 100 ) {
178
  this.progress = 90;
179
  }
180
+ $('.sui-progress-block .sui-progress-text span').text( this.progress + '%' );
181
+ $('.sui-progress-block .sui-progress-bar span').attr( 'style', 'width:' + this.progress + '%' );
182
  }
183
  };
184
  }( jQuery ));
_src/js/index.js CHANGED
@@ -8,4 +8,4 @@ require('./admin-dashboard-cloudflare.js');
8
  require('./admin-uptime.js');
9
  require('./admin-cloudflare.js');
10
  require('./admin-advanced.js');
11
- require('./admin-app.js');
8
  require('./admin-uptime.js');
9
  require('./admin-cloudflare.js');
10
  require('./admin-advanced.js');
11
+ require('./admin-app.js');
_src/js/shared-ui.js ADDED
@@ -0,0 +1 @@
 
1
+ import '@wpmudev/shared-ui';
_src/js/utils/fetcher.js CHANGED
@@ -100,6 +100,19 @@ function Fetcher() {
100
  return request( action, { value }, 'POST' );
101
  },
102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
103
  },
104
 
105
  /**
100
  return request( action, { value }, 'POST' );
101
  },
102
 
103
+ /**
104
+ * Save settings in cache module.
105
+ *
106
+ * @since 1.8.1
107
+ * @param data
108
+ */
109
+ saveOtherSettings: ( data ) => {
110
+ const action = actionPrefix + 'caching_save_other_settings';
111
+ return request( action, { data }, 'POST' )
112
+ .then( ( response ) => {
113
+ return response;
114
+ });
115
+ }
116
  },
117
 
118
  /**
_src/scss/app.scss CHANGED
@@ -32,6 +32,11 @@
32
  /* ****************************************************************************
33
  * 1. EXTEND/OVERRIDE WPMUDEV DASHBOARD/WP STYLES
34
  */
 
 
 
 
 
35
  .wpmud .wrap-wp-hummingbird .mline {
36
  margin-bottom: 30px;
37
  }
@@ -54,67 +59,6 @@
54
  border-bottom: 1px solid #E6E6E6;
55
  padding-bottom: 30px;
56
  }
57
-
58
- .wpmud #header {
59
- position: relative;
60
- margin-bottom: 0;
61
- }
62
-
63
- .wpmud #header .actions.status {
64
- left: 200px;
65
- margin-top: 1px;
66
- }
67
-
68
- .wpmud #header .actions.status [tooltip]:after {
69
- margin-left: 27px;
70
- bottom: -60%;
71
- }
72
-
73
- .wpmud #header .actions.status [tooltip]:before {
74
- bottom: 25%;
75
- left: 100%;
76
- border-right-color: #0B2F3F;
77
- border-top: 5px solid transparent;
78
- }
79
-
80
- .wpmud #header .actions {
81
- position: absolute;
82
- display: flex;
83
- align-items: center;
84
- top: 5px;
85
- right: 0;
86
- }
87
-
88
- .wpmud #header .actions > * {
89
- display: inline-block;
90
- margin-left: 10px;
91
- }
92
-
93
- .wpmud #header .actions.label-and-button > *:first-child {
94
- margin-left: 0;
95
- }
96
-
97
- .wpmud #header .actions.label-and-button .actions-label {
98
- color: #888888;
99
- font-size: 13px;
100
- line-height: 18px;
101
- margin: 0;
102
- text-align: right;
103
- }
104
-
105
- .wpmud #header .actions .header-label {
106
- font-size: 12px;
107
- color: #AAAAAA;
108
- }
109
-
110
- .wpmud #header ~ .sub-header {
111
- margin-top: -15px;
112
- margin-bottom: 30px;
113
- }
114
-
115
-
116
-
117
-
118
  .wpmud .list-table > tbody > tr:last-child > td {
119
  border-bottom: 1px solid #eee;
120
  }
@@ -329,6 +273,7 @@
329
  display: inline-block;
330
  font-size: 13px;
331
  color: #888888;
 
332
  }
333
 
334
  .wpmud .wrap-wp-hummingbird .wphb-label-disabled {
@@ -346,17 +291,6 @@
346
  /* ****************************************************************************
347
  * 2. COMMON/GENERAL STYLES
348
  */
349
- .wpmud .footer-love {
350
- text-align: center;
351
- margin-top: 50px;
352
- color: #C0C0C0;
353
- font-size: 13px;
354
- }
355
-
356
- .wpmud .footer-love > .dashicons-heart {
357
- font-size: 14px;
358
- line-height: 22px;
359
- }
360
 
361
  /* Tables */
362
  .wpmud .wphb-table-wrapper.complex {
@@ -580,9 +514,6 @@
580
  .wphb-block-test {
581
  background-color: #F9F9F9;
582
  border-radius: 5px;
583
- max-width: 700px;
584
- width: 100%;
585
- height: 60px;
586
  padding: 15px 30px;
587
  }
588
 
@@ -610,6 +541,14 @@
610
  .wphb-block-test-standalone .wphb-progress {
611
  margin: 0 auto;
612
  }
 
 
 
 
 
 
 
 
613
 
614
  /* Filename Extensions Icons */
615
  .wphb-filename-extension {
@@ -627,6 +566,15 @@
627
  width: 30px;
628
  }
629
 
 
 
 
 
 
 
 
 
 
630
  .wphb-filename-extension-html {
631
  background-color: #F56418;
632
  }
@@ -988,21 +936,7 @@
988
  /* TABLET */
989
  @media screen and (max-width: 783px) {
990
  /* Generic */
991
- .wpmud #header .actions {
992
- position: relative;
993
- display: flex;
994
- align-items: center;
995
- top: 0;
996
- margin: 10px 0 10px;
997
- float: none;
998
- padding-bottom: 0;
999
- }
1000
- .wpmud #header .actions .button:first-child {
1001
- margin-left: 0;
1002
- }
1003
- .wpmud #header .actions [tooltip].tooltip-bottom:after {
1004
- margin-left: -54px;
1005
- }
1006
 
1007
 
1008
 
@@ -1034,11 +968,6 @@
1034
  .wpmud .dev-box .box-title .toggle-group {
1035
  margin-top: 0;
1036
  }
1037
-
1038
-
1039
- .wpmud #header .after-header-actions .button {
1040
- margin-top: -15px;
1041
- }
1042
  }
1043
 
1044
  /* LARGE MOBILE */
@@ -1083,4 +1012,4 @@
1083
  .wpmud .with-bottom-border {
1084
  padding-bottom: 20px;
1085
  }
1086
- }
32
  /* ****************************************************************************
33
  * 1. EXTEND/OVERRIDE WPMUDEV DASHBOARD/WP STYLES
34
  */
35
+
36
+ .sui-header .sui-button i {
37
+ margin-right: 5px;
38
+ }
39
+
40
  .wpmud .wrap-wp-hummingbird .mline {
41
  margin-bottom: 30px;
42
  }
59
  border-bottom: 1px solid #E6E6E6;
60
  padding-bottom: 30px;
61
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  .wpmud .list-table > tbody > tr:last-child > td {
63
  border-bottom: 1px solid #eee;
64
  }
273
  display: inline-block;
274
  font-size: 13px;
275
  color: #888888;
276
+ margin: 0 15px;
277
  }
278
 
279
  .wpmud .wrap-wp-hummingbird .wphb-label-disabled {
291
  /* ****************************************************************************
292
  * 2. COMMON/GENERAL STYLES
293
  */
 
 
 
 
 
 
 
 
 
 
 
294
 
295
  /* Tables */
296
  .wpmud .wphb-table-wrapper.complex {
514
  .wphb-block-test {
515
  background-color: #F9F9F9;
516
  border-radius: 5px;
 
 
 
517
  padding: 15px 30px;
518
  }
519
 
541
  .wphb-block-test-standalone .wphb-progress {
542
  margin: 0 auto;
543
  }
544
+ .wphb-check-files-modal {
545
+ p {
546
+ font-size: 13px;
547
+ line-height: 22px;
548
+ margin-right: 14px;
549
+ margin-bottom: 0;
550
+ }
551
+ }
552
 
553
  /* Filename Extensions Icons */
554
  .wphb-filename-extension {
566
  width: 30px;
567
  }
568
 
569
+ .sui-list-label {
570
+ .wphb-filename-extension {
571
+ margin: -5px 10px -5px 0px;
572
+ }
573
+ .wphb-filename-extension-label {
574
+ line-height: 22px;
575
+ }
576
+ }
577
+
578
  .wphb-filename-extension-html {
579
  background-color: #F56418;
580
  }
936
  /* TABLET */
937
  @media screen and (max-width: 783px) {
938
  /* Generic */
939
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
940
 
941
 
942
 
968
  .wpmud .dev-box .box-title .toggle-group {
969
  margin-top: 0;
970
  }
 
 
 
 
 
971
  }
972
 
973
  /* LARGE MOBILE */
1012
  .wpmud .with-bottom-border {
1013
  padding-bottom: 20px;
1014
  }
1015
+ }
_src/scss/common/_buttons.scss CHANGED
@@ -31,60 +31,11 @@
31
  margin: 10px 30px 0;
32
  }
33
 
34
- .wpmud #header .button[disabled] {
35
- background-color: #E6E6E6 !important;
36
- border-radius: 4px;
37
- color: #AAAAAA !important;
38
- }
39
-
40
- .wpmud .documentation-button:before {
41
- content: '\e915';
42
- color: #888888;
43
- font-family: $font--icons;
44
- font-size: 12px;
45
- vertical-align: middle;
46
- line-height: 16px;
47
- top: -2px;
48
- position: relative;
49
- margin-right: 5px;
50
- }
51
-
52
- .wpmud .documentation-button:hover:before,
53
- .wpmud .documentation-button:focus:before {
54
- color: #FFFFFF;
55
- }
56
 
57
- .wpmud .wphb-modal .wphb-dialog-content .button {
58
- margin-bottom: 15px;
59
- }
60
-
61
- .wpmud .wphb-modal .alignleft,
62
- .wpmud .wphb-modal .button {
63
- margin-bottom: 0 !important;
64
- }
65
-
66
- .wpmud .wphb-block-entry-content .buttons-group .button {
67
- display: inline-block;
68
- }
69
 
70
- .wpmud .wrap-wp-hummingbird .report-status button {
71
- border-radius: 20px !important;
72
- margin-top: 10px !important;
73
- background-color: #D1F1EA !important;
74
- color: #1ABC9C !important;
75
- }
76
 
77
- .wpmud .wrap-wp-hummingbird .report-status button i {
78
- color: #1ABC9C;
79
- font-size: 16px;
80
- position: relative;
81
- line-height: 10px;
82
- top: 3px;
83
- }
84
-
85
- .wpmud .wrap-wp-hummingbird .report-status button.inactive {
86
- background-color: #E6E6E6 !important;
87
- color: #AAAAAA !important;
88
  }
89
 
90
  .wpmud .wrap-wphb-performance .scan-settings .buttons {
@@ -128,20 +79,12 @@
128
  }
129
 
130
  /* Buttons */
131
- .wpmud .wphb-modal button:not(.wph-button):not(#collapse-button),
132
- .wpmud .wphb-modal .button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]) {
133
- background: #17A8E3;
134
- }
135
 
136
- .wpmud .wrap-wp-hummingbird .wpdui-btn,
137
- .wpmud .wphb-modal .button:not(.notice-dismiss),
138
- .wpmud .wrap-wp-hummingbird button:not(.notice-dismiss),
139
- .wpmud .wrap-wp-hummingbird .button,
140
- .wpmud .wrap-wp-hummingbird button:not(.wph-button):not(#collapse-button):not(.notice-dismiss) {
141
  font: 500 12px/16px $font !important;
142
  padding: 7px 16px;
143
  height: 30px;
144
- background-color: #17A8E3;
145
  color: #FFFFFF;
146
  border-radius: 3px;
147
  -moz-border-radius: 3px;
@@ -149,27 +92,48 @@
149
  -webkit-transition: all .3s ease;
150
  text-shadow: none !important;
151
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
 
153
- .wpmud .wrap-wp-hummingbird button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]):not(.notice-dismiss),
154
- .wpmud .wrap-wp-hummingbird .button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]),
155
- .wpmud .wphb-modal .button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]),
156
- .wpmud .wrap-wp-hummingbird button:active,
157
- .wpmud .wrap-wp-hummingbird button:focus,
158
- .wpmud .wrap-wp-hummingbird .button:active,
159
- .wpmud .wrap-wp-hummingbird .button:focus,
160
- .wpmud .wphb-modal .button:focus,
161
- .wpmud .wphb-modal .button:active {
162
- background: #0A9BD6;
163
  }
164
 
165
- .wpmud .wrap-wp-hummingbird .button-disabled {
166
- border-radius: 15px;
167
- background-color: #F8F8F8;
168
- color: #C0C0C0;
 
 
 
 
 
 
 
169
  }
170
 
171
- .wpmud .wphb-modal .button.button-large,
172
- .wpmud .wrap-wp-hummingbird .wpdui-btn--full,
173
  .wpmud .wrap-wp-hummingbird button.button-large:not(.wph-button):not(#collapse-button),
174
  .wpmud .wrap-wp-hummingbird button.button-large,
175
  .wpmud .wrap-wp-hummingbird .button.button-large {
@@ -189,14 +153,10 @@
189
 
190
  .wpmud .wrap-wp-hummingbird button.button-ghost:hover:not(.wph-button):not(#collapse-button),
191
  .wpmud .wrap-wp-hummingbird .button-ghost:hover:not(:focus):not(:active),
192
- .wpmud .wphb-modal .button-ghost:hover:not(:focus):not(:active),
193
  .wpmud .wrap-wp-hummingbird .button-ghost:active,
194
  .wpmud .wrap-wp-hummingbird .button-ghost.active,
195
  .wpmud .wrap-wp-hummingbird .button-ghost:hover:enabled,
196
  .wpmud .wrap-wp-hummingbird .button-ghost:focus,
197
- .wpmud .wphb-modal .button-ghost:active,
198
- .wpmud .wphb-modal .button-ghost:hover:enabled,
199
- .wpmud .wphb-modal .button-ghost:focus,
200
  .wpmud .wrap-wp-hummingbird .button-grey:hover {
201
  background-color: #7B7B7B !important;
202
  border-color: #7B7B7B;
@@ -224,9 +184,7 @@
224
  .wpmud .wrap-wp-hummingbird .button-content-cta:hover:not(:focus):not(:active),
225
  .wpmud .wphb-modal .button-content-cta:hover:not(:focus):not(:active),
226
  .wpmud .wrap-wp-hummingbird .button-content-cta:active,
227
- .wpmud .wrap-wp-hummingbird .button-content-cta:focus,
228
- .wpmud .wphb-modal .button-content-cta:active,
229
- .wpmud .wphb-modal .button-content-cta:focus {
230
  background: #0DAF8F !important;
231
  border-color: #0DAF8F;
232
  }
@@ -256,38 +214,11 @@
256
  color: #FFFFFF !important;
257
  }
258
 
259
- .wpmud .wphb-modal .button-grey,
260
  .wpmud .wrap-wp-hummingbird .button-grey {
261
  background-color: #888888 !important;
262
  color: #FFFFFF !important;
263
  }
264
 
265
- .wrap-wp-hummingbird .button-load-more {
266
- background-color: transparent;
267
- border: 1px solid #ddd;
268
- border-radius: 50%;
269
- color: #bababa;
270
- font-family: $font--alt;
271
- font-size: 13px;
272
- font-weight: 700;
273
- line-height: 18px;
274
- height: 140px;
275
- padding: 0;
276
- transition: color .4s, background-color .4s;
277
- width: 140px;
278
- }
279
-
280
- .wrap-wp-hummingbird .button-load-more:hover:not(:focus):not(:active) {
281
- background-color: #fafafa;
282
- border-color: #ddd;
283
- color: #777771;
284
- }
285
-
286
- .wrap-wp-hummingbird .button-load-more:active,
287
- .wrap-wp-hummingbird .button-load-more:focus {
288
- background: #777771;
289
- }
290
-
291
  @include bp(phone) {
292
  .wpmud .box-content .buttons {
293
  margin-top: 0;
31
  margin: 10px 30px 0;
32
  }
33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
34
 
 
 
 
 
 
 
 
 
 
 
 
 
35
 
 
 
 
 
 
 
36
 
37
+ .wpmud .wrap-wp-hummingbird .report-status .sui-tag {
38
+ margin-top: 10px;
 
 
 
 
 
 
 
 
 
39
  }
40
 
41
  .wpmud .wrap-wphb-performance .scan-settings .buttons {
79
  }
80
 
81
  /* Buttons */
 
 
 
 
82
 
83
+ .wpmud .wrap-wp-hummingbird .wpdui-btn {
 
 
 
 
84
  font: 500 12px/16px $font !important;
85
  padding: 7px 16px;
86
  height: 30px;
87
+ background-color: #888;
88
  color: #FFFFFF;
89
  border-radius: 3px;
90
  -moz-border-radius: 3px;
92
  -webkit-transition: all .3s ease;
93
  text-shadow: none !important;
94
  }
95
+ .wpmud .report-status button.sui-button-upsell {
96
+ margin-top: 10px !important;
97
+ text-transform: uppercase;
98
+
99
+ height: 30px;
100
+ line-height: 16px;
101
+ padding: 0 16px;
102
+ &:not(:disabled){
103
+ background-color: #d1f1ea !important;
104
+ color: #1abc9c !important;
105
+ &:hover,
106
+ &:focus {
107
+ background-color: #d1f1ea !important;
108
+ color: #1abc9c !important;
109
+ border-color: #d1f1ea !important;
110
+ }
111
+ }
112
+
113
 
114
+
115
+ i {
116
+ color: #1abc9c;
117
+ font-size: 16px;
118
+ position: relative;
119
+ line-height: 16px;
120
+ top: 2px;
121
+ }
 
 
122
  }
123
 
124
+ .wpmud .wrap-wp-hummingbird {
125
+ .wphb-notice {
126
+ &.notice {
127
+ .sui-button.button {
128
+ &:hover,
129
+ &:focus {
130
+ color: white;
131
+ }
132
+ }
133
+ }
134
+ }
135
  }
136
 
 
 
137
  .wpmud .wrap-wp-hummingbird button.button-large:not(.wph-button):not(#collapse-button),
138
  .wpmud .wrap-wp-hummingbird button.button-large,
139
  .wpmud .wrap-wp-hummingbird .button.button-large {
153
 
154
  .wpmud .wrap-wp-hummingbird button.button-ghost:hover:not(.wph-button):not(#collapse-button),
155
  .wpmud .wrap-wp-hummingbird .button-ghost:hover:not(:focus):not(:active),
 
156
  .wpmud .wrap-wp-hummingbird .button-ghost:active,
157
  .wpmud .wrap-wp-hummingbird .button-ghost.active,
158
  .wpmud .wrap-wp-hummingbird .button-ghost:hover:enabled,
159
  .wpmud .wrap-wp-hummingbird .button-ghost:focus,
 
 
 
160
  .wpmud .wrap-wp-hummingbird .button-grey:hover {
161
  background-color: #7B7B7B !important;
162
  border-color: #7B7B7B;
184
  .wpmud .wrap-wp-hummingbird .button-content-cta:hover:not(:focus):not(:active),
185
  .wpmud .wphb-modal .button-content-cta:hover:not(:focus):not(:active),
186
  .wpmud .wrap-wp-hummingbird .button-content-cta:active,
187
+ .wpmud .wrap-wp-hummingbird .button-content-cta:focus {
 
 
188
  background: #0DAF8F !important;
189
  border-color: #0DAF8F;
190
  }
214
  color: #FFFFFF !important;
215
  }
216
 
 
217
  .wpmud .wrap-wp-hummingbird .button-grey {
218
  background-color: #888888 !important;
219
  color: #FFFFFF !important;
220
  }
221
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222
  @include bp(phone) {
223
  .wpmud .box-content .buttons {
224
  margin-top: 0;
_src/scss/common/_layout.scss CHANGED
@@ -124,12 +124,7 @@
124
  margin: 10px 0 0;
125
  }
126
 
127
- .wpmud .dev-box .box-title .test-results {
128
- float: right;
129
- margin-top: 15px;
130
- }
131
-
132
- .wpmud .dev-box .box-title .test-results-label {
133
  display: block;
134
  float: left;
135
  font-family: $font--alt;
@@ -382,8 +377,10 @@
382
  margin: 0 0 20px;
383
  }
384
 
385
- .wpmud .wphb-block-entry-content .content > p:last-child,
386
- .wpmud .wphb-block-entry-content .content > p:last-of-type {
 
 
387
  margin-bottom: 0;
388
  }
389
 
@@ -422,22 +419,12 @@
422
  margin-bottom: 20px;
423
  }
424
 
425
- .wpmud .wphb-block-entry-third .hb-wpmudev-icon-warning,
426
- .wpmud .wphb-block-entry-third .hb-wpmudev-icon-info,
427
- .wpmud .wphb-block-entry-third .hb-wpmudev-icon-tick {
428
- position: relative;
429
- top: -22px;
430
- left: 5px;
431
- font-size: 20px;
432
- }
433
-
434
- .wpmud .wphb-tab i.hb-wpmudev-icon-info.dismissed,
435
  .wpmud .wphb-block-entry-third .hb-wpmudev-icon-info {
436
  color: #888888;
437
- }
438
-
439
- .wpmud .wphb-block-entry-third .hb-wpmudev-icon-warning {
440
- color: #FECF2F;
441
  }
442
 
443
  .wpmud .wphb-block-entry-third .hb-wpmudev-icon-tick {
124
  margin: 10px 0 0;
125
  }
126
 
127
+ .wpmud .sui-box-header .test-results-label {
 
 
 
 
 
128
  display: block;
129
  float: left;
130
  font-family: $font--alt;
377
  margin: 0 0 20px;
378
  }
379
 
380
+ .wpmud .content {
381
+ margin-bottom: 30px;
382
+ }
383
+ .wpmud .wphb-block-entry-content .content > p:last-child {
384
  margin-bottom: 0;
385
  }
386
 
419
  margin-bottom: 20px;
420
  }
421
 
422
+ .wpmud i.hb-wpmudev-icon-info.dismissed,
 
 
 
 
 
 
 
 
 
423
  .wpmud .wphb-block-entry-third .hb-wpmudev-icon-info {
424
  color: #888888;
425
+ &:before {
426
+ color: #888888;
427
+ }
 
428
  }
429
 
430
  .wpmud .wphb-block-entry-third .hb-wpmudev-icon-tick {
_src/scss/common/_overwrites.scss CHANGED
@@ -15,10 +15,6 @@ button.notice-dismiss {
15
  cursor: pointer !important;
16
  }
17
 
18
- .wpmud #header .actions .button + .button {
19
- margin-left: 10px;
20
- }
21
-
22
  .wpmud .wphb-dismiss {
23
  float: right;
24
  }
@@ -45,10 +41,6 @@ button.notice-dismiss {
45
  margin-left: -150px;
46
  }
47
 
48
- .wpmud .wrap-wp-hummingbird a:not('.wdpun-button') {
49
- color: #17A8E3;
50
- }
51
-
52
  .wpmud .wrap-wp-hummingbird strong {
53
  color: #333333;
54
  }
@@ -71,24 +63,6 @@ button.notice-dismiss {
71
  margin-right: -20px;
72
  }
73
 
74
- .wpmud .wrap-wp-hummingbird i.wdv-icon-chevron-down {
75
- color: #8A8A8A;
76
- }
77
-
78
- .wpmud .select-container:not(.mobile-nav) i.wdv-icon-reorder:before {
79
- content: "\f078";
80
- }
81
-
82
- .wpmud .select-container:not(.mobile-nav) {
83
- border: 1px solid #E6E6E6;
84
- background-color: #F8F8F8;
85
- }
86
-
87
- .wpmud .select-container:not(.mobile-nav) .dropdown-handle {
88
- background-color: #F8F8F8;
89
- color: #898989;
90
- }
91
-
92
  /* Install dashboard message */
93
  .wpmud #wpmu-install-dashboard {
94
  margin-left: 0;
15
  cursor: pointer !important;
16
  }
17
 
 
 
 
 
18
  .wpmud .wphb-dismiss {
19
  float: right;
20
  }
41
  margin-left: -150px;
42
  }
43
 
 
 
 
 
44
  .wpmud .wrap-wp-hummingbird strong {
45
  color: #333333;
46
  }
63
  margin-right: -20px;
64
  }
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  /* Install dashboard message */
67
  .wpmud #wpmu-install-dashboard {
68
  margin-left: 0;
_src/scss/common/_typography.scss CHANGED
@@ -228,20 +228,6 @@
228
  color: #888;
229
  }
230
 
231
- /* General typography */
232
- .wpmud .wrap-wp-hummingbird p {
233
- color: #666;
234
- }
235
-
236
- .wpmud #header h1 {
237
- color: #333;
238
- margin: 0;
239
- }
240
-
241
- .wpmud .dev-overlay .title h3 {
242
- font-size: 16px;
243
- color: #333;
244
- }
245
 
246
  /* Caching and Advanced */
247
  .wpmud .box-advanced-general h4,
228
  color: #888;
229
  }
230
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
231
 
232
  /* Caching and Advanced */
233
  .wpmud .box-advanced-general h4,
_src/scss/components/_notices.scss CHANGED
@@ -7,6 +7,8 @@
7
 
8
  .wpmud .wrap-wp-hummingbird .notice {
9
  margin: 15px 0 0;
 
 
10
  }
11
 
12
  .wpmud .wrap-wp-hummingbird > .wphb-notice:not(.notice) {
@@ -46,12 +48,13 @@
46
  margin: 10px 0;
47
  }
48
 
49
- .wpmud .wphb-notice p,
50
- .wpmud .wphb-notice p a {
51
- color: #333333;
52
- font-weight: 400;
53
  }
54
 
 
55
  .wpmud .wphb-notice:not(.notice) p,
56
  .wpmud .wphb-notice:not(.notice) span,
57
  .wpmud .wphb-notice ul,
@@ -64,14 +67,6 @@
64
  margin: 0;
65
  }
66
 
67
- .wpmud .wphb-notice p a {
68
- font-weight: 500;
69
- }
70
-
71
- .wpmud .wphb-notice p a:hover {
72
- color: #333;
73
- }
74
-
75
  .wpmud .wphb-notice .wphb-icon,
76
  .wpmud .wphb-notice .wphb-icon .wdv-icon {
77
  font-size: 22px;
@@ -185,10 +180,6 @@
185
  line-height: 22px;
186
  }
187
 
188
- .wpmud .wphb-notice-warning p,
189
- .wpmud .wphb-notice-warning p a {
190
- color: #333333;
191
- }
192
 
193
  .wpmud .wphb-heading-status-green {
194
  color: #1ABC9C;
7
 
8
  .wpmud .wrap-wp-hummingbird .notice {
9
  margin: 15px 0 0;
10
+ order: 10;
11
+ width: 100%;
12
  }
13
 
14
  .wpmud .wrap-wp-hummingbird > .wphb-notice:not(.notice) {
48
  margin: 10px 0;
49
  }
50
 
51
+ .wpmud .wphb-notice {
52
+ p {
53
+ color: #333;
54
+ }
55
  }
56
 
57
+
58
  .wpmud .wphb-notice:not(.notice) p,
59
  .wpmud .wphb-notice:not(.notice) span,
60
  .wpmud .wphb-notice ul,
67
  margin: 0;
68
  }
69
 
 
 
 
 
 
 
 
 
70
  .wpmud .wphb-notice .wphb-icon,
71
  .wpmud .wphb-notice .wphb-icon .wdv-icon {
72
  font-size: 22px;
180
  line-height: 22px;
181
  }
182
 
 
 
 
 
183
 
184
  .wpmud .wphb-heading-status-green {
185
  color: #1ABC9C;
_src/scss/components/_settings_form.scss CHANGED
@@ -42,7 +42,7 @@
42
  font-weight: 500;
43
  }
44
 
45
- .wpmud .settings-form .col-two-third {
46
  span.sub {
47
  margin-left: 49px;
48
  }
@@ -52,16 +52,8 @@
52
  margin-left: 15px;
53
  }
54
 
55
- .wpmud .settings-form textarea {
56
  height: 180px;
57
- max-width: 490px;
58
- color: #333333;
59
- border: 1px solid #E6E6E6;
60
- border-radius: 4px;
61
- background-color: #F8F8F8;
62
- margin-top: 20px;
63
- font-size: 13px;
64
- line-height: 18px;
65
  }
66
 
67
  .wpmud .box-advanced-general textarea,
@@ -112,4 +104,41 @@
112
 
113
  .wpmud .settings-form.disabled > * {
114
  opacity: 0.5;
115
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  font-weight: 500;
43
  }
44
 
45
+ .wpmud .sui-box-settings-row .sui-box-settings-col-2 {
46
  span.sub {
47
  margin-left: 49px;
48
  }
52
  margin-left: 15px;
53
  }
54
 
55
+ .wpmud .sui-box-settings-row textarea {
56
  height: 180px;
 
 
 
 
 
 
 
 
57
  }
58
 
59
  .wpmud .box-advanced-general textarea,
104
 
105
  .wpmud .settings-form.disabled > * {
106
  opacity: 0.5;
107
+ }
108
+
109
+ .wpmud .settings-form input[type='radio'] {
110
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
111
+ border: 1px solid #E6E6E6;
112
+ background-color: #F8F8F8;
113
+
114
+ &:checked {
115
+ border: 1px solid #17A8E3;
116
+ background-color: #17A8E3;
117
+
118
+ &:before {
119
+ width: 8px;
120
+ height: 8px;
121
+ margin: 3px;
122
+ background-color: #ffffff;
123
+
124
+ @include bp(phone) {
125
+ margin: 5px;
126
+ }
127
+ }
128
+
129
+ & + label {
130
+ color: #333333;
131
+ }
132
+ }
133
+
134
+ & + label {
135
+ display: inline-block;
136
+ margin-top: 0;
137
+ font-size: 15px;
138
+ }
139
+
140
+ @include bp(phone) {
141
+ height: 20px;
142
+ width: 20px;
143
+ }
144
+ }
_src/scss/modules/_advanced.scss CHANGED
@@ -21,7 +21,13 @@
21
  padding: 20px 30px;
22
 
23
  @include bp(tablet) {
24
- padding: 20px 0;
 
 
 
 
 
 
25
  }
26
  }
27
 
@@ -63,6 +69,7 @@
63
  margin-top: -5px;
64
  text-align: center;
65
  vertical-align: middle;
 
66
 
67
  &:hover {
68
  background-color: #f5f5f5;
@@ -84,31 +91,10 @@
84
  }
85
  }
86
 
87
- .table-footer {
88
- padding: 0 30px 30px;
89
-
90
- .buttons .spinner {
91
- margin-top: 6px;
92
- }
93
-
94
  @include bp(tablet) {
95
  padding: 20px 0;
96
-
97
- .status-text {
98
- text-align: left;
99
- margin-top: 0;
100
- padding-left: 0;
101
- }
102
- .buttons {
103
- margin-top: 0;
104
- }
105
- }
106
-
107
- @include bp(phone-large) {
108
- .status-text {
109
- word-wrap: break-word;
110
- max-width: 180px;
111
- }
112
  }
113
  }
114
  }
21
  padding: 20px 30px;
22
 
23
  @include bp(tablet) {
24
+ padding: 15px 0;
25
+ }
26
+ }
27
+
28
+ .table-header {
29
+ @include bp(tablet) {
30
+ padding: 15px 0 0;
31
  }
32
  }
33
 
69
  margin-top: -5px;
70
  text-align: center;
71
  vertical-align: middle;
72
+ cursor: pointer;
73
 
74
  &:hover {
75
  background-color: #f5f5f5;
91
  }
92
  }
93
 
94
+ .sui-box-footer {
95
+ border-top: none;
 
 
 
 
 
96
  @include bp(tablet) {
97
  padding: 20px 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  }
99
  }
100
  }
_src/scss/modules/_caching.scss CHANGED
@@ -158,16 +158,16 @@
158
  margin-right: 20px;
159
  }
160
 
161
- .wpmud .box-caching-summary .box-content > .box-content {
162
  background: no-repeat 30px 100%;
163
  }
164
 
165
- .wpmud .box-caching-summary .box-content > .box-content {
166
  background-image: url("#{$image--path}/graphic-hb-cf-sell@2x.png");
167
  background-size: 107px 148px;
168
  }
169
 
170
- .wpmud .box-caching-summary .box-content > .box-content.no-background-image {
171
  background-image: none;
172
  }
173
 
@@ -187,10 +187,6 @@
187
  max-width: 240px;
188
  }
189
 
190
- .wpmud .box-caching-settings .settings-form .col-two-third > label {
191
- padding: 0;
192
- }
193
-
194
  @media screen and (max-width: 1200px) and (min-width: 783px) {
195
  .wpmud #cloudflare-how-to-title {
196
  float: none;
@@ -275,34 +271,6 @@
275
  }
276
 
277
  /* Expiration table */
278
- .wpmud input[name='expiry-set-type'] {
279
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);
280
- border: 1px solid #E6E6E6;
281
- background-color: #F8F8F8;
282
- }
283
-
284
- .wpmud input[name='expiry-set-type']:checked {
285
- border: 1px solid #17A8E3;
286
- background-color: #17A8E3;
287
- }
288
-
289
- .wpmud input[name='expiry-set-type']:checked + label {
290
- color: #333333;
291
- }
292
-
293
- .wpmud input[name='expiry-set-type']:checked:before {
294
- width: 8px;
295
- height: 8px;
296
- margin: 3px;
297
- background-color: #ffffff;
298
- }
299
-
300
- .wpmud input[name='expiry-set-type'] + label {
301
- display: inline-block;
302
- margin-top: 0;
303
- font-size: 15px;
304
- }
305
-
306
  .wpmud .wphb-border-frame .table-header .wphb-caching-summary-heading-type {
307
  flex-basis: 85px;
308
  }
@@ -400,6 +368,34 @@
400
  }
401
 
402
  /* Page caching */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
403
  .wpmud .box-page-caching .col-two-third .with-bottom-border {
404
  margin-bottom: 30px;
405
  }
@@ -417,19 +413,33 @@
417
  border-bottom: 0;
418
  }
419
 
 
 
 
 
 
 
420
  /* Gravatar caching */
421
  .wpmud .box-page-caching .wphb-notice,
422
  .wpmud .box-caching-gravatar .wphb-notice {
423
  margin-top: 20px;
424
  }
425
 
426
- .wpmud .box-page-caching .settings-form .button-ghost {
427
  margin: 10px 0;
428
  }
429
 
 
 
 
 
 
430
  /* Rss caching */
431
  .wpmud .box-caching-rss {
432
- .settings-form {
 
 
 
433
  input[type="text"] {
434
  margin: 0;
435
  display: inline-block;
@@ -437,14 +447,11 @@
437
  }
438
 
439
  label {
 
440
  margin-top: -5px;
441
  color: #666;
442
  }
443
  }
444
-
445
- .box-footer .spinner {
446
- margin: 6px 10px 0;
447
- }
448
  }
449
 
450
  @include bp(desktop-large) {
@@ -474,13 +481,4 @@
474
  .wpmud .box-caching-summary .content-box-two-cols-image-left .wphb-block-entry-content {
475
  margin: 0;
476
  }
477
-
478
- /* overwrite checkboxes */
479
- .wpmud input[name='expiry-set-type'] {
480
- height: 20px;
481
- width: 20px
482
- }
483
- .wpmud input[name='expiry-set-type']:checked:before {
484
- margin: 5px;
485
- }
486
- }
158
  margin-right: 20px;
159
  }
160
 
161
+ .wpmud .box-caching-summary .sui-box-body {
162
  background: no-repeat 30px 100%;
163
  }
164
 
165
+ .wpmud .box-caching-summary .sui-box-body {
166
  background-image: url("#{$image--path}/graphic-hb-cf-sell@2x.png");
167
  background-size: 107px 148px;
168
  }
169
 
170
+ .wpmud .box-caching-summary .sui-box-body.no-background-image {
171
  background-image: none;
172
  }
173
 
187
  max-width: 240px;
188
  }
189
 
 
 
 
 
190
  @media screen and (max-width: 1200px) and (min-width: 783px) {
191
  .wpmud #cloudflare-how-to-title {
192
  float: none;
271
  }
272
 
273
  /* Expiration table */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  .wpmud .wphb-border-frame .table-header .wphb-caching-summary-heading-type {
275
  flex-basis: 85px;
276
  }
368
  }
369
 
370
  /* Page caching */
371
+ .wpmud .box-page-caching .box-footer {
372
+ border-top: 1px solid #E6E6E6;
373
+ padding: 50px 30px;
374
+ }
375
+
376
+ .wpmud .box-page-caching .sui-box-body .sui-box-settings-row:first-of-type {
377
+ padding-bottom: inherit;
378
+ border-bottom: 1px solid #e6e6e6;;
379
+ }
380
+
381
+ .wpmud .box-page-caching h4 {
382
+ color: #666666;
383
+ font-size: 15px;
384
+ font-weight: 500;
385
+ text-align: left;
386
+ text-transform: none;
387
+ }
388
+
389
+ .wpmud .box-page-caching textarea {
390
+ height: 180px;
391
+ max-width: 490px;
392
+ color: #333333;
393
+ border: 1px solid #E6E6E6;
394
+ border-radius: 4px;
395
+ background-color: #F8F8F8;
396
+ margin-top: 20px;
397
+ }
398
+
399
  .wpmud .box-page-caching .col-two-third .with-bottom-border {
400
  margin-bottom: 30px;
401
  }
413
  border-bottom: 0;
414
  }
415
 
416
+ @include bp(tablet) {
417
+ .wpmud .box-page-caching .sui-box-settings-col-2.wphb-deactivate-pc {
418
+ padding-top: 0;
419
+ }
420
+ }
421
+
422
  /* Gravatar caching */
423
  .wpmud .box-page-caching .wphb-notice,
424
  .wpmud .box-caching-gravatar .wphb-notice {
425
  margin-top: 20px;
426
  }
427
 
428
+ .wpmud .box-page-caching .sui-box-settings-row .sui-button-ghost {
429
  margin: 10px 0;
430
  }
431
 
432
+ /* Settings */
433
+ .wpmud .box-caching-other-settings .spinner {
434
+ margin: 2px 10px 0 0;
435
+ }
436
+
437
  /* Rss caching */
438
  .wpmud .box-caching-rss {
439
+ .sui-box-footer .spinner {
440
+ margin: 2px 10px 0;
441
+ }
442
+ .sui-box-settings-row {
443
  input[type="text"] {
444
  margin: 0;
445
  display: inline-block;
447
  }
448
 
449
  label {
450
+ margin-left: 10px;
451
  margin-top: -5px;
452
  color: #666;
453
  }
454
  }
 
 
 
 
455
  }
456
 
457
  @include bp(desktop-large) {
481
  .wpmud .box-caching-summary .content-box-two-cols-image-left .wphb-block-entry-content {
482
  margin: 0;
483
  }
484
+ }
 
 
 
 
 
 
 
 
 
_src/scss/modules/_dashboard.scss CHANGED
@@ -6,61 +6,70 @@
6
  @import "../common/mixins";
7
 
8
  /* Images */
9
- .wpmud section[class^="box-dashboard-"] .box-title:before {
10
  font-family: $font--icons;
11
  color: #333333;
12
  float: left;
13
  font-size: 20px;
14
- margin: 18px 10px 18px 0;
 
15
  }
16
 
17
- .wpmud section[class^="box-dashboard-performance"] .box-title:before {
18
  content: '\e90c';
19
  }
20
- .wpmud section[class^="box-dashboard-minification"] .box-title:before {
21
  content: '\e90b';
22
  }
23
- .wpmud section[class^="box-dashboard-browser"] .box-title:before {
24
  content: '\e905';
25
  }
26
- .wpmud section[class^="box-dashboard-gzip"] .box-title:before {
27
  content: '\e907';
28
  }
29
- .wpmud section[class^="box-dashboard-uptime"] .box-title:before {
30
  content: '\e900';
31
  }
32
- .wpmud section[class^="box-dashboard-smush"] .box-title:before {
33
  content: '\e90f';
34
  }
35
- .wpmud section[class^="box-dashboard-cloudflare"] .box-title:before {
36
  content: '\e906';
37
  }
38
- .wpmud section[class^="box-dashboard-reports"] .box-title:before {
39
  content: '\e90d';
40
  }
41
- .wpmud section[class^="box-dashboard-caching-gravatar"] .box-title:before {
42
  content: '\e913';
43
  }
44
- .wpmud section[class^="box-dashboard-caching-page"] .box-title:before {
45
  content: '\e914';
46
  }
47
- .wpmud section[class^="box-dashboard-advanced-tools"] .box-title:before {
48
  content: '\5a';
49
  }
50
 
 
 
 
 
51
  /* Dashboard background images */
 
 
 
 
52
  .wpmud .box-dashboard-reports-no-membership,
53
  .wpmud .box-dashboard-uptime-no-membership,
54
- .wpmud .box-dashboard-smush-no-membership .box-content,
55
- .wpmud .box-dashboard-browser-caching-module .box-content,
56
  .wpmud .box-reporting-summary .wphb-reporting-no-membership,
57
  .wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {
58
  background: #fff no-repeat 30px 100%;
59
  padding-bottom: 30px !important;
60
  }
61
 
62
- .wpmud .box-dashboard-reports-no-membership .box-content,
63
- .wpmud .box-dashboard-uptime-no-membership .box-content {
64
  padding: 30px 30px 0 !important;
65
  }
66
 
@@ -70,10 +79,10 @@
70
  .wpmud .box-dashboard-uptime-no-membership {
71
  background-image: url("#{$image--path}/hb-graphic-upsell-uptime.png");
72
  }
73
- .wpmud .box-dashboard-smush-no-membership .box-content {
74
  background-image: url("#{$image--path}/smush-share-widget.png");
75
  }
76
- .wpmud .box-dashboard-browser-caching-module .box-content {
77
  background-image: url("#{$image--path}/graphic-hb-cf-sell@2x.png");
78
  background-size: 107px 148px;
79
  }
@@ -86,7 +95,7 @@
86
  background-size: 100px 126px;
87
  }
88
 
89
- .wpmud .box-dashboard-browser-caching-module .box-content.no-background-image {
90
  background-image: none;
91
  }
92
 
@@ -98,7 +107,7 @@ only screen and (min-resolution: 192dpi),
98
  only screen and (min-resolution: 2dppx) {
99
  .wpmud .box-dashboard-reports-no-membership,
100
  .wpmud .box-dashboard-uptime-no-membership,
101
- .wpmud .box-dashboard-smush-no-membership .box-content {
102
  background-size: 107px 148px;
103
  }
104
  .wpmud .box-dashboard-reports-no-membership {
@@ -107,7 +116,7 @@ only screen and (min-resolution: 2dppx) {
107
  .wpmud .box-dashboard-uptime-no-membership {
108
  background-image: url("#{$image--path}/hb-graphic-upsell-uptime@2x.png");
109
  }
110
- .wpmud .box-dashboard-smush-no-membership .box-content {
111
  background-image: url("#{$image--path}/smush-share-widget@2x.png");
112
  }
113
  .wpmud .box-reporting-summary .wphb-reporting-no-membership {
@@ -126,6 +135,49 @@ only screen and (min-resolution: 2dppx) {
126
  line-height: 30px;
127
  display: flex;
128
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
 
130
  .wpmud .wphb-border-frame .wphb-caching-summary-item-type,
131
  .wpmud .wphb-border-frame .wphb-gzip-summary-item-type,
@@ -183,87 +235,13 @@ only screen and (min-resolution: 2dppx) {
183
  }
184
 
185
  /* Status text on dashboard meta boxes */
186
- .wpmud .dev-box .status-text {
187
  color: #888888;
188
  font-size: 13px;
189
  line-height: 22px;
190
  margin-top: 5px;
191
  }
192
 
193
- /* Dashboard Performance */
194
- .wpmud .box-dashboard-performance-module .box-content .with-padding {
195
- margin-bottom: 0;
196
- }
197
-
198
- .wpmud .box-dashboard-performance-module .wphb-performance-report-item-score {
199
- display: flex;
200
- align-items: center;
201
- align-content: center;
202
- max-width: 65px;
203
- }
204
-
205
- .wpmud .box-dashboard-performance-module .wphb-score-result-label {
206
- font-size: 13px;
207
- margin-left: 10px;
208
- color: #AAAAAA;
209
- font-weight: 500;
210
- }
211
-
212
- .wpmud .box-dashboard-performance-module .wphb-dash-table-header,
213
- .wpmud .box-dashboard-performance-module .wphb-dash-table-row {
214
- padding: 0 30px;
215
- }
216
-
217
- .wpmud .box-dashboard-performance-module .wphb-row-grade-aplus,
218
- .wpmud .box-dashboard-performance-module .wphb-row-grade-a,
219
- .wpmud .box-dashboard-performance-module .wphb-row-grade-b {
220
- box-shadow: inset 3px 0 0 -1px #1ABC9C;
221
- }
222
-
223
- .wpmud .box-dashboard-performance-module .wphb-row-grade-c,
224
- .wpmud .box-dashboard-performance-module .wphb-row-grade-d {
225
- box-shadow: inset 3px 0 0 -1px #FECF2F;
226
- }
227
-
228
- .wpmud .box-dashboard-performance-module .wphb-row-grade-e,
229
- .wpmud .box-dashboard-performance-module .wphb-row-grade-f {
230
- box-shadow: inset 3px 0 0 -1px #FF6D6D;
231
- }
232
-
233
- .wpmud .box-dashboard-performance-module .wphb-dash-table-row:last-child {
234
- margin-bottom: 0;
235
- }
236
-
237
- .wpmud .box-dashboard-performance-module .wphb-row-grade-aplus > div:first-child:before,
238
- .wpmud .box-dashboard-performance-module .wphb-row-grade-a > div:first-child:before,
239
- .wpmud .box-dashboard-performance-module .wphb-row-grade-b > div:first-child:before,
240
- .wpmud .box-dashboard-performance-module .wphb-row-grade-c > div:first-child:before,
241
- .wpmud .box-dashboard-performance-module .wphb-row-grade-d > div:first-child:before,
242
- .wpmud .box-dashboard-performance-module .wphb-row-grade-e > div:first-child:before,
243
- .wpmud .box-dashboard-performance-module .wphb-row-grade-f > div:first-child:before {
244
- font-family: $font--icons;
245
- font-size: 16px;
246
- margin-right: 10px;
247
- }
248
-
249
- .wpmud .box-dashboard-performance-module .wphb-row-grade-aplus > div:first-child:before,
250
- .wpmud .box-dashboard-performance-module .wphb-row-grade-a > div:first-child:before,
251
- .wpmud .box-dashboard-performance-module .wphb-row-grade-b > div:first-child:before {
252
- color: #1ABC9C;
253
- content: "\e903";
254
- }
255
-
256
- .wpmud .box-dashboard-performance-module .wphb-row-grade-c > div:first-child:before,
257
- .wpmud .box-dashboard-performance-module .wphb-row-grade-d > div:first-child:before {
258
- color: #FECF2F;
259
- content: "\e904";
260
- }
261
-
262
- .wpmud .box-dashboard-performance-module .wphb-row-grade-e > div:first-child:before,
263
- .wpmud .box-dashboard-performance-module .wphb-row-grade-f > div:first-child:before {
264
- color: #FF6D6D;
265
- content: "\e904";
266
- }
267
 
268
  /* Dashbard: Cloudflare */
269
  #wphb-box-dashboard-cloudflare .wphb-block-entry .wphb-block-entry-content {
@@ -655,11 +633,6 @@ only screen and (min-resolution: 2dppx) {
655
  }
656
  }
657
 
658
- @include bp(phone-large) {
659
- .wpmud section[class^="box-dashboard-"] .box-title:before {
660
- margin: 5px 10px 5px 0;
661
- }
662
- }
663
 
664
  @include bp(phone) {
665
  .wpmud .box-dashboard-minification-module .wphb-pills {
@@ -671,7 +644,7 @@ only screen and (min-resolution: 2dppx) {
671
  margin-right: 5px;
672
  }
673
 
674
- .wpmud .box-dashboard-performance-module .wphb-dash-table .button-ghost {
675
  padding: 5px 6px 7px !important;
676
  }
677
 
@@ -692,12 +665,12 @@ only screen and (min-resolution: 2dppx) {
692
  width: 65px;
693
  }
694
 
695
- .wpmud .dev-box .status-text {
696
  line-height: 15px;
697
  margin-top: 0;
698
  padding-left: 10px;
699
  word-wrap: break-word;
700
- max-width: 150px;
701
  }
702
 
703
  /* notices */
6
  @import "../common/mixins";
7
 
8
  /* Images */
9
+ .wpmud div[class^="box-dashboard-"] .sui-box-title:before {
10
  font-family: $font--icons;
11
  color: #333333;
12
  float: left;
13
  font-size: 20px;
14
+ margin-right: 10px;
15
+ line-height: 30px;
16
  }
17
 
18
+ .wpmud div[class^="box-dashboard-performance"] .sui-box-title:before {
19
  content: '\e90c';
20
  }
21
+ .wpmud div[class^="box-dashboard-minification"] .sui-box-title:before {
22
  content: '\e90b';
23
  }
24
+ .wpmud div[class^="box-dashboard-browser"] .sui-box-title:before {
25
  content: '\e905';
26
  }
27
+ .wpmud div[class^="box-dashboard-gzip"] .sui-box-title:before {
28
  content: '\e907';
29
  }
30
+ .wpmud div[class^="box-dashboard-uptime"] .sui-box-title:before {
31
  content: '\e900';
32
  }
33
+ .wpmud div[class^="box-dashboard-smush"] .sui-box-title:before {
34
  content: '\e90f';
35
  }
36
+ .wpmud div[class^="box-dashboard-cloudflare"] .sui-box-title:before {
37
  content: '\e906';
38
  }
39
+ .wpmud div[class^="box-dashboard-reports"] .sui-box-title:before {
40
  content: '\e90d';
41
  }
42
+ .wpmud div[class^="box-dashboard-caching-gravatar"] .sui-box-title:before {
43
  content: '\e913';
44
  }
45
+ .wpmud div[class^="box-dashboard-caching-page"] .sui-box-title:before {
46
  content: '\e914';
47
  }
48
+ .wpmud div[class^="box-dashboard-advanced-tools"] .sui-box-title:before {
49
  content: '\5a';
50
  }
51
 
52
+ .wpmud div[class^="box-dashboard-"] .sui-box-footer .sui-button i {
53
+ margin-right: 5px;
54
+ }
55
+
56
  /* Dashboard background images */
57
+
58
+ .wpmud .box-dashboard-welcome.sui-summary {
59
+ background-image: url("#{$image--path}/hb-graphic-dash-top@2x.png");
60
+ }
61
  .wpmud .box-dashboard-reports-no-membership,
62
  .wpmud .box-dashboard-uptime-no-membership,
63
+ .wpmud .box-dashboard-smush-no-membership .sui-box-body,
64
+ .wpmud .box-dashboard-browser-caching-module .sui-box-body,
65
  .wpmud .box-reporting-summary .wphb-reporting-no-membership,
66
  .wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {
67
  background: #fff no-repeat 30px 100%;
68
  padding-bottom: 30px !important;
69
  }
70
 
71
+ .wpmud .box-dashboard-reports-no-membership .sui-box-body,
72
+ .wpmud .box-dashboard-uptime-no-membership .sui-box-body {
73
  padding: 30px 30px 0 !important;
74
  }
75
 
79
  .wpmud .box-dashboard-uptime-no-membership {
80
  background-image: url("#{$image--path}/hb-graphic-upsell-uptime.png");
81
  }
82
+ .wpmud .box-dashboard-smush-no-membership .sui-box-body {
83
  background-image: url("#{$image--path}/smush-share-widget.png");
84
  }
85
+ .wpmud .box-dashboard-browser-caching-module .sui-box-body {
86
  background-image: url("#{$image--path}/graphic-hb-cf-sell@2x.png");
87
  background-size: 107px 148px;
88
  }
95
  background-size: 100px 126px;
96
  }
97
 
98
+ .wpmud .box-dashboard-browser-caching-module .sui-box-body.no-background-image {
99
  background-image: none;
100
  }
101
 
107
  only screen and (min-resolution: 2dppx) {
108
  .wpmud .box-dashboard-reports-no-membership,
109
  .wpmud .box-dashboard-uptime-no-membership,
110
+ .wpmud .box-dashboard-smush-no-membership .sui-box-body {
111
  background-size: 107px 148px;
112
  }
113
  .wpmud .box-dashboard-reports-no-membership {
116
  .wpmud .box-dashboard-uptime-no-membership {
117
  background-image: url("#{$image--path}/hb-graphic-upsell-uptime@2x.png");
118
  }
119
+ .wpmud .box-dashboard-smush-no-membership .sui-box-body {
120
  background-image: url("#{$image--path}/smush-share-widget@2x.png");
121
  }
122
  .wpmud .box-reporting-summary .wphb-reporting-no-membership {
135
  line-height: 30px;
136
  display: flex;
137
  }
138
+ .wpmud .box-dashboard-performance-module {
139
+ .sui-accordion {
140
+ &.sui-table {
141
+ th {
142
+ @media (max-width: 783px) {
143
+ padding: 0 15px 0 20px;
144
+ }
145
+ }
146
+ }
147
+ th {
148
+ color: #333333;
149
+ font-size: 13px;
150
+ font-weight: bold;
151
+ line-height: 30px;
152
+ padding-top: 0;
153
+ padding-bottom: 0;
154
+ }
155
+ .sui-accordion-item {
156
+ &:hover {
157
+ cursor: default;
158
+ background-color: transparent;
159
+ }
160
+ .sui-button {
161
+ @media (max-width: 783px) {
162
+ margin-right: 20px;
163
+ }
164
+ }
165
+ }
166
+ td.sui-accordion-item-title {
167
+ font-size: 13px;
168
+ color: #333333;
169
+ font-weight: 500;
170
+ line-height: 16px;
171
+
172
+ i {
173
+ font-size: 16px;
174
+ }
175
+ }
176
+ &:after {
177
+ margin-bottom: 0;
178
+ }
179
+ }
180
+ }
181
 
182
  .wpmud .wphb-border-frame .wphb-caching-summary-item-type,
183
  .wpmud .wphb-border-frame .wphb-gzip-summary-item-type,
235
  }
236
 
237
  /* Status text on dashboard meta boxes */
238
+ .wpmud .sui-box .status-text {
239
  color: #888888;
240
  font-size: 13px;
241
  line-height: 22px;
242
  margin-top: 5px;
243
  }
244
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
 
246
  /* Dashbard: Cloudflare */
247
  #wphb-box-dashboard-cloudflare .wphb-block-entry .wphb-block-entry-content {
633
  }
634
  }
635
 
 
 
 
 
 
636
 
637
  @include bp(phone) {
638
  .wpmud .box-dashboard-minification-module .wphb-pills {
644
  margin-right: 5px;
645
  }
646
 
647
+ .wpmud .box-dashboard-performance-module .sui-accordion .sui-button-ghost {
648
  padding: 5px 6px 7px !important;
649
  }
650
 
665
  width: 65px;
666
  }
667
 
668
+ .wpmud .sui-box .status-text {
669
  line-height: 15px;
670
  margin-top: 0;
671
  padding-left: 10px;
672
  word-wrap: break-word;
673
+ max-width: 175px;
674
  }
675
 
676
  /* notices */
_src/scss/modules/_minification.scss CHANGED
@@ -12,7 +12,7 @@
12
  justify-content: flex-end;
13
  height: 40px;
14
  }
15
- .wpmud .wphb-modal .checkbox-group {
16
  justify-content: flex-start;
17
  }
18
 
@@ -52,18 +52,18 @@
52
  }
53
 
54
  /* Modal window */
55
- .wpmud .wphb-modal .checkbox-group {
56
  width: 100%;
57
  height: 52px;
58
  }
59
 
60
- .wpmud .wphb-modal .checkbox-group input[type="checkbox"] + label {
61
  padding: 10px 10px;
62
  width: 70px;
63
  height: 50px;
64
  }
65
 
66
- .wpmud .wphb-modal .wphb-progress-state {
67
  text-align: left;
68
  margin-top: 0;
69
  }
@@ -94,6 +94,10 @@
94
  margin-right: 8px;
95
  }
96
 
 
 
 
 
97
  /* Overwrite for advanced view */
98
  .wpmud .wphb-minification-advanced-group input[type="checkbox"] + label > [class^="hb-"]:before,
99
  .wpmud .wphb-modal input[type="checkbox"] + label > [class^="hb-"]:before {
@@ -161,14 +165,29 @@
161
  width: 60px;
162
  }
163
 
164
- .wpmud .box-minification-enqueued-files .box-title .wphb-switch-button > i {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  color: #AAAAAA;
166
  font-size: 20px;
167
- left: 50%;
168
- margin-left: -10px;
169
- margin-top: -10px;
170
  position: absolute;
171
- top: 50%;
172
  }
173
 
174
  .wpmud .box-minification-enqueued-files .box-title-advanced .wphb-switch-button > i {
@@ -313,22 +332,24 @@
313
  text-decoration: line-through;
314
  }
315
 
316
- .wpmud .wphb-minification-file-info > .dev-icon-caret_down,
317
  .wpmud .wphb-minification-file-info > .compressed-size {
318
  color: #1ABC9C;
319
  }
320
 
321
- .wpmud .wphb-minification-file-info > .dev-icon-caret_down {
322
- font-size: 12px;
323
- letter-spacing: -3px;
324
- margin-left: -3px;
325
  position: relative;
326
- top: 2px;
327
  }
328
 
329
  /* Advanced minification section */
330
  .wpmud .wphb-minification-filter-buttons {
331
  padding: 0 30px 20px;
 
 
 
 
332
  }
333
 
334
  .wpmud .wphb-minification-files-select {
@@ -336,6 +357,12 @@
336
  align-items: center;
337
  align-content: center;
338
  margin: 0 50px;
 
 
 
 
 
 
339
  }
340
 
341
  .wpmud .wphb-minification-files-select h3 {
@@ -350,6 +377,7 @@
350
  float: left;
351
  line-height: 30px;
352
  margin-right: 10px;
 
353
  }
354
 
355
  .wpmud .wphb-minification-exclude {
@@ -360,6 +388,7 @@
360
  .wpmud .wphb-minification-filter {
361
  background-color: #FFFFFF;
362
  padding: 0 30px;
 
363
  }
364
 
365
  .wpmud .wphb-minification-filter > div {
@@ -409,6 +438,10 @@
409
  opacity: 0.4;
410
  }
411
 
 
 
 
 
412
  .wpmud .wphb-border-row.disabled .wphb-minification-file-info > span {
413
  color: #AAA;
414
  }
@@ -508,6 +541,10 @@
508
  z-index: 100;
509
  }
510
 
 
 
 
 
511
  .wpmud .wphb-minification-files-advanced .wphb-minification-advanced-group {
512
  float: left;
513
  }
@@ -550,7 +587,7 @@
550
  }
551
 
552
  .wpmud .wphb-minification-files-header {
553
- padding: 15px 30px;
554
  }
555
 
556
  .wpmud .box-minification-enqueued-files .buttons .button {
12
  justify-content: flex-end;
13
  height: 40px;
14
  }
15
+ .wpmud .sui-dialog .checkbox-group {
16
  justify-content: flex-start;
17
  }
18
 
52
  }
53
 
54
  /* Modal window */
55
+ .wpmud .sui-dialog .checkbox-group {
56
  width: 100%;
57
  height: 52px;
58
  }
59
 
60
+ .wpmud .sui-dialog .checkbox-group input[type="checkbox"] + label {
61
  padding: 10px 10px;
62
  width: 70px;
63
  height: 50px;
64
  }
65
 
66
+ .wpmud .sui-dialog .wphb-progress-state {
67
  text-align: left;
68
  margin-top: 0;
69
  }
94
  margin-right: 8px;
95
  }
96
 
97
+ .wpmud .sui-dialog .checkbox-group input[type="checkbox"] + label > [class^="hb-"]:before {
98
+ margin-right: 0;
99
+ }
100
+
101
  /* Overwrite for advanced view */
102
  .wpmud .wphb-minification-advanced-group input[type="checkbox"] + label > [class^="hb-"]:before,
103
  .wpmud .wphb-modal input[type="checkbox"] + label > [class^="hb-"]:before {
165
  width: 60px;
166
  }
167
 
168
+ .wpmud .box-minification-enqueued-files .sui-box-header .wphb-heading-divider {
169
+ border-left: 1px solid #E6E6E6;
170
+ height: 62px;
171
+ margin-top: -21px;
172
+ margin-bottom: -22px;
173
+ margin-left: 10px;
174
+ }
175
+ .wpmud .box-minification-enqueued-files .sui-box-header .sui-button:last-child {
176
+ margin-right: 10px;
177
+ }
178
+ .wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button {
179
+ height: 60px;
180
+ width: 60px;
181
+ display: block;
182
+ margin: -15px -30px -15px 0px;
183
+ }
184
+
185
+ .wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button > i {
186
  color: #AAAAAA;
187
  font-size: 20px;
188
+ margin-left: 20px;
 
 
189
  position: absolute;
190
+ top: 18px;
191
  }
192
 
193
  .wpmud .box-minification-enqueued-files .box-title-advanced .wphb-switch-button > i {
332
  text-decoration: line-through;
333
  }
334
 
335
+ .wpmud .wphb-minification-file-info > .sui-icon-chevron-down:before,
336
  .wpmud .wphb-minification-file-info > .compressed-size {
337
  color: #1ABC9C;
338
  }
339
 
340
+ .wpmud .wphb-minification-file-info > .sui-icon-chevron-down:before {
341
+ font-size: 8px;
 
 
342
  position: relative;
343
+ top: 0;
344
  }
345
 
346
  /* Advanced minification section */
347
  .wpmud .wphb-minification-filter-buttons {
348
  padding: 0 30px 20px;
349
+ display: flex;
350
+ .sui-actions-left {
351
+ margin-left: 0;
352
+ }
353
  }
354
 
355
  .wpmud .wphb-minification-files-select {
357
  align-items: center;
358
  align-content: center;
359
  margin: 0 50px;
360
+ .sui-checkbox {
361
+ margin-right: 5px;
362
+ span {
363
+ margin-top: -4px;
364
+ }
365
+ }
366
  }
367
 
368
  .wpmud .wphb-minification-files-select h3 {
377
  float: left;
378
  line-height: 30px;
379
  margin-right: 10px;
380
+ margin-top: 4px;
381
  }
382
 
383
  .wpmud .wphb-minification-exclude {
388
  .wpmud .wphb-minification-filter {
389
  background-color: #FFFFFF;
390
  padding: 0 30px;
391
+ margin: 10px 30px;
392
  }
393
 
394
  .wpmud .wphb-minification-filter > div {
438
  opacity: 0.4;
439
  }
440
 
441
+ .wpmud .wphb-filename-extension-label {
442
+ line-height: 30px;
443
+ }
444
+
445
  .wpmud .wphb-border-row.disabled .wphb-minification-file-info > span {
446
  color: #AAA;
447
  }
541
  z-index: 100;
542
  }
543
 
544
+ .wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button > i {
545
+ margin-left: 15px;
546
+ }
547
+
548
  .wpmud .wphb-minification-files-advanced .wphb-minification-advanced-group {
549
  float: left;
550
  }
587
  }
588
 
589
  .wpmud .wphb-minification-files-header {
590
+ padding: 20px;
591
  }
592
 
593
  .wpmud .box-minification-enqueued-files .buttons .button {
_src/scss/modules/_performance.scss CHANGED
@@ -4,10 +4,8 @@
4
 
5
  @import "../common/mixins";
6
 
7
- .wpmud .performance-report-table {
8
- text-align: left;
9
- margin-top: 30px;
10
- overflow: hidden;
11
  }
12
 
13
  .wpmud .performance-report-table .wpdui-btn {
@@ -19,7 +17,15 @@
19
  .wpmud .performance-report-table .wpdui-btn:hover {
20
  color: #ffffff;
21
  }
22
-
 
 
 
 
 
 
 
 
23
  .wpmud .performance-report-table a,
24
  .wpmud .performance-report-table a:hover {
25
  color: #17A8E3;
@@ -63,7 +69,7 @@
63
  transition: color .3s;
64
  width: 130px;
65
  }
66
- .wpmud .performance-report-table .wphb-performance-report-item-type:first-letter {
67
  text-transform: capitalize;
68
  }
69
 
@@ -121,20 +127,13 @@
121
  padding: 0 !important;
122
  }
123
 
124
- .wpmud .dev-box-performance-report-additional-content {
125
- padding: 30px;
126
- margin: 0 30px 30px;
127
- border-radius: 5px;
128
- background-color: #FFFFFF;
129
- box-shadow: 0 2px 0 0 #EAEAEA;
130
- }
131
-
132
- .wpmud .dev-box-performance-report-additional-content h4:first-child {
133
  margin-top: 0;
134
  }
135
 
136
- .wpmud .wphb-performance-report-item-additional-content h4,
137
- .wpmud .wphb-performance-report-item-additional-content h5 {
 
138
  color: #333333;
139
  font-size: 13px;
140
  text-transform: none;
@@ -269,10 +268,12 @@
269
  border-radius: 4px 0 0 4px;
270
  border-right: 0;
271
  background-color: #F8F8F8;
 
272
  }
273
 
274
  .wpmud .wrap-wphb-performance .add-recipient #wphb-username-search {
275
  background-color: #F8F8F8;
 
276
  }
277
 
278
  .wpmud .wrap-wphb-performance .wphb-tag {
@@ -303,8 +304,8 @@
303
  .wpmud .list-table > tbody > tr > td.wphb-performance-report-item-type.disabled {
304
  padding-right: 30px;
305
  }
306
- .wpmud .performance-report-table .dev-box-performance-report-additional-content.disable-buttons a.wpdui-btn,
307
- .wpmud .performance-report-table .dev-box-performance-report-additional-content.disable-buttons a.button {
308
  display: none;
309
  }
310
 
@@ -377,8 +378,7 @@
377
  margin-right: 20px;
378
  }
379
 
380
- .wpmud .dev-box-performance-report-additional-content {
381
- margin: 0 20px 20px;
382
  padding: 15px 20px;
383
  }
384
  }
4
 
5
  @import "../common/mixins";
6
 
7
+ .wpmud .box-performance-welcome.sui-summary {
8
+ background-image: url("#{$image--path}/graphic-hb-minify-summary@2x.png");
 
 
9
  }
10
 
11
  .wpmud .performance-report-table .wpdui-btn {
17
  .wpmud .performance-report-table .wpdui-btn:hover {
18
  color: #ffffff;
19
  }
20
+ .wpmud .sui-dismissed .sui-circle-score svg circle:last-child {
21
+ stroke: #AAAAAA;
22
+ }
23
+ .wpmud .sui-accordion-item.sui-dismissed {
24
+ border-left: 2px solid #AAAAAA;
25
+ }
26
+ .wpmud .sui-button.wphb-disabled-test:last-child {
27
+ margin-right: 10px;
28
+ }
29
  .wpmud .performance-report-table a,
30
  .wpmud .performance-report-table a:hover {
31
  color: #17A8E3;
69
  transition: color .3s;
70
  width: 130px;
71
  }
72
+ .wpmud .wphb-performance-report-item-type:first-letter {
73
  text-transform: capitalize;
74
  }
75
 
127
  padding: 0 !important;
128
  }
129
 
130
+ .wpmud .sui-box-performance-report-additional-content h4:first-child {
 
 
 
 
 
 
 
 
131
  margin-top: 0;
132
  }
133
 
134
+ .wpmud .sui-box-performance-report-additional-content h4,
135
+ .wpmud .sui-box-performance-report-additional-content h5 {
136
+ font-family: 'Roboto', sans-serif;
137
  color: #333333;
138
  font-size: 13px;
139
  text-transform: none;
268
  border-radius: 4px 0 0 4px;
269
  border-right: 0;
270
  background-color: #F8F8F8;
271
+ margin: 0;
272
  }
273
 
274
  .wpmud .wrap-wphb-performance .add-recipient #wphb-username-search {
275
  background-color: #F8F8F8;
276
+ margin: 0;
277
  }
278
 
279
  .wpmud .wrap-wphb-performance .wphb-tag {
304
  .wpmud .list-table > tbody > tr > td.wphb-performance-report-item-type.disabled {
305
  padding-right: 30px;
306
  }
307
+ .wpmud .sui-box-performance-report-additional-content.disable-buttons a.wpdui-btn,
308
+ .wpmud .sui-box-performance-report-additional-content.disable-buttons a.button {
309
  display: none;
310
  }
311
 
378
  margin-right: 20px;
379
  }
380
 
381
+ .wpmud .sui-box-performance-report-additional-content {
 
382
  padding: 15px 20px;
383
  }
384
  }
_src/scss/modules/_uptime.scss CHANGED
@@ -4,11 +4,19 @@
4
 
5
  @import "../common/variables";
6
 
7
- .wpmud .wrap-wphb-uptime > #header .actions.status {
8
- left: 120px;
9
- margin-top: 1px !important;
 
 
 
 
 
 
 
 
 
10
  }
11
-
12
  .wpmud .wphb-block-uptime-status .wphb-uptime-icon {
13
  max-height: 110px;
14
  }
@@ -130,21 +138,25 @@
130
  .wpmud .wrap-wphb-uptime .dev-list-stats-item {
131
  margin-bottom: 10px;
132
  }
133
- .wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_up,
134
- .wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_down {
135
- color: #FFFFFF;
136
  padding: 6px;
137
  margin-right: 10px;
138
  vertical-align: middle;
139
  border-radius: 5px;
140
- font-size: 18px;
 
 
 
 
 
141
  }
142
 
143
- .wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_down {
144
  background-color: #FF6D6D;
145
  }
146
 
147
- .wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_up {
148
  background-color: #1ABC9C;
149
  }
150
 
@@ -228,10 +240,11 @@
228
  }
229
 
230
  @include bp(phone-large) {
231
- .wpmud .uptime-data-range {
232
  position: absolute;
233
- top: -50px;
234
  right: 0;
 
235
  }
236
 
237
  .wpmud .uptime-data-range .select-list-container {
@@ -260,8 +273,8 @@
260
  border-radius: 5px 0 5px 5px !important;
261
  }
262
 
263
- .wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_down,
264
- .wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_up {
265
  padding: 4px;
266
  border-radius: 4px;
267
  font-size: 12px;
4
 
5
  @import "../common/variables";
6
 
7
+ .sui-header .sui-actions-right {
8
+ label,
9
+ .select-container {
10
+ margin-right: 10px;
11
+ }
12
+ label {
13
+ font-size: 12px;
14
+ color: #aaa;
15
+ }
16
+ }
17
+ .wpmud .box-uptime-summary .sui-summary {
18
+ background-image: url("#{$image--path}/hb-graphic-uptime-up@2x.png");
19
  }
 
20
  .wpmud .wphb-block-uptime-status .wphb-uptime-icon {
21
  max-height: 110px;
22
  }
138
  .wpmud .wrap-wphb-uptime .dev-list-stats-item {
139
  margin-bottom: 10px;
140
  }
141
+ .wpmud .box-uptime-downtime .sui-icon-chevron-up,
142
+ .wpmud .box-uptime-downtime .sui-icon-chevron-down {
 
143
  padding: 6px;
144
  margin-right: 10px;
145
  vertical-align: middle;
146
  border-radius: 5px;
147
+ font-size: 15px;
148
+ line-height: 10px;
149
+ &:before {
150
+ color: #FFFFFF;
151
+
152
+ }
153
  }
154
 
155
+ .wpmud .box-uptime-downtime .sui-icon-chevron-down {
156
  background-color: #FF6D6D;
157
  }
158
 
159
+ .wpmud .box-uptime-downtime .sui-icon-chevron-up {
160
  background-color: #1ABC9C;
161
  }
162
 
240
  }
241
 
242
  @include bp(phone-large) {
243
+ .wpmud .select-container.uptime-data-range {
244
  position: absolute;
245
+ top: 0;
246
  right: 0;
247
+ margin-right: 0;
248
  }
249
 
250
  .wpmud .uptime-data-range .select-list-container {
273
  border-radius: 5px 0 5px 5px !important;
274
  }
275
 
276
+ .wpmud .box-uptime-downtime .sui-icon-chevron-down,
277
+ .wpmud .box-uptime-downtime .sui-icon-chevron-up {
278
  padding: 4px;
279
  border-radius: 4px;
280
  font-size: 12px;
_src/scss/shared-ui.scss ADDED
@@ -0,0 +1 @@
 
1
+ @import "~@wpmudev/shared-ui/scss/shared-ui.scss";
admin/abstract-class-admin-page.php CHANGED
@@ -1,16 +1,41 @@
1
  <?php
2
 
 
 
 
3
  abstract class WP_Hummingbird_Admin_Page {
4
 
 
 
 
 
 
5
  protected $slug = '';
6
 
 
 
 
 
 
7
  protected $meta_boxes = array();
8
 
 
 
 
 
 
9
  protected $tabs = array();
10
 
 
 
 
 
 
11
  public $page_id = null;
12
 
13
  /**
 
 
14
  * @var WP_Hummingbird_Admin_Notices
15
  */
16
  protected $admin_notices;
@@ -74,11 +99,11 @@ abstract class WP_Hummingbird_Admin_Page {
74
  }
75
 
76
  /**
77
- * Load an admin view
78
  *
79
- * @param $name
80
- * @param array $args
81
- * @param bool $echo
82
  *
83
  * @return string
84
  */
@@ -90,10 +115,6 @@ abstract class WP_Hummingbird_Admin_Page {
90
 
91
  ob_start();
92
 
93
- if ( class_exists( 'WDEV_Plugin_Ui' ) ) {
94
- WDEV_Plugin_Ui::output();
95
- }
96
-
97
  if ( isset( $args['id'] ) ) {
98
  $args['orig_id'] = $args['id'];
99
  $args['id'] = str_replace( '/', '-', $args['id'] );
@@ -113,6 +134,13 @@ abstract class WP_Hummingbird_Admin_Page {
113
  echo $content;
114
  }
115
 
 
 
 
 
 
 
 
116
  protected function view_exists( $name ) {
117
  $file = WPHB_DIR_PATH . "admin/views/{$name}.php";
118
  return is_file( $file );
@@ -125,8 +153,28 @@ abstract class WP_Hummingbird_Admin_Page {
125
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
126
  add_action( 'admin_notices', array( $this, 'notices' ) );
127
  add_action( 'network_admin_notices', array( $this, 'notices' ) );
 
 
 
128
  }
129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
130
  public function notices() {}
131
 
132
  /**
@@ -134,18 +182,36 @@ abstract class WP_Hummingbird_Admin_Page {
134
  */
135
  public function on_load() {}
136
 
 
 
 
 
 
137
  public function enqueue_scripts( $hook ) {
138
- /* Enqueue Dashboard UI Shared Lib */
139
- WDEV_Plugin_Ui::load( WPHB_DIR_URL . 'externals/shared-ui' );
140
 
141
- // Styles
142
- wp_enqueue_style( 'wphb-admin', WPHB_DIR_URL . 'admin/assets/css/app.css', array(), WPHB_VERSION );
143
 
144
- // Scripts
145
  WP_Hummingbird_Utils::enqueue_admin_scripts( WPHB_VERSION );
 
 
 
 
 
 
 
146
 
147
- // TODO: remove this once it's fixed in Smush
148
- wp_dequeue_style( 'wp-smushit-admin-css' );
 
 
 
 
 
 
149
  }
150
 
151
  /**
@@ -154,20 +220,22 @@ abstract class WP_Hummingbird_Admin_Page {
154
  public function register_meta_boxes() {}
155
 
156
  /**
157
- * @param $id
158
- * @param $title
159
- * @param callable|string|null $callback
160
- * @param callable|string|null $callback_header
161
- * @param callable|string|null $callback_footer
162
- * @param string $context
163
- * @param array $args
 
 
164
  */
165
  public function add_meta_box( $id, $title, $callback = '', $callback_header = '', $callback_footer = '', $context = 'main', $args = array() ) {
166
  $default_args = array(
167
- 'box_class' => 'dev-box',
168
- 'box_header_class' => 'box-title',
169
- 'box_content_class' => 'box-content',
170
- 'box_footer_class' => 'box-footer',
171
  );
172
 
173
  $args = wp_parse_args( $args, $default_args );
@@ -209,8 +277,9 @@ abstract class WP_Hummingbird_Admin_Page {
209
  }
210
 
211
  /**
212
- * Render
213
- * @param string $context
 
214
  */
215
  protected function do_meta_boxes( $context = 'main' ) {
216
  if ( empty( $this->meta_boxes[ $this->slug ][ $context ] ) ) {
@@ -233,9 +302,9 @@ abstract class WP_Hummingbird_Admin_Page {
233
  }
234
 
235
  /**
236
- * Check if there is any meta box for a given context
237
  *
238
- * @param $context
239
  *
240
  * @return bool
241
  */
@@ -249,14 +318,15 @@ abstract class WP_Hummingbird_Admin_Page {
249
  */
250
  protected function render_header() {
251
  ?>
252
- <section id="header">
253
  <h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
254
- <div class="actions">
255
- <a href="<?php echo esc_url( WP_Hummingbird_Utils::get_documentation_url( $this->slug, $this->get_current_tab() ) ); ?>" target="_blank" class="button button-ghost documentation-button">
 
256
  <?php esc_html_e( 'View Documentation', 'wphb' ); ?>
257
  </a>
258
  </div>
259
- </section><!-- end header -->
260
  <?php
261
  }
262
 
@@ -265,9 +335,9 @@ abstract class WP_Hummingbird_Admin_Page {
265
  */
266
  public function render() {
267
  ?>
268
- <div id="container" class="wrap wrap-wp-hummingbird wrap-wp-hummingbird-page <?php echo 'wrap-' . $this->slug; ?>">
269
  <?php
270
- if ( isset( $_GET['updated'] ) ) {
271
  $this->admin_notices->show( 'updated', __( 'Settings Updated', 'wphb' ), 'success' );
272
  }
273
 
@@ -275,16 +345,18 @@ abstract class WP_Hummingbird_Admin_Page {
275
 
276
  $this->render_inner_content();
277
  ?>
278
- <div class="footer-love">
279
- <?php printf( __( 'Made with %s by WPMU DEV', 'wphb' ), '<span class="dashicons-heart dashicons"></span>' ); ?>
 
 
 
 
 
 
280
  </div>
281
  </div><!-- end container -->
282
 
283
  <script>
284
- jQuery(document).ready( function() {
285
- window.WPHB_Admin.getModule( 'notices' );
286
- });
287
-
288
  // Avoid moving dashboard notice under h2
289
  var wpmuDash = document.getElementById( 'wpmu-install-dashboard' );
290
  if ( wpmuDash )
@@ -295,6 +367,9 @@ abstract class WP_Hummingbird_Admin_Page {
295
  <?php
296
  }
297
 
 
 
 
298
  protected function render_inner_content() {
299
  $this->view( $this->slug . '-page' );
300
  }
@@ -334,8 +409,8 @@ abstract class WP_Hummingbird_Admin_Page {
334
  */
335
  public function get_current_tab() {
336
  $tabs = $this->get_tabs();
337
- if ( isset( $_GET['view'] ) && array_key_exists( $_GET['view'], $tabs ) ) {
338
- return $_GET['view'];
339
  }
340
 
341
  if ( empty( $tabs ) ) {
@@ -367,7 +442,7 @@ abstract class WP_Hummingbird_Admin_Page {
367
  /**
368
  * Get a tab URL
369
  *
370
- * @param $tab
371
  *
372
  * @return string
373
  */
@@ -387,7 +462,7 @@ abstract class WP_Hummingbird_Admin_Page {
387
  /**
388
  * Return the name of a tab
389
  *
390
- * @param $tab
391
  *
392
  * @return mixed|string
393
  */
1
  <?php
2
 
3
+ /**
4
+ * Class WP_Hummingbird_Admin_Page
5
+ */
6
  abstract class WP_Hummingbird_Admin_Page {
7
 
8
+ /**
9
+ * Page slug.
10
+ *
11
+ * @var string
12
+ */
13
  protected $slug = '';
14
 
15
+ /**
16
+ * Meta boxes array.
17
+ *
18
+ * @var array
19
+ */
20
  protected $meta_boxes = array();
21
 
22
+ /**
23
+ * Submenu tabs.
24
+ *
25
+ * @var array
26
+ */
27
  protected $tabs = array();
28
 
29
+ /**
30
+ * Page ID.
31
+ *
32
+ * @var false|null|string
33
+ */
34
  public $page_id = null;
35
 
36
  /**
37
+ * Admin notices.
38
+ *
39
  * @var WP_Hummingbird_Admin_Notices
40
  */
41
  protected $admin_notices;
99
  }
100
 
101
  /**
102
+ * Load an admin view.
103
  *
104
+ * @param string $name View name = file name.
105
+ * @param array $args Arguments.
106
+ * @param bool $echo Echo or return.
107
  *
108
  * @return string
109
  */
115
 
116
  ob_start();
117
 
 
 
 
 
118
  if ( isset( $args['id'] ) ) {
119
  $args['orig_id'] = $args['id'];
120
  $args['id'] = str_replace( '/', '-', $args['id'] );
134
  echo $content;
135
  }
136
 
137
+ /**
138
+ * Check if view exists.
139
+ *
140
+ * @param string $name View name = file name.
141
+ *
142
+ * @return bool
143
+ */
144
  protected function view_exists( $name ) {
145
  $file = WPHB_DIR_PATH . "admin/views/{$name}.php";
146
  return is_file( $file );
153
  add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
154
  add_action( 'admin_notices', array( $this, 'notices' ) );
155
  add_action( 'network_admin_notices', array( $this, 'notices' ) );
156
+
157
+ // Add the admin body classes.
158
+ add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) );
159
  }
160
 
161
+ /**
162
+ * Return the classes to be added to the body in the admin.
163
+ *
164
+ * @param String $classes Classes to be added.
165
+ * @return String
166
+ */
167
+ public function admin_body_class( $classes ) {
168
+
169
+ $classes .= ' sui-2-1-0 wpmud ';
170
+
171
+ return $classes;
172
+
173
+ }
174
+
175
+ /**
176
+ * Notices.
177
+ */
178
  public function notices() {}
179
 
180
  /**
182
  */
183
  public function on_load() {}
184
 
185
+ /**
186
+ * Enqueue scripts.
187
+ *
188
+ * @param string $hook Hook from where the call is made.
189
+ */
190
  public function enqueue_scripts( $hook ) {
191
+ // WPMU DEV Shared UI.
192
+ wp_enqueue_style( 'wpmudev-sui', plugins_url( 'admin/assets/css/shared-ui.min.css', __DIR__ ) );
193
 
194
+ // Styles.
195
+ wp_enqueue_style( 'wphb-admin', WPHB_DIR_URL . 'admin/assets/css/app.min.css', array(), WPHB_VERSION );
196
 
197
+ // Scripts.
198
  WP_Hummingbird_Utils::enqueue_admin_scripts( WPHB_VERSION );
199
+ wp_enqueue_script(
200
+ 'wpmudev-sui',
201
+ plugins_url( 'admin/assets/js/shared-ui.min.js', __DIR__ ),
202
+ array( 'jquery' ),
203
+ null,
204
+ true
205
+ );
206
 
207
+ // Google visualization library for Uptime.
208
+ if ( 'hummingbird-pro_page_wphb-uptime' === $hook ) {
209
+ wp_enqueue_script(
210
+ 'wphb-google-chart',
211
+ "https://www.google.com/jsapi?autoload={'modules':[{'name':'visualization','version':'1.1','packages':['corechart','timeline']}]}",
212
+ array( 'jquery' )
213
+ );
214
+ }
215
  }
216
 
217
  /**
220
  public function register_meta_boxes() {}
221
 
222
  /**
223
+ * Add meta box.
224
+ *
225
+ * @param string $id Meta box ID.
226
+ * @param string $title Meta box title.
227
+ * @param string $callback Callback for meta box content.
228
+ * @param string $callback_header Callback for meta box header.
229
+ * @param string $callback_footer Callback for meta box footer.
230
+ * @param string $context Meta box context.
231
+ * @param array $args Arguments.
232
  */
233
  public function add_meta_box( $id, $title, $callback = '', $callback_header = '', $callback_footer = '', $context = 'main', $args = array() ) {
234
  $default_args = array(
235
+ 'box_class' => 'sui-box',
236
+ 'box_header_class' => 'sui-box-header',
237
+ 'box_content_class' => 'sui-box-body',
238
+ 'box_footer_class' => 'sui-box-footer',
239
  );
240
 
241
  $args = wp_parse_args( $args, $default_args );
277
  }
278
 
279
  /**
280
+ * Render meta box.
281
+ *
282
+ * @param string $context Meta box context. Default: main.
283
  */
284
  protected function do_meta_boxes( $context = 'main' ) {
285
  if ( empty( $this->meta_boxes[ $this->slug ][ $context ] ) ) {
302
  }
303
 
304
  /**
305
+ * Check if there is any meta box for a given context.
306
  *
307
+ * @param string $context Meta box context.
308
  *
309
  * @return bool
310
  */
318
  */
319
  protected function render_header() {
320
  ?>
321
+ <div class="sui-header">
322
  <h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
323
+ <div class="sui-actions-right">
324
+ <a href="<?php echo esc_url( WP_Hummingbird_Utils::get_documentation_url( $this->slug, $this->get_current_tab() ) ); ?>" target="_blank" class="sui-button sui-button-ghost">
325
+ <i class="sui-icon-academy" aria-hidden="true"></i>
326
  <?php esc_html_e( 'View Documentation', 'wphb' ); ?>
327
  </a>
328
  </div>
329
+ </div><!-- end header -->
330
  <?php
331
  }
332
 
335
  */
336
  public function render() {
337
  ?>
338
+ <div class="sui-wrap wrap wrap-wp-hummingbird wrap-wp-hummingbird-page <?php echo 'wrap-' . esc_attr( $this->slug ); ?>">
339
  <?php
340
+ if ( isset( $_GET['updated'] ) ) { // Input var ok.
341
  $this->admin_notices->show( 'updated', __( 'Settings Updated', 'wphb' ), 'success' );
342
  }
343
 
345
 
346
  $this->render_inner_content();
347
  ?>
348
+ <div class="sui-footer">
349
+ <?php
350
+ printf(
351
+ /* translators: %s - icon */
352
+ esc_html__( 'Made with %s by WPMU DEV', 'wphb' ),
353
+ '<i aria-hidden="true" class="sui-icon-heart"></i>'
354
+ );
355
+ ?>
356
  </div>
357
  </div><!-- end container -->
358
 
359
  <script>
 
 
 
 
360
  // Avoid moving dashboard notice under h2
361
  var wpmuDash = document.getElementById( 'wpmu-install-dashboard' );
362
  if ( wpmuDash )
367
  <?php
368
  }
369
 
370
+ /**
371
+ * Render inner content.
372
+ */
373
  protected function render_inner_content() {
374
  $this->view( $this->slug . '-page' );
375
  }
409
  */
410
  public function get_current_tab() {
411
  $tabs = $this->get_tabs();
412
+ if ( isset( $_GET['view'] ) && array_key_exists( wp_unslash( $_GET['view'] ), $tabs ) ) { // Input var ok.
413
+ return wp_unslash( $_GET['view'] ); // Input var ok.
414
  }
415
 
416
  if ( empty( $tabs ) ) {
442
  /**
443
  * Get a tab URL
444
  *
445
+ * @param string $tab Tab ID.
446
  *
447
  * @return string
448
  */
462
  /**
463
  * Return the name of a tab
464
  *
465
+ * @param string $tab Tab ID.
466
  *
467
  * @return mixed|string
468
  */
admin/assets/css/app.css DELETED
@@ -1,2 +0,0 @@
1
- .hidden{display:none}.cf:after{content:"";display:table;clear:both}.wpmud .wrap-wp-hummingbird .clear{padding:0}@media screen and (min-width:960px){.hide-on-large{display:none}}@media only screen and (max-width:1200px){.hide-to-large{display:none}}@media only screen and (max-width:600px){.hide-to-mobile{display:none!important}}@media only screen and (max-width:960px){.hide-on-mobile{display:none}}button.notice-dismiss{position:absolute;top:0;right:1px;border:none!important;margin:0!important;padding:9px!important;background:none!important;color:#72777c!important;cursor:pointer!important}.wpmud #header .actions .button+.button{margin-left:10px}.wpmud .wphb-dismiss{float:right}.wpmud #wpbody-content>.notice{margin:5px 20px 2px 5px}.wpmud [tooltip].tooltip-bottom:before{margin-top:2px}.wpmud [tooltip].tooltip-bottom:after{margin-top:12px}.wpmud .list-table>tbody>tr>td{z-index:0}.wpmud [tooltip].tooltip-s.tooltip-right:after{margin-left:-150px}.wpmud .wrap-wp-hummingbird a:not(".wdpun-button"){color:#17a8e3}.wpmud .wrap-wp-hummingbird strong{color:#333}.wpmud .dev-overlay .back{background-color:rgba(51,51,51,.95)}.wpmud .dev-overlay .box{padding:40px 30px 30px}.wpmud .dev-overlay .title .title-action{font-family:Roboto,sans-serif;margin-top:5px;vertical-align:middle;color:#888;font-size:13px;line-height:30px;margin-right:-20px}.wpmud .wrap-wp-hummingbird i.wdv-icon-chevron-down{color:#8a8a8a}.wpmud .select-container:not(.mobile-nav) i.wdv-icon-reorder:before{content:"\F078"}.wpmud .select-container:not(.mobile-nav){border:1px solid #e6e6e6;background-color:#f8f8f8}.wpmud .select-container:not(.mobile-nav) .dropdown-handle{background-color:#f8f8f8;color:#898989}.wpmud #wpmu-install-dashboard{margin-left:0}.wpmud #wpcontent #wpmu-install-dashboard *{-webkit-box-sizing:content-box;box-sizing:content-box}.wpmud #wpmu-install-dashboard .wpmu-message{font-family:inherit;font-weight:inherit;line-height:inherit}.wpmud .toggle .toggle-checkbox:checked+.toggle-label,.wpmud .toggle .toggle-checkbox:checked+.toggle-label:before{background-color:#17a8e3}.wpmud .toggle .toggle-label:before{background:#aaa}.wpmud .toggle .toggle-label{width:44px;text-align:left}.wpmud .toggle .toggle-checkbox:checked+.toggle-label:after{margin-left:24px}.wpmud .toggle .toggle-checkbox:checked:disabled+.toggle-label{background:transparent}.wpmud .toggle .toggle-checkbox:checked:disabled+.toggle-label:before{bottom:0;left:0;right:0;top:0}.wpmud .toggle .toggle-checkbox:checked:disabled+.toggle-label:after{margin-left:1px}.wpmud .toggle .toggle-label.small{width:36px;height:16px}.wpmud .toggle .toggle-label.small:after{width:14px;height:14px}.wpmud .toggle .toggle-checkbox:checked+.toggle-label.small:after{margin-left:21px}.wpmud .toggle .toggle-cross{color:#ddd}.wpmud .toggle-group{display:inline-block}.wpmud .toggle-item.bordered,.wpmud .wphb-block-entry.bordered{border-top:1px solid #e6e6e6;padding-top:30px}.wpmud .toggle-item.space-top-small{margin:15px 0 0}.wpmud .toggle-item label{text-align:left}.wpmud .toggle-item .toggle-item-group{display:table;width:100%}.wpmud .toggle-item .toggle-actions,.wpmud .toggle-item .toggle-info{display:table-cell}.wpmud .toggle-item .toggle-item-title{color:#555;font:400 15px/20px Roboto,Arial,sans-serif;margin:0}.wpmud .toggle-item .toggle-actions{padding-left:30px;vertical-align:middle;text-align:right}.wpmud .spinner.standalone{float:none;margin:0}.wpmud .spinner.left{float:left}.wpmud .spinner.hide{display:none}.wpmud .spinner.visible{visibility:visible}@media only screen and (max-width:960px){.wpmud .dev-overlay{left:35px;top:15px}}@media only screen and (max-width:783px){.wpmud .dev-overlay{left:0;top:0}}@font-face{font-family:Hummingbird;src:url(../fonts/hummingbird.eot);src:url(../fonts/hummingbird.eot#iefix) format("embedded-opentype"),url(../fonts/hummingbird.ttf) format("truetype"),url(../fonts/hummingbird.woff) format("woff"),url(../fonts/hummingbird.svg#hummingbird) format("svg");font-weight:400;font-style:normal}[class*=" hb-"],[class^=hb-]{font-family:Hummingbird,Arial,sans-serif!important;speak:none;font-size:15px;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.hb-fi-filter:before{content:"z"}.hb-fi-wand:before{content:"Z"}.hb-fi-settings-slider-control:before{content:"{"}.hb-icon-audit:before{content:"\E900"}.hb-wpmudev-icon-cross:before{content:"\E901"}.hb-wpmudev-icon-info:before{content:"\E902"}.hb-wpmudev-icon-tick:before{content:"\E903"}.hb-wpmudev-icon-warning:before{content:"\E904"}.hb-icon-cache:before{content:"\E905"}.hb-icon-cloudflare:before{content:"\E906"}.hb-icon-gzip:before{content:"\E907"}.hb-icon-minify-combine:before{content:"\E908"}.hb-icon-minify-defer:before{content:"\E909"}.hb-icon-minify-footer:before{content:"\E90A"}.hb-icon-minify:before{content:"\E90B"}.hb-icon-performancetest:before{content:"\E90C"}.hb-icon-reports:before{content:"\E90D"}.hb-icon-restore:before{content:"\E90E"}.hb-icon-smush:before{content:"\E90F"}.hb-icon-minify-inline:before{content:"\E910"}.hb-wpmudev-icon-eye:before{content:"\E911"}.hb-wpmudev-icon-wrench-tool:before{content:"\E912"}.hb-wpmudev-icon-profile-male:before{content:"\E913"}.hb-wpmudev-icon-page:before{content:"\E914"}.hb-wpmudev-icon-academy:before{content:"\E915"}.hb-fi-plugin-2:before{content:"O"}.hb-fi-arrow-right:before{content:"\AF"}.hb-fi-trash:before{content:"Q"}.wpmud .wphb-icon{position:relative}.wpmud .wphb-icon-left{display:block;float:left}.wpmud .wphb-dash-icon{font-size:12px;padding-right:2px}.wpmud .cf-dismiss{display:block;margin-top:6px}.wpmud .wphb-cf-notice .cf-dismiss a{text-transform:uppercase;text-decoration:none;color:#888}.wpmud .wrap-wp-hummingbird p{color:#666}.wpmud #header h1{color:#333;margin:0}.wpmud .dev-overlay .title h3{font-size:16px;color:#333}.wpmud .box-advanced-general h4,.wpmud .box-page-caching h4{color:#666;font-size:15px;font-weight:500;text-align:left;text-transform:none}.wpmud .box-content .buttons{margin-top:30px}.wpmud .box-content .buttons.buttons-on-left{text-align:left}.wpmud .box-content .buttons.buttons-on-right{text-align:right}.wpmud .box-footer .buttons.buttons-on-left{text-align:left}.wpmud .box-footer .buttons.buttons-on-right{text-align:right}.wpmud .wphb-notice:not(.notice) .buttons{margin:10px 30px 0}.wpmud #header .button[disabled]{background-color:#e6e6e6!important;border-radius:4px;color:#aaa!important}.wpmud .documentation-button:before{content:"\E915";color:#888;font-family:Hummingbird,Arial,sans-serif;font-size:12px;vertical-align:middle;line-height:16px;top:-2px;position:relative;margin-right:5px}.wpmud .documentation-button:focus:before,.wpmud .documentation-button:hover:before{color:#fff}.wpmud .wphb-modal .wphb-dialog-content .button{margin-bottom:15px}.wpmud .wphb-modal .alignleft,.wpmud .wphb-modal .button{margin-bottom:0!important}.wpmud .wphb-block-entry-content .buttons-group .button{display:inline-block}.wpmud .wrap-wp-hummingbird .report-status button{border-radius:20px!important;margin-top:10px!important;background-color:#d1f1ea!important;color:#1abc9c!important}.wpmud .wrap-wp-hummingbird .report-status button i{color:#1abc9c;font-size:16px;position:relative;line-height:10px;top:3px}.wpmud .wrap-wp-hummingbird .report-status button.inactive{background-color:#e6e6e6!important;color:#aaa!important}.wpmud .wrap-wphb-performance .scan-settings .buttons{margin-top:30px}.wpmud .wrap-wphb-performance .add-recipient>button{background-color:#888!important;border-radius:0 4px 4px 0!important}.wpmud .wrap-wphb-caching #enable-cache-wrap .button,.wpmud .wrap-wphb-gzip #enable-cache-wrap .button{margin-top:30px}.wpmud .wphb-code-snippet .button{position:absolute;left:100%;margin-left:-90px!important;margin-top:15px!important}.wpmud .box-caching-gravatar .button-large{margin:0!important}.wrap-wp-hummingbird .button-cta-green:hover{box-shadow:none}.wphb-scan-progress .wphb-scan-cancel-button{float:right;margin-top:-13px}.wphb-scan-progress .wphb-scan-cancel-button>a{font-size:12px;color:#aaa;text-transform:uppercase}.wpmud .wphb-modal .button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]),.wpmud .wphb-modal button:not(.wph-button):not(#collapse-button){background:#17a8e3}.wpmud .wphb-modal .button:not(.notice-dismiss),.wpmud .wrap-wp-hummingbird .button,.wpmud .wrap-wp-hummingbird .wpdui-btn,.wpmud .wrap-wp-hummingbird button:not(.notice-dismiss),.wpmud .wrap-wp-hummingbird button:not(.wph-button):not(#collapse-button):not(.notice-dismiss){font:500 12px/16px Roboto,Arial,sans-serif!important;padding:7px 16px;height:30px;background-color:#17a8e3;color:#fff;border-radius:3px;-moz-border-radius:3px;transition:all .3s ease;-webkit-transition:all .3s ease;text-shadow:none!important}.wpmud .wphb-modal .button:active,.wpmud .wphb-modal .button:focus,.wpmud .wphb-modal .button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]),.wpmud .wrap-wp-hummingbird .button:active,.wpmud .wrap-wp-hummingbird .button:focus,.wpmud .wrap-wp-hummingbird .button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]),.wpmud .wrap-wp-hummingbird button:active,.wpmud .wrap-wp-hummingbird button:focus,.wpmud .wrap-wp-hummingbird button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]):not(.notice-dismiss){background:#0a9bd6}.wpmud .wrap-wp-hummingbird .button-disabled{border-radius:15px;background-color:#f8f8f8;color:silver}.wpmud .wphb-modal .button.button-large,.wpmud .wrap-wp-hummingbird .button.button-large,.wpmud .wrap-wp-hummingbird .wpdui-btn--full,.wpmud .wrap-wp-hummingbird button.button-large,.wpmud .wrap-wp-hummingbird button.button-large:not(.wph-button):not(#collapse-button){font:500 15px/20px Roboto,Arial,sans-serif!important;height:40px!important;padding:11px 20px 9px}.wpmud .wphb-modal .button-ghost,.wpmud .wrap-wp-hummingbird .button-ghost,.wpmud .wrap-wp-hummingbird button.button-ghost:not(.wph-button):not(#collapse-button){padding:5px 16px 7px!important;background-color:transparent!important;border:2px solid #ddd;color:#888!important}.wpmud .wphb-modal .button-ghost:active,.wpmud .wphb-modal .button-ghost:focus,.wpmud .wphb-modal .button-ghost:hover:enabled,.wpmud .wphb-modal .button-ghost:hover:not(:focus):not(:active),.wpmud .wrap-wp-hummingbird .button-ghost.active,.wpmud .wrap-wp-hummingbird .button-ghost:active,.wpmud .wrap-wp-hummingbird .button-ghost:focus,.wpmud .wrap-wp-hummingbird .button-ghost:hover:enabled,.wpmud .wrap-wp-hummingbird .button-ghost:hover:not(:focus):not(:active),.wpmud .wrap-wp-hummingbird .button-grey:hover,.wpmud .wrap-wp-hummingbird button.button-ghost:hover:not(.wph-button):not(#collapse-button){background-color:#7b7b7b!important;border-color:#7b7b7b;color:#fff!important}.wpmud .wphb-modal .button-ghost.button-large,.wpmud .wrap-wp-hummingbird .button-ghost.button-large,.wpmud .wrap-wp-hummingbird button.button-ghost.button-large:not(.wph-button):not(#collapse-button){padding:9px 20px!important}.wpmud .wphb-modal .button-content-cta{box-shadow:none;background-color:#1abc9c!important;color:#fff}.wpmud .wrap-wp-hummingbird .button-content-cta{box-shadow:none;background-color:#1abc9c;color:#fff}.wpmud .wphb-modal .button-content-cta:active,.wpmud .wphb-modal .button-content-cta:focus,.wpmud .wphb-modal .button-content-cta:hover:not(:focus):not(:active),.wpmud .wrap-wp-hummingbird .button-content-cta:active,.wpmud .wrap-wp-hummingbird .button-content-cta:focus,.wpmud .wrap-wp-hummingbird .button-content-cta:hover:not(:focus):not(:active){background:#0daf8f!important;border-color:#0daf8f}.wpmud .wrap-wp-hummingbird .button-content-cta.button-ghost{background:transparent;color:#1abc9c!important;border-color:#1abc9c;border-radius:20px}.wpmud .wrap-wp-hummingbird .button-content-cta.button-ghost:active{color:#fff!important;border-color:#0daf8f}.wpmud .wrap-wp-hummingbird .button-notice{background-color:#e6e6e6!important;color:#aaa!important}.wpmud .wphb-modal .button-grey,.wpmud .wrap-wp-hummingbird .button-grey,.wpmud .wrap-wp-hummingbird .button-notice:active,.wpmud .wrap-wp-hummingbird .button-notice:focus,.wpmud .wrap-wp-hummingbird .button-notice:hover:not(:focus):not(:active),.wpmud .wrap-wp-hummingbird .button-notice:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]){background-color:#888!important;color:#fff!important}.wrap-wp-hummingbird .button-load-more{background-color:transparent;border:1px solid #ddd;border-radius:50%;color:#bababa;font-family:Roboto Condensed,Roboto,Arial,sans-serif;font-size:13px;font-weight:700;line-height:18px;height:140px;padding:0;transition:color .4s,background-color .4s;width:140px}.wrap-wp-hummingbird .button-load-more:hover:not(:focus):not(:active){background-color:#fafafa;border-color:#ddd;color:#777771}.wrap-wp-hummingbird .button-load-more:active,.wrap-wp-hummingbird .button-load-more:focus{background:#777771}@media only screen and (max-width:480px){.wpmud .box-content .buttons{margin-top:0}}.wpmud .row{margin-top:30px}.wpmud .box-content .row:first-of-type{margin-top:0}.wpmud .row-space-large{margin-bottom:40px}.wpmud .row .col-center{display:block;margin-right:auto;margin-left:auto}.wpmud .row .col-fifth,.wpmud .row .col-four-fifths,.wpmud .row .col-quarter,.wpmud .row .col-three-quarters{display:table-cell;padding:0 15px;position:relative;vertical-align:top}.wpmud .row .col-quarter{width:25%}.wpmud .row .col-three-quarters{width:75%}.wpmud .row .col-fifth{width:20%}.wpmud .row .col-four-fifths{width:80%}.wpmud .row .col-four-fifths.hidden{display:none}.wpmud .row .col-fifth:first-child,.wpmud .row .col-four-fifths:first-child,.wpmud .row .col-quarter:first-child,.wpmud .row .col-three-quarters:first-child{padding-left:0}.wpmud .row .col-fifth:last-child,.wpmud .row .col-four-fifths:last-child,.wpmud .row .col-quarter:last-child,.wpmud .row .col-three-quarters:last-child{padding-right:0}.wpmud .dev-box{padding:0}.wpmud .dev-box:last-child{margin-bottom:0}.wpmud .dev-box .box-title{clear:both;height:inherit;margin:0;padding:0 30px}.wpmud .dev-box .box-title h3{font-size:16px;color:#333;float:left}.wpmud .dev-box .box-title .wphb-label-notice-inline{margin:2px 15px}.wpmud .dev-box .box-title:after{content:"";display:table;clear:both}.wpmud .dev-box .box-title .extra{float:right}.wpmud .dev-box .box-title .extra-text{margin:20px 0 0}.wpmud .dev-box .box-title .extra-label{display:inline-block;margin:0;line-height:20px}.wpmud .dev-box .box-title .extra-label-value{color:#477b92;font-weight:400;text-transform:uppercase}.wpmud .dev-box .box-title .wphb-select-group{margin:10px 0 0}.wpmud .dev-box .box-title .test-results{float:right;margin-top:15px}.wpmud .dev-box .box-title .test-results-label{display:block;float:left;font-family:Roboto Condensed,Roboto,Arial,sans-serif;font-weight:700;line-height:30px;margin-right:10px;text-transform:uppercase}.wpmud .dev-box .box-title .test-results .wphb-score{display:block;float:left}.wpmud .dev-box .box-title .toggle-group{margin:6px 15px 0 0}.wpmud .dev-box .box-content{padding:30px;word-wrap:break-word}.wpmud .dev-box .box-content>*{margin-bottom:20px}.wpmud .dev-box .box-content>:last-child{margin-bottom:0}.wpmud .dev-box .box-content .row-space-large{margin-bottom:40px}.wpmud .box-content.no-padding{padding:0!important}.wpmud .box-content.no-vertical-padding{padding-top:0!important;padding-bottom:0!important}.wpmud .box-content.no-side-padding,.wpmud .wphb-modal .no-side-padding{padding-right:0!important;padding-left:0!important}.wpmud .box-content .no-top-padding{padding-top:0!important}.wpmud .box-content .with-padding{padding:30px}.wpmud .box-content .add-side-padding{padding-right:30px;padding-left:30px}.wpmud .box-footer{margin-top:0;padding:30px;border-top:1px solid #eaeaea}.wpmud .wphb-block-section{margin-top:40px}.wpmud .wphb-block-section:first-child{margin-top:0}.wpmud .wphb-block-section-content *{color:#555;line-height:20px}.wpmud .content-box .wphb-block-entry-image-bottom{margin-bottom:-30px}.wpmud .content-box .wphb-block-entry-image-center{margin-top:30px}.wpmud .content-box .wphb-block-entry-image-center img{margin-left:auto;margin-right:auto}.wpmud .content-box-one-col-center .box-content{text-align:left}.wpmud .content-box-one-col-center .wphb-block-entry-content{margin:0 auto}.wpmud .content-box-flex{display:flex;justify-content:space-between;align-items:flex-end}.wpmud .content-box-two-cols-image-left .box-content{text-align:left}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content,.wpmud .content-box-two-cols-image-left .wphb-block-entry-image{display:block}.wpmud .content-box-two-cols-image-left .wphb-block-entry-image{float:left;max-width:192px}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content{margin:30px 0 0 285px}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content .title{text-align:left}.wpmud .wphb-block+.wphb-block{margin-top:30px}.wpmud .wphb-block-header{margin-bottom:30px}.wpmud .wphb-block-title{font-family:Roboto Condensed,Roboto,Arial,sans-serif;font-size:22px;line-height:26px;margin:0;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap}.wpmud .wphb-block-content+.wphb-block-content{margin-top:30px}.wpmud .wphb-block-content>:last-child{margin-bottom:0}.wpmud .wphb-block-content-center{text-align:center}.wpmud .wphb-block-content pre{font-weight:500;font-family:Roboto,Arial,sans-serif;font-size:13px;line-height:18px;background-color:#f8f8f8;border:1px solid #e6e6e6;border-radius:5px;margin:0;padding:20px 30px;white-space:pre;overflow-x:scroll;max-width:100%}.wpmud .wphb-block-content-blue{background-color:#e0f6ff;border-radius:5px;padding:20px 30px}.wpmud .wphb-block-content .toggle,.wpmud .wphb-block-content .toggle .toggle-label,.wpmud .wphb-block-content .tooltip-box{height:21px;vertical-align:top}.wpmud .wphb-block-content-group{border-collapse:separate;border-spacing:0;display:table;width:100%}.wpmud .wphb-block-content-group-inner{display:table-row}.wpmud .wphb-block-content-group-item{display:table-cell;vertical-align:middle;width:100%}.wpmud .wphb-block-content-group-item .wphb-block-content{margin-left:30px}.wpmud .wphb-block-content-group-item:first-child .wphb-block-content{margin-left:0}.wpmud .wphb-block-content-group .wphb-block-content.small{padding:20px 23px;width:80px}.wpmud .wphb-block-entry:after{content:"";clear:both;display:block}.wpmud .wphb-block-entry-content .title{color:#333;font-size:22px;font-weight:700;line-height:1.333em;margin:0 0 .5em;max-width:100%;text-transform:uppercase}.wpmud .wphb-block-entry-content .content>p,.wpmud .wphb-block-entry-content .title{margin:0 0 20px}.wpmud .wphb-block-entry-content .content>p:last-child,.wpmud .wphb-block-entry-content .content>p:last-of-type{margin-bottom:0}.wpmud .wphb-block-entry-third{color:#333;width:calc(100% / 2 - 98px);padding-left:5%;padding-top:10px;display:inline-block;vertical-align:middle}.wpmud .wphb-block-entry-third span{font-weight:400}.wpmud .wphb-block-entry-third p{font-size:13px;margin-top:0;color:#888}.wpmud .wphb-block-entry-third span.not-present{font-size:55px;line-height:30px;margin-bottom:20px}.wpmud .wphb-block-entry-third span.score-span{font-size:13px;margin-left:-12px}.wpmud .wphb-block-entry-third .current-performance-score{margin-bottom:20px}.wpmud .wphb-block-entry-third .hb-wpmudev-icon-info,.wpmud .wphb-block-entry-third .hb-wpmudev-icon-tick,.wpmud .wphb-block-entry-third .hb-wpmudev-icon-warning{position:relative;top:-22px;left:5px;font-size:20px}.wpmud .wphb-block-entry-third .hb-wpmudev-icon-info,.wpmud .wphb-tab i.hb-wpmudev-icon-info.dismissed{color:#888}.wpmud .wphb-block-entry-third .hb-wpmudev-icon-warning{color:#fecf2f}.wpmud .wphb-block-entry-third .hb-wpmudev-icon-tick{color:#1abc9c}.wpmud .wphb-block-entry-third .dev-list{margin:0!important;border-bottom:0}.wpmud .wphb-block-entry-third .dev-list li:first-child span{padding-top:4px}@media only screen and (max-width:1200px){.wpmud .wrap-wphb-caching .row .col-half,.wpmud .wrap-wphb-gzip .row .col-half,.wpmud .wrap-wphb .row .col-half{display:block;margin-top:30px;padding:0;width:100%}.wpmud .wrap-wphb-caching .row .col-half:first-child,.wpmud .wrap-wphb-gzip .row .col-half:first-child,.wpmud .wrap-wphb .row .col-half:first-child{margin-top:0}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content{margin-top:65px}}@media only screen and (max-width:1100px){.wpmud .content-box-two-cols-image-left .wphb-block-entry{text-align:center;min-height:100%}.wpmud .content-box-two-cols-image-left .wphb-block-entry-image{display:none}.wpmud .wphb-block-entry-third{width:49%}.wpmud .content-box-two-cols-image-left .wphb-block-entry-image .wphb-image{margin:0 auto}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content{margin:35px 0 0 155px}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content .title{text-align:center}.wpmud .wphb-block-entry-third{text-align:left;padding-left:0}}@media only screen and (max-width:960px){.wpmud .row{display:block}.wpmud .row .col-fifth,.wpmud .row .col-four-fifths{display:block;width:100%;padding:0}.wpmud .wphb-block-entry-third{padding-left:0}.wpmud .wphb-block-entry-third .current-performance-score{margin-bottom:5px}}@media only screen and (max-width:783px){.wpmud .box-content .with-padding{padding:15px 20px}.wpmud .row,.wpmud .row-sep{display:block;table-layout:inherit}.wpmud .row .col-half,.wpmud .row .col-quarter,.wpmud .row .col-third,.wpmud .row .col-three-quarters,.wpmud .row .col-two-third{display:block;margin-top:30px;padding:0;width:100%}.wpmud .row .col-half:first-child,.wpmud .row .col-quarter:first-child,.wpmud .row .col-third:first-child,.wpmud .row .col-three-quarters:first-child,.wpmud .row .col-two-third:first-child{margin-top:0}.wpmud .content-box-two-cols-image-left .wphb-block-entry-image{display:none}}@media only screen and (max-width:600px){.wpmud .wphb-block-entry-third{display:block;text-align:center;width:100%}.wpmud .wphb-block-entry-third .dev-list{text-align:left}.wpmud .dev-box .box-title .test-results{float:none;display:block}}@media only screen and (max-width:480px){.wpmud .row .col-half,.wpmud .row .col-quarter,.wpmud .row .col-third,.wpmud .row .col-three-quarters,.wpmud .row .col-two-third{margin-top:15px}.wpmud .box-footer,.wpmud .dev-box .box-content{padding:15px 20px}.wpmud .dev-box .box-content>*{margin-bottom:15px}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content{margin:35px 0 0 135px}.wpmud .dev-box .box-title .test-results{margin-top:2px;float:right}}.wpmud .dev-overlay .title .close{color:#888;font-size:34px}.wpmud .wphb-modal *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Roboto,Arial,sans-serif}.wpmud .wphb-modal .wphb-dialog-content>*{margin-bottom:30px}.wpmud .wphb-modal .wphb-dialog-content>:last-child{margin-bottom:0}.wpmud .wphb-modal .wphb-dialog-content .wphb-modal-image-bottom{margin-bottom:-30px}.wpmud .wphb-modal .wphb-progress-state{margin-top:-20px}.wpmud .wphb-modal .wphb-dialog-footer{border-top:1px solid #eaeaea;margin:30px -30px;padding:30px 30px 0}.wpmud .wphb-progress-modal .wphb-block-test,.wpmud .wphb-progress-modal .wphb-progress{max-width:100%}.wpmud .wphb-progress-modal .wphb-dialog-content p{color:#666}.wpmud .wphb-progress-modal .wphb-notice-box p{color:#333;font-size:13px;line-height:22px}.wphb-cdn-block{border:1px solid #e6e6e6;border-radius:5px;padding:18px 0}.wphb-cdn-block>div{display:flex;align-content:center;align-items:center;height:auto;padding:20px 30px 0}.wphb-cdn-block>div>label{margin:2px 0 0;color:#666}.wphb-cdn-block>p{color:#888!important;padding:0 30px 0 76px}.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test,.wpmud.toplevel_page_wphb-minification .wphb-modal .wphb-block-test,.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test{display:flex;align-content:center;align-items:center;height:auto;padding:20px 30px;margin-bottom:30px}.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test{margin-bottom:10px}.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test>p{font-size:13px;line-height:22px;margin-right:14px;margin-bottom:0}.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test>.button{flex-basis:260px}.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test>label{margin:0}.wpmud .dev-overlay.dismiss-report .box{width:400px;margin-left:-250px}.wpmud .dev-overlay.dismiss-report .title{margin-bottom:30px}.wpmud .dev-overlay.dismiss-report .title h3{font-size:15px;text-transform:none}.wpmud .dev-overlay.dismiss-report .wphb-dialog-content>p{color:#888;font-size:13px;line-height:22px}.wpmud .dev-overlay.dismiss-report .wphb-dialog-footer{border:none}.wpmud .wphb-advanced-minification-modal .box,.wpmud .wphb-basic-minification-modal .box,.wpmud .wphb-database-cleanup-modal .box{width:400px!important;margin-left:-200px!important;padding:40px 0 30px!important}.wpmud .wphb-advanced-minification-modal .title,.wpmud .wphb-basic-minification-modal .title,.wpmud .wphb-database-cleanup-modal .title{display:none}.wpmud .wphb-advanced-minification-modal h1,.wpmud .wphb-basic-minification-modal h1,.wpmud .wphb-database-cleanup-modal h1{color:#333;font-size:22px;font-weight:700;line-height:30px;text-transform:none}.wpmud .wphb-advanced-minification-modal p,.wpmud .wphb-basic-minification-modal p,.wpmud .wphb-database-cleanup-modal p{color:#666;font-size:13px;line-height:22px;margin:0 30px;text-align:center}.wpmud .wphb-advanced-minification-modal img,.wpmud .wphb-basic-minification-modal img{margin-left:0}.wpmud .wrap-wp-hummingbird .notice{margin:15px 0 0}.wpmud .wrap-wp-hummingbird>.wphb-notice:not(.notice){width:600px;box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border-radius:0 0 5px 5px;padding:10px 30px;position:absolute!important;z-index:100;left:50%;margin-left:-300px;top:0}.wpmud .wphb-notice:not(.notice){border-radius:5px;color:#333;font-family:Roboto,Arial,sans-serif;font-size:15px;font-weight:400;line-height:18px;padding:15px 30px;position:relative;width:100%}.wpmud .wrap-wp-hummingbird>.wphb-notice.wphb-dash-settings-updated{position:fixed!important;top:30px;margin-left:-210px}.wpmud .wphb-notice.notice p{font-size:14px;line-height:1.5;margin:10px 0}.wpmud .wphb-notice p,.wpmud .wphb-notice p a{color:#333;font-weight:400}.wpmud .wphb-notice:not(.notice) p,.wpmud .wphb-notice:not(.notice) span,.wpmud .wphb-notice strong,.wpmud .wphb-notice ul{margin:0 0 10px -30px;padding:0 0 0 30px}.wpmud .wphb-notice:not(.notice) p:last-of-type{margin:0}.wpmud .wphb-notice p a{font-weight:500}.wpmud .wphb-notice p a:hover{color:#333}.wpmud .wphb-notice .wphb-icon,.wpmud .wphb-notice .wphb-icon .wdv-icon{font-size:22px;height:22px;line-height:22px;width:22px}.wpmud .wphb-notice.can-close .close{cursor:pointer;color:#333;font-size:12px;font-weight:700;line-height:36px;margin-left:0;opacity:.5;text-transform:uppercase}.wpmud .wphb-block-entry-third span.status-ok:before,.wpmud .wphb-notice-blue-info p:first-child:before,.wpmud .wphb-notice-blue p:first-child:before,.wpmud .wphb-notice-error.can-close p:before,.wpmud .wphb-notice-error p:first-child:before,.wpmud .wphb-notice-grey-info p:before,.wpmud .wphb-notice-grey p:before,.wpmud .wphb-notice-success.can-close p:before,.wpmud .wphb-notice-success p:first-child:before,.wpmud .wphb-notice-warning p:first-child:before,.wpmud span.dash-cloudflare-connected-status:before{font-family:Hummingbird,Arial,sans-serif;font-size:20px;vertical-align:middle;line-height:20px;top:-2px;position:relative;margin-left:-30px;margin-right:10px}.wpmud .wphb-notice-success{background-color:#d1f1ea}.wpmud .wphb-notice-error{background-color:#ffe5e9}.wpmud .wphb-notice-warning{background-color:#fff5d5;color:#333}.wpmud .wphb-notice-blue,.wpmud .wphb-notice-blue-info{background-color:#e1f6ff;margin-top:30px}.wpmud .wphb-notice-grey,.wpmud .wphb-notice-grey-info{background-color:#f2f2f2;margin-top:10px}.wpmud .cloudflare-step .wphb-notice-blue{margin-top:0}.wpmud .wphb-block-entry-third span.status-ok:before,.wpmud .wphb-notice-success p:before{content:"\E903";color:#1abc9c}.wpmud .wphb-block-entry-third span.status-ok:before{margin-right:0;line-height:20px}.wpmud .wphb-notice-error p:before{content:"\E904";color:#ff7f83}.wpmud .wphb-notice-warning p:before{content:"\E902";color:#fecf2f;font-size:18px;line-height:18px}.wpmud .wphb-notice-blue p:before{content:"\E903";color:#17a8e3}.wpmud .wphb-notice-blue-info p:before{content:"\E902";color:#17a8e3}.wpmud .wphb-notice-grey-info p:before,.wpmud .wphb-notice-grey p:before{content:"\E902";color:#888}.wpmud .dev-overlay .wphb-notice-warning p{font-size:14px;line-height:22px}.wpmud .wphb-notice-warning p,.wpmud .wphb-notice-warning p a{color:#333}.wpmud .wphb-heading-status-green{color:#1abc9c}.wpmud .wphb-heading-status{font-family:Roboto Condensed,Roboto,Arial,sans-serif;font-size:30px;margin-top:0}@media only screen and (max-width:783px){.wpmud .wrap-wp-hummingbird>.wphb-notice{width:85%}}@media only screen and (max-width:600px){.wpmud .wrap-wp-hummingbird>.wphb-notice{width:100%;top:46px;margin-left:-251px}}@media only screen and (max-width:480px){.wpmud .wphb-notice:not(.notice){padding:15px 20px}}.wphb-pills{display:inline-block;background-color:#ffd000;color:#333;border-radius:15px;width:39px;height:26px;font-size:12px;line-height:26px;text-align:center;font-weight:500}.wpmud .box-title .wphb-pills{margin:16px 0 0 10px}.wphb-pills.grey{background-color:#f2f2f2;color:#666}.wphb-pills.red{background-color:#ff6d6d;color:#fff}.wphb-pills.green{background-color:#1abc9c;color:#fff}.wphb-pills.with-arrow:after{border:8px solid transparent;content:"";height:0;pointer-events:none;position:absolute;width:0;z-index:1}.wphb-pills.with-arrow.right:after{border-left-color:#19b4cf;left:50%;margin-top:-8px;top:50%}.wphb-pills.with-arrow.left:after{border-right-color:#19b4cf;right:100%;margin-top:-8px;top:50%}.wphb-pills.with-arrow.right.grey:after{border-left-color:#f2f2f2}.wphb-pills.with-arrow.left.grey:after{border-right-color:#f2f2f2}.wphb-pills-group{border-collapse:collapse;border-spacing:0;font-size:0;display:inline-block;position:relative}.wphb-pills-group.stacked .wphb-pills{font-size:10px;line-height:12px;height:12px;text-align:left;max-width:69px;color:#888;display:block;background-color:transparent}.wphb-pills-group.stacked .wphb-pills:last-child{color:#1abc9c;background-color:transparent}.wphb-pills-group.stacked .dev-icon.dev-icon-caret_down{color:#1abc9c;margin-left:7px}.wphb-pills-group .wphb-pills{border-radius:0;width:80px;line-height:30px;height:30px;margin:0}.wphb-pills-group .wphb-pills:first-child{border-radius:5px 0 0 5px!important}.wphb-pills-group .wphb-pills:last-child{background-color:#17a8e3;color:#fff;border-radius:0 5px 5px 0!important}.wpmud .dev-list-stats .wphb-pills-group{font-size:0;line-height:1em}@media only screen and (max-width:600px){.wpmud .dev-box .box-title .wphb-pills{margin:4px 0 0 10px}.wphb-pills{margin:0 0 0 10px}.wphb-pills-group .wphb-pills:first-child{border-radius:5px 5px 0 0!important}.wphb-pills-group .wphb-pills:last-child{border-radius:0 0 5px 5px!important}}@media only screen and (max-width:480px){.wphb-pills-group{border-collapse:inherit;border-spacing:inherit}.wphb-pills.with-arrow.left:after,.wphb-pills.with-arrow.right:after{border-top-color:#19b4cf;margin-top:0;margin-left:-8px;top:50%}.wphb-pills.with-arrow.right:after{border-left-color:transparent;left:50%}.wphb-pills.with-arrow.left:after{border-right-color:transparent;right:50%}.wphb-pills.with-arrow.right.grey:after{border-top-color:#eee;border-left-color:transparent}.wphb-pills.with-arrow.left.grey:after{border-top-color:#eee;border-right-color:transparent}}.wpmud .wphb-border-frame{border:1px solid #e6e6e6;border-radius:5px;margin:10px 0 0!important}.wpmud .wphb-border-frame .table-header,.wpmud .wphb-border-frame .table-row{display:flex;justify-content:space-between;padding:15px 80px 15px 30px}.wpmud .wphb-border-frame .table-header{color:#333;font-size:13px;font-weight:700;border-bottom:1px solid #e6e6e6}.wpmud .wphb-border-frame .table-row{border-bottom:1px solid #e6e6e6}.wpmud .wphb-border-frame .table-row:last-child{border-bottom:0}.wpmud .wphb-border-frame .list-table>thead>tr>th{color:#333;font-size:13px;padding:8px 0}.wpmud .wphb-border-frame .list-table>thead>tr>th:first-child{padding:27px 30px}.wpmud .wphb-border-frame .list-table>tbody>tr>td:first-child{padding-left:30px}@media only screen and (max-width:783px){.wpmud .wphb-border-frame{border:0}}@media only screen and (max-width:480px){.wpmud .wphb-border-frame .table-header,.wpmud .wphb-border-frame .table-row{padding:15px 0}}.wpmud .wphb-disabled-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10;background-color:hsla(0,0%,95%,.5)}.wpmud .settings-form span.desc,.wpmud .settings-form span.sub{display:block;margin:10px 0 0;font-size:13px;color:#888;line-height:22px}.wpmud .settings-form ol>li,.wpmud .settings-form span.sub{font-size:13px;color:#888;line-height:22px;margin:4px 0 0}.wpmud .settings-form span.dash-form-title,.wpmud .settings-form span.sub{display:block;font-size:13px;color:#888;line-height:22px;margin:10px 0 0}.wpmud .settings-form .col-two-third span.sub{margin-left:49px}.wpmud .settings-form ol{margin-left:15px}.wpmud .settings-form textarea{height:180px;max-width:490px;color:#333;border:1px solid #e6e6e6;border-radius:4px;background-color:#f8f8f8;margin-top:20px;font-size:13px;line-height:18px}.wpmud .box-advanced-general textarea,.wpmud .box-minification-tools textarea{margin-top:0}.wpmud .box-minification-tools textarea{height:400px;max-width:100%;margin-bottom:0}.wpmud .settings-form span.dash-form-title{margin-bottom:15px;font-weight:500}.wpmud .wphb-dash-table-row span.sub{margin:0}.wpmud .settings-form .col-two-third>label,.wpmud .settings-form.dash-form>label{display:inline-block;padding:2px 10px 0;color:#666;line-height:30px;margin:0}.wpmud .settings-form .wphb-border-frame label{margin-top:25px;padding:0;color:#888;font-size:13px}.wpmud .settings-form .wphb-border-frame small{display:block;font-size:13px;color:#888;line-height:22px}.wpmud .settings-form.disabled{background-color:hsla(0,0%,95%,.5)!important}.wpmud .settings-form.disabled>*{opacity:.5}.wpmud section[class^=box-dashboard-] .box-title:before{font-family:Hummingbird,Arial,sans-serif;color:#333;float:left;font-size:20px;margin:18px 10px 18px 0}.wpmud section[class^=box-dashboard-performance] .box-title:before{content:"\E90C"}.wpmud section[class^=box-dashboard-minification] .box-title:before{content:"\E90B"}.wpmud section[class^=box-dashboard-browser] .box-title:before{content:"\E905"}.wpmud section[class^=box-dashboard-gzip] .box-title:before{content:"\E907"}.wpmud section[class^=box-dashboard-uptime] .box-title:before{content:"\E900"}.wpmud section[class^=box-dashboard-smush] .box-title:before{content:"\E90F"}.wpmud section[class^=box-dashboard-cloudflare] .box-title:before{content:"\E906"}.wpmud section[class^=box-dashboard-reports] .box-title:before{content:"\E90D"}.wpmud section[class^=box-dashboard-caching-gravatar] .box-title:before{content:"\E913"}.wpmud section[class^=box-dashboard-caching-page] .box-title:before{content:"\E914"}.wpmud section[class^=box-dashboard-advanced-tools] .box-title:before{content:"Z"}.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership,.wpmud .box-dashboard-browser-caching-module .box-content,.wpmud .box-dashboard-reports-no-membership,.wpmud .box-dashboard-smush-no-membership .box-content,.wpmud .box-dashboard-uptime-no-membership,.wpmud .box-reporting-summary .wphb-reporting-no-membership{background:#fff no-repeat 30px 100%;padding-bottom:30px!important}.wpmud .box-dashboard-reports-no-membership .box-content,.wpmud .box-dashboard-uptime-no-membership .box-content{padding:30px 30px 0!important}.wpmud .box-dashboard-reports-no-membership{background-image:url(../image/hb-graphic-upsell-reports.png)}.wpmud .box-dashboard-uptime-no-membership{background-image:url(../image/hb-graphic-upsell-uptime.png)}.wpmud .box-dashboard-smush-no-membership .box-content{background-image:url(../image/smush-share-widget.png)}.wpmud .box-dashboard-browser-caching-module .box-content{background-image:url(../image/graphic-hb-cf-sell@2x.png);background-size:107px 148px}.wpmud .box-reporting-summary .wphb-reporting-no-membership{background-image:url(../image/hummingbird-upsell-minify.png);background-size:118px 126px}.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership{background-image:url(../image/hb-graphic-db-upsell@1x.png);background-size:100px 126px}.wpmud .box-dashboard-browser-caching-module .box-content.no-background-image{background-image:none}@media only screen and (-o-min-device-pixel-ratio:2/1),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.wpmud .box-dashboard-reports-no-membership,.wpmud .box-dashboard-smush-no-membership .box-content,.wpmud .box-dashboard-uptime-no-membership{background-size:107px 148px}.wpmud .box-dashboard-reports-no-membership{background-image:url(../image/hb-graphic-upsell-reports@2x.png)}.wpmud .box-dashboard-uptime-no-membership{background-image:url(../image/hb-graphic-upsell-uptime@2x.png)}.wpmud .box-dashboard-smush-no-membership .box-content{background-image:url(../image/smush-share-widget@2x.png)}.wpmud .box-reporting-summary .wphb-reporting-no-membership{background-image:url(../image/hummingbird-upsell-minify@2x.png)}.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership{background-image:url(../image/hb-graphic-db-upsell@2x.png)}}.wpmud .wphb-dash-table-header{color:#333;font-size:13px;font-weight:700;line-height:30px;display:flex}.wpmud .wphb-border-frame .wphb-caching-summary-item-type,.wpmud .wphb-border-frame .wphb-gzip-summary-item-type,.wpmud .wphb-dash-table-row,.wpmud .wphb-dash-table-row>div:first-child{display:flex;align-items:center;align-content:center}.wpmud .wphb-dash-table-row{justify-content:space-between;height:60px;border-top:1px solid #e6e6e6}.wpmud .wphb-dash-table-row:last-child{margin-bottom:-10px}.wpmud .wphb-dash-table-header>span:first-child,.wpmud .wphb-dash-table-row>div:first-child{flex-basis:50%!important;text-align:left}.wpmud .wphb-dash-table-row>div:first-child{font-size:13px;color:#333;font-weight:500;line-height:16px}.wpmud .wphb-dash-table-header>span,.wpmud .wphb-dash-table-row>div{text-align:center}.wpmud .wphb-dash-table-header>span:last-child,.wpmud .wphb-dash-table-row>div:last-child{text-align:right}.wpmud .wphb-dash-table.two-columns>.wphb-dash-table-header>span,.wpmud .wphb-dash-table.two-columns>.wphb-dash-table-row>div{flex-basis:50%}.wpmud .wphb-dash-table.three-columns>.wphb-dash-table-header>span,.wpmud .wphb-dash-table.three-columns>.wphb-dash-table-row>div{flex-basis:25%}.wpmud .dev-box .status-text{color:#888;font-size:13px;line-height:22px;margin-top:5px}.wpmud .box-dashboard-performance-module .box-content .with-padding{margin-bottom:0}.wpmud .box-dashboard-performance-module .wphb-performance-report-item-score{display:flex;align-items:center;align-content:center;max-width:65px}.wpmud .box-dashboard-performance-module .wphb-score-result-label{font-size:13px;margin-left:10px;color:#aaa;font-weight:500}.wpmud .box-dashboard-performance-module .wphb-dash-table-header,.wpmud .box-dashboard-performance-module .wphb-dash-table-row{padding:0 30px}.wpmud .box-dashboard-performance-module .wphb-row-grade-a,.wpmud .box-dashboard-performance-module .wphb-row-grade-aplus,.wpmud .box-dashboard-performance-module .wphb-row-grade-b{box-shadow:inset 3px 0 0 -1px #1abc9c}.wpmud .box-dashboard-performance-module .wphb-row-grade-c,.wpmud .box-dashboard-performance-module .wphb-row-grade-d{box-shadow:inset 3px 0 0 -1px #fecf2f}.wpmud .box-dashboard-performance-module .wphb-row-grade-e,.wpmud .box-dashboard-performance-module .wphb-row-grade-f{box-shadow:inset 3px 0 0 -1px #ff6d6d}.wpmud .box-dashboard-performance-module .wphb-dash-table-row:last-child{margin-bottom:0}.wpmud .box-dashboard-performance-module .wphb-row-grade-a>div:first-child:before,.wpmud .box-dashboard-performance-module .wphb-row-grade-aplus>div:first-child:before,.wpmud .box-dashboard-performance-module .wphb-row-grade-b>div:first-child:before,.wpmud .box-dashboard-performance-module .wphb-row-grade-c>div:first-child:before,.wpmud .box-dashboard-performance-module .wphb-row-grade-d>div:first-child:before,.wpmud .box-dashboard-performance-module .wphb-row-grade-e>div:first-child:before,.wpmud .box-dashboard-performance-module .wphb-row-grade-f>div:first-child:before{font-family:Hummingbird,Arial,sans-serif;font-size:16px;margin-right:10px}.wpmud .box-dashboard-performance-module .wphb-row-grade-a>div:first-child:before,.wpmud .box-dashboard-performance-module .wphb-row-grade-aplus>div:first-child:before,.wpmud .box-dashboard-performance-module .wphb-row-grade-b>div:first-child:before{color:#1abc9c;content:"\E903"}.wpmud .box-dashboard-performance-module .wphb-row-grade-c>div:first-child:before,.wpmud .box-dashboard-performance-module .wphb-row-grade-d>div:first-child:before{color:#fecf2f;content:"\E904"}.wpmud .box-dashboard-performance-module .wphb-row-grade-e>div:first-child:before,.wpmud .box-dashboard-performance-module .wphb-row-grade-f>div:first-child:before{color:#ff6d6d;content:"\E904"}#wphb-box-dashboard-cloudflare .wphb-block-entry .wphb-block-entry-content{padding-top:0}.wpmud .wphb-dashboard-caching-cloudflare-box p{margin-top:30px;margin-bottom:20px}.wpmud #wphb-box-dashboard-cloudflare .cloudflare-step form label{text-align:left;font-weight:400;padding-left:0;padding-right:0}.wpmud span.dash-cloudflare-connected-status:before{color:#17a8e3;content:"\E903";font-size:16px;margin-right:8px}.wpmud .box-dashboard-minification-module .wphb-dash-table-row>div:last-child,.wpmud .box-dashboard-uptime .wphb-dash-table-row>div:last-child,.wpmud .box-dashboard-welcome .dev-list>li:last-child .list-detail{font-size:18px;font-family:Roboto Condensed,Roboto,Arial,sans-serif;color:#666}.wpmud .box-dashboard-minification-module .wphb-pills{font-weight:700}.wpmud .wphb-cf-notice p,.wpmud .wphb-upsell-free-message p{position:relative;border-radius:4px;background-color:#e1f6ff;padding:20px 30px;margin-left:-140px;color:#333;font-size:13px;line-height:22px}.wpmud .wphb-upsell-free-message p:after{position:absolute;top:43%;left:0;margin-left:-7px;content:"";width:0;height:0;border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid #e1f6ff}.wpmud .wphb-cf-notice a,.wpmud .wphb-upsell-free-message a{color:#333;text-decoration:underline;font-weight:500}.wpmud .box-dashboard-browser-caching-module .content .wphb-notice,.wpmud .box-dashboard-caching-gravatar-module .wphb-notice,.wpmud .box-dashboard-caching-page-module .content .wphb-notice,.wpmud .box-dashboard-gzip-module .content .wphb-notice,.wpmud .box-dashboard-smush-no-membership .content .wphb-notice,.wpmud .box-dashboard-smush .content .wphb-notice{margin-top:20px!important}.wpmud .box-dashboard-smush-no-membership .content-box-two-cols-image-left .wphb-block-entry-content{margin-top:45px}.wpmud .wrap-wp-hummingbird .report-status{background-color:#f8f8f8;height:140px;width:100%;position:relative;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;margin-bottom:10px;display:flex;flex-direction:column;align-items:center;justify-content:center}.wpmud .wrap-wp-hummingbird .report-status:hover{background-color:#f2f2f2;cursor:pointer}.wpmud .wrap-wp-hummingbird .report-status i{color:#666;font-size:24px}.wpmud .wrap-wp-hummingbird .report-status strong{color:#666;margin-top:10px;line-height:20px}.wpmud .wrap-wp-hummingbird .report-status .corner,.wpmud .wrap-wp-hummingbird .report-status strong{font-family:Roboto Condensed,Roboto,Arial,sans-serif;font-weight:700;font-size:13px;text-transform:uppercase}.wpmud .wrap-wp-hummingbird .report-status .corner{position:absolute;top:0;right:0;color:#1abc9c;padding-right:6px;padding-top:10px}.wpmud .wrap-wp-hummingbird .report-status.with-corner.grey .corner i{color:#888;font-size:16px;margin-right:4px}.wpmud .wrap-wp-hummingbird .report-status.with-corner:before{content:"";position:absolute;top:0;right:0;border:solid transparent;border-top-right-radius:7px;border-width:30px;border-right-color:#d1f1ea;border-top-color:#d1f1ea}.wpmud .wrap-wp-hummingbird .report-status.with-corner.grey:before{border-right-color:#e6e6e6;border-top-color:#e6e6e6}.wpmud .box-dashboard-advanced-tools .wphb-dash-table span{color:#888;font-size:13px;vertical-align:top}.wpmud .box-dashboard-advanced-tools .wphb-dash-table span.no-issues:before{font-family:Hummingbird,Arial,sans-serif;font-size:16px;margin-right:5px;color:#1abc9c;content:"\E903"}.wpmud #wphb-cross-sell-footer>div{width:100%;text-align:center;border-bottom:1px solid #e6e6e6;line-height:.1em;margin:10px 0 40px}.wpmud #wphb-cross-sell-footer>div>span{color:#9a9a9a;background-color:#f4f4f4;padding:0 30px;font-size:16px;top:8px}.wpmud #wphb-cross-sell-footer h3,.wpmud .wphb-cross-sell-bottom h3{color:#333;font-size:22px;font-weight:700;line-height:30px;text-transform:none}.wpmud .wphb-cross-sell-modules .wphb-content{text-align:center;border-radius:0 0 5px 5px;background-color:#fff;box-shadow:0 2px 0 0 #eaeaea;padding:30px}.wpmud .wphb-cross-sell-modules .wphb-content h3{color:#333;font-size:18px;font-weight:700;line-height:30px;text-transform:none;margin-top:0;min-height:60px}.wpmud .wphb-cross-sell-modules .wphb-content p{color:#888;font-size:13px;line-height:20px;margin-bottom:30px}.wpmud .wphb-cross-crawl,.wpmud .wphb-cross-defender,.wpmud .wphb-cross-smush{min-height:150px;border-radius:5px 5px 0 0}.wpmud .wphb-cross-smush{background:url(../image/plugins-smush.jpg) 50%;background-size:cover}.wpmud .wphb-cross-defender{background:url(../image/plugins-defender.jpg) 50%;background-size:cover}.wpmud .wphb-cross-crawl{background:url(../image/plugins-crawl.jpg) 50%;background-size:cover}.wpmud .wphb-cross-crawl>span,.wpmud .wphb-cross-defender>span,.wpmud .wphb-cross-smush>span{width:56px;height:56px;display:block;border:3px solid #fff;border-radius:50%;position:relative;top:80px;left:15px;box-shadow:0 1px 10px 0 rgba(0,0,0,.25)}.wpmud .wphb-cross-smush>span{background:url(../image/plugins-smush-icon.png) no-repeat 50%;background-size:50px 50px}@media only screen and (-o-min-device-pixel-ratio:2/1),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.wpmud .wphb-cross-smush>span{background-image:url(../image/plugins-smush-icon@2x.png)}}.wpmud .wphb-cross-defender>span{background:url(../image/plugins-defender-icon.png) no-repeat 50%;background-size:50px 50px}@media only screen and (-o-min-device-pixel-ratio:2/1),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.wpmud .wphb-cross-defender>span{background-image:url(../image/plugins-defender-icon@2x.png)}}.wpmud .wphb-cross-crawl>span{background:url(../image/plugins-crawl-icon.png) no-repeat 50%;background-size:50px 50px}@media only screen and (-o-min-device-pixel-ratio:2/1),only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.wpmud .wphb-cross-crawl>span{background-image:url(../image/plugins-crawl-icon@2x.png)}}.wpmud .wphb-cross-sell-modules a:not(.disabled):after{font-family:Hummingbird,Arial,sans-serif;content:"\AF";margin-left:5px}.wpmud .wphb-cross-sell-modules .col-third:nth-child(3) a.disabled{border-radius:13px!important;background-color:#f2f2f2}.wpmud .wphb-cross-sell-bottom{text-align:center;margin-top:50px}.wpmud .wphb-cross-sell-bottom p{max-width:500px;margin:20px auto 30px}.wpmud .wphb-cross-sell-bottom img{margin:30px auto 0}@media screen and (min-width:1550px){.wpmud .box-dashboard-reports-no-membership .wphb-block-entry .row,.wpmud .box-dashboard-smush-no-membership .buttons,.wpmud .box-dashboard-uptime-no-membership .content p{padding-bottom:20px}}@media only screen and (min-width:1545px){.wpmud .wphb-cross-sell-modules>.col-third h3{height:auto}}@media only screen and (max-width:1200px){.wpmud .box-dashboard-smush-no-membership .content-box-two-cols-image-left .wphb-block-entry-content{margin-top:65px}}@media only screen and (max-width:1100px){.wpmud .box-dashboard-reports-no-membership .wphb-block-entry-image,.wpmud .box-dashboard-uptime-no-membership .wphb-block-entry-image{display:none}.wpmud .wphb-cf-notice p,.wpmud .wphb-upsell-free-message p{margin-left:auto;margin-top:30px}.wpmud .wphb-cf-notice p:after,.wpmud .wphb-upsell-free-message p:after{display:none}}@media only screen and (max-width:960px){.box-dashboard-browser-caching-module .box-content{background-image:none}.wpmud .row.wphb-cross-sell-modules .col-third{display:flex;width:100%;padding:0 0 30px;margin-top:0}.wpmud .wphb-cross-sell-modules .col-third:last-child{padding:0}.wpmud .wphb-cross-sell-modules div[class^=wphb-cross]{width:30%;border-radius:5px 0 0 5px;box-shadow:0 2px 0 0 #eaeaea}.wpmud .wphb-cross-sell-modules div[class^=wphb-cross]>span{top:60%}.wpmud .wphb-cross-sell-modules .wphb-content{width:70%;text-align:left;border-radius:0 5px 5px 0}.wpmud .wphb-cross-sell-modules .wphb-content h3{min-height:auto;text-align:left}.wpmud .wphb-cross-sell-modules .wphb-content p{margin-bottom:10px}}@media only screen and (max-width:783px){.wpmud .box-dashboard-performance-module .box-content .with-padding{padding:30px}}@media only screen and (max-width:600px){.wpmud section[class^=box-dashboard-] .box-title:before{margin:5px 10px 5px 0}}@media only screen and (max-width:480px){.wpmud .box-dashboard-minification-module .wphb-pills{display:block}.wpmud .box-dashboard-performance-module .wphb-score-result-label{margin-left:3px;margin-right:5px}.wpmud .box-dashboard-performance-module .wphb-dash-table .button-ghost{padding:5px 6px 7px!important}.wpmud .box-dashboard-performance-module .box-content .with-padding{padding:15px 20px}.wpmud .box-dashboard-performance-module .wphb-dash-table-header,.wpmud .box-dashboard-performance-module .wphb-dash-table-row{padding:0 20px}.wpmud .box-dashboard-smush .buttons{margin-top:15px}.wpmud .wphb-score.wphb-score-have-label{width:65px}.wpmud .dev-box .status-text{line-height:15px;margin-top:0;padding-left:10px;word-wrap:break-word;max-width:150px}.wpmud .wphb-cf-notice p,.wpmud .wphb-upsell-free-message p{padding:15px 20px;margin-top:15px}.wpmud .row.wphb-cross-sell-modules .col-third{display:block;padding:0 0 15px}.wpmud .wphb-cross-sell-modules .wphb-content,.wpmud .wphb-cross-sell-modules div[class^=wphb-cross]{width:100%}.wpmud .wphb-cross-sell-modules div[class^=wphb-cross]{min-height:100px;height:100px;border-radius:5px 5px 0 0;box-shadow:none}.wpmud .wphb-cross-sell-modules .wphb-content{border-radius:0 0 5px 5px}.wpmud .wphb-cross-sell-modules .wphb-content,.wpmud .wphb-cross-sell-modules .wphb-content h3{text-align:center}.wpmud .wphb-cross-sell-modules .wphb-content p{margin-bottom:20px}.wpmud .wphb-cross-sell-modules div[class^=wphb-cross]>span{top:60px;left:calc(50% - 28px)}}.wpmud .performance-report-table{text-align:left;margin-top:30px;overflow:hidden}.wpmud .performance-report-table .wpdui-btn{display:inline-block;margin:10px 0 20px;text-transform:uppercase}.wpmud .performance-report-table .wpdui-btn:hover{color:#fff}.wpmud .performance-report-table a,.wpmud .performance-report-table a:hover{color:#17a8e3;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;-ms-hyphens:auto;-moz-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.wpmud .performance-report-table ol li,.wpmud .performance-report-table p{font-size:13px!important;color:#888;line-height:22px}.wpmud .performance-report-table ol>p{margin-left:-30px;margin-bottom:15px}.wpmud .performance-report-table>thead>tr>th:first-child{padding-left:30px}.wpmud .performance-report-table .wphb-performance-report-item:hover td{cursor:pointer;border-bottom:0!important}.wpmud .performance-report-table .wphb-performance-report-item-score{width:137px}.wpmud .performance-report-table .wphb-performance-report-item-type{color:#888;font-size:13px;transition:color .3s;width:130px}.wpmud .performance-report-table .wphb-performance-report-item-type:first-letter{text-transform:capitalize}.wpmud .performance-report-table .wphb-performance-report-item:hover .wphb-performance-report-item-type{color:#333}.wpmud .performance-report-table .wphb-performance-report-item-cta{text-align:right;width:225px}.wpmud .wphb-performance-report-item .trigger-additional-content{color:#888;cursor:pointer;display:inline-block;font-size:14px;line-height:1em;height:14px;margin:8px 30px 8px 15px;transition:color .3s;vertical-align:middle}.wpmud .wphb-performance-report-item .trigger-additional-content .dev-icon-caret_down:before{display:inline-block;transition:transform .5s;transform:rotate(0)}.wpmud .wphb-performance-report-item-opened .trigger-additional-content .dev-icon-caret_down:before{transform:rotate(-180deg)}.wpmud .performance-report-table .wphb-performance-report-item-opened,.wpmud .wphb-table.performance-report-table .wphb-performance-report-item-additional-content:hover,.wpmud .wphb-table.performance-report-table .wphb-performance-report-item-opened:hover{background:#f8f8f8}.wpmud .performance-report-table .wphb-performance-report-item-additional-content{background:#f8f8f8;display:none}.wpmud .performance-report-table .wphb-performance-report-item-additional-content-opened{display:table-row}.wpmud .performance-report-table .wphb-performance-report-item-additional-content-opened>td{border-top:0!important}.wpmud .wphb-performance-report-item-additional-content-inner{padding:0!important}.wpmud .dev-box-performance-report-additional-content{padding:30px;margin:0 30px 30px;border-radius:5px;background-color:#fff;box-shadow:0 2px 0 0 #eaeaea}.wpmud .dev-box-performance-report-additional-content h4:first-child{margin-top:0}.wpmud .wphb-performance-report-item-additional-content h4,.wpmud .wphb-performance-report-item-additional-content h5{color:#333;font-size:13px;text-transform:none;line-height:23px;margin:20px 0;text-align:left}.wphb-score{display:inline-block;position:relative}.wphb-score-type-circle{border-radius:100%;height:30px;width:30px}.wphb-score-type-circle.large{height:80px;width:80px}.wphb-score-type-circle .wphb-score-graph-circle{stroke:#e5e5e5;stroke-dashoffset:80;stroke-width:5px;-moz-transition:stroke-dashoffset 1s linear;-webkit-transition:stroke-dashoffset 1s linear;transition:stroke-dashoffset 1s linear}.wphb-score-type-circle.large .wphb-score-graph-circle{stroke-dashoffset:219.8;stroke-width:10px}.wphb-score-type-circle .wphb-score-graph-result{transform:rotate(-80deg) translateX(-27px) translateY(2.5px);-moz-transform:rotate(-80deg) translateX(-27px) translateY(2.5px);-webkit-transform:rotate(-80deg) translateX(-27px) translateY(2.5px)}.wphb-score-type-circle.large .wphb-score-graph-result{transform:rotate(-80deg) translateX(-72.5px) translateY(6.5px);-moz-transform:rotate(-80deg) translateX(-72.5px) translateY(6.5px);-webkit-transform:rotate(-80deg) translateX(-72.5px) translateY(6.5px)}.wpmud .wphb-button-label,.wpmud .wphb-performance-report-item-score,.wpmud .wphb-score-result{cursor:pointer;position:relative}.wpmud .wrap-wphb-caching .list-results,.wpmud .wrap-wphb-performance .list-results{max-height:200px;overflow-y:scroll}.wpmud .wrap-wphb-performance .recipient{margin-bottom:10px;padding:5px 10px}.wpmud .wrap-wphb-performance .recipient:hover{border-radius:4px;background-color:#f8f8f8}.wpmud .wrap-wphb-performance .add-recipient,.wpmud .wrap-wphb-performance .recipient,.wpmud .wrap-wphb-performance .recipient .name{display:flex;flex-flow:row nowrap;justify-content:space-between;align-items:center;align-content:center}.wpmud .wrap-wphb-performance .recipient img{-webkit-border-radius:50px;-moz-border-radius:50px;border-radius:50px;width:30px;height:30px;margin-right:10px;display:inline-block;vertical-align:middle}.wpmud .wrap-wphb-performance .recipient .name{color:#333;font-weight:500}.wpmud .wrap-wphb-performance .recipient a>i{color:#888}.wpmud .wrap-wphb-performance .recipient:hover a>i{color:#333}.wpmud .wrap-wphb-performance .add-recipient{margin-top:15px}.wpmud .wrap-wphb-performance .add-recipient>*{margin-bottom:0;border-radius:0;border:1px solid #e6e6e6;font-weight:400}.wpmud .wrap-wphb-performance .add-recipient .wdv-icon-plus{color:#fff;font-size:20px}.wpmud .wrap-wphb-performance .add-recipient>input::placeholder{color:#aaa;font-weight:400}.wpmud .wrap-wphb-performance .add-recipient #wphb-first-name{border-radius:4px 0 0 4px;border-right:0;background-color:#f8f8f8}.wpmud .wrap-wphb-performance .add-recipient #wphb-username-search{background-color:#f8f8f8}.wpmud .wrap-wphb-performance .wphb-tag{-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px;font-size:13px;padding:4px 16px;color:#fff;text-transform:uppercase}.wpmud .wrap-wphb-performance .wphb-tag.tag-generic{background:#e6e6e6;color:#333}.wpmud .box-reporting-summary .settings-form.disabled{position:relative}.wpmud .box-reporting-summary .content-box-two-cols-image-left .wphb-block-entry-content,.wpmud .box-reporting-summary .wphb-block-entry-content{margin-top:0}.wpmud .list-table>tbody>tr>td.wphb-performance-report-item-type.disabled{padding-right:30px}.wpmud .performance-report-table .dev-box-performance-report-additional-content.disable-buttons a.button,.wpmud .performance-report-table .dev-box-performance-report-additional-content.disable-buttons a.wpdui-btn{display:none}@media only screen and (max-width:1200px){.wpmud .performance-report-table .wphb-performance-report-item-score,.wpmud .performance-report-table .wphb-performance-report-item-type{width:115px}.wpmud .performance-report-table .wphb-performance-report-item-cta{width:180px}.wpmud .box-reporting-summary .box-footer .wphb-block-entry-content{margin-top:0}}@media only screen and (max-width:1100px){.wpmud .performance-report-table .wphb-performance-report-item-type{width:105px}.wpmud .performance-report-table .wphb-performance-report-item-cta{width:165px}.wpmud .performance-report-table .wphb-performance-report-item-score{width:105px;padding-left:20px!important}}@media only screen and (max-width:783px){.wpmud .performance-report-table td,.wpmud .performance-report-table th{width:70%!important}.wpmud .wphb-performance-report-heading.wphb-performance-report-heading-type,.wpmud .wphb-performance-report-item-cta>button,.wpmud .wphb-performance-report-item-type{display:none!important}}@media only screen and (max-width:480px){.wpmud .wrap-wphb-performance .add-recipient,.wpmud .wrap-wphb-performance .recipient,.wpmud .wrap-wphb-performance .recipient .name{flex-flow:row wrap}.wpmud .wrap-wphb-performance .add-recipient #wphb-first-name,.wpmud .wrap-wphb-performance .add-recipient>button{border-radius:0!important;margin-bottom:5px;border:1px solid #e6e6e6}.wpmud .wrap-wphb-performance .add-recipient>button{margin-top:10px!important}.wpmud .performance-report-table{margin-top:0}.wpmud .wphb-performance-report-item .trigger-additional-content{margin-right:20px}.wpmud .dev-box-performance-report-additional-content{margin:0 20px 20px;padding:15px 20px}}.wpmud .wphb-caching-error{text-align:left}.wpmud .wphb-caching-error a{text-decoration:underline}.wpmud .wrap-wphb-caching .wphb-spinner{float:none;background-size:15px 15px}.wpmud .wphb-caching-cloudflare-box>p{margin:0 0 20px}.wpmud .box-caching-enable .buttons{margin-top:-20px}.wpmud .caching-table{margin:30px 0 0}.wpmud .box-gzip-summary .list-label,.wpmud .wphb-caching-summary-heading{text-transform:none!important;color:#333;font-size:13px}.wpmud #cloudflare-how-to,.wpmud #cloudflare-how-to-title{text-align:left}.wpmud #cloudflare-how-to a{font-weight:500;text-decoration:underline;color:inherit}.wpmud #cloudflare-info{clear:both}.wpmud #cloudflare-info.wphb-notice{margin-top:30px}.wpmud .cloudflare-submit{margin-bottom:0}.wpmud #cloudflare-zone .clear{padding:0}.wpmud #cloudflare-zone label{margin-bottom:13px}.wpmud #cloudflare-zone .cloudflare-submit{margin-top:22px}.wpmud #cloudflare-steps .wphb-notice-success{margin-top:0}.wpmud .cloudflare-clear-cache-tooltip[tooltip]:after{margin-left:-137px}.wpmud .cloudflare-step{margin-top:30px}.wpmud .cloudflare-step form label input{margin-top:5px;background-color:#f8f8f8}.wpmud .cloudflare-step form label input:-moz-placeholder,.wpmud .cloudflare-step form label input:-ms-input-placeholder,.wpmud .cloudflare-step form label input::-moz-placeholder,.wpmud .cloudflare-step form label input::-webkit-input-placeholder{color:#aaa}.wpmud .cloudflare-step>p:first-child{text-align:left}.wpmud .cloudflare-spinner{display:inline-block;float:right}.wpmud #cloudflare-how-to-title,.wpmud .cloudflare-step p.cloudflare-submit{position:relative;margin-top:11px}.wpmud .cloudflare-step p.cloudflare-submit input[type=submit]{display:inline-block;margin-top:0}.wpmud #cloudflare-how-to{clear:both;margin-left:0;margin-bottom:0;list-style-position:inside}.wpmud .cloudflare-step>p{margin-bottom:30px}.wpmud .cloudflare-step p.cloudflare-submit{float:right}.wpmud .cloudflare-step hr{margin-top:20px;margin-bottom:20px}.wpmud .cloudflare-step p.cloudflare-clear-cache-text{text-align:left}.wpmud #cloudflare-how-to-title{float:left;line-height:15px;padding-top:7px;font-size:13px}.wpmud .cloudflare-step .cloudflare-data{text-align:left;margin-top:30px;margin-bottom:0}.wpmud .cloudflare-data>span{display:inline-block;margin-right:20px}.wpmud .box-caching-summary .box-content>.box-content{background:no-repeat 30px 100%;background-image:url(../image/graphic-hb-cf-sell@2x.png);background-size:107px 148px}.wpmud .box-caching-summary .box-content>.box-content.no-background-image{background-image:none}.wpmud .box-caching-settings .select-container.server-type{max-width:240px}.wpmud.wphb-notice{margin-top:30px}.wpmud .box-caching-settings .wphb-expiry-select-box label{margin-top:0}.wpmud .wphb-expiry-select-box .wphb-expiry-select{max-width:240px}.wpmud .box-caching-settings .settings-form .col-two-third>label{padding:0}@media screen and (max-width:1200px) and (min-width:783px){.wpmud #cloudflare-how-to-title{float:none;display:block;text-align:center;margin-bottom:0}.wpmud .cloudflare-step p.cloudflare-submit{float:none;position:relative}.wpmud .cloudflare-step p.cloudflare-submit .cloudflare-spinner{position:absolute;right:0;top:10px}}.wpmud .box-caching-summary .wphb-notice,.wpmud .box-gzip-summary .wphb-notice,.wpmud .wphb-server-instructions .wphb-notice{margin-bottom:30px!important}.wpmud .wphb-caching-active.wphb-notice.wphb-notice-blue{margin-bottom:0!important}.wpmud .wphb-caching-success.wphb-notice.wphb-notice-success{margin-top:30px}.wpmud .wphb-server-instructions .wphb-block-content pre{max-height:240px}.wpmud .wphb-server-instructions .wphb-notice.wphb-notice-blue p{font-size:13px;line-height:22px;color:#333}.wpmud .wphb-server-instructions .wphb-notice.wphb-notice-blue p:before{font-size:16px;line-height:16px}.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning{margin-top:30px}.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning p{font-size:13px;line-height:22px}.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning p:before{font-size:16px;line-height:16px}.wpmud .wphb-cf-detected-notice.wphb-notice.wphb-notice-grey p{font-size:13px;line-height:22px}.wpmud .wphb-cf-detected-notice.wphb-notice.wphb-notice-grey p:before{font-size:16px;line-height:16px}.wpmud .button.notice-button,.wpmud .wphb-expiry-changes .update-htaccess{margin-top:10px}.wpmud .wphb-cloudflare.wphb-notice-warning p{color:#333}.wpmud input[name=expiry-set-type]{box-shadow:inset 0 1px 2px transparent;border:1px solid #e6e6e6;background-color:#f8f8f8}.wpmud input[name=expiry-set-type]:checked{border:1px solid #17a8e3;background-color:#17a8e3}.wpmud input[name=expiry-set-type]:checked+label{color:#333}.wpmud input[name=expiry-set-type]:checked:before{width:8px;height:8px;margin:3px;background-color:#fff}.wpmud input[name=expiry-set-type]+label{display:inline-block;margin-top:0;font-size:15px}.wpmud .wphb-border-frame .table-header .wphb-caching-summary-heading-type{flex-basis:85px}.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-type,.wpmud .wphb-border-frame .table-row .wphb-gzip-summary-item-type{flex-basis:100px}.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-expiry,.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-status{flex-basis:80px}.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-type{font-size:13px;font-weight:500;color:#333}.wpmud .box-caching-settings label,.wpmud .box-gzip-settings label{margin-top:15px;margin-bottom:5px;padding:0}.wpmud .box-caching-settings .wphb-border-frame>label,.wpmud .box-caching-settings label,.wpmud .box-gzip-settings .wphb-border-frame>label,.wpmud .box-gzip-settings label{color:#888;font-size:13px;font-weight:500;line-height:22px}.wpmud .wphb-caching-cloudflare-settings .wphb-expiry-select{width:85%}.wrap-wphb-caching .cloudflare-step label:first-child{margin-top:0}.wpmud .wrap-wphb-caching .tabs,.wpmud .wrap-wphb-caching .tabs .tab .content,.wpmud .wrap-wphb-caching .tabs .tab label,.wpmud .wrap-wphb-gzip .tabs,.wpmud .wrap-wphb-gzip .tabs .tab .content,.wpmud .wrap-wphb-gzip .tabs .tab label{border:0}.wpmud .wrap-wphb-caching .tabs .tab .content,.wpmud .wrap-wphb-gzip .tabs .tab .content{border-top:2px solid #e6e6e6;top:38px}.wpmud .wrap-wphb-caching .tabs .tab label,.wpmud .wrap-wphb-gzip .tabs .tab label{font-size:15px;text-transform:capitalize;color:#888;padding:0 10px;line-height:1.5em;height:40px}.wpmud .wphb-server-instructions .wphb-listing li,.wpmud .wphb-server-instructions p{color:#888;font-size:13px;line-height:22px}.wpmud .wphb-server-instructions .wphb-listing li{margin-top:0}.wpmud .wphb-server-instructions .tabs{margin:0}.wpmud .wphb-server-instructions .tabs .tab .content{padding:20px 0 0}.wpmud .wphb-server-instructions .tabs .tab>.active{color:#333;border-bottom:2px solid #333;z-index:10}.wpmud .box-page-caching .col-two-third .with-bottom-border{margin-bottom:30px}.wpmud .box-page-caching .wphb-dash-table .sub{width:75px}.wpmud .box-page-caching .wphb-dash-table .wphb-dash-table-row:first-child{border-top:0}.wpmud .box-page-caching .wphb-dash-table .wphb-dash-table-row:last-child{border-bottom:0}.wpmud .box-caching-gravatar .wphb-notice,.wpmud .box-page-caching .wphb-notice{margin-top:20px}.wpmud .box-page-caching .settings-form .button-ghost{margin:10px 0}.wpmud .box-caching-rss .settings-form input[type=text]{margin:0;display:inline-block;width:80px}.wpmud .box-caching-rss .settings-form label{margin-top:-5px;color:#666}.wpmud .box-caching-rss .box-footer .spinner{margin:6px 10px 0}@media only screen and (max-width:1200px){.wpmud .wrap-wphb-caching .row{display:block;table-layout:inherit}}@media only screen and (max-width:600px){.wpmud .box-caching-summary .box-content>.box-content{background-image:none}}@media only screen and (max-width:480px){.wpmud .wphb-caching-success.wphb-notice.wphb-notice-success{margin-top:10px}.wpmud .box-caching-summary .wphb-notice,.wpmud .box-gzip-summary .wphb-notice,.wpmud .wphb-server-instructions .wphb-notice{margin-bottom:10px!important}.wpmud .box-caching-summary .content-box-two-cols-image-left .wphb-block-entry-content{margin:0}.wpmud input[name=expiry-set-type]{height:20px;width:20px}.wpmud input[name=expiry-set-type]:checked:before{margin:5px}}.wpmud #wphb-code-snippet{margin-top:20px;margin-bottom:20px}.wpmud .wphb-gzip-error{text-align:left}.wpmud .wphb-gzip-error p:first-child{margin:0 0 10px}.wpmud #configure-gzip-link,.wpmud .wphb-gzip-error a{text-decoration:underline}.wpmud .box-gzip-settings .inline-label{color:#888!important;font-size:13px;font-weight:500;padding-left:0!important}.wpmud .box-gzip-settings .select-container{max-width:240px}.wpmud .box-gzip-settings .wphb-notice-blue{margin-top:0;margin-bottom:30px;padding:15px 20px}.wpmud .box-gzip-settings .wphb-notice-blue p{font-size:13px}.wpmud .box-gzip-settings .wphb-notice-blue p:before{font-size:16px}.wpmud .box-gzip-settings .wphb-notice.htaccess-warning{margin-top:30px;margin-bottom:0!important;padding:15px 20px}.wpmud .box-gzip-settings .wphb-notice.htaccess-warning a{text-decoration:underline}@media screen and (min-width:960px){.wpmud .wphb-border-frame.two-columns .table-header,.wpmud .wphb-border-frame.two-columns .table-row{justify-content:flex-start}.wpmud .wphb-border-frame.two-columns .table-header>div:first-child,.wpmud .wphb-border-frame.two-columns .table-row>div:first-child{flex-basis:50%}}.wpmud .checkbox-group{border-radius:41px;display:flex;justify-content:flex-end;height:40px}.wpmud .wphb-modal .checkbox-group{justify-content:flex-start}.wpmud .checkbox-group input[type=checkbox]{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;display:block}.wpmud .checkbox-group input[type=checkbox]+label{background-color:#fafafa;border-radius:4px;display:flex;padding:0;align-items:center;justify-content:center;text-align:center;width:107px;position:relative;transition-property:background,color;transition-duration:.3s;color:transparent!important;margin-bottom:0;margin-left:5px}.wpmud .wphb-minification-advanced-group input[type=checkbox]+label{width:50px}.wpmud .wphb-modal .checkbox-group{width:100%;height:52px}.wpmud .wphb-modal .checkbox-group input[type=checkbox]+label{padding:10px;width:70px;height:50px}.wpmud .wphb-modal .wphb-progress-state{text-align:left;margin-top:0}.wpmud .checkbox-group input[type=checkbox]+label.toggle-label-background,.wpmud .checkbox-group input[type=checkbox]:checked+label{box-shadow:none;background-color:#effaff}.wpmud .checkbox-group input[type=checkbox]+label>i,.wpmud .checkbox-group input[type=checkbox]+label>span:not(.toggle){color:#888;padding:0;font-size:12px}.wpmud .checkbox-group>span{color:#aaa;font-size:12px;line-height:40px}.wpmud .checkbox-group input[type=checkbox]+label>[class^=hb-]:before{font-size:14px;vertical-align:-2px;margin-right:8px}.wpmud .wphb-minification-advanced-group input[type=checkbox]+label>[class^=hb-]:before,.wpmud .wphb-modal input[type=checkbox]+label>[class^=hb-]:before{margin-right:0}.wpmud .checkbox-group input[type=checkbox]+label.toggle-label-background>span:not(.toggle),.wpmud .checkbox-group input[type=checkbox]:checked+label>i,.wpmud .checkbox-group input[type=checkbox]:checked+label>span:not(.toggle){color:#17a8e3}.wpmud .checkbox-group input[type=checkbox]:disabled+label>i,.wpmud .checkbox-group input[type=checkbox]:disabled+label>span:not(.toggle){color:#ddd}.wpmud .checkbox-group input[type=checkbox]:disabled+label{background-color:#fff}.wpmud .checkbox-group input[type=checkbox]+label>[tooltip]{position:absolute;left:0;top:0;bottom:0;right:0;z-index:9}.wpmud .checkbox-group label [class^=hb-]{display:block;padding:10px 0 4px}.wpmud .wrap-wphb-minification>.row>.wphb-notice{margin-bottom:30px}.wpmud .wphb-minification-files{background-color:#f8f8f8;padding-bottom:1px}.wpmud .box-minification-enqueued-files .box-title .buttons>div{display:inline-block;vertical-align:top}.wpmud .box-minification-enqueued-files .box-title .buttons{margin-right:45px!important}.wpmud .box-minification-enqueued-files .box-title .wphb-switch-button{border-left:1px solid #e6e6e6;display:block;height:60px;left:100%;margin-left:-30px;position:relative;width:60px}.wpmud .box-minification-enqueued-files .box-title .wphb-switch-button>i{color:#aaa;font-size:20px;left:50%;margin-left:-10px;margin-top:-10px;position:absolute;top:50%}.wpmud .box-minification-enqueued-files .box-title-advanced .wphb-switch-button>i{color:#17a8e3}.wpmud .wphb-minification-files-header{background-color:#fff;border-bottom:1px solid #e6e6e6;margin-bottom:30px;padding:30px}.wpmud .wphb-border-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;align-content:center}.wpmud .wphb-minification-files-advanced .wphb-border-row,.wpmud .wphb-minification-files-advanced .wphb-minification-row-details,.wpmud .wphb-minification-files-basic .wphb-border-row{padding:10px 30px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.wpmud .wphb-minification-files-advanced .wphb-minification-row-details{padding:0;display:flex;align-content:center;align-items:center}.wpmud .wphb-minification-files-basic .wphb-border-row{border-bottom:1px solid #e6e6e6}.wpmud .wphb-minification-files-advanced .wphb-border-row{padding:10px 30px 10px 20px;min-height:70px;background-color:#fff;border-radius:4px;box-shadow:0 2px 7px 0 rgba(0,0,0,.05);margin-bottom:10px}.wpmud .wphb-minification-files-advanced .wphb-border-row:last-child,.wpmud .wphb-minification-files-basic .wphb-border-row:last-child{border-bottom:0}.wpmud .wphb-minification-files-table.wphb-minification-files-advanced,.wpmud .wphb-minification-files-table.wphb-minification-files-basic{background-color:#f8f8f8;margin:0 30px 30px}.wpmud .wphb-minification-files-table.wphb-minification-files-basic{background-color:#fff;border-radius:4px;box-shadow:0 2px 7px 0 rgba(0,0,0,.05)}.wpmud .wphb-minification-files-select h3,.wpmud .wphb-minification-files>h3{font-size:13px;font-weight:700;line-height:22px;color:#888;text-align:left;text-transform:none;margin:10px 30px}.wpmud .wphb-minification-files .wphb-notice{margin:0 30px 30px;width:auto}.wpmud .wphb-minification-changed-notice a.wphb-notice-dismiss{opacity:.5;color:#333;font-size:12px;font-weight:700;margin-left:33px;text-transform:uppercase}.wpmud .wphb-minification-file-info{float:left;line-height:18px;overflow:hidden;position:relative;white-space:nowrap;width:300px}.wpmud .wphb-border-row:not(.disabled) .wphb-minification-file-info:after{background:-webkit-linear-gradient(left,hsla(0,0%,100%,0),#fff);background:-o-linear-gradient(left,hsla(0,0%,100%,0) 0,#fff 100%);background:linear-gradient(90deg,hsla(0,0%,100%,0) 0,#fff);content:"";height:100%;pointer-events:none;position:absolute;right:0;top:0;width:40px}.wpmud .wphb-minification-file-info>*{color:#aaa;font-size:10px;font-weight:500;line-height:10px}.wpmud .wphb-minification-file-info>span:first-child{color:#666;display:block;font-size:13px;line-height:13px}.wpmud .wphb-minification-file-info>a{max-width:400px;overflow:hidden}.wpmud .wphb-minification-file-info>.original-size.crossed-out{text-decoration:line-through}.wpmud .wphb-minification-file-info>.compressed-size,.wpmud .wphb-minification-file-info>.dev-icon-caret_down{color:#1abc9c}.wpmud .wphb-minification-file-info>.dev-icon-caret_down{font-size:12px;letter-spacing:-3px;margin-left:-3px;position:relative;top:2px}.wpmud .wphb-minification-filter-buttons{padding:0 30px 20px}.wpmud .wphb-minification-files-select{display:flex;align-items:center;align-content:center;margin:0 50px}.wpmud .wphb-minification-files-select h3{margin:5px 5px 7px}.wpmud .wphb-minification-bulk-file-selector{float:left}.wpmud .wphb-minification-file-select{float:left;line-height:30px;margin-right:10px}.wpmud .wphb-minification-exclude{margin-left:30px}.wpmud .wphb-minification-filter{background-color:#fff;padding:0 30px}.wpmud .wphb-minification-filter>div{height:78px;display:flex;align-items:center;align-content:center}.wpmud .wphb-minification-filter>div>input{margin:0 10px!important;width:40%!important;background-color:#f8f8f8!important}.wpmud .wphb-minification-filter>div .wphb-block-title{color:#333;font:500 13px/30px Roboto,Arial,sans-serif;text-transform:none;margin-right:21px}.wpmud .wphb-minification-filter .select-list-container{min-width:240px!important}.wpmud .wphb-border-row.disabled .checkbox-group,.wpmud .wphb-border-row.out-of-filter{display:none}.wpmud .box-content.disabled,.wpmud .wphb-border-row.disabled{background-color:#f2f2f2}.wpmud .wphb-minification-files-advanced .wphb-border-row.disabled{box-shadow:none}.wpmud .wphb-border-row.disabled .wphb-filename-extension-css,.wpmud .wphb-border-row.disabled .wphb-filename-extension-javascript,.wpmud .wphb-border-row.disabled .wphb-filename-extension-js,.wpmud .wphb-border-row.disabled .wphb-filename-extension-other{opacity:.4}.wpmud .wphb-border-row.disabled .wphb-minification-file-info>span{color:#aaa}.wpmud .wrap-wphb-minification .settings-form{margin:0}.wpmud .wrap-wphb-minification .content-box-two-cols-image-left .wphb-block-entry-content{margin-top:0}.wpmud .box-minification-tools .box-footer .spinner{margin:6px 10px 0}@media only screen and (max-width:1200px){.wpmud .wphb-minification-files-advanced .wphb-minification-file-info{width:235px}}@media only screen and (max-width:1100px){.wpmud .box-minification-enqueued-files .box-title .buttons{float:left;margin-right:-5px!important}.wpmud .wphb-minification-files-advanced .wphb-minification-file-info{width:130px}.wpmud .wphb-minification-files-advanced .wphb-minification-exclude{margin-left:15px}.wpmud .box-minification-enqueued-files .box-footer .button{margin-top:15px}}@media screen and (max-width:1060px){.wpmud .wphb-border-row,.wpmud .wphb-border-row-header{padding:15px}}@media only screen and (max-width:960px){.wpmud .box-minification-enqueued-files .box-title .buttons{float:right;margin-right:45px!important}}@media only screen and (max-width:783px){.wpmud .wphb-minification-files-advanced .fileinfo-group:after{font-family:dashicons,Arial,sans-serif;content:"\F347";position:absolute;left:100%;margin-left:-70px;margin-top:5px}.wpmud .wphb-minification-files-advanced .fileinfo-group.opened:after{content:"\F343"}.wpmud .wphb-minification-files-advanced .fileinfo-group{padding:10px 0;overflow:hidden}.wpmud .wphb-minification-files-advanced .wphb-minification-file-info{width:55%;min-width:200px}.wpmud .wphb-minification-files-advanced .wphb-minification-file-info>a{max-width:200px}.wpmud .wphb-minification-files-advanced .wphb-minification-row-details{display:none;margin:10px 0;border-top:1px solid #e6e6e6;padding-top:15px!important;width:100%;z-index:100}.wpmud .wphb-minification-files-advanced .wphb-minification-advanced-group{float:left}.wpmud .wphb-minification-files-advanced .wphb-minification-exclude{float:right;margin-top:7px}}@media only screen and (max-width:600px){.wpmud .box-minification-enqueued-files .box-title .buttons,.wpmud .box-minification-enqueued-files .box-title h3{float:none!important}.wpmud .box-minification-enqueued-files .box-title .wphb-switch-button{height:96px;margin-left:-60px;position:absolute;top:0}.wpmud .wphb-minification-file-info{width:185px}.wpmud .box-minification-enqueued-files .box-footer .status-text{display:block;max-width:100%;text-align:left;padding-left:0}}@media only screen and (max-width:480px){.wpmud .wphb-minification-files-table.wphb-minification-files-advanced,.wpmud .wphb-minification-files-table.wphb-minification-files-basic{margin:0 10px 30px}.wpmud .wphb-minification-files-header{padding:15px 30px}.wpmud .box-minification-enqueued-files .buttons .button{padding:7px!important}.wpmud .wphb-minification-filter-buttons{padding:0 20px 20px}.wpmud .wphb-minification-files-select{margin:0 20px}.wpmud .wphb-minification-files>h3{margin:10px}.wpmud .wphb-minification-files-advanced .wphb-border-row,.wpmud .wphb-minification-files-basic .wphb-border-row{padding:10px}.wpmud .wphb-minification-file-info{width:155px}.wpmud .wphb-minification-files-advanced .wphb-minification-file-info{min-width:170px}.wpmud .wphb-border-row .fileinfo-group{margin-top:0;margin-bottom:0}.wpmud .checkbox-group>span{line-height:20px;text-align:right;align-self:center}.wpmud .checkbox-group input[type=checkbox]+label{width:60px}.wpmud .checkbox-group input[type=checkbox]+label>[class^=hb-]:before{margin-right:0}.wpmud .checkbox-group input[type=checkbox]+label>span[class^=hb]>span{display:none}.wpmud .wphb-minification-files-advanced .fileinfo-group:after{margin-left:-40px}}.wpmud .wrap-wphb-uptime>#header .actions.status{left:120px;margin-top:1px!important}.wpmud .wphb-block-uptime-status .wphb-uptime-icon{max-height:110px}.wpmud .wphb-block-content-uptime-data-range{padding-top:9px;padding-bottom:9px}.wpmud .uptime-chart svg g g rect{fill:#e6e6e6;stroke:transparent;stroke-width:0}.wpmud .uptime-chart svg g g text{fill:#fff;font-family:Roboto,Arial,sans-serif;font-size:13px;font-weight:400}.wpmud .uptime-chart svg g g g g rect:hover{stroke-width:0px;stroke:red;display:none}.wpmud .uptime-chart svg g g text:last-of-type{fill:#aaa;font-weight:500}.wpmud .wrap-wphb-uptime .wphb-pills.green,.wpmud .wrap-wphb-uptime .wphb-pills.red{height:40px;line-height:40px;width:200px;border-radius:5px}.wpmud .wrap-wphb-uptime .wphb-notice-grey{margin-bottom:30px}.wpmud .wphb-block-uptime-downtime .dev-list{margin-top:30px}.wrap-wphb-caching .wphb-block-entry .wphb-block-content-center,.wrap-wphb-uptime .wphb-block-entry .wphb-block-content-center{max-width:600px;margin:0 auto}.wpmud .downtime-chart svg g text{font-family:Roboto,Arial,sans-serif;fill:#aaa;font-weight:500;font-size:12px;line-height:20px}.wpmud .wphb-block-content.wphb-downtime-basic{margin-left:80px;max-width:90%}.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart{height:80px}.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart div div svg{height:58px!important;overflow:hidden}.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart svg g text{display:none}.wpmud .downtime-chart svg g path{stroke:transparent}.wpmud .downtime-chart svg g rect{stroke:transparent;stroke-width:0}.wpmud .downtime-chart-key span{color:#aaa;font-size:12px;line-height:20px;margin-right:30px;font-weight:500}.wpmud .downtime-chart-key span:before{content:"";display:inline-block;height:16px;width:16px;border-radius:2px;margin-right:10px;vertical-align:sub}.wpmud .downtime-chart-key span.response-time-key:before{background-color:#e1f6ff;border-top:2px solid #24ade5;height:14px}.wpmud .downtime-chart-key span.uptime-key:before{background-color:#d1f1ea}.wpmud .downtime-chart-key span.downtime-key:before{background-color:#ff6d6d}.wpmud .downtime-chart-key span.unknown-key:before{background-color:#f8f8f8}.wpmud .wrap-wphb-uptime .dev-list-stats-item{margin-bottom:10px}.wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_down,.wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_up{color:#fff;padding:6px;margin-right:10px;vertical-align:middle;border-radius:5px;font-size:18px}.wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_down{background-color:#ff6d6d}.wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_up{background-color:#1abc9c}.wpmud .wrap-wphb-uptime .wphb-pills-group{width:100%}.wpmud .wrap-wphb-uptime .wphb-pills.green,.wpmud .wrap-wphb-uptime .wphb-pills.red{text-align:left;color:#333;font-size:13px;height:56px;line-height:50px;padding-left:15px}.wpmud .wrap-wphb-uptime .wphb-pills.red[tooltip]:after{left:48%}.wpmud .wrap-wphb-uptime .wphb-pills.red{background-color:#ffe5e9;border-top:2px solid #ffe5e9;border-bottom:2px solid #ff6d6d;width:60%}.wpmud .wrap-wphb-uptime .wphb-pills.green{background-color:#d1f1ea;border-top:2px solid #1abc9c;border-bottom:2px solid #d1f1ea;width:40%}.wpmud span.list-detail-stats{position:absolute;font-size:13px;font-weight:500;line-height:22px;right:60%;color:#333;opacity:.5;margin-top:16px}.wphb-image-pills-divider{display:inline-block;height:56px;margin-bottom:-25px;margin-left:-28px;position:absolute}.wpmud .downtime-chart div.google-visualization-tooltip,.wpmud .wphb-uptime-graph div.google-visualization-tooltip{font-family:Roboto,sans-serif;font-weight:500;color:#fff;font-size:12px;border:none;border-radius:5px;padding:8px 12px;background:#000}.wpmud .wphb-uptime-graph div.google-visualization-tooltip .response-time-tooltip{font-size:15px;line-height:18px}.wpmud .wphb-uptime-graph div.google-visualization-tooltip .uptime-date-tooltip{font-size:11px;color:#aaa;line-height:14px;display:block}@media only screen and (max-width:600px){.wpmud .uptime-data-range{position:absolute;top:-50px;right:0}.wpmud .uptime-data-range .select-list-container{min-width:180px}.wpmud .wrap-wphb-uptime .actions>.documentation-button{margin-left:0!important}.wpmud .wrap-wphb-uptime .wphb-pills.green{position:absolute;top:0;right:0;height:30px;border-radius:0 4px 0 0!important;line-height:30px;padding-left:10px;width:160px}.wpmud .wrap-wphb-uptime .wphb-pills.red{width:100%;margin-top:30px;height:50px;border-radius:5px 0 5px 5px!important}.wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_down,.wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_up{padding:4px;border-radius:4px;font-size:12px;vertical-align:inherit}.wphb-image-pills-divider{display:inline-block;height:30px;margin-left:0;top:0;right:160px}.wpmud span.list-detail-stats{right:20px;margin-top:46px;opacity:.7}}@media only screen and (max-width:480px){.wpmud .box-uptime-summary .list-detail{max-width:60px}.wpmud .uptime-chart{margin-left:-25px}}.wpmud [class^=box-advanced] .spinner{margin:5px 10px 0;vertical-align:top}.wpmud .box-advanced-db .wphb-border-frame{margin-top:30px!important}.wpmud .box-advanced-db .wphb-border-frame .table-header,.wpmud .box-advanced-db .wphb-border-frame .table-row{padding:20px 30px}@media only screen and (max-width:783px){.wpmud .box-advanced-db .wphb-border-frame .table-header,.wpmud .box-advanced-db .wphb-border-frame .table-row{padding:20px 0}}.wpmud .box-advanced-db .wphb-border-frame .table-header div{flex-basis:50px}.wpmud .box-advanced-db .wphb-border-frame .table-header div:first-child,.wpmud .box-advanced-db .wphb-border-frame .table-row div:first-child{flex-basis:150px}.wpmud .box-advanced-db .wphb-border-frame .table-row div{height:20px;font-size:13px;line-height:20px}.wpmud .box-advanced-db .wphb-border-frame .table-row div:first-child{color:#333;font-weight:500}.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-wpmudev-icon-info{color:#ddd;font-size:16px;margin-left:10px}.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-wpmudev-icon-info:hover{color:#aaa}.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-wpmudev-icon-info:before{vertical-align:middle}.wpmud .box-advanced-db .wphb-border-frame .table-row .wphb-db-row-delete{width:30px;height:30px;display:inline-block;border-radius:4px;margin-top:-5px;text-align:center;vertical-align:middle}.wpmud .box-advanced-db .wphb-border-frame .table-row .wphb-db-row-delete:hover{background-color:#f5f5f5}.wpmud .box-advanced-db .wphb-border-frame .table-row .wphb-db-row-delete:hover .hb-fi-trash{color:#ff6d6d}.wpmud .box-advanced-db .wphb-border-frame .table-row .spinner{margin-top:1px}.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-fi-trash{color:#888;font-size:12px;top:5px}.wpmud .box-advanced-db .wphb-border-frame .table-footer{padding:0 30px 30px}.wpmud .box-advanced-db .wphb-border-frame .table-footer .buttons .spinner{margin-top:6px}@media only screen and (max-width:783px){.wpmud .box-advanced-db .wphb-border-frame .table-footer{padding:20px 0}.wpmud .box-advanced-db .wphb-border-frame .table-footer .status-text{text-align:left;margin-top:0;padding-left:0}.wpmud .box-advanced-db .wphb-border-frame .table-footer .buttons{margin-top:0}}@media only screen and (max-width:600px){.wpmud .box-advanced-db .wphb-border-frame .table-footer .status-text{word-wrap:break-word;max-width:180px}}.wpmud .box-advanced-db-settings .settings-form .included-tables>label:first-child,.wpmud .box-advanced-db-settings .settings-form .schedule-box>label:first-child{margin-top:0}.wpmud .box-advanced-db-settings .settings-form .included-tables>label{margin-top:7px;color:#333}.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership{padding-top:0}@media only screen and (max-width:1200px){.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership .wphb-block-entry-content{margin-top:30px}}.wpmud .wrap-wp-hummingbird .mline{margin-bottom:30px}.wpmud .select-list-container{min-width:100px}.wpmud .select-list-container .list-value{color:#333;font-weight:500;padding:6px 8px 6px 15px}#wpbody-content{padding-bottom:25px}.wpmud .with-bottom-border{border-bottom:1px solid #e6e6e6;padding-bottom:30px}.wpmud #header{position:relative;margin-bottom:0}.wpmud #header .actions.status{left:200px;margin-top:1px}.wpmud #header .actions.status [tooltip]:after{margin-left:27px;bottom:-60%}.wpmud #header .actions.status [tooltip]:before{bottom:25%;left:100%;border-right-color:#0b2f3f;border-top:5px solid transparent}.wpmud #header .actions{position:absolute;display:flex;align-items:center;top:5px;right:0}.wpmud #header .actions>*{display:inline-block;margin-left:10px}.wpmud #header .actions.label-and-button>:first-child{margin-left:0}.wpmud #header .actions.label-and-button .actions-label{color:#888;font-size:13px;line-height:18px;margin:0;text-align:right}.wpmud #header .actions .header-label{font-size:12px;color:#aaa}.wpmud #header~.sub-header{margin-top:-15px;margin-bottom:30px}.wpmud .list-table>tbody>tr:last-child>td{border-bottom:1px solid #eee}.wpmud .list-table>thead>tr>th{text-transform:none;font-size:13px;font-weight:700}.wpmud .list-table>tbody>tr>td{padding:12px 10px}.wpmud .list-table .radio-group.with-icon{display:inline-table}.wpmud .list-table .radio-group.with-icon .dev-icon{vertical-align:middle}.wpmud .dev-list{margin:-30px 0 20px}.wpmud .dev-list .content{padding:30px 0;border-bottom:1px solid #eee}.wpmud .dev-list>li.list-header{text-transform:none;color:#333;font-size:13px}.wpmud .dev-list .list-header .list-label{font-weight:700}.wpmud .dev-list>li .list-label{font-size:13px;font-weight:500;line-height:21px;padding:15px 10px 15px 0}.wpmud .dev-list>li:last-child .list-detail,.wpmud .dev-list>li:last-child .list-label{border-bottom:1px solid #eee}.wpmud .box-dashboard-welcome .dev-list>li:last-child .list-detail,.wpmud .box-dashboard-welcome .dev-list>li:last-child .list-label,.wpmud .box-minification-summary-meta-box .dev-list>li:last-child .list-detail,.wpmud .box-minification-summary-meta-box .dev-list>li:last-child .list-label,.wpmud .box-performance-welcome .dev-list>li:last-child .list-detail,.wpmud .box-performance-welcome .dev-list>li:last-child .list-label,.wpmud .box-uptime-summary .dev-list>li:last-child .list-detail,.wpmud .box-uptime-summary .dev-list>li:last-child .list-label{border-bottom:1px solid transparent}.wpmud .dev-list>li .list-detail .wphb-dash-numbers{font-family:Roboto Condensed,sans-serif;font-size:13px;color:#888;line-height:22px;text-align:right;font-weight:400}.wpmud .dev-list-stats-border>li:first-child .list-detail,.wpmud .dev-list-stats-border>li:first-child .list-label{border-top:1px solid #eee}.wpmud .dev-list-stats-border>li:last-child .list-detail,.wpmud .dev-list-stats-border>li:last-child .list-label{border-bottom-color:#eee}.wpmud .dev-list-stats>li .list-detail-stats-heading,.wpmud .dev-list-stats>li .list-label-stats{color:#333;font:500 13px/30px Roboto,Arial,sans-serif}.wpmud .dev-list-stats>li .list-detail-stats-heading{font-weight:400;font-size:18px;color:#666}.wpmud .dev-list-stats>li .list-detail-stats-heading-extra-info{color:#bababa;display:block;font:500 12px/16px Roboto,Arial,sans-serif;margin-top:5px}.wpmud .dev-list-stats.standalone{margin:0}.wpmud .dev-list-stats.small>li .list-detail-stats-heading,.wpmud .dev-list-stats.small>li .list-label-stats{line-height:26px}.wpmud .dev-list-stats>li .list-detail-stats-heading.small{font-size:26px}.wpmud .dev-list-stats>li .list-label-stats-date{margin-right:30px}.wpmud .list-label-link{color:#19b4cf}.wpmud input[type=checkbox]{border-radius:4px;border:1px solid #e6e6e6;background-color:#f8f8f8}.wpmud [tooltip]:after{font:500 12px/18px Roboto;padding:8px 12px;background:#333;min-width:50px;max-width:250px;transition:all .2s ease;text-transform:none}.wpmud .tooltip-box{overflow:hidden}.wpmud .tooltip-box:hover{overflow:visible}.wpmud .radio-group input[type=radio]+label>[tooltip]{position:absolute;left:0;top:0;bottom:0;right:0;z-index:9}.wpmud .wphb-button-label{border:1px solid transparent;border-radius:15px;color:#fff;font:500 12px/26px Roboto;display:inline-block;height:26px;margin:0;padding:0 12px;text-decoration:none;text-shadow:none;text-transform:none;white-space:nowrap}.wpmud .wphb-button-label-red{background:#fd6e70}.wpmud .wphb-button-label-yellow{background:#ffd000;color:#333}.wpmud .wphb-button-label-green{background:#1abc9c}.wpmud .wphb-button-label-light{color:#333;background-color:#f2f2f2}.wpmud .wrap-wp-hummingbird .wphb-label{color:#fff;display:block;font:500 15px/20px Roboto;text-shadow:none;white-space:nowrap}.wpmud .wrap-wp-hummingbird .wphb-label-notice{background:#14485f;border-radius:3px;padding:5px 10px}.wpmud .wrap-wp-hummingbird .wphb-label-notice-warning{background:#fecf2f;color:#4e4b10}.wpmud .wrap-wp-hummingbird .wphb-label-notice-inline{display:inline-block;font-size:13px;color:#888}.wpmud .wrap-wp-hummingbird .wphb-label-disabled{background:#f2f2f2;border-radius:20px;color:silver;display:inline-block;font:500 12px/20px Roboto,Arial,sans-serif;min-width:120px;padding:5px;text-align:center;text-transform:uppercase}.wpmud .footer-love{text-align:center;margin-top:50px;color:silver;font-size:13px}.wpmud .footer-love>.dashicons-heart{font-size:14px;line-height:22px}.wpmud .wphb-table-wrapper.complex{min-height:.01%;overflow-x:auto;border-bottom:1px solid #eee}.wpmud .wphb-table{font-weight:400;max-width:100%;width:100%;color:#333}.wpmud .list-table.wphb-table tr:hover .wphb-table-td-has-tooltip{z-index:3}.box-dashboard-welcome .box-content,.box-minification-summary-meta-box .box-content,.box-performance-welcome .box-content,.box-uptime-summary .box-content{padding:30px 30px 10px!important}.box-dashboard-welcome .wphb-block-entry,.box-minification-summary-meta-box .wphb-block-entry,.box-performance-welcome .wphb-block-entry,.box-uptime-summary .wphb-block-entry{width:100%;min-height:172px}.wpmud .wphb-image,.wpmud .wphb-image-icon-content{display:block;height:auto;max-width:100%}.wpmud .wphb-image-center,.wpmud .wphb-image-icon-content-center{margin-right:auto;margin-left:auto}.wpmud .wphb-image-icon-content-top{margin-bottom:30px}.wpmud .wphb-listing{margin:0}.wpmud .wphb-listing li{font-family:Roboto,Arial,sans-serif;font-size:15px;font-weight:400;line-height:21px;margin-top:10px;margin-bottom:0}.wpmud .wphb-listing li:first-child{margin-top:0}.wpmud .wphb-listing.bold li{font-weight:500}.wpmud .wphb-listing-ordered{padding-left:20px}.wpmud .wphb-listing li strong{font-weight:500}.wpmud .wphb-listing li:before{color:#17a8e3;top:0}.wpmud .wphb-listing li p{font-size:13px;line-height:22px;margin-top:5px}.wpmud .wphb-select-group{clear:both}.wpmud .wphb-select-group:after{content:"";display:table;clear:both}.wpmud .wphb-select-group>div,.wpmud .wphb-select-group>label{float:left;display:block}.wpmud .wphb-select-group>label{line-height:43px;margin-right:10px}.wpmud .select-container{overflow:hidden}.wpmud .select-container.active{overflow:visible}.wpmud .wphb-select-group .spinner{margin:11px}@keyframes spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.wphb-scan-progress{overflow:hidden;width:100%}.not-present .wphb-scan-progress-text:before,.wphb-scan-progress .wphb-scan-progress-text:before{content:" ";width:18px;height:18px;display:inline-block;position:relative;top:5px;left:1px;margin-right:10px;border:2px solid #a9e0ec;border-bottom-color:#17a8e3;border-radius:100%;background:0 0;box-sizing:border-box;animation:spinner .75s 0s linear infinite}.wphb-scan-progress .wphb-scan-progress-text{width:65px;float:left;text-align:left}.wphb-scan-progress .wphb-scan-progress-text img{display:inline-block;vertical-align:middle;margin-right:10px}.wphb-scan-progress .wphb-scan-progress-text span{font-weight:700;font-family:Roboto Condensed,sans-serif;font-size:13px;color:#333;vertical-align:middle;line-height:30px}.wphb-scan-progress .wphb-scan-progress-bar{background:#e6e6e6;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;height:10px;width:70%;overflow:hidden;margin-top:10px;position:relative}.wphb-scan-progress .wphb-scan-progress-bar span{background:#17a8e3;height:10px;display:inline-block;position:absolute;top:0;left:0;-webkit-transition:width 1s ease-in-out;-moz-transition:1s width ease-in-out;transition:width 1s ease-in-out}.wphb-block-test{background-color:#f9f9f9;border-radius:5px;max-width:700px;width:100%;height:60px;padding:15px 30px}.wphb-block-test-header{margin-bottom:10px}.wphb-progress-state{margin-top:10px;text-align:center}.wphb-progress-state .wphb-progress-state-text{color:#8b8b8b;font-size:13px;line-height:22px}.wphb-block-test-standalone{max-width:100%;text-align:center;margin-top:25px}.wphb-block-test-standalone .wphb-progress{margin:0 auto}.wphb-filename-extension{border-radius:4px;display:block;float:left;font-family:Roboto,sans-serif;font-size:9px;color:#fff;text-transform:uppercase;text-align:center;line-height:43px;height:30px;margin:0 10px 0 0;width:30px}.wphb-filename-extension-html{background-color:#f56418}.wphb-filename-extension-other{background-color:#aaa}.wphb-filename-extension-css{background-color:#25a8de}.wphb-filename-extension-media{background-color:#55ddb8}.wphb-filename-extension-images{background-color:#bdf2f7;color:#333}.wphb-filename-extension-javascript,.wphb-filename-extension-js{background-color:#f7e100;color:#333}.wpmud .list-table.hover-effect>tbody>tr[class*=wphb-table-score] td:first-child{padding-left:30px}.wpmud .list-table.hover-effect>tbody>tr[class*=wphb-table-score] td:first-child:before{font-family:hummingbird,sans-serif;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:20px;vertical-align:middle;margin-right:10px}.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-disabled:hover>td:first-child:after,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-dismissed:hover td:first-child:after,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-error:hover td:first-child:after,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-success:hover>td:first-child:after,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-warning:hover td:first-child:after{content:normal}.wphb-table-score-success td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-success td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-success:hover td:first-child{border-left:4px solid #1abc9c}.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-success td:first-child:before{color:#1abc9c;content:"\E903"}.wphb-table-score-warning td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-warning td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-warning:hover td:first-child{border-left:4px solid #ffd000}.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-warning td:first-child:before{color:#ffd000;content:"\E904"}.wphb-table-score-error td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-error td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-error:hover td:first-child{border-left:4px solid #ff6d6d}.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-error td:first-child:before{color:#ff6d6d;content:"\E904"}.wphb-table-score-disabled td:first-child,.wphb-table-score-dismissed td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-disabled td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-dismissed td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-disabled:hover td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-dismissed:hover td:first-child{border-left:4px solid #888}.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-disabled td:first-child:before,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-dismissed td:first-child:before{color:#888;content:"\E904"}.wphb-score-result-grade-a,.wphb-score-result-grade-aplus{color:#1abc9c}.wphb-score-result-grade-a .wphb-score-type-circle .wphb-score-graph-result,.wphb-score-result-grade-aplus .wphb-score-type-circle .wphb-score-graph-result{stroke:#1abc9c}.wphb-score-result-grade-b{color:#1abc9c}.wphb-score-result-grade-b .wphb-score-type-circle .wphb-score-graph-result{stroke:#1abc9c}.wphb-score-result-grade-c{color:#ffd000}.wphb-score-result-grade-c .wphb-score-type-circle .wphb-score-graph-result{stroke:#ffd000}.wphb-score-result-grade-d{color:#ffd000}.wphb-score-result-grade-d .wphb-score-type-circle .wphb-score-graph-result{stroke:#ffd000}.wphb-score-result-grade-e,.wphb-score-result-grade-f{color:#ff6d6d}.wphb-score-result-grade-e .wphb-score-type-circle .wphb-score-graph-result,.wphb-score-result-grade-f .wphb-score-type-circle .wphb-score-graph-result{stroke:#ff6d6d}.wphb-score-result-grade-disabled,.wphb-score-result-grade-dismissed{color:#aaa}.wphb-score-result-grade-disabled .wphb-score-type-circle .wphb-score-graph-result,.wphb-score-result-grade-dismissed .wphb-score-type-circle .wphb-score-graph-result{stroke:#aaa}.wphb-score-have-label .wphb-score-result-label,.wphb-score-have-label .wphb-score-type{float:left;display:block}.wphb-score-have-label.inside .wphb-score-result-label,.wphb-score-have-label.inside .wphb-score-type{float:none}.wphb-score-have-label .wphb-score-result-label{font-family:Roboto,Arial,sans-serif;font-size:15px;color:#888;padding-left:10px}.wphb-score-have-label .wphb-score-type-circle+.wphb-score-result-label{line-height:30px;min-width:35px;text-align:left}.wphb-score-have-label.inside .wphb-score-type{position:relative}.wphb-score-have-label.inside .wphb-score-result-label{font-size:26px;left:0;line-height:34px;margin:-17px 0 0;min-width:100%;padding:0;position:absolute;right:0;text-align:center;top:50%}#wphb-error-details{display:none}#wphb-error-details-link{color:#fff;text-decoration:none;margin-top:10px;margin-bottom:10px;display:inline-block;font-weight:400}#wphb-error-details-link>.dashicons{text-decoration:none}#wphb-error-details-link.expanded{display:none}.wpmud .wphb-tabs a{color:#333;display:block}.wpmud .wphb-tabs .wphb-tab{padding:5px 20px;height:30px}.wpmud .wphb-tabs .wphb-tab.current{background-color:#e6e6e6;border-radius:20px;font-weight:500}.wpmud .wphb-tab .wphb-button-label{position:relative;top:-25px;left:100%;margin-left:-22px;width:39px;height:26px;text-align:center;font-size:12px;font-weight:500;line-height:24px}.wpmud .wphb-tab>i{color:#ff6d6d;position:relative;top:-23px;left:100%;margin-left:-5px;font-size:21px}.wpmud .wphb-tab>i.hb-wpmudev-icon-tick{color:#1abc9c}@media screen and (max-width:960px){.wpmud .wphb-table.stack{display:block}.wpmud .wphb-table.stack>tfoot,.wpmud .wphb-table.stack>thead{display:none}.wpmud .wphb-table.stack>tbody{display:block;width:100%}.wpmud .wphb-table.stack>tbody>tr{display:block;position:relative;width:100%}.wpmud .wphb-table.stack>tbody>tr:before{background:transparent;border-top:1px solid #eaeaea;border-bottom:1px solid transparent;bottom:0;content:"";display:block;left:0;margin:0 -30px;position:absolute;right:0;top:0}.wpmud .wphb-table.stack>tbody>tr:first-child:before{border-top-color:transparent}.wpmud .wphb-table.stack>tbody>tr>td{border-bottom:none;display:block;padding-left:0;position:relative;text-align:left;width:100%}.wpmud .wphb-table.stack>tbody>tr>td:before{content:attr(th-data);display:block;float:left;font-size:15px;font-weight:700;line-height:1.5em;min-width:150px;max-width:300px;margin-right:20px;text-transform:uppercase}.wpmud .wphb-table.stack>tbody>tr>td.has-button-label:before{line-height:2em}.wpmud .wphb-table.stack>tbody>tr>td.has-select{max-height:64px}.wpmud .wphb-table.stack>tbody>tr>td.has-select:before{line-height:2.867em}.wpmud .wphb-table.stack>tbody>tr,.wpmud .wphb-table.stack>tbody>tr>td:first-child{border-top:none}.wpmud .wphb-table.stack>tbody>tr>td:last-child{border-bottom:none}.wpmud .wphb-table.stack>tbody>tr:hover:before{background:#fbfbfb}.wpmud .wphb-table.stack>tbody>tr:first-child:hover:before{border-top-color:#eaeaea}.wpmud .wphb-table.stack>tbody>tr:last-child:hover:before{border-bottom-color:#eaeaea}.wpmud .wphb-table.stack>tbody>tr:hover>td{border-bottom:none}.wpmud .wphb-table.stack>tbody>tr:hover>td:first-child:after,.wpmud .wphb-table.stack>tbody>tr:hover>td:last-child:after{display:none}.wpmud .wphb-table.stack>tbody>tr>td>*{display:inline-block}}@media screen and (max-width:783px){.wpmud #header .actions{position:relative;display:flex;align-items:center;top:0;margin:10px 0;float:none;padding-bottom:0}.wpmud #header .actions .button:first-child{margin-left:0}.wpmud #header .actions [tooltip].tooltip-bottom:after{margin-left:-54px}.wpmud .wphb-table-wrapper.complex{overflow-y:hidden;width:100%;padding:0}.wpmud .wphb-table-wrapper.complex p{padding:0 20px}.wpmud .wphb-table-wrapper.complex .alignleft{padding-left:20px}.wpmud .wphb-table-wrapper.complex .alignright{padding-right:20px}.wpmud .list-table>tbody>tr>td,.wpmud .list-table>thead>tr>th{width:100%}.wpmud .wphb-table.stack>tbody>tr>td:before{max-width:220px;width:40%}.wpmud .dev-box .box-title .toggle-group{margin-top:0}.wpmud #header .after-header-actions .button{margin-top:-15px}}@media screen and (max-width:600px){.wpmud .dev-box .box-title .actions,.wpmud .dev-box .box-title .extra{float:none;display:block}.wpmud .dev-box .box-title .actions,.wpmud .dev-box .box-title .extra,.wpmud .row{margin-top:15px}.wpmud .dev-box{margin-bottom:15px}.wpmud .dev-box .box-title{padding:15px 20px}.wpmud .dev-box .box-title .buttons{margin-top:2px;float:right}.wpmud .dev-box .box-title h3{line-height:34px;display:inline-block}}@media only screen and (max-width:480px){.wpmud .list-table.hover-effect>tbody>tr[class*=wphb-table-score] td:first-child{padding-left:20px}.wpmud .with-bottom-border{padding-bottom:20px}}
2
- /*# sourceMappingURL=app.css.map*/
 
 
admin/assets/css/app.css.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"sources":["webpack:///./_src/scss/_src/scss/common/_classes.scss","webpack:///./_src/scss/_src/scss/common/_mixins.scss","webpack:///./_src/scss/_src/scss/common/_overwrites.scss","webpack:///./_src/scss/_src/scss/common/_typography.scss","webpack:///./_src/scss/_src/scss/common/_buttons.scss","webpack:///./_src/scss/_src/scss/common/_layout.scss","webpack:///./_src/scss/_src/scss/common/_modals.scss","webpack:///./_src/scss/_src/scss/common/_variables.scss","webpack:///./_src/scss/_src/scss/components/_notices.scss","webpack:///./_src/scss/_src/scss/components/_pills.scss","webpack:///./_src/scss/_src/scss/components/_border_frame.scss","webpack:///./_src/scss/_src/scss/components/_settings_form.scss","webpack:///./_src/scss/_src/scss/modules/_dashboard.scss","webpack:///./_src/scss/_src/scss/modules/_performance.scss","webpack:///./_src/scss/_src/scss/modules/_caching.scss","webpack:///./_src/scss/_src/scss/modules/_gzip.scss","webpack:///./_src/scss/_src/scss/modules/_minification.scss","webpack:///./_src/scss/_src/scss/modules/_uptime.scss","webpack:///./_src/scss/_src/scss/modules/_advanced.scss","webpack:///./_src/scss/_src/scss/app.scss"],"names":[],"mappings":"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yBACA,kBACA,cAAe,CAClB,oBAGG,aACA,qBACA,mBACA,YACA,mBAAoB,CACvB,0BAGG,eACA,UAAc,CACjB,kBAGG,qBACA,qBAAsB,CACzB,sMAKG,aACA,qBACA,mBACA,YACA,kBACA,kBAAmB,CACtB,uEAGG,kBAAmB,CACtB,6DAGG,eACA,iBACA,kBACA,eAAgB,CACnB,mEAGG,gBAAiB,CACpB,6EAGG,QAAS,CACZ,wCAGG,YACA,kBAAmB,CACtB,0CAGG,kBAAmB,CACtB,6CAGG,eACA,mBAAoB,CACvB,0DAGG,WACA,eACA,gBAAiB,CACpB,uDAGG,WAAY,CACf,kIAMG,sBACA,6BACA,6BAA+B,CAClC,wIAKG,YAAa,CAChB,4HAKG,WACA,eACA,gBACA,iBACA,mBAAoB,CACvB,yHAKG,WACA,eACA,iBACA,cACA,iBAAkB,CACrB,uFAIG,aAAc,CACjB,oCEjKG,eAAgB,CACnB,sDAGG,YACA,wCACA,0BACA,kBACA,4BACA,YACA,SACA,mBACA,KAAM,CACT,iCAGG,kBACA,WACA,oCACA,eACA,gBACA,iBACA,kBACA,kBACA,UAAW,CACd,oEAIG,yBACA,SACA,kBAAmB,CACtB,6BAGG,eACA,gBACA,aAAc,CACjB,8CAIG,WACA,eAAgB,CACnB,2HAMG,sBACA,kBAAmB,CACtB,gDAGG,QAAS,CACZ,wBAGG,eAAgB,CACnB,8BAGG,UAAW,CACd,wEAIG,eACA,YACA,iBACA,UAAW,CACd,qCAGG,eACA,WACA,eACA,gBACA,iBACA,cACA,WACA,wBAAyB,CAC5B,ggBAaG,yCACA,eACA,sBACA,iBACA,SACA,kBACA,kBACA,iBAAkB,CACrB,4BAGG,wBAAyB,CAC5B,0BAGG,wBAAyB,CAC5B,4BAGG,yBACA,UAAc,CACjB,uDAIG,yBACA,eAAgB,CACnB,uDAIG,yBACA,eAAgB,CACnB,0CAGG,YAAa,CAChB,0FAIG,gBACA,aAAc,CACjB,qDAGG,eACA,gBAAiB,CACpB,mCAGG,gBACA,aAAc,CACjB,qCAGG,gBACA,cACA,eACA,gBAAiB,CACpB,kCAGG,gBACA,aAAc,C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,aACA,mBACA,oBAAqB,CAUxB,4BAHG,8BACA,YACA,4BAA6B,CAChC,uCAGG,mBAAoB,CACvB,4FAIG,yBACA,eAAgB,CACnB,4CAGG,eACA,WACA,gBACA,gBAAiB,CACpB,oEAIG,iBAAkB,CACrB,0FAIG,gBAAiB,CACpB,8HAKG,cAAe,CAClB,kIAIG,cAAe,CAClB,6BAIG,WACA,eACA,iBACA,cAAe,CAClB,oEAIG,eAAgB,CACnB,6EAGG,aACA,mBACA,qBACA,cAAe,CAClB,kEAGG,eACA,iBACA,WACA,eAAgB,CACnB,+HAIG,cAAe,CAClB,qLAKG,qCAAsC,CACzC,sHAIG,qCAAsC,CACzC,sHAIG,qCAAsC,CACzC,yEAGG,eAAgB,CACnB,kkBASG,yCACA,eACA,iBAAkB,CACrB,0PAKG,cACA,eAAgB,CACnB,oKAIG,cACA,eAAgB,CACnB,oKAIG,cACA,eAAgB,CACnB,2EAIG,aAAc,CACjB,gDAGG,gBACA,kBAAmB,CACtB,kEAGG,gBACA,gBACA,eACA,eAAgB,CACnB,oDAGG,cACA,gBACA,eACA,gBAAiB,CACpB,kNAMG,eACA,qDACA,UAAc,CACjB,sDAGG,eAAiB,CACpB,4DAIG,kBACA,kBACA,yBACA,kBACA,mBACA,WACA,eACA,gBAAiB,CACpB,yCAGG,kBACA,QACA,OACA,iBACA,WACA,QACA,SACA,iCACA,oCACA,8BAA+B,CAClC,4DAIG,WACA,0BACA,eAAgB,CACnB,wWASG,yBAA2B,CAC9B,qGAGG,eAAgB,CACnB,2CAIG,yBACA,aACA,WACA,kBACA,0BACA,uBACA,kBACA,mBACA,aACA,sBACA,mBACA,sBAAuB,CAC1B,iDAGG,yBACA,cAAe,CAClB,6CAGG,WACA,cAAe,CAClB,kDAIG,WAEA,gBAEA,gBACA,CACH,qGAPG,qDAEA,gBAEA,eAEA,wBAAyB,CAc5B,mDAVG,kBACA,MACA,QACA,cAGA,kBACA,gBACA,CAEH,sEAGG,WACA,eACA,gBAAiB,CACpB,8DAGG,WACA,kBACA,MACA,QACA,yBACA,4BAIA,kBACA,2BACA,wBAAyB,CAC5B,mEAGG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AC5B,wHAIG,WACA,UACA,cAAe,CAClB,4BAGG,WACA,eACA,gBAAiB,CACpB,sEAGG,eACA,oBACA,gBAAiB,CACpB,0JAKG,cAAe,CAClB,oOAKG,aAAc,CACjB,0IAIG,UAAW,CACd,2DAGG,qBAAsB,CACzB,4DAGG,kBACA,OACA,MACA,SACA,QACA,SAAU,CACb,0CAGG,cACA,kBAAmB,CAEtB,iDAIG,kBAAmB,CACtB,gCAIG,yBACA,kBAAmB,CACtB,gEAGG,qBACA,kBAAmB,CACtB,4DAIG,2BAA6B,CAChC,uEAGG,8BACA,cACA,YACA,UACA,kBACA,kBACA,UAAW,CACd,yEAGG,WACA,eACA,SACA,kBACA,iBACA,kBACA,OAAQ,CACX,kFAGG,aAAc,CACjB,uCAGG,sBACA,gCACA,mBACA,YAAa,CAChB,wBAGG,oBACA,oBACA,aACA,8BACA,6BACA,mBACA,yBACA,sBACA,mBACA,oBAAqB,CACxB,yLAKG,kBACA,yBACA,sBACA,6BAA8B,CACjC,wEAGG,UACA,aACA,qBACA,kBAAmB,CACtB,uDAGG,+BAAgC,CACnC,0DAGG,4BACA,gBACA,sBACA,kBACA,uCACA,kBAAmB,CACtB,uIAIG,eAAgB,CACnB,2IAIG,yBACA,kBAAmB,CACtB,oEAGG,sBACA,kBACA,sCAA2C,CAC9C,6EAIG,eACA,gBACA,iBACA,WACA,gBACA,oBACA,gBAAiB,CACpB,6CAIG,mBACA,UAAW,CACd,+DAGG,WACA,WACA,eACA,gBACA,iBACA,wBAAyB,CAC5B,oCAIG,WACA,iBACA,gBACA,kBACA,mBACA,WAAY,CACf,0EAGG,gEACA,kEACA,2DACA,WACA,YACA,oBACA,kBACA,QACA,MACA,UAAW,CACd,sCAGG,WACA,eACA,gBACA,gBAAiB,CACpB,qDAGG,WACA,cACA,eACA,gBAAiB,CACpB,sCAGG,gBACA,eAAgB,CACnB,+DAGG,4BAA6B,CAChC,8GAIG,aAAc,CACjB,yDAGG,eACA,oBACA,iBACA,kBACA,OAAQ,CACX,yCAIG,mBAAoB,CACvB,uCAGG,aACA,mBACA,qBACA,aAAc,CACjB,0CAGG,kBAAmB,CACtB,6CAGG,UAAW,CACd,sCAGG,WACA,iBACA,iBAAkB,CACrB,kCAGG,gBAAiB,CACpB,iCAIG,sBACA,cAAe,CAClB,qCAGG,YACA,aACA,mBACA,oBAAqB,CACxB,2CAIG,wBACA,oBACA,kCAAoC,CACvC,uDAGG,WACA,2CACA,oBACA,iBAAkB,CACrB,wDAGG,yBAA2B,CAC9B,uFAKG,YAAa,CAChB,8DAIG,wBAAyB,CAC5B,mEAGG,eAAgB,CACnB,gQAMG,UAAY,CACf,mEAGG,UAAW,CACd,8CAKG,QAAS,CACZ,0FAIG,YAAa,CAChB,oDAKO,iBAAkB,CfnVlB,0CeyVJ,sEACI,WAAY,CACf,CflWG,0CesWJ,4DACI,WACA,2BAA6B,CAChC,sEAGG,WAAY,CACf,oEAGG,gBAAiB,CACpB,4DAGG,eAAgB,CACnB,CAGL,qCACI,uDAEI,YAAkB,CACrB,CfnYG,yCeuYJ,4DACI,YACA,2BAA6B,CAChC,CfjZG,yCeqZJ,+DACI,uCACA,gBACA,kBACA,UACA,kBACA,cAAe,CAClB,sEAGG,eAAgB,CACnB,yDAGG,eACA,eAAgB,CACnB,sEAGG,UACA,eAAgB,CACnB,wEAGG,eAAgB,CACnB,wEAGG,aACA,cACA,6BACA,2BACA,WACA,WAAY,CACf,2EAGG,UAAW,CACd,oEAGG,YACA,cAAe,CAClB,CfvcG,yCe2cJ,kHAEI,oBAAsB,CACzB,uEAGG,YACA,kBACA,kBACA,KAAM,CACT,oCAGG,WAAY,CACf,iEAGG,cACA,eACA,gBACA,cAAe,CAClB,CfveG,yCe2eJ,2IAEI,kBAAmB,CACtB,uCAGG,iBAAkB,CACrB,yDAGG,qBAAuB,CAC1B,yCAGG,mBAAoB,CACvB,uCAGG,aAAc,CACjB,mCAGG,WAAY,CACf,iHAIG,YAAa,CAChB,oCAGG,WAAY,CACf,sEAGG,eAAgB,CACnB,wCAKG,aACA,eAAgB,CACnB,4BAGG,iBACA,iBACA,iBAAkB,CACrB,kDAGG,UAAW,CACd,sEAGG,cAAe,CAClB,uEAGG,YAAa,CAChB,+DAGG,iBAAkB,CACrB,CC7lBL,iDACI,WACA,wBAA0B,CAC7B,mDAGG,gBAAiB,CACpB,6CAGG,gBACA,kBAAmB,CACtB,kCAGG,aACA,mBACA,cAAe,CAClB,kCAGG,UACA,oCACA,eACA,eAAgB,CACnB,4CAEG,iBACA,WACA,YAAa,CAChB,+CAGG,UACA,eAAgB,CACnB,oFAIG,YACA,iBACA,YACA,iBAAkB,CACrB,2CAGG,kBAAmB,CACtB,6CAGG,eAAgB,CACnB,+HAIG,gBACA,aAAc,CACjB,kCAGG,oCACA,UACA,gBACA,eACA,gBAAiB,CACpB,+CAGG,iBACA,aAAc,CACjB,+DAGG,WAAY,CACf,2EAEG,sBACA,eAAgB,CACnB,0EAEG,YAAa,CAChB,kCAEG,kBAAmB,CACtB,kCAEG,mBACA,cAAe,CAClB,gCAGG,WACA,eACA,iBACA,kBACA,eAAgB,CACnB,uCAGG,WACA,qBACA,YACA,WACA,kBACA,kBACA,kBAAmB,CACtB,yDAGG,yBACA,6BACA,WAAY,CACf,kDAEG,wBAAyB,CAC5B,oDAEG,wBAAyB,CAC5B,mDAEG,wBAAyB,CAC5B,8CAGG,kBAAmB,CACtB,4GAGG,WACA,YACA,kBACA,sBACA,kBACA,cAAe,CAClB,uDAGG,wBAAyB,CAC5B,qDAGG,wBAAyB,CAC5B,2CAGG,UAAW,CACd,oFAIG,gBACA,WACA,eACA,YACA,iBACA,iBAAkB,CACrB,wDAGG,QAAS,CACZ,yCAGG,yBACA,6BACA,gCACA,SAAU,CACb,2CAGG,yBACA,6BACA,gCACA,SAAU,CACb,8BAGG,kBACA,eACA,gBACA,iBACA,UACA,WACA,WACA,eAAgB,CACnB,0BAGG,qBACA,YACA,oBACA,kBACA,iBAAkB,CACrB,mHAIG,8BACA,gBACA,WACA,eACA,YACA,kBACA,iBACA,eAAiB,CACpB,kFAGG,eACA,gBAAiB,CACpB,gFAGG,eACA,WACA,iBACA,aAAc,ChBhKV,yCgBwKJ,0BACI,kBACA,UACA,OAAQ,CACX,iDAGG,eAAgB,CACnB,wDAGG,uBAAyB,CAC5B,2CAGG,kBACA,MACA,QACA,YACA,kCACA,iBACA,kBACA,WAAY,CACf,yCAGG,WA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U,CACb,2JAMG,gCAAkC,CACrC,+KAMG,WACA,gBAAiB,CACpB,mDAIG,cACA,YACA,cAAe,CAClB,iEAIG,kBACA,gBAAiB,CACpB,oCAGG,kBAAmB,CACtB,qBAIG,QAAS,CACZ,wBAGG,oCACA,eACA,gBACA,iBACA,gBACA,eAAgB,CACnB,oCAGG,YAAa,CAChB,6BAGG,eAAgB,CACnB,6BAGG,iBAAkB,CACrB,+BAGG,eAAgB,CACnB,+BAGG,cACA,KAAM,CACT,0BAGG,eACA,iBACA,cAAe,CAClB,0BAIG,UAAW,CACd,gCAGG,WACA,cACA,UAAW,CACd,8DAIG,WACA,aAAc,CACjB,gCAGG,iBACA,iBAAkB,CACrB,yBAGG,eAAgB,CACnB,gCAGG,gBAAiB,CACpB,mCAGG,WAAY,CACf,mBASG,GACI,+BACA,sBAAuB,CAG3B,IACI,iCACA,wBAAyB,CAG7B,GACI,gCACA,uBAAyB,EAIjC,oBACI,gBACA,UAAW,CACd,iGAIG,YACA,WACA,YACA,qBACA,kBACA,QACA,SACA,kBACA,yBACA,4BACA,mBACA,eACA,sBACA,yCAA0C,CAC7C,6CAGG,WACA,WACA,eAAgB,CACnB,iDAGG,qBACA,sBACA,iBAAkB,CACrB,kDAGG,gBACA,wCACA,eACA,WACA,sBACA,gBAAiB,CACpB,4CAGG,mBACA,0BACA,uBACA,kBACA,YACA,UACA,gBACA,gBACA,iBAAkB,CACrB,iDAGG,mBACA,YACA,qBACA,kBACA,MACA,OACA,wCACA,qCACA,+BAAoC,CACvC,iBAIG,yBACA,kBACA,gBACA,WACA,YACA,iBAAkB,CACrB,wBAGG,kBAAmB,CACtB,qBAGG,gBACA,iBAAkB,CACrB,+CAGG,cACA,eACA,gBAAiB,CACpB,4BAGG,eACA,kBACA,eAAgB,CACnB,2CAGG,aAAc,CACjB,yBAIG,kBACA,cACA,WACA,8BACA,cACA,WACA,yBACA,kBACA,iBACA,YACA,kBACA,UAAW,CACd,8BAGG,wBAAyB,CAC5B,+BAGG,qBAAyB,CAC5B,6BAGG,wBAAyB,CAC5B,+BAGG,wBAAyB,CAC5B,gCAGG,yBACA,UAAc,CACjB,gEAIG,yBACA,UAAc,CACjB,iFAGG,iBAAkB,CACrB,wFAGG,mCACA,WACA,kBACA,gBACA,oBACA,oBACA,cACA,mCACA,kCACA,eACA,sBACA,iBAAkB,CACrB,kdAOG,cAAe,CAClB,sNAKG,6BAA8B,CACjC,wFAGG,cACA,eAAgB,CACnB,sNAKG,6BAA8B,CACjC,wFAGG,cACA,eAAgB,CACnB,gNAKG,6BAA8B,CACjC,sFAGG,cACA,eAAgB,CACnB,qbAQG,0BAA8B,CACjC,mLAIG,WACA,eAAgB,CACnB,0DAIG,aAAc,CACjB,4JAIG,cAAe,CAClB,2BAGG,aAAc,CACjB,4EAGG,cAAe,CAClB,2BAGG,aAAc,CACjB,4EAGG,cAAe,CAClB,2BAGG,aAAc,CACjB,4EAGG,cAAe,CAClB,sDAIG,aAAc,CACjB,wJAIG,cAAe,CAClB,qEAIG,UAAc,CACjB,uKAIG,WAAe,CAClB,wFAIG,WACA,aAAc,CACjB,sGAIG,UAAW,CACd,gDAGG,oCACA,eACA,WACA,iBAAkB,CACrB,wEAGG,iBACA,eACA,eAAgB,CACnB,+CAGG,iBAAkB,CACrB,uDAGG,eACA,OACA,iBACA,iBACA,eACA,UACA,kBACA,QACA,kBACA,OAAQ,CACX,oBAGG,YAAa,CAChB,yBAGG,WACA,qBACA,gBACA,mBACA,qBACA,eAAgB,CACnB,oCAGG,oBAAqB,CACxB,kCAGG,YAAa,CAChB,oBAIG,WACA,aAAc,CACjB,4BAGG,iBACA,WAAY,CACf,oCAGG,yBACA,mBACA,eAAgB,CACnB,oCAGG,kBACA,UACA,UACA,kBACA,WACA,YACA,kBACA,eACA,gBACA,gBAAiB,CACpB,mBAGG,cACA,kBACA,UACA,UACA,iBACA,cAAe,CAClB,wCAGG,aAAc,CACjB,oCASG,yBACI,aAAc,CACjB,8DAGG,YAAa,CAChB,+BAEG,cACA,UAAW,CACd,kCAEG,cACA,kBACA,UAAW,CACd,yCAEG,uBACA,6BACA,oCACA,SACA,WACA,cACA,OACA,eACA,kBACA,QACA,KAAM,CACT,qDAEG,4BAA6B,CAChC,qCAEG,mBACA,cACA,eACA,kBACA,gBACA,UAAW,CACd,4CAEG,sBACA,cACA,WACA,eACA,gBACA,kBACA,gBACA,gBACA,kBACA,wBAAyB,CAC5B,6DAEG,eAAgB,CACnB,gDAEG,eAAgB,CACnB,uDAEG,mBAAoB,CACvB,mFAGG,eAAgB,CACnB,gDAEG,kBAAmB,CACtB,+CAEG,kBAAmB,CACtB,2DAEG,wBAAyB,CAC5B,0DAEG,2BAA4B,CAC/B,2CAEG,kBAAmB,CACtB,yHAGG,YAAa,CAChB,uCAEG,oBAAqB,CACxB,CAKL,oCAEI,wBACI,kBACA,aACA,mBACA,MACA,cACA,WACA,gBAAiB,CACpB,4CAEG,aAAc,CACjB,uDAEG,iBAAkB,CACrB,mCAKG,kBACA,WACA,SAAU,CACb,qCAEG,cAAe,CAClB,8CAEG,iBAAkB,CACrB,+CAEG,kBAAmB,CACtB,8DAIG,UAAW,CACd,4CAGG,gBACA,SAAU,CACb,yCAGG,YAAa,CAChB,6CAIG,gBAAiB,CACpB,CAIL,oCAEI,sEAEI,WACA,aAAc,CACjB,kFAKG,eAAgB,CACnB,gBAGG,kBAAmB,CACtB,2BAGG,iBAAkB,CACrB,oCAGG,eACA,WAAY,CACf,8BAGG,iBACA,oBAAqB,CACxB,ClB3/BG,yCkB+/BJ,iFACI,iBAAkB,CACrB,2BAGG,mBAAoB,CACvB","file":"app.css","sourcesContent":["/* ****************************************************************************\n * MODULE: CLASSES\n */\n\n@import \"variables\";\n@import \"mixins\";\n\n.hidden {\n\tdisplay: none;\n}\n\n// Clearfix\n.cf {\n\t&:after {\n\t content: \"\";\n\t display: table;\n\t clear: both;\n\t }\n}\n\n.wpmud .wrap-wp-hummingbird .clear {\n\tpadding: 0;\n}\n\n// Responsive Helpers\n@media screen and (min-width: $desktop--small) {\n\t.hide-on-large {\n\t\tdisplay: none;\n\t}\n}\n\n.hide-to-large {\n\t@include bp(desktop-large) {\n\t\tdisplay: none;\n\t}\n}\n\n.hide-to-mobile {\n\t@include bp(phone-large) {\n\t\tdisplay: none !important;\n\t}\n}\n\n.hide-on-mobile {\n\t@include bp(desktop-small) {\n\t\tdisplay: none;\n\t}\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/common/_classes.scss","/* ****************************************************************************\n * COMMON: MIXINS\n */\n\n@import \"variables\";\n\n// High PPI display background\n@mixin background-2x($path, $ext: \"png\", $w: auto, $h: auto, $pos: left top, $repeat: no-repeat) {\n $at1x_path: \"#{$path}.#{$ext}\";\n $at2x_path: \"#{$path}@2x.#{$ext}\";\n\n background: url(\"#{$at1x_path}\") $repeat $pos;\n background-size: $w $h;\n\n @media only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and (min--moz-device-pixel-ratio: 2),\n only screen and (-o-min-device-pixel-ratio: 2/1),\n only screen and (min-device-pixel-ratio: 2),\n only screen and (min-resolution: 192dpi),\n only screen and (min-resolution: 2dppx) {\n background-image: url(\"#{$at2x_path}\");\n }\n}\n\n// Base at-root\n@mixin optional-at-root($sel) {\n @at-root #{if(not &, $sel, selector-append(&, $sel))} {\n @content;\n }\n}\n\n// Form Input Placeholder\n@mixin form-placeholder {\n @include optional-at-root('&::-webkit-input-placeholder') {\n @content;\n }\n\n @include optional-at-root('&:-moz-placeholder') {\n @content;\n }\n\n @include optional-at-root('&::-moz-placeholder') {\n @content;\n }\n\n @include optional-at-root('&:-ms-input-placeholder') {\n @content;\n }\n}\n\n// Breakpoints\n@mixin bp($point) {\n\n // Phone: < 480px\n @if $point == phone {\n @media only screen and (max-width: $phone) {\n @content;\n }\n }\n\n // Phone Large: < 600px\n @if $point == phone-large {\n @media only screen and (max-width: $phone--large) {\n @content;\n }\n }\n\n // Tablet: < 783px\n @if $point == tablet {\n @media only screen and (max-width: $tablet) {\n @content;\n }\n }\n\n // Desktop Small: < 960px\n @if $point == desktop-small {\n @media only screen and (max-width: $desktop--small) {\n @content;\n }\n }\n\n // Desktop: < 1100px\n @if $point == desktop {\n @media only screen and (max-width: $desktop) {\n @content;\n }\n }\n\n // Desktop Large: < 1200px\n @if $point == desktop-large {\n @media only screen and (max-width: $desktop--large) {\n @content;\n }\n }\n\n // Desktop Wide: < 1440px\n @if $point == desktop-wide {\n @media only screen and (max-width: $desktop--wide) {\n @content;\n }\n }\n\n // Desktop Very Large: < 1600px\n @if $point == desktop-very-large {\n @media only screen and (max-width: $desktop--very-large) {\n @content;\n }\n }\n\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/common/_mixins.scss","/* ****************************************************************************\n * COMMON: EXTEND/OVERRIDE WPMUDEV DASHBOARD/WP STYLES\n */\n\n/* Overwrite for the default notifications */\nbutton.notice-dismiss {\n position: absolute;\n top: 0;\n right: 1px;\n border: none !important;\n margin: 0 !important;\n padding: 9px !important;\n background: none !important;\n color: #72777c !important;\n cursor: pointer !important;\n}\n\n.wpmud #header .actions .button + .button {\n margin-left: 10px;\n}\n\n.wpmud .wphb-dismiss {\n float: right;\n}\n\n.wpmud #wpbody-content > .notice {\n margin: 5px 20px 2px 5px;\n}\n\n/* Fix for tooltip-below */\n.wpmud [tooltip].tooltip-bottom:before {\n margin-top: 2px;\n}\n\n.wpmud [tooltip].tooltip-bottom:after {\n margin-top: 12px;\n}\n\n/* Fix for overflowing tooltips */\n.wpmud .list-table > tbody > tr > td {\n z-index: 0;\n}\n\n.wpmud [tooltip].tooltip-s.tooltip-right:after {\n margin-left: -150px;\n}\n\n.wpmud .wrap-wp-hummingbird a:not('.wdpun-button') {\n color: #17A8E3;\n}\n\n.wpmud .wrap-wp-hummingbird strong {\n color: #333333;\n}\n\n.wpmud .dev-overlay .back {\n background-color: rgba(51, 51, 51, 0.95);\n}\n\n.wpmud .dev-overlay .box {\n padding: 40px 30px 30px;\n}\n\n.wpmud .dev-overlay .title .title-action {\n font-family: 'Roboto', sans-serif;\n margin-top: 5px;\n vertical-align: middle;\n color: #888888;\n font-size: 13px;\n line-height: 30px;\n margin-right: -20px;\n}\n\n.wpmud .wrap-wp-hummingbird i.wdv-icon-chevron-down {\n color: #8A8A8A;\n}\n\n.wpmud .select-container:not(.mobile-nav) i.wdv-icon-reorder:before {\n content: \"\\f078\";\n}\n\n.wpmud .select-container:not(.mobile-nav) {\n border: 1px solid #E6E6E6;\n background-color: #F8F8F8;\n}\n\n.wpmud .select-container:not(.mobile-nav) .dropdown-handle {\n background-color: #F8F8F8;\n color: #898989;\n}\n\n/* Install dashboard message */\n.wpmud #wpmu-install-dashboard {\n margin-left: 0;\n}\n\n.wpmud #wpcontent #wpmu-install-dashboard * {\n -webkit-box-sizing: content-box;\n box-sizing: content-box;\n}\n\n.wpmud #wpmu-install-dashboard .wpmu-message {\n font-family: inherit;\n font-weight: inherit;\n line-height: inherit;\n}\n\n/* Toggles */\n.wpmud .toggle .toggle-checkbox:checked + .toggle-label:before,\n.wpmud .toggle .toggle-checkbox:checked + .toggle-label {\n background-color: #17A8E3;\n}\n\n.wpmud .toggle .toggle-label:before {\n background: #AAA;\n}\n\n.wpmud .toggle .toggle-label {\n width: 44px;\n text-align: left;\n}\n\n.wpmud .toggle .toggle-checkbox:checked + .toggle-label:after {\n margin-left: 24px;\n}\n\n.wpmud .toggle .toggle-checkbox:checked:disabled + .toggle-label {\n background: transparent;\n}\n\n.wpmud .toggle .toggle-checkbox:checked:disabled + .toggle-label:before {\n bottom: 0;\n left: 0;\n right: 0;\n top: 0;\n}\n\n.wpmud .toggle .toggle-checkbox:checked:disabled + .toggle-label:after {\n margin-left: 1px;\n}\n\n.wpmud .toggle .toggle-label.small {\n width: 36px;\n height: 16px;\n}\n\n.wpmud .toggle .toggle-label.small:after {\n width: 14px;\n height: 14px;\n}\n\n.wpmud .toggle .toggle-checkbox:checked + .toggle-label.small:after {\n margin-left: 21px;\n}\n\n.wpmud .toggle .toggle-cross {\n color: rgba(221, 221, 221, 1);\n}\n\n.wpmud .toggle-group {\n display: inline-block;\n}\n\n.wpmud .toggle-item.bordered,\n.wpmud .wphb-block-entry.bordered {\n border-top: 1px solid #E6E6E6;\n padding-top: 30px;\n}\n\n.wpmud .toggle-item.space-top-small {\n margin: 15px 0 0;\n}\n\n.wpmud .toggle-item label {\n text-align: left;\n}\n\n.wpmud .toggle-item .toggle-item-group {\n display: table;\n width: 100%;\n}\n\n.wpmud .toggle-item .toggle-info,\n.wpmud .toggle-item .toggle-actions {\n display: table-cell;\n}\n\n.wpmud .toggle-item .toggle-item-title {\n color: #555;\n font: 400 15px/20px $font;\n margin: 0;\n}\n\n.wpmud .toggle-item .toggle-actions {\n padding-left: 30px;\n vertical-align: middle;\n text-align: right;\n}\n\n/* Spinners */\n.wpmud .spinner.standalone {\n float: none;\n margin: 0;\n}\n\n.wpmud .spinner.left {\n float: left;\n}\n\n.wpmud .spinner.hide { /* Don't take/render block on layout */\n display: none;\n}\n\n.wpmud .spinner.visible { /* Re-set visibility to visible */\n visibility: visible;\n}\n\n@include bp(desktop-small) {\n .wpmud .dev-overlay {\n left: 35px;\n top: 15px;\n }\n}\n\n@include bp(tablet) {\n .wpmud .dev-overlay {\n left: 0;\n top: 0;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/common/_overwrites.scss","/* ****************************************************************************\n * COMMON: TYPOGRAPHY\n */\n\n@import \"_variables\";\n\n/* Fonts */\n@font-face {\n font-family: 'Hummingbird';\n src: url('#{$font--path}/hummingbird.eot?9e5j46');\n src: url('#{$font--path}/hummingbird.eot?9e5j46#iefix') format('embedded-opentype'),\n url('#{$font--path}/hummingbird.ttf?9e5j46') format('truetype'),\n url('#{$font--path}/hummingbird.woff?9e5j46') format('woff'),\n url('#{$font--path}/hummingbird.svg?9e5j46#hummingbird') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n\n[class^=\"hb-\"], [class*=\" hb-\"] {\n /* use !important to prevent issues with browser extensions that change fonts */\n font-family: $font--icons !important;\n speak: none;\n font-size: 15px;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n/**\n Icons (start)\n */\n.hb-fi-filter {\n &:before {\n content: \"\\7a\";\n }\n}\n.hb-fi-wand {\n &:before {\n content: \"\\5a\";\n }\n}\n\n.hb-fi-settings-slider-control {\n &:before {\n content: \"\\7b\";\n }\n}\n\n.hb-icon-audit {\n &:before {\n content: \"\\e900\";\n }\n}\n\n.hb-wpmudev-icon-cross {\n &:before {\n content: \"\\e901\";\n }\n}\n\n.hb-wpmudev-icon-info {\n &:before {\n content: \"\\e902\";\n }\n}\n\n.hb-wpmudev-icon-tick {\n &:before {\n content: \"\\e903\";\n }\n}\n\n.hb-wpmudev-icon-warning {\n &:before {\n content: \"\\e904\";\n }\n}\n\n.hb-icon-cache {\n &:before {\n content: \"\\e905\";\n }\n}\n\n.hb-icon-cloudflare {\n &:before {\n content: \"\\e906\";\n }\n}\n\n.hb-icon-gzip {\n &:before {\n content: \"\\e907\";\n }\n}\n\n.hb-icon-minify-combine {\n &:before {\n content: \"\\e908\";\n }\n}\n\n.hb-icon-minify-defer {\n &:before {\n content: \"\\e909\";\n }\n}\n\n.hb-icon-minify-footer {\n &:before {\n content: \"\\e90a\";\n }\n}\n\n.hb-icon-minify {\n &:before {\n content: \"\\e90b\";\n }\n}\n\n.hb-icon-performancetest {\n &:before {\n content: \"\\e90c\";\n }\n}\n\n.hb-icon-reports {\n &:before {\n content: \"\\e90d\";\n }\n}\n\n.hb-icon-restore {\n &:before {\n content: \"\\e90e\";\n }\n}\n\n.hb-icon-smush {\n &:before {\n content: \"\\e90f\";\n }\n}\n\n.hb-icon-minify-inline {\n &:before {\n content: \"\\e910\";\n }\n}\n\n.hb-wpmudev-icon-eye {\n &:before {\n content: \"\\e911\";\n }\n}\n\n.hb-wpmudev-icon-wrench-tool {\n &:before {\n content: \"\\e912\";\n }\n}\n\n.hb-wpmudev-icon-profile-male {\n &:before {\n content: \"\\e913\";\n }\n}\n\n.hb-wpmudev-icon-page {\n &:before {\n content: \"\\e914\";\n }\n}\n\n.hb-wpmudev-icon-academy {\n &:before {\n content: \"\\e915\";\n }\n}\n\n.hb-fi-plugin-2 {\n &:before {\n content: \"\\4f\";\n }\n}\n\n.hb-fi-arrow-right {\n &:before {\n content: \"\\af\";\n }\n}\n\n.hb-fi-trash:before {\n content: \"\\51\";\n}\n/**\n Icons (end)\n */\n\n.wpmud .wphb-icon {\n position: relative;\n}\n\n.wpmud .wphb-icon-left {\n display: block;\n float: left;\n}\n\n.wpmud .wphb-dash-icon {\n font-size: 12px;\n padding-right: 2px;\n}\n\n.wpmud .cf-dismiss {\n display: block;\n margin-top: 6px;\n}\n\n.wpmud .wphb-cf-notice .cf-dismiss a {\n text-transform: uppercase;\n text-decoration: none;\n color: #888;\n}\n\n/* General typography */\n.wpmud .wrap-wp-hummingbird p {\n color: #666;\n}\n\n.wpmud #header h1 {\n color: #333;\n margin: 0;\n}\n\n.wpmud .dev-overlay .title h3 {\n font-size: 16px;\n color: #333;\n}\n\n/* Caching and Advanced */\n.wpmud .box-advanced-general h4,\n.wpmud .box-page-caching h4 {\n color: #666666;\n font-size: 15px;\n font-weight: 500;\n text-align: left;\n text-transform: none;\n}\n\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/common/_typography.scss","/* ****************************************************************************\n * COMMON: BUTTONS\n */\n\n@import \"variables\";\n@import \"mixins\";\n\n/* Box-content with buttons */\n.wpmud .box-content .buttons {\n margin-top: 30px;\n}\n\n.wpmud .box-content .buttons.buttons-on-left {\n text-align: left;\n}\n\n.wpmud .box-content .buttons.buttons-on-right {\n text-align: right;\n}\n\n/* Box-footer with buttons */\n.wpmud .box-footer .buttons.buttons-on-left {\n text-align: left;\n}\n\n.wpmud .box-footer .buttons.buttons-on-right {\n text-align: right;\n}\n\n.wpmud .wphb-notice:not(.notice) .buttons {\n margin: 10px 30px 0;\n}\n\n.wpmud #header .button[disabled] {\n background-color: #E6E6E6 !important;\n border-radius: 4px;\n color: #AAAAAA !important;\n}\n\n.wpmud .documentation-button:before {\n content: '\\e915';\n color: #888888;\n font-family: $font--icons;\n font-size: 12px;\n vertical-align: middle;\n line-height: 16px;\n top: -2px;\n position: relative;\n margin-right: 5px;\n}\n\n.wpmud .documentation-button:hover:before,\n.wpmud .documentation-button:focus:before {\n color: #FFFFFF;\n}\n\n.wpmud .wphb-modal .wphb-dialog-content .button {\n margin-bottom: 15px;\n}\n\n.wpmud .wphb-modal .alignleft,\n.wpmud .wphb-modal .button {\n margin-bottom: 0 !important;\n}\n\n.wpmud .wphb-block-entry-content .buttons-group .button {\n display: inline-block;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status button {\n border-radius: 20px !important;\n margin-top: 10px !important;\n background-color: #D1F1EA !important;\n color: #1ABC9C !important;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status button i {\n color: #1ABC9C;\n font-size: 16px;\n position: relative;\n line-height: 10px;\n top: 3px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status button.inactive {\n background-color: #E6E6E6 !important;\n color: #AAAAAA !important;\n}\n\n.wpmud .wrap-wphb-performance .scan-settings .buttons {\n margin-top: 30px;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient > button {\n background-color: #888888 !important;\n border-radius: 0 4px 4px 0 !important;\n}\n\n.wpmud .wrap-wphb-gzip #enable-cache-wrap .button,\n.wpmud .wrap-wphb-caching #enable-cache-wrap .button {\n margin-top: 30px;\n}\n\n.wpmud .wphb-code-snippet .button {\n position: absolute;\n left: 100%;\n margin-left: -90px !important;\n margin-top: 15px !important;\n}\n\n.wpmud .box-caching-gravatar .button-large {\n margin: 0 !important;\n}\n\n.wrap-wp-hummingbird .button-cta-green:hover {\n box-shadow: none;\n}\n\n.wphb-scan-progress .wphb-scan-cancel-button {\n float: right;\n margin-top: -13px;\n}\n\n.wphb-scan-progress .wphb-scan-cancel-button > a {\n font-size: 12px;\n color: #AAAAAA;\n text-transform: uppercase;\n}\n\n/* Buttons */\n.wpmud .wphb-modal button:not(.wph-button):not(#collapse-button),\n.wpmud .wphb-modal .button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]) {\n background: #17A8E3;\n}\n\n.wpmud .wrap-wp-hummingbird .wpdui-btn,\n.wpmud .wphb-modal .button:not(.notice-dismiss),\n.wpmud .wrap-wp-hummingbird button:not(.notice-dismiss),\n.wpmud .wrap-wp-hummingbird .button,\n.wpmud .wrap-wp-hummingbird button:not(.wph-button):not(#collapse-button):not(.notice-dismiss) {\n font: 500 12px/16px $font !important;\n padding: 7px 16px;\n height: 30px;\n background-color: #17A8E3;\n color: #FFFFFF;\n border-radius: 3px;\n -moz-border-radius: 3px;\n transition: all .3s ease;\n -webkit-transition: all .3s ease;\n text-shadow: none !important;\n}\n\n.wpmud .wrap-wp-hummingbird button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]):not(.notice-dismiss),\n.wpmud .wrap-wp-hummingbird .button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]),\n.wpmud .wphb-modal .button:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]),\n.wpmud .wrap-wp-hummingbird button:active,\n.wpmud .wrap-wp-hummingbird button:focus,\n.wpmud .wrap-wp-hummingbird .button:active,\n.wpmud .wrap-wp-hummingbird .button:focus,\n.wpmud .wphb-modal .button:focus,\n.wpmud .wphb-modal .button:active {\n background: #0A9BD6;\n}\n\n.wpmud .wrap-wp-hummingbird .button-disabled {\n border-radius: 15px;\n background-color: #F8F8F8;\n color: #C0C0C0;\n}\n\n.wpmud .wphb-modal .button.button-large,\n.wpmud .wrap-wp-hummingbird .wpdui-btn--full,\n.wpmud .wrap-wp-hummingbird button.button-large:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird button.button-large,\n.wpmud .wrap-wp-hummingbird .button.button-large {\n font: 500 15px/20px $font !important;\n height: 40px !important;\n padding: 11px 20px 9px;\n}\n\n.wpmud .wrap-wp-hummingbird button.button-ghost:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird .button-ghost,\n.wpmud .wphb-modal .button-ghost {\n padding: 5px 16px 7px !important;\n background-color: transparent !important;\n border: 2px solid #DDDDDD;\n color: #888888 !important;\n}\n\n.wpmud .wrap-wp-hummingbird button.button-ghost:hover:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird .button-ghost:hover:not(:focus):not(:active),\n.wpmud .wphb-modal .button-ghost:hover:not(:focus):not(:active),\n.wpmud .wrap-wp-hummingbird .button-ghost:active,\n.wpmud .wrap-wp-hummingbird .button-ghost.active,\n.wpmud .wrap-wp-hummingbird .button-ghost:hover:enabled,\n.wpmud .wrap-wp-hummingbird .button-ghost:focus,\n.wpmud .wphb-modal .button-ghost:active,\n.wpmud .wphb-modal .button-ghost:hover:enabled,\n.wpmud .wphb-modal .button-ghost:focus,\n.wpmud .wrap-wp-hummingbird .button-grey:hover {\n background-color: #7B7B7B !important;\n border-color: #7B7B7B;\n color: #FFFFFF !important;\n}\n\n.wpmud .wrap-wp-hummingbird button.button-ghost.button-large:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird .button-ghost.button-large,\n.wpmud .wphb-modal .button-ghost.button-large {\n padding: 9px 20px 9px !important;\n}\n\n.wpmud .wphb-modal .button-content-cta {\n box-shadow: none;\n background-color: #1ABC9C !important;\n color: #FFFFFF;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta {\n box-shadow: none;\n background-color: #1ABC9C;\n color: #FFFFFF;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta:hover:not(:focus):not(:active),\n.wpmud .wphb-modal .button-content-cta:hover:not(:focus):not(:active),\n.wpmud .wrap-wp-hummingbird .button-content-cta:active,\n.wpmud .wrap-wp-hummingbird .button-content-cta:focus,\n.wpmud .wphb-modal .button-content-cta:active,\n.wpmud .wphb-modal .button-content-cta:focus {\n background: #0DAF8F !important;\n border-color: #0DAF8F;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta.button-ghost {\n background: transparent;\n color: #1ABC9C !important;\n border-color: #1ABC9C;\n border-radius: 20px;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta.button-ghost:active {\n color: #FFFFFF !important;\n border-color: #0DAF8F;\n}\n\n.wpmud .wrap-wp-hummingbird .button-notice {\n background-color: #E6E6E6 !important;\n color: #AAAAAA !important;\n}\n\n.wpmud .wrap-wp-hummingbird .button-notice:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]),\n.wpmud .wrap-wp-hummingbird .button-notice:hover:not(:focus):not(:active),\n.wpmud .wrap-wp-hummingbird .button-notice:active,\n.wpmud .wrap-wp-hummingbird .button-notice:focus {\n background-color: #888888 !important;\n color: #FFFFFF !important;\n}\n\n.wpmud .wphb-modal .button-grey,\n.wpmud .wrap-wp-hummingbird .button-grey {\n background-color: #888888 !important;\n color: #FFFFFF !important;\n}\n\n.wrap-wp-hummingbird .button-load-more {\n background-color: transparent;\n border: 1px solid #ddd;\n border-radius: 50%;\n color: #bababa;\n font-family: $font--alt;\n font-size: 13px;\n font-weight: 700;\n line-height: 18px;\n height: 140px;\n padding: 0;\n transition: color .4s, background-color .4s;\n width: 140px;\n}\n\n.wrap-wp-hummingbird .button-load-more:hover:not(:focus):not(:active) {\n background-color: #fafafa;\n border-color: #ddd;\n color: #777771;\n}\n\n.wrap-wp-hummingbird .button-load-more:active,\n.wrap-wp-hummingbird .button-load-more:focus {\n background: #777771;\n}\n\n@include bp(phone) {\n .wpmud .box-content .buttons {\n margin-top: 0;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/common/_buttons.scss","/* ****************************************************************************\n * COMMON: LAYOUT\n */\n\n@import \"variables\";\n@import \"mixins\";\n\n/* .row */\n.wpmud .row {\n margin-top: 30px;\n}\n\n.wpmud .box-content .row:first-of-type {\n margin-top: 0;\n}\n\n.wpmud .row-space-large {\n margin-bottom: 40px;\n}\n\n.wpmud .row .col-center {\n display: block;\n margin-right: auto;\n margin-left: auto;\n}\n\n.wpmud .row .col-quarter,\n.wpmud .row .col-three-quarters,\n.wpmud .row .col-fifth,\n.wpmud .row .col-four-fifths {\n display: table-cell;\n padding: 0 15px 0 15px;\n position: relative;\n vertical-align: top;\n}\n\n.wpmud .row .col-quarter {\n width: 25%;\n}\n\n.wpmud .row .col-three-quarters {\n width: 75%;\n}\n\n.wpmud .row .col-fifth {\n width: 20%;\n}\n\n.wpmud .row .col-four-fifths {\n width: 80%;\n}\n\n.wpmud .row .col-four-fifths.hidden {\n display: none;\n}\n\n.wpmud .row .col-quarter:first-child,\n.wpmud .row .col-three-quarters:first-child,\n.wpmud .row .col-fifth:first-child,\n.wpmud .row .col-four-fifths:first-child {\n padding-left: 0;\n}\n\n.wpmud .row .col-quarter:last-child,\n.wpmud .row .col-three-quarters:last-child,\n.wpmud .row .col-fifth:last-child,\n.wpmud .row .col-four-fifths:last-child {\n padding-right: 0;\n}\n\n/* .dev-box */\n.wpmud .dev-box {\n padding: 0;\n}\n\n.wpmud .dev-box:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .dev-box .box-title {\n clear: both;\n height: inherit;\n margin: 0;\n padding: 0 30px;\n}\n\n.wpmud .dev-box .box-title h3 {\n font-size: 16px;\n color: #333333;\n float: left;\n}\n\n.wpmud .dev-box .box-title .wphb-label-notice-inline {\n margin: 2px 15px;\n}\n\n.wpmud .dev-box .box-title:after {\n content: '';\n display: table;\n clear: both;\n}\n\n.wpmud .dev-box .box-title .extra {\n float: right;\n}\n\n.wpmud .dev-box .box-title .extra-text {\n margin: 20px 0 0;\n}\n\n.wpmud .dev-box .box-title .extra-label {\n display: inline-block;\n margin: 0;\n line-height: 20px;\n}\n\n.wpmud .dev-box .box-title .extra-label-value {\n color: #477B92;\n font-weight: 400;\n text-transform: uppercase;\n}\n\n.wpmud .dev-box .box-title .wphb-select-group {\n margin: 10px 0 0;\n}\n\n.wpmud .dev-box .box-title .test-results {\n float: right;\n margin-top: 15px;\n}\n\n.wpmud .dev-box .box-title .test-results-label {\n display: block;\n float: left;\n font-family: $font--alt;\n font-weight: 700;\n line-height: 30px;\n margin-right: 10px;\n text-transform: uppercase;\n}\n\n.wpmud .dev-box .box-title .test-results .wphb-score {\n display: block;\n float: left;\n}\n\n.wpmud .dev-box .box-title .toggle-group {\n margin: 6px 15px 0 0;\n}\n\n.wpmud .dev-box .box-content {\n padding: 30px;\n word-wrap: break-word;\n}\n\n.wpmud .dev-box .box-content > * {\n margin-bottom: 20px;\n}\n\n.wpmud .dev-box .box-content > *:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .dev-box .box-content .row-space-large {\n margin-bottom: 40px;\n}\n\n/* .box-content */\n.wpmud .box-content.no-padding {\n padding: 0 !important;\n}\n\n.wpmud .box-content.no-vertical-padding {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.wpmud .wphb-modal .no-side-padding,\n.wpmud .box-content.no-side-padding {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.wpmud .box-content .no-top-padding {\n padding-top: 0 !important;\n}\n\n.wpmud .box-content .with-padding {\n padding: 30px;\n}\n\n.wpmud .box-content .add-side-padding {\n padding-right: 30px;\n padding-left: 30px;\n}\n\n.wpmud .box-footer {\n margin-top: 0;\n padding: 30px;\n border-top: 1px solid #EAEAEA;\n}\n\n/* Block: Section */\n.wpmud .wphb-block-section {\n margin-top: 40px;\n}\n\n.wpmud .wphb-block-section:first-child {\n margin-top: 0;\n}\n\n.wpmud .wphb-block-section-content * {\n color: #555;\n line-height: 20px;\n}\n\n/* Box: Content */\n.wpmud .content-box .wphb-block-entry-image-bottom {\n margin-bottom: -30px;\n}\n\n.wpmud .content-box .wphb-block-entry-image-center {\n margin-top: 30px;\n}\n\n.wpmud .content-box .wphb-block-entry-image-center img {\n margin-left: auto;\n margin-right: auto;\n}\n\n/* Box: Content One Col */\n.wpmud .content-box-one-col {\n}\n\n/* Box: Content One Col Center */\n.wpmud .content-box-one-col-center .box-content {\n text-align: left;\n}\n\n.wpmud .content-box-one-col-center .wphb-block-entry-content {\n margin: 0 auto;\n}\n\n.wpmud .content-box-flex {\n display: flex;\n justify-content: space-between;\n align-items: flex-end;\n}\n\n/* Box: Content w/Image (left) */\n.wpmud .content-box-two-cols-image-left .box-content {\n text-align: left;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-image,\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n display: block;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-image {\n float: left;\n max-width: 192px;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 30px 0 0 285px;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-content .title {\n text-align: left;\n}\n\n/* Block: Content */\n.wpmud .wphb-block + .wphb-block {\n margin-top: 30px;\n}\n\n.wpmud .wphb-block-header {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-block-title {\n font-family: $font--alt;\n font-size: 22px;\n line-height: 26px;\n margin: 0;\n overflow: hidden;\n text-align: left;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.wpmud .wphb-block-content + .wphb-block-content {\n margin-top: 30px;\n}\n\n.wpmud .wphb-block-content > *:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .wphb-block-content-center {\n text-align: center;\n}\n\n.wpmud .wphb-block-content pre {\n font-weight: 500;\n font-family: $font;\n font-size: 13px;\n line-height: 18px;\n background-color: #F8F8F8;\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n margin: 0;\n padding: 20px 30px;\n white-space: pre;\n overflow-x: scroll;\n max-width: 100%;\n}\n\n.wpmud .wphb-block-content-blue {\n background-color: #e0f6ff;\n border-radius: 5px;\n padding: 20px 30px;\n}\n\n.wpmud .wphb-block-content .tooltip-box,\n.wpmud .wphb-block-content .toggle,\n.wpmud .wphb-block-content .toggle .toggle-label {\n height: 21px;\n vertical-align: top;\n}\n\n.wpmud .wphb-block-content-group {\n border-collapse: separate;\n border-spacing: 0;\n display: table;\n width: 100%;\n}\n\n.wpmud .wphb-block-content-group-inner {\n display: table-row;\n}\n\n.wpmud .wphb-block-content-group-item {\n display: table-cell;\n vertical-align: middle;\n width: 100%;\n}\n\n.wpmud .wphb-block-content-group-item .wphb-block-content {\n margin-left: 30px;\n}\n\n.wpmud .wphb-block-content-group-item:first-child .wphb-block-content {\n margin-left: 0;\n}\n\n.wpmud .wphb-block-content-group .wphb-block-content.small {\n padding: 20px 23px;\n width: 80px;\n}\n\n/* Block: Entry Content */\n.wpmud .wphb-block-entry:after {\n content: '';\n clear: both;\n display: block;\n}\n\n.wpmud .wphb-block-entry-content .title {\n color: #333333;\n font-size: 22px;\n font-weight: bold;\n line-height: 1.333em;\n margin: 0 0 0.5em;\n max-width: 100%;\n text-transform: uppercase;\n}\n\n.wpmud .wphb-block-entry-content .title,\n.wpmud .wphb-block-entry-content .content > p {\n margin: 0 0 20px;\n}\n\n.wpmud .wphb-block-entry-content .content > p:last-child,\n.wpmud .wphb-block-entry-content .content > p:last-of-type {\n margin-bottom: 0;\n}\n\n/* Top summary modules */\n.wpmud .wphb-block-entry-third {\n color: #333333;\n width: calc(100% / 2 - 98px);\n padding-left: 5%;\n padding-top: 10px;\n display: inline-block;\n vertical-align: middle;\n}\n\n.wpmud .wphb-block-entry-third span {\n font-weight: 400;\n}\n\n.wpmud .wphb-block-entry-third p {\n font-size: 13px;\n margin-top: 0;\n color: #888888;\n}\n\n.wpmud .wphb-block-entry-third span.not-present {\n font-size: 55px;\n line-height: 30px;\n margin-bottom: 20px;\n}\n\n.wpmud .wphb-block-entry-third span.score-span {\n font-size: 13px;\n margin-left: -12px;\n}\n\n.wpmud .wphb-block-entry-third .current-performance-score {\n margin-bottom: 20px;\n}\n\n.wpmud .wphb-block-entry-third .hb-wpmudev-icon-warning,\n.wpmud .wphb-block-entry-third .hb-wpmudev-icon-info,\n.wpmud .wphb-block-entry-third .hb-wpmudev-icon-tick {\n position: relative;\n top: -22px;\n left: 5px;\n font-size: 20px;\n}\n\n.wpmud .wphb-tab i.hb-wpmudev-icon-info.dismissed,\n.wpmud .wphb-block-entry-third .hb-wpmudev-icon-info {\n color: #888888;\n}\n\n.wpmud .wphb-block-entry-third .hb-wpmudev-icon-warning {\n color: #FECF2F;\n}\n\n.wpmud .wphb-block-entry-third .hb-wpmudev-icon-tick {\n color: #1ABC9C;\n}\n\n.wpmud .wphb-block-entry-third .dev-list {\n margin: 0 !important;\n border-bottom: 0;\n}\n\n.wpmud .wphb-block-entry-third .dev-list li:first-child span {\n padding-top: 4px;\n}\n\n@include bp(desktop-large) {\n .wpmud .wrap-wphb .row .col-half,\n .wpmud .wrap-wphb-caching .row .col-half,\n .wpmud .wrap-wphb-gzip .row .col-half {\n display: block;\n margin-top: 30px;\n padding: 0;\n width: 100%;\n }\n\n .wpmud .wrap-wphb .row .col-half:first-child,\n .wpmud .wrap-wphb-caching .row .col-half:first-child,\n .wpmud .wrap-wphb-gzip .row .col-half:first-child {\n margin-top: 0;\n }\n\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 65px;\n }\n}\n\n@include bp(desktop) {\n /* Box: Content w/Image (left) */\n .wpmud .content-box-two-cols-image-left .wphb-block-entry {\n text-align: center;\n min-height: 100%;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-image {\n display: none;\n }\n\n .wpmud .wphb-block-entry-third {\n width: 49%;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-image .wphb-image {\n margin: 0 auto;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 35px 0 0 155px;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content .title {\n text-align: center;\n }\n\n .wpmud .wphb-block-entry-third {\n text-align: left;\n padding-left: 0;\n }\n}\n\n@include bp(desktop-small) {\n /* Generic */\n .wpmud .row {\n display: block;\n }\n\n .wpmud .row .col-fifth {\n display: block;\n width: 100%;\n padding: 0;\n }\n\n .wpmud .row .col-four-fifths {\n display: block;\n width: 100%;\n padding: 0;\n }\n\n .wpmud .wphb-block-entry-third {\n padding-left: 0;\n }\n\n .wpmud .wphb-block-entry-third .current-performance-score {\n margin-bottom: 5px;\n }\n\n /*\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content.wphb-cf-notice {\n margin: 35px 0 0 0;\n }\n */\n}\n\n@include bp(tablet) {\n .wpmud .box-content .with-padding {\n // TODO: why was it 0?\n /*padding: 0;*/\n padding: 15px 20px;\n }\n\n .wpmud .row,\n .wpmud .row-sep {\n display: block;\n table-layout: inherit;\n }\n\n .wpmud .row .col-third,\n .wpmud .row .col-two-third,\n .wpmud .row .col-half,\n .wpmud .row .col-quarter,\n .wpmud .row .col-three-quarters {\n display: block;\n margin-top: 30px;\n padding: 0;\n width: 100%;\n }\n\n .wpmud .row .col-third:first-child,\n .wpmud .row .col-two-third:first-child,\n .wpmud .row .col-half:first-child,\n .wpmud .row .col-quarter:first-child,\n .wpmud .row .col-three-quarters:first-child {\n margin-top: 0;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-image {\n display: none;\n }\n}\n\n@include bp(phone-large) {\n .wpmud .wphb-block-entry-third {\n display: block;\n text-align: center;\n width: 100%;\n }\n\n .wpmud .wphb-block-entry-third .dev-list {\n text-align: left;\n }\n\n .wpmud .dev-box .box-title .test-results {\n float: none;\n display: block;\n }\n}\n\n@include bp(phone) {\n .wpmud .row .col-third,\n .wpmud .row .col-two-third,\n .wpmud .row .col-half,\n .wpmud .row .col-quarter,\n .wpmud .row .col-three-quarters {\n margin-top: 15px;\n }\n\n .wpmud .dev-box .box-content,\n .wpmud .box-footer {\n padding: 15px 20px;\n }\n\n .wpmud .dev-box .box-content > * {\n margin-bottom: 15px;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 35px 0 0 135px;\n }\n\n .wpmud .dev-box .box-title .test-results {\n margin-top: 2px;\n float: right;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/common/_layout.scss","/* ****************************************************************************\n * COMMON: MODALS\n */\n\n.wpmud .dev-overlay .title .close {\n color: #888888;\n font-size: 34px;\n}\n\n.wpmud .wphb-modal * {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n font-family: $font;\n}\n\n.wpmud .wphb-modal .wphb-dialog-content > * {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-modal .wphb-dialog-content > *:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .wphb-modal .wphb-dialog-content .wphb-modal-image-bottom {\n margin-bottom: -30px;\n}\n\n.wpmud .wphb-modal .wphb-progress-state {\n margin-top: -20px;\n}\n\n.wpmud .wphb-modal .wphb-dialog-footer {\n border-top: 1px solid #EAEAEA;\n margin: 30px -30px;\n padding: 30px 30px 0;\n}\n\n.wpmud .wphb-progress-modal .wphb-progress,\n.wpmud .wphb-progress-modal .wphb-block-test {\n max-width: 100%;\n}\n\n.wpmud .wphb-progress-modal .wphb-dialog-content p {\n color: #666666;\n}\n\n.wpmud .wphb-progress-modal .wphb-notice-box p {\n color: #333333;\n font-size: 13px;\n line-height: 22px;\n}\n\n/* CDN modal */\n.wphb-cdn-block {\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n padding: 18px 0;\n}\n\n.wphb-cdn-block > div {\n display: flex;\n align-content: center;\n align-items: center;\n height: auto;\n padding: 20px 30px 0;\n}\n\n.wphb-cdn-block > div > label {\n margin: 2px 0 0 0;\n color: #666666;\n}\n\n.wphb-cdn-block > p {\n color: #888888 !important;\n padding: 0 30px 0 76px;\n}\n\n.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test,\n.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test,\n.wpmud.toplevel_page_wphb-minification .wphb-modal .wphb-block-test {\n display: flex;\n align-content: center;\n align-items: center;\n height: auto;\n padding: 20px 30px;\n margin-bottom: 30px;\n}\n\n.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test {\n margin-bottom: 10px;\n}\n\n.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test > p {\n font-size: 13px;\n line-height: 22px;\n margin-right: 14px;\n margin-bottom: 0;\n}\n\n.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test > .button {\n flex-basis: 260px; /* IE compatibility */\n}\n\n.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test > label {\n margin: 0;\n}\n\n.wpmud .dev-overlay.dismiss-report .box {\n width: 400px;\n margin-left: -250px;\n}\n\n.wpmud .dev-overlay.dismiss-report .title {\n margin-bottom: 30px;\n}\n\n.wpmud .dev-overlay.dismiss-report .title h3 {\n font-size: 15px;\n text-transform: none;\n}\n\n.wpmud .dev-overlay.dismiss-report .wphb-dialog-content > p {\n color: #888888;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .dev-overlay.dismiss-report .wphb-dialog-footer {\n border: none;\n}\n\n/* Asset Optimization switch mode notice */\n.wpmud .wphb-basic-minification-modal .box,\n.wpmud .wphb-advanced-minification-modal .box,\n.wpmud .wphb-database-cleanup-modal .box {\n width: 400px !important;\n margin-left: -200px !important;\n padding: 40px 0 30px !important;\n}\n\n.wpmud .wphb-basic-minification-modal .title,\n.wpmud .wphb-advanced-minification-modal .title,\n.wpmud .wphb-database-cleanup-modal .title {\n display: none;\n}\n\n.wpmud .wphb-basic-minification-modal h1,\n.wpmud .wphb-advanced-minification-modal h1,\n.wpmud .wphb-database-cleanup-modal h1 {\n color: #333333;\n font-size: 22px;\n font-weight: bold;\n line-height: 30px;\n text-transform: none;\n}\n\n.wpmud .wphb-basic-minification-modal p,\n.wpmud .wphb-advanced-minification-modal p,\n.wpmud .wphb-database-cleanup-modal p {\n color: #666;\n font-size: 13px;\n line-height: 22px;\n margin: 0 30px;\n text-align: center;\n}\n\n.wpmud .wphb-basic-minification-modal img,\n.wpmud .wphb-advanced-minification-modal img {\n margin-left: 0;\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/common/_modals.scss","/* ****************************************************************************\n * COMMON: VARIABLES\n */\n\n// Colors\n$color: #4E4B10;\n$color--grey: #777771;\n$color--grey--light: #ddd;\n$color--grey--alt: #ccc;\n$color--light: #f4f4f4;\n$color--light--alt: #f9f9f9;\n$color--dark: #595959;\n$color--dark--alt: #333;\n$color--cta: #4E4B10;\n$color--success: #1ABC9C;\n$color--error: #FF6D6D;\n$color--warning: #FECF2F;\n\n// Typo\n$font: 'Roboto', Arial, sans-serif;\n$font--alt: 'Roboto Condensed', 'Roboto', Arial, sans-serif;\n$font--icons: 'Hummingbird', Arial, sans-serif;\n$font--path: \"../fonts\" !default;\n$image--path: \"../image\";\n\n// Space\n$space: 30px;\n$space--xxs: 5px;\n$space--xs: 10px;\n$space--s: 15px;\n$space--m: 20px;\n$space--l: 40px;\n$space--xl: 50px;\n$space--xxl: 60px;\n\n// Responsive Sizes:\n$phone: 480px;\n$phone--large: 600px;\n$tablet: 783px;\n$desktop--small: 960px;\n$desktop: 1100px;\n$desktop--large: 1200px;\n$desktop--wide: 1440px;\n$desktop--very-large: 1600px;\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/common/_variables.scss","/* ****************************************************************************\n * COMPONENTS: NOTICES\n */\n\n@import \"../common/variables\";\n@import \"../common/mixins\";\n\n.wpmud .wrap-wp-hummingbird .notice {\n margin: 15px 0 0;\n}\n\n.wpmud .wrap-wp-hummingbird > .wphb-notice:not(.notice) {\n width: 600px;\n box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);\n border-radius: 0 0 5px 5px;\n padding: 10px 30px;\n position: absolute !important;\n z-index: 100;\n left: 50%;\n margin-left: -300px;\n top: 0;\n}\n\n.wpmud .wphb-notice:not(.notice) {\n border-radius: 5px;\n color: #333;\n font-family: $font;\n font-size: 15px;\n font-weight: 400;\n line-height: 18px;\n padding: 15px 30px;\n position: relative;\n width: 100%;\n}\n\n\n.wpmud .wrap-wp-hummingbird > .wphb-notice.wphb-dash-settings-updated {\n position: fixed !important;\n top: 30px;\n margin-left: -210px;\n}\n\n.wpmud .wphb-notice.notice p {\n font-size: 14px;\n line-height: 1.5;\n margin: 10px 0;\n}\n\n.wpmud .wphb-notice p,\n.wpmud .wphb-notice p a {\n color: #333333;\n font-weight: 400;\n}\n\n.wpmud .wphb-notice:not(.notice) p,\n.wpmud .wphb-notice:not(.notice) span,\n.wpmud .wphb-notice ul,\n.wpmud .wphb-notice strong {\n margin: 0 0 10px -30px;\n padding: 0 0 0 30px;\n}\n\n.wpmud .wphb-notice:not(.notice) p:last-of-type {\n margin: 0;\n}\n\n.wpmud .wphb-notice p a {\n font-weight: 500;\n}\n\n.wpmud .wphb-notice p a:hover {\n color: #333;\n}\n\n.wpmud .wphb-notice .wphb-icon,\n.wpmud .wphb-notice .wphb-icon .wdv-icon {\n font-size: 22px;\n height: 22px;\n line-height: 22px;\n width: 22px;\n}\n\n.wpmud .wphb-notice.can-close .close {\n cursor: pointer;\n color: #333333;\n font-size: 12px;\n font-weight: bold;\n line-height: 36px;\n margin-left: 0;\n opacity: 0.5;\n text-transform: uppercase;\n}\n\n.wpmud .wphb-block-entry-third span.status-ok:before,\n.wpmud span.dash-cloudflare-connected-status:before,\n.wpmud .wphb-notice-error.can-close p:before,\n.wpmud .wphb-notice-success.can-close p:before,\n.wpmud .wphb-notice-success p:first-child:before,\n.wpmud .wphb-notice-error p:first-child:before,\n.wpmud .wphb-notice-warning p:first-child:before,\n.wpmud .wphb-notice-grey p:before,\n.wpmud .wphb-notice-grey-info p:before,\n.wpmud .wphb-notice-blue p:first-child:before,\n.wpmud .wphb-notice-blue-info p:first-child:before {\n font-family: $font--icons;\n font-size: 20px;\n vertical-align: middle;\n line-height: 20px;\n top: -2px;\n position: relative;\n margin-left: -30px;\n margin-right: 10px;\n}\n\n.wpmud .wphb-notice-success {\n background-color: #D1F1EA;\n}\n\n.wpmud .wphb-notice-error {\n background-color: #FFE5E9;\n}\n\n.wpmud .wphb-notice-warning {\n background-color: #FFF5D5;\n color: #333333;\n}\n\n.wpmud .wphb-notice-blue,\n.wpmud .wphb-notice-blue-info {\n background-color: #E1F6FF;\n margin-top: 30px;\n}\n\n.wpmud .wphb-notice-grey,\n.wpmud .wphb-notice-grey-info {\n background-color: #F2F2F2;\n margin-top: 10px;\n}\n\n.wpmud .cloudflare-step .wphb-notice-blue {\n margin-top: 0;\n}\n\n.wpmud .wphb-block-entry-third span.status-ok:before,\n.wpmud .wphb-notice-success p:before {\n content: '\\e903';\n color: #1ABC9C;\n}\n\n.wpmud .wphb-block-entry-third span.status-ok:before {\n margin-right: 0;\n line-height: 20px;\n}\n\n.wpmud .wphb-notice-error p:before {\n content: '\\e904';\n color: #FF7F83;\n}\n\n.wpmud .wphb-notice-warning p:before {\n content: '\\e902';\n color: #FECF2F;\n font-size: 18px;\n line-height: 18px;\n}\n\n.wpmud .wphb-notice-blue p:before {\n content: '\\e903';\n color: #17A8E3;\n}\n\n.wpmud .wphb-notice-blue-info p:before {\n content: '\\e902';\n color: #17A8E3;\n}\n\n.wpmud .wphb-notice-grey p:before,\n.wpmud .wphb-notice-grey-info p:before {\n content: '\\e902';\n color: #888888;\n}\n\n.wpmud .dev-overlay .wphb-notice-warning p {\n font-size: 14px;\n line-height: 22px;\n}\n\n.wpmud .wphb-notice-warning p,\n.wpmud .wphb-notice-warning p a {\n color: #333333;\n}\n\n.wpmud .wphb-heading-status-green {\n color: #1ABC9C;\n}\n\n.wpmud .wphb-heading-status {\n font-family: $font--alt;\n font-size: 30px;\n margin-top: 0;\n}\n\n@include bp(tablet) {\n .wpmud .wrap-wp-hummingbird > .wphb-notice {\n width: 85%;\n }\n}\n\n@include bp(phone-large) {\n .wpmud .wrap-wp-hummingbird > .wphb-notice {\n width: 100%;\n top: 46px;\n margin-left: -251px;\n }\n}\n\n@include bp(phone) {\n .wpmud .wphb-notice:not(.notice) {\n padding: 15px 20px;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/components/_notices.scss","/* ****************************************************************************\n * COMPONENTS: PILLS\n */\n\n@import \"../common/mixins\";\n\n.wphb-pills {\n display: inline-block;\n background-color: #FFD000;\n color: #333333;\n border-radius: 15px;\n width: 39px;\n height: 26px;\n font-size: 12px;\n line-height: 26px;\n text-align: center;\n font-weight: 500;\n}\n\n.wpmud .box-title .wphb-pills {\n margin: 16px 0 0 10px;\n}\n\n.wphb-pills.grey {\n background-color: #F2F2F2;\n color: #666;\n}\n\n.wphb-pills.red {\n background-color: #FF6D6D;\n color: #fff;\n}\n\n.wphb-pills.green {\n background-color: #1ABC9C;\n color: #fff;\n}\n\n.wphb-pills.with-arrow:after {\n border: 8px solid transparent;\n content: '';\n height: 0;\n pointer-events: none;\n position: absolute;\n width: 0;\n z-index: 1;\n}\n\n.wphb-pills.with-arrow.right:after {\n border-left-color: #19B4CF;\n left: 50%;\n margin-top: -8px;\n top: 50%;\n}\n\n.wphb-pills.with-arrow.left:after {\n border-right-color: #19B4CF;\n right: 100%;\n margin-top: -8px;\n top: 50%;\n}\n\n.wphb-pills.with-arrow.right.grey:after {\n border-left-color: #F2F2F2;\n}\n\n.wphb-pills.with-arrow.left.grey:after {\n border-right-color: #F2F2F2;\n}\n\n.wphb-pills-group {\n border-collapse: collapse;\n border-spacing: 0;\n font-size: 0;\n display: inline-block;\n position: relative;\n}\n\n.wphb-pills-group.stacked .wphb-pills {\n font-size: 10px;\n line-height: 12px;\n height: 12px;\n text-align: left;\n max-width: 69px;\n color: #888888;\n display: block;\n background-color: transparent;\n}\n\n.wphb-pills-group.stacked .wphb-pills:last-child {\n color: #1ABC9C;\n background-color: transparent;\n}\n\n.wphb-pills-group.stacked .dev-icon.dev-icon-caret_down {\n color: #1ABC9C;\n margin-left: 7px;\n}\n\n.wphb-pills-group .wphb-pills {\n border-radius: 0;\n width: 80px;\n line-height: 30px;\n height: 30px;\n margin: 0;\n}\n\n.wphb-pills-group .wphb-pills:first-child {\n border-radius: 5px 0 0 5px !important;\n}\n\n.wphb-pills-group .wphb-pills:last-child {\n background-color: #17A8E3;\n color: #FFFFFF;\n border-radius: 0 5px 5px 0 !important;\n}\n\n.wpmud .dev-list-stats .wphb-pills-group {\n font-size: 0;\n line-height: 1em;\n}\n\n@include bp(phone-large) {\n .wpmud .dev-box .box-title .wphb-pills {\n margin: 4px 0 0 10px;\n }\n\n .wphb-pills {\n margin: 0 0 0 10px;\n }\n\n .wphb-pills-group .wphb-pills:first-child {\n border-radius: 5px 5px 0 0 !important;\n }\n\n .wphb-pills-group .wphb-pills:last-child {\n border-radius: 0 0 5px 5px !important;\n }\n}\n\n@include bp(phone) {\n .wphb-pills-group {\n border-collapse: inherit;\n border-spacing: inherit;\n }\n\n .wphb-pills.with-arrow.right:after,\n .wphb-pills.with-arrow.left:after {\n border-top-color: #19B4CF;\n margin-top: 0;\n margin-left: -8px;\n top: 50%;\n }\n\n .wphb-pills.with-arrow.right:after {\n border-left-color: transparent;\n left: 50%;\n }\n\n .wphb-pills.with-arrow.left:after {\n border-right-color: transparent;\n right: 50%;\n }\n\n .wphb-pills.with-arrow.right.grey:after {\n border-top-color: #eee;\n border-left-color: transparent;\n }\n\n .wphb-pills.with-arrow.left.grey:after {\n border-top-color: #eee;\n border-right-color: transparent;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/components/_pills.scss","/* ****************************************************************************\n * COMPONENTS: BORDER FRAME\n */\n\n@import \"../common/mixins\";\n\n.wpmud .wphb-border-frame {\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n margin: 10px 0 0 !important;\n}\n\n.wpmud .wphb-border-frame .table-header,\n.wpmud .wphb-border-frame .table-row {\n display: flex;\n justify-content: space-between;\n padding: 15px 80px 15px 30px;\n}\n\n.wpmud .wphb-border-frame .table-header {\n color: #333333;\n font-size: 13px;\n font-weight: bold;\n border-bottom: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-border-frame .table-row {\n border-bottom: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-border-frame .table-row:last-child {\n border-bottom: 0;\n}\n\n.wpmud .wphb-border-frame .list-table > thead > tr > th {\n color: #333333;\n font-size: 13px;\n padding: 8px 0;\n}\n\n.wpmud .wphb-border-frame .list-table > thead > tr > th:first-child {\n padding: 27px 30px;\n}\n\n.wpmud .wphb-border-frame .list-table > tbody > tr > td:first-child {\n padding-left: 30px;\n}\n\n@include bp(tablet) {\n .wpmud .wphb-border-frame {\n border: 0\n }\n}\n\n@include bp(phone) {\n .wpmud .wphb-border-frame .table-header,\n .wpmud .wphb-border-frame .table-row {\n padding: 15px 0;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/components/_border_frame.scss","/* ****************************************************************************\n * COMPONENTS: SETTINGS FORM\n */\n\n.wpmud .wphb-disabled-overlay {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: 10;\n background-color: rgba(242,242,242,0.5)\n}\n\n.wpmud .settings-form span.sub,\n.wpmud .settings-form span.desc {\n display: block;\n margin: 10px 0 0;\n font-size: 13px;\n color: #888;\n line-height: 22px;\n}\n\n.wpmud .settings-form span.sub,\n.wpmud .settings-form ol > li {\n font-size: 13px;\n color: #888;\n line-height: 22px;\n margin: 4px 0 0;\n}\n\n.wpmud .settings-form span.dash-form-title,\n.wpmud .settings-form span.sub {\n display: block;\n font-size: 13px;\n color: #888;\n line-height: 22px;\n margin: 10px 0 0;\n}\n.wpmud .settings-form span.dash-form-title {\n margin-bottom: 15px;\n font-weight: 500;\n}\n\n.wpmud .settings-form .col-two-third {\n span.sub {\n margin-left: 49px;\n }\n}\n\n.wpmud .settings-form ol {\n margin-left: 15px;\n}\n\n.wpmud .settings-form textarea {\n height: 180px;\n max-width: 490px;\n color: #333333;\n border: 1px solid #E6E6E6;\n border-radius: 4px;\n background-color: #F8F8F8;\n margin-top: 20px;\n font-size: 13px;\n line-height: 18px;\n}\n\n.wpmud .box-advanced-general textarea,\n.wpmud .box-minification-tools textarea {\n margin-top: 0;\n}\n\n.wpmud .box-minification-tools textarea {\n height: 400px;\n max-width: 100%;\n margin-bottom: 0;\n}\n.wpmud .settings-form span.dash-form-title {\n margin-bottom: 15px;\n font-weight: 500;\n}\n\n.wpmud .wphb-dash-table-row span.sub {\n margin: 0;\n}\n\n.wpmud .settings-form.dash-form > label,\n.wpmud .settings-form .col-two-third > label {\n display: inline-block;\n padding: 2px 10px 0;\n color: #666;\n line-height: 30px;\n margin: 0;\n}\n\n.wpmud .settings-form .wphb-border-frame label {\n margin-top: 25px;\n padding: 0;\n color: #888888;\n font-size: 13px;\n}\n\n.wpmud .settings-form .wphb-border-frame small {\n display: block;\n font-size: 13px;\n color: #888;\n line-height: 22px;\n}\n\n.wpmud .settings-form.disabled {\n background-color: rgba(242, 242, 242, 0.5) !important;\n}\n\n.wpmud .settings-form.disabled > * {\n opacity: 0.5;\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/components/_settings_form.scss","/* ****************************************************************************\n * MODULES: DASHBOARD\n */\n\n@import \"../common/variables\";\n@import \"../common/mixins\";\n\n/* Images */\n.wpmud section[class^=\"box-dashboard-\"] .box-title:before {\n font-family: $font--icons;\n color: #333333;\n float: left;\n font-size: 20px;\n margin: 18px 10px 18px 0;\n}\n\n.wpmud section[class^=\"box-dashboard-performance\"] .box-title:before {\n content: '\\e90c';\n}\n.wpmud section[class^=\"box-dashboard-minification\"] .box-title:before {\n content: '\\e90b';\n}\n.wpmud section[class^=\"box-dashboard-browser\"] .box-title:before {\n content: '\\e905';\n}\n.wpmud section[class^=\"box-dashboard-gzip\"] .box-title:before {\n content: '\\e907';\n}\n.wpmud section[class^=\"box-dashboard-uptime\"] .box-title:before {\n content: '\\e900';\n}\n.wpmud section[class^=\"box-dashboard-smush\"] .box-title:before {\n content: '\\e90f';\n}\n.wpmud section[class^=\"box-dashboard-cloudflare\"] .box-title:before {\n content: '\\e906';\n}\n.wpmud section[class^=\"box-dashboard-reports\"] .box-title:before {\n content: '\\e90d';\n}\n.wpmud section[class^=\"box-dashboard-caching-gravatar\"] .box-title:before {\n content: '\\e913';\n}\n.wpmud section[class^=\"box-dashboard-caching-page\"] .box-title:before {\n content: '\\e914';\n}\n.wpmud section[class^=\"box-dashboard-advanced-tools\"] .box-title:before {\n content: '\\5a';\n}\n\n/* Dashboard background images */\n.wpmud .box-dashboard-reports-no-membership,\n.wpmud .box-dashboard-uptime-no-membership,\n.wpmud .box-dashboard-smush-no-membership .box-content,\n.wpmud .box-dashboard-browser-caching-module .box-content,\n.wpmud .box-reporting-summary .wphb-reporting-no-membership,\n.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {\n background: #fff no-repeat 30px 100%;\n padding-bottom: 30px !important;\n}\n\n.wpmud .box-dashboard-reports-no-membership .box-content,\n.wpmud .box-dashboard-uptime-no-membership .box-content {\n padding: 30px 30px 0 !important;\n}\n\n.wpmud .box-dashboard-reports-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-upsell-reports.png\");\n}\n.wpmud .box-dashboard-uptime-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-upsell-uptime.png\");\n}\n.wpmud .box-dashboard-smush-no-membership .box-content {\n background-image: url(\"#{$image--path}/smush-share-widget.png\");\n}\n.wpmud .box-dashboard-browser-caching-module .box-content {\n background-image: url(\"#{$image--path}/graphic-hb-cf-sell@2x.png\");\n background-size: 107px 148px;\n}\n.wpmud .box-reporting-summary .wphb-reporting-no-membership {\n background-image: url(\"#{$image--path}/hummingbird-upsell-minify.png\");\n background-size: 118px 126px;\n}\n.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-db-upsell@1x.png\");\n background-size: 100px 126px;\n}\n\n.wpmud .box-dashboard-browser-caching-module .box-content.no-background-image {\n background-image: none;\n}\n\n@media only screen and (-webkit-min-device-pixel-ratio: 2),\nonly screen and (min--moz-device-pixel-ratio: 2),\nonly screen and (-o-min-device-pixel-ratio: 2/1),\nonly screen and (min-device-pixel-ratio: 2),\nonly screen and (min-resolution: 192dpi),\nonly screen and (min-resolution: 2dppx) {\n .wpmud .box-dashboard-reports-no-membership,\n .wpmud .box-dashboard-uptime-no-membership,\n .wpmud .box-dashboard-smush-no-membership .box-content {\n background-size: 107px 148px;\n }\n .wpmud .box-dashboard-reports-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-upsell-reports@2x.png\");\n }\n .wpmud .box-dashboard-uptime-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-upsell-uptime@2x.png\");\n }\n .wpmud .box-dashboard-smush-no-membership .box-content {\n background-image: url(\"#{$image--path}/smush-share-widget@2x.png\");\n }\n .wpmud .box-reporting-summary .wphb-reporting-no-membership {\n background-image: url(\"#{$image--path}/hummingbird-upsell-minify@2x.png\");\n }\n .wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-db-upsell@2x.png\");\n }\n}\n\n/* Dashboard tables */\n.wpmud .wphb-dash-table-header {\n color: #333333;\n font-size: 13px;\n font-weight: bold;\n line-height: 30px;\n display: flex;\n}\n\n.wpmud .wphb-border-frame .wphb-caching-summary-item-type,\n.wpmud .wphb-border-frame .wphb-gzip-summary-item-type,\n.wpmud .wphb-dash-table-row > div:first-child {\n display: flex;\n align-items: center;\n align-content: center;\n}\n\n.wpmud .wphb-dash-table-row {\n display: flex;\n align-items: center;\n align-content: center;\n justify-content: space-between;\n height: 60px;\n border-top: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-dash-table-row:last-child {\n margin-bottom: -10px;\n}\n\n.wpmud .wphb-dash-table-header > span:first-child,\n.wpmud .wphb-dash-table-row > div:first-child {\n flex-basis: 50% !important;\n text-align: left;\n}\n\n.wpmud .wphb-dash-table-row > div:first-child {\n font-size: 13px;\n color: #333333;\n font-weight: 500;\n line-height: 16px;\n}\n\n.wpmud .wphb-dash-table-header > span,\n.wpmud .wphb-dash-table-row > div {\n text-align: center;\n}\n\n.wpmud .wphb-dash-table-header > span:last-child,\n.wpmud .wphb-dash-table-row > div:last-child {\n text-align: right;\n}\n\n/* Three column and two column layouts */\n.wpmud .wphb-dash-table.two-columns > .wphb-dash-table-header > span,\n.wpmud .wphb-dash-table.two-columns > .wphb-dash-table-row > div {\n flex-basis: 50%;\n}\n\n.wpmud .wphb-dash-table.three-columns > .wphb-dash-table-header > span,\n.wpmud .wphb-dash-table.three-columns > .wphb-dash-table-row > div {\n flex-basis: 25%;\n}\n\n/* Status text on dashboard meta boxes */\n.wpmud .dev-box .status-text {\n color: #888888;\n font-size: 13px;\n line-height: 22px;\n margin-top: 5px;\n}\n\n/* Dashboard Performance */\n.wpmud .box-dashboard-performance-module .box-content .with-padding {\n margin-bottom: 0;\n}\n\n.wpmud .box-dashboard-performance-module .wphb-performance-report-item-score {\n display: flex;\n align-items: center;\n align-content: center;\n max-width: 65px;\n}\n\n.wpmud .box-dashboard-performance-module .wphb-score-result-label {\n font-size: 13px;\n margin-left: 10px;\n color: #AAAAAA;\n font-weight: 500;\n}\n\n.wpmud .box-dashboard-performance-module .wphb-dash-table-header,\n.wpmud .box-dashboard-performance-module .wphb-dash-table-row {\n padding: 0 30px;\n}\n\n.wpmud .box-dashboard-performance-module .wphb-row-grade-aplus,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-a,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-b {\n box-shadow: inset 3px 0 0 -1px #1ABC9C;\n}\n\n.wpmud .box-dashboard-performance-module .wphb-row-grade-c,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-d {\n box-shadow: inset 3px 0 0 -1px #FECF2F;\n}\n\n.wpmud .box-dashboard-performance-module .wphb-row-grade-e,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-f {\n box-shadow: inset 3px 0 0 -1px #FF6D6D;\n}\n\n.wpmud .box-dashboard-performance-module .wphb-dash-table-row:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .box-dashboard-performance-module .wphb-row-grade-aplus > div:first-child:before,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-a > div:first-child:before,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-b > div:first-child:before,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-c > div:first-child:before,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-d > div:first-child:before,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-e > div:first-child:before,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-f > div:first-child:before {\n font-family: $font--icons;\n font-size: 16px;\n margin-right: 10px;\n}\n\n.wpmud .box-dashboard-performance-module .wphb-row-grade-aplus > div:first-child:before,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-a > div:first-child:before,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-b > div:first-child:before {\n color: #1ABC9C;\n content: \"\\e903\";\n}\n\n.wpmud .box-dashboard-performance-module .wphb-row-grade-c > div:first-child:before,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-d > div:first-child:before {\n color: #FECF2F;\n content: \"\\e904\";\n}\n\n.wpmud .box-dashboard-performance-module .wphb-row-grade-e > div:first-child:before,\n.wpmud .box-dashboard-performance-module .wphb-row-grade-f > div:first-child:before {\n color: #FF6D6D;\n content: \"\\e904\";\n}\n\n/* Dashbard: Cloudflare */\n#wphb-box-dashboard-cloudflare .wphb-block-entry .wphb-block-entry-content {\n padding-top: 0;\n}\n\n.wpmud .wphb-dashboard-caching-cloudflare-box p {\n margin-top: 30px;\n margin-bottom: 20px;\n}\n\n.wpmud #wphb-box-dashboard-cloudflare .cloudflare-step form label {\n text-align: left;\n font-weight: 400;\n padding-left: 0;\n padding-right: 0;\n}\n\n.wpmud span.dash-cloudflare-connected-status:before {\n color: #17A8E3;\n content: '\\e903';\n font-size: 16px;\n margin-right: 8px;\n}\n\n/* Dashboard: Asset Optimization */\n.wpmud .box-dashboard-welcome .dev-list > li:last-child .list-detail,\n.wpmud .box-dashboard-uptime .wphb-dash-table-row > div:last-child,\n.wpmud .box-dashboard-minification-module .wphb-dash-table-row > div:last-child {\n font-size: 18px;\n font-family: $font--alt;\n color: #666666;\n}\n\n.wpmud .box-dashboard-minification-module .wphb-pills {\n font-weight: bold;\n}\n\n.wpmud .wphb-cf-notice p,\n.wpmud .wphb-upsell-free-message p {\n position: relative;\n border-radius: 4px;\n background-color: #E1F6FF;\n padding: 20px 30px;\n margin-left: -140px;\n color: #333333;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-upsell-free-message p:after {\n position: absolute;\n top: 43%;\n left: 0;\n margin-left: -7px;\n content: '';\n width: 0;\n height: 0;\n border-top: 7px solid transparent;\n border-bottom: 7px solid transparent;\n border-right: 7px solid #E1F6FF;\n}\n\n.wpmud .wphb-cf-notice a,\n.wpmud .wphb-upsell-free-message a {\n color: #333333;\n text-decoration: underline;\n font-weight: 500;\n}\n\n/* Dashboard Smush */\n.wpmud .box-dashboard-caching-gravatar-module .wphb-notice,\n.wpmud .box-dashboard-smush .content .wphb-notice,\n.wpmud .box-dashboard-caching-page-module .content .wphb-notice,\n.wpmud .box-dashboard-browser-caching-module .content .wphb-notice,\n.wpmud .box-dashboard-gzip-module .content .wphb-notice,\n.wpmud .box-dashboard-smush-no-membership .content .wphb-notice {\n margin-top: 20px !important;\n}\n\n.wpmud .box-dashboard-smush-no-membership .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 45px;\n}\n\n/* Dashboard Reports */\n.wpmud .wrap-wp-hummingbird .report-status {\n background-color: #F8F8F8;\n height: 140px;\n width: 100%;\n position: relative;\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n margin-bottom: 10px;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status:hover {\n background-color: #f2f2f2;\n cursor: pointer;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status i {\n color: #666666;\n font-size: 24px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status strong {\n font-family: $font--alt;\n color: #666666;\n font-weight: bold;\n margin-top: 10px;\n font-size: 13px;\n line-height: 20px;\n text-transform: uppercase;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status .corner {\n position: absolute;\n top: 0;\n right: 0;\n color: #1ABC9C;\n font-weight: bold;\n font-family: $font--alt;\n padding-right: 6px;\n padding-top: 10px;\n text-transform: uppercase;\n font-size: 13px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner.grey .corner i {\n color: #888888;\n font-size: 16px;\n margin-right: 4px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner:before {\n content: '';\n position: absolute;\n top: 0;\n right: 0;\n border: solid transparent;\n border-top-right-radius: 7px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner:before {\n border-width: 30px;\n border-right-color: #D1F1EA;\n border-top-color: #D1F1EA;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner.grey:before {\n border-right-color: #E6E6E6;\n border-top-color: #E6E6E6;\n}\n\n/* Dashboard Advanced Tools */\n.wpmud .box-dashboard-advanced-tools .wphb-dash-table {\n span {\n color: #888;\n font-size: 13px;\n vertical-align: top;\n }\n\n span.no-issues:before {\n font-family: $font--icons;\n font-size: 16px;\n margin-right: 5px;\n color: #1abc9c;\n content: \"\\E903\";\n }\n}\n\n/* Up-sell meta boxes in the footer */\n.wpmud #wphb-cross-sell-footer > div {\n width: 100%;\n text-align: center;\n border-bottom: 1px solid #E6E6E6;\n line-height: 0.1em;\n margin: 10px 0 40px;\n}\n\n.wpmud #wphb-cross-sell-footer > div > span {\n color: #9A9A9A;\n background-color: #F4F4F4;\n padding: 0 30px;\n font-size: 16px;\n top: 8px;\n}\n\n.wpmud #wphb-cross-sell-footer h3,\n.wpmud .wphb-cross-sell-bottom h3 {\n color: #333333;\n font-size: 22px;\n font-weight: bold;\n line-height: 30px;\n text-transform: none;\n}\n\n.wpmud .wphb-cross-sell-modules .wphb-content {\n text-align: center;\n border-radius: 0 0 5px 5px;\n background-color: #fff;\n box-shadow: 0 2px 0 0 #EAEAEA;\n padding: 30px;\n}\n\n.wpmud .wphb-cross-sell-modules .wphb-content h3 {\n color: #333333;\n font-size: 18px;\n font-weight: bold;\n line-height: 30px;\n text-transform: none;\n margin-top: 0;\n min-height: 60px;\n}\n\n.wpmud .wphb-cross-sell-modules .wphb-content p {\n color: #888888;\n font-size: 13px;\n line-height: 20px;\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-cross-smush,\n.wpmud .wphb-cross-defender,\n.wpmud .wphb-cross-crawl {\n min-height: 150px;\n border-radius: 5px 5px 0 0;\n}\n\n.wpmud .wphb-cross-smush {\n background: url(\"#{$image--path}/plugins-smush.jpg\") center;\n background-size: cover;\n}\n\n.wpmud .wphb-cross-defender {\n background: url(\"#{$image--path}/plugins-defender.jpg\") center;\n background-size: cover;\n}\n\n.wpmud .wphb-cross-crawl {\n background: url(\"#{$image--path}/plugins-crawl.jpg\") center;\n background-size: cover;\n}\n\n.wpmud .wphb-cross-smush > span,\n.wpmud .wphb-cross-defender > span,\n.wpmud .wphb-cross-crawl > span {\n width: 56px;\n height: 56px;\n display: block;\n border: 3px solid #fff;\n border-radius: 50%;\n position: relative;\n top: 80px;\n left: 15px;\n box-shadow: 0 1px 10px 0 rgba(0,0,0,0.25);\n}\n\n.wpmud .wphb-cross-smush > span {\n @include background-2x( \"#{$image--path}/plugins-smush-icon\", 'png', 50px, 50px, center center, no-repeat );\n}\n\n.wpmud .wphb-cross-defender > span {\n @include background-2x( \"#{$image--path}/plugins-defender-icon\", 'png', 50px, 50px, center center, no-repeat );\n}\n\n.wpmud .wphb-cross-crawl > span {\n @include background-2x( \"#{$image--path}/plugins-crawl-icon\", 'png', 50px, 50px, center center, no-repeat );\n}\n\n.wpmud .wphb-cross-sell-modules a:not(.disabled):after {\n font-family: $font--icons;\n content: '\\af';\n margin-left: 5px;\n}\n\n.wpmud .wphb-cross-sell-modules .col-third:nth-child(3) a.disabled {\n border-radius: 13px !important;\n background-color: #F2F2F2;\n}\n\n.wpmud .wphb-cross-sell-bottom {\n text-align: center;\n margin-top: 50px;\n}\n\n.wpmud .wphb-cross-sell-bottom p {\n max-width: 500px;\n margin: 20px auto 30px;\n}\n\n.wpmud .wphb-cross-sell-bottom img {\n margin: 30px auto 0;\n}\n\n@media screen and (min-width: 1550px) {\n .wpmud .box-dashboard-reports-no-membership .wphb-block-entry .row {\n padding-bottom: 20px;\n }\n .wpmud .box-dashboard-uptime-no-membership .content p {\n padding-bottom: 20px;\n }\n .wpmud .box-dashboard-smush-no-membership .buttons {\n padding-bottom: 20px;\n }\n}\n\n@media only screen and (min-width: 1545px) {\n .wpmud .wphb-cross-sell-modules > .col-third h3 {\n height: auto;\n }\n}\n\n@include bp(desktop-large) {\n .wpmud .box-dashboard-smush-no-membership .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 65px;\n }\n}\n\n@include bp(desktop) {\n .wpmud .box-dashboard-uptime-no-membership .wphb-block-entry-image,\n .wpmud .box-dashboard-reports-no-membership .wphb-block-entry-image {\n display: none;\n }\n\n .wpmud .wphb-cf-notice p,\n .wpmud .wphb-upsell-free-message p {\n margin-left: auto;\n margin-top: 30px;\n }\n\n .wpmud .wphb-cf-notice p:after,\n .wpmud .wphb-upsell-free-message p:after {\n display: none;\n }\n}\n\n@include bp(desktop-small) {\n .box-dashboard-browser-caching-module .box-content {\n background-image: none;\n }\n\n /* Upsell footer */\n .wpmud .row.wphb-cross-sell-modules .col-third {\n display: flex;\n width: 100%;\n padding: 0 0 30px;\n margin-top: 0;\n }\n\n .wpmud .wphb-cross-sell-modules .col-third:last-child {\n padding: 0;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"] {\n width: 30%;\n border-radius: 5px 0 0 5px;\n box-shadow: 0 2px 0 0 #EAEAEA;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"] > span {\n top: 60%;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content {\n width: 70%;\n text-align: left;\n border-radius: 0 5px 5px 0;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content h3 {\n min-height: auto;\n text-align: left;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content p {\n margin-bottom: 10px;\n }\n}\n\n@include bp(tablet) {\n .wpmud .box-dashboard-performance-module .box-content .with-padding {\n padding: 30px;\n }\n}\n\n@include bp(phone-large) {\n .wpmud section[class^=\"box-dashboard-\"] .box-title:before {\n margin: 5px 10px 5px 0;\n }\n}\n\n@include bp(phone) {\n .wpmud .box-dashboard-minification-module .wphb-pills {\n display: block;\n }\n\n .wpmud .box-dashboard-performance-module .wphb-score-result-label {\n margin-left: 3px;\n margin-right: 5px;\n }\n\n .wpmud .box-dashboard-performance-module .wphb-dash-table .button-ghost {\n padding: 5px 6px 7px !important;\n }\n\n .wpmud .box-dashboard-performance-module .box-content .with-padding {\n padding: 15px 20px;\n }\n\n .wpmud .box-dashboard-performance-module .wphb-dash-table-header,\n .wpmud .box-dashboard-performance-module .wphb-dash-table-row {\n padding: 0 20px;\n }\n\n .wpmud .box-dashboard-smush .buttons {\n margin-top: 15px;\n }\n\n .wpmud .wphb-score.wphb-score-have-label {\n width: 65px;\n }\n\n .wpmud .dev-box .status-text {\n line-height: 15px;\n margin-top: 0;\n padding-left: 10px;\n word-wrap: break-word;\n max-width: 150px;\n }\n\n /* notices */\n .wpmud .wphb-cf-notice p,\n .wpmud .wphb-upsell-free-message p {\n padding: 15px 20px;\n margin-top: 15px;\n }\n\n /* upsell footer */\n .wpmud .row.wphb-cross-sell-modules .col-third {\n display: block;\n padding: 0 0 15px;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"],\n .wpmud .wphb-cross-sell-modules .wphb-content {\n width: 100%;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"] {\n min-height: 100px;\n height: 100px;\n border-radius: 5px 5px 0 0;\n box-shadow: none;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content {\n border-radius: 0 0 5px 5px;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content,\n .wpmud .wphb-cross-sell-modules .wphb-content h3 {\n text-align: center;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content p {\n margin-bottom: 20px;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"] > span {\n top: 60px;\n left: calc( 50% - 28px ); /* half of width ( width is 50px ) + one border ( 3px ) */\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/modules/_dashboard.scss","/* ****************************************************************************\n * MODULES: PERFORMANCE\n */\n\n@import \"../common/mixins\";\n\n.wpmud .performance-report-table {\n text-align: left;\n margin-top: 30px;\n overflow: hidden;\n}\n\n.wpmud .performance-report-table .wpdui-btn {\n display: inline-block;\n margin: 10px 0 20px;\n text-transform: uppercase;\n}\n\n.wpmud .performance-report-table .wpdui-btn:hover {\n color: #ffffff;\n}\n\n.wpmud .performance-report-table a,\n.wpmud .performance-report-table a:hover {\n color: #17A8E3;\n overflow-wrap: break-word;\n word-wrap: break-word;\n word-break: break-all;\n -ms-hyphens: auto;\n -moz-hyphens: auto;\n -webkit-hyphens: auto;\n hyphens: auto;\n}\n\n.wpmud .performance-report-table p,\n.wpmud .performance-report-table ol li {\n font-size: 13px !important;\n color: #888888;\n line-height: 22px;\n}\n\n.wpmud .performance-report-table ol > p {\n margin-left: -30px;\n margin-bottom: 15px;\n}\n\n.wpmud .performance-report-table > thead > tr > th:first-child {\n padding-left: 30px;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item:hover td {\n cursor: pointer;\n border-bottom: 0 !important;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-score {\n width: 137px;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-type {\n color: #888888;\n font-size: 13px;\n transition: color .3s;\n width: 130px;\n}\n.wpmud .performance-report-table .wphb-performance-report-item-type:first-letter {\n text-transform: capitalize;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item:hover .wphb-performance-report-item-type {\n color: #333333;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-cta {\n text-align: right;\n width: 225px;\n}\n\n.wpmud .wphb-performance-report-item .trigger-additional-content {\n color: #888888;\n cursor: pointer;\n display: inline-block;\n font-size: 14px;\n line-height: 1em;\n height: 14px;\n margin: 8px 30px 8px 15px;\n transition: color .3s;\n vertical-align: middle;\n}\n\n.wpmud .wphb-performance-report-item .trigger-additional-content .dev-icon-caret_down:before {\n display: inline-block;\n transition: transform 0.5s;\n transform: rotate(0);\n}\n\n.wpmud .wphb-performance-report-item-opened .trigger-additional-content .dev-icon-caret_down:before {\n transform: rotate(-180deg);\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-opened,\n.wpmud .wphb-table.performance-report-table .wphb-performance-report-item-additional-content:hover,\n.wpmud .wphb-table.performance-report-table .wphb-performance-report-item-opened:hover {\n background: #F8F8F8;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-additional-content {\n background: #F8F8F8;\n display: none;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-additional-content-opened {\n display: table-row;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-additional-content-opened > td {\n border-top: 0 !important;\n}\n\n.wpmud .wphb-performance-report-item-additional-content-inner {\n padding: 0 !important;\n}\n\n.wpmud .dev-box-performance-report-additional-content {\n padding: 30px;\n margin: 0 30px 30px;\n border-radius: 5px;\n background-color: #FFFFFF;\n box-shadow: 0 2px 0 0 #EAEAEA;\n}\n\n.wpmud .dev-box-performance-report-additional-content h4:first-child {\n margin-top: 0;\n}\n\n.wpmud .wphb-performance-report-item-additional-content h4,\n.wpmud .wphb-performance-report-item-additional-content h5 {\n color: #333333;\n font-size: 13px;\n text-transform: none;\n line-height: 23px;\n margin: 20px 0 20px;\n text-align: left;\n}\n\n/* Performance Results */\n.wphb-score {\n display: inline-block;\n position: relative;\n}\n\n.wphb-score-type-circle {\n border-radius: 100%;\n height: 30px;\n width: 30px;\n}\n\n.wphb-score-type-circle.large {\n height: 80px;\n width: 80px;\n}\n\n.wphb-score-type-circle .wphb-score-graph-circle {\n stroke: #E5E5E5;\n stroke-dashoffset: 80;\n stroke-width: 5px;\n -moz-transition: stroke-dashoffset 1s linear;\n -webkit-transition: stroke-dashoffset 1s linear;\n transition: stroke-dashoffset 1s linear;\n}\n\n.wphb-score-type-circle.large .wphb-score-graph-circle {\n stroke-dashoffset: 219.8;\n stroke-width: 10px;\n}\n\n.wphb-score-type-circle .wphb-score-graph-result {\n transform: rotate(-80deg) translateX(-27px) translateY(2.5px);\n -moz-transform: rotate(-80deg) translateX(-27px) translateY(2.5px);\n -webkit-transform: rotate(-80deg) translateX(-27px) translateY(2.5px);\n}\n\n.wphb-score-type-circle.large .wphb-score-graph-result {\n transform: rotate(-80deg) translateX(-72.5px) translateY(6.5px);\n -moz-transform: rotate(-80deg) translateX(-72.5px) translateY(6.5px);\n -webkit-transform: rotate(-80deg) translateX(-72.5px) translateY(6.5px);\n}\n\n.wpmud .wphb-performance-report-item-score,\n.wpmud .wphb-button-label,\n.wpmud .wphb-score-result {\n cursor: pointer;\n position: relative;\n}\n\n/* Reporting */\n.wpmud .wrap-wphb-caching .list-results,\n.wpmud .wrap-wphb-performance .list-results {\n max-height: 200px;\n overflow-y: scroll;\n}\n\n.wpmud .wrap-wphb-performance .recipient {\n margin-bottom: 10px;\n padding: 5px 10px;\n}\n\n.wpmud .wrap-wphb-performance .recipient:hover {\n border-radius: 4px;\n background-color: #F8F8F8;\n}\n\n.wpmud .wrap-wphb-performance .recipient,\n.wpmud .wrap-wphb-performance .recipient .name,\n.wpmud .wrap-wphb-performance .add-recipient {\n display: flex;\n flex-flow: row nowrap;\n justify-content: space-between;\n align-items: center;\n align-content: center;\n}\n\n.wpmud .wrap-wphb-performance .recipient img {\n -webkit-border-radius: 50px;\n -moz-border-radius: 50px;\n border-radius: 50px;\n width: 30px;\n height: 30px;\n margin-right: 10px;\n display: inline-block;\n vertical-align: middle;\n}\n\n.wpmud .wrap-wphb-performance .recipient .name {\n color: #333333;\n font-weight: 500;\n}\n\n.wpmud .wrap-wphb-performance .recipient a > i {\n color: #888888;\n}\n\n.wpmud .wrap-wphb-performance .recipient:hover a > i {\n color: #333333;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient {\n margin-top: 15px;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient > * {\n margin-bottom: 0;\n border-radius: 0;\n border: 1px solid #E6E6E6;\n font-weight: normal;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient .wdv-icon-plus {\n color: #FFFFFF;\n font-size: 20px;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient > input::placeholder {\n color: #AAAAAA;\n font-weight: 400;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient #wphb-first-name {\n border-radius: 4px 0 0 4px;\n border-right: 0;\n background-color: #F8F8F8;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient #wphb-username-search {\n background-color: #F8F8F8;\n}\n\n.wpmud .wrap-wphb-performance .wphb-tag {\n -webkit-border-radius: 16px;\n -moz-border-radius: 16px;\n border-radius: 16px;\n font-size: 13px;\n padding: 4px 16px;\n color: #fff;\n text-transform: uppercase;\n}\n\n.wpmud .wrap-wphb-performance .wphb-tag.tag-generic {\n background: #E6E6E6;\n color: #333;\n}\n\n.wpmud .box-reporting-summary {\n .settings-form.disabled {\n position: relative;\n }\n}\n.wpmud .box-reporting-summary .wphb-block-entry-content,\n.wpmud .box-reporting-summary .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 0;\n}\n\n.wpmud .list-table > tbody > tr > td.wphb-performance-report-item-type.disabled {\n padding-right: 30px;\n}\n.wpmud .performance-report-table .dev-box-performance-report-additional-content.disable-buttons a.wpdui-btn,\n.wpmud .performance-report-table .dev-box-performance-report-additional-content.disable-buttons a.button {\n display: none;\n}\n\n@include bp(desktop-large) {\n .wpmud .performance-report-table .wphb-performance-report-item-score,\n .wpmud .performance-report-table .wphb-performance-report-item-type {\n width: 115px;\n }\n\n .wpmud .performance-report-table .wphb-performance-report-item-cta {\n width: 180px;\n }\n\n .wpmud .box-reporting-summary .box-footer .wphb-block-entry-content {\n margin-top: 0;\n }\n}\n\n@include bp(desktop) {\n .wpmud .performance-report-table .wphb-performance-report-item-type {\n width: 105px;\n }\n\n .wpmud .performance-report-table .wphb-performance-report-item-cta {\n width: 165px;\n }\n\n .wpmud .performance-report-table .wphb-performance-report-item-score {\n width: 105px;\n padding-left: 20px !important;\n }\n}\n\n@include bp(tablet) {\n .wpmud .performance-report-table th,\n .wpmud .performance-report-table td {\n width: 70% !important;\n }\n\n .wpmud .wphb-performance-report-heading.wphb-performance-report-heading-type,\n .wpmud .wphb-performance-report-item-type,\n .wpmud .wphb-performance-report-item-cta > button {\n display: none !important;\n }\n}\n\n@include bp(phone) {\n .wpmud .wrap-wphb-performance .recipient,\n .wpmud .wrap-wphb-performance .recipient .name,\n .wpmud .wrap-wphb-performance .add-recipient {\n flex-flow: row wrap;\n }\n\n .wpmud .wrap-wphb-performance .add-recipient > button,\n .wpmud .wrap-wphb-performance .add-recipient #wphb-first-name {\n border-radius: 0 !important;\n margin-bottom: 5px;\n border: 1px solid #E6E6E6;\n }\n\n .wpmud .wrap-wphb-performance .add-recipient > button {\n margin-top: 10px !important;\n }\n\n .wpmud .performance-report-table {\n margin-top: 0;\n }\n\n .wpmud .wphb-performance-report-item .trigger-additional-content {\n margin-right: 20px;\n }\n\n .wpmud .dev-box-performance-report-additional-content {\n margin: 0 20px 20px;\n padding: 15px 20px;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/modules/_performance.scss","/* ****************************************************************************\n * MODULES: CACHING MODULES\n */\n\n@import \"../common/variables\";\n@import \"../common/mixins\";\n\n.wpmud .wphb-caching-error {\n text-align: left;\n}\n\n.wpmud .wphb-caching-error a {\n text-decoration: underline;\n}\n\n.wpmud .wrap-wphb-caching .wphb-spinner {\n float: none;\n background-size: 15px 15px;\n}\n\n.wpmud .wphb-caching-cloudflare-box > p {\n margin: 0 0 20px 0;\n}\n\n.wpmud .box-caching-enable .buttons {\n margin-top: -20px;\n}\n\n.wpmud .caching-table {\n margin: 30px 0 0;\n}\n\n.wpmud .wphb-caching-summary-heading,\n.wpmud .box-gzip-summary .list-label {\n text-transform: none !important;\n color: #333333;\n font-size: 13px;\n}\n\n.wpmud #cloudflare-how-to-title,\n.wpmud #cloudflare-how-to {\n text-align: left;\n}\n\n.wpmud #cloudflare-how-to a {\n font-weight: 500;\n text-decoration: underline;\n color: inherit;\n}\n\n.wpmud #cloudflare-info {\n clear: both;\n}\n\n.wpmud #cloudflare-info.wphb-notice {\n margin-top: 30px;\n}\n\n.wpmud .cloudflare-submit {\n margin-bottom: 0;\n}\n\n.wpmud #cloudflare-zone .clear {\n padding: 0;\n}\n\n.wpmud #cloudflare-zone label {\n margin-bottom: 13px;\n}\n\n.wpmud #cloudflare-zone .cloudflare-submit {\n margin-top: 22px;\n}\n\n.wpmud #cloudflare-steps .wphb-notice-success {\n margin-top: 0;\n}\n\n.wpmud .cloudflare-clear-cache-tooltip[tooltip]:after {\n margin-left: -137px;\n}\n\n.wpmud .cloudflare-step {\n margin-top: 30px;\n}\n\n.wpmud .cloudflare-step form label input {\n margin-top: 5px;\n background-color: #F8F8F8;\n}\n\n.wpmud .cloudflare-step form label input::-webkit-input-placeholder,\n.wpmud .cloudflare-step form label input::-moz-placeholder,\n.wpmud .cloudflare-step form label input:-moz-placeholder, /* Firefox 19+ */\n.wpmud .cloudflare-step form label input:-ms-input-placeholder /* Firefox 18- */ {\n color: #AAAAAA;\n}\n\n.wpmud .cloudflare-step > p:first-child {\n text-align: left;\n}\n\n.wpmud .cloudflare-spinner {\n display: inline-block;\n float: right;\n}\n\n.wpmud .cloudflare-step p.cloudflare-submit,\n.wpmud #cloudflare-how-to-title {\n position: relative;\n margin-top: 11px;\n}\n\n.wpmud .cloudflare-step p.cloudflare-submit input[type=\"submit\"] {\n display: inline-block;\n margin-top: 0;\n}\n\n.wpmud #cloudflare-how-to {\n clear: both;\n margin-left: 0;\n margin-bottom: 0;\n list-style-position: inside;\n}\n\n.wpmud .cloudflare-step > p {\n margin-bottom: 30px;\n}\n\n.wpmud .cloudflare-step p.cloudflare-submit {\n float: right;\n}\n\n.wpmud .cloudflare-step hr {\n margin-top: 20px;\n margin-bottom: 20px;\n}\n\n.wpmud .cloudflare-step p.cloudflare-clear-cache-text {\n text-align: left;\n}\n\n.wpmud #cloudflare-how-to-title {\n float: left;\n line-height: 15px;\n padding-top: 7px;\n font-size: 13px;\n}\n\n.wpmud .cloudflare-step .cloudflare-data {\n text-align: left;\n margin-top: 30px;\n margin-bottom: 0;\n}\n\n.wpmud .cloudflare-data > span {\n display: inline-block;\n margin-right: 20px;\n}\n\n.wpmud .box-caching-summary .box-content > .box-content {\n background: no-repeat 30px 100%;\n}\n\n.wpmud .box-caching-summary .box-content > .box-content {\n background-image: url(\"#{$image--path}/graphic-hb-cf-sell@2x.png\");\n background-size: 107px 148px;\n}\n\n.wpmud .box-caching-summary .box-content > .box-content.no-background-image {\n background-image: none;\n}\n\n.wpmud .box-caching-settings .select-container.server-type {\n max-width: 240px;\n}\n\n.wpmud.wphb-notice {\n margin-top: 30px;\n}\n\n.wpmud .box-caching-settings .wphb-expiry-select-box label {\n margin-top: 0;\n}\n\n.wpmud .wphb-expiry-select-box .wphb-expiry-select {\n max-width: 240px;\n}\n\n.wpmud .box-caching-settings .settings-form .col-two-third > label {\n padding: 0;\n}\n\n@media screen and (max-width: 1200px) and (min-width: 783px) {\n .wpmud #cloudflare-how-to-title {\n float: none;\n display: block;\n text-align: center;\n margin-bottom: 0;\n }\n .wpmud .cloudflare-step p.cloudflare-submit {\n float: none;\n position: relative;\n }\n .wpmud .cloudflare-step p.cloudflare-submit .cloudflare-spinner {\n position: absolute;\n right: 0;\n top: 10px;\n }\n}\n\n.wpmud .wphb-server-instructions .wphb-notice,\n.wpmud .box-caching-summary .wphb-notice,\n.wpmud .box-gzip-summary .wphb-notice {\n margin-bottom: 30px !important;\n}\n\n.wpmud .wphb-caching-active.wphb-notice.wphb-notice-blue {\n margin-bottom: 0 !important;\n}\n\n.wpmud .wphb-caching-success.wphb-notice.wphb-notice-success {\n margin-top: 30px;\n}\n\n.wpmud .wphb-server-instructions .wphb-block-content pre {\n max-height: 240px;\n}\n\n.wpmud .wphb-server-instructions .wphb-notice.wphb-notice-blue p {\n font-size: 13px;\n line-height: 22px;\n color: #333;\n}\n\n.wpmud .wphb-server-instructions .wphb-notice.wphb-notice-blue p:before {\n font-size: 16px;\n line-height: 16px;\n}\n\n.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning {\n margin-top: 30px;\n}\n\n.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning p {\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning p:before {\n font-size: 16px;\n line-height: 16px;\n}\n\n.wpmud .wphb-cf-detected-notice.wphb-notice.wphb-notice-grey p {\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-cf-detected-notice.wphb-notice.wphb-notice-grey p:before {\n font-size: 16px;\n line-height: 16px;\n}\n\n.wpmud .wphb-expiry-changes .update-htaccess {\n margin-top: 10px;\n}\n\n.wpmud .button.notice-button {\n margin-top: 10px;\n}\n\n.wpmud .wphb-cloudflare.wphb-notice-warning p {\n color: #333;\n}\n\n/* Expiration table */\n.wpmud input[name='expiry-set-type'] {\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);\n border: 1px solid #E6E6E6;\n background-color: #F8F8F8;\n}\n\n.wpmud input[name='expiry-set-type']:checked {\n border: 1px solid #17A8E3;\n background-color: #17A8E3;\n}\n\n.wpmud input[name='expiry-set-type']:checked + label {\n color: #333333;\n}\n\n.wpmud input[name='expiry-set-type']:checked:before {\n width: 8px;\n height: 8px;\n margin: 3px;\n background-color: #ffffff;\n}\n\n.wpmud input[name='expiry-set-type'] + label {\n display: inline-block;\n margin-top: 0;\n font-size: 15px;\n}\n\n.wpmud .wphb-border-frame .table-header .wphb-caching-summary-heading-type {\n flex-basis: 85px;\n}\n\n.wpmud .wphb-border-frame .table-row .wphb-gzip-summary-item-type,\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-type {\n flex-basis: 100px;\n}\n\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-expiry,\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-status {\n flex-basis: 80px;\n}\n\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-type {\n font-size: 13px;\n font-weight: 500;\n color: #333333;\n}\n\n.wpmud .box-caching-settings label,\n.wpmud .box-gzip-settings label {\n margin-top: 15px;\n margin-bottom: 5px;\n padding: 0;\n}\n\n.wpmud .box-caching-settings label,\n.wpmud .box-gzip-settings label,\n.wpmud .box-caching-settings .wphb-border-frame > label,\n.wpmud .box-gzip-settings .wphb-border-frame > label {\n color: #888888;\n font-size: 13px;\n font-weight: 500;\n line-height: 22px;\n}\n\n.wpmud .wphb-caching-cloudflare-settings .wphb-expiry-select {\n width: 85%;\n}\n\n.wrap-wphb-caching .cloudflare-step label:first-child {\n margin-top: 0;\n}\n\n/* Server select tabs (automatic/manual) */\n.wpmud .wrap-wphb-gzip .tabs,\n.wpmud .wrap-wphb-caching .tabs,\n.wpmud .wrap-wphb-gzip .tabs .tab label,\n.wpmud .wrap-wphb-caching .tabs .tab label,\n.wpmud .wrap-wphb-gzip .tabs .tab .content,\n.wpmud .wrap-wphb-caching .tabs .tab .content {\n border: 0;\n}\n\n.wpmud .wrap-wphb-gzip .tabs .tab .content,\n.wpmud .wrap-wphb-caching .tabs .tab .content {\n border-top: 2px solid #E6E6E6;\n top: 38px;\n}\n\n.wpmud .wrap-wphb-gzip .tabs .tab label,\n.wpmud .wrap-wphb-caching .tabs .tab label {\n font-size: 15px;\n text-transform: capitalize;\n color: #888888;\n padding: 0 10px;\n line-height: 1.5em;\n height: 40px;\n}\n\n.wpmud .wphb-server-instructions p,\n.wpmud .wphb-server-instructions .wphb-listing li {\n color: #888888;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-server-instructions .wphb-listing li {\n margin-top: 0;\n}\n\n.wpmud .wphb-server-instructions .tabs {\n margin: 0;\n}\n\n.wpmud .wphb-server-instructions .tabs .tab .content {\n padding: 20px 0 0;\n}\n\n.wpmud .wphb-server-instructions .tabs .tab > .active {\n color: #333333;\n border-bottom: 2px solid #333333;\n z-index: 10;\n}\n\n/* Page caching */\n.wpmud .box-page-caching .col-two-third .with-bottom-border {\n margin-bottom: 30px;\n}\n\n/* Page caching: page types table */\n.wpmud .box-page-caching .wphb-dash-table .sub {\n width: 75px;\n}\n\n.wpmud .box-page-caching .wphb-dash-table .wphb-dash-table-row:first-child {\n border-top: 0;\n}\n\n.wpmud .box-page-caching .wphb-dash-table .wphb-dash-table-row:last-child {\n border-bottom: 0;\n}\n\n/* Gravatar caching */\n.wpmud .box-page-caching .wphb-notice,\n.wpmud .box-caching-gravatar .wphb-notice {\n margin-top: 20px;\n}\n\n.wpmud .box-page-caching .settings-form .button-ghost {\n margin: 10px 0;\n}\n\n/* Rss caching */\n.wpmud .box-caching-rss {\n .settings-form {\n input[type=\"text\"] {\n margin: 0;\n display: inline-block;\n width: 80px;\n }\n\n label {\n margin-top: -5px;\n color: #666;\n }\n }\n\n .box-footer .spinner {\n margin: 6px 10px 0;\n }\n}\n\n@include bp(desktop-large) {\n .wpmud .wrap-wphb-caching .row {\n display: block;\n table-layout: inherit;\n }\n}\n\n@include bp(phone-large) {\n .wpmud .box-caching-summary .box-content > .box-content {\n background-image: none;\n }\n}\n\n@include bp(phone) {\n .wpmud .wphb-caching-success.wphb-notice.wphb-notice-success {\n margin-top: 10px;\n }\n\n .wpmud .wphb-server-instructions .wphb-notice,\n .wpmud .box-caching-summary .wphb-notice,\n .wpmud .box-gzip-summary .wphb-notice {\n margin-bottom: 10px !important;\n }\n\n .wpmud .box-caching-summary .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 0;\n }\n\n /* overwrite checkboxes */\n .wpmud input[name='expiry-set-type'] {\n height: 20px;\n width: 20px\n }\n .wpmud input[name='expiry-set-type']:checked:before {\n margin: 5px;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/modules/_caching.scss","/* ****************************************************************************\n * MODULES: GZIP COMPRESSION\n */\n\n.wpmud #wphb-code-snippet {\n margin-top: 20px;\n margin-bottom: 20px;\n}\n\n.wpmud .wphb-gzip-error {\n text-align: left;\n}\n\n.wpmud .wphb-gzip-error p:first-child {\n margin: 0 0 10px 0;\n}\n\n.wpmud .wphb-gzip-error a,\n.wpmud #configure-gzip-link {\n text-decoration: underline;\n}\n\n.wpmud .box-gzip-settings .inline-label {\n color: #888888 !important;\n font-size: 13px;\n font-weight: 500;\n padding-left: 0 !important;\n}\n\n.wpmud .box-gzip-settings .select-container {\n max-width: 240px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice-blue {\n margin-top: 0;\n margin-bottom: 30px;\n padding: 15px 20px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice-blue p {\n font-size: 13px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice-blue p:before {\n font-size: 16px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice.htaccess-warning {\n margin-top: 30px;\n margin-bottom: 0 !important;\n padding: 15px 20px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice.htaccess-warning a {\n text-decoration: underline;\n}\n\n@media screen and (min-width: 960px) {\n .wpmud .wphb-border-frame.two-columns .table-header,\n .wpmud .wphb-border-frame.two-columns .table-row {\n justify-content: flex-start;\n }\n .wpmud .wphb-border-frame.two-columns .table-header > div:first-child,\n .wpmud .wphb-border-frame.two-columns .table-row > div:first-child {\n flex-basis: 50%;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/modules/_gzip.scss","/* ****************************************************************************\n * MODULES: MINIFICATION\n */\n\n@import \"../common/variables\";\n@import \"../common/mixins\";\n\n/* Checkbox groups */\n.wpmud .checkbox-group {\n border-radius: 41px;\n display: flex;\n justify-content: flex-end;\n height: 40px;\n}\n.wpmud .wphb-modal .checkbox-group {\n justify-content: flex-start;\n}\n\n/* We do not use display: none, because screen readers don't see the element */\n.wpmud .checkbox-group input[type=\"checkbox\"] {\n border: 0;\n clip: rect(0 0 0 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n display: block;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"] + label {\n background-color: #FAFAFA;\n border-radius: 4px;\n display: flex;\n padding: 0;\n align-items: center;\n justify-content: center;\n text-align: center;\n width: 107px;\n position: relative;\n transition-property: background, color;\n transition-duration: 0.3s;\n color: transparent !important;\n margin-bottom: 0;\n margin-left: 5px;\n}\n\n/* Overwrite for advanced view */\n.wpmud .wphb-minification-advanced-group input[type=\"checkbox\"] + label {\n width: 50px;\n}\n\n/* Modal window */\n.wpmud .wphb-modal .checkbox-group {\n width: 100%;\n height: 52px;\n}\n\n.wpmud .wphb-modal .checkbox-group input[type=\"checkbox\"] + label {\n padding: 10px 10px;\n width: 70px;\n height: 50px;\n}\n\n.wpmud .wphb-modal .wphb-progress-state {\n text-align: left;\n margin-top: 0;\n}\n\n/* Checkbox group */\n.wpmud .checkbox-group input[type=\"checkbox\"] + label.toggle-label-background, /* modal */\n.wpmud .checkbox-group input[type=\"checkbox\"]:checked + label {\n box-shadow: none;\n background-color: #EFFAFF;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"] + label > span:not(.toggle),\n.wpmud .checkbox-group input[type=\"checkbox\"] + label > i {\n color: #888888;\n padding: 0;\n font-size: 12px;\n}\n\n.wpmud .checkbox-group > span {\n color: #AAAAAA;\n font-size: 12px;\n line-height: 40px;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"] + label > [class^=\"hb-\"]:before {\n font-size: 14px;\n vertical-align: -2px;\n margin-right: 8px;\n}\n\n/* Overwrite for advanced view */\n.wpmud .wphb-minification-advanced-group input[type=\"checkbox\"] + label > [class^=\"hb-\"]:before,\n.wpmud .wphb-modal input[type=\"checkbox\"] + label > [class^=\"hb-\"]:before {\n margin-right: 0;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"] + label.toggle-label-background > span:not(.toggle), /* modal */\n.wpmud .checkbox-group input[type=\"checkbox\"]:checked + label > span:not(.toggle),\n.wpmud .checkbox-group input[type=\"checkbox\"]:checked + label > i {\n color: #17A8E3;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]:disabled + label > span:not(.toggle),\n.wpmud .checkbox-group input[type=\"checkbox\"]:disabled + label > i {\n color: #DDD;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]:disabled + label {\n background-color: #FFF;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"] + label > [tooltip] {\n position: absolute;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n z-index: 9;\n}\n\n.wpmud .checkbox-group label [class^=\"hb-\"] {\n display: block;\n padding: 10px 0 4px;\n\n}\n\n/* Notice in header to enable advanced mode */\n.wpmud .wrap-wphb-minification > .row > .wphb-notice {\n margin-bottom: 30px;\n}\n\n/* Asset Optimization meta box */\n.wpmud .wphb-minification-files {\n background-color: #F8F8F8;\n padding-bottom: 1px;\n}\n\n.wpmud .box-minification-enqueued-files .box-title .buttons > div {\n display: inline-block;\n vertical-align: top;\n}\n\n/* Switch type button */\n.wpmud .box-minification-enqueued-files .box-title .buttons {\n margin-right: 45px !important;\n}\n\n.wpmud .box-minification-enqueued-files .box-title .wphb-switch-button {\n border-left: 1px solid #E6E6E6;\n display: block;\n height: 60px;\n left: 100%;\n margin-left: -30px;\n position: relative;\n width: 60px;\n}\n\n.wpmud .box-minification-enqueued-files .box-title .wphb-switch-button > i {\n color: #AAAAAA;\n font-size: 20px;\n left: 50%;\n margin-left: -10px;\n margin-top: -10px;\n position: absolute;\n top: 50%;\n}\n\n.wpmud .box-minification-enqueued-files .box-title-advanced .wphb-switch-button > i {\n color: #17A8E3;\n}\n\n.wpmud .wphb-minification-files-header {\n background-color: #fff;\n border-bottom: 1px solid #E6E6E6;\n margin-bottom: 30px;\n padding: 30px;\n}\n\n.wpmud .wphb-border-row {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n flex-flow: row wrap;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n align-content: center;\n}\n\n.wpmud .wphb-minification-files-basic .wphb-border-row,\n.wpmud .wphb-minification-files-advanced .wphb-border-row,\n.wpmud .wphb-minification-files-advanced .wphb-minification-row-details {\n padding: 10px 30px;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n}\n\n.wpmud .wphb-minification-files-advanced .wphb-minification-row-details {\n padding: 0;\n display: flex;\n align-content: center;\n align-items: center;\n}\n\n.wpmud .wphb-minification-files-basic .wphb-border-row {\n border-bottom: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-minification-files-advanced .wphb-border-row {\n padding: 10px 30px 10px 20px;\n min-height: 70px;\n background-color: #FFF;\n border-radius: 4px;\n box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.05);\n margin-bottom: 10px;\n}\n\n.wpmud .wphb-minification-files-basic .wphb-border-row:last-child,\n.wpmud .wphb-minification-files-advanced .wphb-border-row:last-child {\n border-bottom: 0;\n}\n\n.wpmud .wphb-minification-files-table.wphb-minification-files-basic,\n.wpmud .wphb-minification-files-table.wphb-minification-files-advanced {\n background-color: #F8F8F8;\n margin: 0 30px 30px;\n}\n\n.wpmud .wphb-minification-files-table.wphb-minification-files-basic {\n background-color: #FFFFFF;\n border-radius: 4px;\n box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.05);\n}\n\n.wpmud .wphb-minification-files > h3,\n.wpmud .wphb-minification-files-select h3 {\n font-size: 13px;\n font-weight: bold;\n line-height: 22px;\n color: #888888;\n text-align: left;\n text-transform: none;\n margin: 10px 30px;\n}\n\n/* Notices */\n.wpmud .wphb-minification-files .wphb-notice {\n margin: 0 30px 30px;\n width: auto;\n}\n\n.wpmud .wphb-minification-changed-notice a.wphb-notice-dismiss {\n opacity: 0.5;\n color: #333333;\n font-size: 12px;\n font-weight: bold;\n margin-left: 33px;\n text-transform: uppercase;\n}\n\n/* Styles, common for basic and advanced views */\n.wpmud .wphb-minification-file-info {\n float: left;\n line-height: 18px;\n overflow: hidden;\n position: relative;\n white-space: nowrap;\n width: 300px;\n}\n\n.wpmud .wphb-border-row:not(.disabled) .wphb-minification-file-info:after {\n background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 100%);\n background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 100%);\n background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 100%);\n content: '';\n height: 100%;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n width: 40px;\n}\n\n.wpmud .wphb-minification-file-info > * {\n color: #AAAAAA;\n font-size: 10px;\n font-weight: 500;\n line-height: 10px;\n}\n\n.wpmud .wphb-minification-file-info > span:first-child {\n color: #666666;\n display: block;\n font-size: 13px;\n line-height: 13px;\n}\n\n.wpmud .wphb-minification-file-info > a {\n max-width: 400px;\n overflow: hidden;\n}\n\n.wpmud .wphb-minification-file-info > .original-size.crossed-out {\n text-decoration: line-through;\n}\n\n.wpmud .wphb-minification-file-info > .dev-icon-caret_down,\n.wpmud .wphb-minification-file-info > .compressed-size {\n color: #1ABC9C;\n}\n\n.wpmud .wphb-minification-file-info > .dev-icon-caret_down {\n font-size: 12px;\n letter-spacing: -3px;\n margin-left: -3px;\n position: relative;\n top: 2px;\n}\n\n/* Advanced minification section */\n.wpmud .wphb-minification-filter-buttons {\n padding: 0 30px 20px;\n}\n\n.wpmud .wphb-minification-files-select {\n display: flex;\n align-items: center;\n align-content: center;\n margin: 0 50px;\n}\n\n.wpmud .wphb-minification-files-select h3 {\n margin: 5px 5px 7px;\n}\n\n.wpmud .wphb-minification-bulk-file-selector {\n float: left;\n}\n\n.wpmud .wphb-minification-file-select {\n float: left;\n line-height: 30px;\n margin-right: 10px;\n}\n\n.wpmud .wphb-minification-exclude {\n margin-left: 30px;\n}\n\n/* Filter */\n.wpmud .wphb-minification-filter {\n background-color: #FFFFFF;\n padding: 0 30px;\n}\n\n.wpmud .wphb-minification-filter > div {\n height: 78px;\n display: flex;\n align-items: center;\n align-content: center;\n}\n\n/* Overwrite for wpmudev styles */\n.wpmud .wphb-minification-filter > div > input {\n margin: 0 10px !important;\n width: 40% !important;\n background-color: #F8F8F8 !important;\n}\n\n.wpmud .wphb-minification-filter > div .wphb-block-title {\n color: #333333;\n font: 500 13px/30px $font;\n text-transform: none;\n margin-right: 21px;\n}\n\n.wpmud .wphb-minification-filter .select-list-container {\n min-width: 240px !important;\n}\n\n/* Disabled/hidden row start */\n.wpmud .wphb-border-row.out-of-filter,\n.wpmud .wphb-border-row.disabled .checkbox-group {\n display: none;\n}\n\n.wpmud .box-content.disabled,\n.wpmud .wphb-border-row.disabled {\n background-color: #F2F2F2;\n}\n\n.wpmud .wphb-minification-files-advanced .wphb-border-row.disabled {\n box-shadow: none;\n}\n\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-other,\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-css,\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-javascript,\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-js {\n opacity: 0.4;\n}\n\n.wpmud .wphb-border-row.disabled .wphb-minification-file-info > span {\n color: #AAA;\n}\n/* Disabled row end */\n\n/* Settings */\n.wpmud .wrap-wphb-minification .settings-form {\n margin: 0;\n}\n\n/* Overwrite upsell message */\n.wpmud .wrap-wphb-minification .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 0;\n}\n\n/* Tools */\n.wpmud .box-minification-tools {\n .box-footer .spinner {\n margin: 6px 10px 0;\n }\n}\n\n// Responsive\n@include bp(desktop-large) {\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n width: 235px;\n }\n}\n\n@include bp(desktop) {\n .wpmud .box-minification-enqueued-files .box-title .buttons {\n float: left;\n margin-right: -5px !important;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n width: 130px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-exclude {\n margin-left: 15px;\n }\n\n .wpmud .box-minification-enqueued-files .box-footer .button {\n margin-top: 15px;\n }\n}\n\n@media screen and (max-width: 1060px) {\n .wpmud .wphb-border-row-header,\n .wpmud .wphb-border-row {\n padding: 15px 15px;\n }\n}\n\n@include bp(desktop-small) {\n .wpmud .box-minification-enqueued-files .box-title .buttons {\n float: right;\n margin-right: 45px !important;\n }\n}\n\n@include bp(tablet) {\n .wpmud .wphb-minification-files-advanced .fileinfo-group:after {\n font-family: dashicons, Arial, sans-serif;\n content: \"\\F347\";\n position: absolute;\n left: 100%;\n margin-left: -70px;\n margin-top: 5px;\n }\n\n .wpmud .wphb-minification-files-advanced .fileinfo-group.opened:after {\n content: \"\\f343\";\n }\n\n .wpmud .wphb-minification-files-advanced .fileinfo-group {\n padding: 10px 0;\n overflow: hidden;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n width: 55%;\n min-width: 200px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info > a {\n max-width: 200px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-row-details {\n display: none;\n margin: 10px 0;\n border-top: 1px solid #E6E6E6;\n padding-top: 15px !important;\n width: 100%;\n z-index: 100;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-advanced-group {\n float: left;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-exclude {\n float: right;\n margin-top: 7px;\n }\n}\n\n@include bp(phone-large) {\n .wpmud .box-minification-enqueued-files .box-title h3,\n .wpmud .box-minification-enqueued-files .box-title .buttons {\n float: none !important;\n }\n\n .wpmud .box-minification-enqueued-files .box-title .wphb-switch-button {\n height: 96px;\n margin-left: -60px;\n position: absolute;\n top: 0;\n }\n\n .wpmud .wphb-minification-file-info {\n width: 185px;\n }\n\n .wpmud .box-minification-enqueued-files .box-footer .status-text {\n display: block;\n max-width: 100%;\n text-align: left;\n padding-left: 0;\n }\n}\n\n@include bp(phone) {\n .wpmud .wphb-minification-files-table.wphb-minification-files-basic,\n .wpmud .wphb-minification-files-table.wphb-minification-files-advanced {\n margin: 0 10px 30px;\n }\n\n .wpmud .wphb-minification-files-header {\n padding: 15px 30px;\n }\n\n .wpmud .box-minification-enqueued-files .buttons .button {\n padding: 7px !important;\n }\n\n .wpmud .wphb-minification-filter-buttons {\n padding: 0 20px 20px;\n }\n\n .wpmud .wphb-minification-files-select {\n margin: 0 20px;\n }\n\n .wpmud .wphb-minification-files > h3 {\n margin: 10px;\n }\n\n .wpmud .wphb-minification-files-basic .wphb-border-row,\n .wpmud .wphb-minification-files-advanced .wphb-border-row {\n padding: 10px;\n }\n\n .wpmud .wphb-minification-file-info {\n width: 155px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n min-width: 170px;\n }\n\n .wpmud .wphb-border-row .fileinfo-group {\n /*margin-top: 5px;\n margin-bottom: -5px;*/\n margin-top: 0;\n margin-bottom: 0;\n }\n\n .wpmud .checkbox-group > span {\n line-height: 20px;\n text-align: right;\n align-self: center;\n }\n\n .wpmud .checkbox-group input[type=\"checkbox\"] + label {\n width: 60px;\n }\n\n .wpmud .checkbox-group input[type=\"checkbox\"] + label > [class^=\"hb-\"]:before {\n margin-right: 0;\n }\n\n .wpmud .checkbox-group input[type=\"checkbox\"] + label > span[class^=hb] > span {\n display: none;\n }\n\n .wpmud .wphb-minification-files-advanced .fileinfo-group:after {\n margin-left: -40px;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/modules/_minification.scss","/* ****************************************************************************\n * MODULES: UPTIME\n */\n\n@import \"../common/variables\";\n\n.wpmud .wrap-wphb-uptime > #header .actions.status {\n left: 120px;\n margin-top: 1px !important;\n}\n\n.wpmud .wphb-block-uptime-status .wphb-uptime-icon {\n max-height: 110px;\n}\n\n.wpmud .wphb-block-content-uptime-data-range {\n padding-top: 9px;\n padding-bottom: 9px;\n}\n\n.wpmud .uptime-chart svg g g rect {\n fill: #E6E6E6;\n stroke: transparent;\n stroke-width: 0;\n}\n\n.wpmud .uptime-chart svg g g text {\n fill: #fff;\n font-family: $font;\n font-size: 13px;\n font-weight: 400;\n}\n.wpmud .uptime-chart svg g g g g rect:hover {\n stroke-width: 0px;\n stroke: red;\n display: none;\n}\n\n.wpmud .uptime-chart svg g g text:last-of-type {\n fill: #AAAAAA;\n font-weight: 500;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red,\n.wpmud .wrap-wphb-uptime .wphb-pills.green {\n height: 40px;\n line-height: 40px;\n width: 200px;\n border-radius: 5px;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-notice-grey {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-block-uptime-downtime .dev-list {\n margin-top: 30px;\n}\n\n.wrap-wphb-uptime .wphb-block-entry .wphb-block-content-center,\n.wrap-wphb-caching .wphb-block-entry .wphb-block-content-center {\n max-width: 600px;\n margin: 0 auto;\n}\n\n.wpmud .downtime-chart svg g text {\n font-family: 'Roboto', Arial, sans-serif;\n fill: #AAAAAA;\n font-weight: 500;\n font-size: 12px;\n line-height: 20px;\n}\n\n.wpmud .wphb-block-content.wphb-downtime-basic {\n margin-left: 80px;\n max-width: 90%;\n}\n\n.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart {\n height: 80px;\n}\n.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart div div svg {\n height: 58px !important;\n overflow: hidden;\n}\n.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart svg g text {\n display: none;\n}\n.wpmud .downtime-chart svg g path {\n stroke: transparent;\n}\n.wpmud .downtime-chart svg g rect {\n stroke: transparent;\n stroke-width: 0;\n}\n\n.wpmud .downtime-chart-key span {\n color: #AAAAAA;\n font-size: 12px;\n line-height: 20px;\n margin-right: 30px;\n font-weight: 500;\n}\n\n.wpmud .downtime-chart-key span:before {\n content: \"\";\n display: inline-block;\n height: 16px;\n width: 16px;\n border-radius: 2px;\n margin-right: 10px;\n vertical-align: sub;\n}\n\n.wpmud .downtime-chart-key span.response-time-key:before {\n background-color: #E1F6FF;\n border-top: 2px solid #24ADE5;\n height: 14px;\n}\n.wpmud .downtime-chart-key span.uptime-key:before {\n background-color: #D1F1EA;\n}\n.wpmud .downtime-chart-key span.downtime-key:before {\n background-color: #FF6D6D;\n}\n.wpmud .downtime-chart-key span.unknown-key:before {\n background-color: #F8F8F8;\n}\n\n.wpmud .wrap-wphb-uptime .dev-list-stats-item {\n margin-bottom: 10px;\n}\n.wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_up,\n.wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_down {\n color: #FFFFFF;\n padding: 6px;\n margin-right: 10px;\n vertical-align: middle;\n border-radius: 5px;\n font-size: 18px;\n}\n\n.wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_down {\n background-color: #FF6D6D;\n}\n\n.wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_up {\n background-color: #1ABC9C;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills-group{\n width: 100%;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red,\n.wpmud .wrap-wphb-uptime .wphb-pills.green {\n text-align: left;\n color: #333333;\n font-size: 13px;\n height: 56px;\n line-height: 50px;\n padding-left: 15px;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red[tooltip]:after {\n left: 48%;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red {\n background-color: #FFE5E9;\n border-top: 2px solid #FFE5E9;\n border-bottom: 2px solid #FF6D6D;\n width: 60%;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.green {\n background-color: #D1F1EA;\n border-top: 2px solid #1ABC9C;\n border-bottom: 2px solid #D1F1EA;\n width: 40%;\n}\n\n.wpmud span.list-detail-stats {\n position: absolute;\n font-size: 13px;\n font-weight: 500;\n line-height: 22px;\n right: 60%;\n color: #333333;\n opacity: .5;\n margin-top: 16px;\n}\n\n.wphb-image-pills-divider{\n display: inline-block;\n height: 56px;\n margin-bottom: -25px;\n margin-left: -28px;\n position: absolute;\n}\n\n.wpmud .downtime-chart div.google-visualization-tooltip,\n.wpmud .wphb-uptime-graph div.google-visualization-tooltip {\n font-family: 'Roboto', sans-serif;\n font-weight: 500;\n color: #FFFFFF;\n font-size: 12px;\n border: none;\n border-radius: 5px;\n padding: 8px 12px;\n background: black;\n}\n\n.wpmud .wphb-uptime-graph div.google-visualization-tooltip .response-time-tooltip {\n font-size: 15px;\n line-height: 18px;\n}\n\n.wpmud .wphb-uptime-graph div.google-visualization-tooltip .uptime-date-tooltip {\n font-size: 11px;\n color: #AAAAAA;\n line-height: 14px;\n display: block;\n}\n\n@include bp(desktop) {\n\n}\n\n@include bp(phone-large) {\n .wpmud .uptime-data-range {\n position: absolute;\n top: -50px;\n right: 0;\n }\n\n .wpmud .uptime-data-range .select-list-container {\n min-width: 180px;\n }\n\n .wpmud .wrap-wphb-uptime .actions > .documentation-button {\n margin-left: 0 !important;\n }\n\n .wpmud .wrap-wphb-uptime .wphb-pills.green {\n position: absolute;\n top: 0;\n right: 0;\n height: 30px;\n border-radius: 0 4px 0 0 !important;\n line-height: 30px;\n padding-left: 10px;\n width: 160px;\n }\n\n .wpmud .wrap-wphb-uptime .wphb-pills.red {\n width: 100%;\n margin-top: 30px;\n height: 50px;\n border-radius: 5px 0 5px 5px !important;\n }\n\n .wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_down,\n .wpmud .wrap-wphb-uptime .dev-icon.dev-icon-caret_up {\n padding: 4px;\n border-radius: 4px;\n font-size: 12px;\n vertical-align: inherit;\n }\n\n .wphb-image-pills-divider {\n display: inline-block;\n height: 30px;\n margin-left: 0;\n top: 0;\n right: 160px;\n }\n\n .wpmud span.list-detail-stats {\n right: 20px;\n margin-top: 46px;\n opacity: .7;\n }\n}\n\n@include bp(phone) {\n .wpmud .box-uptime-summary .list-detail {\n max-width: 60px;\n }\n\n .wpmud .uptime-chart {\n margin-left: -25px;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/modules/_uptime.scss","/* ****************************************************************************\n * MODULES: ADVANCED TOOLS\n */\n\n@import \"../common/mixins\";\n\n/* Styles for all advanced meta boxes */\n.wpmud [class^=\"box-advanced\"] {\n .spinner {\n margin: 5px 10px 0;\n vertical-align: top;\n }\n}\n\n/* Database cleanup tab */\n.wpmud .box-advanced-db .wphb-border-frame {\n margin-top: 30px !important;\n\n .table-header,\n .table-row {\n padding: 20px 30px;\n\n @include bp(tablet) {\n padding: 20px 0;\n }\n }\n\n .table-header div {\n flex-basis: 50px;\n }\n\n .table-header div:first-child,\n .table-row div:first-child {\n flex-basis: 150px;\n }\n\n .table-row {\n div {\n height: 20px;\n font-size: 13px;\n line-height: 20px;\n\n &:first-child {\n color: #333;\n font-weight: 500;\n }\n }\n\n .hb-wpmudev-icon-info {\n color: #ddd;\n font-size: 16px;\n margin-left: 10px;\n\n &:hover { color: #aaa; }\n &:before { vertical-align: middle; }\n }\n\n .wphb-db-row-delete {\n width: 30px;\n height: 30px;\n display: inline-block;\n border-radius: 4px;\n margin-top: -5px;\n text-align: center;\n vertical-align: middle;\n\n &:hover {\n background-color: #f5f5f5;\n\n .hb-fi-trash {\n color: #FF6D6D;\n }\n }\n }\n\n .spinner {\n margin-top: 1px;\n }\n\n .hb-fi-trash {\n color: #888;\n font-size: 12px;\n top: 5px;\n }\n }\n\n .table-footer {\n padding: 0 30px 30px;\n\n .buttons .spinner {\n margin-top: 6px;\n }\n\n @include bp(tablet) {\n padding: 20px 0;\n\n .status-text {\n text-align: left;\n margin-top: 0;\n padding-left: 0;\n }\n .buttons {\n margin-top: 0;\n }\n }\n\n @include bp(phone-large) {\n .status-text {\n word-wrap: break-word;\n max-width: 180px;\n }\n }\n }\n}\n\n/* Database cleanup tab (settings) */\n.wpmud .box-advanced-db-settings {\n .settings-form {\n .schedule-box > label:first-child,\n .included-tables > label:first-child {\n margin-top: 0;\n }\n\n .included-tables > label {\n margin-top: 7px;\n color: #333;\n }\n\n\n }\n\n .wphb-db-cleanup-no-membership {\n padding-top: 0;\n\n .wphb-block-entry-content {\n @include bp(desktop-large) {\n margin-top: 30px;\n }\n }\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/modules/_advanced.scss","/* ****************************************************************************\n * MAIN APP SCSS FILE\n */\n\n// Common\n@import \"common/variables\";\n@import \"common/functions\";\n@import \"common/mixins\";\n@import \"common/classes\";\n@import \"common/overwrites\";\n@import \"common/typography\";\n@import \"common/buttons\";\n@import \"common/layout\";\n@import \"common/modals\";\n\n// Components\n@import \"components/notices\";\n@import \"components/pills\";\n@import \"components/border_frame\";\n@import \"components/settings_form\";\n\n// Modules\n@import \"modules/dashboard\";\n@import \"modules/performance\";\n@import \"modules/caching\";\n@import \"modules/gzip\";\n@import \"modules/minification\";\n@import \"modules/uptime\";\n@import \"modules/advanced\";\n\n\n/* ****************************************************************************\n * 1. EXTEND/OVERRIDE WPMUDEV DASHBOARD/WP STYLES\n */\n.wpmud .wrap-wp-hummingbird .mline {\n margin-bottom: 30px;\n}\n\n.wpmud .select-list-container {\n min-width: 100px;\n}\n\n.wpmud .select-list-container .list-value {\n color: #333333;\n font-weight: 500;\n padding: 6px 8px 6px 15px;\n}\n\n#wpbody-content {\n padding-bottom: 25px;\n}\n\n.wpmud .with-bottom-border {\n border-bottom: 1px solid #E6E6E6;\n padding-bottom: 30px;\n}\n\n.wpmud #header {\n position: relative;\n margin-bottom: 0;\n}\n\n.wpmud #header .actions.status {\n left: 200px;\n margin-top: 1px;\n}\n\n.wpmud #header .actions.status [tooltip]:after {\n margin-left: 27px;\n bottom: -60%;\n}\n\n.wpmud #header .actions.status [tooltip]:before {\n bottom: 25%;\n left: 100%;\n border-right-color: #0B2F3F;\n border-top: 5px solid transparent;\n}\n\n.wpmud #header .actions {\n position: absolute;\n display: flex;\n align-items: center;\n top: 5px;\n right: 0;\n}\n\n.wpmud #header .actions > * {\n display: inline-block;\n margin-left: 10px;\n}\n\n.wpmud #header .actions.label-and-button > *:first-child {\n margin-left: 0;\n}\n\n.wpmud #header .actions.label-and-button .actions-label {\n color: #888888;\n font-size: 13px;\n line-height: 18px;\n margin: 0;\n text-align: right;\n}\n\n.wpmud #header .actions .header-label {\n font-size: 12px;\n color: #AAAAAA;\n}\n\n.wpmud #header ~ .sub-header {\n margin-top: -15px;\n margin-bottom: 30px;\n}\n\n\n\n\n.wpmud .list-table > tbody > tr:last-child > td {\n border-bottom: 1px solid #eee;\n}\n\n.wpmud .list-table > thead > tr > th {\n text-transform: none;\n font-size: 13px;\n font-weight: bold;\n}\n\n.wpmud .list-table > tbody > tr > td {\n padding: 12px 10px;\n}\n\n.wpmud .list-table .radio-group.with-icon {\n display: inline-table;\n}\n\n.wpmud .list-table .radio-group.with-icon .dev-icon {\n vertical-align: middle;\n}\n\n.wpmud .dev-list {\n margin: -30px 0 20px;\n}\n\n.wpmud .dev-list .content {\n padding: 30px 0;\n border-bottom: 1px solid #EEEEEE;\n}\n\n.wpmud .dev-list > li.list-header {\n text-transform: none;\n color: #333333;\n font-size: 13px;\n}\n\n.wpmud .dev-list .list-header .list-label {\n font-weight: bold;\n}\n\n.wpmud .dev-list > li .list-label {\n font-size: 13px;\n font-weight: 500;\n line-height: 21px;\n padding: 15px 10px 15px 0\n}\n\n.wpmud .dev-list > li:last-child .list-label,\n.wpmud .dev-list > li:last-child .list-detail {\n border-bottom: 1px solid #eee;\n}\n\n.wpmud .box-dashboard-welcome .dev-list > li:last-child .list-label,\n.wpmud .box-dashboard-welcome .dev-list > li:last-child .list-detail,\n.wpmud .box-performance-welcome .dev-list > li:last-child .list-label,\n.wpmud .box-performance-welcome .dev-list > li:last-child .list-detail,\n.wpmud .box-minification-summary-meta-box .dev-list > li:last-child .list-label,\n.wpmud .box-minification-summary-meta-box .dev-list > li:last-child .list-detail,\n.wpmud .box-uptime-summary .dev-list > li:last-child .list-label,\n.wpmud .box-uptime-summary .dev-list > li:last-child .list-detail {\n border-bottom: 1px solid transparent;\n}\n\n.wpmud .dev-list > li .list-detail .wphb-dash-numbers {\n font-family: 'Roboto Condensed', sans-serif;\n font-size: 13px;\n color: #888888;\n line-height: 22px;\n text-align: right;\n font-weight: 400;\n}\n\n.wpmud .dev-list-stats-border > li:first-child .list-label,\n.wpmud .dev-list-stats-border > li:first-child .list-detail {\n border-top: 1px solid #eee;\n}\n\n.wpmud .dev-list-stats-border > li:last-child .list-label,\n.wpmud .dev-list-stats-border > li:last-child .list-detail {\n border-bottom-color: #eee;\n}\n\n.wpmud .dev-list-stats > li .list-label-stats,\n.wpmud .dev-list-stats > li .list-detail-stats-heading {\n color: #333;\n font: 500 13px/30px 'Roboto', Arial, sans-serif;\n}\n\n.wpmud .dev-list-stats > li .list-detail-stats-heading {\n font-weight: 400;\n font-size: 18px;\n color: #666;\n}\n\n.wpmud .dev-list-stats > li .list-detail-stats-heading-extra-info {\n color: #BABABA;\n display: block;\n font: 500 12px/16px 'Roboto', Arial, sans-serif;\n margin-top: 5px;\n}\n\n.wpmud .dev-list-stats.standalone {\n margin: 0;\n}\n\n.wpmud .dev-list-stats.small > li .list-label-stats,\n.wpmud .dev-list-stats.small > li .list-detail-stats-heading {\n line-height: 26px;\n}\n\n.wpmud .dev-list-stats > li .list-detail-stats-heading.small {\n font-size: 26px;\n}\n\n.wpmud .dev-list-stats > li .list-label-stats-date {\n margin-right: 30px;\n}\n\n.wpmud .list-label-link {\n color: #19B4CF;\n}\n\n.wpmud input[type=\"checkbox\"] {\n border-radius: 4px;\n border: 1px solid #E6E6E6;\n background-color: #F8F8F8;\n}\n\n.wpmud [tooltip]:after {\n font: 500 12px/18px 'Roboto';\n padding: 8px 12px;\n background: #333333;\n min-width: 50px;\n max-width: 250px;\n transition: all 0.2s ease;\n text-transform: none;\n}\n\n.wpmud .tooltip-box {\n overflow: hidden;\n}\n\n.wpmud .tooltip-box:hover {\n overflow: visible;\n}\n\n.wpmud .radio-group input[type=\"radio\"] + label > [tooltip] {\n position: absolute;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n z-index: 9;\n}\n\n/* Button Labels */\n.wpmud .wphb-button-label {\n border: 1px solid transparent;\n border-radius: 15px;\n color: #fff;\n font: 500 12px/26px 'Roboto';\n display: inline-block;\n height: 26px;\n margin: 0;\n padding: 0 12px;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: nowrap;\n}\n\n.wpmud .wphb-button-label-red {\n background: #fd6e70;\n}\n\n.wpmud .wphb-button-label-yellow {\n background: #FFD000;\n color: #333333;\n}\n\n.wpmud .wphb-button-label-green {\n background: #1ABC9C;\n}\n\n.wpmud .wphb-button-label-light {\n color: #333333;\n background-color: #F2F2F2;\n}\n\n/* Labels */\n.wpmud .wrap-wp-hummingbird .wphb-label {\n color: #fff;\n display: block;\n font: 500 15px/20px 'Roboto';\n text-shadow: none;\n white-space: nowrap;\n}\n\n.wpmud .wrap-wp-hummingbird .wphb-label-notice {\n background: #14485F;\n border-radius: 3px;\n padding: 5px 10px;\n}\n\n.wpmud .wrap-wp-hummingbird .wphb-label-notice-warning {\n background: #FECF2F;\n color: #4E4B10;\n}\n\n.wpmud .wrap-wp-hummingbird .wphb-label-notice-inline {\n display: inline-block;\n font-size: 13px;\n color: #888888;\n}\n\n.wpmud .wrap-wp-hummingbird .wphb-label-disabled {\n background: #F2F2F2;\n border-radius: 20px;\n color: #C0C0C0;\n display: inline-block;\n font: 500 12px/20px 'Roboto', Arial, sans-serif;\n min-width: 120px;\n padding: 5px;\n text-align: center;\n text-transform: uppercase;\n}\n\n/* ****************************************************************************\n * 2. COMMON/GENERAL STYLES\n */\n.wpmud .footer-love {\n text-align: center;\n margin-top: 50px;\n color: #C0C0C0;\n font-size: 13px;\n}\n\n.wpmud .footer-love > .dashicons-heart {\n font-size: 14px;\n line-height: 22px;\n}\n\n/* Tables */\n.wpmud .wphb-table-wrapper.complex {\n min-height: .01%;\n overflow-x: auto;\n border-bottom: 1px solid #eee;\n}\n\n.wpmud .wphb-table {\n font-weight: 400;\n max-width: 100%;\n width: 100%;\n color: #333333;\n}\n\n\n\n.wpmud .list-table.wphb-table tr:hover .wphb-table-td-has-tooltip {\n z-index: 3;\n}\n\n.box-dashboard-welcome .box-content,\n.box-performance-welcome .box-content,\n.box-minification-summary-meta-box .box-content,\n.box-uptime-summary .box-content {\n padding: 30px 30px 10px !important;\n}\n\n.box-dashboard-welcome .wphb-block-entry,\n.box-performance-welcome .wphb-block-entry,\n.box-minification-summary-meta-box .wphb-block-entry,\n.box-uptime-summary .wphb-block-entry {\n width: 100%;\n min-height: 172px;\n}\n\n.wpmud .wphb-image,\n.wpmud .wphb-image-icon-content {\n display: block;\n height: auto;\n max-width: 100%;\n}\n\n.wpmud .wphb-image-center,\n.wpmud .wphb-image-icon-content-center {\n margin-right: auto;\n margin-left: auto;\n}\n\n.wpmud .wphb-image-icon-content-top {\n margin-bottom: 30px;\n}\n\n/* Lists */\n.wpmud .wphb-listing {\n margin: 0;\n}\n\n.wpmud .wphb-listing li {\n font-family: 'Roboto', Arial, sans-serif;\n font-size: 15px;\n font-weight: 400;\n line-height: 21px;\n margin-top: 10px;\n margin-bottom: 0;\n}\n\n.wpmud .wphb-listing li:first-child {\n margin-top: 0;\n}\n\n.wpmud .wphb-listing.bold li {\n font-weight: 500;\n}\n\n.wpmud .wphb-listing-ordered {\n padding-left: 20px;\n}\n\n.wpmud .wphb-listing li strong {\n font-weight: 500;\n}\n\n.wpmud .wphb-listing li:before {\n color: #17A8E3;\n top: 0;\n}\n\n.wpmud .wphb-listing li p {\n font-size: 13px;\n line-height: 22px;\n margin-top: 5px;\n}\n\n/* Forms */\n.wpmud .wphb-select-group {\n clear: both;\n}\n\n.wpmud .wphb-select-group:after {\n content: '';\n display: table;\n clear: both;\n}\n\n.wpmud .wphb-select-group > label,\n.wpmud .wphb-select-group > div {\n float: left;\n display: block;\n}\n\n.wpmud .wphb-select-group > label {\n line-height: 43px;\n margin-right: 10px;\n}\n\n.wpmud .select-container {\n overflow: hidden;\n}\n\n.wpmud .select-container.active {\n overflow: visible;\n}\n\n.wpmud .wphb-select-group .spinner {\n margin: 11px;\n}\n\n/* ****************************************************************************\n * 3. COMPONENTS/MODULES\n */\n\n\n/* Progress bar */\n@keyframes spinner {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg)\n }\n\n 50% {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg)\n }\n\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg)\n }\n}\n\n.wphb-scan-progress {\n overflow: hidden;\n width: 100%;\n}\n\n.not-present .wphb-scan-progress-text:before,\n.wphb-scan-progress .wphb-scan-progress-text:before {\n content: \" \";\n width: 18px;\n height: 18px;\n display: inline-block;\n position: relative;\n top: 5px;\n left: 1px;\n margin-right: 10px;\n border: 2px solid #A9E0EC;\n border-bottom-color: #17A8E3;\n border-radius: 100%;\n background: 0 0;\n box-sizing: border-box;\n animation: spinner .75s 0s linear infinite;\n}\n\n.wphb-scan-progress .wphb-scan-progress-text {\n width: 65px;\n float: left;\n text-align: left;\n}\n\n.wphb-scan-progress .wphb-scan-progress-text img {\n display: inline-block;\n vertical-align: middle;\n margin-right: 10px;\n}\n\n.wphb-scan-progress .wphb-scan-progress-text span {\n font-weight: bold;\n font-family: \"Roboto Condensed\", sans-serif;\n font-size: 13px;\n color: #333333;\n vertical-align: middle;\n line-height: 30px;\n}\n\n.wphb-scan-progress .wphb-scan-progress-bar {\n background: #E6E6E6;\n -webkit-border-radius: 5px;\n -moz-border-radius: 5px;\n border-radius: 5px;\n height: 10px;\n width: 70%;\n overflow: hidden;\n margin-top: 10px;\n position: relative;\n}\n\n.wphb-scan-progress .wphb-scan-progress-bar span {\n background: #17A8E3;\n height: 10px;\n display: inline-block;\n position: absolute;\n top: 0;\n left: 0;\n -webkit-transition: 1000ms width ease-in-out;\n -moz-transition: 1000ms width ease-in-out;\n transition: 1000ms width ease-in-out;\n}\n\n/* Block: Test with progress bar */\n.wphb-block-test {\n background-color: #F9F9F9;\n border-radius: 5px;\n max-width: 700px;\n width: 100%;\n height: 60px;\n padding: 15px 30px;\n}\n\n.wphb-block-test-header {\n margin-bottom: 10px;\n}\n\n.wphb-progress-state {\n margin-top: 10px;\n text-align: center;\n}\n\n.wphb-progress-state .wphb-progress-state-text {\n color: #8B8B8B;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wphb-block-test-standalone {\n max-width: 100%;\n text-align: center;\n margin-top: 25px;\n}\n\n.wphb-block-test-standalone .wphb-progress {\n margin: 0 auto;\n}\n\n/* Filename Extensions Icons */\n.wphb-filename-extension {\n border-radius: 4px;\n display: block;\n float: left;\n font-family: 'Roboto', sans-serif;\n font-size: 9px;\n color: #fff;\n text-transform: uppercase;\n text-align: center;\n line-height: 43px;\n height: 30px;\n margin: 0 10px 0 0;\n width: 30px;\n}\n\n.wphb-filename-extension-html {\n background-color: #F56418;\n}\n\n.wphb-filename-extension-other {\n background-color: #AAAAAA;\n}\n\n.wphb-filename-extension-css {\n background-color: #25A8DE;\n}\n\n.wphb-filename-extension-media {\n background-color: #55DDB8;\n}\n\n.wphb-filename-extension-images {\n background-color: #BDF2F7;\n color: #333333;\n}\n\n.wphb-filename-extension-javascript,\n.wphb-filename-extension-js {\n background-color: #F7E100;\n color: #333333;\n}\n\n.wpmud .list-table.hover-effect > tbody > tr[class*=\"wphb-table-score\"] td:first-child {\n padding-left: 30px;\n}\n\n.wpmud .list-table.hover-effect > tbody > tr[class*=\"wphb-table-score\"] td:first-child:before {\n font-family: 'hummingbird', sans-serif;\n speak: none;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n font-size: 20px;\n vertical-align: middle;\n margin-right: 10px;\n}\n\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-disabled:hover > td:first-child:after,\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-success:hover > td:first-child:after,\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-warning:hover td:first-child:after,\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-dismissed:hover td:first-child:after,\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-error:hover td:first-child:after {\n content: normal;\n}\n\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-success:hover td:first-child,\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-additional-success td:first-child,\n.wphb-table-score-success td:first-child {\n border-left: 4px solid #1ABC9C;\n}\n\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-success td:first-child:before {\n color: #1ABC9C;\n content: \"\\e903\";\n}\n\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-warning:hover td:first-child,\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-additional-warning td:first-child,\n.wphb-table-score-warning td:first-child {\n border-left: 4px solid #FFD000;\n}\n\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-warning td:first-child:before {\n color: #FFD000;\n content: \"\\e904\";\n}\n\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-error:hover td:first-child,\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-additional-error td:first-child,\n.wphb-table-score-error td:first-child {\n border-left: 4px solid #FF6D6D;\n}\n\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-error td:first-child:before {\n color: #FF6D6D;\n content: \"\\e904\";\n}\n\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-disabled:hover td:first-child,\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-additional-disabled td:first-child,\n.wphb-table-score-disabled td:first-child,\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-dismissed:hover td:first-child,\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-additional-dismissed td:first-child,\n.wphb-table-score-dismissed td:first-child {\n border-left: 4px solid #888888;\n}\n\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-disabled td:first-child:before,\n.wpmud .list-table.hover-effect > tbody > tr.wphb-table-score-dismissed td:first-child:before {\n color: #888888;\n content: \"\\e904\";\n}\n\n.wphb-score-result-grade-aplus,\n.wphb-score-result-grade-a {\n color: #1ABC9C;\n}\n\n.wphb-score-result-grade-aplus .wphb-score-type-circle .wphb-score-graph-result,\n.wphb-score-result-grade-a .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #1ABC9C;\n}\n\n.wphb-score-result-grade-b {\n color: #1ABC9C;\n}\n\n.wphb-score-result-grade-b .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #1ABC9C;\n}\n\n.wphb-score-result-grade-c {\n color: #FFD000;\n}\n\n.wphb-score-result-grade-c .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #FFD000;\n}\n\n.wphb-score-result-grade-d {\n color: #FFD000;\n}\n\n.wphb-score-result-grade-d .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #FFD000;\n}\n\n.wphb-score-result-grade-e,\n.wphb-score-result-grade-f {\n color: #FF6D6D;\n}\n\n.wphb-score-result-grade-e .wphb-score-type-circle .wphb-score-graph-result,\n.wphb-score-result-grade-f .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #FF6D6D;\n}\n\n.wphb-score-result-grade-disabled,\n.wphb-score-result-grade-dismissed {\n color: #AAAAAA;\n}\n\n.wphb-score-result-grade-disabled .wphb-score-type-circle .wphb-score-graph-result,\n.wphb-score-result-grade-dismissed .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #AAAAAA;\n}\n\n.wphb-score-have-label .wphb-score-type,\n.wphb-score-have-label .wphb-score-result-label {\n float: left;\n display: block;\n}\n\n.wphb-score-have-label.inside .wphb-score-type,\n.wphb-score-have-label.inside .wphb-score-result-label {\n float: none;\n}\n\n.wphb-score-have-label .wphb-score-result-label {\n font-family: 'Roboto', Arial, sans-serif;\n font-size: 15px;\n color: #888888;\n padding-left: 10px;\n}\n\n.wphb-score-have-label .wphb-score-type-circle + .wphb-score-result-label {\n line-height: 30px;\n min-width: 35px;\n text-align: left;\n}\n\n.wphb-score-have-label.inside .wphb-score-type {\n position: relative;\n}\n\n.wphb-score-have-label.inside .wphb-score-result-label {\n font-size: 26px;\n left: 0;\n line-height: 34px;\n margin: -17px 0 0;\n min-width: 100%;\n padding: 0;\n position: absolute;\n right: 0;\n text-align: center;\n top: 50%;\n}\n\n#wphb-error-details {\n display: none;\n}\n\n#wphb-error-details-link {\n color: white;\n text-decoration: none;\n margin-top: 10px;\n margin-bottom: 10px;\n display: inline-block;\n font-weight: 400;\n}\n\n#wphb-error-details-link > .dashicons {\n text-decoration: none;\n}\n\n#wphb-error-details-link.expanded {\n display: none;\n}\n\n/* Tabs */\n.wpmud .wphb-tabs a {\n color: #333;\n display: block;\n}\n\n.wpmud .wphb-tabs .wphb-tab {\n padding: 5px 20px;\n height: 30px;\n}\n\n.wpmud .wphb-tabs .wphb-tab.current {\n background-color: #E6E6E6;\n border-radius: 20px;\n font-weight: 500;\n}\n\n.wpmud .wphb-tab .wphb-button-label {\n position: relative;\n top: -25px;\n left: 100%;\n margin-left: -22px;\n width: 39px;\n height: 26px;\n text-align: center;\n font-size: 12px;\n font-weight: 500;\n line-height: 24px;\n}\n\n.wpmud .wphb-tab > i {\n color: #FF6D6D;\n position: relative;\n top: -23px;\n left: 100%;\n margin-left: -5px;\n font-size: 21px;\n}\n\n.wpmud .wphb-tab > i.hb-wpmudev-icon-tick {\n color: #1ABC9C;\n}\n\n/* ****************************************************************************\n * 10. RESPONSIVE/MQ\n */\n\n\n/* SMALL DESKTOP */\n@media screen and (max-width: 960px) {\n .wpmud .wphb-table.stack {\n display: block;\n }\n .wpmud .wphb-table.stack > thead,\n .wpmud .wphb-table.stack > tfoot {\n display: none;\n }\n .wpmud .wphb-table.stack > tbody {\n display: block;\n width: 100%;\n }\n .wpmud .wphb-table.stack > tbody > tr {\n display: block;\n position: relative;\n width: 100%;\n }\n .wpmud .wphb-table.stack > tbody > tr:before {\n background: transparent;\n border-top: 1px solid #EAEAEA;\n border-bottom: 1px solid transparent;\n bottom: 0;\n content: \"\";\n display: block;\n left: 0;\n margin: 0 -30px;\n position: absolute;\n right: 0;\n top: 0;\n }\n .wpmud .wphb-table.stack > tbody > tr:first-child:before {\n border-top-color: transparent;\n }\n .wpmud .wphb-table.stack > tbody > tr > td {\n border-bottom: none;\n display: block;\n padding-left: 0;\n position: relative;\n text-align: left;\n width: 100%;\n }\n .wpmud .wphb-table.stack > tbody > tr > td:before {\n content: attr(th-data);\n display: block;\n float: left;\n font-size: 15px;\n font-weight: 700;\n line-height: 1.5em;\n min-width: 150px;\n max-width: 300px;\n margin-right: 20px;\n text-transform: uppercase;\n }\n .wpmud .wphb-table.stack > tbody > tr > td.has-button-label:before {\n line-height: 2em;\n }\n .wpmud .wphb-table.stack > tbody > tr > td.has-select {\n max-height: 64px;\n }\n .wpmud .wphb-table.stack > tbody > tr > td.has-select:before {\n line-height: 2.867em;\n }\n .wpmud .wphb-table.stack > tbody > tr,\n .wpmud .wphb-table.stack > tbody > tr > td:first-child {\n border-top: none;\n }\n .wpmud .wphb-table.stack > tbody > tr > td:last-child {\n border-bottom: none;\n }\n .wpmud .wphb-table.stack > tbody > tr:hover:before {\n background: #FBFBFB;\n }\n .wpmud .wphb-table.stack > tbody > tr:first-child:hover:before {\n border-top-color: #EAEAEA;\n }\n .wpmud .wphb-table.stack > tbody > tr:last-child:hover:before {\n border-bottom-color: #EAEAEA;\n }\n .wpmud .wphb-table.stack > tbody > tr:hover > td {\n border-bottom: none;\n }\n .wpmud .wphb-table.stack > tbody > tr:hover > td:first-child:after,\n .wpmud .wphb-table.stack > tbody > tr:hover > td:last-child:after {\n display: none;\n }\n .wpmud .wphb-table.stack > tbody > tr > td > * {\n display: inline-block;\n }\n\n}\n\n/* TABLET */\n@media screen and (max-width: 783px) {\n /* Generic */\n .wpmud #header .actions {\n position: relative;\n display: flex;\n align-items: center;\n top: 0;\n margin: 10px 0 10px;\n float: none;\n padding-bottom: 0;\n }\n .wpmud #header .actions .button:first-child {\n margin-left: 0;\n }\n .wpmud #header .actions [tooltip].tooltip-bottom:after {\n margin-left: -54px;\n }\n\n\n\n .wpmud .wphb-table-wrapper.complex {\n overflow-y: hidden;\n width: 100%;\n padding: 0;\n }\n .wpmud .wphb-table-wrapper.complex p {\n padding: 0 20px;\n }\n .wpmud .wphb-table-wrapper.complex .alignleft {\n padding-left: 20px;\n }\n .wpmud .wphb-table-wrapper.complex .alignright {\n padding-right: 20px;\n }\n\n .wpmud .list-table > thead > tr > th,\n .wpmud .list-table > tbody > tr > td {\n width: 100%;\n }\n\n .wpmud .wphb-table.stack > tbody > tr > td:before {\n max-width: 220px;\n width: 40%;\n }\n\n .wpmud .dev-box .box-title .toggle-group {\n margin-top: 0;\n }\n\n\n .wpmud #header .after-header-actions .button {\n margin-top: -15px;\n }\n}\n\n/* LARGE MOBILE */\n@media screen and (max-width: 600px) {\n /* Generic */\n .wpmud .dev-box .box-title .actions,\n .wpmud .dev-box .box-title .extra {\n float: none;\n display: block;\n }\n\n .wpmud .row,\n .wpmud .dev-box .box-title .actions,\n .wpmud .dev-box .box-title .extra {\n margin-top: 15px;\n }\n\n .wpmud .dev-box {\n margin-bottom: 15px;\n }\n\n .wpmud .dev-box .box-title {\n padding: 15px 20px;\n }\n\n .wpmud .dev-box .box-title .buttons {\n margin-top: 2px;\n float: right;\n }\n\n .wpmud .dev-box .box-title h3 {\n line-height: 34px;\n display: inline-block;\n }\n}\n\n@include bp(phone) {\n .wpmud .list-table.hover-effect > tbody > tr[class*=\"wphb-table-score\"] td:first-child {\n padding-left: 20px;\n }\n\n .wpmud .with-bottom-border {\n padding-bottom: 20px;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/_src/scss/app.scss"],"sourceRoot":""}
 
admin/assets/css/app.min.css ADDED
@@ -0,0 +1,2 @@
 
 
1
+ .hidden{display:none}.cf:after{content:"";display:table;clear:both}.wpmud .wrap-wp-hummingbird .clear{padding:0}@media screen and (min-width:960px){.hide-on-large{display:none}}@media only screen and (max-width:1200px){.hide-to-large{display:none}}@media only screen and (max-width:600px){.hide-to-mobile{display:none!important}}@media only screen and (max-width:960px){.hide-on-mobile{display:none}}button.notice-dismiss{position:absolute;top:0;right:1px;border:none!important;margin:0!important;padding:9px!important;background:none!important;color:#72777c!important;cursor:pointer!important}.wpmud .wphb-dismiss{float:right}.wpmud #wpbody-content>.notice{margin:5px 20px 2px 5px}.wpmud [tooltip].tooltip-bottom:before{margin-top:2px}.wpmud [tooltip].tooltip-bottom:after{margin-top:12px}.wpmud .list-table>tbody>tr>td{z-index:0}.wpmud [tooltip].tooltip-s.tooltip-right:after{margin-left:-150px}.wpmud .wrap-wp-hummingbird strong{color:#333}.wpmud .dev-overlay .back{background-color:rgba(51,51,51,.95)}.wpmud .dev-overlay .box{padding:40px 30px 30px}.wpmud .dev-overlay .title .title-action{font-family:Roboto,sans-serif;margin-top:5px;vertical-align:middle;color:#888;font-size:13px;line-height:30px;margin-right:-20px}.wpmud #wpmu-install-dashboard{margin-left:0}.wpmud #wpcontent #wpmu-install-dashboard *{-webkit-box-sizing:content-box;box-sizing:content-box}.wpmud #wpmu-install-dashboard .wpmu-message{font-family:inherit;font-weight:inherit;line-height:inherit}.wpmud .toggle .toggle-checkbox:checked+.toggle-label,.wpmud .toggle .toggle-checkbox:checked+.toggle-label:before{background-color:#17a8e3}.wpmud .toggle .toggle-label:before{background:#aaa}.wpmud .toggle .toggle-label{width:44px;text-align:left}.wpmud .toggle .toggle-checkbox:checked+.toggle-label:after{margin-left:24px}.wpmud .toggle .toggle-checkbox:checked:disabled+.toggle-label{background:transparent}.wpmud .toggle .toggle-checkbox:checked:disabled+.toggle-label:before{bottom:0;left:0;right:0;top:0}.wpmud .toggle .toggle-checkbox:checked:disabled+.toggle-label:after{margin-left:1px}.wpmud .toggle .toggle-label.small{width:36px;height:16px}.wpmud .toggle .toggle-label.small:after{width:14px;height:14px}.wpmud .toggle .toggle-checkbox:checked+.toggle-label.small:after{margin-left:21px}.wpmud .toggle .toggle-cross{color:#ddd}.wpmud .toggle-group{display:inline-block}.wpmud .toggle-item.bordered,.wpmud .wphb-block-entry.bordered{border-top:1px solid #e6e6e6;padding-top:30px}.wpmud .toggle-item.space-top-small{margin:15px 0 0}.wpmud .toggle-item label{text-align:left}.wpmud .toggle-item .toggle-item-group{display:table;width:100%}.wpmud .toggle-item .toggle-actions,.wpmud .toggle-item .toggle-info{display:table-cell}.wpmud .toggle-item .toggle-item-title{color:#555;font:400 15px/20px Roboto,Arial,sans-serif;margin:0}.wpmud .toggle-item .toggle-actions{padding-left:30px;vertical-align:middle;text-align:right}.wpmud .spinner.standalone{float:none;margin:0}.wpmud .spinner.left{float:left}.wpmud .spinner.hide{display:none}.wpmud .spinner.visible{visibility:visible}@media only screen and (max-width:960px){.wpmud .dev-overlay{left:35px;top:15px}}@media only screen and (max-width:783px){.wpmud .dev-overlay{left:0;top:0}}@font-face{font-family:Hummingbird;src:url(../fonts/hummingbird.eot);src:url(../fonts/hummingbird.eot) format("embedded-opentype"),url(../fonts/hummingbird.ttf) format("truetype"),url(../fonts/hummingbird.woff) format("woff"),url(../fonts/hummingbird.svg) format("svg");font-weight:400;font-style:normal}[class*=" hb-"],[class^=hb-]{font-family:Hummingbird,Arial,sans-serif!important;speak:none;font-size:15px;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.hb-fi-filter:before{content:"z"}.hb-fi-wand:before{content:"Z"}.hb-fi-settings-slider-control:before{content:"{"}.hb-icon-audit:before{content:"\E900"}.hb-wpmudev-icon-cross:before{content:"\E901"}.hb-wpmudev-icon-info:before{content:"\E902"}.hb-wpmudev-icon-tick:before{content:"\E903"}.hb-wpmudev-icon-warning:before{content:"\E904"}.hb-icon-cache:before{content:"\E905"}.hb-icon-cloudflare:before{content:"\E906"}.hb-icon-gzip:before{content:"\E907"}.hb-icon-minify-combine:before{content:"\E908"}.hb-icon-minify-defer:before{content:"\E909"}.hb-icon-minify-footer:before{content:"\E90A"}.hb-icon-minify:before{content:"\E90B"}.hb-icon-performancetest:before{content:"\E90C"}.hb-icon-reports:before{content:"\E90D"}.hb-icon-restore:before{content:"\E90E"}.hb-icon-smush:before{content:"\E90F"}.hb-icon-minify-inline:before{content:"\E910"}.hb-wpmudev-icon-eye:before{content:"\E911"}.hb-wpmudev-icon-wrench-tool:before{content:"\E912"}.hb-wpmudev-icon-profile-male:before{content:"\E913"}.hb-wpmudev-icon-page:before{content:"\E914"}.hb-wpmudev-icon-academy:before{content:"\E915"}.hb-fi-plugin-2:before{content:"O"}.hb-fi-arrow-right:before{content:"\AF"}.hb-fi-trash:before{content:"Q"}.wpmud .wphb-icon{position:relative}.wpmud .wphb-icon-left{display:block;float:left}.wpmud .wphb-dash-icon{font-size:12px;padding-right:2px}.wpmud .cf-dismiss{display:block;margin-top:6px}.wpmud .wphb-cf-notice .cf-dismiss a{text-transform:uppercase;text-decoration:none;color:#888}.wpmud .box-advanced-general h4,.wpmud .box-page-caching h4{color:#666;font-size:15px;font-weight:500;text-align:left;text-transform:none}.wpmud .box-content .buttons{margin-top:30px}.wpmud .box-content .buttons.buttons-on-left{text-align:left}.wpmud .box-content .buttons.buttons-on-right{text-align:right}.wpmud .box-footer .buttons.buttons-on-left{text-align:left}.wpmud .box-footer .buttons.buttons-on-right{text-align:right}.wpmud .wphb-notice:not(.notice) .buttons{margin:10px 30px 0}.wpmud .wrap-wp-hummingbird .report-status .sui-tag{margin-top:10px}.wpmud .wrap-wphb-performance .scan-settings .buttons{margin-top:30px}.wpmud .wrap-wphb-performance .add-recipient>button{background-color:#888!important;border-radius:0 4px 4px 0!important}.wpmud .wrap-wphb-caching #enable-cache-wrap .button,.wpmud .wrap-wphb-gzip #enable-cache-wrap .button{margin-top:30px}.wpmud .wphb-code-snippet .button{position:absolute;left:100%;margin-left:-90px!important;margin-top:15px!important}.wpmud .box-caching-gravatar .button-large{margin:0!important}.wrap-wp-hummingbird .button-cta-green:hover{-webkit-box-shadow:none;box-shadow:none}.wphb-scan-progress .wphb-scan-cancel-button{float:right;margin-top:-13px}.wphb-scan-progress .wphb-scan-cancel-button>a{font-size:12px;color:#aaa;text-transform:uppercase}.wpmud .wrap-wp-hummingbird .wpdui-btn{font:500 12px/16px Roboto,Arial,sans-serif!important;padding:7px 16px;height:30px;background-color:#888;color:#fff;border-radius:3px;-moz-border-radius:3px;transition:all .3s ease;-webkit-transition:all .3s ease;text-shadow:none!important}.wpmud .report-status button.sui-button-upsell{margin-top:10px!important;text-transform:uppercase;height:30px;line-height:16px;padding:0 16px}.wpmud .report-status button.sui-button-upsell:not(:disabled){background-color:#d1f1ea!important;color:#1abc9c!important}.wpmud .report-status button.sui-button-upsell:not(:disabled):focus,.wpmud .report-status button.sui-button-upsell:not(:disabled):hover{background-color:#d1f1ea!important;color:#1abc9c!important;border-color:#d1f1ea!important}.wpmud .report-status button.sui-button-upsell i{color:#1abc9c;font-size:16px;position:relative;line-height:16px;top:2px}.wpmud .wrap-wp-hummingbird .wphb-notice.notice .sui-button.button:focus,.wpmud .wrap-wp-hummingbird .wphb-notice.notice .sui-button.button:hover{color:#fff}.wpmud .wrap-wp-hummingbird .button.button-large,.wpmud .wrap-wp-hummingbird button.button-large,.wpmud .wrap-wp-hummingbird button.button-large:not(.wph-button):not(#collapse-button){font:500 15px/20px Roboto,Arial,sans-serif!important;height:40px!important;padding:11px 20px 9px}.wpmud .wphb-modal .button-ghost,.wpmud .wrap-wp-hummingbird .button-ghost,.wpmud .wrap-wp-hummingbird button.button-ghost:not(.wph-button):not(#collapse-button){padding:5px 16px 7px!important;background-color:transparent!important;border:2px solid #ddd;color:#888!important}.wpmud .wrap-wp-hummingbird .button-ghost.active,.wpmud .wrap-wp-hummingbird .button-ghost:active,.wpmud .wrap-wp-hummingbird .button-ghost:focus,.wpmud .wrap-wp-hummingbird .button-ghost:hover:enabled,.wpmud .wrap-wp-hummingbird .button-ghost:hover:not(:focus):not(:active),.wpmud .wrap-wp-hummingbird .button-grey:hover,.wpmud .wrap-wp-hummingbird button.button-ghost:hover:not(.wph-button):not(#collapse-button){background-color:#7b7b7b!important;border-color:#7b7b7b;color:#fff!important}.wpmud .wphb-modal .button-ghost.button-large,.wpmud .wrap-wp-hummingbird .button-ghost.button-large,.wpmud .wrap-wp-hummingbird button.button-ghost.button-large:not(.wph-button):not(#collapse-button){padding:9px 20px!important}.wpmud .wphb-modal .button-content-cta{-webkit-box-shadow:none;box-shadow:none;background-color:#1abc9c!important;color:#fff}.wpmud .wrap-wp-hummingbird .button-content-cta{-webkit-box-shadow:none;box-shadow:none;background-color:#1abc9c;color:#fff}.wpmud .wphb-modal .button-content-cta:hover:not(:focus):not(:active),.wpmud .wrap-wp-hummingbird .button-content-cta:active,.wpmud .wrap-wp-hummingbird .button-content-cta:focus,.wpmud .wrap-wp-hummingbird .button-content-cta:hover:not(:focus):not(:active){background:#0daf8f!important;border-color:#0daf8f}.wpmud .wrap-wp-hummingbird .button-content-cta.button-ghost{background:transparent;color:#1abc9c!important;border-color:#1abc9c;border-radius:20px}.wpmud .wrap-wp-hummingbird .button-content-cta.button-ghost:active{color:#fff!important;border-color:#0daf8f}.wpmud .wrap-wp-hummingbird .button-notice{background-color:#e6e6e6!important;color:#aaa!important}.wpmud .wrap-wp-hummingbird .button-grey,.wpmud .wrap-wp-hummingbird .button-notice:active,.wpmud .wrap-wp-hummingbird .button-notice:focus,.wpmud .wrap-wp-hummingbird .button-notice:hover:not(:focus):not(:active),.wpmud .wrap-wp-hummingbird .button-notice:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]){background-color:#888!important;color:#fff!important}@media only screen and (max-width:480px){.wpmud .box-content .buttons{margin-top:0}}.wpmud .row{margin-top:30px}.wpmud .box-content .row:first-of-type{margin-top:0}.wpmud .row-space-large{margin-bottom:40px}.wpmud .row .col-center{display:block;margin-right:auto;margin-left:auto}.wpmud .row .col-fifth,.wpmud .row .col-four-fifths,.wpmud .row .col-quarter,.wpmud .row .col-three-quarters{display:table-cell;padding:0 15px;position:relative;vertical-align:top}.wpmud .row .col-quarter{width:25%}.wpmud .row .col-three-quarters{width:75%}.wpmud .row .col-fifth{width:20%}.wpmud .row .col-four-fifths{width:80%}.wpmud .row .col-four-fifths.hidden{display:none}.wpmud .row .col-fifth:first-child,.wpmud .row .col-four-fifths:first-child,.wpmud .row .col-quarter:first-child,.wpmud .row .col-three-quarters:first-child{padding-left:0}.wpmud .row .col-fifth:last-child,.wpmud .row .col-four-fifths:last-child,.wpmud .row .col-quarter:last-child,.wpmud .row .col-three-quarters:last-child{padding-right:0}.wpmud .dev-box{padding:0}.wpmud .dev-box:last-child{margin-bottom:0}.wpmud .dev-box .box-title{clear:both;height:inherit;margin:0;padding:0 30px}.wpmud .dev-box .box-title h3{font-size:16px;color:#333;float:left}.wpmud .dev-box .box-title .wphb-label-notice-inline{margin:2px 15px}.wpmud .dev-box .box-title:after{content:"";display:table;clear:both}.wpmud .dev-box .box-title .extra{float:right}.wpmud .dev-box .box-title .extra-text{margin:20px 0 0}.wpmud .dev-box .box-title .extra-label{display:inline-block;margin:0;line-height:20px}.wpmud .dev-box .box-title .extra-label-value{color:#477b92;font-weight:400;text-transform:uppercase}.wpmud .dev-box .box-title .wphb-select-group{margin:10px 0 0}.wpmud .sui-box-header .test-results-label{display:block;float:left;font-family:Roboto Condensed,Roboto,Arial,sans-serif;font-weight:700;line-height:30px;margin-right:10px;text-transform:uppercase}.wpmud .dev-box .box-title .test-results .wphb-score{display:block;float:left}.wpmud .dev-box .box-title .toggle-group{margin:6px 15px 0 0}.wpmud .dev-box .box-content{padding:30px;word-wrap:break-word}.wpmud .dev-box .box-content>*{margin-bottom:20px}.wpmud .dev-box .box-content>:last-child{margin-bottom:0}.wpmud .dev-box .box-content .row-space-large{margin-bottom:40px}.wpmud .box-content.no-padding{padding:0!important}.wpmud .box-content.no-vertical-padding{padding-top:0!important;padding-bottom:0!important}.wpmud .box-content.no-side-padding,.wpmud .wphb-modal .no-side-padding{padding-right:0!important;padding-left:0!important}.wpmud .box-content .no-top-padding{padding-top:0!important}.wpmud .box-content .with-padding{padding:30px}.wpmud .box-content .add-side-padding{padding-right:30px;padding-left:30px}.wpmud .box-footer{margin-top:0;padding:30px;border-top:1px solid #eaeaea}.wpmud .wphb-block-section{margin-top:40px}.wpmud .wphb-block-section:first-child{margin-top:0}.wpmud .wphb-block-section-content *{color:#555;line-height:20px}.wpmud .content-box .wphb-block-entry-image-bottom{margin-bottom:-30px}.wpmud .content-box .wphb-block-entry-image-center{margin-top:30px}.wpmud .content-box .wphb-block-entry-image-center img{margin-left:auto;margin-right:auto}.wpmud .content-box-one-col-center .box-content{text-align:left}.wpmud .content-box-one-col-center .wphb-block-entry-content{margin:0 auto}.wpmud .content-box-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.wpmud .content-box-two-cols-image-left .box-content{text-align:left}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content,.wpmud .content-box-two-cols-image-left .wphb-block-entry-image{display:block}.wpmud .content-box-two-cols-image-left .wphb-block-entry-image{float:left;max-width:192px}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content{margin:30px 0 0 285px}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content .title{text-align:left}.wpmud .wphb-block+.wphb-block{margin-top:30px}.wpmud .wphb-block-header{margin-bottom:30px}.wpmud .wphb-block-title{font-family:Roboto Condensed,Roboto,Arial,sans-serif;font-size:22px;line-height:26px;margin:0;overflow:hidden;text-align:left;text-overflow:ellipsis;white-space:nowrap}.wpmud .wphb-block-content+.wphb-block-content{margin-top:30px}.wpmud .wphb-block-content>:last-child{margin-bottom:0}.wpmud .wphb-block-content-center{text-align:center}.wpmud .wphb-block-content pre{font-weight:500;font-family:Roboto,Arial,sans-serif;font-size:13px;line-height:18px;background-color:#f8f8f8;border:1px solid #e6e6e6;border-radius:5px;margin:0;padding:20px 30px;white-space:pre;overflow-x:scroll;max-width:100%}.wpmud .wphb-block-content-blue{background-color:#e0f6ff;border-radius:5px;padding:20px 30px}.wpmud .wphb-block-content .toggle,.wpmud .wphb-block-content .toggle .toggle-label,.wpmud .wphb-block-content .tooltip-box{height:21px;vertical-align:top}.wpmud .wphb-block-content-group{border-collapse:separate;border-spacing:0;display:table;width:100%}.wpmud .wphb-block-content-group-inner{display:table-row}.wpmud .wphb-block-content-group-item{display:table-cell;vertical-align:middle;width:100%}.wpmud .wphb-block-content-group-item .wphb-block-content{margin-left:30px}.wpmud .wphb-block-content-group-item:first-child .wphb-block-content{margin-left:0}.wpmud .wphb-block-content-group .wphb-block-content.small{padding:20px 23px;width:80px}.wpmud .wphb-block-entry:after{content:"";clear:both;display:block}.wpmud .wphb-block-entry-content .title{color:#333;font-size:22px;font-weight:700;line-height:1.333em;margin:0 0 .5em;max-width:100%;text-transform:uppercase}.wpmud .wphb-block-entry-content .content>p,.wpmud .wphb-block-entry-content .title{margin:0 0 20px}.wpmud .content{margin-bottom:30px}.wpmud .wphb-block-entry-content .content>p:last-child{margin-bottom:0}.wpmud .wphb-block-entry-third{color:#333;width:calc(100% / 2 - 98px);padding-left:5%;padding-top:10px;display:inline-block;vertical-align:middle}.wpmud .wphb-block-entry-third span{font-weight:400}.wpmud .wphb-block-entry-third p{font-size:13px;margin-top:0;color:#888}.wpmud .wphb-block-entry-third span.not-present{font-size:55px;line-height:30px;margin-bottom:20px}.wpmud .wphb-block-entry-third span.score-span{font-size:13px;margin-left:-12px}.wpmud .wphb-block-entry-third .current-performance-score{margin-bottom:20px}.wpmud .wphb-block-entry-third .hb-wpmudev-icon-info,.wpmud .wphb-block-entry-third .hb-wpmudev-icon-info:before,.wpmud i.hb-wpmudev-icon-info.dismissed,.wpmud i.hb-wpmudev-icon-info.dismissed:before{color:#888}.wpmud .wphb-block-entry-third .hb-wpmudev-icon-tick{color:#1abc9c}.wpmud .wphb-block-entry-third .dev-list{margin:0!important;border-bottom:0}.wpmud .wphb-block-entry-third .dev-list li:first-child span{padding-top:4px}@media only screen and (max-width:1200px){.wpmud .wrap-wphb-caching .row .col-half,.wpmud .wrap-wphb-gzip .row .col-half,.wpmud .wrap-wphb .row .col-half{display:block;margin-top:30px;padding:0;width:100%}.wpmud .wrap-wphb-caching .row .col-half:first-child,.wpmud .wrap-wphb-gzip .row .col-half:first-child,.wpmud .wrap-wphb .row .col-half:first-child{margin-top:0}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content{margin-top:65px}}@media only screen and (max-width:1100px){.wpmud .content-box-two-cols-image-left .wphb-block-entry{text-align:center;min-height:100%}.wpmud .content-box-two-cols-image-left .wphb-block-entry-image{display:none}.wpmud .wphb-block-entry-third{width:49%}.wpmud .content-box-two-cols-image-left .wphb-block-entry-image .wphb-image{margin:0 auto}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content{margin:35px 0 0 155px}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content .title{text-align:center}.wpmud .wphb-block-entry-third{text-align:left;padding-left:0}}@media only screen and (max-width:960px){.wpmud .row{display:block}.wpmud .row .col-fifth,.wpmud .row .col-four-fifths{display:block;width:100%;padding:0}.wpmud .wphb-block-entry-third{padding-left:0}.wpmud .wphb-block-entry-third .current-performance-score{margin-bottom:5px}}@media only screen and (max-width:783px){.wpmud .box-content .with-padding{padding:15px 20px}.wpmud .row,.wpmud .row-sep{display:block;table-layout:inherit}.wpmud .row .col-half,.wpmud .row .col-quarter,.wpmud .row .col-third,.wpmud .row .col-three-quarters,.wpmud .row .col-two-third{display:block;margin-top:30px;padding:0;width:100%}.wpmud .row .col-half:first-child,.wpmud .row .col-quarter:first-child,.wpmud .row .col-third:first-child,.wpmud .row .col-three-quarters:first-child,.wpmud .row .col-two-third:first-child{margin-top:0}.wpmud .content-box-two-cols-image-left .wphb-block-entry-image{display:none}}@media only screen and (max-width:600px){.wpmud .wphb-block-entry-third{display:block;text-align:center;width:100%}.wpmud .wphb-block-entry-third .dev-list{text-align:left}.wpmud .dev-box .box-title .test-results{float:none;display:block}}@media only screen and (max-width:480px){.wpmud .row .col-half,.wpmud .row .col-quarter,.wpmud .row .col-third,.wpmud .row .col-three-quarters,.wpmud .row .col-two-third{margin-top:15px}.wpmud .box-footer,.wpmud .dev-box .box-content{padding:15px 20px}.wpmud .dev-box .box-content>*{margin-bottom:15px}.wpmud .content-box-two-cols-image-left .wphb-block-entry-content{margin:35px 0 0 135px}.wpmud .dev-box .box-title .test-results{margin-top:2px;float:right}}.wpmud .dev-overlay .title .close{color:#888;font-size:34px}.wpmud .wphb-modal *{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Roboto,Arial,sans-serif}.wpmud .wphb-modal .wphb-dialog-content>*{margin-bottom:30px}.wpmud .wphb-modal .wphb-dialog-content>:last-child{margin-bottom:0}.wpmud .wphb-modal .wphb-dialog-content .wphb-modal-image-bottom{margin-bottom:-30px}.wpmud .wphb-modal .wphb-progress-state{margin-top:-20px}.wpmud .wphb-modal .wphb-dialog-footer{border-top:1px solid #eaeaea;margin:30px -30px;padding:30px 30px 0}.wpmud .wphb-progress-modal .wphb-block-test,.wpmud .wphb-progress-modal .wphb-progress{max-width:100%}.wpmud .wphb-progress-modal .wphb-dialog-content p{color:#666}.wpmud .wphb-progress-modal .wphb-notice-box p{color:#333;font-size:13px;line-height:22px}.wphb-cdn-block{border:1px solid #e6e6e6;border-radius:5px;padding:18px 0}.wphb-cdn-block>div{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:auto;padding:20px 30px 0}.wphb-cdn-block>div>label{margin:2px 0 0;color:#666}.wphb-cdn-block>p{color:#888!important;padding:0 30px 0 76px}.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test,.wpmud.toplevel_page_wphb-minification .wphb-modal .wphb-block-test,.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:auto;padding:20px 30px;margin-bottom:30px}.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test{margin-bottom:10px}.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test>p{font-size:13px;line-height:22px;margin-right:14px;margin-bottom:0}.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test>.button{-ms-flex-preferred-size:260px;flex-basis:260px}.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test>label{margin:0}.wpmud .dev-overlay.dismiss-report .box{width:400px;margin-left:-250px}.wpmud .dev-overlay.dismiss-report .title{margin-bottom:30px}.wpmud .dev-overlay.dismiss-report .title h3{font-size:15px;text-transform:none}.wpmud .dev-overlay.dismiss-report .wphb-dialog-content>p{color:#888;font-size:13px;line-height:22px}.wpmud .dev-overlay.dismiss-report .wphb-dialog-footer{border:none}.wpmud .wphb-advanced-minification-modal .box,.wpmud .wphb-basic-minification-modal .box,.wpmud .wphb-database-cleanup-modal .box{width:400px!important;margin-left:-200px!important;padding:40px 0 30px!important}.wpmud .wphb-advanced-minification-modal .title,.wpmud .wphb-basic-minification-modal .title,.wpmud .wphb-database-cleanup-modal .title{display:none}.wpmud .wphb-advanced-minification-modal h1,.wpmud .wphb-basic-minification-modal h1,.wpmud .wphb-database-cleanup-modal h1{color:#333;font-size:22px;font-weight:700;line-height:30px;text-transform:none}.wpmud .wphb-advanced-minification-modal p,.wpmud .wphb-basic-minification-modal p,.wpmud .wphb-database-cleanup-modal p{color:#666;font-size:13px;line-height:22px;margin:0 30px;text-align:center}.wpmud .wphb-advanced-minification-modal img,.wpmud .wphb-basic-minification-modal img{margin-left:0}.wpmud .wrap-wp-hummingbird .notice{margin:15px 0 0;-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10;width:100%}.wpmud .wrap-wp-hummingbird>.wphb-notice:not(.notice){width:600px;-webkit-box-shadow:0 5px 25px 0 rgba(0,0,0,.15);box-shadow:0 5px 25px 0 rgba(0,0,0,.15);border-radius:0 0 5px 5px;padding:10px 30px;position:absolute!important;z-index:100;left:50%;margin-left:-300px;top:0}.wpmud .wphb-notice:not(.notice){border-radius:5px;color:#333;font-family:Roboto,Arial,sans-serif;font-size:15px;font-weight:400;line-height:18px;padding:15px 30px;position:relative;width:100%}.wpmud .wrap-wp-hummingbird>.wphb-notice.wphb-dash-settings-updated{position:fixed!important;top:30px;margin-left:-210px}.wpmud .wphb-notice.notice p{font-size:14px;line-height:1.5;margin:10px 0}.wpmud .wphb-notice p{color:#333}.wpmud .wphb-notice:not(.notice) p,.wpmud .wphb-notice:not(.notice) span,.wpmud .wphb-notice strong,.wpmud .wphb-notice ul{margin:0 0 10px -30px;padding:0 0 0 30px}.wpmud .wphb-notice:not(.notice) p:last-of-type{margin:0}.wpmud .wphb-notice .wphb-icon,.wpmud .wphb-notice .wphb-icon .wdv-icon{font-size:22px;height:22px;line-height:22px;width:22px}.wpmud .wphb-notice.can-close .close{cursor:pointer;color:#333;font-size:12px;font-weight:700;line-height:36px;margin-left:0;opacity:.5;text-transform:uppercase}.wpmud .wphb-block-entry-third span.status-ok:before,.wpmud .wphb-notice-blue-info p:first-child:before,.wpmud .wphb-notice-blue p:first-child:before,.wpmud .wphb-notice-error.can-close p:before,.wpmud .wphb-notice-error p:first-child:before,.wpmud .wphb-notice-grey-info p:before,.wpmud .wphb-notice-grey p:before,.wpmud .wphb-notice-success.can-close p:before,.wpmud .wphb-notice-success p:first-child:before,.wpmud .wphb-notice-warning p:first-child:before,.wpmud span.dash-cloudflare-connected-status:before{font-family:Hummingbird,Arial,sans-serif;font-size:20px;vertical-align:middle;line-height:20px;top:-2px;position:relative;margin-left:-30px;margin-right:10px}.wpmud .wphb-notice-success{background-color:#d1f1ea}.wpmud .wphb-notice-error{background-color:#ffe5e9}.wpmud .wphb-notice-warning{background-color:#fff5d5;color:#333}.wpmud .wphb-notice-blue,.wpmud .wphb-notice-blue-info{background-color:#e1f6ff;margin-top:30px}.wpmud .wphb-notice-grey,.wpmud .wphb-notice-grey-info{background-color:#f2f2f2;margin-top:10px}.wpmud .cloudflare-step .wphb-notice-blue{margin-top:0}.wpmud .wphb-block-entry-third span.status-ok:before,.wpmud .wphb-notice-success p:before{content:"\E903";color:#1abc9c}.wpmud .wphb-block-entry-third span.status-ok:before{margin-right:0;line-height:20px}.wpmud .wphb-notice-error p:before{content:"\E904";color:#ff7f83}.wpmud .wphb-notice-warning p:before{content:"\E902";color:#fecf2f;font-size:18px;line-height:18px}.wpmud .wphb-notice-blue p:before{content:"\E903";color:#17a8e3}.wpmud .wphb-notice-blue-info p:before{content:"\E902";color:#17a8e3}.wpmud .wphb-notice-grey-info p:before,.wpmud .wphb-notice-grey p:before{content:"\E902";color:#888}.wpmud .dev-overlay .wphb-notice-warning p{font-size:14px;line-height:22px}.wpmud .wphb-heading-status-green{color:#1abc9c}.wpmud .wphb-heading-status{font-family:Roboto Condensed,Roboto,Arial,sans-serif;font-size:30px;margin-top:0}@media only screen and (max-width:783px){.wpmud .wrap-wp-hummingbird>.wphb-notice{width:85%}}@media only screen and (max-width:600px){.wpmud .wrap-wp-hummingbird>.wphb-notice{width:100%;top:46px;margin-left:-251px}}@media only screen and (max-width:480px){.wpmud .wphb-notice:not(.notice){padding:15px 20px}}.wphb-pills{display:inline-block;background-color:#ffd000;color:#333;border-radius:15px;width:39px;height:26px;font-size:12px;line-height:26px;text-align:center;font-weight:500}.wpmud .box-title .wphb-pills{margin:16px 0 0 10px}.wphb-pills.grey{background-color:#f2f2f2;color:#666}.wphb-pills.red{background-color:#ff6d6d;color:#fff}.wphb-pills.green{background-color:#1abc9c;color:#fff}.wphb-pills.with-arrow:after{border:8px solid transparent;content:"";height:0;pointer-events:none;position:absolute;width:0;z-index:1}.wphb-pills.with-arrow.right:after{border-left-color:#19b4cf;left:50%;margin-top:-8px;top:50%}.wphb-pills.with-arrow.left:after{border-right-color:#19b4cf;right:100%;margin-top:-8px;top:50%}.wphb-pills.with-arrow.right.grey:after{border-left-color:#f2f2f2}.wphb-pills.with-arrow.left.grey:after{border-right-color:#f2f2f2}.wphb-pills-group{border-collapse:collapse;border-spacing:0;font-size:0;display:inline-block;position:relative}.wphb-pills-group.stacked .wphb-pills{font-size:10px;line-height:12px;height:12px;text-align:left;max-width:69px;color:#888;display:block;background-color:transparent}.wphb-pills-group.stacked .wphb-pills:last-child{color:#1abc9c;background-color:transparent}.wphb-pills-group.stacked .dev-icon.dev-icon-caret_down{color:#1abc9c;margin-left:7px}.wphb-pills-group .wphb-pills{border-radius:0;width:80px;line-height:30px;height:30px;margin:0}.wphb-pills-group .wphb-pills:first-child{border-radius:5px 0 0 5px!important}.wphb-pills-group .wphb-pills:last-child{background-color:#17a8e3;color:#fff;border-radius:0 5px 5px 0!important}.wpmud .dev-list-stats .wphb-pills-group{font-size:0;line-height:1em}@media only screen and (max-width:600px){.wpmud .dev-box .box-title .wphb-pills{margin:4px 0 0 10px}.wphb-pills{margin:0 0 0 10px}.wphb-pills-group .wphb-pills:first-child{border-radius:5px 5px 0 0!important}.wphb-pills-group .wphb-pills:last-child{border-radius:0 0 5px 5px!important}}@media only screen and (max-width:480px){.wphb-pills-group{border-collapse:inherit;border-spacing:inherit}.wphb-pills.with-arrow.left:after,.wphb-pills.with-arrow.right:after{border-top-color:#19b4cf;margin-top:0;margin-left:-8px;top:50%}.wphb-pills.with-arrow.right:after{border-left-color:transparent;left:50%}.wphb-pills.with-arrow.left:after{border-right-color:transparent;right:50%}.wphb-pills.with-arrow.right.grey:after{border-top-color:#eee;border-left-color:transparent}.wphb-pills.with-arrow.left.grey:after{border-top-color:#eee;border-right-color:transparent}}.wpmud .wphb-border-frame{border:1px solid #e6e6e6;border-radius:5px;margin:10px 0 0!important}.wpmud .wphb-border-frame .table-header,.wpmud .wphb-border-frame .table-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:15px 80px 15px 30px}.wpmud .wphb-border-frame .table-header{color:#333;font-size:13px;font-weight:700;border-bottom:1px solid #e6e6e6}.wpmud .wphb-border-frame .table-row{border-bottom:1px solid #e6e6e6}.wpmud .wphb-border-frame .table-row:last-child{border-bottom:0}.wpmud .wphb-border-frame .list-table>thead>tr>th{color:#333;font-size:13px;padding:8px 0}.wpmud .wphb-border-frame .list-table>thead>tr>th:first-child{padding:27px 30px}.wpmud .wphb-border-frame .list-table>tbody>tr>td:first-child{padding-left:30px}@media only screen and (max-width:783px){.wpmud .wphb-border-frame{border:0}}@media only screen and (max-width:480px){.wpmud .wphb-border-frame .table-header,.wpmud .wphb-border-frame .table-row{padding:15px 0}}.wpmud .wphb-disabled-overlay{position:absolute;top:0;left:0;width:100%;height:100%;z-index:10;background-color:hsla(0,0%,95%,.5)}.wpmud .settings-form span.desc,.wpmud .settings-form span.sub{display:block;margin:10px 0 0;font-size:13px;color:#888;line-height:22px}.wpmud .settings-form ol>li,.wpmud .settings-form span.sub{font-size:13px;color:#888;line-height:22px;margin:4px 0 0}.wpmud .settings-form span.dash-form-title,.wpmud .settings-form span.sub{display:block;font-size:13px;color:#888;line-height:22px;margin:10px 0 0}.wpmud .sui-box-settings-row .sui-box-settings-col-2 span.sub{margin-left:49px}.wpmud .settings-form ol{margin-left:15px}.wpmud .sui-box-settings-row textarea{height:180px}.wpmud .box-advanced-general textarea,.wpmud .box-minification-tools textarea{margin-top:0}.wpmud .box-minification-tools textarea{height:400px;max-width:100%;margin-bottom:0}.wpmud .settings-form span.dash-form-title{margin-bottom:15px;font-weight:500}.wpmud .wphb-dash-table-row span.sub{margin:0}.wpmud .settings-form .col-two-third>label,.wpmud .settings-form.dash-form>label{display:inline-block;padding:2px 10px 0;color:#666;line-height:30px;margin:0}.wpmud .settings-form .wphb-border-frame label{margin-top:25px;padding:0;color:#888;font-size:13px}.wpmud .settings-form .wphb-border-frame small{display:block;font-size:13px;color:#888;line-height:22px}.wpmud .settings-form.disabled{background-color:hsla(0,0%,95%,.5)!important}.wpmud .settings-form.disabled>*{opacity:.5}.wpmud .settings-form input[type=radio]{-webkit-box-shadow:inset 0 1px 2px transparent;box-shadow:inset 0 1px 2px transparent;border:1px solid #e6e6e6;background-color:#f8f8f8}.wpmud .settings-form input[type=radio]:checked{border:1px solid #17a8e3;background-color:#17a8e3}.wpmud .settings-form input[type=radio]:checked:before{width:8px;height:8px;margin:3px;background-color:#fff}@media only screen and (max-width:480px){.wpmud .settings-form input[type=radio]:checked:before{margin:5px}}.wpmud .settings-form input[type=radio]:checked+label{color:#333}.wpmud .settings-form input[type=radio]+label{display:inline-block;margin-top:0;font-size:15px}@media only screen and (max-width:480px){.wpmud .settings-form input[type=radio]{height:20px;width:20px}}.wpmud div[class^=box-dashboard-] .sui-box-title:before{font-family:Hummingbird,Arial,sans-serif;color:#333;float:left;font-size:20px;margin-right:10px;line-height:30px}.wpmud div[class^=box-dashboard-performance] .sui-box-title:before{content:"\E90C"}.wpmud div[class^=box-dashboard-minification] .sui-box-title:before{content:"\E90B"}.wpmud div[class^=box-dashboard-browser] .sui-box-title:before{content:"\E905"}.wpmud div[class^=box-dashboard-gzip] .sui-box-title:before{content:"\E907"}.wpmud div[class^=box-dashboard-uptime] .sui-box-title:before{content:"\E900"}.wpmud div[class^=box-dashboard-smush] .sui-box-title:before{content:"\E90F"}.wpmud div[class^=box-dashboard-cloudflare] .sui-box-title:before{content:"\E906"}.wpmud div[class^=box-dashboard-reports] .sui-box-title:before{content:"\E90D"}.wpmud div[class^=box-dashboard-caching-gravatar] .sui-box-title:before{content:"\E913"}.wpmud div[class^=box-dashboard-caching-page] .sui-box-title:before{content:"\E914"}.wpmud div[class^=box-dashboard-advanced-tools] .sui-box-title:before{content:"Z"}.wpmud div[class^=box-dashboard-] .sui-box-footer .sui-button i{margin-right:5px}.wpmud .box-dashboard-welcome.sui-summary{background-image:url(../image/hb-graphic-dash-top@2x.png)}.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership,.wpmud .box-dashboard-browser-caching-module .sui-box-body,.wpmud .box-dashboard-reports-no-membership,.wpmud .box-dashboard-smush-no-membership .sui-box-body,.wpmud .box-dashboard-uptime-no-membership,.wpmud .box-reporting-summary .wphb-reporting-no-membership{background:#fff no-repeat 30px 100%;padding-bottom:30px!important}.wpmud .box-dashboard-reports-no-membership .sui-box-body,.wpmud .box-dashboard-uptime-no-membership .sui-box-body{padding:30px 30px 0!important}.wpmud .box-dashboard-reports-no-membership{background-image:url(../image/hb-graphic-upsell-reports.png)}.wpmud .box-dashboard-uptime-no-membership{background-image:url(../image/hb-graphic-upsell-uptime.png)}.wpmud .box-dashboard-smush-no-membership .sui-box-body{background-image:url(../image/smush-share-widget.png)}.wpmud .box-dashboard-browser-caching-module .sui-box-body{background-image:url(../image/graphic-hb-cf-sell@2x.png);background-size:107px 148px}.wpmud .box-reporting-summary .wphb-reporting-no-membership{background-image:url(../image/hummingbird-upsell-minify.png);background-size:118px 126px}.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership{background-image:url(../image/hb-graphic-db-upsell@1x.png);background-size:100px 126px}.wpmud .box-dashboard-browser-caching-module .sui-box-body.no-background-image{background-image:none}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.wpmud .box-dashboard-reports-no-membership,.wpmud .box-dashboard-smush-no-membership .sui-box-body,.wpmud .box-dashboard-uptime-no-membership{background-size:107px 148px}.wpmud .box-dashboard-reports-no-membership{background-image:url(../image/hb-graphic-upsell-reports@2x.png)}.wpmud .box-dashboard-uptime-no-membership{background-image:url(../image/hb-graphic-upsell-uptime@2x.png)}.wpmud .box-dashboard-smush-no-membership .sui-box-body{background-image:url(../image/smush-share-widget@2x.png)}.wpmud .box-reporting-summary .wphb-reporting-no-membership{background-image:url(../image/hummingbird-upsell-minify@2x.png)}.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership{background-image:url(../image/hb-graphic-db-upsell@2x.png)}}.wpmud .wphb-dash-table-header{color:#333;font-size:13px;font-weight:700;line-height:30px;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:783px){.wpmud .box-dashboard-performance-module .sui-accordion.sui-table th{padding:0 15px 0 20px}}.wpmud .box-dashboard-performance-module .sui-accordion th{color:#333;font-size:13px;font-weight:700;line-height:30px;padding-top:0;padding-bottom:0}.wpmud .box-dashboard-performance-module .sui-accordion .sui-accordion-item:hover{cursor:default;background-color:transparent}@media (max-width:783px){.wpmud .box-dashboard-performance-module .sui-accordion .sui-accordion-item .sui-button{margin-right:20px}}.wpmud .box-dashboard-performance-module .sui-accordion td.sui-accordion-item-title{font-size:13px;color:#333;font-weight:500;line-height:16px}.wpmud .box-dashboard-performance-module .sui-accordion td.sui-accordion-item-title i{font-size:16px}.wpmud .box-dashboard-performance-module .sui-accordion:after{margin-bottom:0}.wpmud .wphb-border-frame .wphb-caching-summary-item-type,.wpmud .wphb-border-frame .wphb-gzip-summary-item-type,.wpmud .wphb-dash-table-row,.wpmud .wphb-dash-table-row>div:first-child{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.wpmud .wphb-dash-table-row{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;height:60px;border-top:1px solid #e6e6e6}.wpmud .wphb-dash-table-row:last-child{margin-bottom:-10px}.wpmud .wphb-dash-table-header>span:first-child,.wpmud .wphb-dash-table-row>div:first-child{-ms-flex-preferred-size:50%!important;flex-basis:50%!important;text-align:left}.wpmud .wphb-dash-table-row>div:first-child{font-size:13px;color:#333;font-weight:500;line-height:16px}.wpmud .wphb-dash-table-header>span,.wpmud .wphb-dash-table-row>div{text-align:center}.wpmud .wphb-dash-table-header>span:last-child,.wpmud .wphb-dash-table-row>div:last-child{text-align:right}.wpmud .wphb-dash-table.two-columns>.wphb-dash-table-header>span,.wpmud .wphb-dash-table.two-columns>.wphb-dash-table-row>div{-ms-flex-preferred-size:50%;flex-basis:50%}.wpmud .wphb-dash-table.three-columns>.wphb-dash-table-header>span,.wpmud .wphb-dash-table.three-columns>.wphb-dash-table-row>div{-ms-flex-preferred-size:25%;flex-basis:25%}.wpmud .sui-box .status-text{color:#888;font-size:13px;line-height:22px;margin-top:5px}#wphb-box-dashboard-cloudflare .wphb-block-entry .wphb-block-entry-content{padding-top:0}.wpmud .wphb-dashboard-caching-cloudflare-box p{margin-top:30px;margin-bottom:20px}.wpmud #wphb-box-dashboard-cloudflare .cloudflare-step form label{text-align:left;font-weight:400;padding-left:0;padding-right:0}.wpmud span.dash-cloudflare-connected-status:before{color:#17a8e3;content:"\E903";font-size:16px;margin-right:8px}.wpmud .box-dashboard-minification-module .wphb-dash-table-row>div:last-child,.wpmud .box-dashboard-uptime .wphb-dash-table-row>div:last-child,.wpmud .box-dashboard-welcome .dev-list>li:last-child .list-detail{font-size:18px;font-family:Roboto Condensed,Roboto,Arial,sans-serif;color:#666}.wpmud .box-dashboard-minification-module .wphb-pills{font-weight:700}.wpmud .wphb-cf-notice p,.wpmud .wphb-upsell-free-message p{position:relative;border-radius:4px;background-color:#e1f6ff;padding:20px 30px;margin-left:-140px;color:#333;font-size:13px;line-height:22px}.wpmud .wphb-upsell-free-message p:after{position:absolute;top:43%;left:0;margin-left:-7px;content:"";width:0;height:0;border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid #e1f6ff}.wpmud .wphb-cf-notice a,.wpmud .wphb-upsell-free-message a{color:#333;text-decoration:underline;font-weight:500}.wpmud .box-dashboard-browser-caching-module .content .wphb-notice,.wpmud .box-dashboard-caching-gravatar-module .wphb-notice,.wpmud .box-dashboard-caching-page-module .content .wphb-notice,.wpmud .box-dashboard-gzip-module .content .wphb-notice,.wpmud .box-dashboard-smush-no-membership .content .wphb-notice,.wpmud .box-dashboard-smush .content .wphb-notice{margin-top:20px!important}.wpmud .box-dashboard-smush-no-membership .content-box-two-cols-image-left .wphb-block-entry-content{margin-top:45px}.wpmud .wrap-wp-hummingbird .report-status{background-color:#f8f8f8;height:140px;width:100%;position:relative;border-radius:7px;margin-bottom:10px;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;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.wpmud .wrap-wp-hummingbird .report-status:hover{background-color:#f2f2f2;cursor:pointer}.wpmud .wrap-wp-hummingbird .report-status i{color:#666;font-size:24px}.wpmud .wrap-wp-hummingbird .report-status strong{color:#666;margin-top:10px;line-height:20px}.wpmud .wrap-wp-hummingbird .report-status .corner,.wpmud .wrap-wp-hummingbird .report-status strong{font-family:Roboto Condensed,Roboto,Arial,sans-serif;font-weight:700;font-size:13px;text-transform:uppercase}.wpmud .wrap-wp-hummingbird .report-status .corner{position:absolute;top:0;right:0;color:#1abc9c;padding-right:6px;padding-top:10px}.wpmud .wrap-wp-hummingbird .report-status.with-corner.grey .corner i{color:#888;font-size:16px;margin-right:4px}.wpmud .wrap-wp-hummingbird .report-status.with-corner:before{content:"";position:absolute;top:0;right:0;border:solid transparent;border-top-right-radius:7px;border-width:30px;border-right-color:#d1f1ea;border-top-color:#d1f1ea}.wpmud .wrap-wp-hummingbird .report-status.with-corner.grey:before{border-right-color:#e6e6e6;border-top-color:#e6e6e6}.wpmud .box-dashboard-advanced-tools .wphb-dash-table span{color:#888;font-size:13px;vertical-align:top}.wpmud .box-dashboard-advanced-tools .wphb-dash-table span.no-issues:before{font-family:Hummingbird,Arial,sans-serif;font-size:16px;margin-right:5px;color:#1abc9c;content:"\E903"}.wpmud #wphb-cross-sell-footer>div{width:100%;text-align:center;border-bottom:1px solid #e6e6e6;line-height:.1em;margin:10px 0 40px}.wpmud #wphb-cross-sell-footer>div>span{color:#9a9a9a;background-color:#f4f4f4;padding:0 30px;font-size:16px;top:8px}.wpmud #wphb-cross-sell-footer h3,.wpmud .wphb-cross-sell-bottom h3{color:#333;font-size:22px;font-weight:700;line-height:30px;text-transform:none}.wpmud .wphb-cross-sell-modules .wphb-content{text-align:center;border-radius:0 0 5px 5px;background-color:#fff;-webkit-box-shadow:0 2px 0 0 #eaeaea;box-shadow:0 2px 0 0 #eaeaea;padding:30px}.wpmud .wphb-cross-sell-modules .wphb-content h3{color:#333;font-size:18px;font-weight:700;line-height:30px;text-transform:none;margin-top:0;min-height:60px}.wpmud .wphb-cross-sell-modules .wphb-content p{color:#888;font-size:13px;line-height:20px;margin-bottom:30px}.wpmud .wphb-cross-crawl,.wpmud .wphb-cross-defender,.wpmud .wphb-cross-smush{min-height:150px;border-radius:5px 5px 0 0}.wpmud .wphb-cross-smush{background:url(../image/plugins-smush.jpg) 50%;background-size:cover}.wpmud .wphb-cross-defender{background:url(../image/plugins-defender.jpg) 50%;background-size:cover}.wpmud .wphb-cross-crawl{background:url(../image/plugins-crawl.jpg) 50%;background-size:cover}.wpmud .wphb-cross-crawl>span,.wpmud .wphb-cross-defender>span,.wpmud .wphb-cross-smush>span{width:56px;height:56px;display:block;border:3px solid #fff;border-radius:50%;position:relative;top:80px;left:15px;-webkit-box-shadow:0 1px 10px 0 rgba(0,0,0,.25);box-shadow:0 1px 10px 0 rgba(0,0,0,.25)}.wpmud .wphb-cross-smush>span{background:url(../image/plugins-smush-icon.png) no-repeat 50%;background-size:50px 50px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.wpmud .wphb-cross-smush>span{background-image:url(../image/plugins-smush-icon@2x.png)}}.wpmud .wphb-cross-defender>span{background:url(../image/plugins-defender-icon.png) no-repeat 50%;background-size:50px 50px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.wpmud .wphb-cross-defender>span{background-image:url(../image/plugins-defender-icon@2x.png)}}.wpmud .wphb-cross-crawl>span{background:url(../image/plugins-crawl-icon.png) no-repeat 50%;background-size:50px 50px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.wpmud .wphb-cross-crawl>span{background-image:url(../image/plugins-crawl-icon@2x.png)}}.wpmud .wphb-cross-sell-modules a:not(.disabled):after{font-family:Hummingbird,Arial,sans-serif;content:"\AF";margin-left:5px}.wpmud .wphb-cross-sell-modules .col-third:nth-child(3) a.disabled{border-radius:13px!important;background-color:#f2f2f2}.wpmud .wphb-cross-sell-bottom{text-align:center;margin-top:50px}.wpmud .wphb-cross-sell-bottom p{max-width:500px;margin:20px auto 30px}.wpmud .wphb-cross-sell-bottom img{margin:30px auto 0}@media screen and (min-width:1550px){.wpmud .box-dashboard-reports-no-membership .wphb-block-entry .row,.wpmud .box-dashboard-smush-no-membership .buttons,.wpmud .box-dashboard-uptime-no-membership .content p{padding-bottom:20px}}@media only screen and (min-width:1545px){.wpmud .wphb-cross-sell-modules>.col-third h3{height:auto}}@media only screen and (max-width:1200px){.wpmud .box-dashboard-smush-no-membership .content-box-two-cols-image-left .wphb-block-entry-content{margin-top:65px}}@media only screen and (max-width:1100px){.wpmud .box-dashboard-reports-no-membership .wphb-block-entry-image,.wpmud .box-dashboard-uptime-no-membership .wphb-block-entry-image{display:none}.wpmud .wphb-cf-notice p,.wpmud .wphb-upsell-free-message p{margin-left:auto;margin-top:30px}.wpmud .wphb-cf-notice p:after,.wpmud .wphb-upsell-free-message p:after{display:none}}@media only screen and (max-width:960px){.box-dashboard-browser-caching-module .box-content{background-image:none}.wpmud .row.wphb-cross-sell-modules .col-third{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;padding:0 0 30px;margin-top:0}.wpmud .wphb-cross-sell-modules .col-third:last-child{padding:0}.wpmud .wphb-cross-sell-modules div[class^=wphb-cross]{width:30%;border-radius:5px 0 0 5px;-webkit-box-shadow:0 2px 0 0 #eaeaea;box-shadow:0 2px 0 0 #eaeaea}.wpmud .wphb-cross-sell-modules div[class^=wphb-cross]>span{top:60%}.wpmud .wphb-cross-sell-modules .wphb-content{width:70%;text-align:left;border-radius:0 5px 5px 0}.wpmud .wphb-cross-sell-modules .wphb-content h3{min-height:auto;text-align:left}.wpmud .wphb-cross-sell-modules .wphb-content p{margin-bottom:10px}}@media only screen and (max-width:783px){.wpmud .box-dashboard-performance-module .box-content .with-padding{padding:30px}}@media only screen and (max-width:480px){.wpmud .box-dashboard-minification-module .wphb-pills{display:block}.wpmud .box-dashboard-performance-module .wphb-score-result-label{margin-left:3px;margin-right:5px}.wpmud .box-dashboard-performance-module .sui-accordion .sui-button-ghost{padding:5px 6px 7px!important}.wpmud .box-dashboard-performance-module .box-content .with-padding{padding:15px 20px}.wpmud .box-dashboard-performance-module .wphb-dash-table-header,.wpmud .box-dashboard-performance-module .wphb-dash-table-row{padding:0 20px}.wpmud .box-dashboard-smush .buttons{margin-top:15px}.wpmud .wphb-score.wphb-score-have-label{width:65px}.wpmud .sui-box .status-text{line-height:15px;margin-top:0;padding-left:10px;word-wrap:break-word;max-width:175px}.wpmud .wphb-cf-notice p,.wpmud .wphb-upsell-free-message p{padding:15px 20px;margin-top:15px}.wpmud .row.wphb-cross-sell-modules .col-third{display:block;padding:0 0 15px}.wpmud .wphb-cross-sell-modules .wphb-content,.wpmud .wphb-cross-sell-modules div[class^=wphb-cross]{width:100%}.wpmud .wphb-cross-sell-modules div[class^=wphb-cross]{min-height:100px;height:100px;border-radius:5px 5px 0 0;-webkit-box-shadow:none;box-shadow:none}.wpmud .wphb-cross-sell-modules .wphb-content{border-radius:0 0 5px 5px}.wpmud .wphb-cross-sell-modules .wphb-content,.wpmud .wphb-cross-sell-modules .wphb-content h3{text-align:center}.wpmud .wphb-cross-sell-modules .wphb-content p{margin-bottom:20px}.wpmud .wphb-cross-sell-modules div[class^=wphb-cross]>span{top:60px;left:calc(50% - 28px)}}.wpmud .box-performance-welcome.sui-summary{background-image:url(../image/graphic-hb-minify-summary@2x.png)}.wpmud .performance-report-table .wpdui-btn{display:inline-block;margin:10px 0 20px;text-transform:uppercase}.wpmud .performance-report-table .wpdui-btn:hover{color:#fff}.wpmud .sui-dismissed .sui-circle-score svg circle:last-child{stroke:#aaa}.wpmud .sui-accordion-item.sui-dismissed{border-left:2px solid #aaa}.wpmud .sui-button.wphb-disabled-test:last-child{margin-right:10px}.wpmud .performance-report-table a,.wpmud .performance-report-table a:hover{color:#17a8e3;overflow-wrap:break-word;word-wrap:break-word;word-break:break-all;-ms-hyphens:auto;-webkit-hyphens:auto;hyphens:auto}.wpmud .performance-report-table ol li,.wpmud .performance-report-table p{font-size:13px!important;color:#888;line-height:22px}.wpmud .performance-report-table ol>p{margin-left:-30px;margin-bottom:15px}.wpmud .performance-report-table>thead>tr>th:first-child{padding-left:30px}.wpmud .performance-report-table .wphb-performance-report-item:hover td{cursor:pointer;border-bottom:0!important}.wpmud .performance-report-table .wphb-performance-report-item-score{width:137px}.wpmud .performance-report-table .wphb-performance-report-item-type{color:#888;font-size:13px;-webkit-transition:color .3s;transition:color .3s;width:130px}.wpmud .wphb-performance-report-item-type:first-letter{text-transform:capitalize}.wpmud .performance-report-table .wphb-performance-report-item:hover .wphb-performance-report-item-type{color:#333}.wpmud .performance-report-table .wphb-performance-report-item-cta{text-align:right;width:225px}.wpmud .wphb-performance-report-item .trigger-additional-content{color:#888;cursor:pointer;display:inline-block;font-size:14px;line-height:1em;height:14px;margin:8px 30px 8px 15px;-webkit-transition:color .3s;transition:color .3s;vertical-align:middle}.wpmud .wphb-performance-report-item .trigger-additional-content .dev-icon-caret_down:before{display:inline-block;-webkit-transition:-webkit-transform .5s;transition:-webkit-transform .5s;transition:transform .5s;transition:transform .5s,-webkit-transform .5s;-webkit-transform:rotate(0);transform:rotate(0)}.wpmud .wphb-performance-report-item-opened .trigger-additional-content .dev-icon-caret_down:before{-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.wpmud .performance-report-table .wphb-performance-report-item-opened,.wpmud .wphb-table.performance-report-table .wphb-performance-report-item-additional-content:hover,.wpmud .wphb-table.performance-report-table .wphb-performance-report-item-opened:hover{background:#f8f8f8}.wpmud .performance-report-table .wphb-performance-report-item-additional-content{background:#f8f8f8;display:none}.wpmud .performance-report-table .wphb-performance-report-item-additional-content-opened{display:table-row}.wpmud .performance-report-table .wphb-performance-report-item-additional-content-opened>td{border-top:0!important}.wpmud .wphb-performance-report-item-additional-content-inner{padding:0!important}.wpmud .sui-box-performance-report-additional-content h4:first-child{margin-top:0}.wpmud .sui-box-performance-report-additional-content h4,.wpmud .sui-box-performance-report-additional-content h5{font-family:Roboto,sans-serif;color:#333;font-size:13px;text-transform:none;line-height:23px;margin:20px 0;text-align:left}.wphb-score{display:inline-block;position:relative}.wphb-score-type-circle{border-radius:100%;height:30px;width:30px}.wphb-score-type-circle.large{height:80px;width:80px}.wphb-score-type-circle .wphb-score-graph-circle{stroke:#e5e5e5;stroke-dashoffset:80;stroke-width:5px;-webkit-transition:stroke-dashoffset 1s linear;transition:stroke-dashoffset 1s linear}.wphb-score-type-circle.large .wphb-score-graph-circle{stroke-dashoffset:219.8;stroke-width:10px}.wphb-score-type-circle .wphb-score-graph-result{transform:rotate(-80deg) translateX(-27px) translateY(2.5px);-moz-transform:rotate(-80deg) translateX(-27px) translateY(2.5px);-webkit-transform:rotate(-80deg) translateX(-27px) translateY(2.5px)}.wphb-score-type-circle.large .wphb-score-graph-result{transform:rotate(-80deg) translateX(-72.5px) translateY(6.5px);-moz-transform:rotate(-80deg) translateX(-72.5px) translateY(6.5px);-webkit-transform:rotate(-80deg) translateX(-72.5px) translateY(6.5px)}.wpmud .wphb-button-label,.wpmud .wphb-performance-report-item-score,.wpmud .wphb-score-result{cursor:pointer;position:relative}.wpmud .wrap-wphb-caching .list-results,.wpmud .wrap-wphb-performance .list-results{max-height:200px;overflow-y:scroll}.wpmud .wrap-wphb-performance .recipient{margin-bottom:10px;padding:5px 10px}.wpmud .wrap-wphb-performance .recipient:hover{border-radius:4px;background-color:#f8f8f8}.wpmud .wrap-wphb-performance .add-recipient,.wpmud .wrap-wphb-performance .recipient,.wpmud .wrap-wphb-performance .recipient .name{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.wpmud .wrap-wphb-performance .recipient img{border-radius:50px;width:30px;height:30px;margin-right:10px;display:inline-block;vertical-align:middle}.wpmud .wrap-wphb-performance .recipient .name{color:#333;font-weight:500}.wpmud .wrap-wphb-performance .recipient a>i{color:#888}.wpmud .wrap-wphb-performance .recipient:hover a>i{color:#333}.wpmud .wrap-wphb-performance .add-recipient{margin-top:15px}.wpmud .wrap-wphb-performance .add-recipient>*{margin-bottom:0;border-radius:0;border:1px solid #e6e6e6;font-weight:400}.wpmud .wrap-wphb-performance .add-recipient .wdv-icon-plus{color:#fff;font-size:20px}.wpmud .wrap-wphb-performance .add-recipient>input::-webkit-input-placeholder{color:#aaa;font-weight:400}.wpmud .wrap-wphb-performance .add-recipient>input:-ms-input-placeholder,.wpmud .wrap-wphb-performance .add-recipient>input::-ms-input-placeholder{color:#aaa;font-weight:400}.wpmud .wrap-wphb-performance .add-recipient>input::placeholder{color:#aaa;font-weight:400}.wpmud .wrap-wphb-performance .add-recipient #wphb-first-name{border-radius:4px 0 0 4px;border-right:0;background-color:#f8f8f8;margin:0}.wpmud .wrap-wphb-performance .add-recipient #wphb-username-search{background-color:#f8f8f8;margin:0}.wpmud .wrap-wphb-performance .wphb-tag{border-radius:16px;font-size:13px;padding:4px 16px;color:#fff;text-transform:uppercase}.wpmud .wrap-wphb-performance .wphb-tag.tag-generic{background:#e6e6e6;color:#333}.wpmud .box-reporting-summary .settings-form.disabled{position:relative}.wpmud .box-reporting-summary .content-box-two-cols-image-left .wphb-block-entry-content,.wpmud .box-reporting-summary .wphb-block-entry-content{margin-top:0}.wpmud .list-table>tbody>tr>td.wphb-performance-report-item-type.disabled{padding-right:30px}.wpmud .sui-box-performance-report-additional-content.disable-buttons a.button,.wpmud .sui-box-performance-report-additional-content.disable-buttons a.wpdui-btn{display:none}@media only screen and (max-width:1200px){.wpmud .performance-report-table .wphb-performance-report-item-score,.wpmud .performance-report-table .wphb-performance-report-item-type{width:115px}.wpmud .performance-report-table .wphb-performance-report-item-cta{width:180px}.wpmud .box-reporting-summary .box-footer .wphb-block-entry-content{margin-top:0}}@media only screen and (max-width:1100px){.wpmud .performance-report-table .wphb-performance-report-item-type{width:105px}.wpmud .performance-report-table .wphb-performance-report-item-cta{width:165px}.wpmud .performance-report-table .wphb-performance-report-item-score{width:105px;padding-left:20px!important}}@media only screen and (max-width:783px){.wpmud .performance-report-table td,.wpmud .performance-report-table th{width:70%!important}.wpmud .wphb-performance-report-heading.wphb-performance-report-heading-type,.wpmud .wphb-performance-report-item-cta>button,.wpmud .wphb-performance-report-item-type{display:none!important}}@media only screen and (max-width:480px){.wpmud .wrap-wphb-performance .add-recipient,.wpmud .wrap-wphb-performance .recipient,.wpmud .wrap-wphb-performance .recipient .name{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap}.wpmud .wrap-wphb-performance .add-recipient #wphb-first-name,.wpmud .wrap-wphb-performance .add-recipient>button{border-radius:0!important;margin-bottom:5px;border:1px solid #e6e6e6}.wpmud .wrap-wphb-performance .add-recipient>button{margin-top:10px!important}.wpmud .performance-report-table{margin-top:0}.wpmud .wphb-performance-report-item .trigger-additional-content{margin-right:20px}.wpmud .sui-box-performance-report-additional-content{padding:15px 20px}}.wpmud .wphb-caching-error{text-align:left}.wpmud .wphb-caching-error a{text-decoration:underline}.wpmud .wrap-wphb-caching .wphb-spinner{float:none;background-size:15px 15px}.wpmud .wphb-caching-cloudflare-box>p{margin:0 0 20px}.wpmud .box-caching-enable .buttons{margin-top:-20px}.wpmud .caching-table{margin:30px 0 0}.wpmud .box-gzip-summary .list-label,.wpmud .wphb-caching-summary-heading{text-transform:none!important;color:#333;font-size:13px}.wpmud #cloudflare-how-to,.wpmud #cloudflare-how-to-title{text-align:left}.wpmud #cloudflare-how-to a{font-weight:500;text-decoration:underline;color:inherit}.wpmud #cloudflare-info{clear:both}.wpmud #cloudflare-info.wphb-notice{margin-top:30px}.wpmud .cloudflare-submit{margin-bottom:0}.wpmud #cloudflare-zone .clear{padding:0}.wpmud #cloudflare-zone label{margin-bottom:13px}.wpmud #cloudflare-zone .cloudflare-submit{margin-top:22px}.wpmud #cloudflare-steps .wphb-notice-success{margin-top:0}.wpmud .cloudflare-clear-cache-tooltip[tooltip]:after{margin-left:-137px}.wpmud .cloudflare-step{margin-top:30px}.wpmud .cloudflare-step form label input{margin-top:5px;background-color:#f8f8f8}.wpmud .cloudflare-step form label input:-moz-placeholder,.wpmud .cloudflare-step form label input:-ms-input-placeholder,.wpmud .cloudflare-step form label input::-moz-placeholder,.wpmud .cloudflare-step form label input::-webkit-input-placeholder{color:#aaa}.wpmud .cloudflare-step>p:first-child{text-align:left}.wpmud .cloudflare-spinner{display:inline-block;float:right}.wpmud #cloudflare-how-to-title,.wpmud .cloudflare-step p.cloudflare-submit{position:relative;margin-top:11px}.wpmud .cloudflare-step p.cloudflare-submit input[type=submit]{display:inline-block;margin-top:0}.wpmud #cloudflare-how-to{clear:both;margin-left:0;margin-bottom:0;list-style-position:inside}.wpmud .cloudflare-step>p{margin-bottom:30px}.wpmud .cloudflare-step p.cloudflare-submit{float:right}.wpmud .cloudflare-step hr{margin-top:20px;margin-bottom:20px}.wpmud .cloudflare-step p.cloudflare-clear-cache-text{text-align:left}.wpmud #cloudflare-how-to-title{float:left;line-height:15px;padding-top:7px;font-size:13px}.wpmud .cloudflare-step .cloudflare-data{text-align:left;margin-top:30px;margin-bottom:0}.wpmud .cloudflare-data>span{display:inline-block;margin-right:20px}.wpmud .box-caching-summary .sui-box-body{background:no-repeat 30px 100%;background-image:url(../image/graphic-hb-cf-sell@2x.png);background-size:107px 148px}.wpmud .box-caching-summary .sui-box-body.no-background-image{background-image:none}.wpmud .box-caching-settings .select-container.server-type{max-width:240px}.wpmud.wphb-notice{margin-top:30px}.wpmud .box-caching-settings .wphb-expiry-select-box label{margin-top:0}.wpmud .wphb-expiry-select-box .wphb-expiry-select{max-width:240px}@media screen and (max-width:1200px) and (min-width:783px){.wpmud #cloudflare-how-to-title{float:none;display:block;text-align:center;margin-bottom:0}.wpmud .cloudflare-step p.cloudflare-submit{float:none;position:relative}.wpmud .cloudflare-step p.cloudflare-submit .cloudflare-spinner{position:absolute;right:0;top:10px}}.wpmud .box-caching-summary .wphb-notice,.wpmud .box-gzip-summary .wphb-notice,.wpmud .wphb-server-instructions .wphb-notice{margin-bottom:30px!important}.wpmud .wphb-caching-active.wphb-notice.wphb-notice-blue{margin-bottom:0!important}.wpmud .wphb-caching-success.wphb-notice.wphb-notice-success{margin-top:30px}.wpmud .wphb-server-instructions .wphb-block-content pre{max-height:240px}.wpmud .wphb-server-instructions .wphb-notice.wphb-notice-blue p{font-size:13px;line-height:22px;color:#333}.wpmud .wphb-server-instructions .wphb-notice.wphb-notice-blue p:before{font-size:16px;line-height:16px}.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning{margin-top:30px}.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning p{font-size:13px;line-height:22px}.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning p:before{font-size:16px;line-height:16px}.wpmud .wphb-cf-detected-notice.wphb-notice.wphb-notice-grey p{font-size:13px;line-height:22px}.wpmud .wphb-cf-detected-notice.wphb-notice.wphb-notice-grey p:before{font-size:16px;line-height:16px}.wpmud .button.notice-button,.wpmud .wphb-expiry-changes .update-htaccess{margin-top:10px}.wpmud .wphb-cloudflare.wphb-notice-warning p{color:#333}.wpmud .wphb-border-frame .table-header .wphb-caching-summary-heading-type{-ms-flex-preferred-size:85px;flex-basis:85px}.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-type,.wpmud .wphb-border-frame .table-row .wphb-gzip-summary-item-type{-ms-flex-preferred-size:100px;flex-basis:100px}.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-expiry,.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-status{-ms-flex-preferred-size:80px;flex-basis:80px}.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-type{font-size:13px;font-weight:500;color:#333}.wpmud .box-caching-settings label,.wpmud .box-gzip-settings label{margin-top:15px;margin-bottom:5px;padding:0}.wpmud .box-caching-settings .wphb-border-frame>label,.wpmud .box-caching-settings label,.wpmud .box-gzip-settings .wphb-border-frame>label,.wpmud .box-gzip-settings label{color:#888;font-size:13px;font-weight:500;line-height:22px}.wpmud .wphb-caching-cloudflare-settings .wphb-expiry-select{width:85%}.wrap-wphb-caching .cloudflare-step label:first-child{margin-top:0}.wpmud .wrap-wphb-caching .tabs,.wpmud .wrap-wphb-caching .tabs .tab .content,.wpmud .wrap-wphb-caching .tabs .tab label,.wpmud .wrap-wphb-gzip .tabs,.wpmud .wrap-wphb-gzip .tabs .tab .content,.wpmud .wrap-wphb-gzip .tabs .tab label{border:0}.wpmud .wrap-wphb-caching .tabs .tab .content,.wpmud .wrap-wphb-gzip .tabs .tab .content{border-top:2px solid #e6e6e6;top:38px}.wpmud .wrap-wphb-caching .tabs .tab label,.wpmud .wrap-wphb-gzip .tabs .tab label{font-size:15px;text-transform:capitalize;color:#888;padding:0 10px;line-height:1.5em;height:40px}.wpmud .wphb-server-instructions .wphb-listing li,.wpmud .wphb-server-instructions p{color:#888;font-size:13px;line-height:22px}.wpmud .wphb-server-instructions .wphb-listing li{margin-top:0}.wpmud .wphb-server-instructions .tabs{margin:0}.wpmud .wphb-server-instructions .tabs .tab .content{padding:20px 0 0}.wpmud .wphb-server-instructions .tabs .tab>.active{color:#333;border-bottom:2px solid #333;z-index:10}.wpmud .box-page-caching .box-footer{border-top:1px solid #e6e6e6;padding:50px 30px}.wpmud .box-page-caching .sui-box-body .sui-box-settings-row:first-of-type{padding-bottom:inherit;border-bottom:1px solid #e6e6e6}.wpmud .box-page-caching h4{color:#666;font-size:15px;font-weight:500;text-align:left;text-transform:none}.wpmud .box-page-caching textarea{height:180px;max-width:490px;color:#333;border:1px solid #e6e6e6;border-radius:4px;background-color:#f8f8f8;margin-top:20px}.wpmud .box-page-caching .col-two-third .with-bottom-border{margin-bottom:30px}.wpmud .box-page-caching .wphb-dash-table .sub{width:75px}.wpmud .box-page-caching .wphb-dash-table .wphb-dash-table-row:first-child{border-top:0}.wpmud .box-page-caching .wphb-dash-table .wphb-dash-table-row:last-child{border-bottom:0}@media only screen and (max-width:783px){.wpmud .box-page-caching .sui-box-settings-col-2.wphb-deactivate-pc{padding-top:0}}.wpmud .box-caching-gravatar .wphb-notice,.wpmud .box-page-caching .wphb-notice{margin-top:20px}.wpmud .box-page-caching .sui-box-settings-row .sui-button-ghost{margin:10px 0}.wpmud .box-caching-other-settings .spinner{margin:2px 10px 0 0}.wpmud .box-caching-rss .sui-box-footer .spinner{margin:2px 10px 0}.wpmud .box-caching-rss .sui-box-settings-row input[type=text]{margin:0;display:inline-block;width:80px}.wpmud .box-caching-rss .sui-box-settings-row label{margin-left:10px;margin-top:-5px;color:#666}@media only screen and (max-width:1200px){.wpmud .wrap-wphb-caching .row{display:block;table-layout:inherit}}@media only screen and (max-width:600px){.wpmud .box-caching-summary .box-content>.box-content{background-image:none}}@media only screen and (max-width:480px){.wpmud .wphb-caching-success.wphb-notice.wphb-notice-success{margin-top:10px}.wpmud .box-caching-summary .wphb-notice,.wpmud .box-gzip-summary .wphb-notice,.wpmud .wphb-server-instructions .wphb-notice{margin-bottom:10px!important}.wpmud .box-caching-summary .content-box-two-cols-image-left .wphb-block-entry-content{margin:0}}.wpmud #wphb-code-snippet{margin-top:20px;margin-bottom:20px}.wpmud .wphb-gzip-error{text-align:left}.wpmud .wphb-gzip-error p:first-child{margin:0 0 10px}.wpmud #configure-gzip-link,.wpmud .wphb-gzip-error a{text-decoration:underline}.wpmud .box-gzip-settings .inline-label{color:#888!important;font-size:13px;font-weight:500;padding-left:0!important}.wpmud .box-gzip-settings .select-container{max-width:240px}.wpmud .box-gzip-settings .wphb-notice-blue{margin-top:0;margin-bottom:30px;padding:15px 20px}.wpmud .box-gzip-settings .wphb-notice-blue p{font-size:13px}.wpmud .box-gzip-settings .wphb-notice-blue p:before{font-size:16px}.wpmud .box-gzip-settings .wphb-notice.htaccess-warning{margin-top:30px;margin-bottom:0!important;padding:15px 20px}.wpmud .box-gzip-settings .wphb-notice.htaccess-warning a{text-decoration:underline}@media screen and (min-width:960px){.wpmud .wphb-border-frame.two-columns .table-header,.wpmud .wphb-border-frame.two-columns .table-row{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wpmud .wphb-border-frame.two-columns .table-header>div:first-child,.wpmud .wphb-border-frame.two-columns .table-row>div:first-child{-ms-flex-preferred-size:50%;flex-basis:50%}}.wpmud .checkbox-group{border-radius:41px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;height:40px}.wpmud .sui-dialog .checkbox-group{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.wpmud .checkbox-group input[type=checkbox]{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;display:block}.wpmud .checkbox-group input[type=checkbox]+label{background-color:#fafafa;border-radius:4px;display:-webkit-box;display:-ms-flexbox;display:flex;padding:0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;text-align:center;width:107px;position:relative;-webkit-transition-property:background,color;transition-property:background,color;-webkit-transition-duration:.3s;transition-duration:.3s;color:transparent!important;margin-bottom:0;margin-left:5px}.wpmud .wphb-minification-advanced-group input[type=checkbox]+label{width:50px}.wpmud .sui-dialog .checkbox-group{width:100%;height:52px}.wpmud .sui-dialog .checkbox-group input[type=checkbox]+label{padding:10px;width:70px;height:50px}.wpmud .sui-dialog .wphb-progress-state{text-align:left;margin-top:0}.wpmud .checkbox-group input[type=checkbox]+label.toggle-label-background,.wpmud .checkbox-group input[type=checkbox]:checked+label{-webkit-box-shadow:none;box-shadow:none;background-color:#effaff}.wpmud .checkbox-group input[type=checkbox]+label>i,.wpmud .checkbox-group input[type=checkbox]+label>span:not(.toggle){color:#888;padding:0;font-size:12px}.wpmud .checkbox-group>span{color:#aaa;font-size:12px;line-height:40px}.wpmud .checkbox-group input[type=checkbox]+label>[class^=hb-]:before{font-size:14px;vertical-align:-2px;margin-right:8px}.wpmud .sui-dialog .checkbox-group input[type=checkbox]+label>[class^=hb-]:before,.wpmud .wphb-minification-advanced-group input[type=checkbox]+label>[class^=hb-]:before,.wpmud .wphb-modal input[type=checkbox]+label>[class^=hb-]:before{margin-right:0}.wpmud .checkbox-group input[type=checkbox]+label.toggle-label-background>span:not(.toggle),.wpmud .checkbox-group input[type=checkbox]:checked+label>i,.wpmud .checkbox-group input[type=checkbox]:checked+label>span:not(.toggle){color:#17a8e3}.wpmud .checkbox-group input[type=checkbox]:disabled+label>i,.wpmud .checkbox-group input[type=checkbox]:disabled+label>span:not(.toggle){color:#ddd}.wpmud .checkbox-group input[type=checkbox]:disabled+label{background-color:#fff}.wpmud .checkbox-group input[type=checkbox]+label>[tooltip]{position:absolute;left:0;top:0;bottom:0;right:0;z-index:9}.wpmud .checkbox-group label [class^=hb-]{display:block;padding:10px 0 4px}.wpmud .wrap-wphb-minification>.row>.wphb-notice{margin-bottom:30px}.wpmud .wphb-minification-files{background-color:#f8f8f8;padding-bottom:1px}.wpmud .box-minification-enqueued-files .box-title .buttons>div{display:inline-block;vertical-align:top}.wpmud .box-minification-enqueued-files .box-title .buttons{margin-right:45px!important}.wpmud .box-minification-enqueued-files .box-title .wphb-switch-button{border-left:1px solid #e6e6e6;display:block;height:60px;left:100%;margin-left:-30px;position:relative;width:60px}.wpmud .box-minification-enqueued-files .sui-box-header .wphb-heading-divider{border-left:1px solid #e6e6e6;height:62px;margin-top:-21px;margin-bottom:-22px;margin-left:10px}.wpmud .box-minification-enqueued-files .sui-box-header .sui-button:last-child{margin-right:10px}.wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button{height:60px;width:60px;display:block;margin:-15px -30px -15px 0}.wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button>i{color:#aaa;font-size:20px;margin-left:20px;position:absolute;top:18px}.wpmud .box-minification-enqueued-files .box-title-advanced .wphb-switch-button>i{color:#17a8e3}.wpmud .wphb-minification-files-header{background-color:#fff;border-bottom:1px solid #e6e6e6;margin-bottom:30px;padding:30px}.wpmud .wphb-border-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.wpmud .wphb-minification-files-advanced .wphb-border-row,.wpmud .wphb-minification-files-advanced .wphb-minification-row-details,.wpmud .wphb-minification-files-basic .wphb-border-row{padding:10px 30px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.wpmud .wphb-minification-files-advanced .wphb-minification-row-details{padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.wpmud .wphb-minification-files-basic .wphb-border-row{border-bottom:1px solid #e6e6e6}.wpmud .wphb-minification-files-advanced .wphb-border-row{padding:10px 30px 10px 20px;min-height:70px;background-color:#fff;border-radius:4px;-webkit-box-shadow:0 2px 7px 0 rgba(0,0,0,.05);box-shadow:0 2px 7px 0 rgba(0,0,0,.05);margin-bottom:10px}.wpmud .wphb-minification-files-advanced .wphb-border-row:last-child,.wpmud .wphb-minification-files-basic .wphb-border-row:last-child{border-bottom:0}.wpmud .wphb-minification-files-table.wphb-minification-files-advanced,.wpmud .wphb-minification-files-table.wphb-minification-files-basic{background-color:#f8f8f8;margin:0 30px 30px}.wpmud .wphb-minification-files-table.wphb-minification-files-basic{background-color:#fff;border-radius:4px;-webkit-box-shadow:0 2px 7px 0 rgba(0,0,0,.05);box-shadow:0 2px 7px 0 rgba(0,0,0,.05)}.wpmud .wphb-minification-files-select h3,.wpmud .wphb-minification-files>h3{font-size:13px;font-weight:700;line-height:22px;color:#888;text-align:left;text-transform:none;margin:10px 30px}.wpmud .wphb-minification-files .wphb-notice{margin:0 30px 30px;width:auto}.wpmud .wphb-minification-changed-notice a.wphb-notice-dismiss{opacity:.5;color:#333;font-size:12px;font-weight:700;margin-left:33px;text-transform:uppercase}.wpmud .wphb-minification-file-info{float:left;line-height:18px;overflow:hidden;position:relative;white-space:nowrap;width:300px}.wpmud .wphb-border-row:not(.disabled) .wphb-minification-file-info:after{background:-webkit-gradient(linear,left top,right top,from(hsla(0,0%,100%,0)),to(#fff));background:linear-gradient(90deg,hsla(0,0%,100%,0) 0,#fff);content:"";height:100%;pointer-events:none;position:absolute;right:0;top:0;width:40px}.wpmud .wphb-minification-file-info>*{color:#aaa;font-size:10px;font-weight:500;line-height:10px}.wpmud .wphb-minification-file-info>span:first-child{color:#666;display:block;font-size:13px;line-height:13px}.wpmud .wphb-minification-file-info>a{max-width:400px;overflow:hidden}.wpmud .wphb-minification-file-info>.original-size.crossed-out{text-decoration:line-through}.wpmud .wphb-minification-file-info>.compressed-size,.wpmud .wphb-minification-file-info>.sui-icon-chevron-down:before{color:#1abc9c}.wpmud .wphb-minification-file-info>.sui-icon-chevron-down:before{font-size:8px;position:relative;top:0}.wpmud .wphb-minification-filter-buttons{padding:0 30px 20px;display:-webkit-box;display:-ms-flexbox;display:flex}.wpmud .wphb-minification-filter-buttons .sui-actions-left{margin-left:0}.wpmud .wphb-minification-files-select{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center;margin:0 50px}.wpmud .wphb-minification-files-select .sui-checkbox{margin-right:5px}.wpmud .wphb-minification-files-select .sui-checkbox span{margin-top:-4px}.wpmud .wphb-minification-files-select h3{margin:5px 5px 7px}.wpmud .wphb-minification-bulk-file-selector{float:left}.wpmud .wphb-minification-file-select{float:left;line-height:30px;margin-right:10px;margin-top:4px}.wpmud .wphb-minification-exclude{margin-left:30px}.wpmud .wphb-minification-filter{background-color:#fff;padding:0 30px;margin:10px 30px}.wpmud .wphb-minification-filter>div{height:78px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.wpmud .wphb-minification-filter>div>input{margin:0 10px!important;width:40%!important;background-color:#f8f8f8!important}.wpmud .wphb-minification-filter>div .wphb-block-title{color:#333;font:500 13px/30px Roboto,Arial,sans-serif;text-transform:none;margin-right:21px}.wpmud .wphb-minification-filter .select-list-container{min-width:240px!important}.wpmud .wphb-border-row.disabled .checkbox-group,.wpmud .wphb-border-row.out-of-filter{display:none}.wpmud .box-content.disabled,.wpmud .wphb-border-row.disabled{background-color:#f2f2f2}.wpmud .wphb-minification-files-advanced .wphb-border-row.disabled{-webkit-box-shadow:none;box-shadow:none}.wpmud .wphb-border-row.disabled .wphb-filename-extension-css,.wpmud .wphb-border-row.disabled .wphb-filename-extension-javascript,.wpmud .wphb-border-row.disabled .wphb-filename-extension-js,.wpmud .wphb-border-row.disabled .wphb-filename-extension-other{opacity:.4}.wpmud .wphb-filename-extension-label{line-height:30px}.wpmud .wphb-border-row.disabled .wphb-minification-file-info>span{color:#aaa}.wpmud .wrap-wphb-minification .settings-form{margin:0}.wpmud .wrap-wphb-minification .content-box-two-cols-image-left .wphb-block-entry-content{margin-top:0}.wpmud .box-minification-tools .box-footer .spinner{margin:6px 10px 0}@media only screen and (max-width:1200px){.wpmud .wphb-minification-files-advanced .wphb-minification-file-info{width:235px}}@media only screen and (max-width:1100px){.wpmud .box-minification-enqueued-files .box-title .buttons{float:left;margin-right:-5px!important}.wpmud .wphb-minification-files-advanced .wphb-minification-file-info{width:130px}.wpmud .wphb-minification-files-advanced .wphb-minification-exclude{margin-left:15px}.wpmud .box-minification-enqueued-files .box-footer .button{margin-top:15px}}@media screen and (max-width:1060px){.wpmud .wphb-border-row,.wpmud .wphb-border-row-header{padding:15px}}@media only screen and (max-width:960px){.wpmud .box-minification-enqueued-files .box-title .buttons{float:right;margin-right:45px!important}}@media only screen and (max-width:783px){.wpmud .wphb-minification-files-advanced .fileinfo-group:after{font-family:dashicons,Arial,sans-serif;content:"\F347";position:absolute;left:100%;margin-left:-70px;margin-top:5px}.wpmud .wphb-minification-files-advanced .fileinfo-group.opened:after{content:"\F343"}.wpmud .wphb-minification-files-advanced .fileinfo-group{padding:10px 0;overflow:hidden}.wpmud .wphb-minification-files-advanced .wphb-minification-file-info{width:55%;min-width:200px}.wpmud .wphb-minification-files-advanced .wphb-minification-file-info>a{max-width:200px}.wpmud .wphb-minification-files-advanced .wphb-minification-row-details{display:none;margin:10px 0;border-top:1px solid #e6e6e6;padding-top:15px!important;width:100%;z-index:100}.wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button>i{margin-left:15px}.wpmud .wphb-minification-files-advanced .wphb-minification-advanced-group{float:left}.wpmud .wphb-minification-files-advanced .wphb-minification-exclude{float:right;margin-top:7px}}@media only screen and (max-width:600px){.wpmud .box-minification-enqueued-files .box-title .buttons,.wpmud .box-minification-enqueued-files .box-title h3{float:none!important}.wpmud .box-minification-enqueued-files .box-title .wphb-switch-button{height:96px;margin-left:-60px;position:absolute;top:0}.wpmud .wphb-minification-file-info{width:185px}.wpmud .box-minification-enqueued-files .box-footer .status-text{display:block;max-width:100%;text-align:left;padding-left:0}}@media only screen and (max-width:480px){.wpmud .wphb-minification-files-table.wphb-minification-files-advanced,.wpmud .wphb-minification-files-table.wphb-minification-files-basic{margin:0 10px 30px}.wpmud .wphb-minification-files-header{padding:20px}.wpmud .box-minification-enqueued-files .buttons .button{padding:7px!important}.wpmud .wphb-minification-filter-buttons{padding:0 20px 20px}.wpmud .wphb-minification-files-select{margin:0 20px}.wpmud .wphb-minification-files>h3{margin:10px}.wpmud .wphb-minification-files-advanced .wphb-border-row,.wpmud .wphb-minification-files-basic .wphb-border-row{padding:10px}.wpmud .wphb-minification-file-info{width:155px}.wpmud .wphb-minification-files-advanced .wphb-minification-file-info{min-width:170px}.wpmud .wphb-border-row .fileinfo-group{margin-top:0;margin-bottom:0}.wpmud .checkbox-group>span{line-height:20px;text-align:right;-ms-flex-item-align:center;align-self:center}.wpmud .checkbox-group input[type=checkbox]+label{width:60px}.wpmud .checkbox-group input[type=checkbox]+label>[class^=hb-]:before{margin-right:0}.wpmud .checkbox-group input[type=checkbox]+label>span[class^=hb]>span{display:none}.wpmud .wphb-minification-files-advanced .fileinfo-group:after{margin-left:-40px}}.sui-header .sui-actions-right .select-container,.sui-header .sui-actions-right label{margin-right:10px}.sui-header .sui-actions-right label{font-size:12px;color:#aaa}.wpmud .box-uptime-summary .sui-summary{background-image:url(../image/hb-graphic-uptime-up@2x.png)}.wpmud .wphb-block-uptime-status .wphb-uptime-icon{max-height:110px}.wpmud .wphb-block-content-uptime-data-range{padding-top:9px;padding-bottom:9px}.wpmud .uptime-chart svg g g rect{fill:#e6e6e6;stroke:transparent;stroke-width:0}.wpmud .uptime-chart svg g g text{fill:#fff;font-family:Roboto,Arial,sans-serif;font-size:13px;font-weight:400}.wpmud .uptime-chart svg g g g g rect:hover{stroke-width:0px;stroke:red;display:none}.wpmud .uptime-chart svg g g text:last-of-type{fill:#aaa;font-weight:500}.wpmud .wrap-wphb-uptime .wphb-pills.green,.wpmud .wrap-wphb-uptime .wphb-pills.red{height:40px;line-height:40px;width:200px;border-radius:5px}.wpmud .wrap-wphb-uptime .wphb-notice-grey{margin-bottom:30px}.wpmud .wphb-block-uptime-downtime .dev-list{margin-top:30px}.wrap-wphb-caching .wphb-block-entry .wphb-block-content-center,.wrap-wphb-uptime .wphb-block-entry .wphb-block-content-center{max-width:600px;margin:0 auto}.wpmud .downtime-chart svg g text{font-family:Roboto,Arial,sans-serif;fill:#aaa;font-weight:500;font-size:12px;line-height:20px}.wpmud .wphb-block-content.wphb-downtime-basic{margin-left:80px;max-width:90%}.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart{height:80px}.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart div div svg{height:58px!important;overflow:hidden}.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart svg g text{display:none}.wpmud .downtime-chart svg g path{stroke:transparent}.wpmud .downtime-chart svg g rect{stroke:transparent;stroke-width:0}.wpmud .downtime-chart-key span{color:#aaa;font-size:12px;line-height:20px;margin-right:30px;font-weight:500}.wpmud .downtime-chart-key span:before{content:"";display:inline-block;height:16px;width:16px;border-radius:2px;margin-right:10px;vertical-align:sub}.wpmud .downtime-chart-key span.response-time-key:before{background-color:#e1f6ff;border-top:2px solid #24ade5;height:14px}.wpmud .downtime-chart-key span.uptime-key:before{background-color:#d1f1ea}.wpmud .downtime-chart-key span.downtime-key:before{background-color:#ff6d6d}.wpmud .downtime-chart-key span.unknown-key:before{background-color:#f8f8f8}.wpmud .wrap-wphb-uptime .dev-list-stats-item{margin-bottom:10px}.wpmud .box-uptime-downtime .sui-icon-chevron-down,.wpmud .box-uptime-downtime .sui-icon-chevron-up{padding:6px;margin-right:10px;vertical-align:middle;border-radius:5px;font-size:15px;line-height:10px}.wpmud .box-uptime-downtime .sui-icon-chevron-down:before,.wpmud .box-uptime-downtime .sui-icon-chevron-up:before{color:#fff}.wpmud .box-uptime-downtime .sui-icon-chevron-down{background-color:#ff6d6d}.wpmud .box-uptime-downtime .sui-icon-chevron-up{background-color:#1abc9c}.wpmud .wrap-wphb-uptime .wphb-pills-group{width:100%}.wpmud .wrap-wphb-uptime .wphb-pills.green,.wpmud .wrap-wphb-uptime .wphb-pills.red{text-align:left;color:#333;font-size:13px;height:56px;line-height:50px;padding-left:15px}.wpmud .wrap-wphb-uptime .wphb-pills.red[tooltip]:after{left:48%}.wpmud .wrap-wphb-uptime .wphb-pills.red{background-color:#ffe5e9;border-top:2px solid #ffe5e9;border-bottom:2px solid #ff6d6d;width:60%}.wpmud .wrap-wphb-uptime .wphb-pills.green{background-color:#d1f1ea;border-top:2px solid #1abc9c;border-bottom:2px solid #d1f1ea;width:40%}.wpmud span.list-detail-stats{position:absolute;font-size:13px;font-weight:500;line-height:22px;right:60%;color:#333;opacity:.5;margin-top:16px}.wphb-image-pills-divider{display:inline-block;height:56px;margin-bottom:-25px;margin-left:-28px;position:absolute}.wpmud .downtime-chart div.google-visualization-tooltip,.wpmud .wphb-uptime-graph div.google-visualization-tooltip{font-family:Roboto,sans-serif;font-weight:500;color:#fff;font-size:12px;border:none;border-radius:5px;padding:8px 12px;background:#000}.wpmud .wphb-uptime-graph div.google-visualization-tooltip .response-time-tooltip{font-size:15px;line-height:18px}.wpmud .wphb-uptime-graph div.google-visualization-tooltip .uptime-date-tooltip{font-size:11px;color:#aaa;line-height:14px;display:block}@media only screen and (max-width:600px){.wpmud .select-container.uptime-data-range{position:absolute;top:0;right:0;margin-right:0}.wpmud .uptime-data-range .select-list-container{min-width:180px}.wpmud .wrap-wphb-uptime .actions>.documentation-button{margin-left:0!important}.wpmud .wrap-wphb-uptime .wphb-pills.green{position:absolute;top:0;right:0;height:30px;border-radius:0 4px 0 0!important;line-height:30px;padding-left:10px;width:160px}.wpmud .wrap-wphb-uptime .wphb-pills.red{width:100%;margin-top:30px;height:50px;border-radius:5px 0 5px 5px!important}.wpmud .box-uptime-downtime .sui-icon-chevron-down,.wpmud .box-uptime-downtime .sui-icon-chevron-up{padding:4px;border-radius:4px;font-size:12px;vertical-align:inherit}.wphb-image-pills-divider{display:inline-block;height:30px;margin-left:0;top:0;right:160px}.wpmud span.list-detail-stats{right:20px;margin-top:46px;opacity:.7}}@media only screen and (max-width:480px){.wpmud .box-uptime-summary .list-detail{max-width:60px}.wpmud .uptime-chart{margin-left:-25px}}.wpmud [class^=box-advanced] .spinner{margin:5px 10px 0;vertical-align:top}.wpmud .box-advanced-db .wphb-border-frame{margin-top:30px!important}.wpmud .box-advanced-db .wphb-border-frame .table-header,.wpmud .box-advanced-db .wphb-border-frame .table-row{padding:20px 30px}@media only screen and (max-width:783px){.wpmud .box-advanced-db .wphb-border-frame .table-header,.wpmud .box-advanced-db .wphb-border-frame .table-row{padding:15px 0}}@media only screen and (max-width:783px){.wpmud .box-advanced-db .wphb-border-frame .table-header{padding:15px 0 0}}.wpmud .box-advanced-db .wphb-border-frame .table-header div{-ms-flex-preferred-size:50px;flex-basis:50px}.wpmud .box-advanced-db .wphb-border-frame .table-header div:first-child,.wpmud .box-advanced-db .wphb-border-frame .table-row div:first-child{-ms-flex-preferred-size:150px;flex-basis:150px}.wpmud .box-advanced-db .wphb-border-frame .table-row div{height:20px;font-size:13px;line-height:20px}.wpmud .box-advanced-db .wphb-border-frame .table-row div:first-child{color:#333;font-weight:500}.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-wpmudev-icon-info{color:#ddd;font-size:16px;margin-left:10px}.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-wpmudev-icon-info:hover{color:#aaa}.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-wpmudev-icon-info:before{vertical-align:middle}.wpmud .box-advanced-db .wphb-border-frame .table-row .wphb-db-row-delete{width:30px;height:30px;display:inline-block;border-radius:4px;margin-top:-5px;text-align:center;vertical-align:middle;cursor:pointer}.wpmud .box-advanced-db .wphb-border-frame .table-row .wphb-db-row-delete:hover{background-color:#f5f5f5}.wpmud .box-advanced-db .wphb-border-frame .table-row .wphb-db-row-delete:hover .hb-fi-trash{color:#ff6d6d}.wpmud .box-advanced-db .wphb-border-frame .table-row .spinner{margin-top:1px}.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-fi-trash{color:#888;font-size:12px;top:5px}.wpmud .box-advanced-db .wphb-border-frame .sui-box-footer{border-top:none}@media only screen and (max-width:783px){.wpmud .box-advanced-db .wphb-border-frame .sui-box-footer{padding:20px 0}}.wpmud .box-advanced-db-settings .settings-form .included-tables>label:first-child,.wpmud .box-advanced-db-settings .settings-form .schedule-box>label:first-child{margin-top:0}.wpmud .box-advanced-db-settings .settings-form .included-tables>label{margin-top:7px;color:#333}.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership{padding-top:0}@media only screen and (max-width:1200px){.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership .wphb-block-entry-content{margin-top:30px}}.sui-header .sui-button i{margin-right:5px}.wpmud .wrap-wp-hummingbird .mline{margin-bottom:30px}.wpmud .select-list-container{min-width:100px}.wpmud .select-list-container .list-value{color:#333;font-weight:500;padding:6px 8px 6px 15px}#wpbody-content{padding-bottom:25px}.wpmud .with-bottom-border{border-bottom:1px solid #e6e6e6;padding-bottom:30px}.wpmud .list-table>tbody>tr:last-child>td{border-bottom:1px solid #eee}.wpmud .list-table>thead>tr>th{text-transform:none;font-size:13px;font-weight:700}.wpmud .list-table>tbody>tr>td{padding:12px 10px}.wpmud .list-table .radio-group.with-icon{display:inline-table}.wpmud .list-table .radio-group.with-icon .dev-icon{vertical-align:middle}.wpmud .dev-list{margin:-30px 0 20px}.wpmud .dev-list .content{padding:30px 0;border-bottom:1px solid #eee}.wpmud .dev-list>li.list-header{text-transform:none;color:#333;font-size:13px}.wpmud .dev-list .list-header .list-label{font-weight:700}.wpmud .dev-list>li .list-label{font-size:13px;font-weight:500;line-height:21px;padding:15px 10px 15px 0}.wpmud .dev-list>li:last-child .list-detail,.wpmud .dev-list>li:last-child .list-label{border-bottom:1px solid #eee}.wpmud .box-dashboard-welcome .dev-list>li:last-child .list-detail,.wpmud .box-dashboard-welcome .dev-list>li:last-child .list-label,.wpmud .box-minification-summary-meta-box .dev-list>li:last-child .list-detail,.wpmud .box-minification-summary-meta-box .dev-list>li:last-child .list-label,.wpmud .box-performance-welcome .dev-list>li:last-child .list-detail,.wpmud .box-performance-welcome .dev-list>li:last-child .list-label,.wpmud .box-uptime-summary .dev-list>li:last-child .list-detail,.wpmud .box-uptime-summary .dev-list>li:last-child .list-label{border-bottom:1px solid transparent}.wpmud .dev-list>li .list-detail .wphb-dash-numbers{font-family:Roboto Condensed,sans-serif;font-size:13px;color:#888;line-height:22px;text-align:right;font-weight:400}.wpmud .dev-list-stats-border>li:first-child .list-detail,.wpmud .dev-list-stats-border>li:first-child .list-label{border-top:1px solid #eee}.wpmud .dev-list-stats-border>li:last-child .list-detail,.wpmud .dev-list-stats-border>li:last-child .list-label{border-bottom-color:#eee}.wpmud .dev-list-stats>li .list-detail-stats-heading,.wpmud .dev-list-stats>li .list-label-stats{color:#333;font:500 13px/30px Roboto,Arial,sans-serif}.wpmud .dev-list-stats>li .list-detail-stats-heading{font-weight:400;font-size:18px;color:#666}.wpmud .dev-list-stats>li .list-detail-stats-heading-extra-info{color:#bababa;display:block;font:500 12px/16px Roboto,Arial,sans-serif;margin-top:5px}.wpmud .dev-list-stats.standalone{margin:0}.wpmud .dev-list-stats.small>li .list-detail-stats-heading,.wpmud .dev-list-stats.small>li .list-label-stats{line-height:26px}.wpmud .dev-list-stats>li .list-detail-stats-heading.small{font-size:26px}.wpmud .dev-list-stats>li .list-label-stats-date{margin-right:30px}.wpmud .list-label-link{color:#19b4cf}.wpmud input[type=checkbox]{border-radius:4px;border:1px solid #e6e6e6;background-color:#f8f8f8}.wpmud [tooltip]:after{font:500 12px/18px Roboto;padding:8px 12px;background:#333;min-width:50px;max-width:250px;-webkit-transition:all .2s ease;transition:all .2s ease;text-transform:none}.wpmud .tooltip-box{overflow:hidden}.wpmud .tooltip-box:hover{overflow:visible}.wpmud .radio-group input[type=radio]+label>[tooltip]{position:absolute;left:0;top:0;bottom:0;right:0;z-index:9}.wpmud .wphb-button-label{border:1px solid transparent;border-radius:15px;color:#fff;font:500 12px/26px Roboto;display:inline-block;height:26px;margin:0;padding:0 12px;text-decoration:none;text-shadow:none;text-transform:none;white-space:nowrap}.wpmud .wphb-button-label-red{background:#fd6e70}.wpmud .wphb-button-label-yellow{background:#ffd000;color:#333}.wpmud .wphb-button-label-green{background:#1abc9c}.wpmud .wphb-button-label-light{color:#333;background-color:#f2f2f2}.wpmud .wrap-wp-hummingbird .wphb-label{color:#fff;display:block;font:500 15px/20px Roboto;text-shadow:none;white-space:nowrap}.wpmud .wrap-wp-hummingbird .wphb-label-notice{background:#14485f;border-radius:3px;padding:5px 10px}.wpmud .wrap-wp-hummingbird .wphb-label-notice-warning{background:#fecf2f;color:#4e4b10}.wpmud .wrap-wp-hummingbird .wphb-label-notice-inline{display:inline-block;font-size:13px;color:#888;margin:0 15px}.wpmud .wrap-wp-hummingbird .wphb-label-disabled{background:#f2f2f2;border-radius:20px;color:silver;display:inline-block;font:500 12px/20px Roboto,Arial,sans-serif;min-width:120px;padding:5px;text-align:center;text-transform:uppercase}.wpmud .wphb-table-wrapper.complex{min-height:.01%;overflow-x:auto;border-bottom:1px solid #eee}.wpmud .wphb-table{font-weight:400;max-width:100%;width:100%;color:#333}.wpmud .list-table.wphb-table tr:hover .wphb-table-td-has-tooltip{z-index:3}.box-dashboard-welcome .box-content,.box-minification-summary-meta-box .box-content,.box-performance-welcome .box-content,.box-uptime-summary .box-content{padding:30px 30px 10px!important}.box-dashboard-welcome .wphb-block-entry,.box-minification-summary-meta-box .wphb-block-entry,.box-performance-welcome .wphb-block-entry,.box-uptime-summary .wphb-block-entry{width:100%;min-height:172px}.wpmud .wphb-image,.wpmud .wphb-image-icon-content{display:block;height:auto;max-width:100%}.wpmud .wphb-image-center,.wpmud .wphb-image-icon-content-center{margin-right:auto;margin-left:auto}.wpmud .wphb-image-icon-content-top{margin-bottom:30px}.wpmud .wphb-listing{margin:0}.wpmud .wphb-listing li{font-family:Roboto,Arial,sans-serif;font-size:15px;font-weight:400;line-height:21px;margin-top:10px;margin-bottom:0}.wpmud .wphb-listing li:first-child{margin-top:0}.wpmud .wphb-listing.bold li{font-weight:500}.wpmud .wphb-listing-ordered{padding-left:20px}.wpmud .wphb-listing li strong{font-weight:500}.wpmud .wphb-listing li:before{color:#17a8e3;top:0}.wpmud .wphb-listing li p{font-size:13px;line-height:22px;margin-top:5px}.wpmud .wphb-select-group{clear:both}.wpmud .wphb-select-group:after{content:"";display:table;clear:both}.wpmud .wphb-select-group>div,.wpmud .wphb-select-group>label{float:left;display:block}.wpmud .wphb-select-group>label{line-height:43px;margin-right:10px}.wpmud .select-container{overflow:hidden}.wpmud .select-container.active{overflow:visible}.wpmud .wphb-select-group .spinner{margin:11px}@-webkit-keyframes spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spinner{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}50%{-webkit-transform:rotate(180deg);transform:rotate(180deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.wphb-scan-progress{overflow:hidden;width:100%}.not-present .wphb-scan-progress-text:before,.wphb-scan-progress .wphb-scan-progress-text:before{content:" ";width:18px;height:18px;display:inline-block;position:relative;top:5px;left:1px;margin-right:10px;border:2px solid #a9e0ec;border-bottom-color:#17a8e3;border-radius:100%;background:0 0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-animation:spinner .75s 0s linear infinite;animation:spinner .75s 0s linear infinite}.wphb-scan-progress .wphb-scan-progress-text{width:65px;float:left;text-align:left}.wphb-scan-progress .wphb-scan-progress-text img{display:inline-block;vertical-align:middle;margin-right:10px}.wphb-scan-progress .wphb-scan-progress-text span{font-weight:700;font-family:Roboto Condensed,sans-serif;font-size:13px;color:#333;vertical-align:middle;line-height:30px}.wphb-scan-progress .wphb-scan-progress-bar{background:#e6e6e6;border-radius:5px;height:10px;width:70%;overflow:hidden;margin-top:10px;position:relative}.wphb-scan-progress .wphb-scan-progress-bar span{background:#17a8e3;height:10px;display:inline-block;position:absolute;top:0;left:0;-webkit-transition:width 1s ease-in-out;transition:width 1s ease-in-out}.wphb-block-test{background-color:#f9f9f9;border-radius:5px;padding:15px 30px}.wphb-block-test-header{margin-bottom:10px}.wphb-progress-state{margin-top:10px;text-align:center}.wphb-progress-state .wphb-progress-state-text{color:#8b8b8b;font-size:13px;line-height:22px}.wphb-block-test-standalone{max-width:100%;text-align:center;margin-top:25px}.wphb-block-test-standalone .wphb-progress{margin:0 auto}.wphb-check-files-modal p{font-size:13px;line-height:22px;margin-right:14px;margin-bottom:0}.wphb-filename-extension{border-radius:4px;display:block;float:left;font-family:Roboto,sans-serif;font-size:9px;color:#fff;text-transform:uppercase;text-align:center;line-height:43px;height:30px;margin:0 10px 0 0;width:30px}.sui-list-label .wphb-filename-extension{margin:-5px 10px -5px 0}.sui-list-label .wphb-filename-extension-label{line-height:22px}.wphb-filename-extension-html{background-color:#f56418}.wphb-filename-extension-other{background-color:#aaa}.wphb-filename-extension-css{background-color:#25a8de}.wphb-filename-extension-media{background-color:#55ddb8}.wphb-filename-extension-images{background-color:#bdf2f7;color:#333}.wphb-filename-extension-javascript,.wphb-filename-extension-js{background-color:#f7e100;color:#333}.wpmud .list-table.hover-effect>tbody>tr[class*=wphb-table-score] td:first-child{padding-left:30px}.wpmud .list-table.hover-effect>tbody>tr[class*=wphb-table-score] td:first-child:before{font-family:hummingbird,sans-serif;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:20px;vertical-align:middle;margin-right:10px}.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-disabled:hover>td:first-child:after,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-dismissed:hover td:first-child:after,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-error:hover td:first-child:after,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-success:hover>td:first-child:after,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-warning:hover td:first-child:after{content:normal}.wphb-table-score-success td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-success td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-success:hover td:first-child{border-left:4px solid #1abc9c}.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-success td:first-child:before{color:#1abc9c;content:"\E903"}.wphb-table-score-warning td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-warning td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-warning:hover td:first-child{border-left:4px solid #ffd000}.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-warning td:first-child:before{color:#ffd000;content:"\E904"}.wphb-table-score-error td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-error td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-error:hover td:first-child{border-left:4px solid #ff6d6d}.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-error td:first-child:before{color:#ff6d6d;content:"\E904"}.wphb-table-score-disabled td:first-child,.wphb-table-score-dismissed td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-disabled td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-dismissed td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-disabled:hover td:first-child,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-dismissed:hover td:first-child{border-left:4px solid #888}.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-disabled td:first-child:before,.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-dismissed td:first-child:before{color:#888;content:"\E904"}.wphb-score-result-grade-a,.wphb-score-result-grade-aplus{color:#1abc9c}.wphb-score-result-grade-a .wphb-score-type-circle .wphb-score-graph-result,.wphb-score-result-grade-aplus .wphb-score-type-circle .wphb-score-graph-result{stroke:#1abc9c}.wphb-score-result-grade-b{color:#1abc9c}.wphb-score-result-grade-b .wphb-score-type-circle .wphb-score-graph-result{stroke:#1abc9c}.wphb-score-result-grade-c{color:#ffd000}.wphb-score-result-grade-c .wphb-score-type-circle .wphb-score-graph-result{stroke:#ffd000}.wphb-score-result-grade-d{color:#ffd000}.wphb-score-result-grade-d .wphb-score-type-circle .wphb-score-graph-result{stroke:#ffd000}.wphb-score-result-grade-e,.wphb-score-result-grade-f{color:#ff6d6d}.wphb-score-result-grade-e .wphb-score-type-circle .wphb-score-graph-result,.wphb-score-result-grade-f .wphb-score-type-circle .wphb-score-graph-result{stroke:#ff6d6d}.wphb-score-result-grade-disabled,.wphb-score-result-grade-dismissed{color:#aaa}.wphb-score-result-grade-disabled .wphb-score-type-circle .wphb-score-graph-result,.wphb-score-result-grade-dismissed .wphb-score-type-circle .wphb-score-graph-result{stroke:#aaa}.wphb-score-have-label .wphb-score-result-label,.wphb-score-have-label .wphb-score-type{float:left;display:block}.wphb-score-have-label.inside .wphb-score-result-label,.wphb-score-have-label.inside .wphb-score-type{float:none}.wphb-score-have-label .wphb-score-result-label{font-family:Roboto,Arial,sans-serif;font-size:15px;color:#888;padding-left:10px}.wphb-score-have-label .wphb-score-type-circle+.wphb-score-result-label{line-height:30px;min-width:35px;text-align:left}.wphb-score-have-label.inside .wphb-score-type{position:relative}.wphb-score-have-label.inside .wphb-score-result-label{font-size:26px;left:0;line-height:34px;margin:-17px 0 0;min-width:100%;padding:0;position:absolute;right:0;text-align:center;top:50%}#wphb-error-details{display:none}#wphb-error-details-link{color:#fff;text-decoration:none;margin-top:10px;margin-bottom:10px;display:inline-block;font-weight:400}#wphb-error-details-link>.dashicons{text-decoration:none}#wphb-error-details-link.expanded{display:none}.wpmud .wphb-tabs a{color:#333;display:block}.wpmud .wphb-tabs .wphb-tab{padding:5px 20px;height:30px}.wpmud .wphb-tabs .wphb-tab.current{background-color:#e6e6e6;border-radius:20px;font-weight:500}.wpmud .wphb-tab .wphb-button-label{position:relative;top:-25px;left:100%;margin-left:-22px;width:39px;height:26px;text-align:center;font-size:12px;font-weight:500;line-height:24px}.wpmud .wphb-tab>i{color:#ff6d6d;position:relative;top:-23px;left:100%;margin-left:-5px;font-size:21px}.wpmud .wphb-tab>i.hb-wpmudev-icon-tick{color:#1abc9c}@media screen and (max-width:960px){.wpmud .wphb-table.stack{display:block}.wpmud .wphb-table.stack>tfoot,.wpmud .wphb-table.stack>thead{display:none}.wpmud .wphb-table.stack>tbody{display:block;width:100%}.wpmud .wphb-table.stack>tbody>tr{display:block;position:relative;width:100%}.wpmud .wphb-table.stack>tbody>tr:before{background:transparent;border-top:1px solid #eaeaea;border-bottom:1px solid transparent;bottom:0;content:"";display:block;left:0;margin:0 -30px;position:absolute;right:0;top:0}.wpmud .wphb-table.stack>tbody>tr:first-child:before{border-top-color:transparent}.wpmud .wphb-table.stack>tbody>tr>td{border-bottom:none;display:block;padding-left:0;position:relative;text-align:left;width:100%}.wpmud .wphb-table.stack>tbody>tr>td:before{content:attr(th-data);display:block;float:left;font-size:15px;font-weight:700;line-height:1.5em;min-width:150px;max-width:300px;margin-right:20px;text-transform:uppercase}.wpmud .wphb-table.stack>tbody>tr>td.has-button-label:before{line-height:2em}.wpmud .wphb-table.stack>tbody>tr>td.has-select{max-height:64px}.wpmud .wphb-table.stack>tbody>tr>td.has-select:before{line-height:2.867em}.wpmud .wphb-table.stack>tbody>tr,.wpmud .wphb-table.stack>tbody>tr>td:first-child{border-top:none}.wpmud .wphb-table.stack>tbody>tr>td:last-child{border-bottom:none}.wpmud .wphb-table.stack>tbody>tr:hover:before{background:#fbfbfb}.wpmud .wphb-table.stack>tbody>tr:first-child:hover:before{border-top-color:#eaeaea}.wpmud .wphb-table.stack>tbody>tr:last-child:hover:before{border-bottom-color:#eaeaea}.wpmud .wphb-table.stack>tbody>tr:hover>td{border-bottom:none}.wpmud .wphb-table.stack>tbody>tr:hover>td:first-child:after,.wpmud .wphb-table.stack>tbody>tr:hover>td:last-child:after{display:none}.wpmud .wphb-table.stack>tbody>tr>td>*{display:inline-block}}@media screen and (max-width:783px){.wpmud .wphb-table-wrapper.complex{overflow-y:hidden;width:100%;padding:0}.wpmud .wphb-table-wrapper.complex p{padding:0 20px}.wpmud .wphb-table-wrapper.complex .alignleft{padding-left:20px}.wpmud .wphb-table-wrapper.complex .alignright{padding-right:20px}.wpmud .list-table>tbody>tr>td,.wpmud .list-table>thead>tr>th{width:100%}.wpmud .wphb-table.stack>tbody>tr>td:before{max-width:220px;width:40%}.wpmud .dev-box .box-title .toggle-group{margin-top:0}}@media screen and (max-width:600px){.wpmud .dev-box .box-title .actions,.wpmud .dev-box .box-title .extra{float:none;display:block}.wpmud .dev-box .box-title .actions,.wpmud .dev-box .box-title .extra,.wpmud .row{margin-top:15px}.wpmud .dev-box{margin-bottom:15px}.wpmud .dev-box .box-title{padding:15px 20px}.wpmud .dev-box .box-title .buttons{margin-top:2px;float:right}.wpmud .dev-box .box-title h3{line-height:34px;display:inline-block}}@media only screen and (max-width:480px){.wpmud .list-table.hover-effect>tbody>tr[class*=wphb-table-score] td:first-child{padding-left:20px}.wpmud .with-bottom-border{padding-bottom:20px}}
2
+ /*# sourceMappingURL=app.min.css.map*/
admin/assets/css/app.min.css.map ADDED
@@ -0,0 +1 @@
 
1
+ {"version":3,"sources":["webpack:///./_src/scss/common/_classes.scss","webpack:///./_src/scss/app.scss","webpack:///./_src/scss/common/_mixins.scss","webpack:///./_src/scss/common/_overwrites.scss","webpack:///./_src/scss/common/_typography.scss","webpack:///./_src/scss/common/_buttons.scss","webpack:///./_src/scss/common/_layout.scss","webpack:///./_src/scss/common/_modals.scss","webpack:///./_src/scss/components/_notices.scss","webpack:///./_src/scss/components/_pills.scss","webpack:///./_src/scss/components/_border_frame.scss","webpack:///./_src/scss/components/_settings_form.scss","webpack:///./_src/scss/modules/_dashboard.scss","webpack:///./_src/scss/modules/_performance.scss","webpack:///./_src/scss/modules/_caching.scss","webpack:///./_src/scss/modules/_gzip.scss","webpack:///./_src/scss/modules/_minification.scss","webpack:///./_src/scss/modules/_uptime.scss","webpack:///./_src/scss/modules/_advanced.scss"],"names":[],"mappings":"AAOA,QACC,aCNA,UDYI,WACA,cACA,WCRJ,mCDaA,UCTA,oCDcA,eACC,aCVC,CCyEK,0CF3DR,eAEE,aCVC,CCuCK,yCFzBR,gBAEE,uBCVC,CC+CK,yCFjCR,gBAEE,aCVC,CE9BH,sBACI,kBACA,MACA,UACA,sBACA,mBACA,sBACA,0BACA,wBACA,yBACH,qBAGG,YACH,+BAGG,wBACH,uCAIG,eAGJ,sCACI,gBAIJ,+BACI,UAGJ,+CACI,mBAGJ,mCACI,WAGJ,0BACI,oCAGJ,yBACI,uBAGJ,yCACI,8BACA,eACA,sBACA,WACA,eACA,iBACA,mBAIJ,+BACI,cAGJ,4CACI,+BACA,uBAGJ,6CACI,oBACA,oBACA,oBAIJ,mHAEI,yBACH,oCAGG,gBAGJ,6BACI,WACA,gBAGJ,4DACI,iBAGJ,+DACI,uBAGJ,sEACI,SACA,OACA,QACA,MAGJ,qEACI,gBAGJ,mCACI,WACA,YAGJ,yCACI,WACA,YAGJ,kEACI,iBACH,6BAGG,WAGJ,qBACI,qBAGJ,+DAEI,6BACA,iBACH,oCAGG,gBAGJ,0BACI,gBAGJ,uCACI,cACA,WAGJ,qEAEI,mBAGJ,uCACI,WACA,2CACA,SACH,oCAGG,kBACA,sBACA,iBAIJ,2BACI,WACA,SACH,qBAGG,WAGJ,qBACI,aAGJ,wBACI,mBACH,yCAGG,oBACI,UACA,SF6BL,CC1JK,yCCkIJ,oBACI,OACA,MF6BL,CG/NH,WACI,wBACA,kCACA,wMAIA,gBACA,kBAAkB,6BAKlB,mDACA,WACA,eACA,kBACA,gBACA,oBACA,oBACA,cAGA,mCACA,kCACH,qBAOO,YACH,mBAIG,YACH,sCAKG,YACH,sBAKG,gBACH,8BAKG,gBACH,6BAKG,gBACH,6BAKG,gBACH,gCAKG,gBACH,sBAKG,gBACH,2BAKG,gBAKJ,qBACI,gBAKJ,+BACI,gBAKJ,6BACI,gBAKJ,8BACI,gBAKJ,uBACI,gBAKJ,gCACI,gBAKJ,wBACI,gBAKJ,wBACI,gBAIR,sBAEQ,gBAIR,8BAEQ,gBAIR,4BAEQ,gBAIR,oCAEQ,gBAIR,qCAEQ,gBAIR,6BAEQ,gBAIR,gCAEQ,gBAIR,uBAEQ,YACH,0BAKG,cACH,oBAID,YACH,kBAMG,kBACH,uBAGG,cACA,WAGJ,uBACI,eACA,kBACH,mBAGG,cACA,eAGJ,qCACI,yBACA,qBACA,WAKJ,4DAEI,WACA,eACA,gBACA,gBACA,oBACH,6BCtOG,gBACH,6CAGG,gBAGJ,8CACI,iBAIJ,4CACI,gBACH,6CAGG,iBAGJ,0CACI,mBAMJ,oDACI,gBACH,sDAGG,gBAGJ,oDACI,gCACA,oCAGJ,uGAEI,gBACH,kCAGG,kBACA,UACA,4BACA,0BACH,2CAGG,mBACH,6CAGG,wCACH,6CAGG,YACA,iBAGJ,+CACI,eACA,WACA,yBACH,uCAKG,qDACA,iBACA,YACA,sBACA,WACA,kBACA,uBACA,wBACA,gCACA,2BAEJ,+CACI,0BACA,yBAEA,YACA,iBACA,eANJ,8DAQQ,mCACA,wBAOH,wIAJO,mCACA,wBACA,+BAMR,iDACI,cACA,eACA,kBACA,iBACA,QAQQ,kJAEI,WAOpB,wLAGI,qDACA,sBACA,sBAGJ,kKAGI,+BACA,uCACA,sBACA,qBAGJ,+ZAOI,mCACA,qBACA,qBAGJ,yMAGI,2BAGJ,uCACI,wCACA,mCACA,WAGJ,gDACI,wCACA,yBACA,WACH,kQAMG,6BACA,qBAGJ,6DACI,uBACA,wBACA,qBACA,mBAGJ,oEACI,qBACA,qBACH,2CAGG,mCACA,qBAWJ,sVACI,gCACA,qBACH,yCAGG,6BACI,aJ4XL,CKnlBH,YACI,gBACH,uCAGG,aAGJ,wBACI,mBAGJ,wBACI,cACA,kBACA,iBACH,6GAMG,mBACA,eACA,kBACA,mBACH,yBAGG,UACH,gCAGG,UAGJ,uBACI,UAGJ,6BACI,UACH,oCAGG,aAGJ,6JAII,eACH,yJAMG,gBAIJ,gBACI,UAGJ,2BACI,gBAGJ,2BACI,WACA,eACA,SACA,eAGJ,8BACI,eACA,WACA,WAGJ,qDACI,gBAGJ,iCACI,WACA,cACA,WAGJ,kCACI,YACH,uCAGG,gBAGJ,wCACI,qBACA,SACA,iBACH,8CAGG,cACA,gBACA,yBAGJ,8CACI,gBACH,2CAGG,cACA,WACA,qDACA,gBACA,iBACA,kBACA,yBAGJ,qDACI,cACA,WAGJ,yCACI,oBACH,6BAGG,aACA,qBAGJ,+BACI,mBAGJ,yCACI,gBACH,8CAGG,mBAIJ,+BACI,oBACH,wCAGG,wBACA,2BAGJ,wEAEI,0BACA,yBACH,oCAGG,wBAGJ,kCACI,aAGJ,sCACI,mBACA,kBAGJ,mBACI,aACA,aACA,6BACH,2BAIG,gBACH,uCAGG,aAGJ,qCACI,WACA,iBACH,mDAIG,oBAGJ,mDACI,gBAGJ,uDACI,iBACA,kBAQJ,gDACI,gBAGJ,6DACI,cACH,yBAGG,qDACA,6EACA,8DACH,qDAIG,gBAGJ,kIAEI,cAGJ,gEACI,WACA,gBACH,kEAGG,sBACH,yEAGG,gBAIJ,+BACI,gBACH,0BAGG,mBACH,yBAGG,qDACA,eACA,iBACA,SACA,gBACA,gBACA,uBACA,mBAGJ,+CACI,gBAGJ,uCACI,gBACH,kCAGG,kBACH,+BAGG,gBACA,oCACA,eACA,iBACA,yBACA,yBACA,kBACA,SACA,kBACA,gBACA,kBACA,eACH,gCAGG,yBACA,kBACA,kBACH,4HAKG,YACA,mBAGJ,iCACI,yBACA,iBACA,cACA,WACH,uCAGG,kBACH,sCAGG,mBACA,sBACA,WACH,0DAGG,iBAGJ,sEACI,cACH,2DAGG,kBACA,WAIJ,+BACI,WACA,WACA,cACH,wCAGG,WACA,eACA,gBACA,oBACA,gBACA,eACA,yBAGJ,oFAEI,gBAGJ,gBACI,mBAEJ,uDACI,gBAIJ,+BACI,WACA,4BACA,gBACA,iBACA,qBACA,sBACH,oCAGG,gBAGJ,iCACI,eACA,aACA,WAGJ,gDACI,eACA,iBACA,mBAGJ,+CACI,eACA,kBAGJ,0DACI,mBAGJ,wMAIQ,WAIR,qDACI,cACH,yCAGG,mBACA,gBAGJ,6DACI,gBACH,0CAGG,gHAGI,cACA,gBACA,UACA,WACH,oJAKG,aAIJ,kEACI,gBL4kBL,CCr8BK,0CI+XJ,0DACI,kBACA,gBAGJ,gEACI,aAGJ,+BACI,UAGJ,4EACI,cACH,kEAGG,sBAGJ,yEACI,kBACH,+BAGG,gBACA,eL2kBL,CC5+BK,yCIuaJ,YACI,cAOH,oDAHG,cACA,WACA,UASJ,+BACI,eACH,0DAGG,kBL0kBL,CC7gCK,yCI8cJ,kCAGI,kBAGJ,4BAEI,cACA,qBAGJ,iIAKI,cACA,gBACA,UACA,WAGJ,6LAKI,aAGJ,gEACI,aLkkBL,CCvjCK,yCI0fJ,+BACI,cACA,kBACA,WAGJ,yCACI,gBAGJ,yCACI,WACA,cLkkBL,CC/kCK,yCIkhBJ,iIAKI,gBAGJ,gDAEI,kBAGJ,+BACI,mBAGJ,kEACI,sBACH,yCAGG,eACA,YLkkBL,CM9pCH,kCACI,WACA,eACH,qBAGG,8BACA,sBACA,oCAGJ,0CACI,mBAGJ,oDACI,gBACH,iEAGG,oBAGJ,wCACI,iBAGJ,uCACI,6BACA,kBACA,oBACH,wFAIG,eACH,mDAGG,WAGJ,+CACI,WACA,eACA,iBAIJ,gBACI,yBACA,kBACA,eAGJ,oBACI,qDACA,+CACA,kEACA,YACA,oBACH,0BAGG,eACA,WAGJ,kBACI,qBACA,sBAGJ,sMAGI,qDACA,+CACA,kEACA,YACA,kBACA,mBAGJ,uEACI,mBAGJ,6DACI,eACA,iBACA,kBACA,gBAGJ,mEACI,+CACH,6EAGG,SACH,wCAGG,YACA,mBACH,0CAGG,mBAGJ,6CACI,eACA,oBACH,0DAGG,WACA,eACA,iBAGJ,uDACI,YACH,kIAMG,sBACA,6BACA,8BACH,wIAKG,aAGJ,4HAGI,WACA,eACA,gBACA,iBACA,oBAGJ,yHAGI,WACA,eACA,iBACA,cACA,kBAGJ,uFAEI,cACH,oCCjKG,gBACA,wDACA,WAGJ,sDACI,YACA,wFACA,0BACA,kBACA,4BACA,YACA,SACA,mBACA,MACH,iCAGG,kBACA,WACA,oCACA,eACA,gBACA,iBACA,kBACA,kBACA,WAIJ,oEACI,yBACA,SACA,mBAGJ,6BACI,eACA,gBACA,cAGJ,sBAEQ,WAKR,2HAII,sBACA,mBACH,gDAGG,SACH,wEAIG,eACA,YACA,iBACA,WACH,qCAGG,eACA,WACA,eACA,gBACA,iBACA,cACA,WACA,yBAGJ,ggBAWI,yCACA,eACA,sBACA,iBACA,SACA,kBACA,kBACA,kBACH,4BAGG,yBACH,0BAGG,yBACH,4BAGG,yBACA,WAGJ,uDAEI,yBACA,gBACH,uDAIG,yBACA,gBAGJ,0CACI,aAGJ,0FAEI,gBACA,cACH,qDAGG,eACA,iBACH,mCAGG,gBACA,cACH,qCAGG,gBACA,cACA,eACA,iBAGJ,kCACI,gBACA,cAGJ,uCACI,gBACA,cACH,yEAIG,gBACA,WAGJ,2CACI,eACA,iBAIJ,kCACI,cAGJ,4BACI,qDACA,eACA,aNzHI,yCM6HJ,yCACI,UP+zCL,CCp8CK,yCM0IJ,yCACI,WACA,SACA,mBP+zCL,CCn9CK,yCMyJJ,iCACI,kBP+zCL,CQ1gDH,YACI,qBACA,yBACA,WACA,mBACA,WACA,YACA,eACA,iBACA,kBACA,gBAGJ,8BACI,qBACH,iBAGG,yBACA,WAGJ,gBACI,yBACA,WACH,kBAGG,yBACA,WACH,6BAGG,6BACA,WACA,SACA,oBACA,kBACA,QACA,UAGJ,mCACI,0BACA,SACA,gBACA,QACH,kCAGG,2BACA,WACA,gBACA,QACH,wCAGG,0BACH,uCAGG,2BAGJ,kBACI,yBACA,iBACA,YACA,qBACA,kBAGJ,sCACI,eACA,iBACA,YACA,gBACA,eACA,WACA,cACA,6BAGJ,iDACI,cACA,6BAGJ,wDACI,cACA,gBAGJ,8BACI,gBACA,WACA,iBACA,YACA,SAGJ,0CACI,oCAGJ,yCACI,yBACA,WACA,oCACH,yCAGG,YACA,gBPzDI,yCO6DJ,uCACI,oBAGJ,YACI,kBACH,0CAGG,oCACH,yCAGG,oCR8gDL,CC/lDK,yCOsFJ,kBACI,wBACA,uBAGJ,qEAEI,yBACA,aACA,iBACA,QACH,mCAGG,8BACA,SACH,kCAGG,+BACA,UACH,wCAGG,sBACA,8BAGJ,uCACI,sBACA,+BR8gDL,CSnrDH,0BACI,yBACA,kBACA,0BAGJ,6EAEI,qDACA,6EACA,4BAGJ,wCACI,WACA,eACA,gBACA,gCAGJ,qCACI,gCACH,gDAGG,gBAGJ,kDACI,WACA,eACA,cAGJ,8DACI,kBAGJ,8DACI,kBRwBI,yCQpBJ,0BACI,STurDL,CClrDK,yCQAJ,6EAEI,eTurDL,CU5uDH,8BACI,kBACA,MACA,OACA,WACA,YACA,WACA,mCAGJ,+DAEI,cACA,gBACA,eACA,WACA,iBACH,2DAIG,eACA,WACA,iBACA,eAGJ,0EAEI,cACA,eACA,WACA,iBACA,gBAKH,8DAIO,iBAIR,yBACI,iBACH,sCAGG,aAGJ,8EAEI,aAGJ,wCACI,aACA,eACA,gBAEJ,2CACI,mBACA,gBAGJ,qCACI,SACH,iFAIG,qBACA,mBACA,WACA,iBACA,SAGJ,+CACI,gBACA,UACA,WACA,eAGJ,+CACI,cACA,eACA,WACA,iBAGJ,+BACI,6CAGJ,iCACI,WACH,wCAGG,sFACA,yBACA,yBAHJ,gDAMQ,yBACA,yBAPR,uDAUY,UACA,WACA,WACA,sBTlEJ,yCSqDR,uDAgBgB,WVovDb,CUhvDK,sDACI,WACH,8CAID,qBACA,aACA,eTjFA,yCSqDR,wCAgCQ,YACA,WVovDL,CWz3DH,wDACI,yCACA,WACA,WACA,eACA,kBACA,iBAGJ,mEACI,gBAEJ,oEACI,gBACH,+DAEG,gBAEJ,4DACI,gBACH,8DAEG,gBAEJ,6DACI,gBAEJ,kEACI,gBACH,+DAEG,gBAEJ,wEACI,gBAEJ,oEACI,gBAEJ,sEACI,YACH,gEAGG,iBAKJ,0CACI,+CACH,sUAOG,oCACA,8BACH,mHAIG,8BACH,4CAGG,+CACH,2CAEG,+CACH,wDAEG,+CACH,2DAEG,+CACA,4BAEJ,4DACI,gDACA,4BAEJ,gEACI,gDACA,4BAGJ,+EACI,sBACH,oOAQG,+IAGI,4BAEJ,4CACI,gDAEJ,2CACI,gDAEJ,wDACI,gDACH,4DAEG,gDACH,gEAEG,gDX24DL,CWt4DH,+BACI,WACA,eACA,gBACA,iBACA,qDAMY,yBAJhB,qEAKoB,sBXw4DjB,CW74DH,2DAUY,WACA,eACA,gBACA,iBACA,cACA,iBAfZ,kFAmBgB,eACA,6BAGA,yBAvBhB,wFAwBoB,kBXy4DjB,CWj6DH,oFA6BY,eACA,WACA,gBACA,iBAEA,sFACI,eAnChB,8DAuCY,gBAWX,yLAHG,qDACA,kEACA,+CACH,4BAMG,6EACA,YACA,6BAGJ,uCACI,oBACH,4FAIG,+DACA,gBACH,4CAGG,eACA,WACA,gBACA,iBAGJ,oEAEI,kBACH,0FAIG,iBAIJ,8HAEI,2CACH,kIAIG,2CACH,6BAIG,WACA,eACA,iBACA,eAKJ,2EACI,cACH,gDAGG,gBACA,mBAGJ,kEACI,gBACA,gBACA,eACA,gBACH,oDAGG,cACA,gBACA,eACA,iBACH,kNAMG,eACA,qDACA,WAGJ,sDACI,gBAGJ,4DAEI,kBACA,kBACA,yBACA,kBACA,mBACA,WACA,eACA,iBAGJ,yCACI,kBACA,QACA,OACA,iBACA,WACA,QACA,SACA,iCACA,oCACA,+BAGJ,4DAEI,WACA,0BACA,gBAIJ,wWAMI,0BACH,qGAGG,gBAIJ,2CACI,yBACA,aACA,WACA,kBAGA,kBACA,mBACA,qDACA,yGACA,kEACA,oEACH,iDAGG,yBACA,eAGJ,6CACI,WACA,eAGJ,kDAEI,WAEA,gBAEA,iBAIJ,qGATI,qDAEA,gBAEA,eAEA,yBAGJ,mDACI,kBACA,MACA,QACA,cAGA,kBACA,iBAKJ,sEACI,WACA,eACA,iBACH,8DAGG,WACA,kBACA,MACA,QACA,yBACA,4BAIA,kBACA,2BACA,yBAGJ,mEACI,2BACA,yBACH,2DAKO,WACA,eACA,mBAJR,4EAQQ,yCACA,eACA,iBACA,cACA,gBACH,mCAKD,WACA,kBACA,gCACA,iBACA,mBAGJ,wCACI,cACA,yBACA,eACA,eACA,QAGJ,oEAEI,WACA,eACA,gBACA,iBACA,oBACH,8CAGG,kBACA,0BACA,sBACA,kEACA,aAGJ,iDACI,WACA,eACA,gBACA,iBACA,oBACA,aACA,gBAGJ,gDACI,WACA,eACA,iBACA,mBAGJ,8EAGI,iBACA,0BACH,yBAGG,8CACA,sBAGJ,4BACI,8CACA,sBAGJ,yBACI,8CACA,sBAGJ,6FAGI,WACA,YACA,cACA,sBACA,kBACA,kBACA,SACA,UACA,wFAGJ,8BVhfI,wDACA,0BAEA,oOU6eJ,8BVveQ,gDD22EL,CWh4DH,iCVpfI,wDACA,0BUqfH,oOAFD,iCV3eQ,gDDs3EL,CWv4DH,8BVxfI,wDACA,0BAEA,oOUqfJ,8BV/eQ,gDDi4EL,CW94DH,uDACI,yCACA,cACA,gBACH,mEAGG,6BACA,yBACH,+BAGG,kBACA,gBAGJ,iCACI,gBACA,sBAGJ,mCACI,mBAGJ,qCAOI,4KACI,oBXo5DL,CWh5DH,0CACI,8CACI,YXo5DL,CCx2EK,0CUydJ,qGACI,gBXo5DL,CCr3EK,0CUseJ,uIAEI,aACH,4DAIG,iBACA,gBAGJ,wEAEI,aXo5DL,CC94EK,yCU+fJ,mDACI,sBAIJ,+CACI,qDACA,WACA,iBACA,aAGJ,sDACI,UACH,uDAGG,UACA,0BACA,kEAGJ,4DACI,QACH,8CAGG,UACA,gBACA,0BAGJ,iDACI,gBACA,gBAGJ,gDACI,mBXm5DL,CC/7EK,yCUijBJ,oEACI,aXm5DL,CCn9EK,yCUskBJ,sDACI,cAGJ,kEACI,gBACA,iBAGJ,0EACI,8BACH,oEAGG,kBAGJ,+HAEI,eAGJ,qCACI,gBAGJ,yCACI,WACH,6BAGG,iBACA,aACA,kBACA,qBACA,gBAIJ,4DAEI,kBACA,gBACH,+CAIG,cACA,iBACH,qGAIG,WACH,uDAGG,iBACA,aACA,0BACA,wCAGJ,8CACI,0BAGJ,+FAEI,kBACH,gDAGG,mBAGJ,4DACI,SACA,sBXg5DL,CYrlFH,4CACI,gDAGJ,4CACI,qBACA,mBACA,yBAGJ,kDACI,WAEJ,8DACI,YAEJ,yCACI,2BAEJ,iDACI,kBAEJ,4EAEI,cACA,yBACA,qBACA,qBACA,iBAEA,qBACA,aACH,0EAIG,yBACA,WACA,iBAGJ,sCACI,kBACA,mBAGJ,yDACI,kBAGJ,wEACI,eACA,0BACH,qEAGG,YAGJ,oEACI,WACA,eACA,kDACA,YAEJ,uDACI,0BACH,wGAGG,WACH,mEAGG,iBACA,YAGJ,iEACI,WACA,eACA,qBACA,eACA,gBACA,YACA,yBACA,kDACA,sBAGJ,6FACI,qBACA,kJACA,gDACH,oGAGG,4DAGJ,gQAGI,mBAGJ,kFACI,mBACA,aAGJ,yFACI,kBAGJ,4FACI,uBACH,8DAGG,oBACH,qEAGG,aAGJ,kHAEI,8BACA,WACA,eACA,oBACA,iBACA,cACA,gBACH,YAIG,qBACA,kBAGJ,wBACI,mBACA,YACA,WACH,8BAGG,YACA,WAGJ,iDACI,eACA,qBACA,iBAEA,+CACA,uCACH,uDAGG,wBACA,kBAGJ,iDACI,6DACA,kEACA,qEAGJ,uDACI,+DACA,oEACA,uEAGJ,+FAGI,eACA,kBAIJ,oFAEI,iBACA,kBAGJ,yCACI,mBACA,iBAGJ,+CACI,kBACA,yBAGJ,qIAGI,qDACA,yGACA,6EACA,kEACA,+CAGJ,6CAGI,mBACA,WACA,YACA,kBACA,qBACA,sBAGJ,+CACI,WACA,gBAGJ,6CACI,WAGJ,mDACI,WAGJ,6CACI,gBAGJ,+CACI,gBACA,gBACA,yBACA,gBAGJ,4DACI,WACA,eAGJ,8EACI,WACA,gBAFJ,mJACI,WACA,gBAFJ,gEACI,WACA,gBACH,8DAGG,0BACA,eACA,yBACA,SACH,mEAGG,yBACA,SACH,wCAKG,mBACA,eACA,iBACA,WACA,yBAGJ,oDACI,mBACA,WAGJ,sDAEQ,kBACH,iJAID,aACH,0EAGG,mBAEJ,iKAEI,aACH,0CAGG,yIAEI,YAGJ,mEACI,YACH,oEAGG,aZ4lFL,CC30FK,0CWoPJ,oEACI,YACH,mEAGG,YACH,qEAGG,YACA,4BZ4lFL,CCx2FK,yCWiRJ,wEAEI,oBAGJ,uKAGI,uBZ4lFL,CCn4FK,yCW4SJ,qIAGI,qGAGJ,kHAEI,0BACA,kBACA,yBACH,oDAGG,0BAGJ,iCACI,aAGJ,iEACI,kBACH,sDAGG,kBZ4lFL,Cal9FH,2BACI,gBACH,6BAGG,0BACH,wCAGG,WACA,0BAGJ,sCACI,gBACH,oCAGG,iBACH,sBAGG,gBACH,0EAIG,8BACA,WACA,eACH,0DAIG,gBAGJ,4BACI,gBACA,0BACA,cACH,wBAGG,WACH,oCAGG,gBAGJ,0BACI,gBAGJ,+BACI,UAGJ,8BACI,mBAGJ,2CACI,gBAGJ,8CACI,aACH,sDAGG,mBAGJ,wBACI,gBAGJ,yCACI,eACA,yBACH,wPAMG,WAGJ,sCACI,gBAGJ,2BACI,qBACA,YACH,4EAIG,kBACA,gBACH,+DAGG,qBACA,aAGJ,0BACI,WACA,cACA,gBACA,2BACH,0BAGG,mBAGJ,4CACI,YAGJ,2BACI,gBACA,mBAGJ,sDACI,gBACH,gCAGG,WACA,iBACA,gBACA,eAGJ,yCACI,gBACA,gBACA,gBACH,6BAGG,qBACA,kBAGJ,0CACI,+BAIA,gDACA,4BAGJ,8DACI,sBAGJ,2DACI,gBAGJ,mBACI,gBAGJ,2DACI,aACH,mDAGG,gBAGJ,2DACI,gCACI,WACA,cACA,kBACA,gBAEJ,4CACI,WACA,kBAEJ,gEACI,kBACA,QACA,Sbw9FL,Cap9FH,6HAGI,6BACH,yDAGG,0BAGJ,6DACI,gBACH,yDAGG,iBAGJ,iEACI,eACA,iBACA,WAGJ,wEACI,eACA,iBACH,4DAGG,gBAGJ,8DACI,eACA,iBAGJ,qEACI,eACA,iBACH,+DAGG,eACA,iBAGJ,sEACI,eACA,iBAOJ,0EACI,gBAGJ,8CACI,WAIJ,2EACI,6CAGJ,uIAEI,+CACH,8IAIG,6CAGJ,qEACI,eACA,gBACA,WACH,mEAIG,gBACA,kBACA,UACH,4KAMG,WACA,eACA,gBACA,iBACH,6DAGG,UAGJ,sDACI,aAIJ,yOAMI,SAGJ,yFAEI,6BACA,SAGJ,mFAEI,eACA,0BACA,WACA,eACA,kBACA,YAGJ,qFAEI,WACA,eACA,iBAGJ,kDACI,aAGJ,uCACI,SAGJ,qDACI,iBAGJ,oDACI,WACA,6BACA,WAIJ,qCACI,6BACA,kBAGJ,2EACI,uBACA,gCACH,4BAGG,WACA,eACA,gBACA,gBACA,oBAGJ,kCACI,aACA,gBACA,WACA,yBACA,kBACA,yBACA,gBACH,4DAGG,mBAIJ,+CACI,WACH,2EAGG,aACH,0EAGG,gBZvVI,yCY2VJ,oEACI,cbo9FL,Ca/8FH,gFAEI,gBACH,iEAGG,cAIJ,4CACI,oBACH,iDAKO,kBACH,+DAGO,SACA,qBACA,WAGJ,oDACI,iBACA,gBACA,WACH,0CAKL,+BACI,cACA,qBb88FL,CC31GK,yCYkZJ,sDACI,sBb88FL,CCx2GK,yCY+ZJ,6DACI,gBACH,6HAKG,6BACH,uFAGG,Sb88FL,Cc36GH,0BACI,gBACA,mBACH,wBAGG,gBACH,sCAGG,gBAGJ,sDAEI,0BAGJ,wCACI,qBACA,eACA,gBACA,yBAGJ,4CACI,gBAGJ,4CACI,aACA,mBACA,kBAGJ,8CACI,eACH,qDAGG,eACH,wDAGG,gBACA,0BACA,kBAGJ,0DACI,0BAGJ,oCACI,qGAEI,sEAEJ,qIAEI,2Cdg7GL,Cex+GH,uBACI,mBACA,qDACA,gEACA,YACH,mCAEG,sEAIJ,4CACI,SACA,mBACA,WACA,YACA,gBACA,UACA,kBACA,UACA,cAGJ,kDACI,yBACA,kBACA,qDACA,UACA,kEACA,oEACA,kBACA,YACA,kBACA,kFACA,wDACA,4BACA,gBACA,gBAIJ,oEACI,WACH,mCAIG,WACA,YAGJ,8DACI,aACA,WACA,YACH,wCAGG,gBACA,aACH,oIAKG,wCACA,yBAGJ,wHAEI,WACA,UACA,eAGJ,4BACI,WACA,eACA,iBAGJ,sEACI,eACA,oBACA,iBAQJ,4OAEI,eACH,oOAKG,cACH,0IAIG,WAGJ,2DACI,sBAGJ,4DACI,kBACA,OACA,MACA,SACA,QACA,UAGJ,0CACI,cACA,mBAEH,iDAIG,mBAIJ,gCACI,yBACA,mBAGJ,gEACI,qBACA,mBAIJ,4DACI,4BAGJ,uEACI,8BACA,cACA,YACA,UACA,kBACA,kBACA,WAGJ,8EACI,8BACA,YACA,iBACA,oBACA,iBAEJ,+EACI,kBACH,4EAEG,YACA,WACA,cACA,2BAGJ,8EACI,WACA,eACA,iBACA,kBACA,SAGJ,kFACI,cAGJ,uCACI,sBACA,gCACA,mBACA,aAGJ,wBACI,oBACA,oBACA,aACA,8BACA,6BACA,0CACA,yBACA,sBACA,mBACA,+CAGJ,yLAGI,kBACA,yBACA,sBACA,8BAGJ,wEACI,UACA,qDACA,+CACA,kEAGJ,uDACI,gCAGJ,0DACI,4BACA,gBACA,sBACA,kBACA,sFACA,mBAGJ,uIAEI,gBACH,2IAIG,yBACA,mBAGJ,oEACI,sBACA,kBACA,sFACH,6EAIG,eACA,gBACA,iBACA,WACA,gBACA,oBACA,iBAIJ,6CACI,mBACA,WAGJ,+DACI,WACA,WACA,eACA,gBACA,iBACA,yBAIJ,oCACI,WACA,iBACA,gBACA,kBACA,mBACA,YACH,0EAKG,mJACA,WACA,YACA,oBACA,kBACA,QACA,MACA,WAGJ,sCACI,WACA,eACA,gBACA,iBAGJ,qDACI,WACA,cACA,eACA,iBAGJ,sCACI,gBACA,gBAGJ,+DACI,6BAGJ,uHAEI,cACH,kEAGG,cACA,kBACA,MAIJ,yCACI,oBACA,qDACA,2DACI,cAIR,uCACI,qDACA,kEACA,+CACA,cAJJ,qDAMQ,iBACA,0DACI,gBACH,0CAKL,mBAGJ,6CACI,WAGJ,sCACI,WACA,iBACA,kBACA,eAGJ,kCACI,iBAIJ,iCACI,sBACA,eACA,iBAGJ,qCACI,YACA,qDACA,kEACA,+CAIJ,2CACI,wBACA,oBACA,mCACH,uDAGG,WACA,2CACA,oBACA,kBAGJ,wDACI,0BAIJ,uFAEI,aACH,8DAIG,yBACH,mEAGG,wCAGJ,gQAII,WACH,sCAGG,iBACH,mEAGG,WACH,8CAKG,SACH,0FAIG,aAKA,oDACI,kBACH,0CAKD,sEACI,Yf49GL,CC91HK,0CcuYJ,4DACI,WACA,4BAGJ,sEACI,YAGJ,oEACI,iBACH,4DAGG,gBf49GL,Cex9GH,qCACI,uDAEI,af49GL,CC/3HK,yCcwaJ,4DACI,YACA,4Bf49GL,CC74HK,yCcsbJ,+DACI,uCACA,gBACA,kBACA,UACA,kBACA,eAGJ,sEACI,gBACH,yDAGG,eACA,gBACH,sEAGG,UACA,gBAGJ,wEACI,gBACH,wEAGG,aACA,cACA,6BACA,2BACA,WACA,YACH,8EAGG,iBAGJ,2EACI,WACH,oEAGG,YACA,ef49GL,CCv8HK,yCcgfJ,kHAEI,qBAGJ,uEACI,YACA,kBACA,kBACA,MAGJ,oCACI,YAGJ,iEACI,cACA,eACA,gBACA,ef49GL,CCv+HK,yCcghBJ,2IAEI,mBAGJ,uCACI,aAGJ,yDACI,sBAGJ,yCACI,oBACH,uCAGG,cACH,mCAGG,YAGJ,iHAEI,aAGJ,oCACI,YAGJ,sEACI,gBAGJ,wCAGI,aACA,gBAGJ,4BACI,iBACA,iBACA,6CAGJ,kDACI,WAGJ,sEACI,eAGJ,uEACI,aACH,+DAGG,kBf09GL,CgB3lIH,sFAGQ,kBAEJ,qCACI,eACA,WAGR,wCACI,gDAEJ,mDACI,iBAGJ,6CACI,gBACA,mBACH,kCAGG,aACA,mBACA,eAGJ,kCACI,UACA,oCACA,eACA,gBAEJ,4CACI,iBACA,WACA,aAGJ,+CACI,UACA,gBACH,oFAIG,YACA,iBACA,YACA,kBAGJ,2CACI,mBAGJ,6CACI,gBAGJ,+HAEI,gBACA,cAGJ,kCACI,oCACA,UACA,gBACA,eACA,iBAGJ,+CACI,iBACA,cAGJ,+DACI,YAEJ,2EACI,sBACA,gBACH,0EAEG,aAEJ,kCACI,mBACH,kCAEG,mBACA,eAGJ,gCACI,WACA,eACA,iBACA,kBACA,gBAGJ,uCACI,WACA,qBACA,YACA,WACA,kBACA,kBACA,mBAGJ,yDACI,yBACA,6BACA,YACH,kDAEG,yBACH,oDAEG,yBAEJ,mDACI,yBAGJ,8CACI,mBAEJ,oGAEI,YACA,kBACA,sBACA,kBACA,eACA,iBACA,kHACI,WAEH,mDAID,yBAGJ,iDACI,yBAGJ,2CACI,WAGJ,oFAEI,gBACA,WACA,eACA,YACA,iBACA,kBACH,wDAGG,SAGJ,yCACI,yBACA,6BACA,gCACA,UAGJ,2CACI,yBACA,6BACA,gCACA,UAGJ,8BACI,kBACA,eACA,gBACA,iBACA,UACA,WACA,WACA,gBAGJ,0BACI,qBACA,YACA,oBACA,kBACA,kBACH,mHAIG,8BACA,gBACA,WACA,eACA,YACA,kBACA,iBACA,gBAGJ,kFACI,eACA,iBAGJ,gFACI,eACA,WACA,iBACA,cf5KI,yCeoLJ,2CACI,kBACA,MACA,QACA,eACH,iDAGG,gBAGJ,wDACI,wBACH,2CAGG,kBACA,MACA,QACA,YACA,kCACA,iBACA,kBACA,YAGJ,yCACI,WACA,gBACA,YACA,sCAGJ,oGAEI,YACA,kBACA,eACA,uBAGJ,0BACI,qBACA,YACA,cACA,MACA,YAGJ,8BACI,WACA,gBACA,WhBsmIL,CCr1IK,yCeoPJ,wCACI,eACH,qBAGG,kBhBsmIL,CiB/4IH,sCAEQ,kBACA,mBAKR,2CACI,0BAmFH,+GA/EO,kBAKH,yCAVL,+GAQY,ejBo5IT,CCt2IK,yCgB1CJ,yDAEQ,iBjBo5IT,CiBl6IH,6DAmBQ,6CAnBR,+IAwBQ,+CAxBR,0DA6BY,YACA,eACA,iBAMH,sEAHO,WACA,gBACH,4EAID,WACA,eACA,iBAEA,kFAAU,WA5CtB,mFA6CuB,sBA7CvB,0EAiDY,WACA,YACA,qBACA,kBACA,gBACA,kBACA,sBACA,eASH,gFANO,yBAEA,6FACI,cA9DpB,+DAoEY,eAGJ,mEACI,WACA,eACA,QAIR,2DACG,gBhBzBC,yCgBwBJ,2DAGQ,ejB05IT,CiBp5IH,mKAIY,aAJZ,uEAQY,eACA,WACH,gEAMD,chB5BA,0CgB8BA,0FAEQ,gBjBo5Ib,CACF,0BA3+IG,iBA++IH,mCA3+IG,mBA++IH,8BA3+IG,gBA++IH,0CA3+IG,WACA,gBACA,yBA++IH,gBA3+IG,oBA++IH,2BA3+IG,gCACA,oBA++IH,0CA5+IG,6BAg/IH,+BA5+IG,oBACA,eACA,gBAg/IH,+BA5+IG,kBAg/IH,0CA5+IG,qBAg/IH,oDA5+IG,sBAg/IH,iBA5+IG,oBAg/IH,0BA5+IG,eACA,6BAg/IH,gCA5+IG,oBACA,WACA,eAg/IH,0CA5+IG,gBAg/IH,gCA5+IG,eACA,gBACA,iBACA,yBAg/IH,uFA3+IG,6BAg/IH,0iBAr+IG,oCAg/IH,oDA5+IG,wCACA,eACA,WACA,iBACA,iBACA,gBAg/IH,mHA3+IG,0BAg/IH,iHA3+IG,yBAg/IH,iGA3+IG,WACA,2CAg/IH,qDA5+IG,gBACA,eACA,WAg/IH,gEA5+IG,cACA,cACA,2CACA,eAg/IH,kCA5+IG,SAg/IH,6GA3+IG,iBAg/IH,2DA5+IG,eAg/IH,iDA5+IG,kBAg/IH,wBA5+IG,cAg/IH,4BA5+IG,kBACA,yBACA,yBAg/IH,uBA5+IG,0BACA,iBACA,gBACA,eACA,gBACA,wDACA,oBAg/IH,oBA5+IG,gBAg/IH,0BA5+IG,iBAg/IH,sDA5+IG,kBACA,OACA,MACA,SACA,QACA,UAg/IH,0BA3+IG,6BACA,mBACA,WACA,0BACA,qBACA,YACA,SACA,eACA,qBACA,iBACA,oBACA,mBA++IH,8BA3+IG,mBA++IH,iCA3+IG,mBACA,WA++IH,gCA3+IG,mBA++IH,gCA3+IG,WACA,yBA++IH,wCA1+IG,WACA,cACA,0BACA,iBACA,mBA8+IH,+CA1+IG,mBACA,kBACA,iBA8+IH,uDA1+IG,mBACA,cA8+IH,sDA1+IG,qBACA,eACA,WACA,cA8+IH,iDA1+IG,mBACA,mBACA,aACA,qBACA,2CACA,gBACA,YACA,kBACA,yBA8+IH,mCAr+IG,gBACA,gBACA,6BAy+IH,mBAr+IG,gBACA,eACA,WACA,WAy+IH,kEAn+IG,UAu+IH,2JAh+IG,iCAu+IH,+KAh+IG,WACA,iBAu+IH,mDAl+IG,cACA,YACA,eAu+IH,iEAl+IG,kBACA,iBAu+IH,oCAn+IG,mBAu+IH,qBAl+IG,SAs+IH,wBAl+IG,oCACA,eACA,gBACA,iBACA,gBACA,gBAs+IH,oCAl+IG,aAs+IH,6BAl+IG,gBAs+IH,6BAl+IG,kBAs+IH,+BAl+IG,gBAs+IH,+BAl+IG,cACA,MAs+IH,0BAl+IG,eACA,iBACA,eAs+IH,0BAj+IG,WAq+IH,gCAj+IG,WACA,cACA,WAq+IH,8DAh+IG,WACA,cAq+IH,gCAj+IG,iBACA,kBAq+IH,yBAj+IG,gBAq+IH,gCAj+IG,iBAq+IH,mCAj+IG,YAq+IH,2BA39IG,GACI,+BACA,uBA+9IL,IA39IK,iCACA,yBA+9IL,GA39IK,gCACA,wBA+9IL,CACF,mBA5+IG,GACI,+BACA,uBA+9IL,IA39IK,iCACA,yBA+9IL,GA39IK,gCACA,wBA+9IL,CACF,oBA39IG,gBACA,WA+9IH,iGA19IG,YACA,WACA,YACA,qBACA,kBACA,QACA,SACA,kBACA,yBACA,4BACA,mBACA,eACA,oDACA,4FA+9IH,6CA39IG,WACA,WACA,gBA+9IH,iDA39IG,qBACA,sBACA,kBA+9IH,kDA39IG,gBACA,wCACA,eACA,WACA,sBACA,iBA+9IH,4CA39IG,mBAGA,kBACA,YACA,UACA,gBACA,gBACA,kBA+9IH,iDA39IG,mBACA,YACA,qBACA,kBACA,MACA,OACA,wCAEA,gCA+9IH,iBA19IG,yBACA,kBACA,kBA89IH,wBA19IG,mBA89IH,qBA19IG,gBACA,kBA89IH,+CA19IG,cACA,eACA,iBA89IH,4BA19IG,eACA,kBACA,gBA89IH,2CA19IG,cA89IH,0BA19IO,eACA,iBACA,kBACA,gBA89IP,yBAx9IG,kBACA,cACA,WACA,8BACA,cACA,WACA,yBACA,kBACA,iBACA,YACA,kBACA,WA49IH,yCAv9IO,wBA29IP,+CAx9IO,iBA49IP,8BAv9IG,yBA29IH,+BAv9IG,sBA29IH,6BAv9IG,yBA29IH,+BAv9IG,yBA29IH,gCAv9IG,yBACA,WA29IH,gEAt9IG,yBACA,WA29IH,iFAv9IG,kBA29IH,wFAv9IG,mCACA,WACA,kBACA,gBACA,oBACA,oBACA,cACA,mCACA,kCACA,eACA,sBACA,kBA29IH,kdAn9IG,eA29IH,sNAr9IG,8BA29IH,wFAv9IG,cACA,gBA29IH,sNAr9IG,8BA29IH,wFAv9IG,cACA,gBA29IH,gNAr9IG,8BA29IH,sFAv9IG,cACA,gBA29IH,qbAl9IG,2BA29IH,mLAt9IG,WACA,gBA29IH,0DAt9IG,cA29IH,4JAt9IG,eA29IH,2BAv9IG,cA29IH,4EAv9IG,eA29IH,2BAv9IG,cA29IH,4EAv9IG,eA29IH,2BAv9IG,cA29IH,4EAv9IG,eA29IH,sDAt9IG,cA29IH,wJAt9IG,eA29IH,qEAt9IG,WA29IH,uKAt9IG,YA29IH,wFAt9IG,WACA,cA29IH,sGAt9IG,WA29IH,gDAv9IG,oCACA,eACA,WACA,kBA29IH,wEAv9IG,iBACA,eACA,gBA29IH,+CAv9IG,kBA29IH,uDAv9IG,eACA,OACA,iBACA,iBACA,eACA,UACA,kBACA,QACA,kBACA,QA29IH,oBAv9IG,aA29IH,yBAv9IG,WACA,qBACA,gBACA,mBACA,qBACA,gBA29IH,oCAv9IG,qBA29IH,kCAv9IG,aA29IH,oBAt9IG,WACA,cA09IH,4BAt9IG,iBACA,YA09IH,oCAt9IG,yBACA,mBACA,gBA09IH,oCAt9IG,kBACA,UACA,UACA,kBACA,WACA,YACA,kBACA,eACA,gBACA,iBA09IH,mBAt9IG,cACA,kBACA,UACA,UACA,iBACA,eA09IH,wCAt9IG,cA09IH,oCAh9IG,yBACI,cAo9IL,8DAh9IK,aAq9IL,+BAl9IK,cACA,WAs9IL,kCAn9IK,cACA,kBACA,WAu9IL,yCAp9IK,uBACA,6BACA,oCACA,SACA,WACA,cACA,OACA,eACA,kBACA,QACA,MAw9IL,qDAr9IK,6BAy9IL,qCAt9IK,mBACA,cACA,eACA,kBACA,gBACA,WA09IL,4CAv9IK,sBACA,cACA,WACA,eACA,gBACA,kBACA,gBACA,gBACA,kBACA,yBA29IL,6DAx9IK,gBA49IL,gDAz9IK,gBA69IL,uDA19IK,oBA89IL,mFA19IK,gBA+9IL,gDA59IK,mBAg+IL,+CA79IK,mBAi+IL,2DA99IK,yBAk+IL,0DA/9IK,4BAm+IL,2CAh+IK,mBAo+IL,yHAh+IK,aAq+IL,uCAl+IK,qBAs+IL,CACF,oCA39IG,mCACI,kBACA,WACA,UA+9IL,qCA59IK,eAg+IL,8CA79IK,kBAi+IL,+CA99IK,mBAk+IL,8DA79IK,WAk+IL,4CA99IK,gBACA,UAk+IL,yCA99IK,aAk+IL,CACF,oCA59IG,sEAEI,WACA,cAg+IL,kFA19IK,gBAg+IL,gBA59IK,mBAg+IL,2BA59IK,kBAg+IL,oCA59IK,eACA,YAg+IL,8BA59IK,iBACA,qBAg+IL,CCn5KK,yCDw7BJ,iFACI,kBAg+IL,2BA59IK,oBAg+IL,CACF","file":"app.min.css","sourcesContent":["/* ****************************************************************************\n * MODULE: CLASSES\n */\n\n@import \"variables\";\n@import \"mixins\";\n\n.hidden {\n\tdisplay: none;\n}\n\n// Clearfix\n.cf {\n\t&:after {\n\t content: \"\";\n\t display: table;\n\t clear: both;\n\t }\n}\n\n.wpmud .wrap-wp-hummingbird .clear {\n\tpadding: 0;\n}\n\n// Responsive Helpers\n@media screen and (min-width: $desktop--small) {\n\t.hide-on-large {\n\t\tdisplay: none;\n\t}\n}\n\n.hide-to-large {\n\t@include bp(desktop-large) {\n\t\tdisplay: none;\n\t}\n}\n\n.hide-to-mobile {\n\t@include bp(phone-large) {\n\t\tdisplay: none !important;\n\t}\n}\n\n.hide-on-mobile {\n\t@include bp(desktop-small) {\n\t\tdisplay: none;\n\t}\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/common/_classes.scss",".hidden {\n display: none;\n}\n\n.cf:after {\n content: \"\";\n display: table;\n clear: both;\n}\n\n.wpmud .wrap-wp-hummingbird .clear {\n padding: 0;\n}\n\n@media screen and (min-width: 960px) {\n .hide-on-large {\n display: none;\n }\n}\n\n@media only screen and (max-width: 1200px) {\n .hide-to-large {\n display: none;\n }\n}\n\n@media only screen and (max-width: 600px) {\n .hide-to-mobile {\n display: none !important;\n }\n}\n\n@media only screen and (max-width: 960px) {\n .hide-on-mobile {\n display: none;\n }\n}\n\nbutton.notice-dismiss {\n position: absolute;\n top: 0;\n right: 1px;\n border: none !important;\n margin: 0 !important;\n padding: 9px !important;\n background: none !important;\n color: #72777c !important;\n cursor: pointer !important;\n}\n\n.wpmud .wphb-dismiss {\n float: right;\n}\n\n.wpmud #wpbody-content>.notice {\n margin: 5px 20px 2px 5px;\n}\n\n.wpmud [tooltip].tooltip-bottom:before {\n margin-top: 2px;\n}\n\n.wpmud [tooltip].tooltip-bottom:after {\n margin-top: 12px;\n}\n\n.wpmud .list-table>tbody>tr>td {\n z-index: 0;\n}\n\n.wpmud [tooltip].tooltip-s.tooltip-right:after {\n margin-left: -150px;\n}\n\n.wpmud .wrap-wp-hummingbird strong {\n color: #333333;\n}\n\n.wpmud .dev-overlay .back {\n background-color: rgba(51,51,51,0.95);\n}\n\n.wpmud .dev-overlay .box {\n padding: 40px 30px 30px;\n}\n\n.wpmud .dev-overlay .title .title-action {\n font-family: 'Roboto', sans-serif;\n margin-top: 5px;\n vertical-align: middle;\n color: #888888;\n font-size: 13px;\n line-height: 30px;\n margin-right: -20px;\n}\n\n.wpmud #wpmu-install-dashboard {\n margin-left: 0;\n}\n\n.wpmud #wpcontent #wpmu-install-dashboard * {\n -webkit-box-sizing: content-box;\n box-sizing: content-box;\n}\n\n.wpmud #wpmu-install-dashboard .wpmu-message {\n font-family: inherit;\n font-weight: inherit;\n line-height: inherit;\n}\n\n.wpmud .toggle .toggle-checkbox:checked+.toggle-label:before,\n.wpmud .toggle .toggle-checkbox:checked+.toggle-label {\n background-color: #17A8E3;\n}\n\n.wpmud .toggle .toggle-label:before {\n background: #AAA;\n}\n\n.wpmud .toggle .toggle-label {\n width: 44px;\n text-align: left;\n}\n\n.wpmud .toggle .toggle-checkbox:checked+.toggle-label:after {\n margin-left: 24px;\n}\n\n.wpmud .toggle .toggle-checkbox:checked:disabled+.toggle-label {\n background: transparent;\n}\n\n.wpmud .toggle .toggle-checkbox:checked:disabled+.toggle-label:before {\n bottom: 0;\n left: 0;\n right: 0;\n top: 0;\n}\n\n.wpmud .toggle .toggle-checkbox:checked:disabled+.toggle-label:after {\n margin-left: 1px;\n}\n\n.wpmud .toggle .toggle-label.small {\n width: 36px;\n height: 16px;\n}\n\n.wpmud .toggle .toggle-label.small:after {\n width: 14px;\n height: 14px;\n}\n\n.wpmud .toggle .toggle-checkbox:checked+.toggle-label.small:after {\n margin-left: 21px;\n}\n\n.wpmud .toggle .toggle-cross {\n color: #ddd;\n}\n\n.wpmud .toggle-group {\n display: inline-block;\n}\n\n.wpmud .toggle-item.bordered,\n.wpmud .wphb-block-entry.bordered {\n border-top: 1px solid #E6E6E6;\n padding-top: 30px;\n}\n\n.wpmud .toggle-item.space-top-small {\n margin: 15px 0 0;\n}\n\n.wpmud .toggle-item label {\n text-align: left;\n}\n\n.wpmud .toggle-item .toggle-item-group {\n display: table;\n width: 100%;\n}\n\n.wpmud .toggle-item .toggle-info,\n.wpmud .toggle-item .toggle-actions {\n display: table-cell;\n}\n\n.wpmud .toggle-item .toggle-item-title {\n color: #555;\n font: 400 15px/20px \"Roboto\",Arial,sans-serif;\n margin: 0;\n}\n\n.wpmud .toggle-item .toggle-actions {\n padding-left: 30px;\n vertical-align: middle;\n text-align: right;\n}\n\n.wpmud .spinner.standalone {\n float: none;\n margin: 0;\n}\n\n.wpmud .spinner.left {\n float: left;\n}\n\n.wpmud .spinner.hide {\n display: none;\n}\n\n.wpmud .spinner.visible {\n visibility: visible;\n}\n\n@media only screen and (max-width: 960px) {\n .wpmud .dev-overlay {\n left: 35px;\n top: 15px;\n }\n}\n\n@media only screen and (max-width: 783px) {\n .wpmud .dev-overlay {\n left: 0;\n top: 0;\n }\n}\n\n@font-face {\n font-family: 'Hummingbird';\n src: url(\"../fonts/hummingbird.eot\");\n src: url(\"../fonts/hummingbird.eot\") format(\"embedded-opentype\"),url(\"../fonts/hummingbird.ttf\") format(\"truetype\"),url(\"../fonts/hummingbird.woff\") format(\"woff\"),url(\"../fonts/hummingbird.svg\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n\n[class^=\"hb-\"],\n[class*=\" hb-\"] {\n font-family: \"Hummingbird\",Arial,sans-serif !important;\n speak: none;\n font-size: 15px;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.hb-fi-filter:before {\n content: \"\\7a\";\n}\n\n.hb-fi-wand:before {\n content: \"\\5a\";\n}\n\n.hb-fi-settings-slider-control:before {\n content: \"\\7b\";\n}\n\n.hb-icon-audit:before {\n content: \"\\e900\";\n}\n\n.hb-wpmudev-icon-cross:before {\n content: \"\\e901\";\n}\n\n.hb-wpmudev-icon-info:before {\n content: \"\\e902\";\n}\n\n.hb-wpmudev-icon-tick:before {\n content: \"\\e903\";\n}\n\n.hb-wpmudev-icon-warning:before {\n content: \"\\e904\";\n}\n\n.hb-icon-cache:before {\n content: \"\\e905\";\n}\n\n.hb-icon-cloudflare:before {\n content: \"\\e906\";\n}\n\n.hb-icon-gzip:before {\n content: \"\\e907\";\n}\n\n.hb-icon-minify-combine:before {\n content: \"\\e908\";\n}\n\n.hb-icon-minify-defer:before {\n content: \"\\e909\";\n}\n\n.hb-icon-minify-footer:before {\n content: \"\\e90a\";\n}\n\n.hb-icon-minify:before {\n content: \"\\e90b\";\n}\n\n.hb-icon-performancetest:before {\n content: \"\\e90c\";\n}\n\n.hb-icon-reports:before {\n content: \"\\e90d\";\n}\n\n.hb-icon-restore:before {\n content: \"\\e90e\";\n}\n\n.hb-icon-smush:before {\n content: \"\\e90f\";\n}\n\n.hb-icon-minify-inline:before {\n content: \"\\e910\";\n}\n\n.hb-wpmudev-icon-eye:before {\n content: \"\\e911\";\n}\n\n.hb-wpmudev-icon-wrench-tool:before {\n content: \"\\e912\";\n}\n\n.hb-wpmudev-icon-profile-male:before {\n content: \"\\e913\";\n}\n\n.hb-wpmudev-icon-page:before {\n content: \"\\e914\";\n}\n\n.hb-wpmudev-icon-academy:before {\n content: \"\\e915\";\n}\n\n.hb-fi-plugin-2:before {\n content: \"\\4f\";\n}\n\n.hb-fi-arrow-right:before {\n content: \"\\af\";\n}\n\n.hb-fi-trash:before {\n content: \"\\51\";\n}\n\n.wpmud .wphb-icon {\n position: relative;\n}\n\n.wpmud .wphb-icon-left {\n display: block;\n float: left;\n}\n\n.wpmud .wphb-dash-icon {\n font-size: 12px;\n padding-right: 2px;\n}\n\n.wpmud .cf-dismiss {\n display: block;\n margin-top: 6px;\n}\n\n.wpmud .wphb-cf-notice .cf-dismiss a {\n text-transform: uppercase;\n text-decoration: none;\n color: #888;\n}\n\n.wpmud .box-advanced-general h4,\n.wpmud .box-page-caching h4 {\n color: #666666;\n font-size: 15px;\n font-weight: 500;\n text-align: left;\n text-transform: none;\n}\n\n.wpmud .box-content .buttons {\n margin-top: 30px;\n}\n\n.wpmud .box-content .buttons.buttons-on-left {\n text-align: left;\n}\n\n.wpmud .box-content .buttons.buttons-on-right {\n text-align: right;\n}\n\n.wpmud .box-footer .buttons.buttons-on-left {\n text-align: left;\n}\n\n.wpmud .box-footer .buttons.buttons-on-right {\n text-align: right;\n}\n\n.wpmud .wphb-notice:not(.notice) .buttons {\n margin: 10px 30px 0;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status .sui-tag {\n margin-top: 10px;\n}\n\n.wpmud .wrap-wphb-performance .scan-settings .buttons {\n margin-top: 30px;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient>button {\n background-color: #888888 !important;\n border-radius: 0 4px 4px 0 !important;\n}\n\n.wpmud .wrap-wphb-gzip #enable-cache-wrap .button,\n.wpmud .wrap-wphb-caching #enable-cache-wrap .button {\n margin-top: 30px;\n}\n\n.wpmud .wphb-code-snippet .button {\n position: absolute;\n left: 100%;\n margin-left: -90px !important;\n margin-top: 15px !important;\n}\n\n.wpmud .box-caching-gravatar .button-large {\n margin: 0 !important;\n}\n\n.wrap-wp-hummingbird .button-cta-green:hover {\n box-shadow: none;\n}\n\n.wphb-scan-progress .wphb-scan-cancel-button {\n float: right;\n margin-top: -13px;\n}\n\n.wphb-scan-progress .wphb-scan-cancel-button>a {\n font-size: 12px;\n color: #AAAAAA;\n text-transform: uppercase;\n}\n\n.wpmud .wrap-wp-hummingbird .wpdui-btn {\n font: 500 12px/16px \"Roboto\",Arial,sans-serif !important;\n padding: 7px 16px;\n height: 30px;\n background-color: #888;\n color: #FFFFFF;\n border-radius: 3px;\n -moz-border-radius: 3px;\n transition: all .3s ease;\n -webkit-transition: all .3s ease;\n text-shadow: none !important;\n}\n\n.wpmud .report-status button.sui-button-upsell {\n margin-top: 10px !important;\n text-transform: uppercase;\n height: 30px;\n line-height: 16px;\n padding: 0 16px;\n}\n\n.wpmud .report-status button.sui-button-upsell:not(:disabled) {\n background-color: #d1f1ea !important;\n color: #1abc9c !important;\n}\n\n.wpmud .report-status button.sui-button-upsell:not(:disabled):hover,\n.wpmud .report-status button.sui-button-upsell:not(:disabled):focus {\n background-color: #d1f1ea !important;\n color: #1abc9c !important;\n border-color: #d1f1ea !important;\n}\n\n.wpmud .report-status button.sui-button-upsell i {\n color: #1abc9c;\n font-size: 16px;\n position: relative;\n line-height: 16px;\n top: 2px;\n}\n\n.wpmud .wrap-wp-hummingbird .wphb-notice.notice .sui-button.button:hover,\n.wpmud .wrap-wp-hummingbird .wphb-notice.notice .sui-button.button:focus {\n color: white;\n}\n\n.wpmud .wrap-wp-hummingbird button.button-large:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird button.button-large,\n.wpmud .wrap-wp-hummingbird .button.button-large {\n font: 500 15px/20px \"Roboto\",Arial,sans-serif !important;\n height: 40px !important;\n padding: 11px 20px 9px;\n}\n\n.wpmud .wrap-wp-hummingbird button.button-ghost:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird .button-ghost,\n.wpmud .wphb-modal .button-ghost {\n padding: 5px 16px 7px !important;\n background-color: transparent !important;\n border: 2px solid #DDDDDD;\n color: #888888 !important;\n}\n\n.wpmud .wrap-wp-hummingbird button.button-ghost:hover:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird .button-ghost:hover:not(:focus):not(:active),\n.wpmud .wrap-wp-hummingbird .button-ghost:active,\n.wpmud .wrap-wp-hummingbird .button-ghost.active,\n.wpmud .wrap-wp-hummingbird .button-ghost:hover:enabled,\n.wpmud .wrap-wp-hummingbird .button-ghost:focus,\n.wpmud .wrap-wp-hummingbird .button-grey:hover {\n background-color: #7B7B7B !important;\n border-color: #7B7B7B;\n color: #FFFFFF !important;\n}\n\n.wpmud .wrap-wp-hummingbird button.button-ghost.button-large:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird .button-ghost.button-large,\n.wpmud .wphb-modal .button-ghost.button-large {\n padding: 9px 20px 9px !important;\n}\n\n.wpmud .wphb-modal .button-content-cta {\n box-shadow: none;\n background-color: #1ABC9C !important;\n color: #FFFFFF;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta {\n box-shadow: none;\n background-color: #1ABC9C;\n color: #FFFFFF;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta:hover:not(:focus):not(:active),\n.wpmud .wphb-modal .button-content-cta:hover:not(:focus):not(:active),\n.wpmud .wrap-wp-hummingbird .button-content-cta:active,\n.wpmud .wrap-wp-hummingbird .button-content-cta:focus {\n background: #0DAF8F !important;\n border-color: #0DAF8F;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta.button-ghost {\n background: transparent;\n color: #1ABC9C !important;\n border-color: #1ABC9C;\n border-radius: 20px;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta.button-ghost:active {\n color: #FFFFFF !important;\n border-color: #0DAF8F;\n}\n\n.wpmud .wrap-wp-hummingbird .button-notice {\n background-color: #E6E6E6 !important;\n color: #AAAAAA !important;\n}\n\n.wpmud .wrap-wp-hummingbird .button-notice:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]),\n.wpmud .wrap-wp-hummingbird .button-notice:hover:not(:focus):not(:active),\n.wpmud .wrap-wp-hummingbird .button-notice:active,\n.wpmud .wrap-wp-hummingbird .button-notice:focus {\n background-color: #888888 !important;\n color: #FFFFFF !important;\n}\n\n.wpmud .wrap-wp-hummingbird .button-grey {\n background-color: #888888 !important;\n color: #FFFFFF !important;\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .box-content .buttons {\n margin-top: 0;\n }\n}\n\n.wpmud .row {\n margin-top: 30px;\n}\n\n.wpmud .box-content .row:first-of-type {\n margin-top: 0;\n}\n\n.wpmud .row-space-large {\n margin-bottom: 40px;\n}\n\n.wpmud .row .col-center {\n display: block;\n margin-right: auto;\n margin-left: auto;\n}\n\n.wpmud .row .col-quarter,\n.wpmud .row .col-three-quarters,\n.wpmud .row .col-fifth,\n.wpmud .row .col-four-fifths {\n display: table-cell;\n padding: 0 15px 0 15px;\n position: relative;\n vertical-align: top;\n}\n\n.wpmud .row .col-quarter {\n width: 25%;\n}\n\n.wpmud .row .col-three-quarters {\n width: 75%;\n}\n\n.wpmud .row .col-fifth {\n width: 20%;\n}\n\n.wpmud .row .col-four-fifths {\n width: 80%;\n}\n\n.wpmud .row .col-four-fifths.hidden {\n display: none;\n}\n\n.wpmud .row .col-quarter:first-child,\n.wpmud .row .col-three-quarters:first-child,\n.wpmud .row .col-fifth:first-child,\n.wpmud .row .col-four-fifths:first-child {\n padding-left: 0;\n}\n\n.wpmud .row .col-quarter:last-child,\n.wpmud .row .col-three-quarters:last-child,\n.wpmud .row .col-fifth:last-child,\n.wpmud .row .col-four-fifths:last-child {\n padding-right: 0;\n}\n\n.wpmud .dev-box {\n padding: 0;\n}\n\n.wpmud .dev-box:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .dev-box .box-title {\n clear: both;\n height: inherit;\n margin: 0;\n padding: 0 30px;\n}\n\n.wpmud .dev-box .box-title h3 {\n font-size: 16px;\n color: #333333;\n float: left;\n}\n\n.wpmud .dev-box .box-title .wphb-label-notice-inline {\n margin: 2px 15px;\n}\n\n.wpmud .dev-box .box-title:after {\n content: '';\n display: table;\n clear: both;\n}\n\n.wpmud .dev-box .box-title .extra {\n float: right;\n}\n\n.wpmud .dev-box .box-title .extra-text {\n margin: 20px 0 0;\n}\n\n.wpmud .dev-box .box-title .extra-label {\n display: inline-block;\n margin: 0;\n line-height: 20px;\n}\n\n.wpmud .dev-box .box-title .extra-label-value {\n color: #477B92;\n font-weight: 400;\n text-transform: uppercase;\n}\n\n.wpmud .dev-box .box-title .wphb-select-group {\n margin: 10px 0 0;\n}\n\n.wpmud .sui-box-header .test-results-label {\n display: block;\n float: left;\n font-family: \"Roboto Condensed\",\"Roboto\",Arial,sans-serif;\n font-weight: 700;\n line-height: 30px;\n margin-right: 10px;\n text-transform: uppercase;\n}\n\n.wpmud .dev-box .box-title .test-results .wphb-score {\n display: block;\n float: left;\n}\n\n.wpmud .dev-box .box-title .toggle-group {\n margin: 6px 15px 0 0;\n}\n\n.wpmud .dev-box .box-content {\n padding: 30px;\n word-wrap: break-word;\n}\n\n.wpmud .dev-box .box-content>* {\n margin-bottom: 20px;\n}\n\n.wpmud .dev-box .box-content>*:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .dev-box .box-content .row-space-large {\n margin-bottom: 40px;\n}\n\n.wpmud .box-content.no-padding {\n padding: 0 !important;\n}\n\n.wpmud .box-content.no-vertical-padding {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.wpmud .wphb-modal .no-side-padding,\n.wpmud .box-content.no-side-padding {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.wpmud .box-content .no-top-padding {\n padding-top: 0 !important;\n}\n\n.wpmud .box-content .with-padding {\n padding: 30px;\n}\n\n.wpmud .box-content .add-side-padding {\n padding-right: 30px;\n padding-left: 30px;\n}\n\n.wpmud .box-footer {\n margin-top: 0;\n padding: 30px;\n border-top: 1px solid #EAEAEA;\n}\n\n.wpmud .wphb-block-section {\n margin-top: 40px;\n}\n\n.wpmud .wphb-block-section:first-child {\n margin-top: 0;\n}\n\n.wpmud .wphb-block-section-content * {\n color: #555;\n line-height: 20px;\n}\n\n.wpmud .content-box .wphb-block-entry-image-bottom {\n margin-bottom: -30px;\n}\n\n.wpmud .content-box .wphb-block-entry-image-center {\n margin-top: 30px;\n}\n\n.wpmud .content-box .wphb-block-entry-image-center img {\n margin-left: auto;\n margin-right: auto;\n}\n\n.wpmud .content-box-one-col-center .box-content {\n text-align: left;\n}\n\n.wpmud .content-box-one-col-center .wphb-block-entry-content {\n margin: 0 auto;\n}\n\n.wpmud .content-box-flex {\n display: flex;\n justify-content: space-between;\n align-items: flex-end;\n}\n\n.wpmud .content-box-two-cols-image-left .box-content {\n text-align: left;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-image,\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n display: block;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-image {\n float: left;\n max-width: 192px;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 30px 0 0 285px;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-content .title {\n text-align: left;\n}\n\n.wpmud .wphb-block+.wphb-block {\n margin-top: 30px;\n}\n\n.wpmud .wphb-block-header {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-block-title {\n font-family: \"Roboto Condensed\",\"Roboto\",Arial,sans-serif;\n font-size: 22px;\n line-height: 26px;\n margin: 0;\n overflow: hidden;\n text-align: left;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.wpmud .wphb-block-content+.wphb-block-content {\n margin-top: 30px;\n}\n\n.wpmud .wphb-block-content>*:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .wphb-block-content-center {\n text-align: center;\n}\n\n.wpmud .wphb-block-content pre {\n font-weight: 500;\n font-family: \"Roboto\",Arial,sans-serif;\n font-size: 13px;\n line-height: 18px;\n background-color: #F8F8F8;\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n margin: 0;\n padding: 20px 30px;\n white-space: pre;\n overflow-x: scroll;\n max-width: 100%;\n}\n\n.wpmud .wphb-block-content-blue {\n background-color: #e0f6ff;\n border-radius: 5px;\n padding: 20px 30px;\n}\n\n.wpmud .wphb-block-content .tooltip-box,\n.wpmud .wphb-block-content .toggle,\n.wpmud .wphb-block-content .toggle .toggle-label {\n height: 21px;\n vertical-align: top;\n}\n\n.wpmud .wphb-block-content-group {\n border-collapse: separate;\n border-spacing: 0;\n display: table;\n width: 100%;\n}\n\n.wpmud .wphb-block-content-group-inner {\n display: table-row;\n}\n\n.wpmud .wphb-block-content-group-item {\n display: table-cell;\n vertical-align: middle;\n width: 100%;\n}\n\n.wpmud .wphb-block-content-group-item .wphb-block-content {\n margin-left: 30px;\n}\n\n.wpmud .wphb-block-content-group-item:first-child .wphb-block-content {\n margin-left: 0;\n}\n\n.wpmud .wphb-block-content-group .wphb-block-content.small {\n padding: 20px 23px;\n width: 80px;\n}\n\n.wpmud .wphb-block-entry:after {\n content: '';\n clear: both;\n display: block;\n}\n\n.wpmud .wphb-block-entry-content .title {\n color: #333333;\n font-size: 22px;\n font-weight: bold;\n line-height: 1.333em;\n margin: 0 0 0.5em;\n max-width: 100%;\n text-transform: uppercase;\n}\n\n.wpmud .wphb-block-entry-content .title,\n.wpmud .wphb-block-entry-content .content>p {\n margin: 0 0 20px;\n}\n\n.wpmud .content {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-block-entry-content .content>p:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .wphb-block-entry-third {\n color: #333333;\n width: calc(100% / 2 - 98px);\n padding-left: 5%;\n padding-top: 10px;\n display: inline-block;\n vertical-align: middle;\n}\n\n.wpmud .wphb-block-entry-third span {\n font-weight: 400;\n}\n\n.wpmud .wphb-block-entry-third p {\n font-size: 13px;\n margin-top: 0;\n color: #888888;\n}\n\n.wpmud .wphb-block-entry-third span.not-present {\n font-size: 55px;\n line-height: 30px;\n margin-bottom: 20px;\n}\n\n.wpmud .wphb-block-entry-third span.score-span {\n font-size: 13px;\n margin-left: -12px;\n}\n\n.wpmud .wphb-block-entry-third .current-performance-score {\n margin-bottom: 20px;\n}\n\n.wpmud i.hb-wpmudev-icon-info.dismissed,\n.wpmud .wphb-block-entry-third .hb-wpmudev-icon-info {\n color: #888888;\n}\n\n.wpmud i.hb-wpmudev-icon-info.dismissed:before,\n.wpmud .wphb-block-entry-third .hb-wpmudev-icon-info:before {\n color: #888888;\n}\n\n.wpmud .wphb-block-entry-third .hb-wpmudev-icon-tick {\n color: #1ABC9C;\n}\n\n.wpmud .wphb-block-entry-third .dev-list {\n margin: 0 !important;\n border-bottom: 0;\n}\n\n.wpmud .wphb-block-entry-third .dev-list li:first-child span {\n padding-top: 4px;\n}\n\n@media only screen and (max-width: 1200px) {\n .wpmud .wrap-wphb .row .col-half,\n .wpmud .wrap-wphb-caching .row .col-half,\n .wpmud .wrap-wphb-gzip .row .col-half {\n display: block;\n margin-top: 30px;\n padding: 0;\n width: 100%;\n }\n\n .wpmud .wrap-wphb .row .col-half:first-child,\n .wpmud .wrap-wphb-caching .row .col-half:first-child,\n .wpmud .wrap-wphb-gzip .row .col-half:first-child {\n margin-top: 0;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 65px;\n }\n}\n\n@media only screen and (max-width: 1100px) {\n .wpmud .content-box-two-cols-image-left .wphb-block-entry {\n text-align: center;\n min-height: 100%;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-image {\n display: none;\n }\n\n .wpmud .wphb-block-entry-third {\n width: 49%;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-image .wphb-image {\n margin: 0 auto;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 35px 0 0 155px;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content .title {\n text-align: center;\n }\n\n .wpmud .wphb-block-entry-third {\n text-align: left;\n padding-left: 0;\n }\n}\n\n@media only screen and (max-width: 960px) {\n .wpmud .row {\n display: block;\n }\n\n .wpmud .row .col-fifth {\n display: block;\n width: 100%;\n padding: 0;\n }\n\n .wpmud .row .col-four-fifths {\n display: block;\n width: 100%;\n padding: 0;\n }\n\n .wpmud .wphb-block-entry-third {\n padding-left: 0;\n }\n\n .wpmud .wphb-block-entry-third .current-performance-score {\n margin-bottom: 5px;\n }\n}\n\n@media only screen and (max-width: 783px) {\n .wpmud .box-content .with-padding {\n padding: 15px 20px;\n }\n\n .wpmud .row,\n .wpmud .row-sep {\n display: block;\n table-layout: inherit;\n }\n\n .wpmud .row .col-third,\n .wpmud .row .col-two-third,\n .wpmud .row .col-half,\n .wpmud .row .col-quarter,\n .wpmud .row .col-three-quarters {\n display: block;\n margin-top: 30px;\n padding: 0;\n width: 100%;\n }\n\n .wpmud .row .col-third:first-child,\n .wpmud .row .col-two-third:first-child,\n .wpmud .row .col-half:first-child,\n .wpmud .row .col-quarter:first-child,\n .wpmud .row .col-three-quarters:first-child {\n margin-top: 0;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-image {\n display: none;\n }\n}\n\n@media only screen and (max-width: 600px) {\n .wpmud .wphb-block-entry-third {\n display: block;\n text-align: center;\n width: 100%;\n }\n\n .wpmud .wphb-block-entry-third .dev-list {\n text-align: left;\n }\n\n .wpmud .dev-box .box-title .test-results {\n float: none;\n display: block;\n }\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .row .col-third,\n .wpmud .row .col-two-third,\n .wpmud .row .col-half,\n .wpmud .row .col-quarter,\n .wpmud .row .col-three-quarters {\n margin-top: 15px;\n }\n\n .wpmud .dev-box .box-content,\n .wpmud .box-footer {\n padding: 15px 20px;\n }\n\n .wpmud .dev-box .box-content>* {\n margin-bottom: 15px;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 35px 0 0 135px;\n }\n\n .wpmud .dev-box .box-title .test-results {\n margin-top: 2px;\n float: right;\n }\n}\n\n.wpmud .dev-overlay .title .close {\n color: #888888;\n font-size: 34px;\n}\n\n.wpmud .wphb-modal * {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n font-family: \"Roboto\",Arial,sans-serif;\n}\n\n.wpmud .wphb-modal .wphb-dialog-content>* {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-modal .wphb-dialog-content>*:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .wphb-modal .wphb-dialog-content .wphb-modal-image-bottom {\n margin-bottom: -30px;\n}\n\n.wpmud .wphb-modal .wphb-progress-state {\n margin-top: -20px;\n}\n\n.wpmud .wphb-modal .wphb-dialog-footer {\n border-top: 1px solid #EAEAEA;\n margin: 30px -30px;\n padding: 30px 30px 0;\n}\n\n.wpmud .wphb-progress-modal .wphb-progress,\n.wpmud .wphb-progress-modal .wphb-block-test {\n max-width: 100%;\n}\n\n.wpmud .wphb-progress-modal .wphb-dialog-content p {\n color: #666666;\n}\n\n.wpmud .wphb-progress-modal .wphb-notice-box p {\n color: #333333;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wphb-cdn-block {\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n padding: 18px 0;\n}\n\n.wphb-cdn-block>div {\n display: flex;\n align-content: center;\n align-items: center;\n height: auto;\n padding: 20px 30px 0;\n}\n\n.wphb-cdn-block>div>label {\n margin: 2px 0 0 0;\n color: #666666;\n}\n\n.wphb-cdn-block>p {\n color: #888888 !important;\n padding: 0 30px 0 76px;\n}\n\n.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test,\n.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test,\n.wpmud.toplevel_page_wphb-minification .wphb-modal .wphb-block-test {\n display: flex;\n align-content: center;\n align-items: center;\n height: auto;\n padding: 20px 30px;\n margin-bottom: 30px;\n}\n\n.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test {\n margin-bottom: 10px;\n}\n\n.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test>p {\n font-size: 13px;\n line-height: 22px;\n margin-right: 14px;\n margin-bottom: 0;\n}\n\n.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test>.button {\n flex-basis: 260px;\n}\n\n.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test>label {\n margin: 0;\n}\n\n.wpmud .dev-overlay.dismiss-report .box {\n width: 400px;\n margin-left: -250px;\n}\n\n.wpmud .dev-overlay.dismiss-report .title {\n margin-bottom: 30px;\n}\n\n.wpmud .dev-overlay.dismiss-report .title h3 {\n font-size: 15px;\n text-transform: none;\n}\n\n.wpmud .dev-overlay.dismiss-report .wphb-dialog-content>p {\n color: #888888;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .dev-overlay.dismiss-report .wphb-dialog-footer {\n border: none;\n}\n\n.wpmud .wphb-basic-minification-modal .box,\n.wpmud .wphb-advanced-minification-modal .box,\n.wpmud .wphb-database-cleanup-modal .box {\n width: 400px !important;\n margin-left: -200px !important;\n padding: 40px 0 30px !important;\n}\n\n.wpmud .wphb-basic-minification-modal .title,\n.wpmud .wphb-advanced-minification-modal .title,\n.wpmud .wphb-database-cleanup-modal .title {\n display: none;\n}\n\n.wpmud .wphb-basic-minification-modal h1,\n.wpmud .wphb-advanced-minification-modal h1,\n.wpmud .wphb-database-cleanup-modal h1 {\n color: #333333;\n font-size: 22px;\n font-weight: bold;\n line-height: 30px;\n text-transform: none;\n}\n\n.wpmud .wphb-basic-minification-modal p,\n.wpmud .wphb-advanced-minification-modal p,\n.wpmud .wphb-database-cleanup-modal p {\n color: #666;\n font-size: 13px;\n line-height: 22px;\n margin: 0 30px;\n text-align: center;\n}\n\n.wpmud .wphb-basic-minification-modal img,\n.wpmud .wphb-advanced-minification-modal img {\n margin-left: 0;\n}\n\n.wpmud .wrap-wp-hummingbird .notice {\n margin: 15px 0 0;\n order: 10;\n width: 100%;\n}\n\n.wpmud .wrap-wp-hummingbird>.wphb-notice:not(.notice) {\n width: 600px;\n box-shadow: 0 5px 25px 0 rgba(0,0,0,0.15);\n border-radius: 0 0 5px 5px;\n padding: 10px 30px;\n position: absolute !important;\n z-index: 100;\n left: 50%;\n margin-left: -300px;\n top: 0;\n}\n\n.wpmud .wphb-notice:not(.notice) {\n border-radius: 5px;\n color: #333;\n font-family: \"Roboto\",Arial,sans-serif;\n font-size: 15px;\n font-weight: 400;\n line-height: 18px;\n padding: 15px 30px;\n position: relative;\n width: 100%;\n}\n\n.wpmud .wrap-wp-hummingbird>.wphb-notice.wphb-dash-settings-updated {\n position: fixed !important;\n top: 30px;\n margin-left: -210px;\n}\n\n.wpmud .wphb-notice.notice p {\n font-size: 14px;\n line-height: 1.5;\n margin: 10px 0;\n}\n\n.wpmud .wphb-notice p {\n color: #333;\n}\n\n.wpmud .wphb-notice:not(.notice) p,\n.wpmud .wphb-notice:not(.notice) span,\n.wpmud .wphb-notice ul,\n.wpmud .wphb-notice strong {\n margin: 0 0 10px -30px;\n padding: 0 0 0 30px;\n}\n\n.wpmud .wphb-notice:not(.notice) p:last-of-type {\n margin: 0;\n}\n\n.wpmud .wphb-notice .wphb-icon,\n.wpmud .wphb-notice .wphb-icon .wdv-icon {\n font-size: 22px;\n height: 22px;\n line-height: 22px;\n width: 22px;\n}\n\n.wpmud .wphb-notice.can-close .close {\n cursor: pointer;\n color: #333333;\n font-size: 12px;\n font-weight: bold;\n line-height: 36px;\n margin-left: 0;\n opacity: 0.5;\n text-transform: uppercase;\n}\n\n.wpmud .wphb-block-entry-third span.status-ok:before,\n.wpmud span.dash-cloudflare-connected-status:before,\n.wpmud .wphb-notice-error.can-close p:before,\n.wpmud .wphb-notice-success.can-close p:before,\n.wpmud .wphb-notice-success p:first-child:before,\n.wpmud .wphb-notice-error p:first-child:before,\n.wpmud .wphb-notice-warning p:first-child:before,\n.wpmud .wphb-notice-grey p:before,\n.wpmud .wphb-notice-grey-info p:before,\n.wpmud .wphb-notice-blue p:first-child:before,\n.wpmud .wphb-notice-blue-info p:first-child:before {\n font-family: \"Hummingbird\",Arial,sans-serif;\n font-size: 20px;\n vertical-align: middle;\n line-height: 20px;\n top: -2px;\n position: relative;\n margin-left: -30px;\n margin-right: 10px;\n}\n\n.wpmud .wphb-notice-success {\n background-color: #D1F1EA;\n}\n\n.wpmud .wphb-notice-error {\n background-color: #FFE5E9;\n}\n\n.wpmud .wphb-notice-warning {\n background-color: #FFF5D5;\n color: #333333;\n}\n\n.wpmud .wphb-notice-blue,\n.wpmud .wphb-notice-blue-info {\n background-color: #E1F6FF;\n margin-top: 30px;\n}\n\n.wpmud .wphb-notice-grey,\n.wpmud .wphb-notice-grey-info {\n background-color: #F2F2F2;\n margin-top: 10px;\n}\n\n.wpmud .cloudflare-step .wphb-notice-blue {\n margin-top: 0;\n}\n\n.wpmud .wphb-block-entry-third span.status-ok:before,\n.wpmud .wphb-notice-success p:before {\n content: '\\e903';\n color: #1ABC9C;\n}\n\n.wpmud .wphb-block-entry-third span.status-ok:before {\n margin-right: 0;\n line-height: 20px;\n}\n\n.wpmud .wphb-notice-error p:before {\n content: '\\e904';\n color: #FF7F83;\n}\n\n.wpmud .wphb-notice-warning p:before {\n content: '\\e902';\n color: #FECF2F;\n font-size: 18px;\n line-height: 18px;\n}\n\n.wpmud .wphb-notice-blue p:before {\n content: '\\e903';\n color: #17A8E3;\n}\n\n.wpmud .wphb-notice-blue-info p:before {\n content: '\\e902';\n color: #17A8E3;\n}\n\n.wpmud .wphb-notice-grey p:before,\n.wpmud .wphb-notice-grey-info p:before {\n content: '\\e902';\n color: #888888;\n}\n\n.wpmud .dev-overlay .wphb-notice-warning p {\n font-size: 14px;\n line-height: 22px;\n}\n\n.wpmud .wphb-heading-status-green {\n color: #1ABC9C;\n}\n\n.wpmud .wphb-heading-status {\n font-family: \"Roboto Condensed\",\"Roboto\",Arial,sans-serif;\n font-size: 30px;\n margin-top: 0;\n}\n\n@media only screen and (max-width: 783px) {\n .wpmud .wrap-wp-hummingbird>.wphb-notice {\n width: 85%;\n }\n}\n\n@media only screen and (max-width: 600px) {\n .wpmud .wrap-wp-hummingbird>.wphb-notice {\n width: 100%;\n top: 46px;\n margin-left: -251px;\n }\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .wphb-notice:not(.notice) {\n padding: 15px 20px;\n }\n}\n\n.wphb-pills {\n display: inline-block;\n background-color: #FFD000;\n color: #333333;\n border-radius: 15px;\n width: 39px;\n height: 26px;\n font-size: 12px;\n line-height: 26px;\n text-align: center;\n font-weight: 500;\n}\n\n.wpmud .box-title .wphb-pills {\n margin: 16px 0 0 10px;\n}\n\n.wphb-pills.grey {\n background-color: #F2F2F2;\n color: #666;\n}\n\n.wphb-pills.red {\n background-color: #FF6D6D;\n color: #fff;\n}\n\n.wphb-pills.green {\n background-color: #1ABC9C;\n color: #fff;\n}\n\n.wphb-pills.with-arrow:after {\n border: 8px solid transparent;\n content: '';\n height: 0;\n pointer-events: none;\n position: absolute;\n width: 0;\n z-index: 1;\n}\n\n.wphb-pills.with-arrow.right:after {\n border-left-color: #19B4CF;\n left: 50%;\n margin-top: -8px;\n top: 50%;\n}\n\n.wphb-pills.with-arrow.left:after {\n border-right-color: #19B4CF;\n right: 100%;\n margin-top: -8px;\n top: 50%;\n}\n\n.wphb-pills.with-arrow.right.grey:after {\n border-left-color: #F2F2F2;\n}\n\n.wphb-pills.with-arrow.left.grey:after {\n border-right-color: #F2F2F2;\n}\n\n.wphb-pills-group {\n border-collapse: collapse;\n border-spacing: 0;\n font-size: 0;\n display: inline-block;\n position: relative;\n}\n\n.wphb-pills-group.stacked .wphb-pills {\n font-size: 10px;\n line-height: 12px;\n height: 12px;\n text-align: left;\n max-width: 69px;\n color: #888888;\n display: block;\n background-color: transparent;\n}\n\n.wphb-pills-group.stacked .wphb-pills:last-child {\n color: #1ABC9C;\n background-color: transparent;\n}\n\n.wphb-pills-group.stacked .dev-icon.dev-icon-caret_down {\n color: #1ABC9C;\n margin-left: 7px;\n}\n\n.wphb-pills-group .wphb-pills {\n border-radius: 0;\n width: 80px;\n line-height: 30px;\n height: 30px;\n margin: 0;\n}\n\n.wphb-pills-group .wphb-pills:first-child {\n border-radius: 5px 0 0 5px !important;\n}\n\n.wphb-pills-group .wphb-pills:last-child {\n background-color: #17A8E3;\n color: #FFFFFF;\n border-radius: 0 5px 5px 0 !important;\n}\n\n.wpmud .dev-list-stats .wphb-pills-group {\n font-size: 0;\n line-height: 1em;\n}\n\n@media only screen and (max-width: 600px) {\n .wpmud .dev-box .box-title .wphb-pills {\n margin: 4px 0 0 10px;\n }\n\n .wphb-pills {\n margin: 0 0 0 10px;\n }\n\n .wphb-pills-group .wphb-pills:first-child {\n border-radius: 5px 5px 0 0 !important;\n }\n\n .wphb-pills-group .wphb-pills:last-child {\n border-radius: 0 0 5px 5px !important;\n }\n}\n\n@media only screen and (max-width: 480px) {\n .wphb-pills-group {\n border-collapse: inherit;\n border-spacing: inherit;\n }\n\n .wphb-pills.with-arrow.right:after,\n .wphb-pills.with-arrow.left:after {\n border-top-color: #19B4CF;\n margin-top: 0;\n margin-left: -8px;\n top: 50%;\n }\n\n .wphb-pills.with-arrow.right:after {\n border-left-color: transparent;\n left: 50%;\n }\n\n .wphb-pills.with-arrow.left:after {\n border-right-color: transparent;\n right: 50%;\n }\n\n .wphb-pills.with-arrow.right.grey:after {\n border-top-color: #eee;\n border-left-color: transparent;\n }\n\n .wphb-pills.with-arrow.left.grey:after {\n border-top-color: #eee;\n border-right-color: transparent;\n }\n}\n\n.wpmud .wphb-border-frame {\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n margin: 10px 0 0 !important;\n}\n\n.wpmud .wphb-border-frame .table-header,\n.wpmud .wphb-border-frame .table-row {\n display: flex;\n justify-content: space-between;\n padding: 15px 80px 15px 30px;\n}\n\n.wpmud .wphb-border-frame .table-header {\n color: #333333;\n font-size: 13px;\n font-weight: bold;\n border-bottom: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-border-frame .table-row {\n border-bottom: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-border-frame .table-row:last-child {\n border-bottom: 0;\n}\n\n.wpmud .wphb-border-frame .list-table>thead>tr>th {\n color: #333333;\n font-size: 13px;\n padding: 8px 0;\n}\n\n.wpmud .wphb-border-frame .list-table>thead>tr>th:first-child {\n padding: 27px 30px;\n}\n\n.wpmud .wphb-border-frame .list-table>tbody>tr>td:first-child {\n padding-left: 30px;\n}\n\n@media only screen and (max-width: 783px) {\n .wpmud .wphb-border-frame {\n border: 0;\n }\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .wphb-border-frame .table-header,\n .wpmud .wphb-border-frame .table-row {\n padding: 15px 0;\n }\n}\n\n.wpmud .wphb-disabled-overlay {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: 10;\n background-color: rgba(242,242,242,0.5);\n}\n\n.wpmud .settings-form span.sub,\n.wpmud .settings-form span.desc {\n display: block;\n margin: 10px 0 0;\n font-size: 13px;\n color: #888;\n line-height: 22px;\n}\n\n.wpmud .settings-form span.sub,\n.wpmud .settings-form ol>li {\n font-size: 13px;\n color: #888;\n line-height: 22px;\n margin: 4px 0 0;\n}\n\n.wpmud .settings-form span.dash-form-title,\n.wpmud .settings-form span.sub {\n display: block;\n font-size: 13px;\n color: #888;\n line-height: 22px;\n margin: 10px 0 0;\n}\n\n.wpmud .settings-form span.dash-form-title {\n margin-bottom: 15px;\n font-weight: 500;\n}\n\n.wpmud .sui-box-settings-row .sui-box-settings-col-2 span.sub {\n margin-left: 49px;\n}\n\n.wpmud .settings-form ol {\n margin-left: 15px;\n}\n\n.wpmud .sui-box-settings-row textarea {\n height: 180px;\n}\n\n.wpmud .box-advanced-general textarea,\n.wpmud .box-minification-tools textarea {\n margin-top: 0;\n}\n\n.wpmud .box-minification-tools textarea {\n height: 400px;\n max-width: 100%;\n margin-bottom: 0;\n}\n\n.wpmud .settings-form span.dash-form-title {\n margin-bottom: 15px;\n font-weight: 500;\n}\n\n.wpmud .wphb-dash-table-row span.sub {\n margin: 0;\n}\n\n.wpmud .settings-form.dash-form>label,\n.wpmud .settings-form .col-two-third>label {\n display: inline-block;\n padding: 2px 10px 0;\n color: #666;\n line-height: 30px;\n margin: 0;\n}\n\n.wpmud .settings-form .wphb-border-frame label {\n margin-top: 25px;\n padding: 0;\n color: #888888;\n font-size: 13px;\n}\n\n.wpmud .settings-form .wphb-border-frame small {\n display: block;\n font-size: 13px;\n color: #888;\n line-height: 22px;\n}\n\n.wpmud .settings-form.disabled {\n background-color: rgba(242,242,242,0.5) !important;\n}\n\n.wpmud .settings-form.disabled>* {\n opacity: 0.5;\n}\n\n.wpmud .settings-form input[type='radio'] {\n box-shadow: inset 0 1px 2px transparent;\n border: 1px solid #E6E6E6;\n background-color: #F8F8F8;\n}\n\n.wpmud .settings-form input[type='radio']:checked {\n border: 1px solid #17A8E3;\n background-color: #17A8E3;\n}\n\n.wpmud .settings-form input[type='radio']:checked:before {\n width: 8px;\n height: 8px;\n margin: 3px;\n background-color: #ffffff;\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .settings-form input[type='radio']:checked:before {\n margin: 5px;\n }\n}\n\n.wpmud .settings-form input[type='radio']:checked+label {\n color: #333333;\n}\n\n.wpmud .settings-form input[type='radio']+label {\n display: inline-block;\n margin-top: 0;\n font-size: 15px;\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .settings-form input[type='radio'] {\n height: 20px;\n width: 20px;\n }\n}\n\n.wpmud div[class^=\"box-dashboard-\"] .sui-box-title:before {\n font-family: \"Hummingbird\",Arial,sans-serif;\n color: #333333;\n float: left;\n font-size: 20px;\n margin-right: 10px;\n line-height: 30px;\n}\n\n.wpmud div[class^=\"box-dashboard-performance\"] .sui-box-title:before {\n content: '\\e90c';\n}\n\n.wpmud div[class^=\"box-dashboard-minification\"] .sui-box-title:before {\n content: '\\e90b';\n}\n\n.wpmud div[class^=\"box-dashboard-browser\"] .sui-box-title:before {\n content: '\\e905';\n}\n\n.wpmud div[class^=\"box-dashboard-gzip\"] .sui-box-title:before {\n content: '\\e907';\n}\n\n.wpmud div[class^=\"box-dashboard-uptime\"] .sui-box-title:before {\n content: '\\e900';\n}\n\n.wpmud div[class^=\"box-dashboard-smush\"] .sui-box-title:before {\n content: '\\e90f';\n}\n\n.wpmud div[class^=\"box-dashboard-cloudflare\"] .sui-box-title:before {\n content: '\\e906';\n}\n\n.wpmud div[class^=\"box-dashboard-reports\"] .sui-box-title:before {\n content: '\\e90d';\n}\n\n.wpmud div[class^=\"box-dashboard-caching-gravatar\"] .sui-box-title:before {\n content: '\\e913';\n}\n\n.wpmud div[class^=\"box-dashboard-caching-page\"] .sui-box-title:before {\n content: '\\e914';\n}\n\n.wpmud div[class^=\"box-dashboard-advanced-tools\"] .sui-box-title:before {\n content: '\\5a';\n}\n\n.wpmud div[class^=\"box-dashboard-\"] .sui-box-footer .sui-button i {\n margin-right: 5px;\n}\n\n.wpmud .box-dashboard-welcome.sui-summary {\n background-image: url(\"../image/hb-graphic-dash-top@2x.png\");\n}\n\n.wpmud .box-dashboard-reports-no-membership,\n.wpmud .box-dashboard-uptime-no-membership,\n.wpmud .box-dashboard-smush-no-membership .sui-box-body,\n.wpmud .box-dashboard-browser-caching-module .sui-box-body,\n.wpmud .box-reporting-summary .wphb-reporting-no-membership,\n.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {\n background: #fff no-repeat 30px 100%;\n padding-bottom: 30px !important;\n}\n\n.wpmud .box-dashboard-reports-no-membership .sui-box-body,\n.wpmud .box-dashboard-uptime-no-membership .sui-box-body {\n padding: 30px 30px 0 !important;\n}\n\n.wpmud .box-dashboard-reports-no-membership {\n background-image: url(\"../image/hb-graphic-upsell-reports.png\");\n}\n\n.wpmud .box-dashboard-uptime-no-membership {\n background-image: url(\"../image/hb-graphic-upsell-uptime.png\");\n}\n\n.wpmud .box-dashboard-smush-no-membership .sui-box-body {\n background-image: url(\"../image/smush-share-widget.png\");\n}\n\n.wpmud .box-dashboard-browser-caching-module .sui-box-body {\n background-image: url(\"../image/graphic-hb-cf-sell@2x.png\");\n background-size: 107px 148px;\n}\n\n.wpmud .box-reporting-summary .wphb-reporting-no-membership {\n background-image: url(\"../image/hummingbird-upsell-minify.png\");\n background-size: 118px 126px;\n}\n\n.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {\n background-image: url(\"../image/hb-graphic-db-upsell@1x.png\");\n background-size: 100px 126px;\n}\n\n.wpmud .box-dashboard-browser-caching-module .sui-box-body.no-background-image {\n background-image: none;\n}\n\n@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {\n .wpmud .box-dashboard-reports-no-membership,\n .wpmud .box-dashboard-uptime-no-membership,\n .wpmud .box-dashboard-smush-no-membership .sui-box-body {\n background-size: 107px 148px;\n }\n\n .wpmud .box-dashboard-reports-no-membership {\n background-image: url(\"../image/hb-graphic-upsell-reports@2x.png\");\n }\n\n .wpmud .box-dashboard-uptime-no-membership {\n background-image: url(\"../image/hb-graphic-upsell-uptime@2x.png\");\n }\n\n .wpmud .box-dashboard-smush-no-membership .sui-box-body {\n background-image: url(\"../image/smush-share-widget@2x.png\");\n }\n\n .wpmud .box-reporting-summary .wphb-reporting-no-membership {\n background-image: url(\"../image/hummingbird-upsell-minify@2x.png\");\n }\n\n .wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {\n background-image: url(\"../image/hb-graphic-db-upsell@2x.png\");\n }\n}\n\n.wpmud .wphb-dash-table-header {\n color: #333333;\n font-size: 13px;\n font-weight: bold;\n line-height: 30px;\n display: flex;\n}\n\n@media (max-width: 783px) {\n .wpmud .box-dashboard-performance-module .sui-accordion.sui-table th {\n padding: 0 15px 0 20px;\n }\n}\n\n.wpmud .box-dashboard-performance-module .sui-accordion th {\n color: #333333;\n font-size: 13px;\n font-weight: bold;\n line-height: 30px;\n padding-top: 0;\n padding-bottom: 0;\n}\n\n.wpmud .box-dashboard-performance-module .sui-accordion .sui-accordion-item:hover {\n cursor: default;\n background-color: transparent;\n}\n\n@media (max-width: 783px) {\n .wpmud .box-dashboard-performance-module .sui-accordion .sui-accordion-item .sui-button {\n margin-right: 20px;\n }\n}\n\n.wpmud .box-dashboard-performance-module .sui-accordion td.sui-accordion-item-title {\n font-size: 13px;\n color: #333333;\n font-weight: 500;\n line-height: 16px;\n}\n\n.wpmud .box-dashboard-performance-module .sui-accordion td.sui-accordion-item-title i {\n font-size: 16px;\n}\n\n.wpmud .box-dashboard-performance-module .sui-accordion:after {\n margin-bottom: 0;\n}\n\n.wpmud .wphb-border-frame .wphb-caching-summary-item-type,\n.wpmud .wphb-border-frame .wphb-gzip-summary-item-type,\n.wpmud .wphb-dash-table-row>div:first-child {\n display: flex;\n align-items: center;\n align-content: center;\n}\n\n.wpmud .wphb-dash-table-row {\n display: flex;\n align-items: center;\n align-content: center;\n justify-content: space-between;\n height: 60px;\n border-top: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-dash-table-row:last-child {\n margin-bottom: -10px;\n}\n\n.wpmud .wphb-dash-table-header>span:first-child,\n.wpmud .wphb-dash-table-row>div:first-child {\n flex-basis: 50% !important;\n text-align: left;\n}\n\n.wpmud .wphb-dash-table-row>div:first-child {\n font-size: 13px;\n color: #333333;\n font-weight: 500;\n line-height: 16px;\n}\n\n.wpmud .wphb-dash-table-header>span,\n.wpmud .wphb-dash-table-row>div {\n text-align: center;\n}\n\n.wpmud .wphb-dash-table-header>span:last-child,\n.wpmud .wphb-dash-table-row>div:last-child {\n text-align: right;\n}\n\n.wpmud .wphb-dash-table.two-columns>.wphb-dash-table-header>span,\n.wpmud .wphb-dash-table.two-columns>.wphb-dash-table-row>div {\n flex-basis: 50%;\n}\n\n.wpmud .wphb-dash-table.three-columns>.wphb-dash-table-header>span,\n.wpmud .wphb-dash-table.three-columns>.wphb-dash-table-row>div {\n flex-basis: 25%;\n}\n\n.wpmud .sui-box .status-text {\n color: #888888;\n font-size: 13px;\n line-height: 22px;\n margin-top: 5px;\n}\n\n#wphb-box-dashboard-cloudflare .wphb-block-entry .wphb-block-entry-content {\n padding-top: 0;\n}\n\n.wpmud .wphb-dashboard-caching-cloudflare-box p {\n margin-top: 30px;\n margin-bottom: 20px;\n}\n\n.wpmud #wphb-box-dashboard-cloudflare .cloudflare-step form label {\n text-align: left;\n font-weight: 400;\n padding-left: 0;\n padding-right: 0;\n}\n\n.wpmud span.dash-cloudflare-connected-status:before {\n color: #17A8E3;\n content: '\\e903';\n font-size: 16px;\n margin-right: 8px;\n}\n\n.wpmud .box-dashboard-welcome .dev-list>li:last-child .list-detail,\n.wpmud .box-dashboard-uptime .wphb-dash-table-row>div:last-child,\n.wpmud .box-dashboard-minification-module .wphb-dash-table-row>div:last-child {\n font-size: 18px;\n font-family: \"Roboto Condensed\",\"Roboto\",Arial,sans-serif;\n color: #666666;\n}\n\n.wpmud .box-dashboard-minification-module .wphb-pills {\n font-weight: bold;\n}\n\n.wpmud .wphb-cf-notice p,\n.wpmud .wphb-upsell-free-message p {\n position: relative;\n border-radius: 4px;\n background-color: #E1F6FF;\n padding: 20px 30px;\n margin-left: -140px;\n color: #333333;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-upsell-free-message p:after {\n position: absolute;\n top: 43%;\n left: 0;\n margin-left: -7px;\n content: '';\n width: 0;\n height: 0;\n border-top: 7px solid transparent;\n border-bottom: 7px solid transparent;\n border-right: 7px solid #E1F6FF;\n}\n\n.wpmud .wphb-cf-notice a,\n.wpmud .wphb-upsell-free-message a {\n color: #333333;\n text-decoration: underline;\n font-weight: 500;\n}\n\n.wpmud .box-dashboard-caching-gravatar-module .wphb-notice,\n.wpmud .box-dashboard-smush .content .wphb-notice,\n.wpmud .box-dashboard-caching-page-module .content .wphb-notice,\n.wpmud .box-dashboard-browser-caching-module .content .wphb-notice,\n.wpmud .box-dashboard-gzip-module .content .wphb-notice,\n.wpmud .box-dashboard-smush-no-membership .content .wphb-notice {\n margin-top: 20px !important;\n}\n\n.wpmud .box-dashboard-smush-no-membership .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 45px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status {\n background-color: #F8F8F8;\n height: 140px;\n width: 100%;\n position: relative;\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n margin-bottom: 10px;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status:hover {\n background-color: #f2f2f2;\n cursor: pointer;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status i {\n color: #666666;\n font-size: 24px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status strong {\n font-family: \"Roboto Condensed\",\"Roboto\",Arial,sans-serif;\n color: #666666;\n font-weight: bold;\n margin-top: 10px;\n font-size: 13px;\n line-height: 20px;\n text-transform: uppercase;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status .corner {\n position: absolute;\n top: 0;\n right: 0;\n color: #1ABC9C;\n font-weight: bold;\n font-family: \"Roboto Condensed\",\"Roboto\",Arial,sans-serif;\n padding-right: 6px;\n padding-top: 10px;\n text-transform: uppercase;\n font-size: 13px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner.grey .corner i {\n color: #888888;\n font-size: 16px;\n margin-right: 4px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner:before {\n content: '';\n position: absolute;\n top: 0;\n right: 0;\n border: solid transparent;\n border-top-right-radius: 7px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner:before {\n border-width: 30px;\n border-right-color: #D1F1EA;\n border-top-color: #D1F1EA;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner.grey:before {\n border-right-color: #E6E6E6;\n border-top-color: #E6E6E6;\n}\n\n.wpmud .box-dashboard-advanced-tools .wphb-dash-table span {\n color: #888;\n font-size: 13px;\n vertical-align: top;\n}\n\n.wpmud .box-dashboard-advanced-tools .wphb-dash-table span.no-issues:before {\n font-family: \"Hummingbird\",Arial,sans-serif;\n font-size: 16px;\n margin-right: 5px;\n color: #1abc9c;\n content: \"\\E903\";\n}\n\n.wpmud #wphb-cross-sell-footer>div {\n width: 100%;\n text-align: center;\n border-bottom: 1px solid #E6E6E6;\n line-height: 0.1em;\n margin: 10px 0 40px;\n}\n\n.wpmud #wphb-cross-sell-footer>div>span {\n color: #9A9A9A;\n background-color: #F4F4F4;\n padding: 0 30px;\n font-size: 16px;\n top: 8px;\n}\n\n.wpmud #wphb-cross-sell-footer h3,\n.wpmud .wphb-cross-sell-bottom h3 {\n color: #333333;\n font-size: 22px;\n font-weight: bold;\n line-height: 30px;\n text-transform: none;\n}\n\n.wpmud .wphb-cross-sell-modules .wphb-content {\n text-align: center;\n border-radius: 0 0 5px 5px;\n background-color: #fff;\n box-shadow: 0 2px 0 0 #EAEAEA;\n padding: 30px;\n}\n\n.wpmud .wphb-cross-sell-modules .wphb-content h3 {\n color: #333333;\n font-size: 18px;\n font-weight: bold;\n line-height: 30px;\n text-transform: none;\n margin-top: 0;\n min-height: 60px;\n}\n\n.wpmud .wphb-cross-sell-modules .wphb-content p {\n color: #888888;\n font-size: 13px;\n line-height: 20px;\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-cross-smush,\n.wpmud .wphb-cross-defender,\n.wpmud .wphb-cross-crawl {\n min-height: 150px;\n border-radius: 5px 5px 0 0;\n}\n\n.wpmud .wphb-cross-smush {\n background: url(\"../image/plugins-smush.jpg\") center;\n background-size: cover;\n}\n\n.wpmud .wphb-cross-defender {\n background: url(\"../image/plugins-defender.jpg\") center;\n background-size: cover;\n}\n\n.wpmud .wphb-cross-crawl {\n background: url(\"../image/plugins-crawl.jpg\") center;\n background-size: cover;\n}\n\n.wpmud .wphb-cross-smush>span,\n.wpmud .wphb-cross-defender>span,\n.wpmud .wphb-cross-crawl>span {\n width: 56px;\n height: 56px;\n display: block;\n border: 3px solid #fff;\n border-radius: 50%;\n position: relative;\n top: 80px;\n left: 15px;\n box-shadow: 0 1px 10px 0 rgba(0,0,0,0.25);\n}\n\n.wpmud .wphb-cross-smush>span {\n background: url(\"../image/plugins-smush-icon.png\") no-repeat center center;\n background-size: 50px 50px;\n}\n\n@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {\n .wpmud .wphb-cross-smush>span {\n background-image: url(\"../image/plugins-smush-icon@2x.png\");\n }\n}\n\n.wpmud .wphb-cross-defender>span {\n background: url(\"../image/plugins-defender-icon.png\") no-repeat center center;\n background-size: 50px 50px;\n}\n\n@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {\n .wpmud .wphb-cross-defender>span {\n background-image: url(\"../image/plugins-defender-icon@2x.png\");\n }\n}\n\n.wpmud .wphb-cross-crawl>span {\n background: url(\"../image/plugins-crawl-icon.png\") no-repeat center center;\n background-size: 50px 50px;\n}\n\n@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {\n .wpmud .wphb-cross-crawl>span {\n background-image: url(\"../image/plugins-crawl-icon@2x.png\");\n }\n}\n\n.wpmud .wphb-cross-sell-modules a:not(.disabled):after {\n font-family: \"Hummingbird\",Arial,sans-serif;\n content: '\\af';\n margin-left: 5px;\n}\n\n.wpmud .wphb-cross-sell-modules .col-third:nth-child(3) a.disabled {\n border-radius: 13px !important;\n background-color: #F2F2F2;\n}\n\n.wpmud .wphb-cross-sell-bottom {\n text-align: center;\n margin-top: 50px;\n}\n\n.wpmud .wphb-cross-sell-bottom p {\n max-width: 500px;\n margin: 20px auto 30px;\n}\n\n.wpmud .wphb-cross-sell-bottom img {\n margin: 30px auto 0;\n}\n\n@media screen and (min-width: 1550px) {\n .wpmud .box-dashboard-reports-no-membership .wphb-block-entry .row {\n padding-bottom: 20px;\n }\n\n .wpmud .box-dashboard-uptime-no-membership .content p {\n padding-bottom: 20px;\n }\n\n .wpmud .box-dashboard-smush-no-membership .buttons {\n padding-bottom: 20px;\n }\n}\n\n@media only screen and (min-width: 1545px) {\n .wpmud .wphb-cross-sell-modules>.col-third h3 {\n height: auto;\n }\n}\n\n@media only screen and (max-width: 1200px) {\n .wpmud .box-dashboard-smush-no-membership .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 65px;\n }\n}\n\n@media only screen and (max-width: 1100px) {\n .wpmud .box-dashboard-uptime-no-membership .wphb-block-entry-image,\n .wpmud .box-dashboard-reports-no-membership .wphb-block-entry-image {\n display: none;\n }\n\n .wpmud .wphb-cf-notice p,\n .wpmud .wphb-upsell-free-message p {\n margin-left: auto;\n margin-top: 30px;\n }\n\n .wpmud .wphb-cf-notice p:after,\n .wpmud .wphb-upsell-free-message p:after {\n display: none;\n }\n}\n\n@media only screen and (max-width: 960px) {\n .box-dashboard-browser-caching-module .box-content {\n background-image: none;\n }\n\n .wpmud .row.wphb-cross-sell-modules .col-third {\n display: flex;\n width: 100%;\n padding: 0 0 30px;\n margin-top: 0;\n }\n\n .wpmud .wphb-cross-sell-modules .col-third:last-child {\n padding: 0;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"] {\n width: 30%;\n border-radius: 5px 0 0 5px;\n box-shadow: 0 2px 0 0 #EAEAEA;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"]>span {\n top: 60%;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content {\n width: 70%;\n text-align: left;\n border-radius: 0 5px 5px 0;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content h3 {\n min-height: auto;\n text-align: left;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content p {\n margin-bottom: 10px;\n }\n}\n\n@media only screen and (max-width: 783px) {\n .wpmud .box-dashboard-performance-module .box-content .with-padding {\n padding: 30px;\n }\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .box-dashboard-minification-module .wphb-pills {\n display: block;\n }\n\n .wpmud .box-dashboard-performance-module .wphb-score-result-label {\n margin-left: 3px;\n margin-right: 5px;\n }\n\n .wpmud .box-dashboard-performance-module .sui-accordion .sui-button-ghost {\n padding: 5px 6px 7px !important;\n }\n\n .wpmud .box-dashboard-performance-module .box-content .with-padding {\n padding: 15px 20px;\n }\n\n .wpmud .box-dashboard-performance-module .wphb-dash-table-header,\n .wpmud .box-dashboard-performance-module .wphb-dash-table-row {\n padding: 0 20px;\n }\n\n .wpmud .box-dashboard-smush .buttons {\n margin-top: 15px;\n }\n\n .wpmud .wphb-score.wphb-score-have-label {\n width: 65px;\n }\n\n .wpmud .sui-box .status-text {\n line-height: 15px;\n margin-top: 0;\n padding-left: 10px;\n word-wrap: break-word;\n max-width: 175px;\n }\n\n .wpmud .wphb-cf-notice p,\n .wpmud .wphb-upsell-free-message p {\n padding: 15px 20px;\n margin-top: 15px;\n }\n\n .wpmud .row.wphb-cross-sell-modules .col-third {\n display: block;\n padding: 0 0 15px;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"],\n .wpmud .wphb-cross-sell-modules .wphb-content {\n width: 100%;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"] {\n min-height: 100px;\n height: 100px;\n border-radius: 5px 5px 0 0;\n box-shadow: none;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content {\n border-radius: 0 0 5px 5px;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content,\n .wpmud .wphb-cross-sell-modules .wphb-content h3 {\n text-align: center;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content p {\n margin-bottom: 20px;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"]>span {\n top: 60px;\n left: calc( 50% - 28px);\n }\n}\n\n.wpmud .box-performance-welcome.sui-summary {\n background-image: url(\"../image/graphic-hb-minify-summary@2x.png\");\n}\n\n.wpmud .performance-report-table .wpdui-btn {\n display: inline-block;\n margin: 10px 0 20px;\n text-transform: uppercase;\n}\n\n.wpmud .performance-report-table .wpdui-btn:hover {\n color: #ffffff;\n}\n\n.wpmud .sui-dismissed .sui-circle-score svg circle:last-child {\n stroke: #AAAAAA;\n}\n\n.wpmud .sui-accordion-item.sui-dismissed {\n border-left: 2px solid #AAAAAA;\n}\n\n.wpmud .sui-button.wphb-disabled-test:last-child {\n margin-right: 10px;\n}\n\n.wpmud .performance-report-table a,\n.wpmud .performance-report-table a:hover {\n color: #17A8E3;\n overflow-wrap: break-word;\n word-wrap: break-word;\n word-break: break-all;\n -ms-hyphens: auto;\n -moz-hyphens: auto;\n -webkit-hyphens: auto;\n hyphens: auto;\n}\n\n.wpmud .performance-report-table p,\n.wpmud .performance-report-table ol li {\n font-size: 13px !important;\n color: #888888;\n line-height: 22px;\n}\n\n.wpmud .performance-report-table ol>p {\n margin-left: -30px;\n margin-bottom: 15px;\n}\n\n.wpmud .performance-report-table>thead>tr>th:first-child {\n padding-left: 30px;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item:hover td {\n cursor: pointer;\n border-bottom: 0 !important;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-score {\n width: 137px;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-type {\n color: #888888;\n font-size: 13px;\n transition: color .3s;\n width: 130px;\n}\n\n.wpmud .wphb-performance-report-item-type:first-letter {\n text-transform: capitalize;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item:hover .wphb-performance-report-item-type {\n color: #333333;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-cta {\n text-align: right;\n width: 225px;\n}\n\n.wpmud .wphb-performance-report-item .trigger-additional-content {\n color: #888888;\n cursor: pointer;\n display: inline-block;\n font-size: 14px;\n line-height: 1em;\n height: 14px;\n margin: 8px 30px 8px 15px;\n transition: color .3s;\n vertical-align: middle;\n}\n\n.wpmud .wphb-performance-report-item .trigger-additional-content .dev-icon-caret_down:before {\n display: inline-block;\n transition: transform 0.5s;\n transform: rotate(0);\n}\n\n.wpmud .wphb-performance-report-item-opened .trigger-additional-content .dev-icon-caret_down:before {\n transform: rotate(-180deg);\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-opened,\n.wpmud .wphb-table.performance-report-table .wphb-performance-report-item-additional-content:hover,\n.wpmud .wphb-table.performance-report-table .wphb-performance-report-item-opened:hover {\n background: #F8F8F8;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-additional-content {\n background: #F8F8F8;\n display: none;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-additional-content-opened {\n display: table-row;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-additional-content-opened>td {\n border-top: 0 !important;\n}\n\n.wpmud .wphb-performance-report-item-additional-content-inner {\n padding: 0 !important;\n}\n\n.wpmud .sui-box-performance-report-additional-content h4:first-child {\n margin-top: 0;\n}\n\n.wpmud .sui-box-performance-report-additional-content h4,\n.wpmud .sui-box-performance-report-additional-content h5 {\n font-family: 'Roboto', sans-serif;\n color: #333333;\n font-size: 13px;\n text-transform: none;\n line-height: 23px;\n margin: 20px 0 20px;\n text-align: left;\n}\n\n.wphb-score {\n display: inline-block;\n position: relative;\n}\n\n.wphb-score-type-circle {\n border-radius: 100%;\n height: 30px;\n width: 30px;\n}\n\n.wphb-score-type-circle.large {\n height: 80px;\n width: 80px;\n}\n\n.wphb-score-type-circle .wphb-score-graph-circle {\n stroke: #E5E5E5;\n stroke-dashoffset: 80;\n stroke-width: 5px;\n -moz-transition: stroke-dashoffset 1s linear;\n -webkit-transition: stroke-dashoffset 1s linear;\n transition: stroke-dashoffset 1s linear;\n}\n\n.wphb-score-type-circle.large .wphb-score-graph-circle {\n stroke-dashoffset: 219.8;\n stroke-width: 10px;\n}\n\n.wphb-score-type-circle .wphb-score-graph-result {\n transform: rotate(-80deg) translateX(-27px) translateY(2.5px);\n -moz-transform: rotate(-80deg) translateX(-27px) translateY(2.5px);\n -webkit-transform: rotate(-80deg) translateX(-27px) translateY(2.5px);\n}\n\n.wphb-score-type-circle.large .wphb-score-graph-result {\n transform: rotate(-80deg) translateX(-72.5px) translateY(6.5px);\n -moz-transform: rotate(-80deg) translateX(-72.5px) translateY(6.5px);\n -webkit-transform: rotate(-80deg) translateX(-72.5px) translateY(6.5px);\n}\n\n.wpmud .wphb-performance-report-item-score,\n.wpmud .wphb-button-label,\n.wpmud .wphb-score-result {\n cursor: pointer;\n position: relative;\n}\n\n.wpmud .wrap-wphb-caching .list-results,\n.wpmud .wrap-wphb-performance .list-results {\n max-height: 200px;\n overflow-y: scroll;\n}\n\n.wpmud .wrap-wphb-performance .recipient {\n margin-bottom: 10px;\n padding: 5px 10px;\n}\n\n.wpmud .wrap-wphb-performance .recipient:hover {\n border-radius: 4px;\n background-color: #F8F8F8;\n}\n\n.wpmud .wrap-wphb-performance .recipient,\n.wpmud .wrap-wphb-performance .recipient .name,\n.wpmud .wrap-wphb-performance .add-recipient {\n display: flex;\n flex-flow: row nowrap;\n justify-content: space-between;\n align-items: center;\n align-content: center;\n}\n\n.wpmud .wrap-wphb-performance .recipient img {\n -webkit-border-radius: 50px;\n -moz-border-radius: 50px;\n border-radius: 50px;\n width: 30px;\n height: 30px;\n margin-right: 10px;\n display: inline-block;\n vertical-align: middle;\n}\n\n.wpmud .wrap-wphb-performance .recipient .name {\n color: #333333;\n font-weight: 500;\n}\n\n.wpmud .wrap-wphb-performance .recipient a>i {\n color: #888888;\n}\n\n.wpmud .wrap-wphb-performance .recipient:hover a>i {\n color: #333333;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient {\n margin-top: 15px;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient>* {\n margin-bottom: 0;\n border-radius: 0;\n border: 1px solid #E6E6E6;\n font-weight: normal;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient .wdv-icon-plus {\n color: #FFFFFF;\n font-size: 20px;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient>input::placeholder {\n color: #AAAAAA;\n font-weight: 400;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient #wphb-first-name {\n border-radius: 4px 0 0 4px;\n border-right: 0;\n background-color: #F8F8F8;\n margin: 0;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient #wphb-username-search {\n background-color: #F8F8F8;\n margin: 0;\n}\n\n.wpmud .wrap-wphb-performance .wphb-tag {\n -webkit-border-radius: 16px;\n -moz-border-radius: 16px;\n border-radius: 16px;\n font-size: 13px;\n padding: 4px 16px;\n color: #fff;\n text-transform: uppercase;\n}\n\n.wpmud .wrap-wphb-performance .wphb-tag.tag-generic {\n background: #E6E6E6;\n color: #333;\n}\n\n.wpmud .box-reporting-summary .settings-form.disabled {\n position: relative;\n}\n\n.wpmud .box-reporting-summary .wphb-block-entry-content,\n.wpmud .box-reporting-summary .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 0;\n}\n\n.wpmud .list-table>tbody>tr>td.wphb-performance-report-item-type.disabled {\n padding-right: 30px;\n}\n\n.wpmud .sui-box-performance-report-additional-content.disable-buttons a.wpdui-btn,\n.wpmud .sui-box-performance-report-additional-content.disable-buttons a.button {\n display: none;\n}\n\n@media only screen and (max-width: 1200px) {\n .wpmud .performance-report-table .wphb-performance-report-item-score,\n .wpmud .performance-report-table .wphb-performance-report-item-type {\n width: 115px;\n }\n\n .wpmud .performance-report-table .wphb-performance-report-item-cta {\n width: 180px;\n }\n\n .wpmud .box-reporting-summary .box-footer .wphb-block-entry-content {\n margin-top: 0;\n }\n}\n\n@media only screen and (max-width: 1100px) {\n .wpmud .performance-report-table .wphb-performance-report-item-type {\n width: 105px;\n }\n\n .wpmud .performance-report-table .wphb-performance-report-item-cta {\n width: 165px;\n }\n\n .wpmud .performance-report-table .wphb-performance-report-item-score {\n width: 105px;\n padding-left: 20px !important;\n }\n}\n\n@media only screen and (max-width: 783px) {\n .wpmud .performance-report-table th,\n .wpmud .performance-report-table td {\n width: 70% !important;\n }\n\n .wpmud .wphb-performance-report-heading.wphb-performance-report-heading-type,\n .wpmud .wphb-performance-report-item-type,\n .wpmud .wphb-performance-report-item-cta>button {\n display: none !important;\n }\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .wrap-wphb-performance .recipient,\n .wpmud .wrap-wphb-performance .recipient .name,\n .wpmud .wrap-wphb-performance .add-recipient {\n flex-flow: row wrap;\n }\n\n .wpmud .wrap-wphb-performance .add-recipient>button,\n .wpmud .wrap-wphb-performance .add-recipient #wphb-first-name {\n border-radius: 0 !important;\n margin-bottom: 5px;\n border: 1px solid #E6E6E6;\n }\n\n .wpmud .wrap-wphb-performance .add-recipient>button {\n margin-top: 10px !important;\n }\n\n .wpmud .performance-report-table {\n margin-top: 0;\n }\n\n .wpmud .wphb-performance-report-item .trigger-additional-content {\n margin-right: 20px;\n }\n\n .wpmud .sui-box-performance-report-additional-content {\n padding: 15px 20px;\n }\n}\n\n.wpmud .wphb-caching-error {\n text-align: left;\n}\n\n.wpmud .wphb-caching-error a {\n text-decoration: underline;\n}\n\n.wpmud .wrap-wphb-caching .wphb-spinner {\n float: none;\n background-size: 15px 15px;\n}\n\n.wpmud .wphb-caching-cloudflare-box>p {\n margin: 0 0 20px 0;\n}\n\n.wpmud .box-caching-enable .buttons {\n margin-top: -20px;\n}\n\n.wpmud .caching-table {\n margin: 30px 0 0;\n}\n\n.wpmud .wphb-caching-summary-heading,\n.wpmud .box-gzip-summary .list-label {\n text-transform: none !important;\n color: #333333;\n font-size: 13px;\n}\n\n.wpmud #cloudflare-how-to-title,\n.wpmud #cloudflare-how-to {\n text-align: left;\n}\n\n.wpmud #cloudflare-how-to a {\n font-weight: 500;\n text-decoration: underline;\n color: inherit;\n}\n\n.wpmud #cloudflare-info {\n clear: both;\n}\n\n.wpmud #cloudflare-info.wphb-notice {\n margin-top: 30px;\n}\n\n.wpmud .cloudflare-submit {\n margin-bottom: 0;\n}\n\n.wpmud #cloudflare-zone .clear {\n padding: 0;\n}\n\n.wpmud #cloudflare-zone label {\n margin-bottom: 13px;\n}\n\n.wpmud #cloudflare-zone .cloudflare-submit {\n margin-top: 22px;\n}\n\n.wpmud #cloudflare-steps .wphb-notice-success {\n margin-top: 0;\n}\n\n.wpmud .cloudflare-clear-cache-tooltip[tooltip]:after {\n margin-left: -137px;\n}\n\n.wpmud .cloudflare-step {\n margin-top: 30px;\n}\n\n.wpmud .cloudflare-step form label input {\n margin-top: 5px;\n background-color: #F8F8F8;\n}\n\n.wpmud .cloudflare-step form label input::-webkit-input-placeholder,\n.wpmud .cloudflare-step form label input::-moz-placeholder,\n.wpmud .cloudflare-step form label input:-moz-placeholder,\n.wpmud .cloudflare-step form label input:-ms-input-placeholder {\n color: #AAAAAA;\n}\n\n.wpmud .cloudflare-step>p:first-child {\n text-align: left;\n}\n\n.wpmud .cloudflare-spinner {\n display: inline-block;\n float: right;\n}\n\n.wpmud .cloudflare-step p.cloudflare-submit,\n.wpmud #cloudflare-how-to-title {\n position: relative;\n margin-top: 11px;\n}\n\n.wpmud .cloudflare-step p.cloudflare-submit input[type=\"submit\"] {\n display: inline-block;\n margin-top: 0;\n}\n\n.wpmud #cloudflare-how-to {\n clear: both;\n margin-left: 0;\n margin-bottom: 0;\n list-style-position: inside;\n}\n\n.wpmud .cloudflare-step>p {\n margin-bottom: 30px;\n}\n\n.wpmud .cloudflare-step p.cloudflare-submit {\n float: right;\n}\n\n.wpmud .cloudflare-step hr {\n margin-top: 20px;\n margin-bottom: 20px;\n}\n\n.wpmud .cloudflare-step p.cloudflare-clear-cache-text {\n text-align: left;\n}\n\n.wpmud #cloudflare-how-to-title {\n float: left;\n line-height: 15px;\n padding-top: 7px;\n font-size: 13px;\n}\n\n.wpmud .cloudflare-step .cloudflare-data {\n text-align: left;\n margin-top: 30px;\n margin-bottom: 0;\n}\n\n.wpmud .cloudflare-data>span {\n display: inline-block;\n margin-right: 20px;\n}\n\n.wpmud .box-caching-summary .sui-box-body {\n background: no-repeat 30px 100%;\n}\n\n.wpmud .box-caching-summary .sui-box-body {\n background-image: url(\"../image/graphic-hb-cf-sell@2x.png\");\n background-size: 107px 148px;\n}\n\n.wpmud .box-caching-summary .sui-box-body.no-background-image {\n background-image: none;\n}\n\n.wpmud .box-caching-settings .select-container.server-type {\n max-width: 240px;\n}\n\n.wpmud.wphb-notice {\n margin-top: 30px;\n}\n\n.wpmud .box-caching-settings .wphb-expiry-select-box label {\n margin-top: 0;\n}\n\n.wpmud .wphb-expiry-select-box .wphb-expiry-select {\n max-width: 240px;\n}\n\n@media screen and (max-width: 1200px) and (min-width: 783px) {\n .wpmud #cloudflare-how-to-title {\n float: none;\n display: block;\n text-align: center;\n margin-bottom: 0;\n }\n\n .wpmud .cloudflare-step p.cloudflare-submit {\n float: none;\n position: relative;\n }\n\n .wpmud .cloudflare-step p.cloudflare-submit .cloudflare-spinner {\n position: absolute;\n right: 0;\n top: 10px;\n }\n}\n\n.wpmud .wphb-server-instructions .wphb-notice,\n.wpmud .box-caching-summary .wphb-notice,\n.wpmud .box-gzip-summary .wphb-notice {\n margin-bottom: 30px !important;\n}\n\n.wpmud .wphb-caching-active.wphb-notice.wphb-notice-blue {\n margin-bottom: 0 !important;\n}\n\n.wpmud .wphb-caching-success.wphb-notice.wphb-notice-success {\n margin-top: 30px;\n}\n\n.wpmud .wphb-server-instructions .wphb-block-content pre {\n max-height: 240px;\n}\n\n.wpmud .wphb-server-instructions .wphb-notice.wphb-notice-blue p {\n font-size: 13px;\n line-height: 22px;\n color: #333;\n}\n\n.wpmud .wphb-server-instructions .wphb-notice.wphb-notice-blue p:before {\n font-size: 16px;\n line-height: 16px;\n}\n\n.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning {\n margin-top: 30px;\n}\n\n.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning p {\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning p:before {\n font-size: 16px;\n line-height: 16px;\n}\n\n.wpmud .wphb-cf-detected-notice.wphb-notice.wphb-notice-grey p {\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-cf-detected-notice.wphb-notice.wphb-notice-grey p:before {\n font-size: 16px;\n line-height: 16px;\n}\n\n.wpmud .wphb-expiry-changes .update-htaccess {\n margin-top: 10px;\n}\n\n.wpmud .button.notice-button {\n margin-top: 10px;\n}\n\n.wpmud .wphb-cloudflare.wphb-notice-warning p {\n color: #333;\n}\n\n.wpmud .wphb-border-frame .table-header .wphb-caching-summary-heading-type {\n flex-basis: 85px;\n}\n\n.wpmud .wphb-border-frame .table-row .wphb-gzip-summary-item-type,\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-type {\n flex-basis: 100px;\n}\n\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-expiry,\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-status {\n flex-basis: 80px;\n}\n\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-type {\n font-size: 13px;\n font-weight: 500;\n color: #333333;\n}\n\n.wpmud .box-caching-settings label,\n.wpmud .box-gzip-settings label {\n margin-top: 15px;\n margin-bottom: 5px;\n padding: 0;\n}\n\n.wpmud .box-caching-settings label,\n.wpmud .box-gzip-settings label,\n.wpmud .box-caching-settings .wphb-border-frame>label,\n.wpmud .box-gzip-settings .wphb-border-frame>label {\n color: #888888;\n font-size: 13px;\n font-weight: 500;\n line-height: 22px;\n}\n\n.wpmud .wphb-caching-cloudflare-settings .wphb-expiry-select {\n width: 85%;\n}\n\n.wrap-wphb-caching .cloudflare-step label:first-child {\n margin-top: 0;\n}\n\n.wpmud .wrap-wphb-gzip .tabs,\n.wpmud .wrap-wphb-caching .tabs,\n.wpmud .wrap-wphb-gzip .tabs .tab label,\n.wpmud .wrap-wphb-caching .tabs .tab label,\n.wpmud .wrap-wphb-gzip .tabs .tab .content,\n.wpmud .wrap-wphb-caching .tabs .tab .content {\n border: 0;\n}\n\n.wpmud .wrap-wphb-gzip .tabs .tab .content,\n.wpmud .wrap-wphb-caching .tabs .tab .content {\n border-top: 2px solid #E6E6E6;\n top: 38px;\n}\n\n.wpmud .wrap-wphb-gzip .tabs .tab label,\n.wpmud .wrap-wphb-caching .tabs .tab label {\n font-size: 15px;\n text-transform: capitalize;\n color: #888888;\n padding: 0 10px;\n line-height: 1.5em;\n height: 40px;\n}\n\n.wpmud .wphb-server-instructions p,\n.wpmud .wphb-server-instructions .wphb-listing li {\n color: #888888;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-server-instructions .wphb-listing li {\n margin-top: 0;\n}\n\n.wpmud .wphb-server-instructions .tabs {\n margin: 0;\n}\n\n.wpmud .wphb-server-instructions .tabs .tab .content {\n padding: 20px 0 0;\n}\n\n.wpmud .wphb-server-instructions .tabs .tab>.active {\n color: #333333;\n border-bottom: 2px solid #333333;\n z-index: 10;\n}\n\n.wpmud .box-page-caching .box-footer {\n border-top: 1px solid #E6E6E6;\n padding: 50px 30px;\n}\n\n.wpmud .box-page-caching .sui-box-body .sui-box-settings-row:first-of-type {\n padding-bottom: inherit;\n border-bottom: 1px solid #e6e6e6;\n}\n\n.wpmud .box-page-caching h4 {\n color: #666666;\n font-size: 15px;\n font-weight: 500;\n text-align: left;\n text-transform: none;\n}\n\n.wpmud .box-page-caching textarea {\n height: 180px;\n max-width: 490px;\n color: #333333;\n border: 1px solid #E6E6E6;\n border-radius: 4px;\n background-color: #F8F8F8;\n margin-top: 20px;\n}\n\n.wpmud .box-page-caching .col-two-third .with-bottom-border {\n margin-bottom: 30px;\n}\n\n.wpmud .box-page-caching .wphb-dash-table .sub {\n width: 75px;\n}\n\n.wpmud .box-page-caching .wphb-dash-table .wphb-dash-table-row:first-child {\n border-top: 0;\n}\n\n.wpmud .box-page-caching .wphb-dash-table .wphb-dash-table-row:last-child {\n border-bottom: 0;\n}\n\n@media only screen and (max-width: 783px) {\n .wpmud .box-page-caching .sui-box-settings-col-2.wphb-deactivate-pc {\n padding-top: 0;\n }\n}\n\n.wpmud .box-page-caching .wphb-notice,\n.wpmud .box-caching-gravatar .wphb-notice {\n margin-top: 20px;\n}\n\n.wpmud .box-page-caching .sui-box-settings-row .sui-button-ghost {\n margin: 10px 0;\n}\n\n.wpmud .box-caching-other-settings .spinner {\n margin: 2px 10px 0 0;\n}\n\n.wpmud .box-caching-rss .sui-box-footer .spinner {\n margin: 2px 10px 0;\n}\n\n.wpmud .box-caching-rss .sui-box-settings-row input[type=\"text\"] {\n margin: 0;\n display: inline-block;\n width: 80px;\n}\n\n.wpmud .box-caching-rss .sui-box-settings-row label {\n margin-left: 10px;\n margin-top: -5px;\n color: #666;\n}\n\n@media only screen and (max-width: 1200px) {\n .wpmud .wrap-wphb-caching .row {\n display: block;\n table-layout: inherit;\n }\n}\n\n@media only screen and (max-width: 600px) {\n .wpmud .box-caching-summary .box-content>.box-content {\n background-image: none;\n }\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .wphb-caching-success.wphb-notice.wphb-notice-success {\n margin-top: 10px;\n }\n\n .wpmud .wphb-server-instructions .wphb-notice,\n .wpmud .box-caching-summary .wphb-notice,\n .wpmud .box-gzip-summary .wphb-notice {\n margin-bottom: 10px !important;\n }\n\n .wpmud .box-caching-summary .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 0;\n }\n}\n\n.wpmud #wphb-code-snippet {\n margin-top: 20px;\n margin-bottom: 20px;\n}\n\n.wpmud .wphb-gzip-error {\n text-align: left;\n}\n\n.wpmud .wphb-gzip-error p:first-child {\n margin: 0 0 10px 0;\n}\n\n.wpmud .wphb-gzip-error a,\n.wpmud #configure-gzip-link {\n text-decoration: underline;\n}\n\n.wpmud .box-gzip-settings .inline-label {\n color: #888888 !important;\n font-size: 13px;\n font-weight: 500;\n padding-left: 0 !important;\n}\n\n.wpmud .box-gzip-settings .select-container {\n max-width: 240px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice-blue {\n margin-top: 0;\n margin-bottom: 30px;\n padding: 15px 20px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice-blue p {\n font-size: 13px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice-blue p:before {\n font-size: 16px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice.htaccess-warning {\n margin-top: 30px;\n margin-bottom: 0 !important;\n padding: 15px 20px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice.htaccess-warning a {\n text-decoration: underline;\n}\n\n@media screen and (min-width: 960px) {\n .wpmud .wphb-border-frame.two-columns .table-header,\n .wpmud .wphb-border-frame.two-columns .table-row {\n justify-content: flex-start;\n }\n\n .wpmud .wphb-border-frame.two-columns .table-header>div:first-child,\n .wpmud .wphb-border-frame.two-columns .table-row>div:first-child {\n flex-basis: 50%;\n }\n}\n\n.wpmud .checkbox-group {\n border-radius: 41px;\n display: flex;\n justify-content: flex-end;\n height: 40px;\n}\n\n.wpmud .sui-dialog .checkbox-group {\n justify-content: flex-start;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"] {\n border: 0;\n clip: rect(0 0 0 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n display: block;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]+label {\n background-color: #FAFAFA;\n border-radius: 4px;\n display: flex;\n padding: 0;\n align-items: center;\n justify-content: center;\n text-align: center;\n width: 107px;\n position: relative;\n transition-property: background, color;\n transition-duration: 0.3s;\n color: transparent !important;\n margin-bottom: 0;\n margin-left: 5px;\n}\n\n.wpmud .wphb-minification-advanced-group input[type=\"checkbox\"]+label {\n width: 50px;\n}\n\n.wpmud .sui-dialog .checkbox-group {\n width: 100%;\n height: 52px;\n}\n\n.wpmud .sui-dialog .checkbox-group input[type=\"checkbox\"]+label {\n padding: 10px 10px;\n width: 70px;\n height: 50px;\n}\n\n.wpmud .sui-dialog .wphb-progress-state {\n text-align: left;\n margin-top: 0;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]+label.toggle-label-background,\n.wpmud .checkbox-group input[type=\"checkbox\"]:checked+label {\n box-shadow: none;\n background-color: #EFFAFF;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]+label>span:not(.toggle),\n.wpmud .checkbox-group input[type=\"checkbox\"]+label>i {\n color: #888888;\n padding: 0;\n font-size: 12px;\n}\n\n.wpmud .checkbox-group>span {\n color: #AAAAAA;\n font-size: 12px;\n line-height: 40px;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]+label>[class^=\"hb-\"]:before {\n font-size: 14px;\n vertical-align: -2px;\n margin-right: 8px;\n}\n\n.wpmud .sui-dialog .checkbox-group input[type=\"checkbox\"]+label>[class^=\"hb-\"]:before {\n margin-right: 0;\n}\n\n.wpmud .wphb-minification-advanced-group input[type=\"checkbox\"]+label>[class^=\"hb-\"]:before,\n.wpmud .wphb-modal input[type=\"checkbox\"]+label>[class^=\"hb-\"]:before {\n margin-right: 0;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]+label.toggle-label-background>span:not(.toggle),\n.wpmud .checkbox-group input[type=\"checkbox\"]:checked+label>span:not(.toggle),\n.wpmud .checkbox-group input[type=\"checkbox\"]:checked+label>i {\n color: #17A8E3;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]:disabled+label>span:not(.toggle),\n.wpmud .checkbox-group input[type=\"checkbox\"]:disabled+label>i {\n color: #DDD;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]:disabled+label {\n background-color: #FFF;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]+label>[tooltip] {\n position: absolute;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n z-index: 9;\n}\n\n.wpmud .checkbox-group label [class^=\"hb-\"] {\n display: block;\n padding: 10px 0 4px;\n}\n\n.wpmud .wrap-wphb-minification>.row>.wphb-notice {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-minification-files {\n background-color: #F8F8F8;\n padding-bottom: 1px;\n}\n\n.wpmud .box-minification-enqueued-files .box-title .buttons>div {\n display: inline-block;\n vertical-align: top;\n}\n\n.wpmud .box-minification-enqueued-files .box-title .buttons {\n margin-right: 45px !important;\n}\n\n.wpmud .box-minification-enqueued-files .box-title .wphb-switch-button {\n border-left: 1px solid #E6E6E6;\n display: block;\n height: 60px;\n left: 100%;\n margin-left: -30px;\n position: relative;\n width: 60px;\n}\n\n.wpmud .box-minification-enqueued-files .sui-box-header .wphb-heading-divider {\n border-left: 1px solid #E6E6E6;\n height: 62px;\n margin-top: -21px;\n margin-bottom: -22px;\n margin-left: 10px;\n}\n\n.wpmud .box-minification-enqueued-files .sui-box-header .sui-button:last-child {\n margin-right: 10px;\n}\n\n.wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button {\n height: 60px;\n width: 60px;\n display: block;\n margin: -15px -30px -15px 0px;\n}\n\n.wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button>i {\n color: #AAAAAA;\n font-size: 20px;\n margin-left: 20px;\n position: absolute;\n top: 18px;\n}\n\n.wpmud .box-minification-enqueued-files .box-title-advanced .wphb-switch-button>i {\n color: #17A8E3;\n}\n\n.wpmud .wphb-minification-files-header {\n background-color: #fff;\n border-bottom: 1px solid #E6E6E6;\n margin-bottom: 30px;\n padding: 30px;\n}\n\n.wpmud .wphb-border-row {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n flex-flow: row wrap;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n align-content: center;\n}\n\n.wpmud .wphb-minification-files-basic .wphb-border-row,\n.wpmud .wphb-minification-files-advanced .wphb-border-row,\n.wpmud .wphb-minification-files-advanced .wphb-minification-row-details {\n padding: 10px 30px;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n}\n\n.wpmud .wphb-minification-files-advanced .wphb-minification-row-details {\n padding: 0;\n display: flex;\n align-content: center;\n align-items: center;\n}\n\n.wpmud .wphb-minification-files-basic .wphb-border-row {\n border-bottom: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-minification-files-advanced .wphb-border-row {\n padding: 10px 30px 10px 20px;\n min-height: 70px;\n background-color: #FFF;\n border-radius: 4px;\n box-shadow: 0 2px 7px 0 rgba(0,0,0,0.05);\n margin-bottom: 10px;\n}\n\n.wpmud .wphb-minification-files-basic .wphb-border-row:last-child,\n.wpmud .wphb-minification-files-advanced .wphb-border-row:last-child {\n border-bottom: 0;\n}\n\n.wpmud .wphb-minification-files-table.wphb-minification-files-basic,\n.wpmud .wphb-minification-files-table.wphb-minification-files-advanced {\n background-color: #F8F8F8;\n margin: 0 30px 30px;\n}\n\n.wpmud .wphb-minification-files-table.wphb-minification-files-basic {\n background-color: #FFFFFF;\n border-radius: 4px;\n box-shadow: 0 2px 7px 0 rgba(0,0,0,0.05);\n}\n\n.wpmud .wphb-minification-files>h3,\n.wpmud .wphb-minification-files-select h3 {\n font-size: 13px;\n font-weight: bold;\n line-height: 22px;\n color: #888888;\n text-align: left;\n text-transform: none;\n margin: 10px 30px;\n}\n\n.wpmud .wphb-minification-files .wphb-notice {\n margin: 0 30px 30px;\n width: auto;\n}\n\n.wpmud .wphb-minification-changed-notice a.wphb-notice-dismiss {\n opacity: 0.5;\n color: #333333;\n font-size: 12px;\n font-weight: bold;\n margin-left: 33px;\n text-transform: uppercase;\n}\n\n.wpmud .wphb-minification-file-info {\n float: left;\n line-height: 18px;\n overflow: hidden;\n position: relative;\n white-space: nowrap;\n width: 300px;\n}\n\n.wpmud .wphb-border-row:not(.disabled) .wphb-minification-file-info:after {\n background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, #fff 100%);\n background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, #fff 100%);\n background: linear-gradient(to right, rgba(255,255,255,0) 0%, #fff 100%);\n content: '';\n height: 100%;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n width: 40px;\n}\n\n.wpmud .wphb-minification-file-info>* {\n color: #AAAAAA;\n font-size: 10px;\n font-weight: 500;\n line-height: 10px;\n}\n\n.wpmud .wphb-minification-file-info>span:first-child {\n color: #666666;\n display: block;\n font-size: 13px;\n line-height: 13px;\n}\n\n.wpmud .wphb-minification-file-info>a {\n max-width: 400px;\n overflow: hidden;\n}\n\n.wpmud .wphb-minification-file-info>.original-size.crossed-out {\n text-decoration: line-through;\n}\n\n.wpmud .wphb-minification-file-info>.sui-icon-chevron-down:before,\n.wpmud .wphb-minification-file-info>.compressed-size {\n color: #1ABC9C;\n}\n\n.wpmud .wphb-minification-file-info>.sui-icon-chevron-down:before {\n font-size: 8px;\n position: relative;\n top: 0;\n}\n\n.wpmud .wphb-minification-filter-buttons {\n padding: 0 30px 20px;\n display: flex;\n}\n\n.wpmud .wphb-minification-filter-buttons .sui-actions-left {\n margin-left: 0;\n}\n\n.wpmud .wphb-minification-files-select {\n display: flex;\n align-items: center;\n align-content: center;\n margin: 0 50px;\n}\n\n.wpmud .wphb-minification-files-select .sui-checkbox {\n margin-right: 5px;\n}\n\n.wpmud .wphb-minification-files-select .sui-checkbox span {\n margin-top: -4px;\n}\n\n.wpmud .wphb-minification-files-select h3 {\n margin: 5px 5px 7px;\n}\n\n.wpmud .wphb-minification-bulk-file-selector {\n float: left;\n}\n\n.wpmud .wphb-minification-file-select {\n float: left;\n line-height: 30px;\n margin-right: 10px;\n margin-top: 4px;\n}\n\n.wpmud .wphb-minification-exclude {\n margin-left: 30px;\n}\n\n.wpmud .wphb-minification-filter {\n background-color: #FFFFFF;\n padding: 0 30px;\n margin: 10px 30px;\n}\n\n.wpmud .wphb-minification-filter>div {\n height: 78px;\n display: flex;\n align-items: center;\n align-content: center;\n}\n\n.wpmud .wphb-minification-filter>div>input {\n margin: 0 10px !important;\n width: 40% !important;\n background-color: #F8F8F8 !important;\n}\n\n.wpmud .wphb-minification-filter>div .wphb-block-title {\n color: #333333;\n font: 500 13px/30px \"Roboto\",Arial,sans-serif;\n text-transform: none;\n margin-right: 21px;\n}\n\n.wpmud .wphb-minification-filter .select-list-container {\n min-width: 240px !important;\n}\n\n.wpmud .wphb-border-row.out-of-filter,\n.wpmud .wphb-border-row.disabled .checkbox-group {\n display: none;\n}\n\n.wpmud .box-content.disabled,\n.wpmud .wphb-border-row.disabled {\n background-color: #F2F2F2;\n}\n\n.wpmud .wphb-minification-files-advanced .wphb-border-row.disabled {\n box-shadow: none;\n}\n\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-other,\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-css,\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-javascript,\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-js {\n opacity: 0.4;\n}\n\n.wpmud .wphb-filename-extension-label {\n line-height: 30px;\n}\n\n.wpmud .wphb-border-row.disabled .wphb-minification-file-info>span {\n color: #AAA;\n}\n\n.wpmud .wrap-wphb-minification .settings-form {\n margin: 0;\n}\n\n.wpmud .wrap-wphb-minification .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 0;\n}\n\n.wpmud .box-minification-tools .box-footer .spinner {\n margin: 6px 10px 0;\n}\n\n@media only screen and (max-width: 1200px) {\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n width: 235px;\n }\n}\n\n@media only screen and (max-width: 1100px) {\n .wpmud .box-minification-enqueued-files .box-title .buttons {\n float: left;\n margin-right: -5px !important;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n width: 130px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-exclude {\n margin-left: 15px;\n }\n\n .wpmud .box-minification-enqueued-files .box-footer .button {\n margin-top: 15px;\n }\n}\n\n@media screen and (max-width: 1060px) {\n .wpmud .wphb-border-row-header,\n .wpmud .wphb-border-row {\n padding: 15px 15px;\n }\n}\n\n@media only screen and (max-width: 960px) {\n .wpmud .box-minification-enqueued-files .box-title .buttons {\n float: right;\n margin-right: 45px !important;\n }\n}\n\n@media only screen and (max-width: 783px) {\n .wpmud .wphb-minification-files-advanced .fileinfo-group:after {\n font-family: dashicons, Arial, sans-serif;\n content: \"\\F347\";\n position: absolute;\n left: 100%;\n margin-left: -70px;\n margin-top: 5px;\n }\n\n .wpmud .wphb-minification-files-advanced .fileinfo-group.opened:after {\n content: \"\\f343\";\n }\n\n .wpmud .wphb-minification-files-advanced .fileinfo-group {\n padding: 10px 0;\n overflow: hidden;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n width: 55%;\n min-width: 200px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info>a {\n max-width: 200px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-row-details {\n display: none;\n margin: 10px 0;\n border-top: 1px solid #E6E6E6;\n padding-top: 15px !important;\n width: 100%;\n z-index: 100;\n }\n\n .wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button>i {\n margin-left: 15px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-advanced-group {\n float: left;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-exclude {\n float: right;\n margin-top: 7px;\n }\n}\n\n@media only screen and (max-width: 600px) {\n .wpmud .box-minification-enqueued-files .box-title h3,\n .wpmud .box-minification-enqueued-files .box-title .buttons {\n float: none !important;\n }\n\n .wpmud .box-minification-enqueued-files .box-title .wphb-switch-button {\n height: 96px;\n margin-left: -60px;\n position: absolute;\n top: 0;\n }\n\n .wpmud .wphb-minification-file-info {\n width: 185px;\n }\n\n .wpmud .box-minification-enqueued-files .box-footer .status-text {\n display: block;\n max-width: 100%;\n text-align: left;\n padding-left: 0;\n }\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .wphb-minification-files-table.wphb-minification-files-basic,\n .wpmud .wphb-minification-files-table.wphb-minification-files-advanced {\n margin: 0 10px 30px;\n }\n\n .wpmud .wphb-minification-files-header {\n padding: 20px;\n }\n\n .wpmud .box-minification-enqueued-files .buttons .button {\n padding: 7px !important;\n }\n\n .wpmud .wphb-minification-filter-buttons {\n padding: 0 20px 20px;\n }\n\n .wpmud .wphb-minification-files-select {\n margin: 0 20px;\n }\n\n .wpmud .wphb-minification-files>h3 {\n margin: 10px;\n }\n\n .wpmud .wphb-minification-files-basic .wphb-border-row,\n .wpmud .wphb-minification-files-advanced .wphb-border-row {\n padding: 10px;\n }\n\n .wpmud .wphb-minification-file-info {\n width: 155px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n min-width: 170px;\n }\n\n .wpmud .wphb-border-row .fileinfo-group {\n margin-top: 0;\n margin-bottom: 0;\n }\n\n .wpmud .checkbox-group>span {\n line-height: 20px;\n text-align: right;\n align-self: center;\n }\n\n .wpmud .checkbox-group input[type=\"checkbox\"]+label {\n width: 60px;\n }\n\n .wpmud .checkbox-group input[type=\"checkbox\"]+label>[class^=\"hb-\"]:before {\n margin-right: 0;\n }\n\n .wpmud .checkbox-group input[type=\"checkbox\"]+label>span[class^=hb]>span {\n display: none;\n }\n\n .wpmud .wphb-minification-files-advanced .fileinfo-group:after {\n margin-left: -40px;\n }\n}\n\n.sui-header .sui-actions-right label,\n.sui-header .sui-actions-right .select-container {\n margin-right: 10px;\n}\n\n.sui-header .sui-actions-right label {\n font-size: 12px;\n color: #aaa;\n}\n\n.wpmud .box-uptime-summary .sui-summary {\n background-image: url(\"../image/hb-graphic-uptime-up@2x.png\");\n}\n\n.wpmud .wphb-block-uptime-status .wphb-uptime-icon {\n max-height: 110px;\n}\n\n.wpmud .wphb-block-content-uptime-data-range {\n padding-top: 9px;\n padding-bottom: 9px;\n}\n\n.wpmud .uptime-chart svg g g rect {\n fill: #E6E6E6;\n stroke: transparent;\n stroke-width: 0;\n}\n\n.wpmud .uptime-chart svg g g text {\n fill: #fff;\n font-family: \"Roboto\",Arial,sans-serif;\n font-size: 13px;\n font-weight: 400;\n}\n\n.wpmud .uptime-chart svg g g g g rect:hover {\n stroke-width: 0px;\n stroke: red;\n display: none;\n}\n\n.wpmud .uptime-chart svg g g text:last-of-type {\n fill: #AAAAAA;\n font-weight: 500;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red,\n.wpmud .wrap-wphb-uptime .wphb-pills.green {\n height: 40px;\n line-height: 40px;\n width: 200px;\n border-radius: 5px;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-notice-grey {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-block-uptime-downtime .dev-list {\n margin-top: 30px;\n}\n\n.wrap-wphb-uptime .wphb-block-entry .wphb-block-content-center,\n.wrap-wphb-caching .wphb-block-entry .wphb-block-content-center {\n max-width: 600px;\n margin: 0 auto;\n}\n\n.wpmud .downtime-chart svg g text {\n font-family: 'Roboto', Arial, sans-serif;\n fill: #AAAAAA;\n font-weight: 500;\n font-size: 12px;\n line-height: 20px;\n}\n\n.wpmud .wphb-block-content.wphb-downtime-basic {\n margin-left: 80px;\n max-width: 90%;\n}\n\n.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart {\n height: 80px;\n}\n\n.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart div div svg {\n height: 58px !important;\n overflow: hidden;\n}\n\n.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart svg g text {\n display: none;\n}\n\n.wpmud .downtime-chart svg g path {\n stroke: transparent;\n}\n\n.wpmud .downtime-chart svg g rect {\n stroke: transparent;\n stroke-width: 0;\n}\n\n.wpmud .downtime-chart-key span {\n color: #AAAAAA;\n font-size: 12px;\n line-height: 20px;\n margin-right: 30px;\n font-weight: 500;\n}\n\n.wpmud .downtime-chart-key span:before {\n content: \"\";\n display: inline-block;\n height: 16px;\n width: 16px;\n border-radius: 2px;\n margin-right: 10px;\n vertical-align: sub;\n}\n\n.wpmud .downtime-chart-key span.response-time-key:before {\n background-color: #E1F6FF;\n border-top: 2px solid #24ADE5;\n height: 14px;\n}\n\n.wpmud .downtime-chart-key span.uptime-key:before {\n background-color: #D1F1EA;\n}\n\n.wpmud .downtime-chart-key span.downtime-key:before {\n background-color: #FF6D6D;\n}\n\n.wpmud .downtime-chart-key span.unknown-key:before {\n background-color: #F8F8F8;\n}\n\n.wpmud .wrap-wphb-uptime .dev-list-stats-item {\n margin-bottom: 10px;\n}\n\n.wpmud .box-uptime-downtime .sui-icon-chevron-up,\n.wpmud .box-uptime-downtime .sui-icon-chevron-down {\n padding: 6px;\n margin-right: 10px;\n vertical-align: middle;\n border-radius: 5px;\n font-size: 15px;\n line-height: 10px;\n}\n\n.wpmud .box-uptime-downtime .sui-icon-chevron-up:before,\n.wpmud .box-uptime-downtime .sui-icon-chevron-down:before {\n color: #FFFFFF;\n}\n\n.wpmud .box-uptime-downtime .sui-icon-chevron-down {\n background-color: #FF6D6D;\n}\n\n.wpmud .box-uptime-downtime .sui-icon-chevron-up {\n background-color: #1ABC9C;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills-group {\n width: 100%;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red,\n.wpmud .wrap-wphb-uptime .wphb-pills.green {\n text-align: left;\n color: #333333;\n font-size: 13px;\n height: 56px;\n line-height: 50px;\n padding-left: 15px;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red[tooltip]:after {\n left: 48%;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red {\n background-color: #FFE5E9;\n border-top: 2px solid #FFE5E9;\n border-bottom: 2px solid #FF6D6D;\n width: 60%;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.green {\n background-color: #D1F1EA;\n border-top: 2px solid #1ABC9C;\n border-bottom: 2px solid #D1F1EA;\n width: 40%;\n}\n\n.wpmud span.list-detail-stats {\n position: absolute;\n font-size: 13px;\n font-weight: 500;\n line-height: 22px;\n right: 60%;\n color: #333333;\n opacity: .5;\n margin-top: 16px;\n}\n\n.wphb-image-pills-divider {\n display: inline-block;\n height: 56px;\n margin-bottom: -25px;\n margin-left: -28px;\n position: absolute;\n}\n\n.wpmud .downtime-chart div.google-visualization-tooltip,\n.wpmud .wphb-uptime-graph div.google-visualization-tooltip {\n font-family: 'Roboto', sans-serif;\n font-weight: 500;\n color: #FFFFFF;\n font-size: 12px;\n border: none;\n border-radius: 5px;\n padding: 8px 12px;\n background: black;\n}\n\n.wpmud .wphb-uptime-graph div.google-visualization-tooltip .response-time-tooltip {\n font-size: 15px;\n line-height: 18px;\n}\n\n.wpmud .wphb-uptime-graph div.google-visualization-tooltip .uptime-date-tooltip {\n font-size: 11px;\n color: #AAAAAA;\n line-height: 14px;\n display: block;\n}\n\n@media only screen and (max-width: 600px) {\n .wpmud .select-container.uptime-data-range {\n position: absolute;\n top: 0;\n right: 0;\n margin-right: 0;\n }\n\n .wpmud .uptime-data-range .select-list-container {\n min-width: 180px;\n }\n\n .wpmud .wrap-wphb-uptime .actions>.documentation-button {\n margin-left: 0 !important;\n }\n\n .wpmud .wrap-wphb-uptime .wphb-pills.green {\n position: absolute;\n top: 0;\n right: 0;\n height: 30px;\n border-radius: 0 4px 0 0 !important;\n line-height: 30px;\n padding-left: 10px;\n width: 160px;\n }\n\n .wpmud .wrap-wphb-uptime .wphb-pills.red {\n width: 100%;\n margin-top: 30px;\n height: 50px;\n border-radius: 5px 0 5px 5px !important;\n }\n\n .wpmud .box-uptime-downtime .sui-icon-chevron-down,\n .wpmud .box-uptime-downtime .sui-icon-chevron-up {\n padding: 4px;\n border-radius: 4px;\n font-size: 12px;\n vertical-align: inherit;\n }\n\n .wphb-image-pills-divider {\n display: inline-block;\n height: 30px;\n margin-left: 0;\n top: 0;\n right: 160px;\n }\n\n .wpmud span.list-detail-stats {\n right: 20px;\n margin-top: 46px;\n opacity: .7;\n }\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .box-uptime-summary .list-detail {\n max-width: 60px;\n }\n\n .wpmud .uptime-chart {\n margin-left: -25px;\n }\n}\n\n.wpmud [class^=\"box-advanced\"] .spinner {\n margin: 5px 10px 0;\n vertical-align: top;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame {\n margin-top: 30px !important;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-header,\n.wpmud .box-advanced-db .wphb-border-frame .table-row {\n padding: 20px 30px;\n}\n\n@media only screen and (max-width: 783px) {\n .wpmud .box-advanced-db .wphb-border-frame .table-header,\n .wpmud .box-advanced-db .wphb-border-frame .table-row {\n padding: 15px 0;\n }\n}\n\n@media only screen and (max-width: 783px) {\n .wpmud .box-advanced-db .wphb-border-frame .table-header {\n padding: 15px 0 0;\n }\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-header div {\n flex-basis: 50px;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-header div:first-child,\n.wpmud .box-advanced-db .wphb-border-frame .table-row div:first-child {\n flex-basis: 150px;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-row div {\n height: 20px;\n font-size: 13px;\n line-height: 20px;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-row div:first-child {\n color: #333;\n font-weight: 500;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-wpmudev-icon-info {\n color: #ddd;\n font-size: 16px;\n margin-left: 10px;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-wpmudev-icon-info:hover {\n color: #aaa;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-wpmudev-icon-info:before {\n vertical-align: middle;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-row .wphb-db-row-delete {\n width: 30px;\n height: 30px;\n display: inline-block;\n border-radius: 4px;\n margin-top: -5px;\n text-align: center;\n vertical-align: middle;\n cursor: pointer;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-row .wphb-db-row-delete:hover {\n background-color: #f5f5f5;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-row .wphb-db-row-delete:hover .hb-fi-trash {\n color: #FF6D6D;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-row .spinner {\n margin-top: 1px;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .table-row .hb-fi-trash {\n color: #888;\n font-size: 12px;\n top: 5px;\n}\n\n.wpmud .box-advanced-db .wphb-border-frame .sui-box-footer {\n border-top: none;\n}\n\n@media only screen and (max-width: 783px) {\n .wpmud .box-advanced-db .wphb-border-frame .sui-box-footer {\n padding: 20px 0;\n }\n}\n\n.wpmud .box-advanced-db-settings .settings-form .schedule-box>label:first-child,\n.wpmud .box-advanced-db-settings .settings-form .included-tables>label:first-child {\n margin-top: 0;\n}\n\n.wpmud .box-advanced-db-settings .settings-form .included-tables>label {\n margin-top: 7px;\n color: #333;\n}\n\n.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {\n padding-top: 0;\n}\n\n@media only screen and (max-width: 1200px) {\n .wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership .wphb-block-entry-content {\n margin-top: 30px;\n }\n}\n\n.sui-header .sui-button i {\n margin-right: 5px;\n}\n\n.wpmud .wrap-wp-hummingbird .mline {\n margin-bottom: 30px;\n}\n\n.wpmud .select-list-container {\n min-width: 100px;\n}\n\n.wpmud .select-list-container .list-value {\n color: #333333;\n font-weight: 500;\n padding: 6px 8px 6px 15px;\n}\n\n#wpbody-content {\n padding-bottom: 25px;\n}\n\n.wpmud .with-bottom-border {\n border-bottom: 1px solid #E6E6E6;\n padding-bottom: 30px;\n}\n\n.wpmud .list-table>tbody>tr:last-child>td {\n border-bottom: 1px solid #eee;\n}\n\n.wpmud .list-table>thead>tr>th {\n text-transform: none;\n font-size: 13px;\n font-weight: bold;\n}\n\n.wpmud .list-table>tbody>tr>td {\n padding: 12px 10px;\n}\n\n.wpmud .list-table .radio-group.with-icon {\n display: inline-table;\n}\n\n.wpmud .list-table .radio-group.with-icon .dev-icon {\n vertical-align: middle;\n}\n\n.wpmud .dev-list {\n margin: -30px 0 20px;\n}\n\n.wpmud .dev-list .content {\n padding: 30px 0;\n border-bottom: 1px solid #EEEEEE;\n}\n\n.wpmud .dev-list>li.list-header {\n text-transform: none;\n color: #333333;\n font-size: 13px;\n}\n\n.wpmud .dev-list .list-header .list-label {\n font-weight: bold;\n}\n\n.wpmud .dev-list>li .list-label {\n font-size: 13px;\n font-weight: 500;\n line-height: 21px;\n padding: 15px 10px 15px 0;\n}\n\n.wpmud .dev-list>li:last-child .list-label,\n.wpmud .dev-list>li:last-child .list-detail {\n border-bottom: 1px solid #eee;\n}\n\n.wpmud .box-dashboard-welcome .dev-list>li:last-child .list-label,\n.wpmud .box-dashboard-welcome .dev-list>li:last-child .list-detail,\n.wpmud .box-performance-welcome .dev-list>li:last-child .list-label,\n.wpmud .box-performance-welcome .dev-list>li:last-child .list-detail,\n.wpmud .box-minification-summary-meta-box .dev-list>li:last-child .list-label,\n.wpmud .box-minification-summary-meta-box .dev-list>li:last-child .list-detail,\n.wpmud .box-uptime-summary .dev-list>li:last-child .list-label,\n.wpmud .box-uptime-summary .dev-list>li:last-child .list-detail {\n border-bottom: 1px solid transparent;\n}\n\n.wpmud .dev-list>li .list-detail .wphb-dash-numbers {\n font-family: 'Roboto Condensed', sans-serif;\n font-size: 13px;\n color: #888888;\n line-height: 22px;\n text-align: right;\n font-weight: 400;\n}\n\n.wpmud .dev-list-stats-border>li:first-child .list-label,\n.wpmud .dev-list-stats-border>li:first-child .list-detail {\n border-top: 1px solid #eee;\n}\n\n.wpmud .dev-list-stats-border>li:last-child .list-label,\n.wpmud .dev-list-stats-border>li:last-child .list-detail {\n border-bottom-color: #eee;\n}\n\n.wpmud .dev-list-stats>li .list-label-stats,\n.wpmud .dev-list-stats>li .list-detail-stats-heading {\n color: #333;\n font: 500 13px/30px 'Roboto', Arial, sans-serif;\n}\n\n.wpmud .dev-list-stats>li .list-detail-stats-heading {\n font-weight: 400;\n font-size: 18px;\n color: #666;\n}\n\n.wpmud .dev-list-stats>li .list-detail-stats-heading-extra-info {\n color: #BABABA;\n display: block;\n font: 500 12px/16px 'Roboto', Arial, sans-serif;\n margin-top: 5px;\n}\n\n.wpmud .dev-list-stats.standalone {\n margin: 0;\n}\n\n.wpmud .dev-list-stats.small>li .list-label-stats,\n.wpmud .dev-list-stats.small>li .list-detail-stats-heading {\n line-height: 26px;\n}\n\n.wpmud .dev-list-stats>li .list-detail-stats-heading.small {\n font-size: 26px;\n}\n\n.wpmud .dev-list-stats>li .list-label-stats-date {\n margin-right: 30px;\n}\n\n.wpmud .list-label-link {\n color: #19B4CF;\n}\n\n.wpmud input[type=\"checkbox\"] {\n border-radius: 4px;\n border: 1px solid #E6E6E6;\n background-color: #F8F8F8;\n}\n\n.wpmud [tooltip]:after {\n font: 500 12px/18px 'Roboto';\n padding: 8px 12px;\n background: #333333;\n min-width: 50px;\n max-width: 250px;\n transition: all 0.2s ease;\n text-transform: none;\n}\n\n.wpmud .tooltip-box {\n overflow: hidden;\n}\n\n.wpmud .tooltip-box:hover {\n overflow: visible;\n}\n\n.wpmud .radio-group input[type=\"radio\"]+label>[tooltip] {\n position: absolute;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n z-index: 9;\n}\n\n.wpmud .wphb-button-label {\n border: 1px solid transparent;\n border-radius: 15px;\n color: #fff;\n font: 500 12px/26px 'Roboto';\n display: inline-block;\n height: 26px;\n margin: 0;\n padding: 0 12px;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: nowrap;\n}\n\n.wpmud .wphb-button-label-red {\n background: #fd6e70;\n}\n\n.wpmud .wphb-button-label-yellow {\n background: #FFD000;\n color: #333333;\n}\n\n.wpmud .wphb-button-label-green {\n background: #1ABC9C;\n}\n\n.wpmud .wphb-button-label-light {\n color: #333333;\n background-color: #F2F2F2;\n}\n\n.wpmud .wrap-wp-hummingbird .wphb-label {\n color: #fff;\n display: block;\n font: 500 15px/20px 'Roboto';\n text-shadow: none;\n white-space: nowrap;\n}\n\n.wpmud .wrap-wp-hummingbird .wphb-label-notice {\n background: #14485F;\n border-radius: 3px;\n padding: 5px 10px;\n}\n\n.wpmud .wrap-wp-hummingbird .wphb-label-notice-warning {\n background: #FECF2F;\n color: #4E4B10;\n}\n\n.wpmud .wrap-wp-hummingbird .wphb-label-notice-inline {\n display: inline-block;\n font-size: 13px;\n color: #888888;\n margin: 0 15px;\n}\n\n.wpmud .wrap-wp-hummingbird .wphb-label-disabled {\n background: #F2F2F2;\n border-radius: 20px;\n color: #C0C0C0;\n display: inline-block;\n font: 500 12px/20px 'Roboto', Arial, sans-serif;\n min-width: 120px;\n padding: 5px;\n text-align: center;\n text-transform: uppercase;\n}\n\n.wpmud .wphb-table-wrapper.complex {\n min-height: .01%;\n overflow-x: auto;\n border-bottom: 1px solid #eee;\n}\n\n.wpmud .wphb-table {\n font-weight: 400;\n max-width: 100%;\n width: 100%;\n color: #333333;\n}\n\n.wpmud .list-table.wphb-table tr:hover .wphb-table-td-has-tooltip {\n z-index: 3;\n}\n\n.box-dashboard-welcome .box-content,\n.box-performance-welcome .box-content,\n.box-minification-summary-meta-box .box-content,\n.box-uptime-summary .box-content {\n padding: 30px 30px 10px !important;\n}\n\n.box-dashboard-welcome .wphb-block-entry,\n.box-performance-welcome .wphb-block-entry,\n.box-minification-summary-meta-box .wphb-block-entry,\n.box-uptime-summary .wphb-block-entry {\n width: 100%;\n min-height: 172px;\n}\n\n.wpmud .wphb-image,\n.wpmud .wphb-image-icon-content {\n display: block;\n height: auto;\n max-width: 100%;\n}\n\n.wpmud .wphb-image-center,\n.wpmud .wphb-image-icon-content-center {\n margin-right: auto;\n margin-left: auto;\n}\n\n.wpmud .wphb-image-icon-content-top {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-listing {\n margin: 0;\n}\n\n.wpmud .wphb-listing li {\n font-family: 'Roboto', Arial, sans-serif;\n font-size: 15px;\n font-weight: 400;\n line-height: 21px;\n margin-top: 10px;\n margin-bottom: 0;\n}\n\n.wpmud .wphb-listing li:first-child {\n margin-top: 0;\n}\n\n.wpmud .wphb-listing.bold li {\n font-weight: 500;\n}\n\n.wpmud .wphb-listing-ordered {\n padding-left: 20px;\n}\n\n.wpmud .wphb-listing li strong {\n font-weight: 500;\n}\n\n.wpmud .wphb-listing li:before {\n color: #17A8E3;\n top: 0;\n}\n\n.wpmud .wphb-listing li p {\n font-size: 13px;\n line-height: 22px;\n margin-top: 5px;\n}\n\n.wpmud .wphb-select-group {\n clear: both;\n}\n\n.wpmud .wphb-select-group:after {\n content: '';\n display: table;\n clear: both;\n}\n\n.wpmud .wphb-select-group>label,\n.wpmud .wphb-select-group>div {\n float: left;\n display: block;\n}\n\n.wpmud .wphb-select-group>label {\n line-height: 43px;\n margin-right: 10px;\n}\n\n.wpmud .select-container {\n overflow: hidden;\n}\n\n.wpmud .select-container.active {\n overflow: visible;\n}\n\n.wpmud .wphb-select-group .spinner {\n margin: 11px;\n}\n\n@keyframes spinner {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n\n 50% {\n -webkit-transform: rotate(180deg);\n transform: rotate(180deg);\n }\n\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n.wphb-scan-progress {\n overflow: hidden;\n width: 100%;\n}\n\n.not-present .wphb-scan-progress-text:before,\n.wphb-scan-progress .wphb-scan-progress-text:before {\n content: \" \";\n width: 18px;\n height: 18px;\n display: inline-block;\n position: relative;\n top: 5px;\n left: 1px;\n margin-right: 10px;\n border: 2px solid #A9E0EC;\n border-bottom-color: #17A8E3;\n border-radius: 100%;\n background: 0 0;\n box-sizing: border-box;\n animation: spinner .75s 0s linear infinite;\n}\n\n.wphb-scan-progress .wphb-scan-progress-text {\n width: 65px;\n float: left;\n text-align: left;\n}\n\n.wphb-scan-progress .wphb-scan-progress-text img {\n display: inline-block;\n vertical-align: middle;\n margin-right: 10px;\n}\n\n.wphb-scan-progress .wphb-scan-progress-text span {\n font-weight: bold;\n font-family: \"Roboto Condensed\", sans-serif;\n font-size: 13px;\n color: #333333;\n vertical-align: middle;\n line-height: 30px;\n}\n\n.wphb-scan-progress .wphb-scan-progress-bar {\n background: #E6E6E6;\n -webkit-border-radius: 5px;\n -moz-border-radius: 5px;\n border-radius: 5px;\n height: 10px;\n width: 70%;\n overflow: hidden;\n margin-top: 10px;\n position: relative;\n}\n\n.wphb-scan-progress .wphb-scan-progress-bar span {\n background: #17A8E3;\n height: 10px;\n display: inline-block;\n position: absolute;\n top: 0;\n left: 0;\n -webkit-transition: 1000ms width ease-in-out;\n -moz-transition: 1000ms width ease-in-out;\n transition: 1000ms width ease-in-out;\n}\n\n.wphb-block-test {\n background-color: #F9F9F9;\n border-radius: 5px;\n padding: 15px 30px;\n}\n\n.wphb-block-test-header {\n margin-bottom: 10px;\n}\n\n.wphb-progress-state {\n margin-top: 10px;\n text-align: center;\n}\n\n.wphb-progress-state .wphb-progress-state-text {\n color: #8B8B8B;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wphb-block-test-standalone {\n max-width: 100%;\n text-align: center;\n margin-top: 25px;\n}\n\n.wphb-block-test-standalone .wphb-progress {\n margin: 0 auto;\n}\n\n.wphb-check-files-modal p {\n font-size: 13px;\n line-height: 22px;\n margin-right: 14px;\n margin-bottom: 0;\n}\n\n.wphb-filename-extension {\n border-radius: 4px;\n display: block;\n float: left;\n font-family: 'Roboto', sans-serif;\n font-size: 9px;\n color: #fff;\n text-transform: uppercase;\n text-align: center;\n line-height: 43px;\n height: 30px;\n margin: 0 10px 0 0;\n width: 30px;\n}\n\n.sui-list-label .wphb-filename-extension {\n margin: -5px 10px -5px 0px;\n}\n\n.sui-list-label .wphb-filename-extension-label {\n line-height: 22px;\n}\n\n.wphb-filename-extension-html {\n background-color: #F56418;\n}\n\n.wphb-filename-extension-other {\n background-color: #AAAAAA;\n}\n\n.wphb-filename-extension-css {\n background-color: #25A8DE;\n}\n\n.wphb-filename-extension-media {\n background-color: #55DDB8;\n}\n\n.wphb-filename-extension-images {\n background-color: #BDF2F7;\n color: #333333;\n}\n\n.wphb-filename-extension-javascript,\n.wphb-filename-extension-js {\n background-color: #F7E100;\n color: #333333;\n}\n\n.wpmud .list-table.hover-effect>tbody>tr[class*=\"wphb-table-score\"] td:first-child {\n padding-left: 30px;\n}\n\n.wpmud .list-table.hover-effect>tbody>tr[class*=\"wphb-table-score\"] td:first-child:before {\n font-family: 'hummingbird', sans-serif;\n speak: none;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n font-size: 20px;\n vertical-align: middle;\n margin-right: 10px;\n}\n\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-disabled:hover>td:first-child:after,\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-success:hover>td:first-child:after,\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-warning:hover td:first-child:after,\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-dismissed:hover td:first-child:after,\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-error:hover td:first-child:after {\n content: normal;\n}\n\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-success:hover td:first-child,\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-success td:first-child,\n.wphb-table-score-success td:first-child {\n border-left: 4px solid #1ABC9C;\n}\n\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-success td:first-child:before {\n color: #1ABC9C;\n content: \"\\e903\";\n}\n\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-warning:hover td:first-child,\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-warning td:first-child,\n.wphb-table-score-warning td:first-child {\n border-left: 4px solid #FFD000;\n}\n\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-warning td:first-child:before {\n color: #FFD000;\n content: \"\\e904\";\n}\n\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-error:hover td:first-child,\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-error td:first-child,\n.wphb-table-score-error td:first-child {\n border-left: 4px solid #FF6D6D;\n}\n\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-error td:first-child:before {\n color: #FF6D6D;\n content: \"\\e904\";\n}\n\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-disabled:hover td:first-child,\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-disabled td:first-child,\n.wphb-table-score-disabled td:first-child,\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-dismissed:hover td:first-child,\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-additional-dismissed td:first-child,\n.wphb-table-score-dismissed td:first-child {\n border-left: 4px solid #888888;\n}\n\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-disabled td:first-child:before,\n.wpmud .list-table.hover-effect>tbody>tr.wphb-table-score-dismissed td:first-child:before {\n color: #888888;\n content: \"\\e904\";\n}\n\n.wphb-score-result-grade-aplus,\n.wphb-score-result-grade-a {\n color: #1ABC9C;\n}\n\n.wphb-score-result-grade-aplus .wphb-score-type-circle .wphb-score-graph-result,\n.wphb-score-result-grade-a .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #1ABC9C;\n}\n\n.wphb-score-result-grade-b {\n color: #1ABC9C;\n}\n\n.wphb-score-result-grade-b .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #1ABC9C;\n}\n\n.wphb-score-result-grade-c {\n color: #FFD000;\n}\n\n.wphb-score-result-grade-c .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #FFD000;\n}\n\n.wphb-score-result-grade-d {\n color: #FFD000;\n}\n\n.wphb-score-result-grade-d .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #FFD000;\n}\n\n.wphb-score-result-grade-e,\n.wphb-score-result-grade-f {\n color: #FF6D6D;\n}\n\n.wphb-score-result-grade-e .wphb-score-type-circle .wphb-score-graph-result,\n.wphb-score-result-grade-f .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #FF6D6D;\n}\n\n.wphb-score-result-grade-disabled,\n.wphb-score-result-grade-dismissed {\n color: #AAAAAA;\n}\n\n.wphb-score-result-grade-disabled .wphb-score-type-circle .wphb-score-graph-result,\n.wphb-score-result-grade-dismissed .wphb-score-type-circle .wphb-score-graph-result {\n stroke: #AAAAAA;\n}\n\n.wphb-score-have-label .wphb-score-type,\n.wphb-score-have-label .wphb-score-result-label {\n float: left;\n display: block;\n}\n\n.wphb-score-have-label.inside .wphb-score-type,\n.wphb-score-have-label.inside .wphb-score-result-label {\n float: none;\n}\n\n.wphb-score-have-label .wphb-score-result-label {\n font-family: 'Roboto', Arial, sans-serif;\n font-size: 15px;\n color: #888888;\n padding-left: 10px;\n}\n\n.wphb-score-have-label .wphb-score-type-circle+.wphb-score-result-label {\n line-height: 30px;\n min-width: 35px;\n text-align: left;\n}\n\n.wphb-score-have-label.inside .wphb-score-type {\n position: relative;\n}\n\n.wphb-score-have-label.inside .wphb-score-result-label {\n font-size: 26px;\n left: 0;\n line-height: 34px;\n margin: -17px 0 0;\n min-width: 100%;\n padding: 0;\n position: absolute;\n right: 0;\n text-align: center;\n top: 50%;\n}\n\n#wphb-error-details {\n display: none;\n}\n\n#wphb-error-details-link {\n color: white;\n text-decoration: none;\n margin-top: 10px;\n margin-bottom: 10px;\n display: inline-block;\n font-weight: 400;\n}\n\n#wphb-error-details-link>.dashicons {\n text-decoration: none;\n}\n\n#wphb-error-details-link.expanded {\n display: none;\n}\n\n.wpmud .wphb-tabs a {\n color: #333;\n display: block;\n}\n\n.wpmud .wphb-tabs .wphb-tab {\n padding: 5px 20px;\n height: 30px;\n}\n\n.wpmud .wphb-tabs .wphb-tab.current {\n background-color: #E6E6E6;\n border-radius: 20px;\n font-weight: 500;\n}\n\n.wpmud .wphb-tab .wphb-button-label {\n position: relative;\n top: -25px;\n left: 100%;\n margin-left: -22px;\n width: 39px;\n height: 26px;\n text-align: center;\n font-size: 12px;\n font-weight: 500;\n line-height: 24px;\n}\n\n.wpmud .wphb-tab>i {\n color: #FF6D6D;\n position: relative;\n top: -23px;\n left: 100%;\n margin-left: -5px;\n font-size: 21px;\n}\n\n.wpmud .wphb-tab>i.hb-wpmudev-icon-tick {\n color: #1ABC9C;\n}\n\n@media screen and (max-width: 960px) {\n .wpmud .wphb-table.stack {\n display: block;\n }\n\n .wpmud .wphb-table.stack>thead,\n .wpmud .wphb-table.stack>tfoot {\n display: none;\n }\n\n .wpmud .wphb-table.stack>tbody {\n display: block;\n width: 100%;\n }\n\n .wpmud .wphb-table.stack>tbody>tr {\n display: block;\n position: relative;\n width: 100%;\n }\n\n .wpmud .wphb-table.stack>tbody>tr:before {\n background: transparent;\n border-top: 1px solid #EAEAEA;\n border-bottom: 1px solid transparent;\n bottom: 0;\n content: \"\";\n display: block;\n left: 0;\n margin: 0 -30px;\n position: absolute;\n right: 0;\n top: 0;\n }\n\n .wpmud .wphb-table.stack>tbody>tr:first-child:before {\n border-top-color: transparent;\n }\n\n .wpmud .wphb-table.stack>tbody>tr>td {\n border-bottom: none;\n display: block;\n padding-left: 0;\n position: relative;\n text-align: left;\n width: 100%;\n }\n\n .wpmud .wphb-table.stack>tbody>tr>td:before {\n content: attr(th-data);\n display: block;\n float: left;\n font-size: 15px;\n font-weight: 700;\n line-height: 1.5em;\n min-width: 150px;\n max-width: 300px;\n margin-right: 20px;\n text-transform: uppercase;\n }\n\n .wpmud .wphb-table.stack>tbody>tr>td.has-button-label:before {\n line-height: 2em;\n }\n\n .wpmud .wphb-table.stack>tbody>tr>td.has-select {\n max-height: 64px;\n }\n\n .wpmud .wphb-table.stack>tbody>tr>td.has-select:before {\n line-height: 2.867em;\n }\n\n .wpmud .wphb-table.stack>tbody>tr,\n .wpmud .wphb-table.stack>tbody>tr>td:first-child {\n border-top: none;\n }\n\n .wpmud .wphb-table.stack>tbody>tr>td:last-child {\n border-bottom: none;\n }\n\n .wpmud .wphb-table.stack>tbody>tr:hover:before {\n background: #FBFBFB;\n }\n\n .wpmud .wphb-table.stack>tbody>tr:first-child:hover:before {\n border-top-color: #EAEAEA;\n }\n\n .wpmud .wphb-table.stack>tbody>tr:last-child:hover:before {\n border-bottom-color: #EAEAEA;\n }\n\n .wpmud .wphb-table.stack>tbody>tr:hover>td {\n border-bottom: none;\n }\n\n .wpmud .wphb-table.stack>tbody>tr:hover>td:first-child:after,\n .wpmud .wphb-table.stack>tbody>tr:hover>td:last-child:after {\n display: none;\n }\n\n .wpmud .wphb-table.stack>tbody>tr>td>* {\n display: inline-block;\n }\n}\n\n@media screen and (max-width: 783px) {\n .wpmud .wphb-table-wrapper.complex {\n overflow-y: hidden;\n width: 100%;\n padding: 0;\n }\n\n .wpmud .wphb-table-wrapper.complex p {\n padding: 0 20px;\n }\n\n .wpmud .wphb-table-wrapper.complex .alignleft {\n padding-left: 20px;\n }\n\n .wpmud .wphb-table-wrapper.complex .alignright {\n padding-right: 20px;\n }\n\n .wpmud .list-table>thead>tr>th,\n .wpmud .list-table>tbody>tr>td {\n width: 100%;\n }\n\n .wpmud .wphb-table.stack>tbody>tr>td:before {\n max-width: 220px;\n width: 40%;\n }\n\n .wpmud .dev-box .box-title .toggle-group {\n margin-top: 0;\n }\n}\n\n@media screen and (max-width: 600px) {\n .wpmud .dev-box .box-title .actions,\n .wpmud .dev-box .box-title .extra {\n float: none;\n display: block;\n }\n\n .wpmud .row,\n .wpmud .dev-box .box-title .actions,\n .wpmud .dev-box .box-title .extra {\n margin-top: 15px;\n }\n\n .wpmud .dev-box {\n margin-bottom: 15px;\n }\n\n .wpmud .dev-box .box-title {\n padding: 15px 20px;\n }\n\n .wpmud .dev-box .box-title .buttons {\n margin-top: 2px;\n float: right;\n }\n\n .wpmud .dev-box .box-title h3 {\n line-height: 34px;\n display: inline-block;\n }\n}\n\n@media only screen and (max-width: 480px) {\n .wpmud .list-table.hover-effect>tbody>tr[class*=\"wphb-table-score\"] td:first-child {\n padding-left: 20px;\n }\n\n .wpmud .with-bottom-border {\n padding-bottom: 20px;\n }\n}\n\n\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/app.scss","/* ****************************************************************************\n * COMMON: MIXINS\n */\n\n@import \"variables\";\n\n// High PPI display background\n@mixin background-2x($path, $ext: \"png\", $w: auto, $h: auto, $pos: left top, $repeat: no-repeat) {\n $at1x_path: \"#{$path}.#{$ext}\";\n $at2x_path: \"#{$path}@2x.#{$ext}\";\n\n background: url(\"#{$at1x_path}\") $repeat $pos;\n background-size: $w $h;\n\n @media only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and (min--moz-device-pixel-ratio: 2),\n only screen and (-o-min-device-pixel-ratio: 2/1),\n only screen and (min-device-pixel-ratio: 2),\n only screen and (min-resolution: 192dpi),\n only screen and (min-resolution: 2dppx) {\n background-image: url(\"#{$at2x_path}\");\n }\n}\n\n// Base at-root\n@mixin optional-at-root($sel) {\n @at-root #{if(not &, $sel, selector-append(&, $sel))} {\n @content;\n }\n}\n\n// Form Input Placeholder\n@mixin form-placeholder {\n @include optional-at-root('&::-webkit-input-placeholder') {\n @content;\n }\n\n @include optional-at-root('&:-moz-placeholder') {\n @content;\n }\n\n @include optional-at-root('&::-moz-placeholder') {\n @content;\n }\n\n @include optional-at-root('&:-ms-input-placeholder') {\n @content;\n }\n}\n\n// Breakpoints\n@mixin bp($point) {\n\n // Phone: < 480px\n @if $point == phone {\n @media only screen and (max-width: $phone) {\n @content;\n }\n }\n\n // Phone Large: < 600px\n @if $point == phone-large {\n @media only screen and (max-width: $phone--large) {\n @content;\n }\n }\n\n // Tablet: < 783px\n @if $point == tablet {\n @media only screen and (max-width: $tablet) {\n @content;\n }\n }\n\n // Desktop Small: < 960px\n @if $point == desktop-small {\n @media only screen and (max-width: $desktop--small) {\n @content;\n }\n }\n\n // Desktop: < 1100px\n @if $point == desktop {\n @media only screen and (max-width: $desktop) {\n @content;\n }\n }\n\n // Desktop Large: < 1200px\n @if $point == desktop-large {\n @media only screen and (max-width: $desktop--large) {\n @content;\n }\n }\n\n // Desktop Wide: < 1440px\n @if $point == desktop-wide {\n @media only screen and (max-width: $desktop--wide) {\n @content;\n }\n }\n\n // Desktop Very Large: < 1600px\n @if $point == desktop-very-large {\n @media only screen and (max-width: $desktop--very-large) {\n @content;\n }\n }\n\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/common/_mixins.scss","/* ****************************************************************************\n * COMMON: EXTEND/OVERRIDE WPMUDEV DASHBOARD/WP STYLES\n */\n\n/* Overwrite for the default notifications */\nbutton.notice-dismiss {\n position: absolute;\n top: 0;\n right: 1px;\n border: none !important;\n margin: 0 !important;\n padding: 9px !important;\n background: none !important;\n color: #72777c !important;\n cursor: pointer !important;\n}\n\n.wpmud .wphb-dismiss {\n float: right;\n}\n\n.wpmud #wpbody-content > .notice {\n margin: 5px 20px 2px 5px;\n}\n\n/* Fix for tooltip-below */\n.wpmud [tooltip].tooltip-bottom:before {\n margin-top: 2px;\n}\n\n.wpmud [tooltip].tooltip-bottom:after {\n margin-top: 12px;\n}\n\n/* Fix for overflowing tooltips */\n.wpmud .list-table > tbody > tr > td {\n z-index: 0;\n}\n\n.wpmud [tooltip].tooltip-s.tooltip-right:after {\n margin-left: -150px;\n}\n\n.wpmud .wrap-wp-hummingbird strong {\n color: #333333;\n}\n\n.wpmud .dev-overlay .back {\n background-color: rgba(51, 51, 51, 0.95);\n}\n\n.wpmud .dev-overlay .box {\n padding: 40px 30px 30px;\n}\n\n.wpmud .dev-overlay .title .title-action {\n font-family: 'Roboto', sans-serif;\n margin-top: 5px;\n vertical-align: middle;\n color: #888888;\n font-size: 13px;\n line-height: 30px;\n margin-right: -20px;\n}\n\n/* Install dashboard message */\n.wpmud #wpmu-install-dashboard {\n margin-left: 0;\n}\n\n.wpmud #wpcontent #wpmu-install-dashboard * {\n -webkit-box-sizing: content-box;\n box-sizing: content-box;\n}\n\n.wpmud #wpmu-install-dashboard .wpmu-message {\n font-family: inherit;\n font-weight: inherit;\n line-height: inherit;\n}\n\n/* Toggles */\n.wpmud .toggle .toggle-checkbox:checked + .toggle-label:before,\n.wpmud .toggle .toggle-checkbox:checked + .toggle-label {\n background-color: #17A8E3;\n}\n\n.wpmud .toggle .toggle-label:before {\n background: #AAA;\n}\n\n.wpmud .toggle .toggle-label {\n width: 44px;\n text-align: left;\n}\n\n.wpmud .toggle .toggle-checkbox:checked + .toggle-label:after {\n margin-left: 24px;\n}\n\n.wpmud .toggle .toggle-checkbox:checked:disabled + .toggle-label {\n background: transparent;\n}\n\n.wpmud .toggle .toggle-checkbox:checked:disabled + .toggle-label:before {\n bottom: 0;\n left: 0;\n right: 0;\n top: 0;\n}\n\n.wpmud .toggle .toggle-checkbox:checked:disabled + .toggle-label:after {\n margin-left: 1px;\n}\n\n.wpmud .toggle .toggle-label.small {\n width: 36px;\n height: 16px;\n}\n\n.wpmud .toggle .toggle-label.small:after {\n width: 14px;\n height: 14px;\n}\n\n.wpmud .toggle .toggle-checkbox:checked + .toggle-label.small:after {\n margin-left: 21px;\n}\n\n.wpmud .toggle .toggle-cross {\n color: rgba(221, 221, 221, 1);\n}\n\n.wpmud .toggle-group {\n display: inline-block;\n}\n\n.wpmud .toggle-item.bordered,\n.wpmud .wphb-block-entry.bordered {\n border-top: 1px solid #E6E6E6;\n padding-top: 30px;\n}\n\n.wpmud .toggle-item.space-top-small {\n margin: 15px 0 0;\n}\n\n.wpmud .toggle-item label {\n text-align: left;\n}\n\n.wpmud .toggle-item .toggle-item-group {\n display: table;\n width: 100%;\n}\n\n.wpmud .toggle-item .toggle-info,\n.wpmud .toggle-item .toggle-actions {\n display: table-cell;\n}\n\n.wpmud .toggle-item .toggle-item-title {\n color: #555;\n font: 400 15px/20px $font;\n margin: 0;\n}\n\n.wpmud .toggle-item .toggle-actions {\n padding-left: 30px;\n vertical-align: middle;\n text-align: right;\n}\n\n/* Spinners */\n.wpmud .spinner.standalone {\n float: none;\n margin: 0;\n}\n\n.wpmud .spinner.left {\n float: left;\n}\n\n.wpmud .spinner.hide { /* Don't take/render block on layout */\n display: none;\n}\n\n.wpmud .spinner.visible { /* Re-set visibility to visible */\n visibility: visible;\n}\n\n@include bp(desktop-small) {\n .wpmud .dev-overlay {\n left: 35px;\n top: 15px;\n }\n}\n\n@include bp(tablet) {\n .wpmud .dev-overlay {\n left: 0;\n top: 0;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/common/_overwrites.scss","/* ****************************************************************************\n * COMMON: TYPOGRAPHY\n */\n\n@import \"_variables\";\n\n/* Fonts */\n@font-face {\n font-family: 'Hummingbird';\n src: url('#{$font--path}/hummingbird.eot?9e5j46');\n src: url('#{$font--path}/hummingbird.eot?9e5j46#iefix') format('embedded-opentype'),\n url('#{$font--path}/hummingbird.ttf?9e5j46') format('truetype'),\n url('#{$font--path}/hummingbird.woff?9e5j46') format('woff'),\n url('#{$font--path}/hummingbird.svg?9e5j46#hummingbird') format('svg');\n font-weight: normal;\n font-style: normal;\n}\n\n[class^=\"hb-\"], [class*=\" hb-\"] {\n /* use !important to prevent issues with browser extensions that change fonts */\n font-family: $font--icons !important;\n speak: none;\n font-size: 15px;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n/**\n Icons (start)\n */\n.hb-fi-filter {\n &:before {\n content: \"\\7a\";\n }\n}\n.hb-fi-wand {\n &:before {\n content: \"\\5a\";\n }\n}\n\n.hb-fi-settings-slider-control {\n &:before {\n content: \"\\7b\";\n }\n}\n\n.hb-icon-audit {\n &:before {\n content: \"\\e900\";\n }\n}\n\n.hb-wpmudev-icon-cross {\n &:before {\n content: \"\\e901\";\n }\n}\n\n.hb-wpmudev-icon-info {\n &:before {\n content: \"\\e902\";\n }\n}\n\n.hb-wpmudev-icon-tick {\n &:before {\n content: \"\\e903\";\n }\n}\n\n.hb-wpmudev-icon-warning {\n &:before {\n content: \"\\e904\";\n }\n}\n\n.hb-icon-cache {\n &:before {\n content: \"\\e905\";\n }\n}\n\n.hb-icon-cloudflare {\n &:before {\n content: \"\\e906\";\n }\n}\n\n.hb-icon-gzip {\n &:before {\n content: \"\\e907\";\n }\n}\n\n.hb-icon-minify-combine {\n &:before {\n content: \"\\e908\";\n }\n}\n\n.hb-icon-minify-defer {\n &:before {\n content: \"\\e909\";\n }\n}\n\n.hb-icon-minify-footer {\n &:before {\n content: \"\\e90a\";\n }\n}\n\n.hb-icon-minify {\n &:before {\n content: \"\\e90b\";\n }\n}\n\n.hb-icon-performancetest {\n &:before {\n content: \"\\e90c\";\n }\n}\n\n.hb-icon-reports {\n &:before {\n content: \"\\e90d\";\n }\n}\n\n.hb-icon-restore {\n &:before {\n content: \"\\e90e\";\n }\n}\n\n.hb-icon-smush {\n &:before {\n content: \"\\e90f\";\n }\n}\n\n.hb-icon-minify-inline {\n &:before {\n content: \"\\e910\";\n }\n}\n\n.hb-wpmudev-icon-eye {\n &:before {\n content: \"\\e911\";\n }\n}\n\n.hb-wpmudev-icon-wrench-tool {\n &:before {\n content: \"\\e912\";\n }\n}\n\n.hb-wpmudev-icon-profile-male {\n &:before {\n content: \"\\e913\";\n }\n}\n\n.hb-wpmudev-icon-page {\n &:before {\n content: \"\\e914\";\n }\n}\n\n.hb-wpmudev-icon-academy {\n &:before {\n content: \"\\e915\";\n }\n}\n\n.hb-fi-plugin-2 {\n &:before {\n content: \"\\4f\";\n }\n}\n\n.hb-fi-arrow-right {\n &:before {\n content: \"\\af\";\n }\n}\n\n.hb-fi-trash:before {\n content: \"\\51\";\n}\n/**\n Icons (end)\n */\n\n.wpmud .wphb-icon {\n position: relative;\n}\n\n.wpmud .wphb-icon-left {\n display: block;\n float: left;\n}\n\n.wpmud .wphb-dash-icon {\n font-size: 12px;\n padding-right: 2px;\n}\n\n.wpmud .cf-dismiss {\n display: block;\n margin-top: 6px;\n}\n\n.wpmud .wphb-cf-notice .cf-dismiss a {\n text-transform: uppercase;\n text-decoration: none;\n color: #888;\n}\n\n\n/* Caching and Advanced */\n.wpmud .box-advanced-general h4,\n.wpmud .box-page-caching h4 {\n color: #666666;\n font-size: 15px;\n font-weight: 500;\n text-align: left;\n text-transform: none;\n}\n\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/common/_typography.scss","/* ****************************************************************************\n * COMMON: BUTTONS\n */\n\n@import \"variables\";\n@import \"mixins\";\n\n/* Box-content with buttons */\n.wpmud .box-content .buttons {\n margin-top: 30px;\n}\n\n.wpmud .box-content .buttons.buttons-on-left {\n text-align: left;\n}\n\n.wpmud .box-content .buttons.buttons-on-right {\n text-align: right;\n}\n\n/* Box-footer with buttons */\n.wpmud .box-footer .buttons.buttons-on-left {\n text-align: left;\n}\n\n.wpmud .box-footer .buttons.buttons-on-right {\n text-align: right;\n}\n\n.wpmud .wphb-notice:not(.notice) .buttons {\n margin: 10px 30px 0;\n}\n\n\n\n\n.wpmud .wrap-wp-hummingbird .report-status .sui-tag {\n margin-top: 10px;\n}\n\n.wpmud .wrap-wphb-performance .scan-settings .buttons {\n margin-top: 30px;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient > button {\n background-color: #888888 !important;\n border-radius: 0 4px 4px 0 !important;\n}\n\n.wpmud .wrap-wphb-gzip #enable-cache-wrap .button,\n.wpmud .wrap-wphb-caching #enable-cache-wrap .button {\n margin-top: 30px;\n}\n\n.wpmud .wphb-code-snippet .button {\n position: absolute;\n left: 100%;\n margin-left: -90px !important;\n margin-top: 15px !important;\n}\n\n.wpmud .box-caching-gravatar .button-large {\n margin: 0 !important;\n}\n\n.wrap-wp-hummingbird .button-cta-green:hover {\n box-shadow: none;\n}\n\n.wphb-scan-progress .wphb-scan-cancel-button {\n float: right;\n margin-top: -13px;\n}\n\n.wphb-scan-progress .wphb-scan-cancel-button > a {\n font-size: 12px;\n color: #AAAAAA;\n text-transform: uppercase;\n}\n\n/* Buttons */\n\n.wpmud .wrap-wp-hummingbird .wpdui-btn {\n font: 500 12px/16px $font !important;\n padding: 7px 16px;\n height: 30px;\n background-color: #888;\n color: #FFFFFF;\n border-radius: 3px;\n -moz-border-radius: 3px;\n transition: all .3s ease;\n -webkit-transition: all .3s ease;\n text-shadow: none !important;\n}\n.wpmud .report-status button.sui-button-upsell {\n margin-top: 10px !important;\n text-transform: uppercase;\n\n height: 30px;\n line-height: 16px;\n padding: 0 16px;\n &:not(:disabled){\n background-color: #d1f1ea !important;\n color: #1abc9c !important;\n &:hover,\n &:focus {\n background-color: #d1f1ea !important;\n color: #1abc9c !important;\n border-color: #d1f1ea !important;\n }\n }\n\n\n\n i {\n color: #1abc9c;\n font-size: 16px;\n position: relative;\n line-height: 16px;\n top: 2px;\n }\n}\n\n.wpmud .wrap-wp-hummingbird {\n .wphb-notice {\n &.notice {\n .sui-button.button {\n &:hover,\n &:focus {\n color: white;\n }\n }\n }\n }\n}\n\n.wpmud .wrap-wp-hummingbird button.button-large:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird button.button-large,\n.wpmud .wrap-wp-hummingbird .button.button-large {\n font: 500 15px/20px $font !important;\n height: 40px !important;\n padding: 11px 20px 9px;\n}\n\n.wpmud .wrap-wp-hummingbird button.button-ghost:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird .button-ghost,\n.wpmud .wphb-modal .button-ghost {\n padding: 5px 16px 7px !important;\n background-color: transparent !important;\n border: 2px solid #DDDDDD;\n color: #888888 !important;\n}\n\n.wpmud .wrap-wp-hummingbird button.button-ghost:hover:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird .button-ghost:hover:not(:focus):not(:active),\n.wpmud .wrap-wp-hummingbird .button-ghost:active,\n.wpmud .wrap-wp-hummingbird .button-ghost.active,\n.wpmud .wrap-wp-hummingbird .button-ghost:hover:enabled,\n.wpmud .wrap-wp-hummingbird .button-ghost:focus,\n.wpmud .wrap-wp-hummingbird .button-grey:hover {\n background-color: #7B7B7B !important;\n border-color: #7B7B7B;\n color: #FFFFFF !important;\n}\n\n.wpmud .wrap-wp-hummingbird button.button-ghost.button-large:not(.wph-button):not(#collapse-button),\n.wpmud .wrap-wp-hummingbird .button-ghost.button-large,\n.wpmud .wphb-modal .button-ghost.button-large {\n padding: 9px 20px 9px !important;\n}\n\n.wpmud .wphb-modal .button-content-cta {\n box-shadow: none;\n background-color: #1ABC9C !important;\n color: #FFFFFF;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta {\n box-shadow: none;\n background-color: #1ABC9C;\n color: #FFFFFF;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta:hover:not(:focus):not(:active),\n.wpmud .wphb-modal .button-content-cta:hover:not(:focus):not(:active),\n.wpmud .wrap-wp-hummingbird .button-content-cta:active,\n.wpmud .wrap-wp-hummingbird .button-content-cta:focus {\n background: #0DAF8F !important;\n border-color: #0DAF8F;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta.button-ghost {\n background: transparent;\n color: #1ABC9C !important;\n border-color: #1ABC9C;\n border-radius: 20px;\n}\n\n.wpmud .wrap-wp-hummingbird .button-content-cta.button-ghost:active {\n color: #FFFFFF !important;\n border-color: #0DAF8F;\n}\n\n.wpmud .wrap-wp-hummingbird .button-notice {\n background-color: #E6E6E6 !important;\n color: #AAAAAA !important;\n}\n\n.wpmud .wrap-wp-hummingbird .button-notice:hover:not(:focus):not(:active):not(.wph-button):not(#collapse-button):not([tooltip]),\n.wpmud .wrap-wp-hummingbird .button-notice:hover:not(:focus):not(:active),\n.wpmud .wrap-wp-hummingbird .button-notice:active,\n.wpmud .wrap-wp-hummingbird .button-notice:focus {\n background-color: #888888 !important;\n color: #FFFFFF !important;\n}\n\n.wpmud .wrap-wp-hummingbird .button-grey {\n background-color: #888888 !important;\n color: #FFFFFF !important;\n}\n\n@include bp(phone) {\n .wpmud .box-content .buttons {\n margin-top: 0;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/common/_buttons.scss","/* ****************************************************************************\n * COMMON: LAYOUT\n */\n\n@import \"variables\";\n@import \"mixins\";\n\n/* .row */\n.wpmud .row {\n margin-top: 30px;\n}\n\n.wpmud .box-content .row:first-of-type {\n margin-top: 0;\n}\n\n.wpmud .row-space-large {\n margin-bottom: 40px;\n}\n\n.wpmud .row .col-center {\n display: block;\n margin-right: auto;\n margin-left: auto;\n}\n\n.wpmud .row .col-quarter,\n.wpmud .row .col-three-quarters,\n.wpmud .row .col-fifth,\n.wpmud .row .col-four-fifths {\n display: table-cell;\n padding: 0 15px 0 15px;\n position: relative;\n vertical-align: top;\n}\n\n.wpmud .row .col-quarter {\n width: 25%;\n}\n\n.wpmud .row .col-three-quarters {\n width: 75%;\n}\n\n.wpmud .row .col-fifth {\n width: 20%;\n}\n\n.wpmud .row .col-four-fifths {\n width: 80%;\n}\n\n.wpmud .row .col-four-fifths.hidden {\n display: none;\n}\n\n.wpmud .row .col-quarter:first-child,\n.wpmud .row .col-three-quarters:first-child,\n.wpmud .row .col-fifth:first-child,\n.wpmud .row .col-four-fifths:first-child {\n padding-left: 0;\n}\n\n.wpmud .row .col-quarter:last-child,\n.wpmud .row .col-three-quarters:last-child,\n.wpmud .row .col-fifth:last-child,\n.wpmud .row .col-four-fifths:last-child {\n padding-right: 0;\n}\n\n/* .dev-box */\n.wpmud .dev-box {\n padding: 0;\n}\n\n.wpmud .dev-box:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .dev-box .box-title {\n clear: both;\n height: inherit;\n margin: 0;\n padding: 0 30px;\n}\n\n.wpmud .dev-box .box-title h3 {\n font-size: 16px;\n color: #333333;\n float: left;\n}\n\n.wpmud .dev-box .box-title .wphb-label-notice-inline {\n margin: 2px 15px;\n}\n\n.wpmud .dev-box .box-title:after {\n content: '';\n display: table;\n clear: both;\n}\n\n.wpmud .dev-box .box-title .extra {\n float: right;\n}\n\n.wpmud .dev-box .box-title .extra-text {\n margin: 20px 0 0;\n}\n\n.wpmud .dev-box .box-title .extra-label {\n display: inline-block;\n margin: 0;\n line-height: 20px;\n}\n\n.wpmud .dev-box .box-title .extra-label-value {\n color: #477B92;\n font-weight: 400;\n text-transform: uppercase;\n}\n\n.wpmud .dev-box .box-title .wphb-select-group {\n margin: 10px 0 0;\n}\n\n.wpmud .sui-box-header .test-results-label {\n display: block;\n float: left;\n font-family: $font--alt;\n font-weight: 700;\n line-height: 30px;\n margin-right: 10px;\n text-transform: uppercase;\n}\n\n.wpmud .dev-box .box-title .test-results .wphb-score {\n display: block;\n float: left;\n}\n\n.wpmud .dev-box .box-title .toggle-group {\n margin: 6px 15px 0 0;\n}\n\n.wpmud .dev-box .box-content {\n padding: 30px;\n word-wrap: break-word;\n}\n\n.wpmud .dev-box .box-content > * {\n margin-bottom: 20px;\n}\n\n.wpmud .dev-box .box-content > *:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .dev-box .box-content .row-space-large {\n margin-bottom: 40px;\n}\n\n/* .box-content */\n.wpmud .box-content.no-padding {\n padding: 0 !important;\n}\n\n.wpmud .box-content.no-vertical-padding {\n padding-top: 0 !important;\n padding-bottom: 0 !important;\n}\n\n.wpmud .wphb-modal .no-side-padding,\n.wpmud .box-content.no-side-padding {\n padding-right: 0 !important;\n padding-left: 0 !important;\n}\n\n.wpmud .box-content .no-top-padding {\n padding-top: 0 !important;\n}\n\n.wpmud .box-content .with-padding {\n padding: 30px;\n}\n\n.wpmud .box-content .add-side-padding {\n padding-right: 30px;\n padding-left: 30px;\n}\n\n.wpmud .box-footer {\n margin-top: 0;\n padding: 30px;\n border-top: 1px solid #EAEAEA;\n}\n\n/* Block: Section */\n.wpmud .wphb-block-section {\n margin-top: 40px;\n}\n\n.wpmud .wphb-block-section:first-child {\n margin-top: 0;\n}\n\n.wpmud .wphb-block-section-content * {\n color: #555;\n line-height: 20px;\n}\n\n/* Box: Content */\n.wpmud .content-box .wphb-block-entry-image-bottom {\n margin-bottom: -30px;\n}\n\n.wpmud .content-box .wphb-block-entry-image-center {\n margin-top: 30px;\n}\n\n.wpmud .content-box .wphb-block-entry-image-center img {\n margin-left: auto;\n margin-right: auto;\n}\n\n/* Box: Content One Col */\n.wpmud .content-box-one-col {\n}\n\n/* Box: Content One Col Center */\n.wpmud .content-box-one-col-center .box-content {\n text-align: left;\n}\n\n.wpmud .content-box-one-col-center .wphb-block-entry-content {\n margin: 0 auto;\n}\n\n.wpmud .content-box-flex {\n display: flex;\n justify-content: space-between;\n align-items: flex-end;\n}\n\n/* Box: Content w/Image (left) */\n.wpmud .content-box-two-cols-image-left .box-content {\n text-align: left;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-image,\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n display: block;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-image {\n float: left;\n max-width: 192px;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 30px 0 0 285px;\n}\n\n.wpmud .content-box-two-cols-image-left .wphb-block-entry-content .title {\n text-align: left;\n}\n\n/* Block: Content */\n.wpmud .wphb-block + .wphb-block {\n margin-top: 30px;\n}\n\n.wpmud .wphb-block-header {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-block-title {\n font-family: $font--alt;\n font-size: 22px;\n line-height: 26px;\n margin: 0;\n overflow: hidden;\n text-align: left;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.wpmud .wphb-block-content + .wphb-block-content {\n margin-top: 30px;\n}\n\n.wpmud .wphb-block-content > *:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .wphb-block-content-center {\n text-align: center;\n}\n\n.wpmud .wphb-block-content pre {\n font-weight: 500;\n font-family: $font;\n font-size: 13px;\n line-height: 18px;\n background-color: #F8F8F8;\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n margin: 0;\n padding: 20px 30px;\n white-space: pre;\n overflow-x: scroll;\n max-width: 100%;\n}\n\n.wpmud .wphb-block-content-blue {\n background-color: #e0f6ff;\n border-radius: 5px;\n padding: 20px 30px;\n}\n\n.wpmud .wphb-block-content .tooltip-box,\n.wpmud .wphb-block-content .toggle,\n.wpmud .wphb-block-content .toggle .toggle-label {\n height: 21px;\n vertical-align: top;\n}\n\n.wpmud .wphb-block-content-group {\n border-collapse: separate;\n border-spacing: 0;\n display: table;\n width: 100%;\n}\n\n.wpmud .wphb-block-content-group-inner {\n display: table-row;\n}\n\n.wpmud .wphb-block-content-group-item {\n display: table-cell;\n vertical-align: middle;\n width: 100%;\n}\n\n.wpmud .wphb-block-content-group-item .wphb-block-content {\n margin-left: 30px;\n}\n\n.wpmud .wphb-block-content-group-item:first-child .wphb-block-content {\n margin-left: 0;\n}\n\n.wpmud .wphb-block-content-group .wphb-block-content.small {\n padding: 20px 23px;\n width: 80px;\n}\n\n/* Block: Entry Content */\n.wpmud .wphb-block-entry:after {\n content: '';\n clear: both;\n display: block;\n}\n\n.wpmud .wphb-block-entry-content .title {\n color: #333333;\n font-size: 22px;\n font-weight: bold;\n line-height: 1.333em;\n margin: 0 0 0.5em;\n max-width: 100%;\n text-transform: uppercase;\n}\n\n.wpmud .wphb-block-entry-content .title,\n.wpmud .wphb-block-entry-content .content > p {\n margin: 0 0 20px;\n}\n\n.wpmud .content {\n margin-bottom: 30px;\n}\n.wpmud .wphb-block-entry-content .content > p:last-child {\n margin-bottom: 0;\n}\n\n/* Top summary modules */\n.wpmud .wphb-block-entry-third {\n color: #333333;\n width: calc(100% / 2 - 98px);\n padding-left: 5%;\n padding-top: 10px;\n display: inline-block;\n vertical-align: middle;\n}\n\n.wpmud .wphb-block-entry-third span {\n font-weight: 400;\n}\n\n.wpmud .wphb-block-entry-third p {\n font-size: 13px;\n margin-top: 0;\n color: #888888;\n}\n\n.wpmud .wphb-block-entry-third span.not-present {\n font-size: 55px;\n line-height: 30px;\n margin-bottom: 20px;\n}\n\n.wpmud .wphb-block-entry-third span.score-span {\n font-size: 13px;\n margin-left: -12px;\n}\n\n.wpmud .wphb-block-entry-third .current-performance-score {\n margin-bottom: 20px;\n}\n\n.wpmud i.hb-wpmudev-icon-info.dismissed,\n.wpmud .wphb-block-entry-third .hb-wpmudev-icon-info {\n color: #888888;\n &:before {\n color: #888888;\n }\n}\n\n.wpmud .wphb-block-entry-third .hb-wpmudev-icon-tick {\n color: #1ABC9C;\n}\n\n.wpmud .wphb-block-entry-third .dev-list {\n margin: 0 !important;\n border-bottom: 0;\n}\n\n.wpmud .wphb-block-entry-third .dev-list li:first-child span {\n padding-top: 4px;\n}\n\n@include bp(desktop-large) {\n .wpmud .wrap-wphb .row .col-half,\n .wpmud .wrap-wphb-caching .row .col-half,\n .wpmud .wrap-wphb-gzip .row .col-half {\n display: block;\n margin-top: 30px;\n padding: 0;\n width: 100%;\n }\n\n .wpmud .wrap-wphb .row .col-half:first-child,\n .wpmud .wrap-wphb-caching .row .col-half:first-child,\n .wpmud .wrap-wphb-gzip .row .col-half:first-child {\n margin-top: 0;\n }\n\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 65px;\n }\n}\n\n@include bp(desktop) {\n /* Box: Content w/Image (left) */\n .wpmud .content-box-two-cols-image-left .wphb-block-entry {\n text-align: center;\n min-height: 100%;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-image {\n display: none;\n }\n\n .wpmud .wphb-block-entry-third {\n width: 49%;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-image .wphb-image {\n margin: 0 auto;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 35px 0 0 155px;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content .title {\n text-align: center;\n }\n\n .wpmud .wphb-block-entry-third {\n text-align: left;\n padding-left: 0;\n }\n}\n\n@include bp(desktop-small) {\n /* Generic */\n .wpmud .row {\n display: block;\n }\n\n .wpmud .row .col-fifth {\n display: block;\n width: 100%;\n padding: 0;\n }\n\n .wpmud .row .col-four-fifths {\n display: block;\n width: 100%;\n padding: 0;\n }\n\n .wpmud .wphb-block-entry-third {\n padding-left: 0;\n }\n\n .wpmud .wphb-block-entry-third .current-performance-score {\n margin-bottom: 5px;\n }\n\n /*\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content.wphb-cf-notice {\n margin: 35px 0 0 0;\n }\n */\n}\n\n@include bp(tablet) {\n .wpmud .box-content .with-padding {\n // TODO: why was it 0?\n /*padding: 0;*/\n padding: 15px 20px;\n }\n\n .wpmud .row,\n .wpmud .row-sep {\n display: block;\n table-layout: inherit;\n }\n\n .wpmud .row .col-third,\n .wpmud .row .col-two-third,\n .wpmud .row .col-half,\n .wpmud .row .col-quarter,\n .wpmud .row .col-three-quarters {\n display: block;\n margin-top: 30px;\n padding: 0;\n width: 100%;\n }\n\n .wpmud .row .col-third:first-child,\n .wpmud .row .col-two-third:first-child,\n .wpmud .row .col-half:first-child,\n .wpmud .row .col-quarter:first-child,\n .wpmud .row .col-three-quarters:first-child {\n margin-top: 0;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-image {\n display: none;\n }\n}\n\n@include bp(phone-large) {\n .wpmud .wphb-block-entry-third {\n display: block;\n text-align: center;\n width: 100%;\n }\n\n .wpmud .wphb-block-entry-third .dev-list {\n text-align: left;\n }\n\n .wpmud .dev-box .box-title .test-results {\n float: none;\n display: block;\n }\n}\n\n@include bp(phone) {\n .wpmud .row .col-third,\n .wpmud .row .col-two-third,\n .wpmud .row .col-half,\n .wpmud .row .col-quarter,\n .wpmud .row .col-three-quarters {\n margin-top: 15px;\n }\n\n .wpmud .dev-box .box-content,\n .wpmud .box-footer {\n padding: 15px 20px;\n }\n\n .wpmud .dev-box .box-content > * {\n margin-bottom: 15px;\n }\n\n .wpmud .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 35px 0 0 135px;\n }\n\n .wpmud .dev-box .box-title .test-results {\n margin-top: 2px;\n float: right;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/common/_layout.scss","/* ****************************************************************************\n * COMMON: MODALS\n */\n\n.wpmud .dev-overlay .title .close {\n color: #888888;\n font-size: 34px;\n}\n\n.wpmud .wphb-modal * {\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n font-family: $font;\n}\n\n.wpmud .wphb-modal .wphb-dialog-content > * {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-modal .wphb-dialog-content > *:last-child {\n margin-bottom: 0;\n}\n\n.wpmud .wphb-modal .wphb-dialog-content .wphb-modal-image-bottom {\n margin-bottom: -30px;\n}\n\n.wpmud .wphb-modal .wphb-progress-state {\n margin-top: -20px;\n}\n\n.wpmud .wphb-modal .wphb-dialog-footer {\n border-top: 1px solid #EAEAEA;\n margin: 30px -30px;\n padding: 30px 30px 0;\n}\n\n.wpmud .wphb-progress-modal .wphb-progress,\n.wpmud .wphb-progress-modal .wphb-block-test {\n max-width: 100%;\n}\n\n.wpmud .wphb-progress-modal .wphb-dialog-content p {\n color: #666666;\n}\n\n.wpmud .wphb-progress-modal .wphb-notice-box p {\n color: #333333;\n font-size: 13px;\n line-height: 22px;\n}\n\n/* CDN modal */\n.wphb-cdn-block {\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n padding: 18px 0;\n}\n\n.wphb-cdn-block > div {\n display: flex;\n align-content: center;\n align-items: center;\n height: auto;\n padding: 20px 30px 0;\n}\n\n.wphb-cdn-block > div > label {\n margin: 2px 0 0 0;\n color: #666666;\n}\n\n.wphb-cdn-block > p {\n color: #888888 !important;\n padding: 0 30px 0 76px;\n}\n\n.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test,\n.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test,\n.wpmud.toplevel_page_wphb-minification .wphb-modal .wphb-block-test {\n display: flex;\n align-content: center;\n align-items: center;\n height: auto;\n padding: 20px 30px;\n margin-bottom: 30px;\n}\n\n.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test {\n margin-bottom: 10px;\n}\n\n.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test > p {\n font-size: 13px;\n line-height: 22px;\n margin-right: 14px;\n margin-bottom: 0;\n}\n\n.wpmud .wphb-modal.wphb-quick-setup-modal .wphb-block-test > .button {\n flex-basis: 260px; /* IE compatibility */\n}\n\n.wpmud.hummingbird_page_wphb-minification .wphb-modal .wphb-block-test > label {\n margin: 0;\n}\n\n.wpmud .dev-overlay.dismiss-report .box {\n width: 400px;\n margin-left: -250px;\n}\n\n.wpmud .dev-overlay.dismiss-report .title {\n margin-bottom: 30px;\n}\n\n.wpmud .dev-overlay.dismiss-report .title h3 {\n font-size: 15px;\n text-transform: none;\n}\n\n.wpmud .dev-overlay.dismiss-report .wphb-dialog-content > p {\n color: #888888;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .dev-overlay.dismiss-report .wphb-dialog-footer {\n border: none;\n}\n\n/* Asset Optimization switch mode notice */\n.wpmud .wphb-basic-minification-modal .box,\n.wpmud .wphb-advanced-minification-modal .box,\n.wpmud .wphb-database-cleanup-modal .box {\n width: 400px !important;\n margin-left: -200px !important;\n padding: 40px 0 30px !important;\n}\n\n.wpmud .wphb-basic-minification-modal .title,\n.wpmud .wphb-advanced-minification-modal .title,\n.wpmud .wphb-database-cleanup-modal .title {\n display: none;\n}\n\n.wpmud .wphb-basic-minification-modal h1,\n.wpmud .wphb-advanced-minification-modal h1,\n.wpmud .wphb-database-cleanup-modal h1 {\n color: #333333;\n font-size: 22px;\n font-weight: bold;\n line-height: 30px;\n text-transform: none;\n}\n\n.wpmud .wphb-basic-minification-modal p,\n.wpmud .wphb-advanced-minification-modal p,\n.wpmud .wphb-database-cleanup-modal p {\n color: #666;\n font-size: 13px;\n line-height: 22px;\n margin: 0 30px;\n text-align: center;\n}\n\n.wpmud .wphb-basic-minification-modal img,\n.wpmud .wphb-advanced-minification-modal img {\n margin-left: 0;\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/common/_modals.scss","/* ****************************************************************************\n * COMPONENTS: NOTICES\n */\n\n@import \"../common/variables\";\n@import \"../common/mixins\";\n\n.wpmud .wrap-wp-hummingbird .notice {\n margin: 15px 0 0;\n order: 10;\n width: 100%;\n}\n\n.wpmud .wrap-wp-hummingbird > .wphb-notice:not(.notice) {\n width: 600px;\n box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);\n border-radius: 0 0 5px 5px;\n padding: 10px 30px;\n position: absolute !important;\n z-index: 100;\n left: 50%;\n margin-left: -300px;\n top: 0;\n}\n\n.wpmud .wphb-notice:not(.notice) {\n border-radius: 5px;\n color: #333;\n font-family: $font;\n font-size: 15px;\n font-weight: 400;\n line-height: 18px;\n padding: 15px 30px;\n position: relative;\n width: 100%;\n}\n\n\n.wpmud .wrap-wp-hummingbird > .wphb-notice.wphb-dash-settings-updated {\n position: fixed !important;\n top: 30px;\n margin-left: -210px;\n}\n\n.wpmud .wphb-notice.notice p {\n font-size: 14px;\n line-height: 1.5;\n margin: 10px 0;\n}\n\n.wpmud .wphb-notice {\n p {\n color: #333;\n }\n}\n\n\n.wpmud .wphb-notice:not(.notice) p,\n.wpmud .wphb-notice:not(.notice) span,\n.wpmud .wphb-notice ul,\n.wpmud .wphb-notice strong {\n margin: 0 0 10px -30px;\n padding: 0 0 0 30px;\n}\n\n.wpmud .wphb-notice:not(.notice) p:last-of-type {\n margin: 0;\n}\n\n.wpmud .wphb-notice .wphb-icon,\n.wpmud .wphb-notice .wphb-icon .wdv-icon {\n font-size: 22px;\n height: 22px;\n line-height: 22px;\n width: 22px;\n}\n\n.wpmud .wphb-notice.can-close .close {\n cursor: pointer;\n color: #333333;\n font-size: 12px;\n font-weight: bold;\n line-height: 36px;\n margin-left: 0;\n opacity: 0.5;\n text-transform: uppercase;\n}\n\n.wpmud .wphb-block-entry-third span.status-ok:before,\n.wpmud span.dash-cloudflare-connected-status:before,\n.wpmud .wphb-notice-error.can-close p:before,\n.wpmud .wphb-notice-success.can-close p:before,\n.wpmud .wphb-notice-success p:first-child:before,\n.wpmud .wphb-notice-error p:first-child:before,\n.wpmud .wphb-notice-warning p:first-child:before,\n.wpmud .wphb-notice-grey p:before,\n.wpmud .wphb-notice-grey-info p:before,\n.wpmud .wphb-notice-blue p:first-child:before,\n.wpmud .wphb-notice-blue-info p:first-child:before {\n font-family: $font--icons;\n font-size: 20px;\n vertical-align: middle;\n line-height: 20px;\n top: -2px;\n position: relative;\n margin-left: -30px;\n margin-right: 10px;\n}\n\n.wpmud .wphb-notice-success {\n background-color: #D1F1EA;\n}\n\n.wpmud .wphb-notice-error {\n background-color: #FFE5E9;\n}\n\n.wpmud .wphb-notice-warning {\n background-color: #FFF5D5;\n color: #333333;\n}\n\n.wpmud .wphb-notice-blue,\n.wpmud .wphb-notice-blue-info {\n background-color: #E1F6FF;\n margin-top: 30px;\n}\n\n.wpmud .wphb-notice-grey,\n.wpmud .wphb-notice-grey-info {\n background-color: #F2F2F2;\n margin-top: 10px;\n}\n\n.wpmud .cloudflare-step .wphb-notice-blue {\n margin-top: 0;\n}\n\n.wpmud .wphb-block-entry-third span.status-ok:before,\n.wpmud .wphb-notice-success p:before {\n content: '\\e903';\n color: #1ABC9C;\n}\n\n.wpmud .wphb-block-entry-third span.status-ok:before {\n margin-right: 0;\n line-height: 20px;\n}\n\n.wpmud .wphb-notice-error p:before {\n content: '\\e904';\n color: #FF7F83;\n}\n\n.wpmud .wphb-notice-warning p:before {\n content: '\\e902';\n color: #FECF2F;\n font-size: 18px;\n line-height: 18px;\n}\n\n.wpmud .wphb-notice-blue p:before {\n content: '\\e903';\n color: #17A8E3;\n}\n\n.wpmud .wphb-notice-blue-info p:before {\n content: '\\e902';\n color: #17A8E3;\n}\n\n.wpmud .wphb-notice-grey p:before,\n.wpmud .wphb-notice-grey-info p:before {\n content: '\\e902';\n color: #888888;\n}\n\n.wpmud .dev-overlay .wphb-notice-warning p {\n font-size: 14px;\n line-height: 22px;\n}\n\n\n.wpmud .wphb-heading-status-green {\n color: #1ABC9C;\n}\n\n.wpmud .wphb-heading-status {\n font-family: $font--alt;\n font-size: 30px;\n margin-top: 0;\n}\n\n@include bp(tablet) {\n .wpmud .wrap-wp-hummingbird > .wphb-notice {\n width: 85%;\n }\n}\n\n@include bp(phone-large) {\n .wpmud .wrap-wp-hummingbird > .wphb-notice {\n width: 100%;\n top: 46px;\n margin-left: -251px;\n }\n}\n\n@include bp(phone) {\n .wpmud .wphb-notice:not(.notice) {\n padding: 15px 20px;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/components/_notices.scss","/* ****************************************************************************\n * COMPONENTS: PILLS\n */\n\n@import \"../common/mixins\";\n\n.wphb-pills {\n display: inline-block;\n background-color: #FFD000;\n color: #333333;\n border-radius: 15px;\n width: 39px;\n height: 26px;\n font-size: 12px;\n line-height: 26px;\n text-align: center;\n font-weight: 500;\n}\n\n.wpmud .box-title .wphb-pills {\n margin: 16px 0 0 10px;\n}\n\n.wphb-pills.grey {\n background-color: #F2F2F2;\n color: #666;\n}\n\n.wphb-pills.red {\n background-color: #FF6D6D;\n color: #fff;\n}\n\n.wphb-pills.green {\n background-color: #1ABC9C;\n color: #fff;\n}\n\n.wphb-pills.with-arrow:after {\n border: 8px solid transparent;\n content: '';\n height: 0;\n pointer-events: none;\n position: absolute;\n width: 0;\n z-index: 1;\n}\n\n.wphb-pills.with-arrow.right:after {\n border-left-color: #19B4CF;\n left: 50%;\n margin-top: -8px;\n top: 50%;\n}\n\n.wphb-pills.with-arrow.left:after {\n border-right-color: #19B4CF;\n right: 100%;\n margin-top: -8px;\n top: 50%;\n}\n\n.wphb-pills.with-arrow.right.grey:after {\n border-left-color: #F2F2F2;\n}\n\n.wphb-pills.with-arrow.left.grey:after {\n border-right-color: #F2F2F2;\n}\n\n.wphb-pills-group {\n border-collapse: collapse;\n border-spacing: 0;\n font-size: 0;\n display: inline-block;\n position: relative;\n}\n\n.wphb-pills-group.stacked .wphb-pills {\n font-size: 10px;\n line-height: 12px;\n height: 12px;\n text-align: left;\n max-width: 69px;\n color: #888888;\n display: block;\n background-color: transparent;\n}\n\n.wphb-pills-group.stacked .wphb-pills:last-child {\n color: #1ABC9C;\n background-color: transparent;\n}\n\n.wphb-pills-group.stacked .dev-icon.dev-icon-caret_down {\n color: #1ABC9C;\n margin-left: 7px;\n}\n\n.wphb-pills-group .wphb-pills {\n border-radius: 0;\n width: 80px;\n line-height: 30px;\n height: 30px;\n margin: 0;\n}\n\n.wphb-pills-group .wphb-pills:first-child {\n border-radius: 5px 0 0 5px !important;\n}\n\n.wphb-pills-group .wphb-pills:last-child {\n background-color: #17A8E3;\n color: #FFFFFF;\n border-radius: 0 5px 5px 0 !important;\n}\n\n.wpmud .dev-list-stats .wphb-pills-group {\n font-size: 0;\n line-height: 1em;\n}\n\n@include bp(phone-large) {\n .wpmud .dev-box .box-title .wphb-pills {\n margin: 4px 0 0 10px;\n }\n\n .wphb-pills {\n margin: 0 0 0 10px;\n }\n\n .wphb-pills-group .wphb-pills:first-child {\n border-radius: 5px 5px 0 0 !important;\n }\n\n .wphb-pills-group .wphb-pills:last-child {\n border-radius: 0 0 5px 5px !important;\n }\n}\n\n@include bp(phone) {\n .wphb-pills-group {\n border-collapse: inherit;\n border-spacing: inherit;\n }\n\n .wphb-pills.with-arrow.right:after,\n .wphb-pills.with-arrow.left:after {\n border-top-color: #19B4CF;\n margin-top: 0;\n margin-left: -8px;\n top: 50%;\n }\n\n .wphb-pills.with-arrow.right:after {\n border-left-color: transparent;\n left: 50%;\n }\n\n .wphb-pills.with-arrow.left:after {\n border-right-color: transparent;\n right: 50%;\n }\n\n .wphb-pills.with-arrow.right.grey:after {\n border-top-color: #eee;\n border-left-color: transparent;\n }\n\n .wphb-pills.with-arrow.left.grey:after {\n border-top-color: #eee;\n border-right-color: transparent;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/components/_pills.scss","/* ****************************************************************************\n * COMPONENTS: BORDER FRAME\n */\n\n@import \"../common/mixins\";\n\n.wpmud .wphb-border-frame {\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n margin: 10px 0 0 !important;\n}\n\n.wpmud .wphb-border-frame .table-header,\n.wpmud .wphb-border-frame .table-row {\n display: flex;\n justify-content: space-between;\n padding: 15px 80px 15px 30px;\n}\n\n.wpmud .wphb-border-frame .table-header {\n color: #333333;\n font-size: 13px;\n font-weight: bold;\n border-bottom: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-border-frame .table-row {\n border-bottom: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-border-frame .table-row:last-child {\n border-bottom: 0;\n}\n\n.wpmud .wphb-border-frame .list-table > thead > tr > th {\n color: #333333;\n font-size: 13px;\n padding: 8px 0;\n}\n\n.wpmud .wphb-border-frame .list-table > thead > tr > th:first-child {\n padding: 27px 30px;\n}\n\n.wpmud .wphb-border-frame .list-table > tbody > tr > td:first-child {\n padding-left: 30px;\n}\n\n@include bp(tablet) {\n .wpmud .wphb-border-frame {\n border: 0\n }\n}\n\n@include bp(phone) {\n .wpmud .wphb-border-frame .table-header,\n .wpmud .wphb-border-frame .table-row {\n padding: 15px 0;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/components/_border_frame.scss","/* ****************************************************************************\n * COMPONENTS: SETTINGS FORM\n */\n\n.wpmud .wphb-disabled-overlay {\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n z-index: 10;\n background-color: rgba(242,242,242,0.5)\n}\n\n.wpmud .settings-form span.sub,\n.wpmud .settings-form span.desc {\n display: block;\n margin: 10px 0 0;\n font-size: 13px;\n color: #888;\n line-height: 22px;\n}\n\n.wpmud .settings-form span.sub,\n.wpmud .settings-form ol > li {\n font-size: 13px;\n color: #888;\n line-height: 22px;\n margin: 4px 0 0;\n}\n\n.wpmud .settings-form span.dash-form-title,\n.wpmud .settings-form span.sub {\n display: block;\n font-size: 13px;\n color: #888;\n line-height: 22px;\n margin: 10px 0 0;\n}\n.wpmud .settings-form span.dash-form-title {\n margin-bottom: 15px;\n font-weight: 500;\n}\n\n.wpmud .sui-box-settings-row .sui-box-settings-col-2 {\n span.sub {\n margin-left: 49px;\n }\n}\n\n.wpmud .settings-form ol {\n margin-left: 15px;\n}\n\n.wpmud .sui-box-settings-row textarea {\n height: 180px;\n}\n\n.wpmud .box-advanced-general textarea,\n.wpmud .box-minification-tools textarea {\n margin-top: 0;\n}\n\n.wpmud .box-minification-tools textarea {\n height: 400px;\n max-width: 100%;\n margin-bottom: 0;\n}\n.wpmud .settings-form span.dash-form-title {\n margin-bottom: 15px;\n font-weight: 500;\n}\n\n.wpmud .wphb-dash-table-row span.sub {\n margin: 0;\n}\n\n.wpmud .settings-form.dash-form > label,\n.wpmud .settings-form .col-two-third > label {\n display: inline-block;\n padding: 2px 10px 0;\n color: #666;\n line-height: 30px;\n margin: 0;\n}\n\n.wpmud .settings-form .wphb-border-frame label {\n margin-top: 25px;\n padding: 0;\n color: #888888;\n font-size: 13px;\n}\n\n.wpmud .settings-form .wphb-border-frame small {\n display: block;\n font-size: 13px;\n color: #888;\n line-height: 22px;\n}\n\n.wpmud .settings-form.disabled {\n background-color: rgba(242, 242, 242, 0.5) !important;\n}\n\n.wpmud .settings-form.disabled > * {\n opacity: 0.5;\n}\n\n.wpmud .settings-form input[type='radio'] {\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0);\n border: 1px solid #E6E6E6;\n background-color: #F8F8F8;\n\n &:checked {\n border: 1px solid #17A8E3;\n background-color: #17A8E3;\n\n &:before {\n width: 8px;\n height: 8px;\n margin: 3px;\n background-color: #ffffff;\n\n @include bp(phone) {\n margin: 5px;\n }\n }\n\n & + label {\n color: #333333;\n }\n }\n\n & + label {\n display: inline-block;\n margin-top: 0;\n font-size: 15px;\n }\n\n @include bp(phone) {\n height: 20px;\n width: 20px;\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/components/_settings_form.scss","/* ****************************************************************************\n * MODULES: DASHBOARD\n */\n\n@import \"../common/variables\";\n@import \"../common/mixins\";\n\n/* Images */\n.wpmud div[class^=\"box-dashboard-\"] .sui-box-title:before {\n font-family: $font--icons;\n color: #333333;\n float: left;\n font-size: 20px;\n margin-right: 10px;\n line-height: 30px;\n}\n\n.wpmud div[class^=\"box-dashboard-performance\"] .sui-box-title:before {\n content: '\\e90c';\n}\n.wpmud div[class^=\"box-dashboard-minification\"] .sui-box-title:before {\n content: '\\e90b';\n}\n.wpmud div[class^=\"box-dashboard-browser\"] .sui-box-title:before {\n content: '\\e905';\n}\n.wpmud div[class^=\"box-dashboard-gzip\"] .sui-box-title:before {\n content: '\\e907';\n}\n.wpmud div[class^=\"box-dashboard-uptime\"] .sui-box-title:before {\n content: '\\e900';\n}\n.wpmud div[class^=\"box-dashboard-smush\"] .sui-box-title:before {\n content: '\\e90f';\n}\n.wpmud div[class^=\"box-dashboard-cloudflare\"] .sui-box-title:before {\n content: '\\e906';\n}\n.wpmud div[class^=\"box-dashboard-reports\"] .sui-box-title:before {\n content: '\\e90d';\n}\n.wpmud div[class^=\"box-dashboard-caching-gravatar\"] .sui-box-title:before {\n content: '\\e913';\n}\n.wpmud div[class^=\"box-dashboard-caching-page\"] .sui-box-title:before {\n content: '\\e914';\n}\n.wpmud div[class^=\"box-dashboard-advanced-tools\"] .sui-box-title:before {\n content: '\\5a';\n}\n\n.wpmud div[class^=\"box-dashboard-\"] .sui-box-footer .sui-button i {\n margin-right: 5px;\n}\n\n/* Dashboard background images */\n\n.wpmud .box-dashboard-welcome.sui-summary {\n background-image: url(\"#{$image--path}/hb-graphic-dash-top@2x.png\");\n}\n.wpmud .box-dashboard-reports-no-membership,\n.wpmud .box-dashboard-uptime-no-membership,\n.wpmud .box-dashboard-smush-no-membership .sui-box-body,\n.wpmud .box-dashboard-browser-caching-module .sui-box-body,\n.wpmud .box-reporting-summary .wphb-reporting-no-membership,\n.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {\n background: #fff no-repeat 30px 100%;\n padding-bottom: 30px !important;\n}\n\n.wpmud .box-dashboard-reports-no-membership .sui-box-body,\n.wpmud .box-dashboard-uptime-no-membership .sui-box-body {\n padding: 30px 30px 0 !important;\n}\n\n.wpmud .box-dashboard-reports-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-upsell-reports.png\");\n}\n.wpmud .box-dashboard-uptime-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-upsell-uptime.png\");\n}\n.wpmud .box-dashboard-smush-no-membership .sui-box-body {\n background-image: url(\"#{$image--path}/smush-share-widget.png\");\n}\n.wpmud .box-dashboard-browser-caching-module .sui-box-body {\n background-image: url(\"#{$image--path}/graphic-hb-cf-sell@2x.png\");\n background-size: 107px 148px;\n}\n.wpmud .box-reporting-summary .wphb-reporting-no-membership {\n background-image: url(\"#{$image--path}/hummingbird-upsell-minify.png\");\n background-size: 118px 126px;\n}\n.wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-db-upsell@1x.png\");\n background-size: 100px 126px;\n}\n\n.wpmud .box-dashboard-browser-caching-module .sui-box-body.no-background-image {\n background-image: none;\n}\n\n@media only screen and (-webkit-min-device-pixel-ratio: 2),\nonly screen and (min--moz-device-pixel-ratio: 2),\nonly screen and (-o-min-device-pixel-ratio: 2/1),\nonly screen and (min-device-pixel-ratio: 2),\nonly screen and (min-resolution: 192dpi),\nonly screen and (min-resolution: 2dppx) {\n .wpmud .box-dashboard-reports-no-membership,\n .wpmud .box-dashboard-uptime-no-membership,\n .wpmud .box-dashboard-smush-no-membership .sui-box-body {\n background-size: 107px 148px;\n }\n .wpmud .box-dashboard-reports-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-upsell-reports@2x.png\");\n }\n .wpmud .box-dashboard-uptime-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-upsell-uptime@2x.png\");\n }\n .wpmud .box-dashboard-smush-no-membership .sui-box-body {\n background-image: url(\"#{$image--path}/smush-share-widget@2x.png\");\n }\n .wpmud .box-reporting-summary .wphb-reporting-no-membership {\n background-image: url(\"#{$image--path}/hummingbird-upsell-minify@2x.png\");\n }\n .wpmud .box-advanced-db-settings .wphb-db-cleanup-no-membership {\n background-image: url(\"#{$image--path}/hb-graphic-db-upsell@2x.png\");\n }\n}\n\n/* Dashboard tables */\n.wpmud .wphb-dash-table-header {\n color: #333333;\n font-size: 13px;\n font-weight: bold;\n line-height: 30px;\n display: flex;\n}\n.wpmud .box-dashboard-performance-module {\n .sui-accordion {\n &.sui-table {\n th {\n @media (max-width: 783px) {\n padding: 0 15px 0 20px;\n }\n }\n }\n th {\n color: #333333;\n font-size: 13px;\n font-weight: bold;\n line-height: 30px;\n padding-top: 0;\n padding-bottom: 0;\n }\n .sui-accordion-item {\n &:hover {\n cursor: default;\n background-color: transparent;\n }\n .sui-button {\n @media (max-width: 783px) {\n margin-right: 20px;\n }\n }\n }\n td.sui-accordion-item-title {\n font-size: 13px;\n color: #333333;\n font-weight: 500;\n line-height: 16px;\n\n i {\n font-size: 16px;\n }\n }\n &:after {\n margin-bottom: 0;\n }\n }\n}\n\n.wpmud .wphb-border-frame .wphb-caching-summary-item-type,\n.wpmud .wphb-border-frame .wphb-gzip-summary-item-type,\n.wpmud .wphb-dash-table-row > div:first-child {\n display: flex;\n align-items: center;\n align-content: center;\n}\n\n.wpmud .wphb-dash-table-row {\n display: flex;\n align-items: center;\n align-content: center;\n justify-content: space-between;\n height: 60px;\n border-top: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-dash-table-row:last-child {\n margin-bottom: -10px;\n}\n\n.wpmud .wphb-dash-table-header > span:first-child,\n.wpmud .wphb-dash-table-row > div:first-child {\n flex-basis: 50% !important;\n text-align: left;\n}\n\n.wpmud .wphb-dash-table-row > div:first-child {\n font-size: 13px;\n color: #333333;\n font-weight: 500;\n line-height: 16px;\n}\n\n.wpmud .wphb-dash-table-header > span,\n.wpmud .wphb-dash-table-row > div {\n text-align: center;\n}\n\n.wpmud .wphb-dash-table-header > span:last-child,\n.wpmud .wphb-dash-table-row > div:last-child {\n text-align: right;\n}\n\n/* Three column and two column layouts */\n.wpmud .wphb-dash-table.two-columns > .wphb-dash-table-header > span,\n.wpmud .wphb-dash-table.two-columns > .wphb-dash-table-row > div {\n flex-basis: 50%;\n}\n\n.wpmud .wphb-dash-table.three-columns > .wphb-dash-table-header > span,\n.wpmud .wphb-dash-table.three-columns > .wphb-dash-table-row > div {\n flex-basis: 25%;\n}\n\n/* Status text on dashboard meta boxes */\n.wpmud .sui-box .status-text {\n color: #888888;\n font-size: 13px;\n line-height: 22px;\n margin-top: 5px;\n}\n\n\n/* Dashbard: Cloudflare */\n#wphb-box-dashboard-cloudflare .wphb-block-entry .wphb-block-entry-content {\n padding-top: 0;\n}\n\n.wpmud .wphb-dashboard-caching-cloudflare-box p {\n margin-top: 30px;\n margin-bottom: 20px;\n}\n\n.wpmud #wphb-box-dashboard-cloudflare .cloudflare-step form label {\n text-align: left;\n font-weight: 400;\n padding-left: 0;\n padding-right: 0;\n}\n\n.wpmud span.dash-cloudflare-connected-status:before {\n color: #17A8E3;\n content: '\\e903';\n font-size: 16px;\n margin-right: 8px;\n}\n\n/* Dashboard: Asset Optimization */\n.wpmud .box-dashboard-welcome .dev-list > li:last-child .list-detail,\n.wpmud .box-dashboard-uptime .wphb-dash-table-row > div:last-child,\n.wpmud .box-dashboard-minification-module .wphb-dash-table-row > div:last-child {\n font-size: 18px;\n font-family: $font--alt;\n color: #666666;\n}\n\n.wpmud .box-dashboard-minification-module .wphb-pills {\n font-weight: bold;\n}\n\n.wpmud .wphb-cf-notice p,\n.wpmud .wphb-upsell-free-message p {\n position: relative;\n border-radius: 4px;\n background-color: #E1F6FF;\n padding: 20px 30px;\n margin-left: -140px;\n color: #333333;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-upsell-free-message p:after {\n position: absolute;\n top: 43%;\n left: 0;\n margin-left: -7px;\n content: '';\n width: 0;\n height: 0;\n border-top: 7px solid transparent;\n border-bottom: 7px solid transparent;\n border-right: 7px solid #E1F6FF;\n}\n\n.wpmud .wphb-cf-notice a,\n.wpmud .wphb-upsell-free-message a {\n color: #333333;\n text-decoration: underline;\n font-weight: 500;\n}\n\n/* Dashboard Smush */\n.wpmud .box-dashboard-caching-gravatar-module .wphb-notice,\n.wpmud .box-dashboard-smush .content .wphb-notice,\n.wpmud .box-dashboard-caching-page-module .content .wphb-notice,\n.wpmud .box-dashboard-browser-caching-module .content .wphb-notice,\n.wpmud .box-dashboard-gzip-module .content .wphb-notice,\n.wpmud .box-dashboard-smush-no-membership .content .wphb-notice {\n margin-top: 20px !important;\n}\n\n.wpmud .box-dashboard-smush-no-membership .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 45px;\n}\n\n/* Dashboard Reports */\n.wpmud .wrap-wp-hummingbird .report-status {\n background-color: #F8F8F8;\n height: 140px;\n width: 100%;\n position: relative;\n -webkit-border-radius: 7px;\n -moz-border-radius: 7px;\n border-radius: 7px;\n margin-bottom: 10px;\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status:hover {\n background-color: #f2f2f2;\n cursor: pointer;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status i {\n color: #666666;\n font-size: 24px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status strong {\n font-family: $font--alt;\n color: #666666;\n font-weight: bold;\n margin-top: 10px;\n font-size: 13px;\n line-height: 20px;\n text-transform: uppercase;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status .corner {\n position: absolute;\n top: 0;\n right: 0;\n color: #1ABC9C;\n font-weight: bold;\n font-family: $font--alt;\n padding-right: 6px;\n padding-top: 10px;\n text-transform: uppercase;\n font-size: 13px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner.grey .corner i {\n color: #888888;\n font-size: 16px;\n margin-right: 4px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner:before {\n content: '';\n position: absolute;\n top: 0;\n right: 0;\n border: solid transparent;\n border-top-right-radius: 7px;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner:before {\n border-width: 30px;\n border-right-color: #D1F1EA;\n border-top-color: #D1F1EA;\n}\n\n.wpmud .wrap-wp-hummingbird .report-status.with-corner.grey:before {\n border-right-color: #E6E6E6;\n border-top-color: #E6E6E6;\n}\n\n/* Dashboard Advanced Tools */\n.wpmud .box-dashboard-advanced-tools .wphb-dash-table {\n span {\n color: #888;\n font-size: 13px;\n vertical-align: top;\n }\n\n span.no-issues:before {\n font-family: $font--icons;\n font-size: 16px;\n margin-right: 5px;\n color: #1abc9c;\n content: \"\\E903\";\n }\n}\n\n/* Up-sell meta boxes in the footer */\n.wpmud #wphb-cross-sell-footer > div {\n width: 100%;\n text-align: center;\n border-bottom: 1px solid #E6E6E6;\n line-height: 0.1em;\n margin: 10px 0 40px;\n}\n\n.wpmud #wphb-cross-sell-footer > div > span {\n color: #9A9A9A;\n background-color: #F4F4F4;\n padding: 0 30px;\n font-size: 16px;\n top: 8px;\n}\n\n.wpmud #wphb-cross-sell-footer h3,\n.wpmud .wphb-cross-sell-bottom h3 {\n color: #333333;\n font-size: 22px;\n font-weight: bold;\n line-height: 30px;\n text-transform: none;\n}\n\n.wpmud .wphb-cross-sell-modules .wphb-content {\n text-align: center;\n border-radius: 0 0 5px 5px;\n background-color: #fff;\n box-shadow: 0 2px 0 0 #EAEAEA;\n padding: 30px;\n}\n\n.wpmud .wphb-cross-sell-modules .wphb-content h3 {\n color: #333333;\n font-size: 18px;\n font-weight: bold;\n line-height: 30px;\n text-transform: none;\n margin-top: 0;\n min-height: 60px;\n}\n\n.wpmud .wphb-cross-sell-modules .wphb-content p {\n color: #888888;\n font-size: 13px;\n line-height: 20px;\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-cross-smush,\n.wpmud .wphb-cross-defender,\n.wpmud .wphb-cross-crawl {\n min-height: 150px;\n border-radius: 5px 5px 0 0;\n}\n\n.wpmud .wphb-cross-smush {\n background: url(\"#{$image--path}/plugins-smush.jpg\") center;\n background-size: cover;\n}\n\n.wpmud .wphb-cross-defender {\n background: url(\"#{$image--path}/plugins-defender.jpg\") center;\n background-size: cover;\n}\n\n.wpmud .wphb-cross-crawl {\n background: url(\"#{$image--path}/plugins-crawl.jpg\") center;\n background-size: cover;\n}\n\n.wpmud .wphb-cross-smush > span,\n.wpmud .wphb-cross-defender > span,\n.wpmud .wphb-cross-crawl > span {\n width: 56px;\n height: 56px;\n display: block;\n border: 3px solid #fff;\n border-radius: 50%;\n position: relative;\n top: 80px;\n left: 15px;\n box-shadow: 0 1px 10px 0 rgba(0,0,0,0.25);\n}\n\n.wpmud .wphb-cross-smush > span {\n @include background-2x( \"#{$image--path}/plugins-smush-icon\", 'png', 50px, 50px, center center, no-repeat );\n}\n\n.wpmud .wphb-cross-defender > span {\n @include background-2x( \"#{$image--path}/plugins-defender-icon\", 'png', 50px, 50px, center center, no-repeat );\n}\n\n.wpmud .wphb-cross-crawl > span {\n @include background-2x( \"#{$image--path}/plugins-crawl-icon\", 'png', 50px, 50px, center center, no-repeat );\n}\n\n.wpmud .wphb-cross-sell-modules a:not(.disabled):after {\n font-family: $font--icons;\n content: '\\af';\n margin-left: 5px;\n}\n\n.wpmud .wphb-cross-sell-modules .col-third:nth-child(3) a.disabled {\n border-radius: 13px !important;\n background-color: #F2F2F2;\n}\n\n.wpmud .wphb-cross-sell-bottom {\n text-align: center;\n margin-top: 50px;\n}\n\n.wpmud .wphb-cross-sell-bottom p {\n max-width: 500px;\n margin: 20px auto 30px;\n}\n\n.wpmud .wphb-cross-sell-bottom img {\n margin: 30px auto 0;\n}\n\n@media screen and (min-width: 1550px) {\n .wpmud .box-dashboard-reports-no-membership .wphb-block-entry .row {\n padding-bottom: 20px;\n }\n .wpmud .box-dashboard-uptime-no-membership .content p {\n padding-bottom: 20px;\n }\n .wpmud .box-dashboard-smush-no-membership .buttons {\n padding-bottom: 20px;\n }\n}\n\n@media only screen and (min-width: 1545px) {\n .wpmud .wphb-cross-sell-modules > .col-third h3 {\n height: auto;\n }\n}\n\n@include bp(desktop-large) {\n .wpmud .box-dashboard-smush-no-membership .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 65px;\n }\n}\n\n@include bp(desktop) {\n .wpmud .box-dashboard-uptime-no-membership .wphb-block-entry-image,\n .wpmud .box-dashboard-reports-no-membership .wphb-block-entry-image {\n display: none;\n }\n\n .wpmud .wphb-cf-notice p,\n .wpmud .wphb-upsell-free-message p {\n margin-left: auto;\n margin-top: 30px;\n }\n\n .wpmud .wphb-cf-notice p:after,\n .wpmud .wphb-upsell-free-message p:after {\n display: none;\n }\n}\n\n@include bp(desktop-small) {\n .box-dashboard-browser-caching-module .box-content {\n background-image: none;\n }\n\n /* Upsell footer */\n .wpmud .row.wphb-cross-sell-modules .col-third {\n display: flex;\n width: 100%;\n padding: 0 0 30px;\n margin-top: 0;\n }\n\n .wpmud .wphb-cross-sell-modules .col-third:last-child {\n padding: 0;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"] {\n width: 30%;\n border-radius: 5px 0 0 5px;\n box-shadow: 0 2px 0 0 #EAEAEA;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"] > span {\n top: 60%;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content {\n width: 70%;\n text-align: left;\n border-radius: 0 5px 5px 0;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content h3 {\n min-height: auto;\n text-align: left;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content p {\n margin-bottom: 10px;\n }\n}\n\n@include bp(tablet) {\n .wpmud .box-dashboard-performance-module .box-content .with-padding {\n padding: 30px;\n }\n}\n\n\n@include bp(phone) {\n .wpmud .box-dashboard-minification-module .wphb-pills {\n display: block;\n }\n\n .wpmud .box-dashboard-performance-module .wphb-score-result-label {\n margin-left: 3px;\n margin-right: 5px;\n }\n\n .wpmud .box-dashboard-performance-module .sui-accordion .sui-button-ghost {\n padding: 5px 6px 7px !important;\n }\n\n .wpmud .box-dashboard-performance-module .box-content .with-padding {\n padding: 15px 20px;\n }\n\n .wpmud .box-dashboard-performance-module .wphb-dash-table-header,\n .wpmud .box-dashboard-performance-module .wphb-dash-table-row {\n padding: 0 20px;\n }\n\n .wpmud .box-dashboard-smush .buttons {\n margin-top: 15px;\n }\n\n .wpmud .wphb-score.wphb-score-have-label {\n width: 65px;\n }\n\n .wpmud .sui-box .status-text {\n line-height: 15px;\n margin-top: 0;\n padding-left: 10px;\n word-wrap: break-word;\n max-width: 175px;\n }\n\n /* notices */\n .wpmud .wphb-cf-notice p,\n .wpmud .wphb-upsell-free-message p {\n padding: 15px 20px;\n margin-top: 15px;\n }\n\n /* upsell footer */\n .wpmud .row.wphb-cross-sell-modules .col-third {\n display: block;\n padding: 0 0 15px;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"],\n .wpmud .wphb-cross-sell-modules .wphb-content {\n width: 100%;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"] {\n min-height: 100px;\n height: 100px;\n border-radius: 5px 5px 0 0;\n box-shadow: none;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content {\n border-radius: 0 0 5px 5px;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content,\n .wpmud .wphb-cross-sell-modules .wphb-content h3 {\n text-align: center;\n }\n\n .wpmud .wphb-cross-sell-modules .wphb-content p {\n margin-bottom: 20px;\n }\n\n .wpmud .wphb-cross-sell-modules div[class^=\"wphb-cross\"] > span {\n top: 60px;\n left: calc( 50% - 28px ); /* half of width ( width is 50px ) + one border ( 3px ) */\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/modules/_dashboard.scss","/* ****************************************************************************\n * MODULES: PERFORMANCE\n */\n\n@import \"../common/mixins\";\n\n.wpmud .box-performance-welcome.sui-summary {\n background-image: url(\"#{$image--path}/graphic-hb-minify-summary@2x.png\");\n}\n\n.wpmud .performance-report-table .wpdui-btn {\n display: inline-block;\n margin: 10px 0 20px;\n text-transform: uppercase;\n}\n\n.wpmud .performance-report-table .wpdui-btn:hover {\n color: #ffffff;\n}\n.wpmud .sui-dismissed .sui-circle-score svg circle:last-child {\n stroke: #AAAAAA;\n}\n.wpmud .sui-accordion-item.sui-dismissed {\n border-left: 2px solid #AAAAAA;\n}\n.wpmud .sui-button.wphb-disabled-test:last-child {\n margin-right: 10px;\n}\n.wpmud .performance-report-table a,\n.wpmud .performance-report-table a:hover {\n color: #17A8E3;\n overflow-wrap: break-word;\n word-wrap: break-word;\n word-break: break-all;\n -ms-hyphens: auto;\n -moz-hyphens: auto;\n -webkit-hyphens: auto;\n hyphens: auto;\n}\n\n.wpmud .performance-report-table p,\n.wpmud .performance-report-table ol li {\n font-size: 13px !important;\n color: #888888;\n line-height: 22px;\n}\n\n.wpmud .performance-report-table ol > p {\n margin-left: -30px;\n margin-bottom: 15px;\n}\n\n.wpmud .performance-report-table > thead > tr > th:first-child {\n padding-left: 30px;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item:hover td {\n cursor: pointer;\n border-bottom: 0 !important;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-score {\n width: 137px;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-type {\n color: #888888;\n font-size: 13px;\n transition: color .3s;\n width: 130px;\n}\n.wpmud .wphb-performance-report-item-type:first-letter {\n text-transform: capitalize;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item:hover .wphb-performance-report-item-type {\n color: #333333;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-cta {\n text-align: right;\n width: 225px;\n}\n\n.wpmud .wphb-performance-report-item .trigger-additional-content {\n color: #888888;\n cursor: pointer;\n display: inline-block;\n font-size: 14px;\n line-height: 1em;\n height: 14px;\n margin: 8px 30px 8px 15px;\n transition: color .3s;\n vertical-align: middle;\n}\n\n.wpmud .wphb-performance-report-item .trigger-additional-content .dev-icon-caret_down:before {\n display: inline-block;\n transition: transform 0.5s;\n transform: rotate(0);\n}\n\n.wpmud .wphb-performance-report-item-opened .trigger-additional-content .dev-icon-caret_down:before {\n transform: rotate(-180deg);\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-opened,\n.wpmud .wphb-table.performance-report-table .wphb-performance-report-item-additional-content:hover,\n.wpmud .wphb-table.performance-report-table .wphb-performance-report-item-opened:hover {\n background: #F8F8F8;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-additional-content {\n background: #F8F8F8;\n display: none;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-additional-content-opened {\n display: table-row;\n}\n\n.wpmud .performance-report-table .wphb-performance-report-item-additional-content-opened > td {\n border-top: 0 !important;\n}\n\n.wpmud .wphb-performance-report-item-additional-content-inner {\n padding: 0 !important;\n}\n\n.wpmud .sui-box-performance-report-additional-content h4:first-child {\n margin-top: 0;\n}\n\n.wpmud .sui-box-performance-report-additional-content h4,\n.wpmud .sui-box-performance-report-additional-content h5 {\n font-family: 'Roboto', sans-serif;\n color: #333333;\n font-size: 13px;\n text-transform: none;\n line-height: 23px;\n margin: 20px 0 20px;\n text-align: left;\n}\n\n/* Performance Results */\n.wphb-score {\n display: inline-block;\n position: relative;\n}\n\n.wphb-score-type-circle {\n border-radius: 100%;\n height: 30px;\n width: 30px;\n}\n\n.wphb-score-type-circle.large {\n height: 80px;\n width: 80px;\n}\n\n.wphb-score-type-circle .wphb-score-graph-circle {\n stroke: #E5E5E5;\n stroke-dashoffset: 80;\n stroke-width: 5px;\n -moz-transition: stroke-dashoffset 1s linear;\n -webkit-transition: stroke-dashoffset 1s linear;\n transition: stroke-dashoffset 1s linear;\n}\n\n.wphb-score-type-circle.large .wphb-score-graph-circle {\n stroke-dashoffset: 219.8;\n stroke-width: 10px;\n}\n\n.wphb-score-type-circle .wphb-score-graph-result {\n transform: rotate(-80deg) translateX(-27px) translateY(2.5px);\n -moz-transform: rotate(-80deg) translateX(-27px) translateY(2.5px);\n -webkit-transform: rotate(-80deg) translateX(-27px) translateY(2.5px);\n}\n\n.wphb-score-type-circle.large .wphb-score-graph-result {\n transform: rotate(-80deg) translateX(-72.5px) translateY(6.5px);\n -moz-transform: rotate(-80deg) translateX(-72.5px) translateY(6.5px);\n -webkit-transform: rotate(-80deg) translateX(-72.5px) translateY(6.5px);\n}\n\n.wpmud .wphb-performance-report-item-score,\n.wpmud .wphb-button-label,\n.wpmud .wphb-score-result {\n cursor: pointer;\n position: relative;\n}\n\n/* Reporting */\n.wpmud .wrap-wphb-caching .list-results,\n.wpmud .wrap-wphb-performance .list-results {\n max-height: 200px;\n overflow-y: scroll;\n}\n\n.wpmud .wrap-wphb-performance .recipient {\n margin-bottom: 10px;\n padding: 5px 10px;\n}\n\n.wpmud .wrap-wphb-performance .recipient:hover {\n border-radius: 4px;\n background-color: #F8F8F8;\n}\n\n.wpmud .wrap-wphb-performance .recipient,\n.wpmud .wrap-wphb-performance .recipient .name,\n.wpmud .wrap-wphb-performance .add-recipient {\n display: flex;\n flex-flow: row nowrap;\n justify-content: space-between;\n align-items: center;\n align-content: center;\n}\n\n.wpmud .wrap-wphb-performance .recipient img {\n -webkit-border-radius: 50px;\n -moz-border-radius: 50px;\n border-radius: 50px;\n width: 30px;\n height: 30px;\n margin-right: 10px;\n display: inline-block;\n vertical-align: middle;\n}\n\n.wpmud .wrap-wphb-performance .recipient .name {\n color: #333333;\n font-weight: 500;\n}\n\n.wpmud .wrap-wphb-performance .recipient a > i {\n color: #888888;\n}\n\n.wpmud .wrap-wphb-performance .recipient:hover a > i {\n color: #333333;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient {\n margin-top: 15px;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient > * {\n margin-bottom: 0;\n border-radius: 0;\n border: 1px solid #E6E6E6;\n font-weight: normal;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient .wdv-icon-plus {\n color: #FFFFFF;\n font-size: 20px;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient > input::placeholder {\n color: #AAAAAA;\n font-weight: 400;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient #wphb-first-name {\n border-radius: 4px 0 0 4px;\n border-right: 0;\n background-color: #F8F8F8;\n margin: 0;\n}\n\n.wpmud .wrap-wphb-performance .add-recipient #wphb-username-search {\n background-color: #F8F8F8;\n margin: 0;\n}\n\n.wpmud .wrap-wphb-performance .wphb-tag {\n -webkit-border-radius: 16px;\n -moz-border-radius: 16px;\n border-radius: 16px;\n font-size: 13px;\n padding: 4px 16px;\n color: #fff;\n text-transform: uppercase;\n}\n\n.wpmud .wrap-wphb-performance .wphb-tag.tag-generic {\n background: #E6E6E6;\n color: #333;\n}\n\n.wpmud .box-reporting-summary {\n .settings-form.disabled {\n position: relative;\n }\n}\n.wpmud .box-reporting-summary .wphb-block-entry-content,\n.wpmud .box-reporting-summary .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 0;\n}\n\n.wpmud .list-table > tbody > tr > td.wphb-performance-report-item-type.disabled {\n padding-right: 30px;\n}\n.wpmud .sui-box-performance-report-additional-content.disable-buttons a.wpdui-btn,\n.wpmud .sui-box-performance-report-additional-content.disable-buttons a.button {\n display: none;\n}\n\n@include bp(desktop-large) {\n .wpmud .performance-report-table .wphb-performance-report-item-score,\n .wpmud .performance-report-table .wphb-performance-report-item-type {\n width: 115px;\n }\n\n .wpmud .performance-report-table .wphb-performance-report-item-cta {\n width: 180px;\n }\n\n .wpmud .box-reporting-summary .box-footer .wphb-block-entry-content {\n margin-top: 0;\n }\n}\n\n@include bp(desktop) {\n .wpmud .performance-report-table .wphb-performance-report-item-type {\n width: 105px;\n }\n\n .wpmud .performance-report-table .wphb-performance-report-item-cta {\n width: 165px;\n }\n\n .wpmud .performance-report-table .wphb-performance-report-item-score {\n width: 105px;\n padding-left: 20px !important;\n }\n}\n\n@include bp(tablet) {\n .wpmud .performance-report-table th,\n .wpmud .performance-report-table td {\n width: 70% !important;\n }\n\n .wpmud .wphb-performance-report-heading.wphb-performance-report-heading-type,\n .wpmud .wphb-performance-report-item-type,\n .wpmud .wphb-performance-report-item-cta > button {\n display: none !important;\n }\n}\n\n@include bp(phone) {\n .wpmud .wrap-wphb-performance .recipient,\n .wpmud .wrap-wphb-performance .recipient .name,\n .wpmud .wrap-wphb-performance .add-recipient {\n flex-flow: row wrap;\n }\n\n .wpmud .wrap-wphb-performance .add-recipient > button,\n .wpmud .wrap-wphb-performance .add-recipient #wphb-first-name {\n border-radius: 0 !important;\n margin-bottom: 5px;\n border: 1px solid #E6E6E6;\n }\n\n .wpmud .wrap-wphb-performance .add-recipient > button {\n margin-top: 10px !important;\n }\n\n .wpmud .performance-report-table {\n margin-top: 0;\n }\n\n .wpmud .wphb-performance-report-item .trigger-additional-content {\n margin-right: 20px;\n }\n\n .wpmud .sui-box-performance-report-additional-content {\n padding: 15px 20px;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/modules/_performance.scss","/* ****************************************************************************\n * MODULES: CACHING MODULES\n */\n\n@import \"../common/variables\";\n@import \"../common/mixins\";\n\n.wpmud .wphb-caching-error {\n text-align: left;\n}\n\n.wpmud .wphb-caching-error a {\n text-decoration: underline;\n}\n\n.wpmud .wrap-wphb-caching .wphb-spinner {\n float: none;\n background-size: 15px 15px;\n}\n\n.wpmud .wphb-caching-cloudflare-box > p {\n margin: 0 0 20px 0;\n}\n\n.wpmud .box-caching-enable .buttons {\n margin-top: -20px;\n}\n\n.wpmud .caching-table {\n margin: 30px 0 0;\n}\n\n.wpmud .wphb-caching-summary-heading,\n.wpmud .box-gzip-summary .list-label {\n text-transform: none !important;\n color: #333333;\n font-size: 13px;\n}\n\n.wpmud #cloudflare-how-to-title,\n.wpmud #cloudflare-how-to {\n text-align: left;\n}\n\n.wpmud #cloudflare-how-to a {\n font-weight: 500;\n text-decoration: underline;\n color: inherit;\n}\n\n.wpmud #cloudflare-info {\n clear: both;\n}\n\n.wpmud #cloudflare-info.wphb-notice {\n margin-top: 30px;\n}\n\n.wpmud .cloudflare-submit {\n margin-bottom: 0;\n}\n\n.wpmud #cloudflare-zone .clear {\n padding: 0;\n}\n\n.wpmud #cloudflare-zone label {\n margin-bottom: 13px;\n}\n\n.wpmud #cloudflare-zone .cloudflare-submit {\n margin-top: 22px;\n}\n\n.wpmud #cloudflare-steps .wphb-notice-success {\n margin-top: 0;\n}\n\n.wpmud .cloudflare-clear-cache-tooltip[tooltip]:after {\n margin-left: -137px;\n}\n\n.wpmud .cloudflare-step {\n margin-top: 30px;\n}\n\n.wpmud .cloudflare-step form label input {\n margin-top: 5px;\n background-color: #F8F8F8;\n}\n\n.wpmud .cloudflare-step form label input::-webkit-input-placeholder,\n.wpmud .cloudflare-step form label input::-moz-placeholder,\n.wpmud .cloudflare-step form label input:-moz-placeholder, /* Firefox 19+ */\n.wpmud .cloudflare-step form label input:-ms-input-placeholder /* Firefox 18- */ {\n color: #AAAAAA;\n}\n\n.wpmud .cloudflare-step > p:first-child {\n text-align: left;\n}\n\n.wpmud .cloudflare-spinner {\n display: inline-block;\n float: right;\n}\n\n.wpmud .cloudflare-step p.cloudflare-submit,\n.wpmud #cloudflare-how-to-title {\n position: relative;\n margin-top: 11px;\n}\n\n.wpmud .cloudflare-step p.cloudflare-submit input[type=\"submit\"] {\n display: inline-block;\n margin-top: 0;\n}\n\n.wpmud #cloudflare-how-to {\n clear: both;\n margin-left: 0;\n margin-bottom: 0;\n list-style-position: inside;\n}\n\n.wpmud .cloudflare-step > p {\n margin-bottom: 30px;\n}\n\n.wpmud .cloudflare-step p.cloudflare-submit {\n float: right;\n}\n\n.wpmud .cloudflare-step hr {\n margin-top: 20px;\n margin-bottom: 20px;\n}\n\n.wpmud .cloudflare-step p.cloudflare-clear-cache-text {\n text-align: left;\n}\n\n.wpmud #cloudflare-how-to-title {\n float: left;\n line-height: 15px;\n padding-top: 7px;\n font-size: 13px;\n}\n\n.wpmud .cloudflare-step .cloudflare-data {\n text-align: left;\n margin-top: 30px;\n margin-bottom: 0;\n}\n\n.wpmud .cloudflare-data > span {\n display: inline-block;\n margin-right: 20px;\n}\n\n.wpmud .box-caching-summary .sui-box-body {\n background: no-repeat 30px 100%;\n}\n\n.wpmud .box-caching-summary .sui-box-body {\n background-image: url(\"#{$image--path}/graphic-hb-cf-sell@2x.png\");\n background-size: 107px 148px;\n}\n\n.wpmud .box-caching-summary .sui-box-body.no-background-image {\n background-image: none;\n}\n\n.wpmud .box-caching-settings .select-container.server-type {\n max-width: 240px;\n}\n\n.wpmud.wphb-notice {\n margin-top: 30px;\n}\n\n.wpmud .box-caching-settings .wphb-expiry-select-box label {\n margin-top: 0;\n}\n\n.wpmud .wphb-expiry-select-box .wphb-expiry-select {\n max-width: 240px;\n}\n\n@media screen and (max-width: 1200px) and (min-width: 783px) {\n .wpmud #cloudflare-how-to-title {\n float: none;\n display: block;\n text-align: center;\n margin-bottom: 0;\n }\n .wpmud .cloudflare-step p.cloudflare-submit {\n float: none;\n position: relative;\n }\n .wpmud .cloudflare-step p.cloudflare-submit .cloudflare-spinner {\n position: absolute;\n right: 0;\n top: 10px;\n }\n}\n\n.wpmud .wphb-server-instructions .wphb-notice,\n.wpmud .box-caching-summary .wphb-notice,\n.wpmud .box-gzip-summary .wphb-notice {\n margin-bottom: 30px !important;\n}\n\n.wpmud .wphb-caching-active.wphb-notice.wphb-notice-blue {\n margin-bottom: 0 !important;\n}\n\n.wpmud .wphb-caching-success.wphb-notice.wphb-notice-success {\n margin-top: 30px;\n}\n\n.wpmud .wphb-server-instructions .wphb-block-content pre {\n max-height: 240px;\n}\n\n.wpmud .wphb-server-instructions .wphb-notice.wphb-notice-blue p {\n font-size: 13px;\n line-height: 22px;\n color: #333;\n}\n\n.wpmud .wphb-server-instructions .wphb-notice.wphb-notice-blue p:before {\n font-size: 16px;\n line-height: 16px;\n}\n\n.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning {\n margin-top: 30px;\n}\n\n.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning p {\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-expiry-changes.wphb-notice.wphb-notice-warning p:before {\n font-size: 16px;\n line-height: 16px;\n}\n\n.wpmud .wphb-cf-detected-notice.wphb-notice.wphb-notice-grey p {\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-cf-detected-notice.wphb-notice.wphb-notice-grey p:before {\n font-size: 16px;\n line-height: 16px;\n}\n\n.wpmud .wphb-expiry-changes .update-htaccess {\n margin-top: 10px;\n}\n\n.wpmud .button.notice-button {\n margin-top: 10px;\n}\n\n.wpmud .wphb-cloudflare.wphb-notice-warning p {\n color: #333;\n}\n\n/* Expiration table */\n.wpmud .wphb-border-frame .table-header .wphb-caching-summary-heading-type {\n flex-basis: 85px;\n}\n\n.wpmud .wphb-border-frame .table-row .wphb-gzip-summary-item-type,\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-type {\n flex-basis: 100px;\n}\n\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-expiry,\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-status {\n flex-basis: 80px;\n}\n\n.wpmud .wphb-border-frame .table-row .wphb-caching-summary-item-type {\n font-size: 13px;\n font-weight: 500;\n color: #333333;\n}\n\n.wpmud .box-caching-settings label,\n.wpmud .box-gzip-settings label {\n margin-top: 15px;\n margin-bottom: 5px;\n padding: 0;\n}\n\n.wpmud .box-caching-settings label,\n.wpmud .box-gzip-settings label,\n.wpmud .box-caching-settings .wphb-border-frame > label,\n.wpmud .box-gzip-settings .wphb-border-frame > label {\n color: #888888;\n font-size: 13px;\n font-weight: 500;\n line-height: 22px;\n}\n\n.wpmud .wphb-caching-cloudflare-settings .wphb-expiry-select {\n width: 85%;\n}\n\n.wrap-wphb-caching .cloudflare-step label:first-child {\n margin-top: 0;\n}\n\n/* Server select tabs (automatic/manual) */\n.wpmud .wrap-wphb-gzip .tabs,\n.wpmud .wrap-wphb-caching .tabs,\n.wpmud .wrap-wphb-gzip .tabs .tab label,\n.wpmud .wrap-wphb-caching .tabs .tab label,\n.wpmud .wrap-wphb-gzip .tabs .tab .content,\n.wpmud .wrap-wphb-caching .tabs .tab .content {\n border: 0;\n}\n\n.wpmud .wrap-wphb-gzip .tabs .tab .content,\n.wpmud .wrap-wphb-caching .tabs .tab .content {\n border-top: 2px solid #E6E6E6;\n top: 38px;\n}\n\n.wpmud .wrap-wphb-gzip .tabs .tab label,\n.wpmud .wrap-wphb-caching .tabs .tab label {\n font-size: 15px;\n text-transform: capitalize;\n color: #888888;\n padding: 0 10px;\n line-height: 1.5em;\n height: 40px;\n}\n\n.wpmud .wphb-server-instructions p,\n.wpmud .wphb-server-instructions .wphb-listing li {\n color: #888888;\n font-size: 13px;\n line-height: 22px;\n}\n\n.wpmud .wphb-server-instructions .wphb-listing li {\n margin-top: 0;\n}\n\n.wpmud .wphb-server-instructions .tabs {\n margin: 0;\n}\n\n.wpmud .wphb-server-instructions .tabs .tab .content {\n padding: 20px 0 0;\n}\n\n.wpmud .wphb-server-instructions .tabs .tab > .active {\n color: #333333;\n border-bottom: 2px solid #333333;\n z-index: 10;\n}\n\n/* Page caching */\n.wpmud .box-page-caching .box-footer {\n border-top: 1px solid #E6E6E6;\n padding: 50px 30px;\n}\n\n.wpmud .box-page-caching .sui-box-body .sui-box-settings-row:first-of-type {\n padding-bottom: inherit;\n border-bottom: 1px solid #e6e6e6;;\n}\n\n.wpmud .box-page-caching h4 {\n color: #666666;\n font-size: 15px;\n font-weight: 500;\n text-align: left;\n text-transform: none;\n}\n\n.wpmud .box-page-caching textarea {\n height: 180px;\n max-width: 490px;\n color: #333333;\n border: 1px solid #E6E6E6;\n border-radius: 4px;\n background-color: #F8F8F8;\n margin-top: 20px;\n}\n\n.wpmud .box-page-caching .col-two-third .with-bottom-border {\n margin-bottom: 30px;\n}\n\n/* Page caching: page types table */\n.wpmud .box-page-caching .wphb-dash-table .sub {\n width: 75px;\n}\n\n.wpmud .box-page-caching .wphb-dash-table .wphb-dash-table-row:first-child {\n border-top: 0;\n}\n\n.wpmud .box-page-caching .wphb-dash-table .wphb-dash-table-row:last-child {\n border-bottom: 0;\n}\n\n@include bp(tablet) {\n .wpmud .box-page-caching .sui-box-settings-col-2.wphb-deactivate-pc {\n padding-top: 0;\n }\n}\n\n/* Gravatar caching */\n.wpmud .box-page-caching .wphb-notice,\n.wpmud .box-caching-gravatar .wphb-notice {\n margin-top: 20px;\n}\n\n.wpmud .box-page-caching .sui-box-settings-row .sui-button-ghost {\n margin: 10px 0;\n}\n\n/* Settings */\n.wpmud .box-caching-other-settings .spinner {\n margin: 2px 10px 0 0;\n}\n\n/* Rss caching */\n.wpmud .box-caching-rss {\n .sui-box-footer .spinner {\n margin: 2px 10px 0;\n }\n .sui-box-settings-row {\n input[type=\"text\"] {\n margin: 0;\n display: inline-block;\n width: 80px;\n }\n\n label {\n margin-left: 10px;\n margin-top: -5px;\n color: #666;\n }\n }\n}\n\n@include bp(desktop-large) {\n .wpmud .wrap-wphb-caching .row {\n display: block;\n table-layout: inherit;\n }\n}\n\n@include bp(phone-large) {\n .wpmud .box-caching-summary .box-content > .box-content {\n background-image: none;\n }\n}\n\n@include bp(phone) {\n .wpmud .wphb-caching-success.wphb-notice.wphb-notice-success {\n margin-top: 10px;\n }\n\n .wpmud .wphb-server-instructions .wphb-notice,\n .wpmud .box-caching-summary .wphb-notice,\n .wpmud .box-gzip-summary .wphb-notice {\n margin-bottom: 10px !important;\n }\n\n .wpmud .box-caching-summary .content-box-two-cols-image-left .wphb-block-entry-content {\n margin: 0;\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/modules/_caching.scss","/* ****************************************************************************\n * MODULES: GZIP COMPRESSION\n */\n\n.wpmud #wphb-code-snippet {\n margin-top: 20px;\n margin-bottom: 20px;\n}\n\n.wpmud .wphb-gzip-error {\n text-align: left;\n}\n\n.wpmud .wphb-gzip-error p:first-child {\n margin: 0 0 10px 0;\n}\n\n.wpmud .wphb-gzip-error a,\n.wpmud #configure-gzip-link {\n text-decoration: underline;\n}\n\n.wpmud .box-gzip-settings .inline-label {\n color: #888888 !important;\n font-size: 13px;\n font-weight: 500;\n padding-left: 0 !important;\n}\n\n.wpmud .box-gzip-settings .select-container {\n max-width: 240px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice-blue {\n margin-top: 0;\n margin-bottom: 30px;\n padding: 15px 20px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice-blue p {\n font-size: 13px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice-blue p:before {\n font-size: 16px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice.htaccess-warning {\n margin-top: 30px;\n margin-bottom: 0 !important;\n padding: 15px 20px;\n}\n\n.wpmud .box-gzip-settings .wphb-notice.htaccess-warning a {\n text-decoration: underline;\n}\n\n@media screen and (min-width: 960px) {\n .wpmud .wphb-border-frame.two-columns .table-header,\n .wpmud .wphb-border-frame.two-columns .table-row {\n justify-content: flex-start;\n }\n .wpmud .wphb-border-frame.two-columns .table-header > div:first-child,\n .wpmud .wphb-border-frame.two-columns .table-row > div:first-child {\n flex-basis: 50%;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/modules/_gzip.scss","/* ****************************************************************************\n * MODULES: MINIFICATION\n */\n\n@import \"../common/variables\";\n@import \"../common/mixins\";\n\n/* Checkbox groups */\n.wpmud .checkbox-group {\n border-radius: 41px;\n display: flex;\n justify-content: flex-end;\n height: 40px;\n}\n.wpmud .sui-dialog .checkbox-group {\n justify-content: flex-start;\n}\n\n/* We do not use display: none, because screen readers don't see the element */\n.wpmud .checkbox-group input[type=\"checkbox\"] {\n border: 0;\n clip: rect(0 0 0 0);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute;\n width: 1px;\n display: block;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"] + label {\n background-color: #FAFAFA;\n border-radius: 4px;\n display: flex;\n padding: 0;\n align-items: center;\n justify-content: center;\n text-align: center;\n width: 107px;\n position: relative;\n transition-property: background, color;\n transition-duration: 0.3s;\n color: transparent !important;\n margin-bottom: 0;\n margin-left: 5px;\n}\n\n/* Overwrite for advanced view */\n.wpmud .wphb-minification-advanced-group input[type=\"checkbox\"] + label {\n width: 50px;\n}\n\n/* Modal window */\n.wpmud .sui-dialog .checkbox-group {\n width: 100%;\n height: 52px;\n}\n\n.wpmud .sui-dialog .checkbox-group input[type=\"checkbox\"] + label {\n padding: 10px 10px;\n width: 70px;\n height: 50px;\n}\n\n.wpmud .sui-dialog .wphb-progress-state {\n text-align: left;\n margin-top: 0;\n}\n\n/* Checkbox group */\n.wpmud .checkbox-group input[type=\"checkbox\"] + label.toggle-label-background, /* modal */\n.wpmud .checkbox-group input[type=\"checkbox\"]:checked + label {\n box-shadow: none;\n background-color: #EFFAFF;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"] + label > span:not(.toggle),\n.wpmud .checkbox-group input[type=\"checkbox\"] + label > i {\n color: #888888;\n padding: 0;\n font-size: 12px;\n}\n\n.wpmud .checkbox-group > span {\n color: #AAAAAA;\n font-size: 12px;\n line-height: 40px;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"] + label > [class^=\"hb-\"]:before {\n font-size: 14px;\n vertical-align: -2px;\n margin-right: 8px;\n}\n\n.wpmud .sui-dialog .checkbox-group input[type=\"checkbox\"] + label > [class^=\"hb-\"]:before {\n margin-right: 0;\n}\n\n/* Overwrite for advanced view */\n.wpmud .wphb-minification-advanced-group input[type=\"checkbox\"] + label > [class^=\"hb-\"]:before,\n.wpmud .wphb-modal input[type=\"checkbox\"] + label > [class^=\"hb-\"]:before {\n margin-right: 0;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"] + label.toggle-label-background > span:not(.toggle), /* modal */\n.wpmud .checkbox-group input[type=\"checkbox\"]:checked + label > span:not(.toggle),\n.wpmud .checkbox-group input[type=\"checkbox\"]:checked + label > i {\n color: #17A8E3;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]:disabled + label > span:not(.toggle),\n.wpmud .checkbox-group input[type=\"checkbox\"]:disabled + label > i {\n color: #DDD;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"]:disabled + label {\n background-color: #FFF;\n}\n\n.wpmud .checkbox-group input[type=\"checkbox\"] + label > [tooltip] {\n position: absolute;\n left: 0;\n top: 0;\n bottom: 0;\n right: 0;\n z-index: 9;\n}\n\n.wpmud .checkbox-group label [class^=\"hb-\"] {\n display: block;\n padding: 10px 0 4px;\n\n}\n\n/* Notice in header to enable advanced mode */\n.wpmud .wrap-wphb-minification > .row > .wphb-notice {\n margin-bottom: 30px;\n}\n\n/* Asset Optimization meta box */\n.wpmud .wphb-minification-files {\n background-color: #F8F8F8;\n padding-bottom: 1px;\n}\n\n.wpmud .box-minification-enqueued-files .box-title .buttons > div {\n display: inline-block;\n vertical-align: top;\n}\n\n/* Switch type button */\n.wpmud .box-minification-enqueued-files .box-title .buttons {\n margin-right: 45px !important;\n}\n\n.wpmud .box-minification-enqueued-files .box-title .wphb-switch-button {\n border-left: 1px solid #E6E6E6;\n display: block;\n height: 60px;\n left: 100%;\n margin-left: -30px;\n position: relative;\n width: 60px;\n}\n\n.wpmud .box-minification-enqueued-files .sui-box-header .wphb-heading-divider {\n border-left: 1px solid #E6E6E6;\n height: 62px;\n margin-top: -21px;\n margin-bottom: -22px;\n margin-left: 10px;\n}\n.wpmud .box-minification-enqueued-files .sui-box-header .sui-button:last-child {\n margin-right: 10px;\n}\n.wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button {\n height: 60px;\n width: 60px;\n display: block;\n margin: -15px -30px -15px 0px;\n}\n\n.wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button > i {\n color: #AAAAAA;\n font-size: 20px;\n margin-left: 20px;\n position: absolute;\n top: 18px;\n}\n\n.wpmud .box-minification-enqueued-files .box-title-advanced .wphb-switch-button > i {\n color: #17A8E3;\n}\n\n.wpmud .wphb-minification-files-header {\n background-color: #fff;\n border-bottom: 1px solid #E6E6E6;\n margin-bottom: 30px;\n padding: 30px;\n}\n\n.wpmud .wphb-border-row {\n display: -webkit-box;\n display: -ms-flexbox;\n display: flex;\n -webkit-box-orient: horizontal;\n -webkit-box-direction: normal;\n flex-flow: row wrap;\n -webkit-box-align: center;\n -ms-flex-align: center;\n align-items: center;\n align-content: center;\n}\n\n.wpmud .wphb-minification-files-basic .wphb-border-row,\n.wpmud .wphb-minification-files-advanced .wphb-border-row,\n.wpmud .wphb-minification-files-advanced .wphb-minification-row-details {\n padding: 10px 30px;\n -webkit-box-pack: justify;\n -ms-flex-pack: justify;\n justify-content: space-between;\n}\n\n.wpmud .wphb-minification-files-advanced .wphb-minification-row-details {\n padding: 0;\n display: flex;\n align-content: center;\n align-items: center;\n}\n\n.wpmud .wphb-minification-files-basic .wphb-border-row {\n border-bottom: 1px solid #E6E6E6;\n}\n\n.wpmud .wphb-minification-files-advanced .wphb-border-row {\n padding: 10px 30px 10px 20px;\n min-height: 70px;\n background-color: #FFF;\n border-radius: 4px;\n box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.05);\n margin-bottom: 10px;\n}\n\n.wpmud .wphb-minification-files-basic .wphb-border-row:last-child,\n.wpmud .wphb-minification-files-advanced .wphb-border-row:last-child {\n border-bottom: 0;\n}\n\n.wpmud .wphb-minification-files-table.wphb-minification-files-basic,\n.wpmud .wphb-minification-files-table.wphb-minification-files-advanced {\n background-color: #F8F8F8;\n margin: 0 30px 30px;\n}\n\n.wpmud .wphb-minification-files-table.wphb-minification-files-basic {\n background-color: #FFFFFF;\n border-radius: 4px;\n box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.05);\n}\n\n.wpmud .wphb-minification-files > h3,\n.wpmud .wphb-minification-files-select h3 {\n font-size: 13px;\n font-weight: bold;\n line-height: 22px;\n color: #888888;\n text-align: left;\n text-transform: none;\n margin: 10px 30px;\n}\n\n/* Notices */\n.wpmud .wphb-minification-files .wphb-notice {\n margin: 0 30px 30px;\n width: auto;\n}\n\n.wpmud .wphb-minification-changed-notice a.wphb-notice-dismiss {\n opacity: 0.5;\n color: #333333;\n font-size: 12px;\n font-weight: bold;\n margin-left: 33px;\n text-transform: uppercase;\n}\n\n/* Styles, common for basic and advanced views */\n.wpmud .wphb-minification-file-info {\n float: left;\n line-height: 18px;\n overflow: hidden;\n position: relative;\n white-space: nowrap;\n width: 300px;\n}\n\n.wpmud .wphb-border-row:not(.disabled) .wphb-minification-file-info:after {\n background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 100%);\n background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 100%);\n background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 100%);\n content: '';\n height: 100%;\n pointer-events: none;\n position: absolute;\n right: 0;\n top: 0;\n width: 40px;\n}\n\n.wpmud .wphb-minification-file-info > * {\n color: #AAAAAA;\n font-size: 10px;\n font-weight: 500;\n line-height: 10px;\n}\n\n.wpmud .wphb-minification-file-info > span:first-child {\n color: #666666;\n display: block;\n font-size: 13px;\n line-height: 13px;\n}\n\n.wpmud .wphb-minification-file-info > a {\n max-width: 400px;\n overflow: hidden;\n}\n\n.wpmud .wphb-minification-file-info > .original-size.crossed-out {\n text-decoration: line-through;\n}\n\n.wpmud .wphb-minification-file-info > .sui-icon-chevron-down:before,\n.wpmud .wphb-minification-file-info > .compressed-size {\n color: #1ABC9C;\n}\n\n.wpmud .wphb-minification-file-info > .sui-icon-chevron-down:before {\n font-size: 8px;\n position: relative;\n top: 0;\n}\n\n/* Advanced minification section */\n.wpmud .wphb-minification-filter-buttons {\n padding: 0 30px 20px;\n display: flex;\n .sui-actions-left {\n margin-left: 0;\n }\n}\n\n.wpmud .wphb-minification-files-select {\n display: flex;\n align-items: center;\n align-content: center;\n margin: 0 50px;\n .sui-checkbox {\n margin-right: 5px;\n span {\n margin-top: -4px;\n }\n }\n}\n\n.wpmud .wphb-minification-files-select h3 {\n margin: 5px 5px 7px;\n}\n\n.wpmud .wphb-minification-bulk-file-selector {\n float: left;\n}\n\n.wpmud .wphb-minification-file-select {\n float: left;\n line-height: 30px;\n margin-right: 10px;\n margin-top: 4px;\n}\n\n.wpmud .wphb-minification-exclude {\n margin-left: 30px;\n}\n\n/* Filter */\n.wpmud .wphb-minification-filter {\n background-color: #FFFFFF;\n padding: 0 30px;\n margin: 10px 30px;\n}\n\n.wpmud .wphb-minification-filter > div {\n height: 78px;\n display: flex;\n align-items: center;\n align-content: center;\n}\n\n/* Overwrite for wpmudev styles */\n.wpmud .wphb-minification-filter > div > input {\n margin: 0 10px !important;\n width: 40% !important;\n background-color: #F8F8F8 !important;\n}\n\n.wpmud .wphb-minification-filter > div .wphb-block-title {\n color: #333333;\n font: 500 13px/30px $font;\n text-transform: none;\n margin-right: 21px;\n}\n\n.wpmud .wphb-minification-filter .select-list-container {\n min-width: 240px !important;\n}\n\n/* Disabled/hidden row start */\n.wpmud .wphb-border-row.out-of-filter,\n.wpmud .wphb-border-row.disabled .checkbox-group {\n display: none;\n}\n\n.wpmud .box-content.disabled,\n.wpmud .wphb-border-row.disabled {\n background-color: #F2F2F2;\n}\n\n.wpmud .wphb-minification-files-advanced .wphb-border-row.disabled {\n box-shadow: none;\n}\n\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-other,\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-css,\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-javascript,\n.wpmud .wphb-border-row.disabled .wphb-filename-extension-js {\n opacity: 0.4;\n}\n\n.wpmud .wphb-filename-extension-label {\n line-height: 30px;\n}\n\n.wpmud .wphb-border-row.disabled .wphb-minification-file-info > span {\n color: #AAA;\n}\n/* Disabled row end */\n\n/* Settings */\n.wpmud .wrap-wphb-minification .settings-form {\n margin: 0;\n}\n\n/* Overwrite upsell message */\n.wpmud .wrap-wphb-minification .content-box-two-cols-image-left .wphb-block-entry-content {\n margin-top: 0;\n}\n\n/* Tools */\n.wpmud .box-minification-tools {\n .box-footer .spinner {\n margin: 6px 10px 0;\n }\n}\n\n// Responsive\n@include bp(desktop-large) {\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n width: 235px;\n }\n}\n\n@include bp(desktop) {\n .wpmud .box-minification-enqueued-files .box-title .buttons {\n float: left;\n margin-right: -5px !important;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n width: 130px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-exclude {\n margin-left: 15px;\n }\n\n .wpmud .box-minification-enqueued-files .box-footer .button {\n margin-top: 15px;\n }\n}\n\n@media screen and (max-width: 1060px) {\n .wpmud .wphb-border-row-header,\n .wpmud .wphb-border-row {\n padding: 15px 15px;\n }\n}\n\n@include bp(desktop-small) {\n .wpmud .box-minification-enqueued-files .box-title .buttons {\n float: right;\n margin-right: 45px !important;\n }\n}\n\n@include bp(tablet) {\n .wpmud .wphb-minification-files-advanced .fileinfo-group:after {\n font-family: dashicons, Arial, sans-serif;\n content: \"\\F347\";\n position: absolute;\n left: 100%;\n margin-left: -70px;\n margin-top: 5px;\n }\n\n .wpmud .wphb-minification-files-advanced .fileinfo-group.opened:after {\n content: \"\\f343\";\n }\n\n .wpmud .wphb-minification-files-advanced .fileinfo-group {\n padding: 10px 0;\n overflow: hidden;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n width: 55%;\n min-width: 200px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info > a {\n max-width: 200px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-row-details {\n display: none;\n margin: 10px 0;\n border-top: 1px solid #E6E6E6;\n padding-top: 15px !important;\n width: 100%;\n z-index: 100;\n }\n\n .wpmud .box-minification-enqueued-files .sui-box-header .wphb-switch-button > i {\n margin-left: 15px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-advanced-group {\n float: left;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-exclude {\n float: right;\n margin-top: 7px;\n }\n}\n\n@include bp(phone-large) {\n .wpmud .box-minification-enqueued-files .box-title h3,\n .wpmud .box-minification-enqueued-files .box-title .buttons {\n float: none !important;\n }\n\n .wpmud .box-minification-enqueued-files .box-title .wphb-switch-button {\n height: 96px;\n margin-left: -60px;\n position: absolute;\n top: 0;\n }\n\n .wpmud .wphb-minification-file-info {\n width: 185px;\n }\n\n .wpmud .box-minification-enqueued-files .box-footer .status-text {\n display: block;\n max-width: 100%;\n text-align: left;\n padding-left: 0;\n }\n}\n\n@include bp(phone) {\n .wpmud .wphb-minification-files-table.wphb-minification-files-basic,\n .wpmud .wphb-minification-files-table.wphb-minification-files-advanced {\n margin: 0 10px 30px;\n }\n\n .wpmud .wphb-minification-files-header {\n padding: 20px;\n }\n\n .wpmud .box-minification-enqueued-files .buttons .button {\n padding: 7px !important;\n }\n\n .wpmud .wphb-minification-filter-buttons {\n padding: 0 20px 20px;\n }\n\n .wpmud .wphb-minification-files-select {\n margin: 0 20px;\n }\n\n .wpmud .wphb-minification-files > h3 {\n margin: 10px;\n }\n\n .wpmud .wphb-minification-files-basic .wphb-border-row,\n .wpmud .wphb-minification-files-advanced .wphb-border-row {\n padding: 10px;\n }\n\n .wpmud .wphb-minification-file-info {\n width: 155px;\n }\n\n .wpmud .wphb-minification-files-advanced .wphb-minification-file-info {\n min-width: 170px;\n }\n\n .wpmud .wphb-border-row .fileinfo-group {\n /*margin-top: 5px;\n margin-bottom: -5px;*/\n margin-top: 0;\n margin-bottom: 0;\n }\n\n .wpmud .checkbox-group > span {\n line-height: 20px;\n text-align: right;\n align-self: center;\n }\n\n .wpmud .checkbox-group input[type=\"checkbox\"] + label {\n width: 60px;\n }\n\n .wpmud .checkbox-group input[type=\"checkbox\"] + label > [class^=\"hb-\"]:before {\n margin-right: 0;\n }\n\n .wpmud .checkbox-group input[type=\"checkbox\"] + label > span[class^=hb] > span {\n display: none;\n }\n\n .wpmud .wphb-minification-files-advanced .fileinfo-group:after {\n margin-left: -40px;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/modules/_minification.scss","/* ****************************************************************************\n * MODULES: UPTIME\n */\n\n@import \"../common/variables\";\n\n.sui-header .sui-actions-right {\n label,\n .select-container {\n margin-right: 10px;\n }\n label {\n font-size: 12px;\n color: #aaa;\n }\n}\n.wpmud .box-uptime-summary .sui-summary {\n background-image: url(\"#{$image--path}/hb-graphic-uptime-up@2x.png\");\n}\n.wpmud .wphb-block-uptime-status .wphb-uptime-icon {\n max-height: 110px;\n}\n\n.wpmud .wphb-block-content-uptime-data-range {\n padding-top: 9px;\n padding-bottom: 9px;\n}\n\n.wpmud .uptime-chart svg g g rect {\n fill: #E6E6E6;\n stroke: transparent;\n stroke-width: 0;\n}\n\n.wpmud .uptime-chart svg g g text {\n fill: #fff;\n font-family: $font;\n font-size: 13px;\n font-weight: 400;\n}\n.wpmud .uptime-chart svg g g g g rect:hover {\n stroke-width: 0px;\n stroke: red;\n display: none;\n}\n\n.wpmud .uptime-chart svg g g text:last-of-type {\n fill: #AAAAAA;\n font-weight: 500;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red,\n.wpmud .wrap-wphb-uptime .wphb-pills.green {\n height: 40px;\n line-height: 40px;\n width: 200px;\n border-radius: 5px;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-notice-grey {\n margin-bottom: 30px;\n}\n\n.wpmud .wphb-block-uptime-downtime .dev-list {\n margin-top: 30px;\n}\n\n.wrap-wphb-uptime .wphb-block-entry .wphb-block-content-center,\n.wrap-wphb-caching .wphb-block-entry .wphb-block-content-center {\n max-width: 600px;\n margin: 0 auto;\n}\n\n.wpmud .downtime-chart svg g text {\n font-family: 'Roboto', Arial, sans-serif;\n fill: #AAAAAA;\n font-weight: 500;\n font-size: 12px;\n line-height: 20px;\n}\n\n.wpmud .wphb-block-content.wphb-downtime-basic {\n margin-left: 80px;\n max-width: 90%;\n}\n\n.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart {\n height: 80px;\n}\n.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart div div svg {\n height: 58px !important;\n overflow: hidden;\n}\n.wpmud .wphb-block-content.wphb-downtime-basic .downtime-chart svg g text {\n display: none;\n}\n.wpmud .downtime-chart svg g path {\n stroke: transparent;\n}\n.wpmud .downtime-chart svg g rect {\n stroke: transparent;\n stroke-width: 0;\n}\n\n.wpmud .downtime-chart-key span {\n color: #AAAAAA;\n font-size: 12px;\n line-height: 20px;\n margin-right: 30px;\n font-weight: 500;\n}\n\n.wpmud .downtime-chart-key span:before {\n content: \"\";\n display: inline-block;\n height: 16px;\n width: 16px;\n border-radius: 2px;\n margin-right: 10px;\n vertical-align: sub;\n}\n\n.wpmud .downtime-chart-key span.response-time-key:before {\n background-color: #E1F6FF;\n border-top: 2px solid #24ADE5;\n height: 14px;\n}\n.wpmud .downtime-chart-key span.uptime-key:before {\n background-color: #D1F1EA;\n}\n.wpmud .downtime-chart-key span.downtime-key:before {\n background-color: #FF6D6D;\n}\n.wpmud .downtime-chart-key span.unknown-key:before {\n background-color: #F8F8F8;\n}\n\n.wpmud .wrap-wphb-uptime .dev-list-stats-item {\n margin-bottom: 10px;\n}\n.wpmud .box-uptime-downtime .sui-icon-chevron-up,\n.wpmud .box-uptime-downtime .sui-icon-chevron-down {\n padding: 6px;\n margin-right: 10px;\n vertical-align: middle;\n border-radius: 5px;\n font-size: 15px;\n line-height: 10px;\n &:before {\n color: #FFFFFF;\n\n }\n}\n\n.wpmud .box-uptime-downtime .sui-icon-chevron-down {\n background-color: #FF6D6D;\n}\n\n.wpmud .box-uptime-downtime .sui-icon-chevron-up {\n background-color: #1ABC9C;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills-group{\n width: 100%;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red,\n.wpmud .wrap-wphb-uptime .wphb-pills.green {\n text-align: left;\n color: #333333;\n font-size: 13px;\n height: 56px;\n line-height: 50px;\n padding-left: 15px;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red[tooltip]:after {\n left: 48%;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.red {\n background-color: #FFE5E9;\n border-top: 2px solid #FFE5E9;\n border-bottom: 2px solid #FF6D6D;\n width: 60%;\n}\n\n.wpmud .wrap-wphb-uptime .wphb-pills.green {\n background-color: #D1F1EA;\n border-top: 2px solid #1ABC9C;\n border-bottom: 2px solid #D1F1EA;\n width: 40%;\n}\n\n.wpmud span.list-detail-stats {\n position: absolute;\n font-size: 13px;\n font-weight: 500;\n line-height: 22px;\n right: 60%;\n color: #333333;\n opacity: .5;\n margin-top: 16px;\n}\n\n.wphb-image-pills-divider{\n display: inline-block;\n height: 56px;\n margin-bottom: -25px;\n margin-left: -28px;\n position: absolute;\n}\n\n.wpmud .downtime-chart div.google-visualization-tooltip,\n.wpmud .wphb-uptime-graph div.google-visualization-tooltip {\n font-family: 'Roboto', sans-serif;\n font-weight: 500;\n color: #FFFFFF;\n font-size: 12px;\n border: none;\n border-radius: 5px;\n padding: 8px 12px;\n background: black;\n}\n\n.wpmud .wphb-uptime-graph div.google-visualization-tooltip .response-time-tooltip {\n font-size: 15px;\n line-height: 18px;\n}\n\n.wpmud .wphb-uptime-graph div.google-visualization-tooltip .uptime-date-tooltip {\n font-size: 11px;\n color: #AAAAAA;\n line-height: 14px;\n display: block;\n}\n\n@include bp(desktop) {\n\n}\n\n@include bp(phone-large) {\n .wpmud .select-container.uptime-data-range {\n position: absolute;\n top: 0;\n right: 0;\n margin-right: 0;\n }\n\n .wpmud .uptime-data-range .select-list-container {\n min-width: 180px;\n }\n\n .wpmud .wrap-wphb-uptime .actions > .documentation-button {\n margin-left: 0 !important;\n }\n\n .wpmud .wrap-wphb-uptime .wphb-pills.green {\n position: absolute;\n top: 0;\n right: 0;\n height: 30px;\n border-radius: 0 4px 0 0 !important;\n line-height: 30px;\n padding-left: 10px;\n width: 160px;\n }\n\n .wpmud .wrap-wphb-uptime .wphb-pills.red {\n width: 100%;\n margin-top: 30px;\n height: 50px;\n border-radius: 5px 0 5px 5px !important;\n }\n\n .wpmud .box-uptime-downtime .sui-icon-chevron-down,\n .wpmud .box-uptime-downtime .sui-icon-chevron-up {\n padding: 4px;\n border-radius: 4px;\n font-size: 12px;\n vertical-align: inherit;\n }\n\n .wphb-image-pills-divider {\n display: inline-block;\n height: 30px;\n margin-left: 0;\n top: 0;\n right: 160px;\n }\n\n .wpmud span.list-detail-stats {\n right: 20px;\n margin-top: 46px;\n opacity: .7;\n }\n}\n\n@include bp(phone) {\n .wpmud .box-uptime-summary .list-detail {\n max-width: 60px;\n }\n\n .wpmud .uptime-chart {\n margin-left: -25px;\n }\n}\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/modules/_uptime.scss","/* ****************************************************************************\n * MODULES: ADVANCED TOOLS\n */\n\n@import \"../common/mixins\";\n\n/* Styles for all advanced meta boxes */\n.wpmud [class^=\"box-advanced\"] {\n .spinner {\n margin: 5px 10px 0;\n vertical-align: top;\n }\n}\n\n/* Database cleanup tab */\n.wpmud .box-advanced-db .wphb-border-frame {\n margin-top: 30px !important;\n\n .table-header,\n .table-row {\n padding: 20px 30px;\n\n @include bp(tablet) {\n padding: 15px 0;\n }\n }\n\n .table-header {\n @include bp(tablet) {\n padding: 15px 0 0;\n }\n }\n\n .table-header div {\n flex-basis: 50px;\n }\n\n .table-header div:first-child,\n .table-row div:first-child {\n flex-basis: 150px;\n }\n\n .table-row {\n div {\n height: 20px;\n font-size: 13px;\n line-height: 20px;\n\n &:first-child {\n color: #333;\n font-weight: 500;\n }\n }\n\n .hb-wpmudev-icon-info {\n color: #ddd;\n font-size: 16px;\n margin-left: 10px;\n\n &:hover { color: #aaa; }\n &:before { vertical-align: middle; }\n }\n\n .wphb-db-row-delete {\n width: 30px;\n height: 30px;\n display: inline-block;\n border-radius: 4px;\n margin-top: -5px;\n text-align: center;\n vertical-align: middle;\n cursor: pointer;\n\n &:hover {\n background-color: #f5f5f5;\n\n .hb-fi-trash {\n color: #FF6D6D;\n }\n }\n }\n\n .spinner {\n margin-top: 1px;\n }\n\n .hb-fi-trash {\n color: #888;\n font-size: 12px;\n top: 5px;\n }\n }\n\n .sui-box-footer {\n border-top: none;\n @include bp(tablet) {\n padding: 20px 0;\n }\n }\n}\n\n/* Database cleanup tab (settings) */\n.wpmud .box-advanced-db-settings {\n .settings-form {\n .schedule-box > label:first-child,\n .included-tables > label:first-child {\n margin-top: 0;\n }\n\n .included-tables > label {\n margin-top: 7px;\n color: #333;\n }\n\n\n }\n\n .wphb-db-cleanup-no-membership {\n padding-top: 0;\n\n .wphb-block-entry-content {\n @include bp(desktop-large) {\n margin-top: 30px;\n }\n }\n }\n}\n\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/modules/_advanced.scss"],"sourceRoot":""}
admin/assets/css/shared-ui.min.css ADDED
@@ -0,0 +1,2 @@
 
 
1
+ @import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,500,700|Roboto:400,500,700);.sui-2-1-0 .sui-checkbox input,.sui-2-1-0 .sui-radio input,.sui-2-1-0 .sui-toggle input[type=checkbox],.sui-2-1-0 .sui-upload-group input[type=file],.sui-screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important}.sui-2-1-0 .sui-hidden{display:none!important}.sui-2-1-0 .sui-block-content-center{text-align:center}.sui-2-1-0 .sui-image{display:block;height:auto;max-width:100%}.sui-2-1-0 .sui-image-center{margin-right:auto;margin-left:auto}.sui-2-1-0 .sui-actions-left{margin-left:10px;margin-right:auto}.sui-2-1-0 .sui-actions-left,.sui-2-1-0 .sui-actions-right{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sui-2-1-0 .sui-actions-right{margin-left:auto;margin-right:0}.sui-2-1-0 .sui-space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.sui-2-1-0 .sui-align-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.sui-2-1-0 .sui-align-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.sui-2-1-0 .sui-success{color:#1abc9c}.sui-2-1-0 .sui-warning{color:#fecf2f}.sui-2-1-0 .sui-error{color:#ff7f83}.sui-2-1-0 .sui-info{color:#17a8e3}.sui-2-1-0 .sui-no-margin{margin:0!important}.sui-2-1-0 .sui-no-margin-top{margin-top:0!important}.sui-2-1-0 .sui-no-margin-bottom{margin-bottom:0!important}.sui-2-1-0 .sui-no-margin-left{margin-left:0!important}.sui-2-1-0 .sui-no-margin-right{margin-right:0!important}.sui-2-1-0 .sui-no-padding{padding:0!important}.sui-2-1-0 .sui-no-padding-top{padding-top:0!important}.sui-2-1-0 .sui-no-padding-bottom{padding-bottom:0!important}.sui-2-1-0 .sui-no-padding-left{padding-left:0!important}.sui-2-1-0 .sui-no-padding-right{padding-right:0!important}.sui-2-1-0 .sui-margin{margin:30px!important}.sui-2-1-0 .sui-margin-top{margin-top:30px!important}.sui-2-1-0 .sui-margin-bottom{margin-bottom:30px!important}.sui-2-1-0 .sui-margin-left{margin-left:30px!important}.sui-2-1-0 .sui-margin-right{margin-right:30px!important}.sui-2-1-0 .sui-padding{padding:30px!important}.sui-2-1-0 .sui-padding-top{padding-top:30px!important}.sui-2-1-0 .sui-padding-bottom{padding-bottom:30px!important}.sui-2-1-0 .sui-padding-left{padding-left:30px!important}.sui-2-1-0 .sui-padding-right{padding-right:30px!important}@media (max-width:479px){.sui-hidden-xs{display:none!important}}@media (min-width:480px) and (max-width:782px){.sui-hidden-sm{display:none!important}}@media (min-width:783px) and (max-width:1199px){.sui-hidden-md{display:none!important}}@media (min-width:1200px){.sui-hidden-lg{display:none!important}}.sui-2-1-0 .sui-fade-in{-webkit-animation:fadeIn .3s ease-in forwards;animation:fadeIn .3s ease-in forwards}.sui-2-1-0 .sui-fade-out{-webkit-animation:fadeOut .3s ease-in forwards;animation:fadeOut .3s ease-in forwards}.sui-2-1-0 .sui-bounce-in{-webkit-animation:bounceInJiggle .8s ease-in forwards;animation:bounceInJiggle .8s ease-in forwards}.sui-2-1-0 .sui-bounce-out{-webkit-animation:bounceOutJiggle .6s ease-out forwards;animation:bounceOutJiggle .6s ease-out forwards}@-webkit-keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}@keyframes bounceInDown{0%,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(.215,.61,.355,1);animation-timing-function:cubic-bezier(.215,.61,.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:none;transform:none}}@-webkit-keyframes bounceInJiggle{0%{-webkit-transform:translateY(-200%) scale(1.5);transform:translateY(-200%) scale(1.5);opacity:0}30%{opacity:1}58%{-webkit-transform:translateY(0) rotate(1deg) scale(1);transform:translateY(0) rotate(1deg) scale(1);opacity:1}72%{-webkit-transform:translateY(-30px) rotate(-1deg);transform:translateY(-30px) rotate(-1deg)}80%{-webkit-transform:translateY(0) rotate(.5deg);transform:translateY(0) rotate(.5deg)}to{-webkit-transform:translateY(0) rotate(0deg);transform:translateY(0) rotate(0deg)}}@keyframes bounceInJiggle{0%{-webkit-transform:translateY(-200%) scale(1.5);transform:translateY(-200%) scale(1.5);opacity:0}30%{opacity:1}58%{-webkit-transform:translateY(0) rotate(1deg) scale(1);transform:translateY(0) rotate(1deg) scale(1);opacity:1}72%{-webkit-transform:translateY(-30px) rotate(-1deg);transform:translateY(-30px) rotate(-1deg)}80%{-webkit-transform:translateY(0) rotate(.5deg);transform:translateY(0) rotate(.5deg)}to{-webkit-transform:translateY(0) rotate(0deg);transform:translateY(0) rotate(0deg)}}@-webkit-keyframes bounceOutJiggle{0%{-webkit-transform:translateY(0);transform:translateY(0)}10%{-webkit-transform:translateY(-10px) rotate(-.5deg);transform:translateY(-10px) rotate(-.5deg)}30%{-webkit-transform:translateY(20px) rotate(8deg);transform:translateY(20px) rotate(8deg)}70%{opacity:1}90%{-webkit-transform:translateY(300%) translateX(40px) rotate(35deg);transform:translateY(300%) translateX(40px) rotate(35deg);opacity:0}to{display:none}}@keyframes bounceOutJiggle{0%{-webkit-transform:translateY(0);transform:translateY(0)}10%{-webkit-transform:translateY(-10px) rotate(-.5deg);transform:translateY(-10px) rotate(-.5deg)}30%{-webkit-transform:translateY(20px) rotate(8deg);transform:translateY(20px) rotate(8deg)}70%{opacity:1}90%{-webkit-transform:translateY(300%) translateX(40px) rotate(35deg);transform:translateY(300%) translateX(40px) rotate(35deg);opacity:0}to{display:none}}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(.9,.9,.9);transform:scale3d(.9,.9,.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.sui-2-1-0 .sui-wrap{font-family:Roboto,Arial,sans-serif;font-weight:400;font-size:15px;line-height:30px;color:#666;letter-spacing:-.025em;text-rendering:optimizeLegibility;margin:30px 30px 0 10px}@media (max-width:782px){.sui-2-1-0 .sui-wrap{margin:20px 10px 0 0}}.sui-2-1-0 h1,.sui-2-1-0 h2,.sui-2-1-0 h3,.sui-2-1-0 h4,.sui-2-1-0 h5,.sui-2-1-0 h6{display:block;margin:.5em auto;padding:0;line-height:30px;color:#333;font-weight:700;font-family:Roboto Condensed,Roboto,Arial,sans-serif}.sui-2-1-0 h1{font-size:32px;line-height:40px;color:#333;margin:0}.sui-2-1-0 h2{font-size:22px;line-height:35px}.sui-2-1-0 h3{font-size:18px;line-height:40px}.sui-2-1-0 h4,.sui-2-1-0 h5,.sui-2-1-0 h6,.sui-2-1-0 p{font-size:15px}.sui-2-1-0 p{font-family:Roboto,Arial,sans-serif;font-weight:400;line-height:30px;color:#666;letter-spacing:-.025em;text-rendering:optimizeLegibility}.sui-2-1-0 p:first-child{margin-top:0}.sui-2-1-0 p:last-child{margin-bottom:0}.sui-2-1-0 p small{font-size:13px;line-height:22px;color:#888}.sui-2-1-0 a{text-decoration:none;color:#17a8e3;font-weight:500;outline-color:transparent;outline-style:none;-webkit-box-shadow:none;box-shadow:none}.sui-2-1-0 a:active:not(.sui-button),.sui-2-1-0 a:focus:not(.sui-button),.sui-2-1-0 a:hover:not(.sui-button){color:#0a9bd6}.sui-2-1-0 a.disabled{pointer-events:none}.sui-2-1-0 a.disabled:active,.sui-2-1-0 a.disabled:focus,.sui-2-1-0 a.disabled:hover{color:#888;cursor:default}.sui-2-1-0 code,.sui-2-1-0 pre{font-weight:500;font-size:13px;line-height:18px;color:#333;background-color:#f8f8f8;border:1px solid #e6e6e6;border-radius:3px;margin:0;padding:10px 15px;white-space:pre;overflow:auto;max-width:100%;vertical-align:middle;-moz-tab-size:4;-o-tab-size:4;tab-size:4}.sui-2-1-0 code{display:inline-block;padding:2px 5px}.sui-2-1-0 b,.sui-2-1-0 strong{font-weight:500}.sui-2-1-0 dfn{font-style:normal;font-weight:400;border-bottom:1px dotted #888}.sui-2-1-0 .sui-checkbox span:before,.sui-2-1-0 .sui-dialog-close:before,.sui-2-1-0 .sui-listing li:before,.sui-2-1-0 .sui-notice-top p:before,.sui-2-1-0 .sui-notice p:before,.sui-2-1-0 .sui-radio span:before,.sui-2-1-0 [class*=sui-icon-]:after,.sui-2-1-0 [class*=sui-icon-]:before{font-family:WPMU-DEV-Icon!important;speak:none;font-size:1em;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;text-rendering:auto;display:inline-block;color:#888;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@font-face{font-family:WPMU-DEV-Icon;src:url(../fonts/WPMU-DEV-Icon.eot);src:url(../fonts/WPMU-DEV-Icon.eot) format("embedded-opentype"),url(../fonts/WPMU-DEV-Icon.ttf) format("truetype"),url(../fonts/WPMU-DEV-Icon.woff) format("woff"),url(../fonts/WPMU-DEV-Icon.woff2) format("woff2"),url(../fonts/WPMU-DEV-Icon.svg) format("svg");font-weight:400;font-style:normal}.sui-2-1-0 .sui-loading:before{-webkit-animation:spin 1.3s linear infinite;animation:spin 1.3s linear infinite}.sui-2-1-0 [class*=sui-icon-]{display:inline-block}.sui-2-1-0 [class*=sui-icon-].sui-xl:before{font-size:30px}.sui-2-1-0 [class*=sui-icon-].sui-lg:before{font-size:20px}.sui-2-1-0 [class*=sui-icon-].sui-md:before{font-size:16px}.sui-2-1-0 [class*=sui-icon-].sui-sm:before{font-size:12px}.sui-2-1-0 [class*=sui-icon-].sui-error:before,.sui-2-1-0 [class*=sui-icon-].sui-info:before,.sui-2-1-0 [class*=sui-icon-].sui-success:before,.sui-2-1-0 [class*=sui-icon-].sui-warning:before{color:inherit}.sui-2-1-0 [class*=sui-icon-].sui-fw{width:1.8em;text-align:center;min-height:1em}.sui-2-1-0 .sui-icon-24-hour-support:before{content:"\C1"}.sui-2-1-0 .sui-icon-2FA:before{content:"\E912"}.sui-2-1-0 .sui-icon-IP:before{content:"\E910"}.sui-2-1-0 .sui-icon-ab-testing:before{content:"\BB"}.sui-2-1-0 .sui-icon-academy:before{content:"\3C0"}.sui-2-1-0 .sui-icon-accounts-billing:before{content:"\E914"}.sui-2-1-0 .sui-icon-alert:before{content:"X"}.sui-2-1-0 .sui-icon-align-center:before{content:"^"}.sui-2-1-0 .sui-icon-align-justify:before{content:"#"}.sui-2-1-0 .sui-icon-align-left:before{content:"%"}.sui-2-1-0 .sui-icon-align-right:before{content:"&"}.sui-2-1-0 .sui-icon-animation-video:before{content:"F"}.sui-2-1-0 .sui-icon-annotate:before{content:"\B4"}.sui-2-1-0 .sui-icon-archive:before{content:"b"}.sui-2-1-0 .sui-icon-arrow-down:before{content:"\C2"}.sui-2-1-0 .sui-icon-arrow-left:before{content:"\F8FF"}.sui-2-1-0 .sui-icon-arrow-location:before{content:"M"}.sui-2-1-0 .sui-icon-arrow-pointer-cursor:before{content:"N"}.sui-2-1-0 .sui-icon-arrow-return-back:before{content:"R"}.sui-2-1-0 .sui-icon-arrow-right:before{content:"\AF"}.sui-2-1-0 .sui-icon-arrow-skip-back:before{content:"\E916"}.sui-2-1-0 .sui-icon-arrow-skip-end:before{content:"\E919"}.sui-2-1-0 .sui-icon-arrow-skip-forward:before{content:"\E917"}.sui-2-1-0 .sui-icon-arrow-skip-start:before{content:"\E918"}.sui-2-1-0 .sui-icon-arrow-up:before{content:"\D4"}.sui-2-1-0 .sui-icon-arrows-compress:before{content:"\2265"}.sui-2-1-0 .sui-icon-arrows-expand:before{content:"\AC"}.sui-2-1-0 .sui-icon-arrows-in:before{content:"\2264"}.sui-2-1-0 .sui-icon-arrows-out:before{content:"\2DA"}.sui-2-1-0 .sui-icon-asterisk:before{content:"*"}.sui-2-1-0 .sui-icon-at-sign:before{content:"@"}.sui-2-1-0 .sui-icon-audio-sound:before{content:"\E9AE"}.sui-2-1-0 .sui-icon-automate:before{content:"\152"}.sui-2-1-0 .sui-icon-blog:before{content:"\E90D"}.sui-2-1-0 .sui-icon-bold:before{content:"B"}.sui-2-1-0 .sui-icon-book:before{content:"\2206"}.sui-2-1-0 .sui-icon-book-bookmark:before{content:"\2D9"}.sui-2-1-0 .sui-icon-bookmark:before{content:"\221A"}.sui-2-1-0 .sui-icon-brush:before{content:"~"}.sui-2-1-0 .sui-icon-buddypress:before{content:"\E90C"}.sui-2-1-0 .sui-icon-calendar:before{content:"\220F"}.sui-2-1-0 .sui-icon-camera:before{content:"\D8"}.sui-2-1-0 .sui-icon-check:before{content:"("}.sui-2-1-0 .sui-icon-check-tick:before{content:"_"}.sui-2-1-0 .sui-icon-chevron-down:before{content:"\131"}.sui-2-1-0 .sui-icon-chevron-left:before{content:"\D3"}.sui-2-1-0 .sui-icon-chevron-right:before{content:"\2DC"}.sui-2-1-0 .sui-icon-chevron-up:before{content:"\2DD"}.sui-2-1-0 .sui-icon-clipboard-notes:before{content:"\BF"}.sui-2-1-0 .sui-icon-clock:before{content:","}.sui-2-1-0 .sui-icon-close:before{content:")"}.sui-2-1-0 .sui-icon-cloud:before{content:"\2122"}.sui-2-1-0 .sui-icon-cloud-migration:before{content:"\E905"}.sui-2-1-0 .sui-icon-cloudflare:before{content:"\D0"}.sui-2-1-0 .sui-icon-code:before{content:":"}.sui-2-1-0 .sui-icon-coffee-cup:before{content:"\E96B"}.sui-2-1-0 .sui-icon-color-pick-eyedropper:before{content:"\A5"}.sui-2-1-0 .sui-icon-comment:before{content:"\A7"}.sui-2-1-0 .sui-icon-comment-2:before{content:"\AA"}.sui-2-1-0 .sui-icon-comments:before{content:"\B6"}.sui-2-1-0 .sui-icon-community-people:before{content:"\2018"}.sui-2-1-0 .sui-icon-compass:before{content:"\2C6"}.sui-2-1-0 .sui-icon-credit-card:before{content:"c"}.sui-2-1-0 .sui-icon-crop:before{content:"C"}.sui-2-1-0 .sui-icon-cross-close:before{content:"+"}.sui-2-1-0 .sui-icon-crown:before{content:"\A1"}.sui-2-1-0 .sui-icon-dashboard:before{content:"\E9B2"}.sui-2-1-0 .sui-icon-dashboard-settings:before{content:"\E901"}.sui-2-1-0 .sui-icon-defender:before{content:"\B7"}.sui-2-1-0 .sui-icon-devman:before{content:"\20AC"}.sui-2-1-0 .sui-icon-dislike:before{content:"k"}.sui-2-1-0 .sui-icon-dollar:before{content:"$"}.sui-2-1-0 .sui-icon-download:before{content:"\E93B"}.sui-2-1-0 .sui-icon-download-cloud:before{content:"\A3"}.sui-2-1-0 .sui-icon-eye:before{content:"e"}.sui-2-1-0 .sui-icon-eye-hide:before{content:"q"}.sui-2-1-0 .sui-icon-fast-forward:before{content:">"}.sui-2-1-0 .sui-icon-filter:before{content:"z"}.sui-2-1-0 .sui-icon-finger-point:before{content:"\2248"}.sui-2-1-0 .sui-icon-finger-swipe:before{content:"\2203"}.sui-2-1-0 .sui-icon-first-aid:before{content:"\E93F"}.sui-2-1-0 .sui-icon-flag:before{content:"|"}.sui-2-1-0 .sui-icon-folder:before{content:"\2D8"}.sui-2-1-0 .sui-icon-forminator:before{content:"\E908"}.sui-2-1-0 .sui-icon-forminator-2:before{content:"\E907"}.sui-2-1-0 .sui-icon-gallery-slider:before{content:"\F7"}.sui-2-1-0 .sui-icon-google-analytics:before{content:"\E5"}.sui-2-1-0 .sui-icon-graph-bar:before{content:"\C7"}.sui-2-1-0 .sui-icon-graph-bar-2:before{content:"\2DB"}.sui-2-1-0 .sui-icon-heart:before{content:"K"}.sui-2-1-0 .sui-icon-help-support:before{content:"H"}.sui-2-1-0 .sui-icon-home:before{content:"J"}.sui-2-1-0 .sui-icon-hub:before{content:"\FB02"}.sui-2-1-0 .sui-icon-hummingbird:before{content:"\B0"}.sui-2-1-0 .sui-icon-hustle:before{content:"\2014"}.sui-2-1-0 .sui-icon-indent-less:before{content:"\201D"}.sui-2-1-0 .sui-icon-indent-more:before{content:"\2019"}.sui-2-1-0 .sui-icon-infinity:before{content:"V"}.sui-2-1-0 .sui-icon-info:before{content:"I"}.sui-2-1-0 .sui-icon-italic:before{content:"{"}.sui-2-1-0 .sui-icon-jobs-pros-search:before{content:"\E90E"}.sui-2-1-0 .sui-icon-key:before{content:"\25CA"}.sui-2-1-0 .sui-icon-laptop:before{content:"\AB"}.sui-2-1-0 .sui-icon-layers:before{content:"\E6"}.sui-2-1-0 .sui-icon-layout:before{content:"\A9"}.sui-2-1-0 .sui-icon-layout-grid:before{content:"\221E"}.sui-2-1-0 .sui-icon-lightbulb:before{content:"L"}.sui-2-1-0 .sui-icon-lightbulb-line:before{content:"\E913"}.sui-2-1-0 .sui-icon-like:before{content:"j"}.sui-2-1-0 .sui-icon-link:before{content:"5"}.sui-2-1-0 .sui-icon-list:before{content:"`"}.sui-2-1-0 .sui-icon-list-bullet:before{content:"8"}.sui-2-1-0 .sui-icon-list-number:before{content:"7"}.sui-2-1-0 .sui-icon-loader:before{content:"\E9BE"}.sui-2-1-0 .sui-icon-location-marker:before{content:"l"}.sui-2-1-0 .sui-icon-lock:before{content:"9"}.sui-2-1-0 .sui-icon-magnifying-glass-search:before{content:"\BA"}.sui-2-1-0 .sui-icon-magnifying-search-glass-love:before{content:"\2022"}.sui-2-1-0 .sui-icon-mail:before{content:"m"}.sui-2-1-0 .sui-icon-map:before{content:"4"}.sui-2-1-0 .sui-icon-megaphone:before{content:"\C5"}.sui-2-1-0 .sui-icon-microphone-audio:before{content:"\2030"}.sui-2-1-0 .sui-icon-minus:before{content:"-"}.sui-2-1-0 .sui-icon-mobile:before{content:"\201C"}.sui-2-1-0 .sui-icon-mobile-signal:before{content:"\201B"}.sui-2-1-0 .sui-icon-monitor:before{content:"\\"}.sui-2-1-0 .sui-icon-more:before{content:"\2026"}.sui-2-1-0 .sui-icon-mouse-scroll:before{content:"\DF"}.sui-2-1-0 .sui-icon-news-paper:before{content:"\2211"}.sui-2-1-0 .sui-icon-notification:before{content:"n"}.sui-2-1-0 .sui-icon-notification-count:before{content:"\E900"}.sui-2-1-0 .sui-icon-open-new-window:before{content:"\E909"}.sui-2-1-0 .sui-icon-page:before{content:"\D2"}.sui-2-1-0 .sui-icon-page-multiple:before{content:"\E7"}.sui-2-1-0 .sui-icon-page-pdf:before{content:"\C6"}.sui-2-1-0 .sui-icon-page-search:before{content:"\DA"}.sui-2-1-0 .sui-icon-paint-bucket:before{content:"\222B"}.sui-2-1-0 .sui-icon-paperclip:before{content:"A"}.sui-2-1-0 .sui-icon-pause:before{content:"o"}.sui-2-1-0 .sui-icon-paypal:before{content:"Y"}.sui-2-1-0 .sui-icon-pencil:before{content:"/"}.sui-2-1-0 .sui-icon-performance:before{content:"\E903"}.sui-2-1-0 .sui-icon-photo-picture:before{content:"D"}.sui-2-1-0 .sui-icon-play:before{content:"p"}.sui-2-1-0 .sui-icon-plug-connected:before{content:"\E90B"}.sui-2-1-0 .sui-icon-plug-disconnected:before{content:"\E90A"}.sui-2-1-0 .sui-icon-plugin-2:before{content:"O"}.sui-2-1-0 .sui-icon-plugins:before{content:"P"}.sui-2-1-0 .sui-icon-plus:before{content:"="}.sui-2-1-0 .sui-icon-power-on-off:before{content:"\E904"}.sui-2-1-0 .sui-icon-price-tag:before{content:"\2C7"}.sui-2-1-0 .sui-icon-profile-female:before{content:"\192"}.sui-2-1-0 .sui-icon-profile-male:before{content:"\B5"}.sui-2-1-0 .sui-icon-progress:before{content:"\E9B1"}.sui-2-1-0 .sui-icon-pulse:before{content:"\201E"}.sui-2-1-0 .sui-icon-puzzle:before{content:";\A}\A\A"}.sui-2-1-0 .sui-icon-question:before{content:"?"}.sui-2-1-0 .sui-icon-quote:before{content:";"}.sui-2-1-0 .sui-icon-quote-2:before{content:"'"}.sui-2-1-0 .sui-icon-refresh:before{content:"E"}.sui-2-1-0 .sui-icon-reply:before{content:"r"}.sui-2-1-0 .sui-icon-rocket-launch:before{content:"\E9BF"}.sui-2-1-0 .sui-icon-security-thumb-print:before{content:"\E90F"}.sui-2-1-0 .sui-icon-settings-slider-control:before{content:"\153"}.sui-2-1-0 .sui-icon-share:before{content:"s"}.sui-2-1-0 .sui-icon-sheild-badge:before{content:"\E96A"}.sui-2-1-0 .sui-icon-shipper-anchor:before{content:"\E906"}.sui-2-1-0 .sui-icon-shopping-cart:before{content:"\CD"}.sui-2-1-0 .sui-icon-sitemap:before{content:"\B8"}.sui-2-1-0 .sui-icon-skull:before{content:"\E96C"}.sui-2-1-0 .sui-icon-smart-crawl:before{content:"\2202"}.sui-2-1-0 .sui-icon-smush:before{content:"\2021"}.sui-2-1-0 .sui-icon-snapshot:before{content:"\FB01"}.sui-2-1-0 .sui-icon-social-android:before{content:"."}.sui-2-1-0 .sui-icon-social-apple:before{content:"a"}.sui-2-1-0 .sui-icon-social-drive:before{content:"v"}.sui-2-1-0 .sui-icon-social-dropbox:before{content:"d"}.sui-2-1-0 .sui-icon-social-facebook:before{content:"f"}.sui-2-1-0 .sui-icon-social-github:before{content:"h"}.sui-2-1-0 .sui-icon-social-google-plus:before{content:"g"}.sui-2-1-0 .sui-icon-social-linkedin:before{content:"i"}.sui-2-1-0 .sui-icon-social-twitter:before{content:"t"}.sui-2-1-0 .sui-icon-social-youtube:before{content:"y"}.sui-2-1-0 .sui-icon-speed-optimize:before{content:"\F8"}.sui-2-1-0 .sui-icon-star:before{content:"S"}.sui-2-1-0 .sui-icon-star-line:before{content:"\CF"}.sui-2-1-0 .sui-icon-stopwatch:before{content:"\E986"}.sui-2-1-0 .sui-icon-storage-server-data:before{content:"\CE"}.sui-2-1-0 .sui-icon-style-type:before{content:"<"}.sui-2-1-0 .sui-icon-tablet-landscape:before{content:"["}.sui-2-1-0 .sui-icon-tablet-portrait:before{content:"]"}.sui-2-1-0 .sui-icon-target:before{content:"\2020"}.sui-2-1-0 .sui-icon-tech-support:before{content:"\E915"}.sui-2-1-0 .sui-icon-testing-bottle-beaker:before{content:"\E9B4"}.sui-2-1-0 .sui-icon-text-color:before{content:"\A8"}.sui-2-1-0 .sui-icon-themes:before{content:"T"}.sui-2-1-0 .sui-icon-thumbnails:before{content:"G"}.sui-2-1-0 .sui-icon-ticket:before{content:"\E97D"}.sui-2-1-0 .sui-icon-timed-countdown:before{content:"\E911"}.sui-2-1-0 .sui-icon-trash:before{content:"Q"}.sui-2-1-0 .sui-icon-underline:before{content:"U"}.sui-2-1-0 .sui-icon-unlink:before{content:"6"}.sui-2-1-0 .sui-icon-unlock:before{content:"0"}.sui-2-1-0 .sui-icon-update:before{content:"\AE"}.sui-2-1-0 .sui-icon-update-arrow:before{content:"\E902"}.sui-2-1-0 .sui-icon-upfront:before{content:"\201A"}.sui-2-1-0 .sui-icon-upload-cloud:before{content:"\A2"}.sui-2-1-0 .sui-icon-uptime:before{content:"\B1"}.sui-2-1-0 .sui-icon-user-hero-points-trophy:before{content:"1"}.sui-2-1-0 .sui-icon-user-reputation-points:before{content:"2"}.sui-2-1-0 .sui-icon-user-star-level-up:before{content:"3"}.sui-2-1-0 .sui-icon-wand-magic:before{content:"Z"}.sui-2-1-0 .sui-icon-warning-alert:before{content:"!"}.sui-2-1-0 .sui-icon-web-globe-world:before{content:"W"}.sui-2-1-0 .sui-icon-white-label-video:before{content:"u"}.sui-2-1-0 .sui-icon-widget-settings-config:before{content:"x"}.sui-2-1-0 .sui-icon-wordpress:before{content:"w"}.sui-2-1-0 .sui-icon-wpmudev-logo:before{content:"\2039"}.sui-2-1-0 .sui-icon-wpmudev-logo-2:before{content:"\203A"}.sui-2-1-0 .sui-icon-wrench-tool:before{content:"\2044"}.sui-2-1-0 .sui-icon-zip:before{content:"\3A9"}.sui-2-1-0 .sui-icon-zoom-in:before{content:"\2260"}.sui-2-1-0 .sui-icon-zoom-out:before{content:"\2013"}.sui-2-1-0 .sui-button,.sui-2-1-0 a.sui-button,.sui-2-1-0 button.sui-button{min-width:80px;height:30px;cursor:pointer;display:inline-block;position:relative;padding:7px 16px;margin:0 10px 0 0;border:0;background-color:#888;color:#fff;font:500 12px/16px Roboto,Arial,sans-serif;letter-spacing:-.025em;text-transform:uppercase;text-align:center;text-decoration:none;border-radius:3px;-webkit-transition:all .3s ease;transition:all .3s ease;text-shadow:none;white-space:nowrap}.sui-2-1-0 .sui-button .sui-loading,.sui-2-1-0 a.sui-button .sui-loading,.sui-2-1-0 button.sui-button .sui-loading{display:none;position:absolute;top:50%;left:50%;margin:-8px}.sui-2-1-0 .sui-button .sui-loading-text,.sui-2-1-0 a.sui-button .sui-loading-text,.sui-2-1-0 button.sui-button .sui-loading-text{pointer-events:none}.sui-2-1-0 .sui-button i:before,.sui-2-1-0 a.sui-button i:before,.sui-2-1-0 button.sui-button i:before{-webkit-transition:all .3s ease;transition:all .3s ease;color:#fff}.sui-2-1-0 .sui-button:focus,.sui-2-1-0 .sui-button:hover,.sui-2-1-0 a.sui-button:focus,.sui-2-1-0 a.sui-button:hover,.sui-2-1-0 button.sui-button:focus,.sui-2-1-0 button.sui-button:hover{outline:none;background:#7b7b7b;border-color:#7b7b7b}.sui-2-1-0 .sui-button:active,.sui-2-1-0 .sui-button:focus,.sui-2-1-0 a.sui-button:active,.sui-2-1-0 a.sui-button:focus,.sui-2-1-0 button.sui-button:active,.sui-2-1-0 button.sui-button:focus{outline:none;-webkit-box-shadow:none;box-shadow:none;background:#7b7b7b;border-color:#7b7b7b}.sui-2-1-0 .sui-button.sui-button-blue,.sui-2-1-0 .sui-button.sui-button-primary,.sui-2-1-0 a.sui-button.sui-button-blue,.sui-2-1-0 a.sui-button.sui-button-primary,.sui-2-1-0 button.sui-button.sui-button-blue,.sui-2-1-0 button.sui-button.sui-button-primary{background:#17a8e3}.sui-2-1-0 .sui-button.sui-button-blue i:before,.sui-2-1-0 .sui-button.sui-button-primary i:before,.sui-2-1-0 a.sui-button.sui-button-blue i:before,.sui-2-1-0 a.sui-button.sui-button-primary i:before,.sui-2-1-0 button.sui-button.sui-button-blue i:before,.sui-2-1-0 button.sui-button.sui-button-primary i:before{color:#fff}.sui-2-1-0 .sui-button.sui-button-blue:focus,.sui-2-1-0 .sui-button.sui-button-blue:hover,.sui-2-1-0 .sui-button.sui-button-primary:focus,.sui-2-1-0 .sui-button.sui-button-primary:hover,.sui-2-1-0 a.sui-button.sui-button-blue:focus,.sui-2-1-0 a.sui-button.sui-button-blue:hover,.sui-2-1-0 a.sui-button.sui-button-primary:focus,.sui-2-1-0 a.sui-button.sui-button-primary:hover,.sui-2-1-0 button.sui-button.sui-button-blue:focus,.sui-2-1-0 button.sui-button.sui-button-blue:hover,.sui-2-1-0 button.sui-button.sui-button-primary:focus,.sui-2-1-0 button.sui-button.sui-button-primary:hover{background:#0a9bd6}.sui-2-1-0 .sui-button.sui-button-red,.sui-2-1-0 a.sui-button.sui-button-red,.sui-2-1-0 button.sui-button.sui-button-red{background:#cb4b57}.sui-2-1-0 .sui-button.sui-button-red i:before,.sui-2-1-0 a.sui-button.sui-button-red i:before,.sui-2-1-0 button.sui-button.sui-button-red i:before{color:#fff}.sui-2-1-0 .sui-button.sui-button-red:focus,.sui-2-1-0 .sui-button.sui-button-red:hover,.sui-2-1-0 a.sui-button.sui-button-red:focus,.sui-2-1-0 a.sui-button.sui-button-red:hover,.sui-2-1-0 button.sui-button.sui-button-red:focus,.sui-2-1-0 button.sui-button.sui-button-red:hover{opacity:1;background:#c40000}.sui-2-1-0 .sui-button.sui-button-green,.sui-2-1-0 a.sui-button.sui-button-green,.sui-2-1-0 button.sui-button.sui-button-green{background:#1abc9c}.sui-2-1-0 .sui-button.sui-button-green i:before,.sui-2-1-0 a.sui-button.sui-button-green i:before,.sui-2-1-0 button.sui-button.sui-button-green i:before{color:#fff}.sui-2-1-0 .sui-button.sui-button-green:focus,.sui-2-1-0 .sui-button.sui-button-green:hover,.sui-2-1-0 a.sui-button.sui-button-green:focus,.sui-2-1-0 a.sui-button.sui-button-green:hover,.sui-2-1-0 button.sui-button.sui-button-green:focus,.sui-2-1-0 button.sui-button.sui-button-green:hover{opacity:1;background:#148f77}.sui-2-1-0 .sui-button.sui-button-upsell,.sui-2-1-0 a.sui-button.sui-button-upsell,.sui-2-1-0 button.sui-button.sui-button-upsell{border:2px solid #d1f1ea;color:#1abc9c;width:auto;height:26px;line-height:15px;background:transparent;padding:4px 16px;border-radius:15px;text-transform:none}.sui-2-1-0 .sui-button.sui-button-upsell:focus,.sui-2-1-0 .sui-button.sui-button-upsell:hover,.sui-2-1-0 a.sui-button.sui-button-upsell:focus,.sui-2-1-0 a.sui-button.sui-button-upsell:hover,.sui-2-1-0 button.sui-button.sui-button-upsell:focus,.sui-2-1-0 button.sui-button.sui-button-upsell:hover{opacity:1;border-color:#148f77;background:#148f77;color:#fff}.sui-2-1-0 .sui-button.sui-button-ghost,.sui-2-1-0 a.sui-button.sui-button-ghost,.sui-2-1-0 button.sui-button.sui-button-ghost{padding:5px 16px 7px;border:2px solid #ddd;background:transparent;color:#888}.sui-2-1-0 .sui-button.sui-button-ghost i:before,.sui-2-1-0 a.sui-button.sui-button-ghost i:before,.sui-2-1-0 button.sui-button.sui-button-ghost i:before{color:#888}.sui-2-1-0 .sui-button.sui-button-ghost:focus,.sui-2-1-0 .sui-button.sui-button-ghost:hover,.sui-2-1-0 a.sui-button.sui-button-ghost:focus,.sui-2-1-0 a.sui-button.sui-button-ghost:hover,.sui-2-1-0 button.sui-button.sui-button-ghost:focus,.sui-2-1-0 button.sui-button.sui-button-ghost:hover{border-color:#888;background:#888;color:#fff}.sui-2-1-0 .sui-button.sui-button-ghost:focus i:before,.sui-2-1-0 .sui-button.sui-button-ghost:hover i:before,.sui-2-1-0 a.sui-button.sui-button-ghost:focus i:before,.sui-2-1-0 a.sui-button.sui-button-ghost:hover i:before,.sui-2-1-0 button.sui-button.sui-button-ghost:focus i:before,.sui-2-1-0 button.sui-button.sui-button-ghost:hover i:before{color:#fff}.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-blue,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-blue,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-blue{border-color:#17a8e3;color:#17a8e3}.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-blue i:before,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-blue i:before,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-blue i:before{color:#17a8e3}.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-blue:focus,.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-blue:hover,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-blue:focus,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-blue:hover,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-blue:focus,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-blue:hover{border-color:#17a8e3;background:#17a8e3;color:#fff}.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-red,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-red,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-red{border-color:#c40000;color:#c40000}.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-red i:before,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-red i:before,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-red i:before{color:red}.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-red:focus,.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-red:hover,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-red:focus,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-red:hover,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-red:focus,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-red:hover{opacity:1;border-color:#c40000;background:#c40000;color:#fff}.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-green,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-green,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-green{border-color:#1abc9c;color:#1abc9c}.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-green i:before,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-green i:before,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-green i:before{color:#1abc9c}.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-green:focus,.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-green:hover,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-green:focus,.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-green:hover,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-green:focus,.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-green:hover{opacity:1;border-color:#148f77;background:#148f77;color:#fff}.sui-2-1-0 .sui-button.sui-button-lg,.sui-2-1-0 a.sui-button.sui-button-lg,.sui-2-1-0 button.sui-button.sui-button-lg{height:40px;padding:11px 20px 9px;border-radius:3px;font:500 15px/20px Roboto,Arial,sans-serif}.sui-2-1-0 .sui-button.sui-button-lg.sui-button-ghost,.sui-2-1-0 a.sui-button.sui-button-lg.sui-button-ghost,.sui-2-1-0 button.sui-button.sui-button-lg.sui-button-ghost{padding:9px 20px}.sui-2-1-0 .sui-button.sui-button-onload,.sui-2-1-0 a.sui-button.sui-button-onload,.sui-2-1-0 button.sui-button.sui-button-onload{pointer-events:none}.sui-2-1-0 .sui-button.sui-button-onload .sui-loading,.sui-2-1-0 a.sui-button.sui-button-onload .sui-loading,.sui-2-1-0 button.sui-button.sui-button-onload .sui-loading{display:block}.sui-2-1-0 .sui-button.sui-button-onload,.sui-2-1-0 .sui-button.sui-button-onload.sui-button-blue,.sui-2-1-0 .sui-button.sui-button-onload.sui-button-green,.sui-2-1-0 .sui-button.sui-button-onload.sui-button-red,.sui-2-1-0 a.sui-button.sui-button-onload,.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-blue,.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-green,.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-red,.sui-2-1-0 button.sui-button.sui-button-onload,.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-blue,.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-green,.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-red{background:#e6e6e6}.sui-2-1-0 .sui-button.sui-button-onload.sui-button-blue .sui-loading-text,.sui-2-1-0 .sui-button.sui-button-onload.sui-button-green .sui-loading-text,.sui-2-1-0 .sui-button.sui-button-onload.sui-button-red .sui-loading-text,.sui-2-1-0 .sui-button.sui-button-onload .sui-loading-text,.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-blue .sui-loading-text,.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-green .sui-loading-text,.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-red .sui-loading-text,.sui-2-1-0 a.sui-button.sui-button-onload .sui-loading-text,.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-blue .sui-loading-text,.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-green .sui-loading-text,.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-red .sui-loading-text,.sui-2-1-0 button.sui-button.sui-button-onload .sui-loading-text{color:#e6e6e6}.sui-2-1-0 .sui-button.sui-button-onload.sui-button-ghost,.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-ghost,.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-ghost{border-color:#e6e6e6;background:transparent}.sui-2-1-0 .sui-button.sui-button-onload.sui-button-ghost .sui-loading-text,.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-ghost .sui-loading-text,.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-ghost .sui-loading-text{color:transparent}.sui-2-1-0 .sui-button.disabled,.sui-2-1-0 .sui-button:disabled,.sui-2-1-0 .sui-button[disabled],.sui-2-1-0 a.sui-button.disabled,.sui-2-1-0 a.sui-button:disabled,.sui-2-1-0 a.sui-button[disabled],.sui-2-1-0 button.sui-button.disabled,.sui-2-1-0 button.sui-button:disabled,.sui-2-1-0 button.sui-button[disabled]{color:#aaa;border-color:#ddd;background:#f8f8f8;-webkit-box-shadow:none;box-shadow:none;pointer-events:none;cursor:default;-webkit-transform:none;transform:none}.sui-2-1-0 .sui-button.disabled:focus,.sui-2-1-0 .sui-button.disabled:hover,.sui-2-1-0 .sui-button:disabled:focus,.sui-2-1-0 .sui-button:disabled:hover,.sui-2-1-0 .sui-button[disabled]:focus,.sui-2-1-0 .sui-button[disabled]:hover,.sui-2-1-0 a.sui-button.disabled:focus,.sui-2-1-0 a.sui-button.disabled:hover,.sui-2-1-0 a.sui-button:disabled:focus,.sui-2-1-0 a.sui-button:disabled:hover,.sui-2-1-0 a.sui-button[disabled]:focus,.sui-2-1-0 a.sui-button[disabled]:hover,.sui-2-1-0 button.sui-button.disabled:focus,.sui-2-1-0 button.sui-button.disabled:hover,.sui-2-1-0 button.sui-button:disabled:focus,.sui-2-1-0 button.sui-button:disabled:hover,.sui-2-1-0 button.sui-button[disabled]:focus,.sui-2-1-0 button.sui-button[disabled]:hover{color:#aaa;border-color:#ddd;background:#f8f8f8;-webkit-box-shadow:none;box-shadow:none;cursor:default;-webkit-transform:none;transform:none}.sui-2-1-0 .sui-button:last-child,.sui-2-1-0 a.sui-button:last-child,.sui-2-1-0 button.sui-button:last-child{margin:0}.sui-2-1-0 .sui-button.sui-button-icon,.sui-2-1-0 a.sui-button.sui-button-icon,.sui-2-1-0 button.sui-button.sui-button-icon{min-width:0}.sui-2-1-0 .sui-toggle{position:relative;display:inline-block;width:34px;height:16px;margin-right:10px}.sui-2-1-0 .sui-toggle.sui-toggle-label{top:3px}.sui-2-1-0 .sui-toggle-label{vertical-align:text-bottom;line-height:22px;margin-left:10px}.sui-2-1-0 .sui-toggle input[type=checkbox][disabled]+.sui-toggle-slider{opacity:.5;cursor:not-allowed}.sui-2-1-0 .sui-toggle-slider{position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#f8f8f8;border-radius:100px;-webkit-transition:.4s;transition:.4s;border:1px solid #e6e6e6}.sui-2-1-0 .sui-toggle-slider:before{position:absolute;content:"";height:16px;width:16px;left:-1px;bottom:-1px;background-color:#888;border-radius:50%;-webkit-transition:.2s;transition:.2s}.sui-2-1-0 input[type=checkbox]:checked+.sui-toggle-slider:before{background-color:#17a8e3;-webkit-transform:translateX(18px);transform:translateX(18px)}.sui-2-1-0 .sui-wrap *,.sui-2-1-0 .sui-wrap :after,.sui-2-1-0 .sui-wrap :before{-webkit-box-sizing:border-box;box-sizing:border-box}.sui-2-1-0 .sui-box{position:relative;min-height:20px;background-color:#fff;border-radius:5px;margin-bottom:30px;-webkit-box-shadow:0 2px 0 #eaeaea;box-shadow:0 2px 0 #eaeaea}@media (max-width:782px){.sui-2-1-0 .sui-box{margin-bottom:20px}}.sui-2-1-0 .sui-box-header{border-bottom:1px solid #eaeaea;padding:15px 30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:782px){.sui-2-1-0 .sui-box-header{padding:15px 20px}}.sui-2-1-0 .sui-box-header>h3>i{line-height:30px}.sui-2-1-0 .sui-box-body{padding:30px}@media (max-width:782px){.sui-2-1-0 .sui-box-body{padding:20px}}.sui-2-1-0 .sui-box-body .sui-box-settings-row{position:relative;border-bottom:1px solid #e6e6e6;padding-bottom:30px;display:table;width:100%;margin-top:30px}@media (max-width:782px){.sui-2-1-0 .sui-box-body .sui-box-settings-row{display:block;margin-top:20px;padding-bottom:20px}}.sui-2-1-0 .sui-box-body .sui-box-settings-row:first-of-type{margin-top:0}.sui-2-1-0 .sui-box-body .sui-box-settings-row:last-of-type{padding-bottom:0;border:0}.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-1{display:table-cell;width:230px;padding-right:30px}@media (max-width:782px){.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-1{display:block;padding-top:20px;width:100%;padding-right:0}.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-1:first-child{padding-top:0}}.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-2{display:table-cell}@media (max-width:782px){.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-2{display:block;padding-top:20px}}.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-2 .sui-settings-label{color:#666}.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-form-field:last-of-type{margin-bottom:0}.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-settings-label{display:block;font-weight:500;line-height:22px;color:#333}.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-description{line-height:22px}.sui-2-1-0 .sui-box-body .sui-box-settings-row.sui-disabled{background-color:hsla(0,0%,95%,.5);opacity:.5;pointer-events:none}.sui-2-1-0 .sui-box-body.sui-upsell-items{padding:0}.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row{border-bottom:none;margin-top:0}.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:before{position:absolute;display:block;clear:both;height:1px;content:"";background-color:#e6e6e6;left:30px;right:30px;top:0}.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:first-of-type{margin-top:0}.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:first-of-type:before{display:none}.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:last-of-type{padding-bottom:30px}.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:last-of-type:before{display:none}.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row{padding-right:30px;padding-left:30px;padding-top:31px}@media (max-width:782px){.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row{padding-right:20px;padding-left:20px;padding-top:21px}}@media (max-width:782px){.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:first-of-type{padding-top:20px}}.sui-2-1-0 .sui-box-body .sui-upsell-row{position:relative}.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-image{position:absolute;bottom:0;width:100px}@media (max-width:782px){.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-image{display:none}}.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice{padding-left:130px}@media (max-width:782px){.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice{padding-left:0}}.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice p{position:relative;border-radius:4px;background-color:#e1f6ff;padding:20px 30px;color:#333;font-size:13px;line-height:22px}.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice p:after{position:absolute;top:43%;left:0;margin-left:-7px;content:"";width:0;height:0;border-top:7px solid transparent;border-bottom:7px solid transparent;border-right:7px solid #e1f6ff}@media (max-width:782px){.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice p:after{display:none}}.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice p a{color:#333;text-decoration:underline;font-weight:500}.sui-2-1-0 .sui-box-body .sui-settings-box{padding:30px;border:1px solid #e6e6e6;border-radius:5px}@media (max-width:782px){.sui-2-1-0 .sui-box-body .sui-settings-box{padding:20px}}.sui-2-1-0 .sui-box-footer{border-top:1px solid #eaeaea;padding:30px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sui-2-1-0 .sui-box-footer.sui-pull-up{margin-top:-15px}@media (max-width:782px){.sui-2-1-0 .sui-box-footer{padding:20px}}.sui-2-1-0 .sui-box-title{display:block;font-weight:700;font-size:15px;line-height:30px;font-family:Roboto,Arial,sans-serif;margin:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.sui-2-1-0 .sui-box-title *{vertical-align:middle}.sui-2-1-0 .sui-box-title i{margin-right:10px;display:block;float:left}.sui-2-1-0 .sui-box-title i:before{color:inherit;font-size:20px;vertical-align:text-bottom}.sui-2-1-0 h3.sui-box-title{text-transform:none}.sui-2-1-0 .sui-with-bottom-border{padding-bottom:30px;border-bottom:1px solid #e6e6e6;margin-bottom:30px}@media (max-width:782px){.sui-2-1-0 .sui-with-bottom-border{margin-bottom:20px;padding-bottom:20px}}.sui-2-1-0 .sui-border-frame{border:1px solid #e6e6e6;border-radius:5px;margin:10px 0 0;padding:30px}@media (max-width:782px){.sui-2-1-0 .sui-border-frame{padding:20px}}.sui-2-1-0 .sui-col,.sui-2-1-0 [class*=sui-col-]{min-height:1px;padding-left:15px;padding-right:15px;position:relative}@media (max-width:782px){.sui-2-1-0 .sui-col,.sui-2-1-0 [class*=sui-col-]{padding-left:10px;padding-right:10px}}.sui-2-1-0 .sui-row{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:wrap;flex-flow:wrap;margin-right:-15px;margin-left:-15px}@media (max-width:782px){.sui-2-1-0 .sui-row{margin-left:-10px;margin-right:-10px}}.sui-2-1-0 .sui-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.sui-2-1-0 .sui-col{-webkit-box-flex:1;-ms-flex:1;flex:1}.sui-2-1-0 [class*=sui-col-]{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;width:100%;max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.sui-2-1-0 .sui-col-xs-12{width:100%;max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.sui-2-1-0 .sui-col-xs-offset-12{margin-left:100%}.sui-2-1-0 .sui-col-xs-11{width:91.66667%;max-width:91.66667%;-ms-flex-preferred-size:91.66667%;flex-basis:91.66667%}.sui-2-1-0 .sui-col-xs-offset-11{margin-left:91.66667%}.sui-2-1-0 .sui-col-xs-10{width:83.33333%;max-width:83.33333%;-ms-flex-preferred-size:83.33333%;flex-basis:83.33333%}.sui-2-1-0 .sui-col-xs-offset-10{margin-left:83.33333%}.sui-2-1-0 .sui-col-xs-9{width:75%;max-width:75%;-ms-flex-preferred-size:75%;flex-basis:75%}.sui-2-1-0 .sui-col-xs-offset-9{margin-left:75%}.sui-2-1-0 .sui-col-xs-8{width:66.66667%;max-width:66.66667%;-ms-flex-preferred-size:66.66667%;flex-basis:66.66667%}.sui-2-1-0 .sui-col-xs-offset-8{margin-left:66.66667%}.sui-2-1-0 .sui-col-xs-7{width:58.33333%;max-width:58.33333%;-ms-flex-preferred-size:58.33333%;flex-basis:58.33333%}.sui-2-1-0 .sui-col-xs-offset-7{margin-left:58.33333%}.sui-2-1-0 .sui-col-xs-6{width:50%;max-width:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.sui-2-1-0 .sui-col-xs-offset-6{margin-left:50%}.sui-2-1-0 .sui-col-xs-5{width:41.66667%;max-width:41.66667%;-ms-flex-preferred-size:41.66667%;flex-basis:41.66667%}.sui-2-1-0 .sui-col-xs-offset-5{margin-left:41.66667%}.sui-2-1-0 .sui-col-xs-4{width:33.33333%;max-width:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.sui-2-1-0 .sui-col-xs-offset-4{margin-left:33.33333%}.sui-2-1-0 .sui-col-xs-3{width:25%;max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.sui-2-1-0 .sui-col-xs-offset-3{margin-left:25%}.sui-2-1-0 .sui-col-xs-2{width:16.66667%;max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%}.sui-2-1-0 .sui-col-xs-offset-2{margin-left:16.66667%}.sui-2-1-0 .sui-col-xs-1{width:8.33333%;max-width:8.33333%;-ms-flex-preferred-size:8.33333%;flex-basis:8.33333%}.sui-2-1-0 .sui-col-xs-offset-1{margin-left:8.33333%}@media (min-width:0px){.sui-2-1-0 .sui-col-xs-12{width:100%;max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.sui-2-1-0 .sui-col-xs-offset-12{margin-left:100%}.sui-2-1-0 .sui-col-xs-11{width:91.66667%;max-width:91.66667%;-ms-flex-preferred-size:91.66667%;flex-basis:91.66667%}.sui-2-1-0 .sui-col-xs-offset-11{margin-left:91.66667%}.sui-2-1-0 .sui-col-xs-10{width:83.33333%;max-width:83.33333%;-ms-flex-preferred-size:83.33333%;flex-basis:83.33333%}.sui-2-1-0 .sui-col-xs-offset-10{margin-left:83.33333%}.sui-2-1-0 .sui-col-xs-9{width:75%;max-width:75%;-ms-flex-preferred-size:75%;flex-basis:75%}.sui-2-1-0 .sui-col-xs-offset-9{margin-left:75%}.sui-2-1-0 .sui-col-xs-8{width:66.66667%;max-width:66.66667%;-ms-flex-preferred-size:66.66667%;flex-basis:66.66667%}.sui-2-1-0 .sui-col-xs-offset-8{margin-left:66.66667%}.sui-2-1-0 .sui-col-xs-7{width:58.33333%;max-width:58.33333%;-ms-flex-preferred-size:58.33333%;flex-basis:58.33333%}.sui-2-1-0 .sui-col-xs-offset-7{margin-left:58.33333%}.sui-2-1-0 .sui-col-xs-6{width:50%;max-width:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.sui-2-1-0 .sui-col-xs-offset-6{margin-left:50%}.sui-2-1-0 .sui-col-xs-5{width:41.66667%;max-width:41.66667%;-ms-flex-preferred-size:41.66667%;flex-basis:41.66667%}.sui-2-1-0 .sui-col-xs-offset-5{margin-left:41.66667%}.sui-2-1-0 .sui-col-xs-4{width:33.33333%;max-width:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.sui-2-1-0 .sui-col-xs-offset-4{margin-left:33.33333%}.sui-2-1-0 .sui-col-xs-3{width:25%;max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.sui-2-1-0 .sui-col-xs-offset-3{margin-left:25%}.sui-2-1-0 .sui-col-xs-2{width:16.66667%;max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%}.sui-2-1-0 .sui-col-xs-offset-2{margin-left:16.66667%}.sui-2-1-0 .sui-col-xs-1{width:8.33333%;max-width:8.33333%;-ms-flex-preferred-size:8.33333%;flex-basis:8.33333%}.sui-2-1-0 .sui-col-xs-offset-1{margin-left:8.33333%}}@media (min-width:480px){.sui-2-1-0 .sui-col-sm-12{width:100%;max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.sui-2-1-0 .sui-col-sm-offset-12{margin-left:100%}.sui-2-1-0 .sui-col-sm-11{width:91.66667%;max-width:91.66667%;-ms-flex-preferred-size:91.66667%;flex-basis:91.66667%}.sui-2-1-0 .sui-col-sm-offset-11{margin-left:91.66667%}.sui-2-1-0 .sui-col-sm-10{width:83.33333%;max-width:83.33333%;-ms-flex-preferred-size:83.33333%;flex-basis:83.33333%}.sui-2-1-0 .sui-col-sm-offset-10{margin-left:83.33333%}.sui-2-1-0 .sui-col-sm-9{width:75%;max-width:75%;-ms-flex-preferred-size:75%;flex-basis:75%}.sui-2-1-0 .sui-col-sm-offset-9{margin-left:75%}.sui-2-1-0 .sui-col-sm-8{width:66.66667%;max-width:66.66667%;-ms-flex-preferred-size:66.66667%;flex-basis:66.66667%}.sui-2-1-0 .sui-col-sm-offset-8{margin-left:66.66667%}.sui-2-1-0 .sui-col-sm-7{width:58.33333%;max-width:58.33333%;-ms-flex-preferred-size:58.33333%;flex-basis:58.33333%}.sui-2-1-0 .sui-col-sm-offset-7{margin-left:58.33333%}.sui-2-1-0 .sui-col-sm-6{width:50%;max-width:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.sui-2-1-0 .sui-col-sm-offset-6{margin-left:50%}.sui-2-1-0 .sui-col-sm-5{width:41.66667%;max-width:41.66667%;-ms-flex-preferred-size:41.66667%;flex-basis:41.66667%}.sui-2-1-0 .sui-col-sm-offset-5{margin-left:41.66667%}.sui-2-1-0 .sui-col-sm-4{width:33.33333%;max-width:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.sui-2-1-0 .sui-col-sm-offset-4{margin-left:33.33333%}.sui-2-1-0 .sui-col-sm-3{width:25%;max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.sui-2-1-0 .sui-col-sm-offset-3{margin-left:25%}.sui-2-1-0 .sui-col-sm-2{width:16.66667%;max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%}.sui-2-1-0 .sui-col-sm-offset-2{margin-left:16.66667%}.sui-2-1-0 .sui-col-sm-1{width:8.33333%;max-width:8.33333%;-ms-flex-preferred-size:8.33333%;flex-basis:8.33333%}.sui-2-1-0 .sui-col-sm-offset-1{margin-left:8.33333%}}@media (min-width:783px){.sui-2-1-0 .sui-col-md-12{width:100%;max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.sui-2-1-0 .sui-col-md-offset-12{margin-left:100%}.sui-2-1-0 .sui-col-md-11{width:91.66667%;max-width:91.66667%;-ms-flex-preferred-size:91.66667%;flex-basis:91.66667%}.sui-2-1-0 .sui-col-md-offset-11{margin-left:91.66667%}.sui-2-1-0 .sui-col-md-10{width:83.33333%;max-width:83.33333%;-ms-flex-preferred-size:83.33333%;flex-basis:83.33333%}.sui-2-1-0 .sui-col-md-offset-10{margin-left:83.33333%}.sui-2-1-0 .sui-col-md-9{width:75%;max-width:75%;-ms-flex-preferred-size:75%;flex-basis:75%}.sui-2-1-0 .sui-col-md-offset-9{margin-left:75%}.sui-2-1-0 .sui-col-md-8{width:66.66667%;max-width:66.66667%;-ms-flex-preferred-size:66.66667%;flex-basis:66.66667%}.sui-2-1-0 .sui-col-md-offset-8{margin-left:66.66667%}.sui-2-1-0 .sui-col-md-7{width:58.33333%;max-width:58.33333%;-ms-flex-preferred-size:58.33333%;flex-basis:58.33333%}.sui-2-1-0 .sui-col-md-offset-7{margin-left:58.33333%}.sui-2-1-0 .sui-col-md-6{width:50%;max-width:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.sui-2-1-0 .sui-col-md-offset-6{margin-left:50%}.sui-2-1-0 .sui-col-md-5{width:41.66667%;max-width:41.66667%;-ms-flex-preferred-size:41.66667%;flex-basis:41.66667%}.sui-2-1-0 .sui-col-md-offset-5{margin-left:41.66667%}.sui-2-1-0 .sui-col-md-4{width:33.33333%;max-width:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.sui-2-1-0 .sui-col-md-offset-4{margin-left:33.33333%}.sui-2-1-0 .sui-col-md-3{width:25%;max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.sui-2-1-0 .sui-col-md-offset-3{margin-left:25%}.sui-2-1-0 .sui-col-md-2{width:16.66667%;max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%}.sui-2-1-0 .sui-col-md-offset-2{margin-left:16.66667%}.sui-2-1-0 .sui-col-md-1{width:8.33333%;max-width:8.33333%;-ms-flex-preferred-size:8.33333%;flex-basis:8.33333%}.sui-2-1-0 .sui-col-md-offset-1{margin-left:8.33333%}}@media (min-width:1200px){.sui-2-1-0 .sui-col-lg-12{width:100%;max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.sui-2-1-0 .sui-col-lg-offset-12{margin-left:100%}.sui-2-1-0 .sui-col-lg-11{width:91.66667%;max-width:91.66667%;-ms-flex-preferred-size:91.66667%;flex-basis:91.66667%}.sui-2-1-0 .sui-col-lg-offset-11{margin-left:91.66667%}.sui-2-1-0 .sui-col-lg-10{width:83.33333%;max-width:83.33333%;-ms-flex-preferred-size:83.33333%;flex-basis:83.33333%}.sui-2-1-0 .sui-col-lg-offset-10{margin-left:83.33333%}.sui-2-1-0 .sui-col-lg-9{width:75%;max-width:75%;-ms-flex-preferred-size:75%;flex-basis:75%}.sui-2-1-0 .sui-col-lg-offset-9{margin-left:75%}.sui-2-1-0 .sui-col-lg-8{width:66.66667%;max-width:66.66667%;-ms-flex-preferred-size:66.66667%;flex-basis:66.66667%}.sui-2-1-0 .sui-col-lg-offset-8{margin-left:66.66667%}.sui-2-1-0 .sui-col-lg-7{width:58.33333%;max-width:58.33333%;-ms-flex-preferred-size:58.33333%;flex-basis:58.33333%}.sui-2-1-0 .sui-col-lg-offset-7{margin-left:58.33333%}.sui-2-1-0 .sui-col-lg-6{width:50%;max-width:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.sui-2-1-0 .sui-col-lg-offset-6{margin-left:50%}.sui-2-1-0 .sui-col-lg-5{width:41.66667%;max-width:41.66667%;-ms-flex-preferred-size:41.66667%;flex-basis:41.66667%}.sui-2-1-0 .sui-col-lg-offset-5{margin-left:41.66667%}.sui-2-1-0 .sui-col-lg-4{width:33.33333%;max-width:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.sui-2-1-0 .sui-col-lg-offset-4{margin-left:33.33333%}.sui-2-1-0 .sui-col-lg-3{width:25%;max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.sui-2-1-0 .sui-col-lg-offset-3{margin-left:25%}.sui-2-1-0 .sui-col-lg-2{width:16.66667%;max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%}.sui-2-1-0 .sui-col-lg-offset-2{margin-left:16.66667%}.sui-2-1-0 .sui-col-lg-1{width:8.33333%;max-width:8.33333%;-ms-flex-preferred-size:8.33333%;flex-basis:8.33333%}.sui-2-1-0 .sui-col-lg-offset-1{margin-left:8.33333%}}.sui-2-1-0 .sui-notice,.sui-2-1-0 .sui-notice-top{color:#333;font-weight:400;padding:15px 30px;position:relative;width:100%;border-radius:5px;margin-bottom:30px;background-color:#f2f2f2}@media (max-width:782px){.sui-2-1-0 .sui-notice,.sui-2-1-0 .sui-notice-top{margin-bottom:20px;padding:15px}}.sui-2-1-0 .sui-notice-top:last-child,.sui-2-1-0 .sui-notice:last-child{margin-bottom:0}.sui-2-1-0 .sui-notice-top p,.sui-2-1-0 .sui-notice p{padding:0 0 0 30px;color:#333}.sui-2-1-0 .sui-notice-top p:before,.sui-2-1-0 .sui-notice p:before{content:"I"}.sui-2-1-0 .sui-notice-top p a,.sui-2-1-0 .sui-notice-top p a:focus,.sui-2-1-0 .sui-notice-top p a:hover,.sui-2-1-0 .sui-notice p a,.sui-2-1-0 .sui-notice p a:focus,.sui-2-1-0 .sui-notice p a:hover{color:#333}.sui-2-1-0 .sui-notice-top p:before,.sui-2-1-0 .sui-notice p:before{color:#888;vertical-align:middle;top:-2px;margin-left:-30px;position:relative;margin-right:10px;font-size:20px}.sui-2-1-0 .sui-notice-top p:last-of-type,.sui-2-1-0 .sui-notice p:last-of-type{margin:0}.sui-2-1-0 .sui-notice-top.sui-notice-success,.sui-2-1-0 .sui-notice.sui-notice-success{background-color:#d1f1ea}.sui-2-1-0 .sui-notice-top.sui-notice-success p:before,.sui-2-1-0 .sui-notice.sui-notice-success p:before{content:"_";color:#1abc9c}.sui-2-1-0 .sui-notice-top.sui-notice-warning,.sui-2-1-0 .sui-notice.sui-notice-warning{background-color:#fff5d5}.sui-2-1-0 .sui-notice-top.sui-notice-warning p:before,.sui-2-1-0 .sui-notice.sui-notice-warning p:before{content:"!";color:#fecf2f}.sui-2-1-0 .sui-notice-top.sui-notice-error,.sui-2-1-0 .sui-notice.sui-notice-error{background-color:#ffe5e9}.sui-2-1-0 .sui-notice-top.sui-notice-error p:before,.sui-2-1-0 .sui-notice.sui-notice-error p:before{content:"!";color:#ff7f83}.sui-2-1-0 .sui-notice-top.sui-notice-info,.sui-2-1-0 .sui-notice.sui-notice-info{background-color:#e1f6ff}.sui-2-1-0 .sui-notice-top.sui-notice-info p:before,.sui-2-1-0 .sui-notice.sui-notice-info p:before{color:#17a8e3}.sui-2-1-0 .sui-notice-top.sui-notice-sm p,.sui-2-1-0 .sui-notice.sui-notice-sm p{font-size:13px;line-height:22px}.sui-2-1-0 .sui-notice-top.sui-notice-sm p:before,.sui-2-1-0 .sui-notice.sui-notice-sm p:before{font-size:16px}.sui-2-1-0 .sui-notice-top.sui-notice-sm a,.sui-2-1-0 .sui-notice.sui-notice-sm a{font-size:13px}.sui-2-1-0 .sui-notice-top.sui-notice-sm .sui-notice-dismiss a,.sui-2-1-0 .sui-notice.sui-notice-sm .sui-notice-dismiss a{margin-left:-14px}.sui-2-1-0 .sui-notice-top .sui-notice-dismiss,.sui-2-1-0 .sui-notice .sui-notice-dismiss{padding:0 0 0 30px;display:block;margin-top:6px;margin-bottom:-5px}.sui-2-1-0 .sui-notice-top .sui-notice-dismiss a,.sui-2-1-0 .sui-notice .sui-notice-dismiss a{font-weight:500;font-size:12px;text-transform:uppercase;text-decoration:none;color:#888;line-height:16px;padding:5px 10px;margin-left:-10px}.sui-2-1-0 .sui-notice-top.sui-notice-icon-tick p:before,.sui-2-1-0 .sui-notice.sui-notice-icon-tick p:before{content:"_"}.sui-2-1-0 .sui-notice-top.sui-no-notice-icon p,.sui-2-1-0 .sui-notice.sui-no-notice-icon p{padding:0}.sui-2-1-0 .sui-notice-top.sui-no-notice-icon p:before,.sui-2-1-0 .sui-notice.sui-no-notice-icon p:before{content:"";margin:0;padding:0}.sui-2-1-0 .sui-notice-top.sui-notice-top,.sui-2-1-0 .sui-notice.sui-notice-top{position:absolute;top:0;width:600px;z-index:100;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);-webkit-box-shadow:rgba(0,0,0,.15) 0 5px 25px 0;box-shadow:0 5px 25px 0 rgba(0,0,0,.15)}.sui-2-1-0 .sui-notice-top.sui-notice-top:last-of-type,.sui-2-1-0 .sui-notice.sui-notice-top:last-of-type{margin:0}@media (max-width:782px){.sui-2-1-0 .sui-notice-top.sui-notice-top,.sui-2-1-0 .sui-notice.sui-notice-top{width:90%}}@media (max-width:600px){.sui-2-1-0 .sui-notice-top.sui-notice-top,.sui-2-1-0 .sui-notice.sui-notice-top{top:46px}}.sui-2-1-0 .sui-notice-top .sui-notice-buttons,.sui-2-1-0 .sui-notice .sui-notice-buttons{margin:10px 30px 0}.sui-2-1-0 p+.sui-notice{margin-top:30px}@media (max-width:782px){.sui-2-1-0 p+.sui-notice{margin-top:20px}}.sui-2-1-0 .sui-header{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;line-height:1;margin-bottom:30px}.sui-2-1-0 .sui-header h1{text-transform:uppercase}@media (max-width:782px){.sui-2-1-0 .sui-header h1{width:100%}}@media (max-width:782px){.sui-2-1-0 .sui-header{margin-bottom:20px}}@media (max-width:782px){.sui-2-1-0 .sui-header .sui-actions-right{margin-left:0;margin-right:auto;margin-top:10px}}@media (max-width:782px){.sui-2-1-0 .sui-header .sui-actions-left{margin-left:0;margin-right:0;margin-top:10px}}.sui-2-1-0 .sui-header-title{color:#333;margin:0;text-align:left;text-transform:uppercase;font-weight:700;max-width:none;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.sui-2-1-0 .sui-summary{padding:15px 30px 0;background-image:url(../image/graphic-hb-minify-summary@2x.png);background-repeat:no-repeat;background-position:3% 100%;background-size:192px 172px}@media (max-width:782px){.sui-2-1-0 .sui-summary{padding:20px 20px 10px}}@media (max-width:1100px){.sui-2-1-0 .sui-summary{background-image:none!important}}.sui-2-1-0 .sui-summary .sui-summary-image-space{width:100%;min-height:172px;float:left;max-width:192px}@media (max-width:1100px){.sui-2-1-0 .sui-summary .sui-summary-image-space{display:none!important}}.sui-2-1-0 .sui-summary .sui-summary-segment{position:relative;color:#333;width:calc(100% / 2 - 98px);padding-left:5%;display:inline-block;vertical-align:middle}.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details{position:absolute;top:-5px;-webkit-transform:translateY(-50%);transform:translateY(-50%);min-height:80px}@media (max-width:600px){.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details{position:inherit;top:0;-webkit-transform:translateY(0);transform:translateY(0)}}.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-sub{display:block;font-size:13px;margin-top:0;margin-bottom:20px;line-height:22px;color:#888}.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-sub:last-of-type{margin-bottom:0}@media (max-width:960px){.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-sub{margin-bottom:5px}}.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-percent{font-size:13px;line-height:22px;margin-left:-5px}.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i{position:relative;top:-22px;left:5px;font-size:16px}.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i+.sui-summary-percent{margin-left:-20px}.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i.sui-error:before,.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i.sui-info:before,.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i.sui-success:before,.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i.sui-warning:before{color:inherit}.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-large{font-size:50px;line-height:55px;margin-bottom:20px}@media (max-width:1100px){.sui-2-1-0 .sui-summary .sui-summary-segment{text-align:left;padding-left:0;width:49%}}@media (max-width:600px){.sui-2-1-0 .sui-summary .sui-summary-segment{display:block;text-align:center;width:100%}}.sui-2-1-0 .sui-summary .sui-summary-segment .sui-list{margin:0 0 15px}@media (max-width:783px){.sui-2-1-0 .sui-summary .sui-summary-segment .sui-list{margin:0 0 10px}}@media (max-width:600px){.sui-2-1-0 .sui-summary .sui-summary-segment .sui-list{text-align:left}}.sui-2-1-0 .sui-summary .sui-summary-segment .sui-list .sui-list-detail{font-size:13px;font-weight:500;line-height:22px;color:#888}.sui-2-1-0 .sui-summary .sui-summary-segment .sui-list .sui-list-detail i{line-height:0;vertical-align:middle}.sui-2-1-0 .sui-list{list-style:none;margin:0 0 20px;padding:0}.sui-2-1-0 .sui-list.sui-list-inline{margin-top:20px;margin-bottom:0}.sui-2-1-0 .sui-list.sui-list-standalone{margin-bottom:20px}.sui-2-1-0 .sui-list>li{position:relative;display:table;width:100%;padding:6px 0;margin:0;border-collapse:collapse;border-spacing:0}.sui-2-1-0 .sui-list>li>div{display:table-row}.sui-2-1-0 .sui-list>li.sui-list-header{color:#333;font-size:13px;font-weight:700;line-height:30px;padding-bottom:0}.sui-2-1-0 .sui-list>li.sui-list-header span{display:table-cell;border-bottom:1px solid #eee}.sui-2-1-0 .sui-list>li.sui-list-header span:nth-child(2){text-align:right}.sui-2-1-0 .sui-list>li .sui-list-detail{color:#888;text-align:right;padding:10px 0;font-size:13px;font-weight:500;line-height:22px}.sui-2-1-0 .sui-list>li .sui-list-detail .sui-tag{font-family:Roboto,Arial,sans-serif}.sui-2-1-0 .sui-list>li .sui-list-detail,.sui-2-1-0 .sui-list>li .sui-list-label{display:table-cell;vertical-align:middle;cursor:default;border-bottom:1px solid #eee}.sui-2-1-0 .sui-list>li .sui-list-label{font-size:13px;font-weight:500;line-height:22px;padding:19px 10px 19px 0;color:#333}.sui-2-1-0 .sui-list>li .sui-list-label.sui-list-header{font-family:Roboto Condensed,Roboto,Arial,sans-serif;width:200px;color:#777771}.sui-2-1-0 .sui-list>li:last-of-type .sui-list-detail,.sui-2-1-0 .sui-list>li:last-of-type .sui-list-label{border-bottom:none}.sui-2-1-0 .sui-list.sui-list-top-border{border-top:1px solid #eee}.sui-2-1-0 .sui-list.sui-list-bottom-border{border-bottom:1px solid #eee}.sui-2-1-0 .sui-tooltip{position:relative}.sui-2-1-0 .sui-tooltip:after,.sui-2-1-0 .sui-tooltip:before{content:"";opacity:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;pointer-events:none;position:absolute;z-index:1;-webkit-transition:margin .2s,opacity .2s;transition:margin .2s,opacity .2s}.sui-2-1-0 .sui-tooltip:before{border:5px solid transparent}.sui-2-1-0 .sui-tooltip:after{content:attr(data-tooltip);min-width:40px;padding:8px 12px;border-radius:4px;background:#000;-webkit-box-sizing:border-box;box-sizing:border-box;color:#fff;font:400 12px/18px Roboto,Arial,sans-serif;text-transform:none;text-align:center;white-space:nowrap}.sui-2-1-0 .sui-tooltip:hover:after,.sui-2-1-0 .sui-tooltip:hover:before{opacity:1}.sui-2-1-0 .sui-tooltip.sui-tooltip-constrained:after{min-width:240px;white-space:normal}.sui-2-1-0 .sui-tooltip.sui-tooltip-top:before,.sui-2-1-0 .sui-tooltip:before{bottom:100%;left:50%;border-top-color:#000;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.sui-2-1-0 .sui-tooltip.sui-tooltip-top:after,.sui-2-1-0 .sui-tooltip:after{bottom:100%;left:50%;margin:0 0 10px;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.sui-2-1-0 .sui-tooltip.sui-tooltip-top-right:after{left:0;-webkit-transform:translateX(0);transform:translateX(0)}.sui-2-1-0 .sui-tooltip.sui-tooltip-top-left:after{left:auto;-webkit-transform:translateX(0);transform:translateX(0);right:0}.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-left:before,.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-right:before,.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom:before{top:100%;bottom:inherit;border-top-color:transparent;border-bottom-color:#000}.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-left:after,.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-right:after,.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom:after{top:100%;bottom:inherit;margin:10px 0 0;-webkit-transform:translateX(0);transform:translateX(0)}.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom:after{-webkit-transform:translateX(-50%);transform:translateX(-50%)}.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-right:after{left:0}.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-left:after{left:auto;right:0}.sui-2-1-0 .sui-tooltip.sui-tooltip-left:before{border-top-color:transparent;border-left-color:#000}.sui-2-1-0 .sui-tooltip.sui-tooltip-left:after,.sui-2-1-0 .sui-tooltip.sui-tooltip-left:before{top:50%;right:100%;bottom:inherit;left:inherit;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.sui-2-1-0 .sui-tooltip.sui-tooltip-left:after{margin:0 10px 0 0}.sui-2-1-0 .sui-tooltip.sui-tooltip-right:before{top:50%;bottom:inherit;left:100%;border-top-color:transparent;border-right-color:#000;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.sui-2-1-0 .sui-tooltip.sui-tooltip-right:after{top:50%;bottom:inherit;left:100%;margin:0 0 0 10px;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.sui-2-1-0 .select-container{position:relative;z-index:1;display:block;cursor:pointer;border-radius:4px;-webkit-transition-property:background,border-color;transition-property:background,border-color;-webkit-transition-duration:.3s;transition-duration:.3s;text-align:left;border:1px solid #ddd;background-color:#f8f8f8}.sui-2-1-0 .select-container .dropdown-handle{-webkit-transition:border-color .3s;transition:border-color .3s;display:inline-block;position:absolute;width:45px;height:auto;top:0;right:0;z-index:1011;border-radius:0 4px 4px 0;border-bottom:0;border-left-color:transparent;padding:0;text-align:center;line-height:40px;-webkit-transition-property:color,border-color;transition-property:color,border-color;-webkit-transition-duration:.3s;transition-duration:.3s;color:#888}.sui-2-1-0 .select-container .dropdown-handle i:before{vertical-align:middle;font-size:12px}.sui-2-1-0 .select-container.sui-mobile-nav{background-color:#fff;margin-bottom:30px}@media (max-width:782px){.sui-2-1-0 .select-container.sui-mobile-nav{margin-bottom:20px}}.sui-2-1-0 .select-container.sui-mobile-nav .dropdown-handle{background-color:#fff;font-size:13px}.sui-2-1-0 .select-container:hover{border-color:#ddd}.sui-2-1-0 .select-container:hover .list-value{color:#333}.sui-2-1-0 .select-container:hover .list-results{border-left-color:#ddd;border-right-color:#ddd;border-bottom-color:#ddd}.sui-2-1-0 .select-container:hover .dropdown-handle{border-top-color:#ddd;border-right-color:#ddd}.sui-2-1-0 .select-container.active{z-index:99999;background:#f8f8f8}.sui-2-1-0 .select-container.active .list-value{background:#f8f8f8;border-radius:3px 0 0 0;color:#333}.sui-2-1-0 .select-container.active .dropdown-handle{border-color:#ddd;border-bottom-right-radius:3px}.sui-2-1-0 .select-container.active .list-results{left:0;right:0;width:auto;display:block;-webkit-transition-duration:0ms;transition-duration:0ms}.sui-2-1-0 .select-container.active.sui-mobile-nav .dropdown-handle{background-color:transparent;font-size:13px}.sui-2-1-0 .select-container.active:hover{border-color:#ddd}.sui-2-1-0 .select-container.active:hover .list-value{color:#333}.sui-2-1-0 .select-container.active:hover .list-results{border-color:#ddd}.sui-2-1-0 .select-container.active:hover .list-results li{opacity:1}.sui-2-1-0 .select-container.active:hover .dropdown-handle{border-color:#ddd;color:#ddd}.sui-2-1-0 .select-list-container{position:relative;display:block;vertical-align:middle;padding-right:45px;zoom:1}.sui-2-1-0 .select-list-container .list-value{position:relative;display:block;overflow:hidden;text-overflow:ellipsis;background-clip:padding-box;text-decoration:none;white-space:nowrap;line-height:24px;height:auto;width:100%;padding:8px 8px 8px 15px;border:0;color:#aaa;-webkit-transition-property:color;transition-property:color}.sui-2-1-0 .select-list-container .list-results,.sui-2-1-0 .select-list-container .list-value{font:500 15px/25px Roboto,Arial,sans-serif;-webkit-transition-duration:.3s;transition-duration:.3s}.sui-2-1-0 .select-list-container .list-results{position:absolute;top:41px;left:-9999px;right:-9999px;z-index:1010;width:0;background:#fff;border:1px solid #eaeaea;margin-left:-1px;margin-right:-1px;margin-top:1px;display:none;border-radius:4px;-webkit-transition-property:opacity,border-color;transition-property:opacity,border-color;padding-left:0;max-height:200px;overflow-y:auto}.sui-2-1-0 .select-list-container .list-results li{padding:10px 15px;background:none;color:#777771;cursor:pointer;list-style:none;font-weight:400;line-height:15px;word-wrap:break-word;margin:0;opacity:.8;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:.3s;transition-duration:.3s;border-radius:0!important}.sui-2-1-0 .select-list-container .list-results .optgroup{cursor:default}.sui-2-1-0 .select-list-container .list-results .optgroup li{padding-left:30px;cursor:pointer}.sui-2-1-0 .select-list-container .list-results .optgroup li.optgroup-label{padding-left:10px;color:#aaa;cursor:default;pointer-events:none}.sui-2-1-0 .select-list-container .list-results li:last-child{border-radius:0 0 3px 3px}.sui-2-1-0 .select-list-container .list-results li:hover{background:#f2f2f2;color:#333}.sui-2-1-0 .select-list-container .list-results .optgroup li.optgroup-label:hover{background:none}.sui-2-1-0 .select-list-container .list-results .current{background:#888;color:#fff}.sui-2-1-0 .list-table>tbody>.select-open td,.sui-2-1-0 .list-table>tfoot>.select-open th,.sui-2-1-0 .list-table>thead>.select-open th{z-index:9}.sui-2-1-0 .sui-tag{display:inline-block;background-color:#fecf2f;color:#333;border-radius:15px;min-width:39px;height:26px;font-size:12px;line-height:26px;text-align:center;font-weight:500;padding:0 16px;cursor:default}.sui-2-1-0 .sui-tag.sui-tag-success{background-color:#1abc9c;color:#fff}.sui-2-1-0 .sui-tag.sui-tag-error{background-color:#ff7f83;color:#fff}.sui-2-1-0 .sui-tag.sui-tag-inactive{background-color:#e6e6e6;color:#aaa}.sui-2-1-0 .sui-tag.sui-tag-disabled{background-color:#f8f8f8;color:#aaa}.sui-2-1-0 .sui-tag.sui-tag-upgrade{background-color:#1abc9c;color:#fff}.sui-2-1-0 .sui-tag.sui-tag-upsell{border:2px solid #d1f1ea;color:#1abc9c;width:auto;height:26px;line-height:15px;background:transparent;padding:4px 16px}.sui-2-1-0 .sui-inline-label,.sui-2-1-0 .sui-label{font-family:Roboto,Arial,sans-serif;font-size:12px;font-weight:500;line-height:16px;color:#888;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:100%}.sui-2-1-0 label[for]{cursor:pointer}.sui-2-1-0 .sui-label-link{margin-left:auto;margin-right:0;font-weight:400;color:#888}.sui-2-1-0 .sui-inline-label{display:inline-block;margin:0;padding:0}.sui-2-1-0 .sui-form-control,.sui-2-1-0 .sui-upload-group{font-family:Roboto,Arial,sans-serif;letter-spacing:-.025em;display:block;width:100%;height:40px;padding:7px 15px;font-size:15px;font-weight:500;line-height:30px;color:#333;background-color:#f8f8f8;background-image:none;border:1px solid #ddd;border-radius:3px;-webkit-transition:color .3s ease-in-out,border-color .3s ease-in-out,background-color .3s ease-in-out;transition:color .3s ease-in-out,border-color .3s ease-in-out,background-color .3s ease-in-out}.sui-2-1-0 .sui-form-control::-ms-expand,.sui-2-1-0 .sui-upload-group::-ms-expand{border:0;background-color:transparent}.sui-2-1-0 .sui-form-control[disabled],.sui-2-1-0 .sui-upload-group[disabled],fieldset[disabled] .sui-2-1-0 .sui-form-control,fieldset[disabled] .sui-2-1-0 .sui-upload-group{cursor:not-allowed}.sui-2-1-0 .sui-form-control:focus,.sui-2-1-0 .sui-form-control:hover,.sui-2-1-0 .sui-upload-group:focus,.sui-2-1-0 .sui-upload-group:hover{background-color:#fff;border:1px solid #ddd}.sui-2-1-0 .sui-form-control:focus,.sui-2-1-0 .sui-upload-group:focus{color:#333;outline:0;background-color:#fff}.sui-2-1-0 .sui-form-control::-webkit-input-placeholder,.sui-2-1-0 .sui-upload-group::-webkit-input-placeholder{color:#ddd}.sui-2-1-0 .sui-form-control:-ms-input-placeholder,.sui-2-1-0 .sui-form-control::-ms-input-placeholder,.sui-2-1-0 .sui-upload-group:-ms-input-placeholder,.sui-2-1-0 .sui-upload-group::-ms-input-placeholder{color:#ddd}.sui-2-1-0 .sui-form-control::placeholder,.sui-2-1-0 .sui-upload-group::placeholder{color:#ddd}.sui-2-1-0 textarea.sui-form-control,.sui-2-1-0 textarea.sui-upload-group{line-height:20px;height:auto;max-width:100%;resize:vertical}.sui-2-1-0 select.sui-form-control,.sui-2-1-0 select.sui-upload-group{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAs0lEQVQ4T6WS2w0CIRBF59KA2oklaAdbgpbgB48SIBThduKWYClrA2CGgEEXNWH5moR7Zu48QJ0PnRytA6WUe67svb//clDrUkWt9UxEMYRw/AYzJIS4sd45t0ugMeZERNcY49yCCwRgS0Rna+346rGGAVz4s06aW0gQx2/DUUoNAEYAG86cxezkAWCw1k5lBoupZltThomhEMLhs/fmOgrM2VvQwmq9in8rWncAPWfXXfEJ6RpWD7sJ1JwAAAAASUVORK5CYII=);background-repeat:no-repeat;background-position:center right 10px;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;line-height:1}.sui-2-1-0 .sui-input-group{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;width:100%}.sui-2-1-0 .sui-form-field{margin-bottom:30px}@media (max-width:782px){.sui-2-1-0 .sui-form-field{margin-bottom:20px}}.sui-2-1-0 .sui-form-field-error .sui-form-control,.sui-2-1-0 .sui-form-field-error .sui-upload-group{border-bottom:2px solid #ff7f83}.sui-2-1-0 .sui-error-message{display:block;margin-top:8px;color:#ff7f83;font-size:12px;line-height:16px;font-weight:500}.sui-2-1-0 .sui-description{display:block;margin-top:5px;color:#888;font-size:13px;line-height:16px;font-weight:400}.sui-2-1-0 .sui-description.sui-toggle-description{margin-left:48px}.sui-2-1-0 .sui-description.sui-checkbox-description,.sui-2-1-0 .sui-description.sui-radio-description{margin:0 27px 5px}.sui-2-1-0 .sui-password-group{position:relative}.sui-2-1-0 .sui-password-group .sui-password-toggle{cursor:pointer;background:transparent;border:none;color:#888;font-size:15px;line-height:1em;padding:0;position:absolute;top:50%;right:7px;height:30px;width:30px;-webkit-transform:translateY(-50%);transform:translateY(-50%);outline:0;border-radius:4px}.sui-2-1-0 .sui-password-group .sui-password-toggle:hover{background-color:rgba(0,0,0,.03)}.sui-2-1-0 .sui-password-group .sui-password-toggle:hover i:before{color:#666}.sui-2-1-0 .sui-checkbox,.sui-2-1-0 .sui-radio{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:start}.sui-2-1-0 .sui-checkbox span,.sui-2-1-0 .sui-radio span{-ms-flex-negative:0;flex-shrink:0;position:relative;display:inline-block;width:16px;height:16px;background-color:#e6e6e6;cursor:pointer;-webkit-transition:.2s;transition:.2s;border-radius:3px;margin-top:3px}.sui-2-1-0 .sui-checkbox span:before,.sui-2-1-0 .sui-radio span:before{opacity:0;content:"(";color:#fff;font-size:10px;line-height:16px;position:absolute;width:100%;text-align:center;-webkit-transition:.2s;transition:.2s}.sui-2-1-0 .sui-checkbox input:checked+span,.sui-2-1-0 .sui-radio input:checked+span{background-color:#17a8e3}.sui-2-1-0 .sui-checkbox input:checked+span:before,.sui-2-1-0 .sui-radio input:checked+span:before{opacity:1}.sui-2-1-0 .sui-checkbox .sui-description,.sui-2-1-0 .sui-radio .sui-description{cursor:pointer;margin-top:0;margin-left:10px;font-size:15px;line-height:22px;color:#666;font-weight:500}.sui-2-1-0 .sui-checkbox .sui-description.sui-description-sm,.sui-2-1-0 .sui-radio .sui-description.sui-description-sm{font-size:13px}.sui-2-1-0 .sui-checkbox input[disabled]+span,.sui-2-1-0 .sui-radio input[disabled]+span,fieldset[disabled] .sui-2-1-0 .sui-checkbox+span,fieldset[disabled] .sui-2-1-0 .sui-radio+span{cursor:not-allowed;opacity:.5}.sui-2-1-0 .sui-checkbox input[disabled]+span+div.sui-description,.sui-2-1-0 .sui-radio input[disabled]+span+div.sui-description{color:#aaa;cursor:not-allowed}.sui-2-1-0 .sui-checkbox span{border-radius:3px}.sui-2-1-0 .sui-checkbox+.sui-checkbox{margin-top:10px}.sui-2-1-0 .sui-radio span{border-radius:50%}.sui-2-1-0 .sui-radio+.sui-radio{margin-top:10px}.sui-2-1-0 .sui-upload-group{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sui-2-1-0 .sui-upload-button{background-color:transparent;border-radius:4px;display:inline-block;margin:0 5px 0 0;font-size:13px;font-weight:400;line-height:1.5;pointer-events:none;padding:1px 16px;border:1px solid #ddd;background:0 0;color:#888;-webkit-transition:all .2s;transition:all .2s}.sui-2-1-0 .sui-upload-label{width:100%}.sui-2-1-0 .sui-upload-label:focus .sui-upload-button,.sui-2-1-0 .sui-upload-label:hover .sui-upload-button{background-color:#888;border-color:#888;color:#fff}.sui-2-1-0 .sui-upload-message{font-weight:400}.sui-2-1-0 .sui-tabs{float:none;position:relative;padding:0;margin:0;background-color:#fff;border-top-left-radius:5px;border-top-right-radius:5px}.sui-2-1-0 .sui-tabs:after,.sui-2-1-0 .sui-tabs:before{content:"";display:table;clear:both}.sui-2-1-0 .sui-tabs .sui-tab{float:left}.sui-2-1-0 .sui-tabs .sui-tab:first-child label{border-top-left-radius:5px}.sui-2-1-0 .sui-tabs .sui-tab label{display:block;margin:0;top:0;cursor:pointer;position:relative;border:0;font-size:15px;text-transform:capitalize;color:#888;padding:0 10px;line-height:1.5em;height:40px}.sui-2-1-0 .sui-tabs .sui-tab input[type=radio]{display:none}.sui-2-1-0 .sui-tabs .sui-tab input[type=radio]:checked+label{background-color:#fff;color:#777771;height:61px;z-index:3}.sui-2-1-0 .sui-tabs .sui-tab .sui-tab-content{z-index:2;display:none;text-align:left;left:0;right:0;width:auto;padding:30px 0 0;position:absolute;min-height:150px;border-top:1px solid #eaeaea;background-color:#fff;overflow:auto;border-top:2px solid #eaeaea;top:38px}@media (max-width:782px){.sui-2-1-0 .sui-tabs .sui-tab .sui-tab-content{padding:20px 0 0}}.sui-2-1-0 .sui-tabs .sui-tab input[type=radio]:checked~.sui-tab-content{display:block}.sui-2-1-0 .sui-tabs .sui-tab>.active{color:#333;border-bottom:2px solid #333;z-index:10}.sui-2-1-0 .sui-row-with-sidenav{clear:both;position:relative;display:table;width:100%;table-layout:fixed;margin-bottom:30px}@media (max-width:1100px){.sui-2-1-0 .sui-row-with-sidenav{display:block}}.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav{width:220px;padding-right:30px;display:table-cell;position:relative;vertical-align:top}@media (max-width:1100px){.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav{display:block;width:100%;padding:0}}.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav ul{padding:0}.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav li{list-style:none;margin-bottom:6px}.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab{padding:5px 15px;height:30px;line-height:1.5em}.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab.current{background-color:#e6e6e6;border-radius:20px}.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab.current a{color:#333;font-weight:500}.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab .sui-tag,.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab i{position:relative;top:-25px;left:100%;margin-left:-27px}.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab i{top:-23px;margin-left:-10px}.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab i:before{font-size:21px}.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs a{color:#666;display:block;font-weight:400;-webkit-transition:.3s;transition:.3s}.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs a:focus,.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs a:hover{color:#333}@media (max-width:1100px){.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-sidenav-hide-md{display:none}}@media (min-width:1100px){.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-sidenav-hide-lg{display:none}}.sui-2-1-0 .sui-row-with-sidenav .sui-box{display:block;position:relative;vertical-align:top}@media (max-width:1100px){.sui-2-1-0 .sui-row-with-sidenav .sui-box{display:block}}.sui-2-1-0 .sui-dropdown{position:relative;display:inline-block;text-align:left}.sui-2-1-0 .sui-dropdown-anchor{display:inline-block;color:#888}.sui-2-1-0 .sui-dropdown-anchor:active,.sui-2-1-0 .sui-dropdown-anchor:focus,.sui-2-1-0 .sui-dropdown-anchor:hover,.sui-2-1-0 .sui-dropdown-anchor:hover:not(:focus):not(:active),.sui-2-1-0 .sui-dropdown.open .sui-dropdown-anchor{color:#17a8e3}.sui-2-1-0 .sui-dropdown.open ul{display:block;list-style:none}.sui-2-1-0 .sui-dropdown.open:after,.sui-2-1-0 .sui-dropdown.open:before{content:"";position:absolute;border-style:solid;border-width:0 9px 9px;display:block;width:0;border-top-color:#000;margin:7px 0 0}.sui-2-1-0 .sui-dropdown.open:after{border-color:#fff transparent;z-index:11;top:24px}.sui-2-1-0 .sui-dropdown.open:before{border-color:#e6e6e6 transparent;z-index:10;top:23px}.sui-2-1-0 .sui-dropdown ul{border:1px solid #ddd;-webkit-box-shadow:0 3px 7px 0 rgba(0,0,0,.05);box-shadow:0 3px 7px 0 rgba(0,0,0,.05);min-width:180px;margin-bottom:0;margin-top:0;padding:10px 0;font:500 15px/25px Roboto,Arial,sans-serif;background:#fff;position:absolute;left:auto;right:-22px;top:130%;z-index:10;border-radius:4px;display:none}.sui-2-1-0 .sui-dropdown ul li{padding:10px 15px;background:none;color:#777771;cursor:pointer;list-style:none;font-weight:400;line-height:15px;word-wrap:break-word;margin:0;opacity:.8;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:.3s;transition-duration:.3s;border-radius:0!important}.sui-2-1-0 .sui-dropdown ul li a{font-weight:300;color:inherit}.sui-2-1-0 .sui-dropdown ul li a:hover{color:inherit}.sui-2-1-0 .sui-dropdown ul li:hover:not(.sui-dropdown-label){background:#f2f2f2;color:#333}.sui-2-1-0 .sui-dropdown ul li.active{background:#f8f8f8;color:#333}.sui-2-1-0 .sui-dropdown ul li.current{background:#888;color:#fff}.sui-2-1-0 .sui-dropdown ul li.sui-dropdown-label{border-bottom:1px solid #e6e6e6;line-height:30px;cursor:default;color:#666}.sui-2-1-0 .sui-dropdown.sui-dropdown-right ul{left:-22px;-webkit-transform:none;transform:none}.sui-2-1-0 .sui-dropdown.sui-dropdown-center ul{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.sui-2-1-0 .sui-dropdown.wds-item-loading{font-size:18px}.sui-2-1-0 .sui-dropdown.wds-item-loading .sui-dropdown-anchor{visibility:hidden}@-webkit-keyframes sui1{to{stroke-dasharray:2.63894 262.89378}}@keyframes sui1{to{stroke-dasharray:2.63894 262.89378}}@-webkit-keyframes sui2{to{stroke-dasharray:5.27788 525.78757}}@keyframes sui2{to{stroke-dasharray:5.27788 525.78757}}@-webkit-keyframes sui3{to{stroke-dasharray:7.91681 788.68135}}@keyframes sui3{to{stroke-dasharray:7.91681 788.68135}}@-webkit-keyframes sui4{to{stroke-dasharray:10.55575 1051.57513}}@keyframes sui4{to{stroke-dasharray:10.55575 1051.57513}}@-webkit-keyframes sui5{to{stroke-dasharray:13.19469 1314.46891}}@keyframes sui5{to{stroke-dasharray:13.19469 1314.46891}}@-webkit-keyframes sui6{to{stroke-dasharray:15.83363 1577.3627}}@keyframes sui6{to{stroke-dasharray:15.83363 1577.3627}}@-webkit-keyframes sui7{to{stroke-dasharray:18.47256 1840.25648}}@keyframes sui7{to{stroke-dasharray:18.47256 1840.25648}}@-webkit-keyframes sui8{to{stroke-dasharray:21.1115 2103.15026}}@keyframes sui8{to{stroke-dasharray:21.1115 2103.15026}}@-webkit-keyframes sui9{to{stroke-dasharray:23.75044 2366.04405}}@keyframes sui9{to{stroke-dasharray:23.75044 2366.04405}}@-webkit-keyframes sui10{to{stroke-dasharray:26.38938 2628.93783}}@keyframes sui10{to{stroke-dasharray:26.38938 2628.93783}}@-webkit-keyframes sui11{to{stroke-dasharray:29.02832 2891.83161}}@keyframes sui11{to{stroke-dasharray:29.02832 2891.83161}}@-webkit-keyframes sui12{to{stroke-dasharray:31.66725 3154.72539}}@keyframes sui12{to{stroke-dasharray:31.66725 3154.72539}}@-webkit-keyframes sui13{to{stroke-dasharray:34.30619 3417.61918}}@keyframes sui13{to{stroke-dasharray:34.30619 3417.61918}}@-webkit-keyframes sui14{to{stroke-dasharray:36.94513 3680.51296}}@keyframes sui14{to{stroke-dasharray:36.94513 3680.51296}}@-webkit-keyframes sui15{to{stroke-dasharray:39.58407 3943.40674}}@keyframes sui15{to{stroke-dasharray:39.58407 3943.40674}}@-webkit-keyframes sui16{to{stroke-dasharray:42.22301 4206.30053}}@keyframes sui16{to{stroke-dasharray:42.22301 4206.30053}}@-webkit-keyframes sui17{to{stroke-dasharray:44.86194 4469.19431}}@keyframes sui17{to{stroke-dasharray:44.86194 4469.19431}}@-webkit-keyframes sui18{to{stroke-dasharray:47.50088 4732.08809}}@keyframes sui18{to{stroke-dasharray:47.50088 4732.08809}}@-webkit-keyframes sui19{to{stroke-dasharray:50.13982 4994.98188}}@keyframes sui19{to{stroke-dasharray:50.13982 4994.98188}}@-webkit-keyframes sui20{to{stroke-dasharray:52.77876 5257.87566}}@keyframes sui20{to{stroke-dasharray:52.77876 5257.87566}}@-webkit-keyframes sui21{to{stroke-dasharray:55.41769 5520.76944}}@keyframes sui21{to{stroke-dasharray:55.41769 5520.76944}}@-webkit-keyframes sui22{to{stroke-dasharray:58.05663 5783.66322}}@keyframes sui22{to{stroke-dasharray:58.05663 5783.66322}}@-webkit-keyframes sui23{to{stroke-dasharray:60.69557 6046.55701}}@keyframes sui23{to{stroke-dasharray:60.69557 6046.55701}}@-webkit-keyframes sui24{to{stroke-dasharray:63.33451 6309.45079}}@keyframes sui24{to{stroke-dasharray:63.33451 6309.45079}}@-webkit-keyframes sui25{to{stroke-dasharray:65.97345 6572.34457}}@keyframes sui25{to{stroke-dasharray:65.97345 6572.34457}}@-webkit-keyframes sui26{to{stroke-dasharray:68.61238 6835.23836}}@keyframes sui26{to{stroke-dasharray:68.61238 6835.23836}}@-webkit-keyframes sui27{to{stroke-dasharray:71.25132 7098.13214}}@keyframes sui27{to{stroke-dasharray:71.25132 7098.13214}}@-webkit-keyframes sui28{to{stroke-dasharray:73.89026 7361.02592}}@keyframes sui28{to{stroke-dasharray:73.89026 7361.02592}}@-webkit-keyframes sui29{to{stroke-dasharray:76.5292 7623.9197}}@keyframes sui29{to{stroke-dasharray:76.5292 7623.9197}}@-webkit-keyframes sui30{to{stroke-dasharray:79.16813 7886.81349}}@keyframes sui30{to{stroke-dasharray:79.16813 7886.81349}}@-webkit-keyframes sui31{to{stroke-dasharray:81.80707 8149.70727}}@keyframes sui31{to{stroke-dasharray:81.80707 8149.70727}}@-webkit-keyframes sui32{to{stroke-dasharray:84.44601 8412.60105}}@keyframes sui32{to{stroke-dasharray:84.44601 8412.60105}}@-webkit-keyframes sui33{to{stroke-dasharray:87.08495 8675.49484}}@keyframes sui33{to{stroke-dasharray:87.08495 8675.49484}}@-webkit-keyframes sui34{to{stroke-dasharray:89.72389 8938.38862}}@keyframes sui34{to{stroke-dasharray:89.72389 8938.38862}}@-webkit-keyframes sui35{to{stroke-dasharray:92.36282 9201.2824}}@keyframes sui35{to{stroke-dasharray:92.36282 9201.2824}}@-webkit-keyframes sui36{to{stroke-dasharray:95.00176 9464.17618}}@keyframes sui36{to{stroke-dasharray:95.00176 9464.17618}}@-webkit-keyframes sui37{to{stroke-dasharray:97.6407 9727.06997}}@keyframes sui37{to{stroke-dasharray:97.6407 9727.06997}}@-webkit-keyframes sui38{to{stroke-dasharray:100.27964 9989.96375}}@keyframes sui38{to{stroke-dasharray:100.27964 9989.96375}}@-webkit-keyframes sui39{to{stroke-dasharray:102.91858 10252.85753}}@keyframes sui39{to{stroke-dasharray:102.91858 10252.85753}}@-webkit-keyframes sui40{to{stroke-dasharray:105.55751 10515.75132}}@keyframes sui40{to{stroke-dasharray:105.55751 10515.75132}}@-webkit-keyframes sui41{to{stroke-dasharray:108.19645 10778.6451}}@keyframes sui41{to{stroke-dasharray:108.19645 10778.6451}}@-webkit-keyframes sui42{to{stroke-dasharray:110.83539 11041.53888}}@keyframes sui42{to{stroke-dasharray:110.83539 11041.53888}}@-webkit-keyframes sui43{to{stroke-dasharray:113.47433 11304.43266}}@keyframes sui43{to{stroke-dasharray:113.47433 11304.43266}}@-webkit-keyframes sui44{to{stroke-dasharray:116.11326 11567.32645}}@keyframes sui44{to{stroke-dasharray:116.11326 11567.32645}}@-webkit-keyframes sui45{to{stroke-dasharray:118.7522 11830.22023}}@keyframes sui45{to{stroke-dasharray:118.7522 11830.22023}}@-webkit-keyframes sui46{to{stroke-dasharray:121.39114 12093.11401}}@keyframes sui46{to{stroke-dasharray:121.39114 12093.11401}}@-webkit-keyframes sui47{to{stroke-dasharray:124.03008 12356.0078}}@keyframes sui47{to{stroke-dasharray:124.03008 12356.0078}}@-webkit-keyframes sui48{to{stroke-dasharray:126.66902 12618.90158}}@keyframes sui48{to{stroke-dasharray:126.66902 12618.90158}}@-webkit-keyframes sui49{to{stroke-dasharray:129.30795 12881.79536}}@keyframes sui49{to{stroke-dasharray:129.30795 12881.79536}}@-webkit-keyframes sui50{to{stroke-dasharray:131.94689 13144.68915}}@keyframes sui50{to{stroke-dasharray:131.94689 13144.68915}}@-webkit-keyframes sui51{to{stroke-dasharray:134.58583 13407.58293}}@keyframes sui51{to{stroke-dasharray:134.58583 13407.58293}}@-webkit-keyframes sui52{to{stroke-dasharray:137.22477 13670.47671}}@keyframes sui52{to{stroke-dasharray:137.22477 13670.47671}}@-webkit-keyframes sui53{to{stroke-dasharray:139.8637 13933.37049}}@keyframes sui53{to{stroke-dasharray:139.8637 13933.37049}}@-webkit-keyframes sui54{to{stroke-dasharray:142.50264 14196.26428}}@keyframes sui54{to{stroke-dasharray:142.50264 14196.26428}}@-webkit-keyframes sui55{to{stroke-dasharray:145.14158 14459.15806}}@keyframes sui55{to{stroke-dasharray:145.14158 14459.15806}}@-webkit-keyframes sui56{to{stroke-dasharray:147.78052 14722.05184}}@keyframes sui56{to{stroke-dasharray:147.78052 14722.05184}}@-webkit-keyframes sui57{to{stroke-dasharray:150.41946 14984.94563}}@keyframes sui57{to{stroke-dasharray:150.41946 14984.94563}}@-webkit-keyframes sui58{to{stroke-dasharray:153.05839 15247.83941}}@keyframes sui58{to{stroke-dasharray:153.05839 15247.83941}}@-webkit-keyframes sui59{to{stroke-dasharray:155.69733 15510.73319}}@keyframes sui59{to{stroke-dasharray:155.69733 15510.73319}}@-webkit-keyframes sui60{to{stroke-dasharray:158.33627 15773.62697}}@keyframes sui60{to{stroke-dasharray:158.33627 15773.62697}}@-webkit-keyframes sui61{to{stroke-dasharray:160.97521 16036.52076}}@keyframes sui61{to{stroke-dasharray:160.97521 16036.52076}}@-webkit-keyframes sui62{to{stroke-dasharray:163.61415 16299.41454}}@keyframes sui62{to{stroke-dasharray:163.61415 16299.41454}}@-webkit-keyframes sui63{to{stroke-dasharray:166.25308 16562.30832}}@keyframes sui63{to{stroke-dasharray:166.25308 16562.30832}}@-webkit-keyframes sui64{to{stroke-dasharray:168.89202 16825.20211}}@keyframes sui64{to{stroke-dasharray:168.89202 16825.20211}}@-webkit-keyframes sui65{to{stroke-dasharray:171.53096 17088.09589}}@keyframes sui65{to{stroke-dasharray:171.53096 17088.09589}}@-webkit-keyframes sui66{to{stroke-dasharray:174.1699 17350.98967}}@keyframes sui66{to{stroke-dasharray:174.1699 17350.98967}}@-webkit-keyframes sui67{to{stroke-dasharray:176.80883 17613.88345}}@keyframes sui67{to{stroke-dasharray:176.80883 17613.88345}}@-webkit-keyframes sui68{to{stroke-dasharray:179.44777 17876.77724}}@keyframes sui68{to{stroke-dasharray:179.44777 17876.77724}}@-webkit-keyframes sui69{to{stroke-dasharray:182.08671 18139.67102}}@keyframes sui69{to{stroke-dasharray:182.08671 18139.67102}}@-webkit-keyframes sui70{to{stroke-dasharray:184.72565 18402.5648}}@keyframes sui70{to{stroke-dasharray:184.72565 18402.5648}}@-webkit-keyframes sui71{to{stroke-dasharray:187.36459 18665.45859}}@keyframes sui71{to{stroke-dasharray:187.36459 18665.45859}}@-webkit-keyframes sui72{to{stroke-dasharray:190.00352 18928.35237}}@keyframes sui72{to{stroke-dasharray:190.00352 18928.35237}}@-webkit-keyframes sui73{to{stroke-dasharray:192.64246 19191.24615}}@keyframes sui73{to{stroke-dasharray:192.64246 19191.24615}}@-webkit-keyframes sui74{to{stroke-dasharray:195.2814 19454.13993}}@keyframes sui74{to{stroke-dasharray:195.2814 19454.13993}}@-webkit-keyframes sui75{to{stroke-dasharray:197.92034 19717.03372}}@keyframes sui75{to{stroke-dasharray:197.92034 19717.03372}}@-webkit-keyframes sui76{to{stroke-dasharray:200.55928 19979.9275}}@keyframes sui76{to{stroke-dasharray:200.55928 19979.9275}}@-webkit-keyframes sui77{to{stroke-dasharray:203.19821 20242.82128}}@keyframes sui77{to{stroke-dasharray:203.19821 20242.82128}}@-webkit-keyframes sui78{to{stroke-dasharray:205.83715 20505.71507}}@keyframes sui78{to{stroke-dasharray:205.83715 20505.71507}}@-webkit-keyframes sui79{to{stroke-dasharray:208.47609 20768.60885}}@keyframes sui79{to{stroke-dasharray:208.47609 20768.60885}}@-webkit-keyframes sui80{to{stroke-dasharray:211.11503 21031.50263}}@keyframes sui80{to{stroke-dasharray:211.11503 21031.50263}}@-webkit-keyframes sui81{to{stroke-dasharray:213.75396 21294.39642}}@keyframes sui81{to{stroke-dasharray:213.75396 21294.39642}}@-webkit-keyframes sui82{to{stroke-dasharray:216.3929 21557.2902}}@keyframes sui82{to{stroke-dasharray:216.3929 21557.2902}}@-webkit-keyframes sui83{to{stroke-dasharray:219.03184 21820.18398}}@keyframes sui83{to{stroke-dasharray:219.03184 21820.18398}}@-webkit-keyframes sui84{to{stroke-dasharray:221.67078 22083.07776}}@keyframes sui84{to{stroke-dasharray:221.67078 22083.07776}}@-webkit-keyframes sui85{to{stroke-dasharray:224.30972 22345.97155}}@keyframes sui85{to{stroke-dasharray:224.30972 22345.97155}}@-webkit-keyframes sui86{to{stroke-dasharray:226.94865 22608.86533}}@keyframes sui86{to{stroke-dasharray:226.94865 22608.86533}}@-webkit-keyframes sui87{to{stroke-dasharray:229.58759 22871.75911}}@keyframes sui87{to{stroke-dasharray:229.58759 22871.75911}}@-webkit-keyframes sui88{to{stroke-dasharray:232.22653 23134.6529}}@keyframes sui88{to{stroke-dasharray:232.22653 23134.6529}}@-webkit-keyframes sui89{to{stroke-dasharray:234.86547 23397.54668}}@keyframes sui89{to{stroke-dasharray:234.86547 23397.54668}}@-webkit-keyframes sui90{to{stroke-dasharray:237.5044 23660.44046}}@keyframes sui90{to{stroke-dasharray:237.5044 23660.44046}}@-webkit-keyframes sui91{to{stroke-dasharray:240.14334 23923.33424}}@keyframes sui91{to{stroke-dasharray:240.14334 23923.33424}}@-webkit-keyframes sui92{to{stroke-dasharray:242.78228 24186.22803}}@keyframes sui92{to{stroke-dasharray:242.78228 24186.22803}}@-webkit-keyframes sui93{to{stroke-dasharray:245.42122 24449.12181}}@keyframes sui93{to{stroke-dasharray:245.42122 24449.12181}}@-webkit-keyframes sui94{to{stroke-dasharray:248.06016 24712.01559}}@keyframes sui94{to{stroke-dasharray:248.06016 24712.01559}}@-webkit-keyframes sui95{to{stroke-dasharray:250.69909 24974.90938}}@keyframes sui95{to{stroke-dasharray:250.69909 24974.90938}}@-webkit-keyframes sui96{to{stroke-dasharray:253.33803 25237.80316}}@keyframes sui96{to{stroke-dasharray:253.33803 25237.80316}}@-webkit-keyframes sui97{to{stroke-dasharray:255.97697 25500.69694}}@keyframes sui97{to{stroke-dasharray:255.97697 25500.69694}}@-webkit-keyframes sui98{to{stroke-dasharray:258.61591 25763.59072}}@keyframes sui98{to{stroke-dasharray:258.61591 25763.59072}}@-webkit-keyframes sui99{to{stroke-dasharray:261.25485 26026.48451}}@keyframes sui99{to{stroke-dasharray:261.25485 26026.48451}}@-webkit-keyframes sui100{to{stroke-dasharray:263.89378 26289.37829}}@keyframes sui100{to{stroke-dasharray:263.89378 26289.37829}}.sui-2-1-0 .sui-circle-score{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:30px;width:auto;opacity:0;-webkit-transition:all .4s;transition:all .4s}.sui-2-1-0 .sui-circle-score svg{height:100%;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:center;transform-origin:center}.sui-2-1-0 .sui-circle-score svg circle{fill:none;stroke-linecap:butt}.sui-2-1-0 .sui-circle-score svg circle:first-child{stroke:#f2f2f2}.sui-2-1-0 .sui-circle-score svg circle:last-child{stroke:#1abc9c}.sui-2-1-0 .sui-circle-score.loaded{opacity:1}.sui-2-1-0 .sui-circle-score-label{margin-left:10px;font-weight:500}.sui-2-1-0 .sui-circle-score-sm{height:30px}.sui-2-1-0 .sui-circle-score-lg{height:120px}.sui-2-1-0 .sui-circle-score-lg .sui-circle-score-label{display:none}.sui-2-1-0 .sui-grade-aplus svg circle:last-child,.sui-2-1-0 .sui-grade-a svg circle:last-child,.sui-2-1-0 .sui-grade-b svg circle:last-child{stroke:#1abc9c}.sui-2-1-0 .sui-grade-c svg circle:last-child,.sui-2-1-0 .sui-grade-d svg circle:last-child{stroke:#fecf2f}.sui-2-1-0 .sui-grade-e svg circle:last-child,.sui-2-1-0 .sui-grade-f svg circle:last-child{stroke:#ff7f83}.sui-2-1-0 #wpfooter{display:none}.sui-2-1-0 .sui-footer{text-align:center;margin-top:50px;color:#aaa;font-size:13px}.sui-2-1-0 .sui-footer i:before{font-size:11px;line-height:22px;margin:0 3px}.sui-2-1-0 #sui-cross-sell-footer>div{width:100%;text-align:center;border-bottom:1px solid #e6e6e6;line-height:.1em;margin:10px 0 40px}.sui-2-1-0 #sui-cross-sell-footer>div>span{position:relative;color:#888;background-color:#f1f1f1;padding:0 30px;font-size:16px;top:8px}.sui-2-1-0 #sui-cross-sell-footer h3{font-size:22px;font-weight:700;line-height:30px;text-transform:none}.sui-2-1-0 .sui-cross-sell-modules{margin-top:30px}.sui-2-1-0 .sui-cross-sell-modules .sui-cross-1,.sui-2-1-0 .sui-cross-sell-modules .sui-cross-2,.sui-2-1-0 .sui-cross-sell-modules .sui-cross-3{min-height:150px;border-radius:5px 5px 0 0}.sui-2-1-0 .sui-cross-sell-modules .sui-cross-1>span,.sui-2-1-0 .sui-cross-sell-modules .sui-cross-2>span,.sui-2-1-0 .sui-cross-sell-modules .sui-cross-3>span{width:56px;height:56px;display:block;border:3px solid #fff;border-radius:50%;position:relative;top:80px;left:15px;-webkit-box-shadow:0 1px 10px 0 rgba(0,0,0,.25);box-shadow:0 1px 10px 0 rgba(0,0,0,.25)}.sui-2-1-0 .sui-cross-sell-modules .sui-cross-1{background:url(../image/plugins-smush.jpg) 50%;background-size:cover}.sui-2-1-0 .sui-cross-sell-modules .sui-cross-1>span{background:url(../image/plugins-smush-icon.png) no-repeat 50%;background-size:50px 50px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.sui-2-1-0 .sui-cross-sell-modules .sui-cross-1>span{background-image:url(../image/plugins-smush-icon@2x.png)}}.sui-2-1-0 .sui-cross-sell-modules .sui-cross-2{background:url(../image/plugins-defender.jpg) 50%;background-size:cover}.sui-2-1-0 .sui-cross-sell-modules .sui-cross-2>span{background:url(../image/plugins-defender-icon.png) no-repeat 50%;background-size:50px 50px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.sui-2-1-0 .sui-cross-sell-modules .sui-cross-2>span{background-image:url(../image/plugins-defender-icon@2x.png)}}.sui-2-1-0 .sui-cross-sell-modules .sui-cross-3{background:url(../image/plugins-crawl.jpg) 50%;background-size:cover}.sui-2-1-0 .sui-cross-sell-modules .sui-cross-3>span{background:url(../image/plugins-crawl-icon.png) no-repeat 50%;background-size:50px 50px}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:2dppx),only screen and (min-resolution:192dpi){.sui-2-1-0 .sui-cross-sell-modules .sui-cross-3>span{background-image:url(../image/plugins-crawl-icon@2x.png)}}.sui-2-1-0 .sui-cross-sell-modules .sui-box-body{text-align:center;border-radius:0 0 5px 5px}.sui-2-1-0 .sui-cross-sell-modules .sui-box-body p{color:#888;font-size:13px;line-height:20px;margin-bottom:30px}.sui-2-1-0 .sui-cross-sell-modules h3{font-size:18px;font-weight:700;line-height:30px;text-transform:none;margin-top:0;min-height:60px}.sui-2-1-0 .sui-cross-sell-bottom{text-align:center;margin-top:50px}.sui-2-1-0 .sui-cross-sell-bottom h3{font-size:22px;font-weight:700;line-height:30px;text-transform:none}.sui-2-1-0 .sui-cross-sell-bottom p{max-width:500px;margin:20px auto 30px}.sui-2-1-0 .sui-cross-sell-bottom .sui-button{margin:0}.sui-2-1-0 .sui-cross-sell-bottom img{display:block;height:auto;max-width:100%;margin:30px auto 0}.sui-2-1-0 .sui-progress-block{background-color:#f8f8f8;border-radius:5px;width:100%;height:60px;padding:15px 30px}.sui-2-1-0 .sui-progress-block .sui-progress{overflow:hidden;width:100%}.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-text{width:65px;float:left;text-align:left}.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-text:before{margin-right:10px;position:relative;top:3px;font-size:18px}.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-text img{display:inline-block;vertical-align:middle;margin-right:10px}.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-text span{font-weight:700;font-family:Roboto Condensed,Roboto,Arial,sans-serif;font-size:13px;color:#333;vertical-align:middle;line-height:30px}.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-bar{background:#e6e6e6;border-radius:5px;height:10px;overflow:hidden;margin-top:10px;position:relative}.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-bar span{background:#17a8e3;height:10px;display:inline-block;position:absolute;top:0;left:0;-webkit-transition:width 1s ease-in-out;transition:width 1s ease-in-out}.sui-2-1-0 .sui-progress-block .sui-progress-close{display:none}.sui-2-1-0 .sui-progress-block.sui-progress-can-close{position:relative}.sui-2-1-0 .sui-progress-block.sui-progress-can-close .sui-progress{padding-right:40px}.sui-2-1-0 .sui-progress-block.sui-progress-can-close .sui-progress-close{display:block;position:absolute;right:20px;width:30px;height:30px;cursor:pointer;background:transparent;border:none;color:#888;font-size:15px;line-height:1em;padding:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);outline:0;border-radius:4px}.sui-2-1-0 .sui-progress-block.sui-progress-can-close .sui-progress-close i:before{color:#aaa;font-size:16px;position:relative}.sui-2-1-0 .sui-progress-block.sui-progress-can-close .sui-progress-close:hover{background-color:rgba(0,0,0,.03)}.sui-2-1-0 .sui-progress-block.sui-progress-can-close .sui-progress-close:hover i:before{color:#666}.sui-2-1-0 .sui-progress-state{margin-top:10px;text-align:center}.sui-2-1-0 .sui-progress-state .sui-progress-state-text{color:#888;font-size:13px;line-height:22px}.sui-2-1-0 .sui-table{width:100%;border:1px solid #e6e6e6;border-collapse:collapse;border-spacing:unset;border-radius:5px;color:#666;font-size:13px}.sui-2-1-0 .sui-table th{white-space:nowrap;text-align:left;padding:20px 30px;font-weight:500;line-height:1;color:#333}.sui-2-1-0 .sui-table td,.sui-2-1-0 .sui-table th{border-bottom:1px solid #e6e6e6}.sui-2-1-0 .sui-table tr:last-child td{border-bottom:none}.sui-2-1-0 .sui-table td{padding:20px 30px}.sui-2-1-0 .sui-table tfoot th{border-bottom:none;border-top:1px solid #e6e6e6}.sui-2-1-0 .sui-field-list{border:1px solid #e6e6e6;border-radius:5px}.sui-2-1-0 .sui-field-list-header{padding:20px 30px}.sui-2-1-0 .sui-field-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-top:1px solid #e6e6e6;padding:15px 30px}.sui-2-1-0 .sui-field-list-item-label{margin-left:0;margin-right:auto}.sui-2-1-0 .sui-field-list-title{font-family:Roboto,Arial,sans-serif;font-size:13px;line-height:30px;color:#333;text-transform:capitalize;font-weight:500;margin:0}@media (max-width:782px){.sui-2-1-0 .sui-table{border:none}.sui-2-1-0 .sui-table td,.sui-2-1-0 .sui-table th{padding:15px 15px 15px 0}.sui-2-1-0 .sui-table td:last-of-type,.sui-2-1-0 .sui-table th:last-of-type{padding-right:0}.sui-2-1-0 .sui-table tr:last-child td{border-bottom:1px solid #e6e6e6}}.sui-2-1-0 .sui-accordion{border:0}.sui-2-1-0 .sui-accordion:after{content:"";display:table;margin-bottom:30px}.sui-2-1-0 .sui-accordion-item{display:table-row;vertical-align:middle;cursor:pointer;-webkit-transition:background-color .2s;transition:background-color .2s}.sui-2-1-0 .sui-accordion-item,.sui-2-1-0 .sui-accordion-item+.sui-accordion-item-content{border-left:2px solid transparent}.sui-2-1-0 .sui-accordion-item.sui-success{color:inherit;border-color:#1abc9c}.sui-2-1-0 .sui-accordion-item.sui-success i:before{color:inherit}.sui-2-1-0 .sui-accordion-item.sui-success+.sui-accordion-item-content{border-color:#1abc9c}.sui-2-1-0 .sui-accordion-item.sui-warning{color:inherit;border-color:#fecf2f}.sui-2-1-0 .sui-accordion-item.sui-warning i:before{color:inherit}.sui-2-1-0 .sui-accordion-item.sui-warning+.sui-accordion-item-content{border-color:#fecf2f}.sui-2-1-0 .sui-accordion-item.sui-error{color:inherit;border-color:#ff7f83}.sui-2-1-0 .sui-accordion-item.sui-error i:before{color:inherit}.sui-2-1-0 .sui-accordion-item.sui-error+.sui-accordion-item-content{border-color:#ff7f83}.sui-2-1-0 .sui-accordion-item:focus,.sui-2-1-0 .sui-accordion-item:hover{background-color:#f8f8f8}.sui-2-1-0 .sui-accordion-item td{padding:15px 30px}@media (max-width:782px){.sui-2-1-0 .sui-accordion-item td{padding:15px 20px}}.sui-2-1-0 .sui-accordion-item td>*{vertical-align:middle}.sui-2-1-0 .sui-accordion-item--open td{background-color:#f8f8f8;border-bottom:1px solid #f8f8f8}.sui-2-1-0 .sui-accordion-item--open+.sui-accordion-item-content{display:table-row}.sui-2-1-0 .sui-accordion-item--open .sui-accordion-open-indicator i{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.sui-2-1-0 .sui-accordion-open-indicator{float:right;text-align:center}.sui-2-1-0 .sui-accordion-open-indicator i{-webkit-transform-origin:center;transform-origin:center;font-size:10px;color:#888;-webkit-transition:.5s;transition:.5s}.sui-2-1-0 .sui-accordion-open-indicator i:before{position:relative;top:2px}.sui-2-1-0 .sui-accordion-item-title{font-size:15px}.sui-2-1-0 .sui-accordion-item-title i{font-size:20px;margin-right:10px}.sui-2-1-0 .sui-accordion-item-content{display:none;background-color:#f8f8f8;border-top:0}.sui-2-1-0 .sui-accordion-item-content td{width:100%;padding:0 30px 30px}@media (max-width:782px){.sui-2-1-0 .sui-accordion-item-content td{padding:0 20px 20px}}.sui-2-1-0 .sui-accordion-item-content .sui-box{margin-bottom:0}.sui-2-1-0 .sui-code-snippet-wrapper{position:relative}.sui-2-1-0 .sui-code-snippet-wrapper [data-clipboard-target]{position:absolute;right:15px;top:15px;margin:0;min-width:auto}.sui-2-1-0 .sui-dialog[aria-hidden=true]{display:none}.sui-2-1-0 .sui-dialog{position:fixed;z-index:1;top:0;right:0;bottom:0;left:160px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-dialog-content{max-width:400px}@media (max-width:400px){.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-dialog-content{max-width:90%}}.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-box-header{border:none;text-align:center;display:block;position:relative}.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-box-header .sui-box-title{margin-top:30px;margin-bottom:-10px;font-size:22px}.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-box-header .sui-dialog-close{position:absolute;right:30px;top:30px}.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-box-body p{font-size:13px;line-height:22px;text-align:center}.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-box-footer{border:none;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.sui-2-1-0 .sui-dialog.sui-dialog-lg .sui-dialog-content{max-width:980px}@media (max-width:1200px){.sui-2-1-0 .sui-dialog.sui-dialog-lg .sui-dialog-content{max-width:90%}}@media (max-width:960px){.sui-2-1-0 .sui-dialog{left:36px}}@media (max-width:782px){.sui-2-1-0 .sui-dialog{left:0}}.sui-2-1-0 .sui-dialog *{-webkit-box-sizing:border-box;box-sizing:border-box}.sui-2-1-0 .sui-dialog-overlay{position:fixed;z-index:2;background-color:rgba(51,51,51,.95);top:0;right:0;bottom:0;left:160px}@media (max-width:960px){.sui-2-1-0 .sui-dialog-overlay{left:36px}}@media (max-width:782px){.sui-2-1-0 .sui-dialog-overlay{left:0}}.sui-2-1-0 .sui-dialog-content{z-index:2;position:relative;width:100%;max-width:600px;margin:0 auto;max-height:85%;overflow-y:auto}.sui-2-1-0 .sui-dialog-content>.sui-box{-webkit-box-shadow:0 10px 40px rgba(0,0,0,.2);box-shadow:0 10px 40px rgba(0,0,0,.2)}.sui-2-1-0 .sui-dialog-content .sui-box-body>*{margin-bottom:30px}@media (max-width:782px){.sui-2-1-0 .sui-dialog-content .sui-box-body>*{margin-bottom:20px}}.sui-2-1-0 .sui-dialog-content .sui-box-body>:last-child{margin-bottom:0}.sui-2-1-0 .sui-dialog-close{font-size:1.25em;background-image:none;background-color:transparent;border:0;cursor:pointer;color:#aaa;outline-style:none}.sui-2-1-0 .sui-dialog-close:before{content:")"}.sui-2-1-0 .sui-listing li{color:#777771;line-height:26px;padding:2px 0 2px 34px;position:relative}.sui-2-1-0 .sui-listing li:before{content:"_";color:#17a8e3;top:1px;font-size:20px;vertical-align:middle;position:absolute;left:0;width:20px;height:20px;opacity:.8;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1}
2
+ /*# sourceMappingURL=shared-ui.min.css.map*/
admin/assets/css/shared-ui.min.css.map ADDED
@@ -0,0 +1 @@
 
1
+ {"version":3,"sources":["webpack:///./node_modules/@wpmudev/shared-ui/scss/_accessibility.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_utility.scss","webpack:///./_src/scss/shared-ui.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_mixins.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_animations.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_typography.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_icons.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_buttons.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_colors.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_variables.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_toggles.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_boxes.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_layout.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_notifications.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_header.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_summary.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_list.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_tooltips.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_select.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_tags.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_forms.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_tabs.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_sidenav.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_dropdowns.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_scores.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_footer.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_progress-bars.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_tables.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_accordions.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_code-snippet.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_modals.scss","webpack:///./node_modules/@wpmudev/shared-ui/scss/_listing.scss"],"names":[],"mappings":"qGAaA,6KAZC,SACA,2BACA,kDACA,WACA,YACA,gBACA,UACA,4BACA,UACA,2BCRA,uBACC,uBAGD,qCACC,kBAGD,sBACC,cACA,YACA,eAGD,6BACC,kBACA,iBAGD,6BAGC,iBACA,kBAGD,2DANC,qDACA,kEAKD,8BAGC,iBACA,eAID,8BACC,6EAED,4BACC,sEAED,0BACC,gEAGD,wBACC,cAGD,wBACC,cAGD,sBACC,cAGD,qBACC,cAGD,0BACC,mBAGD,8BACC,uBAGD,iCACC,0BAGD,+BACC,wBAGD,gCACC,yBAGD,2BACC,oBAGD,+BACC,wBAGD,kCACC,2BAGD,gCACC,yBAGD,iCACC,0BAGD,uBACC,sBAGD,2BACC,0BAGD,8BACC,6BAGD,4BACC,2BAGD,6BACC,4BAGD,wBACC,uBAGD,4BACC,2BAGD,+BACC,8BAGD,6BACC,4BAGD,8BACC,6BAYA,yBACC,eACC,uBCUD,CDOA,+CACA,eACC,uBCHD,CDCA,gDACA,eACC,uBCGD,CDfD,0BACC,eACC,uBCmBD,CCjLF,wBCDC,oFDCD,yBCGC,sFDHD,0BCOC,oGDPD,2BCWC,wGAIF,gCACC,kBACC,wHAED,GACC,UACA,8EAED,IACC,UACA,wEAED,IACC,0EAED,IACC,sEAED,GACC,sCF2LC,CE9MH,wBACC,kBACC,wHAED,GACC,UACA,8EAED,IACC,UACA,wEAED,IACC,0EAED,IACC,sEAED,GACC,sCF2LC,CEvLH,kCACC,GAAO,sFAAyC,UAChD,IAAO,UACP,IAAO,oGAAgD,UACvD,IAAO,4FACP,IAAO,oFACP,GAAO,kFF6ML,CEnNH,0BACC,GAAO,sFAAyC,UAChD,IAAO,UACP,IAAO,oGAAgD,UACvD,IAAO,4FACP,IAAO,oFACP,GAAO,kFF6ML,CE1MH,mCACC,GAAO,wDACP,IAAO,8FACP,IAAO,wFACP,IAAO,UACP,IAAO,4HAA4D,UACnE,GAAO,aF+NL,CErOH,2BACC,GAAO,wDACP,IAAO,8FACP,IAAO,wFACP,IAAO,UACP,IAAO,4HAA4D,UACnE,GAAO,aF+NL,CE5NH,6BACC,IACC,gEAED,QACC,UACA,sEAED,GACC,UACA,gEFkOC,CE5OH,qBACC,IACC,gEAED,QACC,UACA,sEAED,GACC,UACA,gEFkOC,CE9NH,0BACC,GACC,UAED,GACC,UFmOC,CExOH,kBACC,GACC,UAED,GACC,UFmOC,CE/NH,2BACC,GACC,UAED,GACC,UFoOC,CEzOH,mBACC,GACC,UAED,GACC,UFoOC,CEhOH,wBACC,GACC,sDAED,GACC,wDFqOC,CE1OH,gBACC,GACC,sDAED,GACC,wDFqOC,CG7TF,qBACC,oCACA,gBACA,eACA,iBACA,WACA,uBACA,kCACA,wBAIA,yBAZD,qBAUE,qBHoUA,CG3TF,oFACC,cACA,iBACA,UACA,iBACA,WACA,gBACA,qDAGD,cACC,eACA,iBACA,WACA,SAED,cACC,eACA,iBAGD,cACC,eACA,iBAoBD,uDARC,eAQD,aACC,oCACA,gBAEA,iBACA,WACA,uBACA,kCAUA,yBAPC,aAGD,wBACC,gBAKF,mBACC,eACA,iBACA,WAQD,aACC,qBACA,cACA,gBACA,0BACA,mBACA,wCAkBA,6GAdE,cAIF,sBACC,oBAOA,qFAJC,WACA,eAYH,+BAEC,gBACA,eACA,iBACA,WACA,yBACA,yBACA,kBACA,SACA,kBACA,gBACA,cACA,eACA,sBACA,yCAGD,gBACC,qBACA,gBAQD,+BACC,gBAGD,eACC,kBACA,gBACA,8BACA,0RCvKD,oCACA,WACA,cACA,kBACA,gBACA,oBACA,oBACA,cACA,oBACA,qBACA,WAGA,mCACA,kCAwPD,WACC,0BACA,kCACA,sPAKA,gBACA,kBH5QA,+BGkRC,gFHlRD,8BGuRC,qBHvRD,4CG8RE,eH9RF,4CGoSE,eHpSF,4CG0SE,eH1SF,4CGgTE,eHhTF,+LGyUE,cHzUF,qCG+UC,YACA,kBACA,eHjVD,4CGuVE,cHvVF,gCGuVE,gBADD,+BACC,gBAnTU,uCAkTgB,cAjTV,oCAiTO,eAhTT,6CAgTkB,gBA/Sf,kCA+SH,YA9SR,yCA8Se,YA7SR,0CA6SS,YA5SR,uCA4SK,YA3SR,wCA2SS,YA1SR,4CA0SY,YAzSR,qCAySC,cAxSR,oCAwSO,YAvS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R,gBAEC,yBAEA,gBACD,oBACC,uDTLF,gCSCE,sBACA,yBTFF,gBSIC,oBACC,uDTLF,gCSCE,sBACA,yBTFF,USIC,yDANQ,gCACR,gBAEC,yBTDF,gBSIC,oBACC,uDTLF,gCSCE,sBACA,yBTFF,eSIC,mBACC,qDTLF,gCSFS,qBAIP,uBTFF,0BSIC,WACC,eAsDD,6CAAmB,iCA3DlB,iBACA,0BTDF,gBSIC,oBACC,uDTLQ,iCSCR,sBACA,0BTFF,gBSIC,oBACY,uDTLH,iCSCR,sBACA,yBTFF,USIC,yDANQ,gCACR,gBAEC,yBAGD,oCACC,uDTLF,gCSCE,sBACA,yBTFF,gBSIC,oBACC,uDTLF,gCSCE,sBACA,yBTFF,USIC,yDANQ,gCACR,gBAEC,yBTDF,gBSIC,oBACC,uDTLF,gCSCE,sBACA,yBTFF,gBSIC,oBACC,uDTLF,gCSCE,sBACA,yBTFF,USIC,yDANQ,gCACR,gBAEC,yBAEA,gBACD,oBACC,uDTLF,gCSCE,sBACA,yBTFF,eSIC,mBACC,qDTLF,gCSFS,qBVq2EP,CUj2EA,yBTFF,0BSKE,0BAsDD,6CAAmB,iCA3DlB,iBACA,0BTDF,gBSIC,oBACC,uDTLQ,iCSCR,sBACA,0BTFF,gBSIC,oBACY,uDTLH,iCSCR,sBACA,yBTFF,USIC,yDANQ,gCACR,gBAEC,yBTDF,gBSIC,oBACC,uDTLF,gCSCE,sBACA,yBTFF,gBSIC,oBACC,uDTLF,gCSCE,sBACA,yBTFF,USIC,yDANQ,gCACR,gBAEC,yBAEA,gBACD,oBACC,uDTLF,gCSCE,sBACA,yBTFF,gBSIC,oBACC,uDTLF,gCSCE,sBACA,yBTFF,USIC,yDANQ,gCACR,gBAEC,yBAGD,oCACC,uDTLF,gCSCE,sBACA,yBTFF,eSIC,mBACC,qDTLF,gCSFS,qBV+9EP,CU39EA,yBTFF,0BSKE,0BAsDD,6CAAmB,iCA3DlB,iBACA,0BTDF,gBSIC,oBACC,uDTLQ,iCSCR,sBACA,0BTFF,gBSIC,oBACY,uDTLH,iCSCR,sBACA,yBTFF,USIC,yDANQ,gCACR,gBAEC,yBAEA,gBACD,oBACC,uDTLF,gCSCE,sBACA,yBTFF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wCtB80IE,CsBr1I0B,iBAO5B,wCtB80IE,CsBr1I0B,yBAO5B,wCtBo1IE,CsB31I0B,iBAO5B,wCtBo1IE,CsB31I0B,yBAO5B,wCtB01IE,CsBj2I0B,iBAO5B,wCtB01IE,CsBj2I0B,yBAO5B,wCtBg2IE,CsBv2I0B,iBAO5B,wCtBg2IE,CsBv2I0B,yBAO5B,wCtBs2IE,CsB72I0B,iBAO5B,wCtBs2IE,CsB72I0B,yBAO5B,wCtB42IE,CsBn3I0B,iBAO5B,wCtB42IE,CsBn3I0B,yBAO5B,wCtBk3IE,CsBz3I0B,iBAO5B,wCtBk3IE,CsBz3I0B,yBAO5B,wCtBw3IE,CsB/3I0B,iBAO5B,wCtBw3IE,CsB/3I0B,yBAO5B,wCtB83IE,CsBr4I0B,iBAO5B,wCtB83IE,CsBr4I0B,yBAO5B,wCtBo4IE,CsB34I0B,iBAO5B,wCtBo4IE,CsB34I0B,yBAO5B,wCtB04IE,CsBj5I0B,iBAO5B,wCtB04IE,CsBj5I0B,yBAO5B,wCtBg5IE,CsBv5I0B,iBAO5B,wCtBg5IE,CsBv5I0B,yBAO5B,sCtBs5IE,CsB75I0B,iBAO5B,sCtBs5IE,CsB75I0B,yBAO5B,wCtB45IE,CsBn6I0B,iBAO5B,wCtB45IE,CsBn6I0B,yBAO5B,wCtBk6IE,CsBz6I0B,iBAO5B,wCtBk6IE,CsBz6I0B,yBAO5B,wCtBw6IE,CsB/6I0B,iBAO5B,wCtBw6IE,CsB/6I0B,yBAO5B,wCtB86IE,CsBr7I0B,iBAO5B,wCtB86IE,CsBr7I0B,yBAO5B,wCtBo7IE,CsB37I0B,iBAO5B,wCtBo7IE,CsB37I0B,yBAO5B,uCtB07IE,CsBj8I0B,iBAO5B,uCtB07IE,CsBj8I0B,yBAO5B,wCtBg8IE,CsBv8I0B,iBAO5B,wCtBg8IE,CsBv8I0B,yBAO5B,uCtBs8IE,CsB78I0B,iBAO5B,uCtBs8IE,CsB78I0B,yBAO5B,yCtB48IE,CsBn9I0B,iBAO5B,yCtB48IE,CsBn9I0B,yBAO5B,0CtBk9IE,CsBz9I0B,iBAO5B,0CtBk9IE,CsBz9I2B,yBAO7B,0CtBw9IE,CsB/9I2B,iBAO7B,0CtBw9IE,CsB/9I0B,yBAO5B,yCtB89IE,CsBr+I0B,iBAO5B,yCtB89IE,CsBr+I2B,yBAO7B,0CtBo+IE,CsB3+I2B,iBAO7B,0CtBo+IE,CsB3+I2B,yBAO7B,0CtB0+IE,CsBj/I2B,iBAO7B,0CtB0+IE,CsBj/I0B,yBAO5B,0CtBg/IE,CsBv/I0B,iBAO5B,0CtBg/IE,CsBv/I0B,yBAO5B,yCtBs/IE,CsB7/I0B,iBAO5B,yCtBs/IE,CsB7/I2B,yBAO7B,0CtB4/IE,CsBngJ2B,iBAO7B,0CtB4/IE,CsBngJ0B,yBAO5B,yCtBkgJE,CsBzgJ0B,iBAO5B,yCtBkgJE,CsBzgJ2B,yBAO7B,0CtBwgJE,CsB/gJ2B,iBAO7B,0CtBwgJE,CsB/gJ2B,yBAO7B,0CtB8gJE,CsBrhJ2B,iBAO7B,0CtB8gJE,CsBrhJ0B,yBAO5B,0CtBohJE,CsB3hJ0B,iBAO5B,0CtBohJE,CsB3hJ0B,yBAO5B,0CtB0hJE,CsBjiJ0B,iBAO5B,0CtB0hJE,CsBjiJ0B,yBAO5B,0CtBgiJE,CsBviJ0B,iBAO5B,0CtBgiJE,CsBviJ0B,yBAO5B,yCtBsiJE,CsB7iJ0B,iBAO5B,yCtBsiJE,CsB7iJ2B,yBAO7B,0CtB4iJE,CsBnjJ2B,iBAO7B,0CtB4iJE,CsBnjJ0B,yBAO5B,0CtBkjJE,CsBzjJ0B,iBAO5B,0CtBkjJE,CsBzjJ0B,yBAO5B,0CtBwjJE,CsB/jJ0B,iBAO5B,0CtBwjJE,CsB/jJ0B,yBAO5B,0CtB8jJE,CsBrkJ0B,iBAO5B,0CtB8jJE,CsBrkJ0B,yBAO5B,0CtBokJE,CsB3kJ0B,iBAO5B,0CtBokJE,CsB3kJ0B,yBAO5B,0CtB0kJE,CsBjlJ0B,iBAO5B,0CtB0kJE,CsBjlJ0B,yBAO5B,0CtBglJE,CsBvlJ0B,iBAO5B,0CtBglJE,CsBvlJ0B,yBAO5B,0CtBslJE,CsB7lJ0B,iBAO5B,0CtBslJE,CsB7lJ0B,yBAO5B,0CtB4lJE,CsBnmJ0B,iBAO5B,0CtB4lJE,CsBnmJ0B,yBAO5B,0CtBkmJE,CsBzmJ0B,iBAO5B,0CtBkmJE,CsBzmJ0B,yBAO5B,0CtBwmJE,CsB/mJ0B,iBAO5B,0CtBwmJE,CsB/mJ0B,yBAO5B,0CtB8mJE,CsBrnJ0B,iBAO5B,0CtB8mJE,CsBrnJ0B,yBAO5B,yCtBonJE,CsB3nJ0B,iBAO5B,yCtBonJE,CsB3nJ2B,yBAO7B,0CtB0nJE,CsBjoJ2B,iBAO7B,0CtB0nJE,CsBjoJ0B,yBAO5B,0CtBgoJE,CsBvoJ0B,iBAO5B,0CtBgoJE,CsBvoJ0B,yBAO5B,0CtBsoJE,CsB7oJ0B,iBAO5B,0CtBsoJE,CsB7oJ0B,yBAO5B,yCtB4oJE,CsBnpJ0B,iBAO5B,yCtB4oJE,CsBnpJ2B,yBAO7B,0CtBkpJE,CsBzpJ2B,iBAO7B,0CtBkpJE,CsBzpJ2B,yBAO7B,0CtBwpJE,CsB/pJ2B,iBAO7B,0CtBwpJE,CsB/pJ0B,yBAO5B,0CtB8pJE,CsBrqJ0B,iBAO5B,0CtB8pJE,CsBrqJ0B,yBAO5B,yCtBoqJE,CsB3qJ0B,iBAO5B,yCtBoqJE,CsB3qJ2B,yBAO7B,0CtB0qJE,CsBjrJ2B,iBAO7B,0CtB0qJE,CsBjrJ0B,yBAO5B,yCtBgrJE,CsBvrJ0B,iBAO5B,yCtBgrJE,CsBvrJ2B,yBAO7B,0CtBsrJE,CsB7rJ2B,iBAO7B,0CtBsrJE,CsB7rJ2B,yBAO7B,0CtB4rJE,CsBnsJ2B,iBAO7B,0CtB4rJE,CsBnsJ0B,yBAO5B,0CtBksJE,CsBzsJ0B,iBAO5B,0CtBksJE,CsBzsJ0B,yBAO5B,0CtBwsJE,CsB/sJ0B,iBAO5B,0CtBwsJE,CsB/sJ0B,yBAO5B,0CtB8sJE,CsBrtJ0B,iBAO5B,0CtB8sJE,CsBrtJ0B,yBAO5B,wCtBotJE,CsB3tJ0B,iBAO5B,wCtBotJE,CsB3tJ0B,yBAO5B,0CtB0tJE,CsBjuJ0B,iBAO5B,0CtB0tJE,CsBjuJ2B,yBAO7B,0CtBguJE,CsBvuJ2B,iBAO7B,0CtBguJE,CsBvuJ0B,yBAO5B,0CtBsuJE,CsB7uJ0B,iBAO5B,0CtBsuJE,CsB7uJ0B,yBAO5B,0CtB4uJE,CsBnvJ0B,iBAO5B,0CtB4uJE,CsBnvJ0B,yBAO5B,0CtBkvJE,CsBzvJ0B,iBAO5B,0CtBkvJE,CsBzvJ0B,yBAO5B,yCtBwvJE,CsB/vJ0B,iBAO5B,yCtBwvJE,CsB/vJ2B,yBAO7B,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","file":"shared-ui.min.css","sourcesContent":["%sui-screen-reader-text {\n\tborder: 0;\n\tclip: rect(1px, 1px, 1px, 1px);\n\tclip-path: inset(50%);\n\theight: 1px;\n\tmargin: -1px;\n\toverflow: hidden;\n\tpadding: 0;\n\tposition: absolute !important;\n\twidth: 1px;\n\tword-wrap: normal !important;\n}\n\n.sui-screen-reader-text {\n\t@extend %sui-screen-reader-text;\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_accessibility.scss","@include body-class {\n\n\t.sui-hidden {\n\t\tdisplay: none !important;\n\t}\n\n\t.sui-block-content-center {\n\t\ttext-align: center;\n\t}\n\n\t.sui-image {\n\t\tdisplay: block;\n\t\theight: auto;\n\t\tmax-width: 100%;\n\t}\n\n\t.sui-image-center {\n\t\tmargin-right: auto;\n\t\tmargin-left: auto;\n\t}\n\n\t.sui-actions-left {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tmargin-left: 10px;\n\t\tmargin-right: auto;\n\t}\n\n\t.sui-actions-right {\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\tmargin-left: auto;\n\t\tmargin-right: 0;\n\t}\n\n\t// Flex alignment\n\t.sui-space-between {\n\t\tjustify-content: space-between;\n\t}\n\t.sui-align-start {\n\t\tjustify-content: flex-start;\n\t}\n\t.sui-align-end {\n\t\tjustify-content: flex-end;\n\t}\n\n\t.sui-success {\n\t\tcolor: $success;\n\t}\n\n\t.sui-warning {\n\t\tcolor: $warning;\n\t}\n\n\t.sui-error {\n\t\tcolor: $error;\n\t}\n\n\t.sui-info {\n\t\tcolor: $info;\n\t}\n\n\t.sui-no-margin {\n\t\tmargin: 0 !important;\n\t}\n\n\t.sui-no-margin-top {\n\t\tmargin-top: 0 !important;\n\t}\n\n\t.sui-no-margin-bottom {\n\t\tmargin-bottom: 0 !important;\n\t}\n\n\t.sui-no-margin-left {\n\t\tmargin-left: 0 !important;\n\t}\n\n\t.sui-no-margin-right {\n\t\tmargin-right: 0 !important;\n\t}\n\n\t.sui-no-padding {\n\t\tpadding: 0 !important;\n\t}\n\n\t.sui-no-padding-top {\n\t\tpadding-top: 0 !important;\n\t}\n\n\t.sui-no-padding-bottom {\n\t\tpadding-bottom: 0 !important;\n\t}\n\n\t.sui-no-padding-left {\n\t\tpadding-left: 0 !important;\n\t}\n\n\t.sui-no-padding-right {\n\t\tpadding-right: 0 !important;\n\t}\n\n\t.sui-margin {\n\t\tmargin: $default-margin !important;\n\t}\n\n\t.sui-margin-top {\n\t\tmargin-top: $default-margin !important;\n\t}\n\n\t.sui-margin-bottom {\n\t\tmargin-bottom: $default-margin !important;\n\t}\n\n\t.sui-margin-left {\n\t\tmargin-left: $default-margin !important;\n\t}\n\n\t.sui-margin-right {\n\t\tmargin-right: $default-margin !important;\n\t}\n\n\t.sui-padding {\n\t\tpadding: $default-padding !important;\n\t}\n\n\t.sui-padding-top {\n\t\tpadding-top: $default-padding !important;\n\t}\n\n\t.sui-padding-bottom {\n\t\tpadding-bottom: $default-padding !important;\n\t}\n\n\t.sui-padding-left {\n\t\tpadding-left: $default-padding !important;\n\t}\n\n\t.sui-padding-right {\n\t\tpadding-right: $default-padding !important;\n\t}\n}\n\n// Loop through breakpoints & generate hidden utility classes.\n@for $i from 1 through length($sui-breakpoints) {\n\t$size: nth(nth($sui-breakpoints, $i), 1);\n\t$screen-width-min: nth(nth($sui-breakpoints, $i), 2);\n\n\t// If lowest breakpoint in map.\n\t@if ($i == 1) {\n\t\t$screen-width-max: nth(nth($sui-breakpoints, ($i + 1)), 2) - 1px;\n\t\t@media (max-width: $screen-width-max) {\n\t\t\t.sui-hidden-#{$size} {\n\t\t\t\tdisplay: none !important;\n\t\t\t}\n\t\t}\n\t}\n\n\t// If highest breakpoint in map.\n\t@else if ($i == length($sui-breakpoints)) {\n\t\t@media (min-width: $screen-width-min) {\n\t\t\t.sui-hidden-#{$size} {\n\t\t\t\tdisplay: none !important;\n\t\t\t}\n\t\t}\n\t}\n\n\t// If breakpoint falls inbetween.\n\t@else {\n\t\t$screen-width-max: nth(nth($sui-breakpoints, ($i + 1)), 2) - 1px;\n\t\t\t@media (min-width: $screen-width-min) and (max-width: $screen-width-max) {\n\t\t\t.sui-hidden-#{$size} {\n\t\t\t\tdisplay: none !important;\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_utility.scss","@import url(\"https://fonts.googleapis.com/css?family=Roboto+Condensed:400,500,700|Roboto:400,500,700\");\n\n.sui-screen-reader-text,\n.sui-2-1-0 .sui-toggle input[type=\"checkbox\"],\n.sui-2-1-0 .sui-checkbox input,\n.sui-2-1-0 .sui-radio input,\n.sui-2-1-0 .sui-upload-group input[type=\"file\"] {\n border: 0;\n clip: rect(1px, 1px, 1px, 1px);\n clip-path: inset(50%);\n height: 1px;\n margin: -1px;\n overflow: hidden;\n padding: 0;\n position: absolute !important;\n width: 1px;\n word-wrap: normal !important;\n}\n\n.sui-2-1-0 .sui-hidden {\n display: none !important;\n}\n\n.sui-2-1-0 .sui-block-content-center {\n text-align: center;\n}\n\n.sui-2-1-0 .sui-image {\n display: block;\n height: auto;\n max-width: 100%;\n}\n\n.sui-2-1-0 .sui-image-center {\n margin-right: auto;\n margin-left: auto;\n}\n\n.sui-2-1-0 .sui-actions-left {\n display: flex;\n align-items: center;\n margin-left: 10px;\n margin-right: auto;\n}\n\n.sui-2-1-0 .sui-actions-right {\n display: flex;\n align-items: center;\n margin-left: auto;\n margin-right: 0;\n}\n\n.sui-2-1-0 .sui-space-between {\n justify-content: space-between;\n}\n\n.sui-2-1-0 .sui-align-start {\n justify-content: flex-start;\n}\n\n.sui-2-1-0 .sui-align-end {\n justify-content: flex-end;\n}\n\n.sui-2-1-0 .sui-success {\n color: #1ABC9C;\n}\n\n.sui-2-1-0 .sui-warning {\n color: #FECF2F;\n}\n\n.sui-2-1-0 .sui-error {\n color: #FF7F83;\n}\n\n.sui-2-1-0 .sui-info {\n color: #17A8E3;\n}\n\n.sui-2-1-0 .sui-no-margin {\n margin: 0 !important;\n}\n\n.sui-2-1-0 .sui-no-margin-top {\n margin-top: 0 !important;\n}\n\n.sui-2-1-0 .sui-no-margin-bottom {\n margin-bottom: 0 !important;\n}\n\n.sui-2-1-0 .sui-no-margin-left {\n margin-left: 0 !important;\n}\n\n.sui-2-1-0 .sui-no-margin-right {\n margin-right: 0 !important;\n}\n\n.sui-2-1-0 .sui-no-padding {\n padding: 0 !important;\n}\n\n.sui-2-1-0 .sui-no-padding-top {\n padding-top: 0 !important;\n}\n\n.sui-2-1-0 .sui-no-padding-bottom {\n padding-bottom: 0 !important;\n}\n\n.sui-2-1-0 .sui-no-padding-left {\n padding-left: 0 !important;\n}\n\n.sui-2-1-0 .sui-no-padding-right {\n padding-right: 0 !important;\n}\n\n.sui-2-1-0 .sui-margin {\n margin: 30px !important;\n}\n\n.sui-2-1-0 .sui-margin-top {\n margin-top: 30px !important;\n}\n\n.sui-2-1-0 .sui-margin-bottom {\n margin-bottom: 30px !important;\n}\n\n.sui-2-1-0 .sui-margin-left {\n margin-left: 30px !important;\n}\n\n.sui-2-1-0 .sui-margin-right {\n margin-right: 30px !important;\n}\n\n.sui-2-1-0 .sui-padding {\n padding: 30px !important;\n}\n\n.sui-2-1-0 .sui-padding-top {\n padding-top: 30px !important;\n}\n\n.sui-2-1-0 .sui-padding-bottom {\n padding-bottom: 30px !important;\n}\n\n.sui-2-1-0 .sui-padding-left {\n padding-left: 30px !important;\n}\n\n.sui-2-1-0 .sui-padding-right {\n padding-right: 30px !important;\n}\n\n@media (max-width: 479px) {\n .sui-hidden-xs {\n display: none !important;\n }\n}\n\n@media (min-width: 480px) and (max-width: 782px) {\n .sui-hidden-sm {\n display: none !important;\n }\n}\n\n@media (min-width: 783px) and (max-width: 1199px) {\n .sui-hidden-md {\n display: none !important;\n }\n}\n\n@media (min-width: 1200px) {\n .sui-hidden-lg {\n display: none !important;\n }\n}\n\n.sui-2-1-0 .sui-fade-in {\n animation: fadeIn 0.3s ease-in forwards;\n}\n\n.sui-2-1-0 .sui-fade-out {\n animation: fadeOut 0.3s ease-in forwards;\n}\n\n.sui-2-1-0 .sui-bounce-in {\n animation: bounceInJiggle 0.8s ease-in forwards;\n}\n\n.sui-2-1-0 .sui-bounce-out {\n animation: bounceOutJiggle 0.6s ease-out forwards;\n}\n\n@keyframes bounceInDown {\n from, 60%, 75%, 90%, to {\n animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);\n }\n\n 0% {\n opacity: 0;\n transform: translate3d(0, -3000px, 0);\n }\n\n 60% {\n opacity: 1;\n transform: translate3d(0, 25px, 0);\n }\n\n 75% {\n transform: translate3d(0, -10px, 0);\n }\n\n 90% {\n transform: translate3d(0, 5px, 0);\n }\n\n to {\n transform: none;\n }\n}\n\n@keyframes bounceInJiggle {\n 0% {\n transform: translateY(-200%) scale(1.5);\n opacity: 0;\n }\n\n 30% {\n opacity: 1;\n }\n\n 58% {\n transform: translateY(0) rotate(1deg) scale(1);\n opacity: 1;\n }\n\n 72% {\n transform: translateY(-30px) rotate(-1deg);\n }\n\n 80% {\n transform: translateY(0) rotate(0.5deg);\n }\n\n 100% {\n transform: translateY(0) rotate(0deg);\n }\n}\n\n@keyframes bounceOutJiggle {\n 0% {\n transform: translateY(0);\n }\n\n 10% {\n transform: translateY(-10px) rotate(-0.5deg);\n }\n\n 30% {\n transform: translateY(20px) rotate(8deg);\n }\n\n 70% {\n opacity: 1;\n }\n\n 90% {\n transform: translateY(300%) translateX(40px) rotate(35deg);\n opacity: 0;\n }\n\n 100% {\n display: none;\n }\n}\n\n@keyframes bounceOut {\n 20% {\n transform: scale3d(0.9, 0.9, 0.9);\n }\n\n 50%, 55% {\n opacity: 1;\n transform: scale3d(1.1, 1.1, 1.1);\n }\n\n to {\n opacity: 0;\n transform: scale3d(0.3, 0.3, 0.3);\n }\n}\n\n@keyframes fadeIn {\n from {\n opacity: 0;\n }\n\n to {\n opacity: 1;\n }\n}\n\n@keyframes fadeOut {\n from {\n opacity: 1;\n }\n\n to {\n opacity: 0;\n }\n}\n\n@keyframes spin {\n 0% {\n transform: rotate(0deg);\n }\n\n 100% {\n transform: rotate(360deg);\n }\n}\n\n.sui-2-1-0 .sui-wrap {\n font-family: \"Roboto\",Arial,sans-serif;\n font-weight: 400;\n font-size: 15px;\n line-height: 30px;\n color: #666;\n letter-spacing: -.025em;\n text-rendering: optimizeLegibility;\n margin: 30px 30px 0 10px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-wrap {\n margin: 20px 10px 0 0px;\n }\n}\n\n.sui-2-1-0 h1,\n.sui-2-1-0 h2,\n.sui-2-1-0 h3,\n.sui-2-1-0 h4,\n.sui-2-1-0 h5,\n.sui-2-1-0 h6 {\n display: block;\n margin: 0.5em auto;\n padding: 0;\n line-height: 30px;\n color: #333;\n font-weight: 700;\n font-family: \"Roboto Condensed\",\"Roboto\",Arial,sans-serif;\n}\n\n.sui-2-1-0 h1 {\n font-size: 32px;\n line-height: 40px;\n color: #333;\n margin: 0;\n}\n\n.sui-2-1-0 h2 {\n font-size: 22px;\n line-height: 35px;\n}\n\n.sui-2-1-0 h3 {\n font-size: 18px;\n line-height: 40px;\n}\n\n.sui-2-1-0 h4 {\n font-size: 15px;\n}\n\n.sui-2-1-0 h5 {\n font-size: 15px;\n}\n\n.sui-2-1-0 h6 {\n font-size: 15px;\n}\n\n.sui-2-1-0 p {\n font-family: \"Roboto\",Arial,sans-serif;\n font-weight: 400;\n font-size: 15px;\n line-height: 30px;\n color: #666;\n letter-spacing: -.025em;\n text-rendering: optimizeLegibility;\n}\n\n.sui-2-1-0 p:first-child {\n margin-top: 0;\n}\n\n.sui-2-1-0 p:last-child {\n margin-bottom: 0;\n}\n\n.sui-2-1-0 p small {\n font-size: 13px;\n line-height: 22px;\n color: #888;\n}\n\n.sui-2-1-0 a {\n text-decoration: none;\n color: #17A8E3;\n font-weight: 500;\n outline-color: transparent;\n outline-style: none;\n box-shadow: none;\n}\n\n.sui-2-1-0 a:hover:not(.sui-button),\n.sui-2-1-0 a:focus:not(.sui-button),\n.sui-2-1-0 a:active:not(.sui-button) {\n color: #0A9BD6;\n}\n\n.sui-2-1-0 a.disabled {\n pointer-events: none;\n}\n\n.sui-2-1-0 a.disabled:hover,\n.sui-2-1-0 a.disabled:focus,\n.sui-2-1-0 a.disabled:active {\n color: #888;\n cursor: default;\n}\n\n.sui-2-1-0 code,\n.sui-2-1-0 pre {\n font-weight: 500;\n font-size: 13px;\n line-height: 18px;\n color: #333;\n background-color: #F8F8F8;\n border: 1px solid #E6E6E6;\n border-radius: 3px;\n margin: 0;\n padding: 10px 15px;\n white-space: pre;\n overflow: auto;\n max-width: 100%;\n vertical-align: middle;\n tab-size: 4;\n}\n\n.sui-2-1-0 code {\n display: inline-block;\n padding: 2px 5px;\n}\n\n.sui-2-1-0 b,\n.sui-2-1-0 strong {\n font-weight: 500;\n}\n\n.sui-2-1-0 dfn {\n font-style: normal;\n font-weight: normal;\n border-bottom: 1px dotted #888;\n}\n\n.sui-2-1-0 [class*=\"sui-icon-\"]:before,\n.sui-2-1-0 [class*=\"sui-icon-\"]:after,\n.sui-2-1-0 .sui-notice-top p:before,\n.sui-2-1-0 .sui-notice p:before,\n.sui-2-1-0 .sui-checkbox span:before,\n.sui-2-1-0 .sui-radio span:before,\n.sui-2-1-0 .sui-dialog-close:before,\n.sui-2-1-0 .sui-listing li:before {\n font-family: 'WPMU-DEV-Icon' !important;\n speak: none;\n font-size: 1em;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n text-rendering: auto;\n display: inline-block;\n color: #888;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n@font-face {\n font-family: 'WPMU-DEV-Icon';\n src: url(\"../../node_modules/@wpmudev/shared-ui/dist/fonts/WPMU-DEV-Icon.eot\");\n src: url(\"../../node_modules/@wpmudev/shared-ui/dist/fonts/WPMU-DEV-Icon.eot\") format(\"embedded-opentype\"),url(\"../../node_modules/@wpmudev/shared-ui/dist/fonts/WPMU-DEV-Icon.ttf\") format(\"truetype\"),url(\"../../node_modules/@wpmudev/shared-ui/dist/fonts/WPMU-DEV-Icon.woff\") format(\"woff\"),url(\"../../node_modules/@wpmudev/shared-ui/dist/fonts/WPMU-DEV-Icon.woff2\") format(\"woff2\"),url(\"../../node_modules/@wpmudev/shared-ui/dist/fonts/WPMU-DEV-Icon.svg\") format(\"svg\");\n font-weight: normal;\n font-style: normal;\n}\n\n.sui-2-1-0 .sui-loading:before {\n animation: spin 1.3s linear infinite;\n}\n\n.sui-2-1-0 [class*=\"sui-icon-\"] {\n display: inline-block;\n}\n\n.sui-2-1-0 [class*=\"sui-icon-\"].sui-xl:before {\n font-size: 30px;\n}\n\n.sui-2-1-0 [class*=\"sui-icon-\"].sui-lg:before {\n font-size: 20px;\n}\n\n.sui-2-1-0 [class*=\"sui-icon-\"].sui-md:before {\n font-size: 16px;\n}\n\n.sui-2-1-0 [class*=\"sui-icon-\"].sui-sm:before {\n font-size: 12px;\n}\n\n.sui-2-1-0 [class*=\"sui-icon-\"].sui-success:before {\n color: inherit;\n}\n\n.sui-2-1-0 [class*=\"sui-icon-\"].sui-error:before {\n color: inherit;\n}\n\n.sui-2-1-0 [class*=\"sui-icon-\"].sui-warning:before {\n color: inherit;\n}\n\n.sui-2-1-0 [class*=\"sui-icon-\"].sui-info:before {\n color: inherit;\n}\n\n.sui-2-1-0 [class*=\"sui-icon-\"].sui-fw {\n width: 1.8em;\n text-align: center;\n min-height: 1em;\n}\n\n.sui-2-1-0 .sui-icon-24-hour-support:before {\n content: \"Á\";\n}\n\n.sui-2-1-0 .sui-icon-2FA:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-IP:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-ab-testing:before {\n content: \"»\";\n}\n\n.sui-2-1-0 .sui-icon-academy:before {\n content: \"π\";\n}\n\n.sui-2-1-0 .sui-icon-accounts-billing:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-alert:before {\n content: \"X\";\n}\n\n.sui-2-1-0 .sui-icon-align-center:before {\n content: \"^\";\n}\n\n.sui-2-1-0 .sui-icon-align-justify:before {\n content: \"#\";\n}\n\n.sui-2-1-0 .sui-icon-align-left:before {\n content: \"%\";\n}\n\n.sui-2-1-0 .sui-icon-align-right:before {\n content: \"&\";\n}\n\n.sui-2-1-0 .sui-icon-animation-video:before {\n content: \"F\";\n}\n\n.sui-2-1-0 .sui-icon-annotate:before {\n content: \"´\";\n}\n\n.sui-2-1-0 .sui-icon-archive:before {\n content: \"b\";\n}\n\n.sui-2-1-0 .sui-icon-arrow-down:before {\n content: \"Â\";\n}\n\n.sui-2-1-0 .sui-icon-arrow-left:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-arrow-location:before {\n content: \"M\";\n}\n\n.sui-2-1-0 .sui-icon-arrow-pointer-cursor:before {\n content: \"N\";\n}\n\n.sui-2-1-0 .sui-icon-arrow-return-back:before {\n content: \"R\";\n}\n\n.sui-2-1-0 .sui-icon-arrow-right:before {\n content: \"¯\";\n}\n\n.sui-2-1-0 .sui-icon-arrow-skip-back:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-arrow-skip-end:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-arrow-skip-forward:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-arrow-skip-start:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-arrow-up:before {\n content: \"Ô\";\n}\n\n.sui-2-1-0 .sui-icon-arrows-compress:before {\n content: \"≥\";\n}\n\n.sui-2-1-0 .sui-icon-arrows-expand:before {\n content: \"¬\";\n}\n\n.sui-2-1-0 .sui-icon-arrows-in:before {\n content: \"≤\";\n}\n\n.sui-2-1-0 .sui-icon-arrows-out:before {\n content: \"˚\";\n}\n\n.sui-2-1-0 .sui-icon-asterisk:before {\n content: \"*\";\n}\n\n.sui-2-1-0 .sui-icon-at-sign:before {\n content: \"@\";\n}\n\n.sui-2-1-0 .sui-icon-audio-sound:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-automate:before {\n content: \"Œ\";\n}\n\n.sui-2-1-0 .sui-icon-blog:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-bold:before {\n content: \"B\";\n}\n\n.sui-2-1-0 .sui-icon-book:before {\n content: \"∆\";\n}\n\n.sui-2-1-0 .sui-icon-book-bookmark:before {\n content: \"˙\";\n}\n\n.sui-2-1-0 .sui-icon-bookmark:before {\n content: \"√\";\n}\n\n.sui-2-1-0 .sui-icon-brush:before {\n content: \"~\";\n}\n\n.sui-2-1-0 .sui-icon-buddypress:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-calendar:before {\n content: \"∏\";\n}\n\n.sui-2-1-0 .sui-icon-camera:before {\n content: \"Ø\";\n}\n\n.sui-2-1-0 .sui-icon-check:before {\n content: \"(\";\n}\n\n.sui-2-1-0 .sui-icon-check-tick:before {\n content: \"_\";\n}\n\n.sui-2-1-0 .sui-icon-chevron-down:before {\n content: \"ı\";\n}\n\n.sui-2-1-0 .sui-icon-chevron-left:before {\n content: \"Ó\";\n}\n\n.sui-2-1-0 .sui-icon-chevron-right:before {\n content: \"˜\";\n}\n\n.sui-2-1-0 .sui-icon-chevron-up:before {\n content: \"˝\";\n}\n\n.sui-2-1-0 .sui-icon-clipboard-notes:before {\n content: \"¿\";\n}\n\n.sui-2-1-0 .sui-icon-clock:before {\n content: \",\";\n}\n\n.sui-2-1-0 .sui-icon-close:before {\n content: \")\";\n}\n\n.sui-2-1-0 .sui-icon-cloud:before {\n content: \"™\";\n}\n\n.sui-2-1-0 .sui-icon-cloud-migration:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-cloudflare:before {\n content: \"Ð\";\n}\n\n.sui-2-1-0 .sui-icon-code:before {\n content: \":\";\n}\n\n.sui-2-1-0 .sui-icon-coffee-cup:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-color-pick-eyedropper:before {\n content: \"¥\";\n}\n\n.sui-2-1-0 .sui-icon-comment:before {\n content: \"§\";\n}\n\n.sui-2-1-0 .sui-icon-comment-2:before {\n content: \"ª\";\n}\n\n.sui-2-1-0 .sui-icon-comments:before {\n content: \"¶\";\n}\n\n.sui-2-1-0 .sui-icon-community-people:before {\n content: \"‘\";\n}\n\n.sui-2-1-0 .sui-icon-compass:before {\n content: \"ˆ\";\n}\n\n.sui-2-1-0 .sui-icon-credit-card:before {\n content: \"c\";\n}\n\n.sui-2-1-0 .sui-icon-crop:before {\n content: \"C\";\n}\n\n.sui-2-1-0 .sui-icon-cross-close:before {\n content: \"+\";\n}\n\n.sui-2-1-0 .sui-icon-crown:before {\n content: \"¡\";\n}\n\n.sui-2-1-0 .sui-icon-dashboard:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-dashboard-settings:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-defender:before {\n content: \"·\";\n}\n\n.sui-2-1-0 .sui-icon-devman:before {\n content: \"€\";\n}\n\n.sui-2-1-0 .sui-icon-dislike:before {\n content: \"k\";\n}\n\n.sui-2-1-0 .sui-icon-dollar:before {\n content: \"$\";\n}\n\n.sui-2-1-0 .sui-icon-download:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-download-cloud:before {\n content: \"£\";\n}\n\n.sui-2-1-0 .sui-icon-eye:before {\n content: \"e\";\n}\n\n.sui-2-1-0 .sui-icon-eye-hide:before {\n content: \"q\";\n}\n\n.sui-2-1-0 .sui-icon-fast-forward:before {\n content: \">\";\n}\n\n.sui-2-1-0 .sui-icon-filter:before {\n content: \"z\";\n}\n\n.sui-2-1-0 .sui-icon-finger-point:before {\n content: \"≈\";\n}\n\n.sui-2-1-0 .sui-icon-finger-swipe:before {\n content: \"∃\";\n}\n\n.sui-2-1-0 .sui-icon-first-aid:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-flag:before {\n content: \"|\";\n}\n\n.sui-2-1-0 .sui-icon-folder:before {\n content: \"˘\";\n}\n\n.sui-2-1-0 .sui-icon-forminator:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-forminator-2:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-gallery-slider:before {\n content: \"÷\";\n}\n\n.sui-2-1-0 .sui-icon-google-analytics:before {\n content: \"å\";\n}\n\n.sui-2-1-0 .sui-icon-graph-bar:before {\n content: \"Ç\";\n}\n\n.sui-2-1-0 .sui-icon-graph-bar-2:before {\n content: \"˛\";\n}\n\n.sui-2-1-0 .sui-icon-heart:before {\n content: \"K\";\n}\n\n.sui-2-1-0 .sui-icon-help-support:before {\n content: \"H\";\n}\n\n.sui-2-1-0 .sui-icon-home:before {\n content: \"J\";\n}\n\n.sui-2-1-0 .sui-icon-hub:before {\n content: \"fl\";\n}\n\n.sui-2-1-0 .sui-icon-hummingbird:before {\n content: \"°\";\n}\n\n.sui-2-1-0 .sui-icon-hustle:before {\n content: \"—\";\n}\n\n.sui-2-1-0 .sui-icon-indent-less:before {\n content: \"”\";\n}\n\n.sui-2-1-0 .sui-icon-indent-more:before {\n content: \"’\";\n}\n\n.sui-2-1-0 .sui-icon-infinity:before {\n content: \"V\";\n}\n\n.sui-2-1-0 .sui-icon-info:before {\n content: \"I\";\n}\n\n.sui-2-1-0 .sui-icon-italic:before {\n content: \"{\";\n}\n\n.sui-2-1-0 .sui-icon-jobs-pros-search:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-key:before {\n content: \"◊\";\n}\n\n.sui-2-1-0 .sui-icon-laptop:before {\n content: \"«\";\n}\n\n.sui-2-1-0 .sui-icon-layers:before {\n content: \"æ\";\n}\n\n.sui-2-1-0 .sui-icon-layout:before {\n content: \"©\";\n}\n\n.sui-2-1-0 .sui-icon-layout-grid:before {\n content: \"∞\";\n}\n\n.sui-2-1-0 .sui-icon-lightbulb:before {\n content: \"L\";\n}\n\n.sui-2-1-0 .sui-icon-lightbulb-line:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-like:before {\n content: \"j\";\n}\n\n.sui-2-1-0 .sui-icon-link:before {\n content: \"5\";\n}\n\n.sui-2-1-0 .sui-icon-list:before {\n content: \"`\";\n}\n\n.sui-2-1-0 .sui-icon-list-bullet:before {\n content: \"8\";\n}\n\n.sui-2-1-0 .sui-icon-list-number:before {\n content: \"7\";\n}\n\n.sui-2-1-0 .sui-icon-loader:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-location-marker:before {\n content: \"l\";\n}\n\n.sui-2-1-0 .sui-icon-lock:before {\n content: \"9\";\n}\n\n.sui-2-1-0 .sui-icon-magnifying-glass-search:before {\n content: \"º\";\n}\n\n.sui-2-1-0 .sui-icon-magnifying-search-glass-love:before {\n content: \"•\";\n}\n\n.sui-2-1-0 .sui-icon-mail:before {\n content: \"m\";\n}\n\n.sui-2-1-0 .sui-icon-map:before {\n content: \"4\";\n}\n\n.sui-2-1-0 .sui-icon-megaphone:before {\n content: \"Å\";\n}\n\n.sui-2-1-0 .sui-icon-microphone-audio:before {\n content: \"‰\";\n}\n\n.sui-2-1-0 .sui-icon-minus:before {\n content: \"-\";\n}\n\n.sui-2-1-0 .sui-icon-mobile:before {\n content: \"“\";\n}\n\n.sui-2-1-0 .sui-icon-mobile-signal:before {\n content: \"‛\";\n}\n\n.sui-2-1-0 .sui-icon-monitor:before {\n content: \"\\\\\"}.sui-2-1-0 .sui-icon-more:before{content:\"…\"}.sui-2-1-0 .sui-icon-mouse-scroll:before{content:\"ß\"}.sui-2-1-0 .sui-icon-news-paper:before{content:\"∑\"}.sui-2-1-0 .sui-icon-notification:before{content:\"n\"}.sui-2-1-0 .sui-icon-notification-count:before{content:\"\"}.sui-2-1-0 .sui-icon-open-new-window:before{content:\"\"}.sui-2-1-0 .sui-icon-page:before{content:\"Ò\"}.sui-2-1-0 .sui-icon-page-multiple:before{content:\"ç\"}.sui-2-1-0 .sui-icon-page-pdf:before{content:\"Æ\"}.sui-2-1-0 .sui-icon-page-search:before{content:\"Ú\"}.sui-2-1-0 .sui-icon-paint-bucket:before{content:\"∫\"}.sui-2-1-0 .sui-icon-paperclip:before{content:\"A\"}.sui-2-1-0 .sui-icon-pause:before{content:\"o\"}.sui-2-1-0 .sui-icon-paypal:before{content:\"Y\"}.sui-2-1-0 .sui-icon-pencil:before{content:\"/\"}.sui-2-1-0 .sui-icon-performance:before{content:\"\"}.sui-2-1-0 .sui-icon-photo-picture:before{content:\"D\"}.sui-2-1-0 .sui-icon-play:before{content:\"p\"}.sui-2-1-0 .sui-icon-plug-connected:before{content:\"\"}.sui-2-1-0 .sui-icon-plug-disconnected:before{content:\"\"}.sui-2-1-0 .sui-icon-plugin-2:before{content:\"O\"}.sui-2-1-0 .sui-icon-plugins:before{content:\"P\"}.sui-2-1-0 .sui-icon-plus:before{content:\"=\"}.sui-2-1-0 .sui-icon-power-on-off:before{content:\"\"}.sui-2-1-0 .sui-icon-price-tag:before{content:\"ˇ\"}.sui-2-1-0 .sui-icon-profile-female:before{content:\"ƒ\"}.sui-2-1-0 .sui-icon-profile-male:before{content:\"µ\"}.sui-2-1-0 .sui-icon-progress:before{content:\"\"}.sui-2-1-0 .sui-icon-pulse:before{content:\"„\"}.sui-2-1-0 .sui-icon-puzzle:before{content:\";\n}\n\n\"}.sui-2-1-0 .sui-icon-question:before {\n content: \"?\";\n}\n\n.sui-2-1-0 .sui-icon-quote:before {\n content: \";\";\n}\n\n.sui-2-1-0 .sui-icon-quote-2:before {\n content: \"'\";\n}\n\n.sui-2-1-0 .sui-icon-refresh:before {\n content: \"E\";\n}\n\n.sui-2-1-0 .sui-icon-reply:before {\n content: \"r\";\n}\n\n.sui-2-1-0 .sui-icon-rocket-launch:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-security-thumb-print:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-settings-slider-control:before {\n content: \"œ\";\n}\n\n.sui-2-1-0 .sui-icon-share:before {\n content: \"s\";\n}\n\n.sui-2-1-0 .sui-icon-sheild-badge:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-shipper-anchor:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-shopping-cart:before {\n content: \"Í\";\n}\n\n.sui-2-1-0 .sui-icon-sitemap:before {\n content: \"¸\";\n}\n\n.sui-2-1-0 .sui-icon-skull:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-smart-crawl:before {\n content: \"∂\";\n}\n\n.sui-2-1-0 .sui-icon-smush:before {\n content: \"‡\";\n}\n\n.sui-2-1-0 .sui-icon-snapshot:before {\n content: \"fi\";\n}\n\n.sui-2-1-0 .sui-icon-social-android:before {\n content: \".\";\n}\n\n.sui-2-1-0 .sui-icon-social-apple:before {\n content: \"a\";\n}\n\n.sui-2-1-0 .sui-icon-social-drive:before {\n content: \"v\";\n}\n\n.sui-2-1-0 .sui-icon-social-dropbox:before {\n content: \"d\";\n}\n\n.sui-2-1-0 .sui-icon-social-facebook:before {\n content: \"f\";\n}\n\n.sui-2-1-0 .sui-icon-social-github:before {\n content: \"h\";\n}\n\n.sui-2-1-0 .sui-icon-social-google-plus:before {\n content: \"g\";\n}\n\n.sui-2-1-0 .sui-icon-social-linkedin:before {\n content: \"i\";\n}\n\n.sui-2-1-0 .sui-icon-social-twitter:before {\n content: \"t\";\n}\n\n.sui-2-1-0 .sui-icon-social-youtube:before {\n content: \"y\";\n}\n\n.sui-2-1-0 .sui-icon-speed-optimize:before {\n content: \"ø\";\n}\n\n.sui-2-1-0 .sui-icon-star:before {\n content: \"S\";\n}\n\n.sui-2-1-0 .sui-icon-star-line:before {\n content: \"Ï\";\n}\n\n.sui-2-1-0 .sui-icon-stopwatch:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-storage-server-data:before {\n content: \"Î\";\n}\n\n.sui-2-1-0 .sui-icon-style-type:before {\n content: \"<\";\n}\n\n.sui-2-1-0 .sui-icon-tablet-landscape:before {\n content: \"[\";\n}\n\n.sui-2-1-0 .sui-icon-tablet-portrait:before {\n content: \"]\";\n}\n\n.sui-2-1-0 .sui-icon-target:before {\n content: \"†\";\n}\n\n.sui-2-1-0 .sui-icon-tech-support:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-testing-bottle-beaker:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-text-color:before {\n content: \"¨\";\n}\n\n.sui-2-1-0 .sui-icon-themes:before {\n content: \"T\";\n}\n\n.sui-2-1-0 .sui-icon-thumbnails:before {\n content: \"G\";\n}\n\n.sui-2-1-0 .sui-icon-ticket:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-timed-countdown:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-trash:before {\n content: \"Q\";\n}\n\n.sui-2-1-0 .sui-icon-underline:before {\n content: \"U\";\n}\n\n.sui-2-1-0 .sui-icon-unlink:before {\n content: \"6\";\n}\n\n.sui-2-1-0 .sui-icon-unlock:before {\n content: \"0\";\n}\n\n.sui-2-1-0 .sui-icon-update:before {\n content: \"®\";\n}\n\n.sui-2-1-0 .sui-icon-update-arrow:before {\n content: \"\";\n}\n\n.sui-2-1-0 .sui-icon-upfront:before {\n content: \"‚\";\n}\n\n.sui-2-1-0 .sui-icon-upload-cloud:before {\n content: \"¢\";\n}\n\n.sui-2-1-0 .sui-icon-uptime:before {\n content: \"±\";\n}\n\n.sui-2-1-0 .sui-icon-user-hero-points-trophy:before {\n content: \"1\";\n}\n\n.sui-2-1-0 .sui-icon-user-reputation-points:before {\n content: \"2\";\n}\n\n.sui-2-1-0 .sui-icon-user-star-level-up:before {\n content: \"3\";\n}\n\n.sui-2-1-0 .sui-icon-wand-magic:before {\n content: \"Z\";\n}\n\n.sui-2-1-0 .sui-icon-warning-alert:before {\n content: \"!\";\n}\n\n.sui-2-1-0 .sui-icon-web-globe-world:before {\n content: \"W\";\n}\n\n.sui-2-1-0 .sui-icon-white-label-video:before {\n content: \"u\";\n}\n\n.sui-2-1-0 .sui-icon-widget-settings-config:before {\n content: \"x\";\n}\n\n.sui-2-1-0 .sui-icon-wordpress:before {\n content: \"w\";\n}\n\n.sui-2-1-0 .sui-icon-wpmudev-logo:before {\n content: \"‹\";\n}\n\n.sui-2-1-0 .sui-icon-wpmudev-logo-2:before {\n content: \"›\";\n}\n\n.sui-2-1-0 .sui-icon-wrench-tool:before {\n content: \"⁄\";\n}\n\n.sui-2-1-0 .sui-icon-zip:before {\n content: \"Ω\";\n}\n\n.sui-2-1-0 .sui-icon-zoom-in:before {\n content: \"≠\";\n}\n\n.sui-2-1-0 .sui-icon-zoom-out:before {\n content: \"–\";\n}\n\n.sui-2-1-0 button.sui-button,\n.sui-2-1-0 a.sui-button,\n.sui-2-1-0 .sui-button {\n min-width: 80px;\n height: 30px;\n cursor: pointer;\n display: inline-block;\n position: relative;\n padding: 7px 16px;\n margin: 0 10px 0 0;\n border: 0;\n background-color: #888;\n color: #fff;\n font: 500 12px/16px \"Roboto\",Arial,sans-serif;\n letter-spacing: -.025em;\n text-transform: uppercase;\n text-align: center;\n text-decoration: none;\n border-radius: 3px;\n transition: all .3s ease;\n text-shadow: none;\n white-space: nowrap;\n}\n\n.sui-2-1-0 button.sui-button .sui-loading,\n.sui-2-1-0 a.sui-button .sui-loading,\n.sui-2-1-0 .sui-button .sui-loading {\n display: none;\n position: absolute;\n top: 50%;\n left: 50%;\n margin: -8px;\n}\n\n.sui-2-1-0 button.sui-button .sui-loading-text,\n.sui-2-1-0 a.sui-button .sui-loading-text,\n.sui-2-1-0 .sui-button .sui-loading-text {\n pointer-events: none;\n}\n\n.sui-2-1-0 button.sui-button i:before,\n.sui-2-1-0 a.sui-button i:before,\n.sui-2-1-0 .sui-button i:before {\n transition: all .3s ease;\n color: #fff;\n}\n\n.sui-2-1-0 button.sui-button:hover,\n.sui-2-1-0 button.sui-button:focus,\n.sui-2-1-0 a.sui-button:hover,\n.sui-2-1-0 a.sui-button:focus,\n.sui-2-1-0 .sui-button:hover,\n.sui-2-1-0 .sui-button:focus {\n outline: none;\n background: #7B7B7B;\n border-color: #7B7B7B;\n}\n\n.sui-2-1-0 button.sui-button:focus,\n.sui-2-1-0 button.sui-button:active,\n.sui-2-1-0 a.sui-button:focus,\n.sui-2-1-0 a.sui-button:active,\n.sui-2-1-0 .sui-button:focus,\n.sui-2-1-0 .sui-button:active {\n outline: none;\n box-shadow: none;\n background: #7B7B7B;\n border-color: #7B7B7B;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-primary,\n.sui-2-1-0 button.sui-button.sui-button-blue,\n.sui-2-1-0 a.sui-button.sui-button-primary,\n.sui-2-1-0 a.sui-button.sui-button-blue,\n.sui-2-1-0 .sui-button.sui-button-primary,\n.sui-2-1-0 .sui-button.sui-button-blue {\n background: #17A8E3;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-primary i:before,\n.sui-2-1-0 button.sui-button.sui-button-blue i:before,\n.sui-2-1-0 a.sui-button.sui-button-primary i:before,\n.sui-2-1-0 a.sui-button.sui-button-blue i:before,\n.sui-2-1-0 .sui-button.sui-button-primary i:before,\n.sui-2-1-0 .sui-button.sui-button-blue i:before {\n color: #fff;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-primary:hover,\n.sui-2-1-0 button.sui-button.sui-button-primary:focus,\n.sui-2-1-0 button.sui-button.sui-button-blue:hover,\n.sui-2-1-0 button.sui-button.sui-button-blue:focus,\n.sui-2-1-0 a.sui-button.sui-button-primary:hover,\n.sui-2-1-0 a.sui-button.sui-button-primary:focus,\n.sui-2-1-0 a.sui-button.sui-button-blue:hover,\n.sui-2-1-0 a.sui-button.sui-button-blue:focus,\n.sui-2-1-0 .sui-button.sui-button-primary:hover,\n.sui-2-1-0 .sui-button.sui-button-primary:focus,\n.sui-2-1-0 .sui-button.sui-button-blue:hover,\n.sui-2-1-0 .sui-button.sui-button-blue:focus {\n background: #0A9BD6;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-red,\n.sui-2-1-0 a.sui-button.sui-button-red,\n.sui-2-1-0 .sui-button.sui-button-red {\n background: #CB4B57;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-red i:before,\n.sui-2-1-0 a.sui-button.sui-button-red i:before,\n.sui-2-1-0 .sui-button.sui-button-red i:before {\n color: #fff;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-red:hover,\n.sui-2-1-0 button.sui-button.sui-button-red:focus,\n.sui-2-1-0 a.sui-button.sui-button-red:hover,\n.sui-2-1-0 a.sui-button.sui-button-red:focus,\n.sui-2-1-0 .sui-button.sui-button-red:hover,\n.sui-2-1-0 .sui-button.sui-button-red:focus {\n opacity: 1;\n background: #C40000;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-green,\n.sui-2-1-0 a.sui-button.sui-button-green,\n.sui-2-1-0 .sui-button.sui-button-green {\n background: #1ABC9C;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-green i:before,\n.sui-2-1-0 a.sui-button.sui-button-green i:before,\n.sui-2-1-0 .sui-button.sui-button-green i:before {\n color: #fff;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-green:hover,\n.sui-2-1-0 button.sui-button.sui-button-green:focus,\n.sui-2-1-0 a.sui-button.sui-button-green:hover,\n.sui-2-1-0 a.sui-button.sui-button-green:focus,\n.sui-2-1-0 .sui-button.sui-button-green:hover,\n.sui-2-1-0 .sui-button.sui-button-green:focus {\n opacity: 1;\n background: #148F77;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-upsell,\n.sui-2-1-0 a.sui-button.sui-button-upsell,\n.sui-2-1-0 .sui-button.sui-button-upsell {\n border: 2px solid #D1F1EA;\n color: #1ABC9C;\n width: auto;\n height: 26px;\n line-height: 15px;\n background: transparent;\n padding: 4px 16px;\n border-radius: 15px;\n text-transform: none;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-upsell:hover,\n.sui-2-1-0 button.sui-button.sui-button-upsell:focus,\n.sui-2-1-0 a.sui-button.sui-button-upsell:hover,\n.sui-2-1-0 a.sui-button.sui-button-upsell:focus,\n.sui-2-1-0 .sui-button.sui-button-upsell:hover,\n.sui-2-1-0 .sui-button.sui-button-upsell:focus {\n opacity: 1;\n border-color: #148F77;\n background: #148F77;\n color: #fff;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost,\n.sui-2-1-0 a.sui-button.sui-button-ghost,\n.sui-2-1-0 .sui-button.sui-button-ghost {\n padding: 5px 16px 7px;\n border: 2px solid #ddd;\n background: transparent;\n color: #888;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost i:before,\n.sui-2-1-0 a.sui-button.sui-button-ghost i:before,\n.sui-2-1-0 .sui-button.sui-button-ghost i:before {\n color: #888;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost:hover,\n.sui-2-1-0 button.sui-button.sui-button-ghost:focus,\n.sui-2-1-0 a.sui-button.sui-button-ghost:hover,\n.sui-2-1-0 a.sui-button.sui-button-ghost:focus,\n.sui-2-1-0 .sui-button.sui-button-ghost:hover,\n.sui-2-1-0 .sui-button.sui-button-ghost:focus {\n border-color: #888;\n background: #888;\n color: #fff;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost:hover i:before,\n.sui-2-1-0 button.sui-button.sui-button-ghost:focus i:before,\n.sui-2-1-0 a.sui-button.sui-button-ghost:hover i:before,\n.sui-2-1-0 a.sui-button.sui-button-ghost:focus i:before,\n.sui-2-1-0 .sui-button.sui-button-ghost:hover i:before,\n.sui-2-1-0 .sui-button.sui-button-ghost:focus i:before {\n color: #fff;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-blue,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-blue,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-blue {\n border-color: #17A8E3;\n color: #17A8E3;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-blue i:before,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-blue i:before,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-blue i:before {\n color: #17A8E3;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-blue:hover,\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-blue:focus,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-blue:hover,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-blue:focus,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-blue:hover,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-blue:focus {\n border-color: #17A8E3;\n background: #17A8E3;\n color: #fff;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-red,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-red,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-red {\n border-color: #C40000;\n color: #C40000;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-red i:before,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-red i:before,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-red i:before {\n color: red;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-red:hover,\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-red:focus,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-red:hover,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-red:focus,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-red:hover,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-red:focus {\n opacity: 1;\n border-color: #C40000;\n background: #C40000;\n color: #fff;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-green,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-green,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-green {\n border-color: #1ABC9C;\n color: #1ABC9C;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-green i:before,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-green i:before,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-green i:before {\n color: #1ABC9C;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-green:hover,\n.sui-2-1-0 button.sui-button.sui-button-ghost.sui-button-green:focus,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-green:hover,\n.sui-2-1-0 a.sui-button.sui-button-ghost.sui-button-green:focus,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-green:hover,\n.sui-2-1-0 .sui-button.sui-button-ghost.sui-button-green:focus {\n opacity: 1;\n border-color: #148F77;\n background: #148F77;\n color: #fff;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-lg,\n.sui-2-1-0 a.sui-button.sui-button-lg,\n.sui-2-1-0 .sui-button.sui-button-lg {\n height: 40px;\n padding: 11px 20px 9px;\n border-radius: 3px;\n font: 500 15px/20px \"Roboto\",Arial,sans-serif;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-lg.sui-button-ghost,\n.sui-2-1-0 a.sui-button.sui-button-lg.sui-button-ghost,\n.sui-2-1-0 .sui-button.sui-button-lg.sui-button-ghost {\n padding: 9px 20px 9px;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-onload,\n.sui-2-1-0 a.sui-button.sui-button-onload,\n.sui-2-1-0 .sui-button.sui-button-onload {\n pointer-events: none;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-onload .sui-loading,\n.sui-2-1-0 a.sui-button.sui-button-onload .sui-loading,\n.sui-2-1-0 .sui-button.sui-button-onload .sui-loading {\n display: block;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-onload,\n.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-blue,\n.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-green,\n.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-red,\n.sui-2-1-0 a.sui-button.sui-button-onload,\n.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-blue,\n.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-green,\n.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-red,\n.sui-2-1-0 .sui-button.sui-button-onload,\n.sui-2-1-0 .sui-button.sui-button-onload.sui-button-blue,\n.sui-2-1-0 .sui-button.sui-button-onload.sui-button-green,\n.sui-2-1-0 .sui-button.sui-button-onload.sui-button-red {\n background: #E6E6E6;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-onload .sui-loading-text,\n.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-blue .sui-loading-text,\n.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-green .sui-loading-text,\n.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-red .sui-loading-text,\n.sui-2-1-0 a.sui-button.sui-button-onload .sui-loading-text,\n.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-blue .sui-loading-text,\n.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-green .sui-loading-text,\n.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-red .sui-loading-text,\n.sui-2-1-0 .sui-button.sui-button-onload .sui-loading-text,\n.sui-2-1-0 .sui-button.sui-button-onload.sui-button-blue .sui-loading-text,\n.sui-2-1-0 .sui-button.sui-button-onload.sui-button-green .sui-loading-text,\n.sui-2-1-0 .sui-button.sui-button-onload.sui-button-red .sui-loading-text {\n color: #E6E6E6;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-ghost,\n.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-ghost,\n.sui-2-1-0 .sui-button.sui-button-onload.sui-button-ghost {\n border-color: #E6E6E6;\n background: transparent;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-onload.sui-button-ghost .sui-loading-text,\n.sui-2-1-0 a.sui-button.sui-button-onload.sui-button-ghost .sui-loading-text,\n.sui-2-1-0 .sui-button.sui-button-onload.sui-button-ghost .sui-loading-text {\n color: transparent;\n}\n\n.sui-2-1-0 button.sui-button:disabled,\n.sui-2-1-0 button.sui-button[disabled],\n.sui-2-1-0 button.sui-button.disabled,\n.sui-2-1-0 a.sui-button:disabled,\n.sui-2-1-0 a.sui-button[disabled],\n.sui-2-1-0 a.sui-button.disabled,\n.sui-2-1-0 .sui-button:disabled,\n.sui-2-1-0 .sui-button[disabled],\n.sui-2-1-0 .sui-button.disabled {\n color: #aaa;\n border-color: #ddd;\n background: #F8F8F8;\n box-shadow: none;\n pointer-events: none;\n cursor: default;\n -webkit-transform: none;\n transform: none;\n}\n\n.sui-2-1-0 button.sui-button:disabled:hover,\n.sui-2-1-0 button.sui-button:disabled:focus,\n.sui-2-1-0 button.sui-button[disabled]:hover,\n.sui-2-1-0 button.sui-button[disabled]:focus,\n.sui-2-1-0 button.sui-button.disabled:hover,\n.sui-2-1-0 button.sui-button.disabled:focus,\n.sui-2-1-0 a.sui-button:disabled:hover,\n.sui-2-1-0 a.sui-button:disabled:focus,\n.sui-2-1-0 a.sui-button[disabled]:hover,\n.sui-2-1-0 a.sui-button[disabled]:focus,\n.sui-2-1-0 a.sui-button.disabled:hover,\n.sui-2-1-0 a.sui-button.disabled:focus,\n.sui-2-1-0 .sui-button:disabled:hover,\n.sui-2-1-0 .sui-button:disabled:focus,\n.sui-2-1-0 .sui-button[disabled]:hover,\n.sui-2-1-0 .sui-button[disabled]:focus,\n.sui-2-1-0 .sui-button.disabled:hover,\n.sui-2-1-0 .sui-button.disabled:focus {\n color: #aaa;\n border-color: #ddd;\n background: #F8F8F8;\n box-shadow: none;\n cursor: default;\n -webkit-transform: none;\n transform: none;\n}\n\n.sui-2-1-0 button.sui-button:last-child,\n.sui-2-1-0 a.sui-button:last-child,\n.sui-2-1-0 .sui-button:last-child {\n margin: 0;\n}\n\n.sui-2-1-0 button.sui-button.sui-button-icon,\n.sui-2-1-0 a.sui-button.sui-button-icon,\n.sui-2-1-0 .sui-button.sui-button-icon {\n min-width: 0;\n}\n\n.sui-2-1-0 .sui-toggle {\n position: relative;\n display: inline-block;\n width: 34px;\n height: 16px;\n margin-right: 10px;\n}\n\n.sui-2-1-0 .sui-toggle.sui-toggle-label {\n top: 3px;\n}\n\n.sui-2-1-0 .sui-toggle-label {\n vertical-align: text-bottom;\n line-height: 22px;\n margin-left: 10px;\n}\n\n.sui-2-1-0 .sui-toggle input[type=\"checkbox\"][disabled]+.sui-toggle-slider {\n opacity: .5;\n cursor: not-allowed;\n}\n\n.sui-2-1-0 .sui-toggle-slider {\n position: absolute;\n cursor: pointer;\n top: 0;\n left: 0;\n right: 0;\n bottom: 0;\n background-color: #F8F8F8;\n border-radius: 100px;\n transition: .4s;\n border: 1px solid #E6E6E6;\n}\n\n.sui-2-1-0 .sui-toggle-slider:before {\n position: absolute;\n content: \"\";\n height: 16px;\n width: 16px;\n left: -1px;\n bottom: -1px;\n background-color: #888;\n border-radius: 50%;\n transition: .2s;\n}\n\n.sui-2-1-0 input[type=\"checkbox\"]:checked+.sui-toggle-slider:before {\n background-color: #17A8E3;\n transform: translateX(18px);\n}\n\n.sui-2-1-0 .sui-wrap * {\n box-sizing: border-box;\n}\n\n.sui-2-1-0 .sui-wrap *:before,\n.sui-2-1-0 .sui-wrap *:after {\n box-sizing: border-box;\n}\n\n.sui-2-1-0 .sui-box {\n position: relative;\n min-height: 20px;\n background-color: #fff;\n border-radius: 5px;\n margin-bottom: 30px;\n box-shadow: 0 2px 0 #EAEAEA;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box {\n margin-bottom: 20px;\n }\n}\n\n.sui-2-1-0 .sui-box-header {\n border-bottom: 1px solid #EAEAEA;\n padding: 15px 30px;\n display: flex;\n align-items: center;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-header {\n padding: 15px 20px;\n }\n}\n\n.sui-2-1-0 .sui-box-header>h3>i {\n line-height: 30px;\n}\n\n.sui-2-1-0 .sui-box-body {\n padding: 30px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-body {\n padding: 20px;\n }\n}\n\n.sui-2-1-0 .sui-box-body .sui-box-settings-row {\n position: relative;\n border-bottom: 1px solid #E6E6E6;\n padding-bottom: 30px;\n display: table;\n width: 100%;\n margin-top: 30px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-body .sui-box-settings-row {\n display: block;\n margin-top: 20px;\n padding-bottom: 20px;\n }\n}\n\n.sui-2-1-0 .sui-box-body .sui-box-settings-row:first-of-type {\n margin-top: 0;\n}\n\n.sui-2-1-0 .sui-box-body .sui-box-settings-row:last-of-type {\n padding-bottom: 0;\n border: 0;\n}\n\n.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-1 {\n display: table-cell;\n width: 230px;\n padding-right: 30px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-1 {\n display: block;\n padding-top: 20px;\n width: 100%;\n padding-right: 0;\n }\n\n .sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-1:first-child {\n padding-top: 0;\n }\n}\n\n.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-2 {\n display: table-cell;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-2 {\n display: block;\n padding-top: 20px;\n }\n}\n\n.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-box-settings-col-2 .sui-settings-label {\n color: #666;\n}\n\n.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-form-field:last-of-type {\n margin-bottom: 0;\n}\n\n.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-settings-label {\n display: block;\n font-weight: 500;\n line-height: 22px;\n color: #333;\n}\n\n.sui-2-1-0 .sui-box-body .sui-box-settings-row .sui-description {\n line-height: 22px;\n}\n\n.sui-2-1-0 .sui-box-body .sui-box-settings-row.sui-disabled {\n background-color: rgba(242,242,242,0.5);\n opacity: 0.5;\n pointer-events: none;\n}\n\n.sui-2-1-0 .sui-box-body.sui-upsell-items {\n padding: 0;\n}\n\n.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row {\n border-bottom: none;\n margin-top: 0;\n}\n\n.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:before {\n position: absolute;\n display: block;\n clear: both;\n height: 1px;\n content: '';\n background-color: #E6E6E6;\n left: 30px;\n right: 30px;\n top: 0;\n}\n\n.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:first-of-type {\n margin-top: 0;\n}\n\n.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:first-of-type:before {\n display: none;\n}\n\n.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:last-of-type {\n padding-bottom: 30px;\n}\n\n.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:last-of-type:before {\n display: none;\n}\n\n.sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row {\n padding-right: 30px;\n padding-left: 30px;\n padding-top: 31px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row {\n padding-right: 20px;\n padding-left: 20px;\n padding-top: 21px;\n }\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-body.sui-upsell-items .sui-box-settings-row:first-of-type {\n padding-top: 20px;\n }\n}\n\n.sui-2-1-0 .sui-box-body .sui-upsell-row {\n position: relative;\n}\n\n.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-image {\n position: absolute;\n bottom: 0;\n width: 100px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-image {\n display: none;\n }\n}\n\n.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice {\n padding-left: 130px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice {\n padding-left: 0;\n }\n}\n\n.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice p {\n position: relative;\n border-radius: 4px;\n background-color: #E1F6FF;\n padding: 20px 30px;\n color: #333;\n font-size: 13px;\n line-height: 22px;\n}\n\n.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice p:after {\n position: absolute;\n top: 43%;\n left: 0;\n margin-left: -7px;\n content: '';\n width: 0;\n height: 0;\n border-top: 7px solid transparent;\n border-bottom: 7px solid transparent;\n border-right: 7px solid #E1F6FF;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice p:after {\n display: none;\n }\n}\n\n.sui-2-1-0 .sui-box-body .sui-upsell-row .sui-upsell-notice p a {\n color: #333;\n text-decoration: underline;\n font-weight: 500;\n}\n\n.sui-2-1-0 .sui-box-body .sui-settings-box {\n padding: 30px;\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-body .sui-settings-box {\n padding: 20px;\n }\n}\n\n.sui-2-1-0 .sui-box-footer {\n border-top: 1px solid #EAEAEA;\n padding: 30px;\n display: flex;\n align-items: center;\n}\n\n.sui-2-1-0 .sui-box-footer.sui-pull-up {\n margin-top: -15px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-box-footer {\n padding: 20px;\n }\n}\n\n.sui-2-1-0 .sui-box-title {\n display: block;\n font-weight: 700;\n font-size: 15px;\n line-height: 30px;\n font-family: \"Roboto\",Arial,sans-serif;\n margin: 0;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.sui-2-1-0 .sui-box-title * {\n vertical-align: middle;\n}\n\n.sui-2-1-0 .sui-box-title i {\n margin-right: 10px;\n display: block;\n float: left;\n}\n\n.sui-2-1-0 .sui-box-title i:before {\n color: inherit;\n font-size: 20px;\n vertical-align: text-bottom;\n}\n\n.sui-2-1-0 h3.sui-box-title {\n text-transform: none;\n}\n\n.sui-2-1-0 .sui-with-bottom-border {\n padding-bottom: 30px;\n border-bottom: 1px solid #E6E6E6;\n margin-bottom: 30px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-with-bottom-border {\n margin-bottom: 20px;\n padding-bottom: 20px;\n }\n}\n\n.sui-2-1-0 .sui-border-frame {\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n margin: 10px 0 0;\n padding: 30px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-border-frame {\n padding: 20px;\n }\n}\n\n.sui-2-1-0 .sui-col,\n.sui-2-1-0 [class*=\"sui-col-\"] {\n min-height: 1px;\n padding-left: 15px;\n padding-right: 15px;\n position: relative;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-col,\n .sui-2-1-0 [class*=\"sui-col-\"] {\n padding-left: 10px;\n padding-right: 10px;\n }\n}\n\n.sui-2-1-0 .sui-row {\n display: flex;\n flex-flow: wrap;\n margin-right: -15px;\n margin-left: -15px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-row {\n margin-left: -10px;\n margin-right: -10px;\n }\n}\n\n.sui-2-1-0 .sui-reverse {\n flex-direction: row-reverse;\n}\n\n.sui-2-1-0 .sui-col {\n flex: 1;\n}\n\n.sui-2-1-0 [class*=\"sui-col-\"] {\n flex: 0 0 auto;\n width: 100%;\n max-width: 100%;\n flex-basis: 100%;\n}\n\n.sui-2-1-0 .sui-col-xs-12 {\n width: 100%;\n max-width: 100%;\n flex-basis: 100%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-12 {\n margin-left: 100%;\n}\n\n.sui-2-1-0 .sui-col-xs-11 {\n width: 91.66667%;\n max-width: 91.66667%;\n flex-basis: 91.66667%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-11 {\n margin-left: 91.66667%;\n}\n\n.sui-2-1-0 .sui-col-xs-10 {\n width: 83.33333%;\n max-width: 83.33333%;\n flex-basis: 83.33333%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-10 {\n margin-left: 83.33333%;\n}\n\n.sui-2-1-0 .sui-col-xs-9 {\n width: 75%;\n max-width: 75%;\n flex-basis: 75%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-9 {\n margin-left: 75%;\n}\n\n.sui-2-1-0 .sui-col-xs-8 {\n width: 66.66667%;\n max-width: 66.66667%;\n flex-basis: 66.66667%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-8 {\n margin-left: 66.66667%;\n}\n\n.sui-2-1-0 .sui-col-xs-7 {\n width: 58.33333%;\n max-width: 58.33333%;\n flex-basis: 58.33333%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-7 {\n margin-left: 58.33333%;\n}\n\n.sui-2-1-0 .sui-col-xs-6 {\n width: 50%;\n max-width: 50%;\n flex-basis: 50%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-6 {\n margin-left: 50%;\n}\n\n.sui-2-1-0 .sui-col-xs-5 {\n width: 41.66667%;\n max-width: 41.66667%;\n flex-basis: 41.66667%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-5 {\n margin-left: 41.66667%;\n}\n\n.sui-2-1-0 .sui-col-xs-4 {\n width: 33.33333%;\n max-width: 33.33333%;\n flex-basis: 33.33333%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-4 {\n margin-left: 33.33333%;\n}\n\n.sui-2-1-0 .sui-col-xs-3 {\n width: 25%;\n max-width: 25%;\n flex-basis: 25%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-3 {\n margin-left: 25%;\n}\n\n.sui-2-1-0 .sui-col-xs-2 {\n width: 16.66667%;\n max-width: 16.66667%;\n flex-basis: 16.66667%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-2 {\n margin-left: 16.66667%;\n}\n\n.sui-2-1-0 .sui-col-xs-1 {\n width: 8.33333%;\n max-width: 8.33333%;\n flex-basis: 8.33333%;\n}\n\n.sui-2-1-0 .sui-col-xs-offset-1 {\n margin-left: 8.33333%;\n}\n\n@media (min-width: 0px) {\n .sui-2-1-0 .sui-col-xs-12 {\n width: 100%;\n max-width: 100%;\n flex-basis: 100%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-12 {\n margin-left: 100%;\n }\n\n .sui-2-1-0 .sui-col-xs-11 {\n width: 91.66667%;\n max-width: 91.66667%;\n flex-basis: 91.66667%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-11 {\n margin-left: 91.66667%;\n }\n\n .sui-2-1-0 .sui-col-xs-10 {\n width: 83.33333%;\n max-width: 83.33333%;\n flex-basis: 83.33333%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-10 {\n margin-left: 83.33333%;\n }\n\n .sui-2-1-0 .sui-col-xs-9 {\n width: 75%;\n max-width: 75%;\n flex-basis: 75%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-9 {\n margin-left: 75%;\n }\n\n .sui-2-1-0 .sui-col-xs-8 {\n width: 66.66667%;\n max-width: 66.66667%;\n flex-basis: 66.66667%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-8 {\n margin-left: 66.66667%;\n }\n\n .sui-2-1-0 .sui-col-xs-7 {\n width: 58.33333%;\n max-width: 58.33333%;\n flex-basis: 58.33333%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-7 {\n margin-left: 58.33333%;\n }\n\n .sui-2-1-0 .sui-col-xs-6 {\n width: 50%;\n max-width: 50%;\n flex-basis: 50%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-6 {\n margin-left: 50%;\n }\n\n .sui-2-1-0 .sui-col-xs-5 {\n width: 41.66667%;\n max-width: 41.66667%;\n flex-basis: 41.66667%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-5 {\n margin-left: 41.66667%;\n }\n\n .sui-2-1-0 .sui-col-xs-4 {\n width: 33.33333%;\n max-width: 33.33333%;\n flex-basis: 33.33333%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-4 {\n margin-left: 33.33333%;\n }\n\n .sui-2-1-0 .sui-col-xs-3 {\n width: 25%;\n max-width: 25%;\n flex-basis: 25%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-3 {\n margin-left: 25%;\n }\n\n .sui-2-1-0 .sui-col-xs-2 {\n width: 16.66667%;\n max-width: 16.66667%;\n flex-basis: 16.66667%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-2 {\n margin-left: 16.66667%;\n }\n\n .sui-2-1-0 .sui-col-xs-1 {\n width: 8.33333%;\n max-width: 8.33333%;\n flex-basis: 8.33333%;\n }\n\n .sui-2-1-0 .sui-col-xs-offset-1 {\n margin-left: 8.33333%;\n }\n}\n\n@media (min-width: 480px) {\n .sui-2-1-0 .sui-col-sm-12 {\n width: 100%;\n max-width: 100%;\n flex-basis: 100%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-12 {\n margin-left: 100%;\n }\n\n .sui-2-1-0 .sui-col-sm-11 {\n width: 91.66667%;\n max-width: 91.66667%;\n flex-basis: 91.66667%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-11 {\n margin-left: 91.66667%;\n }\n\n .sui-2-1-0 .sui-col-sm-10 {\n width: 83.33333%;\n max-width: 83.33333%;\n flex-basis: 83.33333%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-10 {\n margin-left: 83.33333%;\n }\n\n .sui-2-1-0 .sui-col-sm-9 {\n width: 75%;\n max-width: 75%;\n flex-basis: 75%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-9 {\n margin-left: 75%;\n }\n\n .sui-2-1-0 .sui-col-sm-8 {\n width: 66.66667%;\n max-width: 66.66667%;\n flex-basis: 66.66667%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-8 {\n margin-left: 66.66667%;\n }\n\n .sui-2-1-0 .sui-col-sm-7 {\n width: 58.33333%;\n max-width: 58.33333%;\n flex-basis: 58.33333%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-7 {\n margin-left: 58.33333%;\n }\n\n .sui-2-1-0 .sui-col-sm-6 {\n width: 50%;\n max-width: 50%;\n flex-basis: 50%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-6 {\n margin-left: 50%;\n }\n\n .sui-2-1-0 .sui-col-sm-5 {\n width: 41.66667%;\n max-width: 41.66667%;\n flex-basis: 41.66667%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-5 {\n margin-left: 41.66667%;\n }\n\n .sui-2-1-0 .sui-col-sm-4 {\n width: 33.33333%;\n max-width: 33.33333%;\n flex-basis: 33.33333%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-4 {\n margin-left: 33.33333%;\n }\n\n .sui-2-1-0 .sui-col-sm-3 {\n width: 25%;\n max-width: 25%;\n flex-basis: 25%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-3 {\n margin-left: 25%;\n }\n\n .sui-2-1-0 .sui-col-sm-2 {\n width: 16.66667%;\n max-width: 16.66667%;\n flex-basis: 16.66667%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-2 {\n margin-left: 16.66667%;\n }\n\n .sui-2-1-0 .sui-col-sm-1 {\n width: 8.33333%;\n max-width: 8.33333%;\n flex-basis: 8.33333%;\n }\n\n .sui-2-1-0 .sui-col-sm-offset-1 {\n margin-left: 8.33333%;\n }\n}\n\n@media (min-width: 783px) {\n .sui-2-1-0 .sui-col-md-12 {\n width: 100%;\n max-width: 100%;\n flex-basis: 100%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-12 {\n margin-left: 100%;\n }\n\n .sui-2-1-0 .sui-col-md-11 {\n width: 91.66667%;\n max-width: 91.66667%;\n flex-basis: 91.66667%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-11 {\n margin-left: 91.66667%;\n }\n\n .sui-2-1-0 .sui-col-md-10 {\n width: 83.33333%;\n max-width: 83.33333%;\n flex-basis: 83.33333%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-10 {\n margin-left: 83.33333%;\n }\n\n .sui-2-1-0 .sui-col-md-9 {\n width: 75%;\n max-width: 75%;\n flex-basis: 75%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-9 {\n margin-left: 75%;\n }\n\n .sui-2-1-0 .sui-col-md-8 {\n width: 66.66667%;\n max-width: 66.66667%;\n flex-basis: 66.66667%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-8 {\n margin-left: 66.66667%;\n }\n\n .sui-2-1-0 .sui-col-md-7 {\n width: 58.33333%;\n max-width: 58.33333%;\n flex-basis: 58.33333%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-7 {\n margin-left: 58.33333%;\n }\n\n .sui-2-1-0 .sui-col-md-6 {\n width: 50%;\n max-width: 50%;\n flex-basis: 50%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-6 {\n margin-left: 50%;\n }\n\n .sui-2-1-0 .sui-col-md-5 {\n width: 41.66667%;\n max-width: 41.66667%;\n flex-basis: 41.66667%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-5 {\n margin-left: 41.66667%;\n }\n\n .sui-2-1-0 .sui-col-md-4 {\n width: 33.33333%;\n max-width: 33.33333%;\n flex-basis: 33.33333%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-4 {\n margin-left: 33.33333%;\n }\n\n .sui-2-1-0 .sui-col-md-3 {\n width: 25%;\n max-width: 25%;\n flex-basis: 25%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-3 {\n margin-left: 25%;\n }\n\n .sui-2-1-0 .sui-col-md-2 {\n width: 16.66667%;\n max-width: 16.66667%;\n flex-basis: 16.66667%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-2 {\n margin-left: 16.66667%;\n }\n\n .sui-2-1-0 .sui-col-md-1 {\n width: 8.33333%;\n max-width: 8.33333%;\n flex-basis: 8.33333%;\n }\n\n .sui-2-1-0 .sui-col-md-offset-1 {\n margin-left: 8.33333%;\n }\n}\n\n@media (min-width: 1200px) {\n .sui-2-1-0 .sui-col-lg-12 {\n width: 100%;\n max-width: 100%;\n flex-basis: 100%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-12 {\n margin-left: 100%;\n }\n\n .sui-2-1-0 .sui-col-lg-11 {\n width: 91.66667%;\n max-width: 91.66667%;\n flex-basis: 91.66667%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-11 {\n margin-left: 91.66667%;\n }\n\n .sui-2-1-0 .sui-col-lg-10 {\n width: 83.33333%;\n max-width: 83.33333%;\n flex-basis: 83.33333%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-10 {\n margin-left: 83.33333%;\n }\n\n .sui-2-1-0 .sui-col-lg-9 {\n width: 75%;\n max-width: 75%;\n flex-basis: 75%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-9 {\n margin-left: 75%;\n }\n\n .sui-2-1-0 .sui-col-lg-8 {\n width: 66.66667%;\n max-width: 66.66667%;\n flex-basis: 66.66667%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-8 {\n margin-left: 66.66667%;\n }\n\n .sui-2-1-0 .sui-col-lg-7 {\n width: 58.33333%;\n max-width: 58.33333%;\n flex-basis: 58.33333%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-7 {\n margin-left: 58.33333%;\n }\n\n .sui-2-1-0 .sui-col-lg-6 {\n width: 50%;\n max-width: 50%;\n flex-basis: 50%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-6 {\n margin-left: 50%;\n }\n\n .sui-2-1-0 .sui-col-lg-5 {\n width: 41.66667%;\n max-width: 41.66667%;\n flex-basis: 41.66667%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-5 {\n margin-left: 41.66667%;\n }\n\n .sui-2-1-0 .sui-col-lg-4 {\n width: 33.33333%;\n max-width: 33.33333%;\n flex-basis: 33.33333%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-4 {\n margin-left: 33.33333%;\n }\n\n .sui-2-1-0 .sui-col-lg-3 {\n width: 25%;\n max-width: 25%;\n flex-basis: 25%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-3 {\n margin-left: 25%;\n }\n\n .sui-2-1-0 .sui-col-lg-2 {\n width: 16.66667%;\n max-width: 16.66667%;\n flex-basis: 16.66667%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-2 {\n margin-left: 16.66667%;\n }\n\n .sui-2-1-0 .sui-col-lg-1 {\n width: 8.33333%;\n max-width: 8.33333%;\n flex-basis: 8.33333%;\n }\n\n .sui-2-1-0 .sui-col-lg-offset-1 {\n margin-left: 8.33333%;\n }\n}\n\n.sui-2-1-0 .sui-notice-top,\n.sui-2-1-0 .sui-notice {\n color: #333;\n font-weight: 400;\n padding: 15px 30px;\n position: relative;\n width: 100%;\n border-radius: 5px;\n margin-bottom: 30px;\n background-color: #F2F2F2;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-notice-top,\n .sui-2-1-0 .sui-notice {\n margin-bottom: 20px;\n padding: 15px;\n }\n}\n\n.sui-2-1-0 .sui-notice-top:last-child,\n.sui-2-1-0 .sui-notice:last-child {\n margin-bottom: 0;\n}\n\n.sui-2-1-0 .sui-notice-top p,\n.sui-2-1-0 .sui-notice p {\n padding: 0 0 0 30px;\n color: #333;\n}\n\n.sui-2-1-0 .sui-notice-top p:before,\n.sui-2-1-0 .sui-notice p:before {\n content: \"I\";\n}\n\n.sui-2-1-0 .sui-notice-top p a,\n.sui-2-1-0 .sui-notice p a {\n color: #333;\n}\n\n.sui-2-1-0 .sui-notice-top p a:hover,\n.sui-2-1-0 .sui-notice-top p a:focus,\n.sui-2-1-0 .sui-notice p a:hover,\n.sui-2-1-0 .sui-notice p a:focus {\n color: #333;\n}\n\n.sui-2-1-0 .sui-notice-top p:before,\n.sui-2-1-0 .sui-notice p:before {\n color: #888;\n vertical-align: middle;\n top: -2px;\n margin-left: -30px;\n position: relative;\n margin-right: 10px;\n font-size: 20px;\n}\n\n.sui-2-1-0 .sui-notice-top p:last-of-type,\n.sui-2-1-0 .sui-notice p:last-of-type {\n margin: 0;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-success,\n.sui-2-1-0 .sui-notice.sui-notice-success {\n background-color: #D1F1EA;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-success p:before,\n.sui-2-1-0 .sui-notice.sui-notice-success p:before {\n content: \"_\";\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-success p:before,\n.sui-2-1-0 .sui-notice.sui-notice-success p:before {\n color: #1ABC9C;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-warning,\n.sui-2-1-0 .sui-notice.sui-notice-warning {\n background-color: #FFF5D5;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-warning p:before,\n.sui-2-1-0 .sui-notice.sui-notice-warning p:before {\n content: \"!\";\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-warning p:before,\n.sui-2-1-0 .sui-notice.sui-notice-warning p:before {\n color: #FECF2F;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-error,\n.sui-2-1-0 .sui-notice.sui-notice-error {\n background-color: #FFE5E9;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-error p:before,\n.sui-2-1-0 .sui-notice.sui-notice-error p:before {\n content: \"!\";\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-error p:before,\n.sui-2-1-0 .sui-notice.sui-notice-error p:before {\n color: #FF7F83;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-info,\n.sui-2-1-0 .sui-notice.sui-notice-info {\n background-color: #E1F6FF;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-info p:before,\n.sui-2-1-0 .sui-notice.sui-notice-info p:before {\n color: #17A8E3;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-sm p,\n.sui-2-1-0 .sui-notice.sui-notice-sm p {\n font-size: 13px;\n line-height: 22px;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-sm p:before,\n.sui-2-1-0 .sui-notice.sui-notice-sm p:before {\n font-size: 16px;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-sm a,\n.sui-2-1-0 .sui-notice.sui-notice-sm a {\n font-size: 13px;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-sm .sui-notice-dismiss a,\n.sui-2-1-0 .sui-notice.sui-notice-sm .sui-notice-dismiss a {\n margin-left: -14px;\n}\n\n.sui-2-1-0 .sui-notice-top .sui-notice-dismiss,\n.sui-2-1-0 .sui-notice .sui-notice-dismiss {\n padding: 0 0 0 30px;\n display: block;\n margin-top: 6px;\n margin-bottom: -5px;\n}\n\n.sui-2-1-0 .sui-notice-top .sui-notice-dismiss a,\n.sui-2-1-0 .sui-notice .sui-notice-dismiss a {\n font-weight: 500;\n font-size: 12px;\n text-transform: uppercase;\n text-decoration: none;\n color: #888;\n line-height: 16px;\n padding: 5px 10px;\n margin-left: -10px;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-icon-tick p:before,\n.sui-2-1-0 .sui-notice.sui-notice-icon-tick p:before {\n content: \"_\";\n}\n\n.sui-2-1-0 .sui-notice-top.sui-no-notice-icon p,\n.sui-2-1-0 .sui-notice.sui-no-notice-icon p {\n padding: 0;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-no-notice-icon p:before,\n.sui-2-1-0 .sui-notice.sui-no-notice-icon p:before {\n content: '';\n margin: 0;\n padding: 0;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-top,\n.sui-2-1-0 .sui-notice.sui-notice-top {\n position: absolute;\n top: 0;\n width: 600px;\n z-index: 100;\n left: 50%;\n transform: translateX(-50%);\n box-shadow: rgba(0,0,0,0.15) 0 5px 25px 0;\n}\n\n.sui-2-1-0 .sui-notice-top.sui-notice-top:last-of-type,\n.sui-2-1-0 .sui-notice.sui-notice-top:last-of-type {\n margin: 0;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-notice-top.sui-notice-top,\n .sui-2-1-0 .sui-notice.sui-notice-top {\n width: 90%;\n }\n}\n\n@media (max-width: 600px) {\n .sui-2-1-0 .sui-notice-top.sui-notice-top,\n .sui-2-1-0 .sui-notice.sui-notice-top {\n top: 46px;\n }\n}\n\n.sui-2-1-0 .sui-notice-top .sui-notice-buttons,\n.sui-2-1-0 .sui-notice .sui-notice-buttons {\n margin: 10px 30px 0;\n}\n\n.sui-2-1-0 p+.sui-notice {\n margin-top: 30px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 p+.sui-notice {\n margin-top: 20px;\n }\n}\n\n.sui-2-1-0 .sui-header {\n display: flex;\n flex-wrap: wrap;\n align-items: center;\n position: relative;\n line-height: 1;\n margin-bottom: 30px;\n}\n\n.sui-2-1-0 .sui-header h1 {\n text-transform: uppercase;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-header h1 {\n width: 100%;\n }\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-header {\n margin-bottom: 20px;\n }\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-header .sui-actions-right {\n margin-left: 0;\n margin-right: auto;\n margin-top: 10px;\n }\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-header .sui-actions-left {\n margin-left: 0;\n margin-right: 0;\n margin-top: 10px;\n }\n}\n\n.sui-2-1-0 .sui-header-title {\n color: #333;\n margin: 0;\n text-align: left;\n text-transform: uppercase;\n font-weight: bold;\n max-width: none;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n\n.sui-2-1-0 .sui-summary {\n padding: 15px 30px 0;\n background-image: url(\"../../node_modules/@wpmudev/shared-ui/dist/images/graphic-hb-minify-summary@2x.png\");\n background-repeat: no-repeat;\n background-position: 3% 100%;\n background-size: 192px 172px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-summary {\n padding: 20px 20px 10px;\n }\n}\n\n@media (max-width: 1100px) {\n .sui-2-1-0 .sui-summary {\n background-image: none !important;\n }\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-image-space {\n width: 100%;\n min-height: 172px;\n float: left;\n max-width: 192px;\n}\n\n@media (max-width: 1100px) {\n .sui-2-1-0 .sui-summary .sui-summary-image-space {\n display: none !important;\n }\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment {\n position: relative;\n color: #333333;\n width: calc(100% / 2 - 98px);\n padding-left: 5%;\n display: inline-block;\n vertical-align: middle;\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details {\n position: absolute;\n top: -5px;\n transform: translateY(-50%);\n min-height: 80px;\n}\n\n@media (max-width: 600px) {\n .sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details {\n position: inherit;\n top: 0;\n transform: translateY(0);\n }\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-sub {\n display: block;\n font-size: 13px;\n margin-top: 0;\n margin-bottom: 20px;\n line-height: 22px;\n color: #888;\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-sub:last-of-type {\n margin-bottom: 0;\n}\n\n@media (max-width: 960px) {\n .sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-sub {\n margin-bottom: 5px;\n }\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-percent {\n font-size: 13px;\n line-height: 22px;\n margin-left: -5px;\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i {\n position: relative;\n top: -22px;\n left: 5px;\n font-size: 16px;\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i+.sui-summary-percent {\n margin-left: -20px;\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i.sui-warning:before,\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i.sui-info:before,\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i.sui-error:before,\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details i.sui-success:before {\n color: inherit;\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-large {\n font-size: 50px;\n line-height: 55px;\n margin-bottom: 20px;\n}\n\n@media (max-width: 1100px) {\n .sui-2-1-0 .sui-summary .sui-summary-segment {\n text-align: left;\n padding-left: 0;\n width: 49%;\n }\n}\n\n@media (max-width: 600px) {\n .sui-2-1-0 .sui-summary .sui-summary-segment {\n display: block;\n text-align: center;\n width: 100%;\n }\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-list {\n margin: 0 0 15px;\n}\n\n@media (max-width: 783px) {\n .sui-2-1-0 .sui-summary .sui-summary-segment .sui-list {\n margin: 0 0 10px;\n }\n}\n\n@media (max-width: 600px) {\n .sui-2-1-0 .sui-summary .sui-summary-segment .sui-list {\n text-align: left;\n }\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-list .sui-list-detail {\n font-size: 13px;\n font-weight: 500;\n line-height: 22px;\n color: #888;\n}\n\n.sui-2-1-0 .sui-summary .sui-summary-segment .sui-list .sui-list-detail i {\n line-height: 0;\n vertical-align: middle;\n}\n\n.sui-2-1-0 .sui-list {\n list-style: none;\n margin: 0 0 20px;\n padding: 0;\n}\n\n.sui-2-1-0 .sui-list.sui-list-inline {\n margin-top: 20px;\n margin-bottom: 0;\n}\n\n.sui-2-1-0 .sui-list.sui-list-standalone {\n margin-bottom: 20px;\n}\n\n.sui-2-1-0 .sui-list>li {\n position: relative;\n display: table;\n width: 100%;\n padding: 6px 0;\n margin: 0;\n border-collapse: collapse;\n border-spacing: 0;\n}\n\n.sui-2-1-0 .sui-list>li>div {\n display: table-row;\n}\n\n.sui-2-1-0 .sui-list>li.sui-list-header {\n color: #333333;\n font-size: 13px;\n font-weight: bold;\n line-height: 30px;\n padding-bottom: 0;\n}\n\n.sui-2-1-0 .sui-list>li.sui-list-header span {\n display: table-cell;\n border-bottom: 1px solid #EEEEEE;\n}\n\n.sui-2-1-0 .sui-list>li.sui-list-header span:nth-child(2) {\n text-align: right;\n}\n\n.sui-2-1-0 .sui-list>li .sui-list-detail {\n color: #888;\n text-align: right;\n padding: 10px 0;\n font-size: 13px;\n font-weight: 500;\n line-height: 22px;\n}\n\n.sui-2-1-0 .sui-list>li .sui-list-detail .sui-tag {\n font-family: \"Roboto\",Arial,sans-serif;\n}\n\n.sui-2-1-0 .sui-list>li .sui-list-detail,\n.sui-2-1-0 .sui-list>li .sui-list-label {\n display: table-cell;\n vertical-align: middle;\n cursor: default;\n border-bottom: 1px solid #EEEEEE;\n}\n\n.sui-2-1-0 .sui-list>li .sui-list-label {\n font-size: 13px;\n font-weight: 500;\n line-height: 22px;\n padding: 19px 10px 19px 0;\n color: #333;\n}\n\n.sui-2-1-0 .sui-list>li .sui-list-label.sui-list-header {\n font-family: \"Roboto Condensed\",\"Roboto\",Arial,sans-serif;\n width: 200px;\n color: #777771;\n}\n\n.sui-2-1-0 .sui-list>li:last-of-type .sui-list-detail,\n.sui-2-1-0 .sui-list>li:last-of-type .sui-list-label {\n border-bottom: none;\n}\n\n.sui-2-1-0 .sui-list.sui-list-top-border {\n border-top: 1px solid #EEEEEE;\n}\n\n.sui-2-1-0 .sui-list.sui-list-bottom-border {\n border-bottom: 1px solid #EEEEEE;\n}\n\n.sui-2-1-0 .sui-tooltip {\n position: relative;\n}\n\n.sui-2-1-0 .sui-tooltip:before,\n.sui-2-1-0 .sui-tooltip:after {\n content: \"\";\n opacity: 0;\n backface-visibility: hidden;\n pointer-events: none;\n position: absolute;\n z-index: 1;\n transition: margin .2s, opacity .2s;\n}\n\n.sui-2-1-0 .sui-tooltip:before {\n border: 5px solid transparent;\n}\n\n.sui-2-1-0 .sui-tooltip:after {\n content: attr(data-tooltip);\n min-width: 40px;\n padding: 8px 12px;\n border-radius: 4px;\n background: #000;\n box-sizing: border-box;\n color: #fff;\n font: 400 12px/18px \"Roboto\",Arial,sans-serif;\n text-transform: none;\n text-align: center;\n white-space: nowrap;\n}\n\n.sui-2-1-0 .sui-tooltip:hover:before,\n.sui-2-1-0 .sui-tooltip:hover:after {\n opacity: 1;\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-constrained:after {\n min-width: 240px;\n white-space: normal;\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-top:before,\n.sui-2-1-0 .sui-tooltip:before {\n bottom: 100%;\n left: 50%;\n border-top-color: #000;\n transform: translateX(-50%);\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-top:after,\n.sui-2-1-0 .sui-tooltip:after {\n bottom: 100%;\n left: 50%;\n margin: 0 0 10px;\n transform: translateX(-50%);\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-top-right:after {\n left: 0;\n transform: translateX(0);\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-top-left:after {\n left: auto;\n transform: translateX(0);\n right: 0;\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-left:before,\n.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-right:before,\n.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom:before {\n top: 100%;\n bottom: inherit;\n border-top-color: transparent;\n border-bottom-color: #000;\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-left:after,\n.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-right:after,\n.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom:after {\n top: 100%;\n bottom: inherit;\n margin: 10px 0 0;\n transform: translateX(0);\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom:after {\n transform: translateX(-50%);\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-right:after {\n left: 0;\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-bottom-left:after {\n left: auto;\n right: 0;\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-left:before {\n top: 50%;\n right: 100%;\n bottom: inherit;\n left: inherit;\n border-top-color: transparent;\n border-left-color: #000;\n transform: translateY(-50%);\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-left:after {\n top: 50%;\n right: 100%;\n bottom: inherit;\n left: inherit;\n margin: 0 10px 0 0;\n transform: translateY(-50%);\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-right:before {\n top: 50%;\n bottom: inherit;\n left: 100%;\n border-top-color: transparent;\n border-right-color: #000;\n transform: translateY(-50%);\n}\n\n.sui-2-1-0 .sui-tooltip.sui-tooltip-right:after {\n top: 50%;\n bottom: inherit;\n left: 100%;\n margin: 0 0 0 10px;\n transform: translateY(-50%);\n}\n\n.sui-2-1-0 .select-container {\n position: relative;\n z-index: 1;\n display: block;\n cursor: pointer;\n border-radius: 4px;\n transition-property: background, border-color;\n transition-duration: 0.3s;\n text-align: left;\n border: 1px solid #ddd;\n background-color: #F8F8F8;\n}\n\n.sui-2-1-0 .select-container .dropdown-handle {\n transition: border-color 0.3s;\n display: inline-block;\n position: absolute;\n width: 45px;\n height: auto;\n top: 0;\n right: 0;\n z-index: 1011;\n border-radius: 0 4px 4px 0;\n border-bottom: 0;\n border-left-color: transparent;\n padding: 0;\n text-align: center;\n line-height: 40px;\n transition-property: color, border-color;\n transition-duration: 0.3s;\n color: #888;\n}\n\n.sui-2-1-0 .select-container .dropdown-handle i:before {\n vertical-align: middle;\n font-size: 12px;\n}\n\n.sui-2-1-0 .select-container.sui-mobile-nav {\n background-color: #fff;\n margin-bottom: 30px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .select-container.sui-mobile-nav {\n margin-bottom: 20px;\n }\n}\n\n.sui-2-1-0 .select-container.sui-mobile-nav .dropdown-handle {\n background-color: #fff;\n font-size: 13px;\n}\n\n.sui-2-1-0 .select-container:hover {\n border-color: #ddd;\n}\n\n.sui-2-1-0 .select-container:hover .list-value {\n color: #333;\n}\n\n.sui-2-1-0 .select-container:hover .list-results {\n border-left-color: #ddd;\n border-right-color: #ddd;\n border-bottom-color: #ddd;\n}\n\n.sui-2-1-0 .select-container:hover .dropdown-handle {\n border-top-color: #ddd;\n border-right-color: #ddd;\n}\n\n.sui-2-1-0 .select-container.active {\n z-index: 99999;\n background: #f8f8f8;\n}\n\n.sui-2-1-0 .select-container.active .list-value {\n background: #F8F8F8;\n border-radius: 3px 0 0 0;\n color: #333;\n}\n\n.sui-2-1-0 .select-container.active .dropdown-handle {\n border-color: #ddd;\n border-bottom-right-radius: 3px;\n}\n\n.sui-2-1-0 .select-container.active .list-results {\n left: 0;\n right: 0;\n width: auto;\n display: block;\n transition-duration: 0ms;\n}\n\n.sui-2-1-0 .select-container.active.sui-mobile-nav .dropdown-handle {\n background-color: transparent;\n font-size: 13px;\n}\n\n.sui-2-1-0 .select-container.active:hover {\n border-color: #ddd;\n}\n\n.sui-2-1-0 .select-container.active:hover .list-value {\n color: #333;\n}\n\n.sui-2-1-0 .select-container.active:hover .list-results {\n border-color: #ddd;\n}\n\n.sui-2-1-0 .select-container.active:hover .list-results li {\n opacity: 1;\n}\n\n.sui-2-1-0 .select-container.active:hover .dropdown-handle {\n border-color: #ddd;\n color: #ddd;\n}\n\n.sui-2-1-0 .select-list-container {\n position: relative;\n display: block;\n vertical-align: middle;\n padding-right: 45px;\n zoom: 1;\n}\n\n.sui-2-1-0 .select-list-container .list-value {\n position: relative;\n display: block;\n overflow: hidden;\n text-overflow: ellipsis;\n background-clip: padding-box;\n text-decoration: none;\n white-space: nowrap;\n line-height: 24px;\n height: auto;\n width: 100%;\n padding: 8px 8px 8px 15px;\n border: 0;\n color: #aaa;\n font: 500 15px/25px \"Roboto\",Arial,sans-serif;\n transition-property: color;\n transition-duration: 0.3s;\n}\n\n.sui-2-1-0 .select-list-container .list-results {\n position: absolute;\n top: 41px;\n left: -9999px;\n right: -9999px;\n z-index: 1010;\n width: 0;\n background: #fff;\n border: 1px solid #EAEAEA;\n margin-left: -1px;\n margin-right: -1px;\n margin-top: 1px;\n display: none;\n border-radius: 4px;\n font: 500 15px/25px \"Roboto\",Arial,sans-serif;\n transition-property: opacity, border-color;\n transition-duration: 0.3s;\n padding-left: 0;\n max-height: 200px;\n overflow-y: auto;\n}\n\n.sui-2-1-0 .select-list-container .list-results li {\n padding: 10px 15px;\n background: none;\n color: #777771;\n cursor: pointer;\n list-style: none;\n font-weight: 400;\n line-height: 15px;\n word-wrap: break-word;\n margin: 0;\n opacity: 0.8;\n transition-property: opacity;\n transition-duration: 0.3s;\n border-radius: 0 !important;\n}\n\n.sui-2-1-0 .select-list-container .list-results .optgroup {\n cursor: default;\n}\n\n.sui-2-1-0 .select-list-container .list-results .optgroup li {\n padding-left: 30px;\n cursor: pointer;\n}\n\n.sui-2-1-0 .select-list-container .list-results .optgroup li.optgroup-label {\n padding-left: 10px;\n color: #aaa;\n cursor: default;\n pointer-events: none;\n}\n\n.sui-2-1-0 .select-list-container .list-results li:last-child {\n border-radius: 0 0 3px 3px;\n}\n\n.sui-2-1-0 .select-list-container .list-results li:hover {\n background: #F2F2F2;\n color: #333;\n}\n\n.sui-2-1-0 .select-list-container .list-results .optgroup li.optgroup-label:hover {\n background: none;\n}\n\n.sui-2-1-0 .select-list-container .list-results .current {\n background: #888;\n color: #fff;\n}\n\n.sui-2-1-0 .list-table>thead>.select-open th,\n.sui-2-1-0 .list-table>tfoot>.select-open th,\n.sui-2-1-0 .list-table>tbody>.select-open td {\n z-index: 9;\n}\n\n.sui-2-1-0 .sui-tag {\n display: inline-block;\n background-color: #FECF2F;\n color: #333;\n border-radius: 15px;\n min-width: 39px;\n height: 26px;\n font-size: 12px;\n line-height: 26px;\n text-align: center;\n font-weight: 500;\n padding: 0 16px;\n cursor: default;\n}\n\n.sui-2-1-0 .sui-tag.sui-tag-success {\n background-color: #1ABC9C;\n color: #fff;\n}\n\n.sui-2-1-0 .sui-tag.sui-tag-error {\n background-color: #FF7F83;\n color: #fff;\n}\n\n.sui-2-1-0 .sui-tag.sui-tag-inactive {\n background-color: #E6E6E6;\n color: #aaa;\n}\n\n.sui-2-1-0 .sui-tag.sui-tag-disabled {\n background-color: #F8F8F8;\n color: #aaa;\n}\n\n.sui-2-1-0 .sui-tag.sui-tag-upgrade {\n background-color: #1ABC9C;\n color: #fff;\n}\n\n.sui-2-1-0 .sui-tag.sui-tag-upsell {\n border: 2px solid #D1F1EA;\n color: #1ABC9C;\n width: auto;\n height: 26px;\n line-height: 15px;\n background: transparent;\n padding: 4px 16px;\n}\n\n.sui-2-1-0 .sui-label,\n.sui-2-1-0 .sui-inline-label {\n font-family: \"Roboto\",Arial,sans-serif;\n font-size: 12px;\n font-weight: 500;\n line-height: 16px;\n color: #888;\n display: inline-flex;\n width: 100%;\n}\n\n.sui-2-1-0 label[for] {\n cursor: pointer;\n}\n\n.sui-2-1-0 .sui-label-link {\n margin-left: auto;\n margin-right: 0;\n font-weight: 400;\n color: #888;\n}\n\n.sui-2-1-0 .sui-inline-label {\n display: inline-block;\n margin: 0;\n padding: 0;\n}\n\n.sui-2-1-0 .sui-form-control,\n.sui-2-1-0 .sui-upload-group {\n font-family: \"Roboto\",Arial,sans-serif;\n letter-spacing: -0.025em;\n display: block;\n width: 100%;\n height: 40px;\n padding: 7px 15px;\n font-size: 15px;\n font-weight: 500;\n line-height: 30px;\n color: #333;\n background-color: #F8F8F8;\n background-image: none;\n border: 1px solid #ddd;\n border-radius: 3px;\n transition: color .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;\n}\n\n.sui-2-1-0 .sui-form-control::-ms-expand,\n.sui-2-1-0 .sui-upload-group::-ms-expand {\n border: 0;\n background-color: transparent;\n}\n\n.sui-2-1-0 .sui-form-control[disabled],\n.sui-2-1-0 .sui-upload-group[disabled],\nfieldset[disabled] .sui-2-1-0 .sui-form-control,\nfieldset[disabled] .sui-2-1-0 .sui-upload-group {\n cursor: not-allowed;\n}\n\n.sui-2-1-0 .sui-form-control:hover,\n.sui-2-1-0 .sui-upload-group:hover,\n.sui-2-1-0 .sui-form-control:focus,\n.sui-2-1-0 .sui-upload-group:focus {\n background-color: #fff;\n border: 1px solid #ddd;\n}\n\n.sui-2-1-0 .sui-form-control:focus,\n.sui-2-1-0 .sui-upload-group:focus {\n color: #333;\n outline: 0;\n background-color: #fff;\n}\n\n.sui-2-1-0 .sui-form-control::placeholder,\n.sui-2-1-0 .sui-upload-group::placeholder {\n color: #ddd;\n}\n\n.sui-2-1-0 textarea.sui-form-control,\n.sui-2-1-0 textarea.sui-upload-group {\n line-height: 20px;\n height: auto;\n max-width: 100%;\n resize: vertical;\n}\n\n.sui-2-1-0 select.sui-form-control,\n.sui-2-1-0 select.sui-upload-group {\n background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAs0lEQVQ4T6WS2w0CIRBF59KA2oklaAdbgpbgB48SIBThduKWYClrA2CGgEEXNWH5moR7Zu48QJ0PnRytA6WUe67svb//clDrUkWt9UxEMYRw/AYzJIS4sd45t0ugMeZERNcY49yCCwRgS0Rna+346rGGAVz4s06aW0gQx2/DUUoNAEYAG86cxezkAWCw1k5lBoupZltThomhEMLhs/fmOgrM2VvQwmq9in8rWncAPWfXXfEJ6RpWD7sJ1JwAAAAASUVORK5CYII=);\n background-repeat: no-repeat;\n background-position: center right 10px;\n appearance: none;\n cursor: pointer;\n line-height: 1;\n}\n\n.sui-2-1-0 .sui-input-group {\n position: relative;\n display: flex;\n align-items: stretch;\n width: 100%;\n}\n\n.sui-2-1-0 .sui-form-field {\n margin-bottom: 30px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-form-field {\n margin-bottom: 20px;\n }\n}\n\n.sui-2-1-0 .sui-form-field-error .sui-form-control,\n.sui-2-1-0 .sui-form-field-error .sui-upload-group {\n border-bottom: 2px solid #FF7F83;\n}\n\n.sui-2-1-0 .sui-error-message {\n display: block;\n margin-top: 8px;\n color: #FF7F83;\n font-size: 12px;\n line-height: 16px;\n font-weight: 500;\n}\n\n.sui-2-1-0 .sui-description {\n display: block;\n margin-top: 5px;\n color: #888;\n font-size: 13px;\n line-height: 16px;\n font-weight: 400;\n}\n\n.sui-2-1-0 .sui-description.sui-toggle-description {\n margin-left: 48px;\n}\n\n.sui-2-1-0 .sui-description.sui-checkbox-description,\n.sui-2-1-0 .sui-description.sui-radio-description {\n margin: 0 27px 5px;\n}\n\n.sui-2-1-0 .sui-password-group {\n position: relative;\n}\n\n.sui-2-1-0 .sui-password-group .sui-password-toggle {\n cursor: pointer;\n background: transparent;\n border: none;\n color: #888;\n font-size: 15px;\n line-height: 1em;\n padding: 0;\n position: absolute;\n top: 50%;\n right: 7px;\n height: 30px;\n width: 30px;\n transform: translateY(-50%);\n outline: 0;\n border-radius: 4px;\n}\n\n.sui-2-1-0 .sui-password-group .sui-password-toggle:hover {\n background-color: rgba(0,0,0,0.03);\n}\n\n.sui-2-1-0 .sui-password-group .sui-password-toggle:hover i:before {\n color: #666;\n}\n\n.sui-2-1-0 .sui-checkbox,\n.sui-2-1-0 .sui-radio {\n user-select: none;\n display: flex;\n align-items: start;\n}\n\n.sui-2-1-0 .sui-checkbox span,\n.sui-2-1-0 .sui-radio span {\n flex-shrink: 0;\n position: relative;\n display: inline-block;\n width: 16px;\n height: 16px;\n background-color: #E6E6E6;\n cursor: pointer;\n transition: .2s;\n border-radius: 3px;\n margin-top: 3px;\n}\n\n.sui-2-1-0 .sui-checkbox span:before,\n.sui-2-1-0 .sui-radio span:before {\n opacity: 0;\n content: \"(\";\n color: #fff;\n font-size: 10px;\n line-height: 16px;\n position: absolute;\n width: 100%;\n text-align: center;\n transition: .2s;\n}\n\n.sui-2-1-0 .sui-checkbox input:checked+span,\n.sui-2-1-0 .sui-radio input:checked+span {\n background-color: #17A8E3;\n}\n\n.sui-2-1-0 .sui-checkbox input:checked+span:before,\n.sui-2-1-0 .sui-radio input:checked+span:before {\n opacity: 1;\n}\n\n.sui-2-1-0 .sui-checkbox .sui-description,\n.sui-2-1-0 .sui-radio .sui-description {\n cursor: pointer;\n margin-top: 0;\n margin-left: 10px;\n font-size: 15px;\n line-height: 22px;\n color: #666;\n font-weight: 500;\n}\n\n.sui-2-1-0 .sui-checkbox .sui-description.sui-description-sm,\n.sui-2-1-0 .sui-radio .sui-description.sui-description-sm {\n font-size: 13px;\n}\n\n.sui-2-1-0 .sui-checkbox input[disabled]+span,\n.sui-2-1-0 .sui-radio input[disabled]+span,\nfieldset[disabled] .sui-2-1-0 .sui-checkbox+span,\nfieldset[disabled] .sui-2-1-0 .sui-radio+span {\n cursor: not-allowed;\n opacity: .5;\n}\n\n.sui-2-1-0 .sui-checkbox input[disabled]+span+div.sui-description,\n.sui-2-1-0 .sui-radio input[disabled]+span+div.sui-description {\n color: #aaa;\n cursor: not-allowed;\n}\n\n.sui-2-1-0 .sui-checkbox span {\n border-radius: 3px;\n}\n\n.sui-2-1-0 .sui-checkbox+.sui-checkbox {\n margin-top: 10px;\n}\n\n.sui-2-1-0 .sui-radio span {\n border-radius: 50%;\n}\n\n.sui-2-1-0 .sui-radio+.sui-radio {\n margin-top: 10px;\n}\n\n.sui-2-1-0 .sui-upload-group {\n display: flex;\n align-items: center;\n}\n\n.sui-2-1-0 .sui-upload-button {\n background-color: transparent;\n border-radius: 4px;\n display: inline-block;\n margin: 0 5px 0 0;\n font-size: 13px;\n font-weight: 400;\n line-height: 1.5;\n pointer-events: none;\n padding: 1px 16px;\n border: 1px solid #ddd;\n background: 0 0;\n color: #888;\n transition: all .2s;\n}\n\n.sui-2-1-0 .sui-upload-label {\n width: 100%;\n}\n\n.sui-2-1-0 .sui-upload-label:hover .sui-upload-button,\n.sui-2-1-0 .sui-upload-label:focus .sui-upload-button {\n background-color: #888;\n border-color: #888;\n color: #fff;\n}\n\n.sui-2-1-0 .sui-upload-message {\n font-weight: 400;\n}\n\n.sui-2-1-0 .sui-tabs {\n float: none;\n position: relative;\n padding: 0;\n margin: 0;\n background-color: #fff;\n border-top-left-radius: 5px;\n border-top-right-radius: 5px;\n}\n\n.sui-2-1-0 .sui-tabs:before,\n.sui-2-1-0 .sui-tabs:after {\n content: '';\n display: table;\n clear: both;\n}\n\n.sui-2-1-0 .sui-tabs .sui-tab {\n float: left;\n}\n\n.sui-2-1-0 .sui-tabs .sui-tab:first-child label {\n border-top-left-radius: 5px;\n}\n\n.sui-2-1-0 .sui-tabs .sui-tab label {\n display: block;\n margin: 0;\n top: 0;\n cursor: pointer;\n position: relative;\n border: 0;\n font-size: 15px;\n text-transform: capitalize;\n color: #888;\n padding: 0 10px;\n line-height: 1.5em;\n height: 40px;\n}\n\n.sui-2-1-0 .sui-tabs .sui-tab input[type=radio] {\n display: none;\n}\n\n.sui-2-1-0 .sui-tabs .sui-tab input[type=radio]:checked+label {\n background-color: #fff;\n color: #777771;\n height: 61px;\n z-index: 3;\n}\n\n.sui-2-1-0 .sui-tabs .sui-tab .sui-tab-content {\n z-index: 2;\n display: none;\n text-align: left;\n left: 0;\n right: 0;\n width: auto;\n padding: 30px 0 0;\n position: absolute;\n min-height: 150px;\n border-top: 1px solid #EAEAEA;\n background-color: #fff;\n overflow: auto;\n border-top: 2px solid #EAEAEA;\n top: 38px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-tabs .sui-tab .sui-tab-content {\n padding: 20px 0 0;\n }\n}\n\n.sui-2-1-0 .sui-tabs .sui-tab input[type=radio]:checked ~ .sui-tab-content {\n display: block;\n}\n\n.sui-2-1-0 .sui-tabs .sui-tab>.active {\n color: #333;\n border-bottom: 2px solid #333;\n z-index: 10;\n}\n\n.sui-2-1-0 .sui-row-with-sidenav {\n clear: both;\n position: relative;\n display: table;\n width: 100%;\n table-layout: fixed;\n margin-bottom: 30px;\n}\n\n@media (max-width: 1100px) {\n .sui-2-1-0 .sui-row-with-sidenav {\n display: block;\n }\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav {\n width: 220px;\n padding-right: 30px;\n display: table-cell;\n position: relative;\n vertical-align: top;\n}\n\n@media (max-width: 1100px) {\n .sui-2-1-0 .sui-row-with-sidenav .sui-sidenav {\n display: block;\n width: 100%;\n padding: 0;\n }\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav ul {\n padding: 0;\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav li {\n list-style: none;\n margin-bottom: 6px;\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab {\n padding: 5px 15px;\n height: 30px;\n line-height: 1.5em;\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab.current {\n background-color: #E6E6E6;\n border-radius: 20px;\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab.current a {\n color: #333;\n font-weight: 500;\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab i,\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab .sui-tag {\n position: relative;\n top: -25px;\n left: 100%;\n margin-left: -27px;\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab i {\n top: -23px;\n margin-left: -10px;\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab i:before {\n font-size: 21px;\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs a {\n color: #666;\n display: block;\n font-weight: 400;\n transition: .3s;\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs a:hover,\n.sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs a:focus {\n color: #333;\n}\n\n@media (max-width: 1100px) {\n .sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-sidenav-hide-md {\n display: none;\n }\n}\n\n@media (min-width: 1100px) {\n .sui-2-1-0 .sui-row-with-sidenav .sui-sidenav .sui-sidenav-hide-lg {\n display: none;\n }\n}\n\n.sui-2-1-0 .sui-row-with-sidenav .sui-box {\n display: block;\n position: relative;\n vertical-align: top;\n}\n\n@media (max-width: 1100px) {\n .sui-2-1-0 .sui-row-with-sidenav .sui-box {\n display: block;\n }\n}\n\n.sui-2-1-0 .sui-dropdown {\n position: relative;\n display: inline-block;\n text-align: left;\n}\n\n.sui-2-1-0 .sui-dropdown-anchor {\n display: inline-block;\n color: #888;\n}\n\n.sui-2-1-0 .sui-dropdown-anchor:hover:not(:focus):not(:active),\n.sui-2-1-0 .sui-dropdown-anchor:hover,\n.sui-2-1-0 .sui-dropdown-anchor:active,\n.sui-2-1-0 .sui-dropdown-anchor:focus {\n color: #17A8E3;\n}\n\n.sui-2-1-0 .sui-dropdown.open .sui-dropdown-anchor {\n color: #17A8E3;\n}\n\n.sui-2-1-0 .sui-dropdown.open ul {\n display: block;\n list-style: none;\n}\n\n.sui-2-1-0 .sui-dropdown.open:after,\n.sui-2-1-0 .sui-dropdown.open:before {\n content: '';\n position: absolute;\n border-style: solid;\n border-width: 0 9px 9px;\n display: block;\n width: 0;\n border-top-color: #000;\n margin: 7px 0 0;\n}\n\n.sui-2-1-0 .sui-dropdown.open:after {\n border-color: #fff transparent;\n z-index: 11;\n top: 24px;\n}\n\n.sui-2-1-0 .sui-dropdown.open:before {\n border-color: #E6E6E6 transparent;\n z-index: 10;\n top: 23px;\n}\n\n.sui-2-1-0 .sui-dropdown ul {\n border: 1px solid #ddd;\n box-shadow: 0 3px 7px 0 rgba(0,0,0,0.05);\n min-width: 180px;\n margin-bottom: 0;\n margin-top: 0;\n padding: 10px 0;\n font: 500 15px/25px \"Roboto\",Arial,sans-serif;\n background: #fff;\n position: absolute;\n left: auto;\n right: -22px;\n top: 130%;\n z-index: 10;\n border-radius: 4px;\n display: none;\n}\n\n.sui-2-1-0 .sui-dropdown ul li {\n padding: 10px 15px;\n background: none;\n color: #777771;\n cursor: pointer;\n list-style: none;\n font-weight: 400;\n line-height: 15px;\n word-wrap: break-word;\n margin: 0;\n opacity: 0.8;\n transition-property: opacity;\n transition-duration: 0.3s;\n border-radius: 0 !important;\n}\n\n.sui-2-1-0 .sui-dropdown ul li a {\n font-weight: 300;\n color: inherit;\n}\n\n.sui-2-1-0 .sui-dropdown ul li a:hover {\n color: inherit;\n}\n\n.sui-2-1-0 .sui-dropdown ul li:hover:not(.sui-dropdown-label) {\n background: #F2F2F2;\n color: #333;\n}\n\n.sui-2-1-0 .sui-dropdown ul li.active {\n background: #F8F8F8;\n color: #333;\n}\n\n.sui-2-1-0 .sui-dropdown ul li.current {\n background: #888;\n color: #fff;\n}\n\n.sui-2-1-0 .sui-dropdown ul li.sui-dropdown-label {\n border-bottom: 1px solid #E6E6E6;\n line-height: 30px;\n cursor: default;\n color: #666;\n}\n\n.sui-2-1-0 .sui-dropdown.sui-dropdown-right ul {\n left: -22px;\n transform: none;\n}\n\n.sui-2-1-0 .sui-dropdown.sui-dropdown-center ul {\n left: 50%;\n transform: translateX(-50%);\n}\n\n.sui-2-1-0 .sui-dropdown.wds-item-loading {\n font-size: 18px;\n}\n\n.sui-2-1-0 .sui-dropdown.wds-item-loading .sui-dropdown-anchor {\n visibility: hidden;\n}\n\n@keyframes sui1 {\n to {\n stroke-dasharray: 2.63894 262.89378;\n }\n}\n\n@keyframes sui2 {\n to {\n stroke-dasharray: 5.27788 525.78757;\n }\n}\n\n@keyframes sui3 {\n to {\n stroke-dasharray: 7.91681 788.68135;\n }\n}\n\n@keyframes sui4 {\n to {\n stroke-dasharray: 10.55575 1051.57513;\n }\n}\n\n@keyframes sui5 {\n to {\n stroke-dasharray: 13.19469 1314.46891;\n }\n}\n\n@keyframes sui6 {\n to {\n stroke-dasharray: 15.83363 1577.3627;\n }\n}\n\n@keyframes sui7 {\n to {\n stroke-dasharray: 18.47256 1840.25648;\n }\n}\n\n@keyframes sui8 {\n to {\n stroke-dasharray: 21.1115 2103.15026;\n }\n}\n\n@keyframes sui9 {\n to {\n stroke-dasharray: 23.75044 2366.04405;\n }\n}\n\n@keyframes sui10 {\n to {\n stroke-dasharray: 26.38938 2628.93783;\n }\n}\n\n@keyframes sui11 {\n to {\n stroke-dasharray: 29.02832 2891.83161;\n }\n}\n\n@keyframes sui12 {\n to {\n stroke-dasharray: 31.66725 3154.72539;\n }\n}\n\n@keyframes sui13 {\n to {\n stroke-dasharray: 34.30619 3417.61918;\n }\n}\n\n@keyframes sui14 {\n to {\n stroke-dasharray: 36.94513 3680.51296;\n }\n}\n\n@keyframes sui15 {\n to {\n stroke-dasharray: 39.58407 3943.40674;\n }\n}\n\n@keyframes sui16 {\n to {\n stroke-dasharray: 42.22301 4206.30053;\n }\n}\n\n@keyframes sui17 {\n to {\n stroke-dasharray: 44.86194 4469.19431;\n }\n}\n\n@keyframes sui18 {\n to {\n stroke-dasharray: 47.50088 4732.08809;\n }\n}\n\n@keyframes sui19 {\n to {\n stroke-dasharray: 50.13982 4994.98188;\n }\n}\n\n@keyframes sui20 {\n to {\n stroke-dasharray: 52.77876 5257.87566;\n }\n}\n\n@keyframes sui21 {\n to {\n stroke-dasharray: 55.41769 5520.76944;\n }\n}\n\n@keyframes sui22 {\n to {\n stroke-dasharray: 58.05663 5783.66322;\n }\n}\n\n@keyframes sui23 {\n to {\n stroke-dasharray: 60.69557 6046.55701;\n }\n}\n\n@keyframes sui24 {\n to {\n stroke-dasharray: 63.33451 6309.45079;\n }\n}\n\n@keyframes sui25 {\n to {\n stroke-dasharray: 65.97345 6572.34457;\n }\n}\n\n@keyframes sui26 {\n to {\n stroke-dasharray: 68.61238 6835.23836;\n }\n}\n\n@keyframes sui27 {\n to {\n stroke-dasharray: 71.25132 7098.13214;\n }\n}\n\n@keyframes sui28 {\n to {\n stroke-dasharray: 73.89026 7361.02592;\n }\n}\n\n@keyframes sui29 {\n to {\n stroke-dasharray: 76.5292 7623.9197;\n }\n}\n\n@keyframes sui30 {\n to {\n stroke-dasharray: 79.16813 7886.81349;\n }\n}\n\n@keyframes sui31 {\n to {\n stroke-dasharray: 81.80707 8149.70727;\n }\n}\n\n@keyframes sui32 {\n to {\n stroke-dasharray: 84.44601 8412.60105;\n }\n}\n\n@keyframes sui33 {\n to {\n stroke-dasharray: 87.08495 8675.49484;\n }\n}\n\n@keyframes sui34 {\n to {\n stroke-dasharray: 89.72389 8938.38862;\n }\n}\n\n@keyframes sui35 {\n to {\n stroke-dasharray: 92.36282 9201.2824;\n }\n}\n\n@keyframes sui36 {\n to {\n stroke-dasharray: 95.00176 9464.17618;\n }\n}\n\n@keyframes sui37 {\n to {\n stroke-dasharray: 97.6407 9727.06997;\n }\n}\n\n@keyframes sui38 {\n to {\n stroke-dasharray: 100.27964 9989.96375;\n }\n}\n\n@keyframes sui39 {\n to {\n stroke-dasharray: 102.91858 10252.85753;\n }\n}\n\n@keyframes sui40 {\n to {\n stroke-dasharray: 105.55751 10515.75132;\n }\n}\n\n@keyframes sui41 {\n to {\n stroke-dasharray: 108.19645 10778.6451;\n }\n}\n\n@keyframes sui42 {\n to {\n stroke-dasharray: 110.83539 11041.53888;\n }\n}\n\n@keyframes sui43 {\n to {\n stroke-dasharray: 113.47433 11304.43266;\n }\n}\n\n@keyframes sui44 {\n to {\n stroke-dasharray: 116.11326 11567.32645;\n }\n}\n\n@keyframes sui45 {\n to {\n stroke-dasharray: 118.7522 11830.22023;\n }\n}\n\n@keyframes sui46 {\n to {\n stroke-dasharray: 121.39114 12093.11401;\n }\n}\n\n@keyframes sui47 {\n to {\n stroke-dasharray: 124.03008 12356.0078;\n }\n}\n\n@keyframes sui48 {\n to {\n stroke-dasharray: 126.66902 12618.90158;\n }\n}\n\n@keyframes sui49 {\n to {\n stroke-dasharray: 129.30795 12881.79536;\n }\n}\n\n@keyframes sui50 {\n to {\n stroke-dasharray: 131.94689 13144.68915;\n }\n}\n\n@keyframes sui51 {\n to {\n stroke-dasharray: 134.58583 13407.58293;\n }\n}\n\n@keyframes sui52 {\n to {\n stroke-dasharray: 137.22477 13670.47671;\n }\n}\n\n@keyframes sui53 {\n to {\n stroke-dasharray: 139.8637 13933.37049;\n }\n}\n\n@keyframes sui54 {\n to {\n stroke-dasharray: 142.50264 14196.26428;\n }\n}\n\n@keyframes sui55 {\n to {\n stroke-dasharray: 145.14158 14459.15806;\n }\n}\n\n@keyframes sui56 {\n to {\n stroke-dasharray: 147.78052 14722.05184;\n }\n}\n\n@keyframes sui57 {\n to {\n stroke-dasharray: 150.41946 14984.94563;\n }\n}\n\n@keyframes sui58 {\n to {\n stroke-dasharray: 153.05839 15247.83941;\n }\n}\n\n@keyframes sui59 {\n to {\n stroke-dasharray: 155.69733 15510.73319;\n }\n}\n\n@keyframes sui60 {\n to {\n stroke-dasharray: 158.33627 15773.62697;\n }\n}\n\n@keyframes sui61 {\n to {\n stroke-dasharray: 160.97521 16036.52076;\n }\n}\n\n@keyframes sui62 {\n to {\n stroke-dasharray: 163.61415 16299.41454;\n }\n}\n\n@keyframes sui63 {\n to {\n stroke-dasharray: 166.25308 16562.30832;\n }\n}\n\n@keyframes sui64 {\n to {\n stroke-dasharray: 168.89202 16825.20211;\n }\n}\n\n@keyframes sui65 {\n to {\n stroke-dasharray: 171.53096 17088.09589;\n }\n}\n\n@keyframes sui66 {\n to {\n stroke-dasharray: 174.1699 17350.98967;\n }\n}\n\n@keyframes sui67 {\n to {\n stroke-dasharray: 176.80883 17613.88345;\n }\n}\n\n@keyframes sui68 {\n to {\n stroke-dasharray: 179.44777 17876.77724;\n }\n}\n\n@keyframes sui69 {\n to {\n stroke-dasharray: 182.08671 18139.67102;\n }\n}\n\n@keyframes sui70 {\n to {\n stroke-dasharray: 184.72565 18402.5648;\n }\n}\n\n@keyframes sui71 {\n to {\n stroke-dasharray: 187.36459 18665.45859;\n }\n}\n\n@keyframes sui72 {\n to {\n stroke-dasharray: 190.00352 18928.35237;\n }\n}\n\n@keyframes sui73 {\n to {\n stroke-dasharray: 192.64246 19191.24615;\n }\n}\n\n@keyframes sui74 {\n to {\n stroke-dasharray: 195.2814 19454.13993;\n }\n}\n\n@keyframes sui75 {\n to {\n stroke-dasharray: 197.92034 19717.03372;\n }\n}\n\n@keyframes sui76 {\n to {\n stroke-dasharray: 200.55928 19979.9275;\n }\n}\n\n@keyframes sui77 {\n to {\n stroke-dasharray: 203.19821 20242.82128;\n }\n}\n\n@keyframes sui78 {\n to {\n stroke-dasharray: 205.83715 20505.71507;\n }\n}\n\n@keyframes sui79 {\n to {\n stroke-dasharray: 208.47609 20768.60885;\n }\n}\n\n@keyframes sui80 {\n to {\n stroke-dasharray: 211.11503 21031.50263;\n }\n}\n\n@keyframes sui81 {\n to {\n stroke-dasharray: 213.75396 21294.39642;\n }\n}\n\n@keyframes sui82 {\n to {\n stroke-dasharray: 216.3929 21557.2902;\n }\n}\n\n@keyframes sui83 {\n to {\n stroke-dasharray: 219.03184 21820.18398;\n }\n}\n\n@keyframes sui84 {\n to {\n stroke-dasharray: 221.67078 22083.07776;\n }\n}\n\n@keyframes sui85 {\n to {\n stroke-dasharray: 224.30972 22345.97155;\n }\n}\n\n@keyframes sui86 {\n to {\n stroke-dasharray: 226.94865 22608.86533;\n }\n}\n\n@keyframes sui87 {\n to {\n stroke-dasharray: 229.58759 22871.75911;\n }\n}\n\n@keyframes sui88 {\n to {\n stroke-dasharray: 232.22653 23134.6529;\n }\n}\n\n@keyframes sui89 {\n to {\n stroke-dasharray: 234.86547 23397.54668;\n }\n}\n\n@keyframes sui90 {\n to {\n stroke-dasharray: 237.5044 23660.44046;\n }\n}\n\n@keyframes sui91 {\n to {\n stroke-dasharray: 240.14334 23923.33424;\n }\n}\n\n@keyframes sui92 {\n to {\n stroke-dasharray: 242.78228 24186.22803;\n }\n}\n\n@keyframes sui93 {\n to {\n stroke-dasharray: 245.42122 24449.12181;\n }\n}\n\n@keyframes sui94 {\n to {\n stroke-dasharray: 248.06016 24712.01559;\n }\n}\n\n@keyframes sui95 {\n to {\n stroke-dasharray: 250.69909 24974.90938;\n }\n}\n\n@keyframes sui96 {\n to {\n stroke-dasharray: 253.33803 25237.80316;\n }\n}\n\n@keyframes sui97 {\n to {\n stroke-dasharray: 255.97697 25500.69694;\n }\n}\n\n@keyframes sui98 {\n to {\n stroke-dasharray: 258.61591 25763.59072;\n }\n}\n\n@keyframes sui99 {\n to {\n stroke-dasharray: 261.25485 26026.48451;\n }\n}\n\n@keyframes sui100 {\n to {\n stroke-dasharray: 263.89378 26289.37829;\n }\n}\n\n.sui-2-1-0 .sui-circle-score {\n display: flex;\n align-items: center;\n height: 30px;\n width: auto;\n opacity: 0;\n transition: all .4s;\n}\n\n.sui-2-1-0 .sui-circle-score svg {\n height: 100%;\n transform: rotate(-90deg);\n transform-origin: center;\n}\n\n.sui-2-1-0 .sui-circle-score svg circle {\n fill: none;\n stroke-linecap: butt;\n}\n\n.sui-2-1-0 .sui-circle-score svg circle:first-child {\n stroke: #F2F2F2;\n}\n\n.sui-2-1-0 .sui-circle-score svg circle:last-child {\n stroke: #1ABC9C;\n}\n\n.sui-2-1-0 .sui-circle-score.loaded {\n opacity: 1;\n}\n\n.sui-2-1-0 .sui-circle-score-label {\n margin-left: 10px;\n font-weight: 500;\n}\n\n.sui-2-1-0 .sui-circle-score-sm {\n height: 30px;\n}\n\n.sui-2-1-0 .sui-circle-score-lg {\n height: 120px;\n}\n\n.sui-2-1-0 .sui-circle-score-lg .sui-circle-score-label {\n display: none;\n}\n\n.sui-2-1-0 .sui-grade-aplus svg circle:last-child,\n.sui-2-1-0 .sui-grade-a svg circle:last-child,\n.sui-2-1-0 .sui-grade-b svg circle:last-child {\n stroke: #1ABC9C;\n}\n\n.sui-2-1-0 .sui-grade-c svg circle:last-child,\n.sui-2-1-0 .sui-grade-d svg circle:last-child {\n stroke: #FECF2F;\n}\n\n.sui-2-1-0 .sui-grade-e svg circle:last-child,\n.sui-2-1-0 .sui-grade-f svg circle:last-child {\n stroke: #FF7F83;\n}\n\n.sui-2-1-0 #wpfooter {\n display: none;\n}\n\n.sui-2-1-0 .sui-footer {\n text-align: center;\n margin-top: 50px;\n color: #aaa;\n font-size: 13px;\n}\n\n.sui-2-1-0 .sui-footer i:before {\n font-size: 11px;\n line-height: 22px;\n margin: 0 3px;\n}\n\n.sui-2-1-0 #sui-cross-sell-footer>div {\n width: 100%;\n text-align: center;\n border-bottom: 1px solid #E6E6E6;\n line-height: 0.1em;\n margin: 10px 0 40px;\n}\n\n.sui-2-1-0 #sui-cross-sell-footer>div>span {\n position: relative;\n color: #888;\n background-color: #f1f1f1;\n padding: 0 30px;\n font-size: 16px;\n top: 8px;\n}\n\n.sui-2-1-0 #sui-cross-sell-footer h3 {\n font-size: 22px;\n font-weight: bold;\n line-height: 30px;\n text-transform: none;\n}\n\n.sui-2-1-0 .sui-cross-sell-modules {\n margin-top: 30px;\n}\n\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-1,\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-2,\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-3 {\n min-height: 150px;\n border-radius: 5px 5px 0 0;\n}\n\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-1>span,\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-2>span,\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-3>span {\n width: 56px;\n height: 56px;\n display: block;\n border: 3px solid #fff;\n border-radius: 50%;\n position: relative;\n top: 80px;\n left: 15px;\n box-shadow: 0 1px 10px 0 rgba(0,0,0,0.25);\n}\n\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-1 {\n background: url(\"../../node_modules/@wpmudev/shared-ui/dist/images/plugins-smush.jpg\") center;\n background-size: cover;\n}\n\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-1>span {\n background: url(\"../../node_modules/@wpmudev/shared-ui/dist/images/plugins-smush-icon.png\") no-repeat center center;\n background-size: 50px 50px;\n}\n\n@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {\n .sui-2-1-0 .sui-cross-sell-modules .sui-cross-1>span {\n background-image: url(\"../../node_modules/@wpmudev/shared-ui/dist/images/plugins-smush-icon@2x.png\");\n }\n}\n\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-2 {\n background: url(\"../../node_modules/@wpmudev/shared-ui/dist/images/plugins-defender.jpg\") center;\n background-size: cover;\n}\n\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-2>span {\n background: url(\"../../node_modules/@wpmudev/shared-ui/dist/images/plugins-defender-icon.png\") no-repeat center center;\n background-size: 50px 50px;\n}\n\n@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {\n .sui-2-1-0 .sui-cross-sell-modules .sui-cross-2>span {\n background-image: url(\"../../node_modules/@wpmudev/shared-ui/dist/images/plugins-defender-icon@2x.png\");\n }\n}\n\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-3 {\n background: url(\"../../node_modules/@wpmudev/shared-ui/dist/images/plugins-crawl.jpg\") center;\n background-size: cover;\n}\n\n.sui-2-1-0 .sui-cross-sell-modules .sui-cross-3>span {\n background: url(\"../../node_modules/@wpmudev/shared-ui/dist/images/plugins-crawl-icon.png\") no-repeat center center;\n background-size: 50px 50px;\n}\n\n@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {\n .sui-2-1-0 .sui-cross-sell-modules .sui-cross-3>span {\n background-image: url(\"../../node_modules/@wpmudev/shared-ui/dist/images/plugins-crawl-icon@2x.png\");\n }\n}\n\n.sui-2-1-0 .sui-cross-sell-modules .sui-box-body {\n text-align: center;\n border-radius: 0 0 5px 5px;\n}\n\n.sui-2-1-0 .sui-cross-sell-modules .sui-box-body p {\n color: #888;\n font-size: 13px;\n line-height: 20px;\n margin-bottom: 30px;\n}\n\n.sui-2-1-0 .sui-cross-sell-modules h3 {\n font-size: 18px;\n font-weight: 700;\n line-height: 30px;\n text-transform: none;\n margin-top: 0;\n min-height: 60px;\n}\n\n.sui-2-1-0 .sui-cross-sell-bottom {\n text-align: center;\n margin-top: 50px;\n}\n\n.sui-2-1-0 .sui-cross-sell-bottom h3 {\n font-size: 22px;\n font-weight: bold;\n line-height: 30px;\n text-transform: none;\n}\n\n.sui-2-1-0 .sui-cross-sell-bottom p {\n max-width: 500px;\n margin: 20px auto 30px;\n}\n\n.sui-2-1-0 .sui-cross-sell-bottom .sui-button {\n margin: 0;\n}\n\n.sui-2-1-0 .sui-cross-sell-bottom img {\n display: block;\n height: auto;\n max-width: 100%;\n margin: 30px auto 0;\n}\n\n.sui-2-1-0 .sui-progress-block {\n background-color: #F8F8F8;\n border-radius: 5px;\n width: 100%;\n height: 60px;\n padding: 15px 30px;\n}\n\n.sui-2-1-0 .sui-progress-block .sui-progress {\n overflow: hidden;\n width: 100%;\n}\n\n.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-text {\n width: 65px;\n float: left;\n text-align: left;\n}\n\n.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-text:before {\n margin-right: 10px;\n position: relative;\n top: 3px;\n font-size: 18px;\n}\n\n.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-text img {\n display: inline-block;\n vertical-align: middle;\n margin-right: 10px;\n}\n\n.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-text span {\n font-weight: 700;\n font-family: \"Roboto Condensed\",\"Roboto\",Arial,sans-serif,sans-serif;\n font-size: 13px;\n color: #333;\n vertical-align: middle;\n line-height: 30px;\n}\n\n.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-bar {\n background: #E6E6E6;\n -webkit-border-radius: 5px;\n -moz-border-radius: 5px;\n border-radius: 5px;\n height: 10px;\n overflow: hidden;\n margin-top: 10px;\n position: relative;\n}\n\n.sui-2-1-0 .sui-progress-block .sui-progress .sui-progress-bar span {\n background: #17A8E3;\n height: 10px;\n display: inline-block;\n position: absolute;\n top: 0;\n left: 0;\n -webkit-transition: 1000ms width ease-in-out;\n -moz-transition: 1000ms width ease-in-out;\n transition: 1000ms width ease-in-out;\n}\n\n.sui-2-1-0 .sui-progress-block .sui-progress-close {\n display: none;\n}\n\n.sui-2-1-0 .sui-progress-block.sui-progress-can-close {\n position: relative;\n}\n\n.sui-2-1-0 .sui-progress-block.sui-progress-can-close .sui-progress {\n padding-right: 40px;\n}\n\n.sui-2-1-0 .sui-progress-block.sui-progress-can-close .sui-progress-close {\n display: block;\n position: absolute;\n right: 20px;\n width: 30px;\n height: 30px;\n cursor: pointer;\n background: transparent;\n border: none;\n color: #888;\n font-size: 15px;\n line-height: 1em;\n padding: 0;\n top: 50%;\n transform: translateY(-50%);\n outline: 0;\n border-radius: 4px;\n}\n\n.sui-2-1-0 .sui-progress-block.sui-progress-can-close .sui-progress-close i:before {\n color: #aaa;\n font-size: 16px;\n position: relative;\n}\n\n.sui-2-1-0 .sui-progress-block.sui-progress-can-close .sui-progress-close:hover {\n background-color: rgba(0,0,0,0.03);\n}\n\n.sui-2-1-0 .sui-progress-block.sui-progress-can-close .sui-progress-close:hover i:before {\n color: #666;\n}\n\n.sui-2-1-0 .sui-progress-state {\n margin-top: 10px;\n text-align: center;\n}\n\n.sui-2-1-0 .sui-progress-state .sui-progress-state-text {\n color: #888;\n font-size: 13px;\n line-height: 22px;\n}\n\n.sui-2-1-0 .sui-table {\n width: 100%;\n border: 1px solid #E6E6E6;\n border-collapse: collapse;\n border-spacing: unset;\n border-radius: 5px;\n color: #666;\n font-size: 13px;\n}\n\n.sui-2-1-0 .sui-table th {\n white-space: nowrap;\n text-align: left;\n padding: 20px 30px;\n font-weight: 500;\n line-height: 1;\n color: #333;\n}\n\n.sui-2-1-0 .sui-table th,\n.sui-2-1-0 .sui-table td {\n border-bottom: 1px solid #E6E6E6;\n}\n\n.sui-2-1-0 .sui-table tr:last-child td {\n border-bottom: none;\n}\n\n.sui-2-1-0 .sui-table td {\n padding: 20px 30px;\n}\n\n.sui-2-1-0 .sui-table tfoot th {\n border-bottom: none;\n border-top: 1px solid #E6E6E6;\n}\n\n.sui-2-1-0 .sui-field-list {\n border: 1px solid #E6E6E6;\n border-radius: 5px;\n}\n\n.sui-2-1-0 .sui-field-list-header {\n padding: 20px 30px;\n}\n\n.sui-2-1-0 .sui-field-list-item {\n display: flex;\n align-items: center;\n border-top: 1px solid #E6E6E6;\n padding: 15px 30px;\n}\n\n.sui-2-1-0 .sui-field-list-item-label {\n margin-left: 0;\n margin-right: auto;\n}\n\n.sui-2-1-0 .sui-field-list-title {\n font-family: \"Roboto\",Arial,sans-serif;\n font-size: 13px;\n line-height: 30px;\n color: #333;\n text-transform: capitalize;\n font-weight: 500;\n margin: 0;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-table {\n border: none;\n }\n\n .sui-2-1-0 .sui-table td,\n .sui-2-1-0 .sui-table th {\n padding: 15px 15px 15px 0;\n }\n\n .sui-2-1-0 .sui-table td:last-of-type,\n .sui-2-1-0 .sui-table th:last-of-type {\n padding-right: 0;\n }\n\n .sui-2-1-0 .sui-table tr:last-child td {\n border-bottom: 1px solid #E6E6E6;\n }\n}\n\n.sui-2-1-0 .sui-accordion {\n border: 0;\n}\n\n.sui-2-1-0 .sui-accordion:after {\n content: \"\";\n display: table;\n margin-bottom: 30px;\n}\n\n.sui-2-1-0 .sui-accordion-item {\n display: table-row;\n vertical-align: middle;\n cursor: pointer;\n transition: background-color .2s;\n border-left: 2px solid transparent;\n}\n\n.sui-2-1-0 .sui-accordion-item+.sui-accordion-item-content {\n border-left: 2px solid transparent;\n}\n\n.sui-2-1-0 .sui-accordion-item.sui-success {\n color: inherit;\n border-color: #1ABC9C;\n}\n\n.sui-2-1-0 .sui-accordion-item.sui-success i:before {\n color: inherit;\n}\n\n.sui-2-1-0 .sui-accordion-item.sui-success+.sui-accordion-item-content {\n border-color: #1ABC9C;\n}\n\n.sui-2-1-0 .sui-accordion-item.sui-warning {\n color: inherit;\n border-color: #FECF2F;\n}\n\n.sui-2-1-0 .sui-accordion-item.sui-warning i:before {\n color: inherit;\n}\n\n.sui-2-1-0 .sui-accordion-item.sui-warning+.sui-accordion-item-content {\n border-color: #FECF2F;\n}\n\n.sui-2-1-0 .sui-accordion-item.sui-error {\n color: inherit;\n border-color: #FF7F83;\n}\n\n.sui-2-1-0 .sui-accordion-item.sui-error i:before {\n color: inherit;\n}\n\n.sui-2-1-0 .sui-accordion-item.sui-error+.sui-accordion-item-content {\n border-color: #FF7F83;\n}\n\n.sui-2-1-0 .sui-accordion-item:hover,\n.sui-2-1-0 .sui-accordion-item:focus {\n background-color: #F8F8F8;\n}\n\n.sui-2-1-0 .sui-accordion-item td {\n padding: 15px 30px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-accordion-item td {\n padding: 15px 20px;\n }\n}\n\n.sui-2-1-0 .sui-accordion-item td>* {\n vertical-align: middle;\n}\n\n.sui-2-1-0 .sui-accordion-item--open td {\n background-color: #F8F8F8;\n border-bottom: 1px solid #F8F8F8;\n}\n\n.sui-2-1-0 .sui-accordion-item--open+.sui-accordion-item-content {\n display: table-row;\n}\n\n.sui-2-1-0 .sui-accordion-item--open .sui-accordion-open-indicator i {\n transform: rotate(180deg);\n}\n\n.sui-2-1-0 .sui-accordion-open-indicator {\n float: right;\n text-align: center;\n}\n\n.sui-2-1-0 .sui-accordion-open-indicator i {\n transform-origin: center;\n font-size: 10px;\n color: #888;\n transition: .5s;\n}\n\n.sui-2-1-0 .sui-accordion-open-indicator i:before {\n position: relative;\n top: 2px;\n}\n\n.sui-2-1-0 .sui-accordion-item-title {\n font-size: 15px;\n}\n\n.sui-2-1-0 .sui-accordion-item-title i {\n font-size: 20px;\n margin-right: 10px;\n}\n\n.sui-2-1-0 .sui-accordion-item-content {\n display: none;\n background-color: #F8F8F8;\n border-top: 0;\n}\n\n.sui-2-1-0 .sui-accordion-item-content td {\n width: 100%;\n padding: 0 30px 30px 30px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-accordion-item-content td {\n padding: 0 20px 20px 20px;\n }\n}\n\n.sui-2-1-0 .sui-accordion-item-content .sui-box {\n margin-bottom: 0;\n}\n\n.sui-2-1-0 .sui-code-snippet-wrapper {\n position: relative;\n}\n\n.sui-2-1-0 .sui-code-snippet-wrapper [data-clipboard-target] {\n position: absolute;\n right: 15px;\n top: 15px;\n margin: 0;\n min-width: auto;\n}\n\n.sui-2-1-0 .sui-dialog[aria-hidden=\"true\"] {\n display: none;\n}\n\n.sui-2-1-0 .sui-dialog {\n position: fixed;\n z-index: 1;\n top: 0;\n right: 0;\n bottom: 0;\n left: 160px;\n display: flex;\n align-items: center;\n}\n\n.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-dialog-content {\n max-width: 400px;\n}\n\n@media (max-width: 400px) {\n .sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-dialog-content {\n max-width: 90%;\n }\n}\n\n.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-box-header {\n border: none;\n text-align: center;\n display: block;\n position: relative;\n}\n\n.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-box-header .sui-box-title {\n margin-top: 30px;\n margin-bottom: -10px;\n font-size: 22px;\n}\n\n.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-box-header .sui-dialog-close {\n position: absolute;\n right: 30px;\n top: 30px;\n}\n\n.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-box-body p {\n font-size: 13px;\n line-height: 22px;\n text-align: center;\n}\n\n.sui-2-1-0 .sui-dialog.sui-dialog-sm .sui-box-footer {\n border: none;\n align-items: center;\n justify-content: center;\n}\n\n.sui-2-1-0 .sui-dialog.sui-dialog-lg .sui-dialog-content {\n max-width: 980px;\n}\n\n@media (max-width: 1200px) {\n .sui-2-1-0 .sui-dialog.sui-dialog-lg .sui-dialog-content {\n max-width: 90%;\n }\n}\n\n@media (max-width: 960px) {\n .sui-2-1-0 .sui-dialog {\n left: 36px;\n }\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-dialog {\n left: 0;\n }\n}\n\n.sui-2-1-0 .sui-dialog * {\n box-sizing: border-box;\n}\n\n.sui-2-1-0 .sui-dialog-overlay {\n position: fixed;\n z-index: 2;\n background-color: rgba(51,51,51,0.95);\n top: 0;\n right: 0;\n bottom: 0;\n left: 160px;\n}\n\n@media (max-width: 960px) {\n .sui-2-1-0 .sui-dialog-overlay {\n left: 36px;\n }\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-dialog-overlay {\n left: 0;\n }\n}\n\n.sui-2-1-0 .sui-dialog-content {\n z-index: 2;\n position: relative;\n width: 100%;\n max-width: 600px;\n margin: 0 auto;\n max-height: 85%;\n overflow-y: auto;\n}\n\n.sui-2-1-0 .sui-dialog-content>.sui-box {\n box-shadow: 0 10px 40px rgba(0,0,0,0.2);\n}\n\n.sui-2-1-0 .sui-dialog-content .sui-box-body>* {\n margin-bottom: 30px;\n}\n\n@media (max-width: 782px) {\n .sui-2-1-0 .sui-dialog-content .sui-box-body>* {\n margin-bottom: 20px;\n }\n}\n\n.sui-2-1-0 .sui-dialog-content .sui-box-body>*:last-child {\n margin-bottom: 0;\n}\n\n.sui-2-1-0 .sui-dialog-close {\n font-size: 1.25em;\n background-image: none;\n background-color: transparent;\n border: 0;\n cursor: pointer;\n color: #aaa;\n outline-style: none;\n}\n\n.sui-2-1-0 .sui-dialog-close:before {\n content: \")\";\n}\n\n.sui-2-1-0 .sui-listing li {\n color: #777771;\n line-height: 26px;\n padding: 2px 0 2px 34px;\n position: relative;\n}\n\n.sui-2-1-0 .sui-listing li:before {\n content: \"_\";\n}\n\n.sui-2-1-0 .sui-listing li:before {\n color: #17A8E3;\n top: 1px;\n font-size: 20px;\n vertical-align: middle;\n position: absolute;\n left: 0;\n width: 20px;\n height: 20px;\n opacity: 0.8;\n speak: none;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n}\n\n\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/shared-ui.scss","// Generates the required versioned body class.\n@mixin body-class {\n\t$formatted-version: str-replace($sui-version, '.', '-');\n\n\t.sui-#{$formatted-version} {\n\t\t@content;\n\t}\n}\n\n// Prevent text such as titles from wrapping.\n@mixin text-truncate {\n\twhite-space: nowrap;\n\toverflow: hidden;\n\ttext-overflow: ellipsis;\n}\n\n// Media queries.\n// Examples:\n// @include media(min-width, lg) {}\n// @include media(max-width, sm) {}\n// @include media(between, sm, lg) {}\n//\n@mixin media($type, $breakpoint-name-1, $breakpoint-name-2: null) {\n\t@if ($type == min-width) {\n\t\t$min-breakpoint-width: #{map-get($sui-breakpoints, $breakpoint-name-1)};\n\t\t@media (min-width: $min-breakpoint-width) {\n\t\t\t@content;\n\t\t}\n\t}\n\t@else if ($type == max-width) {\n\t\t$max-breakpoint-width: map-get($sui-breakpoints, $breakpoint-name-1) - 1px;\n\t\t@media (max-width: $max-breakpoint-width) {\n\t\t\t@content;\n\t\t}\n\t}\n\t@else if ($type == between) {\n\t\t$min-breakpoint-width: map-get($sui-breakpoints, $breakpoint-name-1);\n\t\t$max-breakpoint-width: map-get($sui-breakpoints, $breakpoint-name-2) - 1px;\n\t\t@media (min-width: $min-breakpoint-width) and (max-width: $max-breakpoint-width) {\n\t\t\t@content;\n\t\t}\n\t}\n\t@else {\n\t\t@warn \"Unfortunately, no type could be retrieved from `#{$type}`. \"\n\t\t+ \"Use either `min-width`, `max-width`, or `between`.\";\n\t}\n}\n\n// High PPI display background\n@mixin background-2x($path, $ext: \"png\", $w: auto, $h: auto, $pos: left top, $repeat: no-repeat) {\n\t$at1x_path: \"#{$path}.#{$ext}\";\n\t$at2x_path: \"#{$path}@2x.#{$ext}\";\n\n\tbackground: url(\"#{$at1x_path}\") $repeat $pos;\n\tbackground-size: $w $h;\n\n\t@media only screen and (-webkit-min-device-pixel-ratio: 2),\n\tonly screen and (min--moz-device-pixel-ratio: 2),\n\tonly screen and (-o-min-device-pixel-ratio: 2/1),\n\tonly screen and (min-device-pixel-ratio: 2),\n\tonly screen and (min-resolution: 192dpi),\n\tonly screen and (min-resolution: 2dppx) {\n\t\tbackground-image: url(\"#{$at2x_path}\");\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_mixins.scss","@include body-class {\n\n\t.sui-fade-in {\n\t\tanimation: fadeIn 0.3s ease-in forwards;\n\t}\n\n\t.sui-fade-out {\n\t\tanimation: fadeOut 0.3s ease-in forwards;\n\t}\n\n\t.sui-bounce-in {\n\t\tanimation: bounceInJiggle 0.8s ease-in forwards;\n\t}\n\n\t.sui-bounce-out {\n\t\tanimation: bounceOutJiggle 0.6s ease-out forwards;\n\t}\n}\n\n@keyframes bounceInDown {\n\tfrom, 60%, 75%, 90%, to {\n\t\tanimation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);\n\t}\n\t0% {\n\t\topacity: 0;\n\t\ttransform: translate3d(0, -3000px, 0);\n\t}\n\t60% {\n\t\topacity: 1;\n\t\ttransform: translate3d(0, 25px, 0);\n\t}\n\t75% {\n\t\ttransform: translate3d(0, -10px, 0);\n\t}\n\t90% {\n\t\ttransform: translate3d(0, 5px, 0);\n\t}\n\tto {\n\t\ttransform: none;\n\t}\n}\n\n@keyframes bounceInJiggle {\n\t0% { transform: translateY(-200%) scale(1.5); opacity:0; }\n\t30% { opacity:1; }\n\t58% { transform: translateY(0) rotate(1deg) scale(1); opacity: 1 }\n\t72% { transform: translateY(-30px) rotate(-1deg); }\n\t80% { transform: translateY(0) rotate(0.5deg); }\n\t100% { transform: translateY(0) rotate(0deg); }\n}\n\n@keyframes bounceOutJiggle {\n\t0% { transform: translateY(0); }\n\t10% { transform: translateY(-10px) rotate(-0.5deg); }\n\t30% { transform: translateY(20px) rotate(8deg); }\n\t70% { opacity: 1; }\n\t90% { transform: translateY(300%) translateX(40px) rotate(35deg); opacity: 0; }\n\t100% { display: none; }\n}\n\n@keyframes bounceOut {\n\t20% {\n\t\ttransform: scale3d(.9, .9, .9);\n\t}\n\t50%, 55% {\n\t\topacity: 1;\n\t\ttransform: scale3d(1.1, 1.1, 1.1);\n\t}\n\tto {\n\t\topacity: 0;\n\t\ttransform: scale3d(.3, .3, .3);\n\t}\n}\n\n@keyframes fadeIn {\n\tfrom {\n\t\topacity: 0;\n\t}\n\tto {\n\t\topacity: 1;\n\t}\n}\n\n@keyframes fadeOut {\n\tfrom {\n\t\topacity: 1;\n\t}\n\tto {\n\t\topacity: 0;\n\t}\n}\n\n@keyframes spin {\n\t0% {\n\t\ttransform: rotate(0deg);\n\t}\n\t100% {\n\t\ttransform: rotate(360deg);\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_animations.scss","// Typography\n\n@if variable-exists(google-fonts-url) and $import-font == true {\n\t@import url($google-fonts-url);\n}\n\n// Base\n@include body-class {\n\n\t.sui-wrap {\n\t\tfont-family: $font;\n\t\tfont-weight: $font--weight;\n\t\tfont-size: $font--size;\n\t\tline-height: $font--line-height;\n\t\tcolor: $font-color;\n\t\tletter-spacing: $font--letter-spacing;\n\t\ttext-rendering: optimizeLegibility;\n\t\tmargin: $sui-gutter $sui-gutter 0 ($sui-gutter - 20px); // Account for padding from #wpcontent.\n\t\t@include media( max-width, md ) {\n\t\t\tmargin: $sui-gutter-md ($sui-gutter-md - 10px) 0 ($sui-gutter-md - 20px); // Account for padding from #wpcontent.\n\t\t}\n\t}\n\n}\n\n// Headings\n@include body-class {\n\n\th1, h2, h3, h4, h5, h6 {\n\t\tdisplay: block;\n\t\tmargin: 0.5em auto;\n\t\tpadding: 0;\n\t\tline-height: $font--line-height;\n\t\tcolor: $headings-color;\n\t\tfont-weight: $font--weight-bold;\n\t\tfont-family: $font--alt;\n\t}\n\n\th1 {\n\t\tfont-size: $h1-font-size;\n\t\tline-height: $h1-line-height;\n\t\tcolor: $headings-color;\n\t\tmargin: 0;\n\t}\n\th2 {\n\t\tfont-size: $h2-font-size;\n\t\tline-height: $h2-line-height;\n\t}\n\n\th3 {\n\t\tfont-size: $h3-font-size;\n\t\tline-height: $h3-line-height;\n\t}\n\n\th4 {\n\t\tfont-size: $h4-font-size;\n\t}\n\n\th5 {\n\t\tfont-size: $h5-font-size;\n\t}\n\n\th6 {\n\t\tfont-size: $h6-font-size;\n\t}\n\n}\n\n// Paragraph\n@include body-class {\n\n\tp {\n\t\tfont-family: $font;\n\t\tfont-weight: $font--weight;\n\t\tfont-size: $font--size;\n\t\tline-height: $font--line-height;\n\t\tcolor: $font-color;\n\t\tletter-spacing: $font--letter-spacing;\n\t\ttext-rendering: optimizeLegibility;\n\n\t\t&:first-child {\n\t\t\tmargin-top: 0;\n\t\t}\n\n\t\t&:last-child {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t}\n\n\tp small {\n\t\tfont-size: 13px;\n\t\tline-height: 22px;\n\t\tcolor: $p-small-color;\n\t}\n\n}\n\n// Links\n@include body-class {\n\n\ta {\n\t\ttext-decoration: none;\n\t\tcolor: $a-color;\n\t\tfont-weight: 500;\n\t\toutline-color: transparent;\n\t\toutline-style: none;\n\t\tbox-shadow: none;\n\n\t\t&:hover, &:focus, &:active {\n\t\t\t&:not(.sui-button) {\n\t\t\t\tcolor: $a-action-color;\n\t\t\t}\n\t\t}\n\n\t\t&.disabled {\n\t\t\tpointer-events: none;\n\n\t\t\t&:hover, &:focus, &:active {\n\t\t\t\tcolor: $a-disabled-color;\n\t\t\t\tcursor: default;\n\t\t\t}\n\n\t\t}\n\n\t}\n\n}\n\n// Code\n@include body-class {\n\n\tcode,\n\tpre {\n\t\tfont-weight: 500;\n\t\tfont-size: 13px;\n\t\tline-height: 18px;\n\t\tcolor: $pre-color;\n\t\tbackground-color: $code-bg-color;\n\t\tborder: 1px solid $code-border-color;\n\t\tborder-radius: $border-radius;\n\t\tmargin: 0;\n\t\tpadding: 10px 15px;\n\t\twhite-space: pre;\n\t\toverflow: auto;\n\t\tmax-width: 100%;\n\t\tvertical-align: middle;\n\t\ttab-size: 4;\n\t}\n\n\tcode {\n\t\tdisplay: inline-block;\n\t\tpadding: 2px 5px;\n\t}\n\n}\n\n// Misc\n@include body-class {\n\n\tb, strong {\n\t\tfont-weight: 500;\n\t}\n\n\tdfn {\n\t\tfont-style: normal;\n\t\tfont-weight: normal;\n\t\tborder-bottom: 1px dotted $dfn-border-color;\n\t}\n}\n\n\n\n\n\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_typography.scss","%sui-icons {\n\tfont-family: 'WPMU-DEV-Icon' !important; // Use !important to prevent issues with browser extensions that change fonts.\n\tspeak: none;\n\tfont-size: 1em;\n\tfont-style: normal;\n\tfont-weight: normal;\n\tfont-variant: normal;\n\ttext-transform: none;\n\tline-height: 1;\n\ttext-rendering: auto;\n\tdisplay: inline-block;\n\tcolor: $icon-color;\n\n\t// Better Font Rendering\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n}\n\n@mixin icon($position: before, $icon: false, $styles: true) {\n\t@if $position == both {\n\t\t$position: 'before, &:after';\n\t}\n\t// Either a :before or :after pseudo-element, or both, defaulting to :before.\n\t&:#{$position} {\n\t\t@if $icon {\n\t\t\t// A particular icon has been specified.\n\t\t\tcontent: \"#{map-get($icons, $icon)}\";\n\t\t}\n\t\t@if $styles {\n\t\t\t@extend %sui-icons;\n\t\t}\n\t\t// Include any extra rules supplied for the pseudo-element.\n\t\t@content;\n\t}\n}\n\n// Map icon names to font unicode characters.\n$icons: (\n\t\t24-hour-support: '\\c1',\n\t\t2FA: '\\e912',\n\t\tIP: '\\e910',\n\t\tab-testing: '\\bb',\n\t\tacademy: '\\3c0',\n\t\taccounts-billing: '\\e914',\n\t\talert: '\\58',\n\t\talign-center: '\\5e',\n\t\talign-justify: '\\23',\n\t\talign-left: '\\25',\n\t\talign-right: '\\26',\n\t\tanimation-video: '\\46',\n\t\tannotate: '\\b4',\n\t\tarchive: '\\62',\n\t\tarrow-down: '\\c2',\n\t\tarrow-left: '\\f8ff',\n\t\tarrow-location: '\\4d',\n\t\tarrow-pointer-cursor: '\\4e',\n\t\tarrow-return-back: '\\52',\n\t\tarrow-right: '\\af',\n\t\tarrow-skip-back: '\\e916',\n\t\tarrow-skip-end: '\\e919',\n\t\tarrow-skip-forward: '\\e917',\n\t\tarrow-skip-start: '\\e918',\n\t\tarrow-up: '\\d4',\n\t\tarrows-compress: '\\2265',\n\t\tarrows-expand: '\\ac',\n\t\tarrows-in: '\\2264',\n\t\tarrows-out: '\\2da',\n\t\tasterisk: '\\2a',\n\t\tat-sign: '\\40',\n\t\taudio-sound: '\\e9ae',\n\t\tautomate: '\\152',\n\t\tblog: '\\e90d',\n\t\tbold: '\\42',\n\t\tbook: '\\2206',\n\t\tbook-bookmark: '\\2d9',\n\t\tbookmark: '\\221a',\n\t\tbrush: '\\7e',\n\t\tbuddypress: '\\e90c',\n\t\tcalendar: '\\220f',\n\t\tcamera: '\\d8',\n\t\tcheck: '\\28',\n\t\tcheck-tick: '\\5f',\n\t\tchevron-down: '\\131',\n\t\tchevron-left: '\\d3',\n\t\tchevron-right: '\\2dc',\n\t\tchevron-up: '\\2dd',\n\t\tclipboard-notes: '\\bf',\n\t\tclock: '\\2c',\n\t\tclose: '\\29',\n\t\tcloud: '\\2122',\n\t\tcloud-migration: '\\e905',\n\t\tcloudflare: '\\d0',\n\t\tcode: '\\3a',\n\t\tcoffee-cup: '\\e96b',\n\t\tcolor-pick-eyedropper: '\\a5',\n\t\tcomment: '\\a7',\n\t\tcomment-2: '\\aa',\n\t\tcomments: '\\b6',\n\t\tcommunity-people: '\\2018',\n\t\tcompass: '\\2c6',\n\t\tcredit-card: '\\63',\n\t\tcrop: '\\43',\n\t\tcross-close: '\\2b',\n\t\tcrown: '\\a1',\n\t\tdashboard: '\\e9b2',\n\t\tdashboard-settings: '\\e901',\n\t\tdefender: '\\b7',\n\t\tdevman: '\\20ac',\n\t\tdislike: '\\6b',\n\t\tdollar: '\\24',\n\t\tdownload: '\\e93b',\n\t\tdownload-cloud: '\\a3',\n\t\teye: '\\65',\n\t\teye-hide: '\\71',\n\t\tfast-forward: '\\3e',\n\t\tfilter: '\\7a',\n\t\tfinger-point: '\\2248',\n\t\tfinger-swipe: '\\2203',\n\t\tfirst-aid: '\\e93f',\n\t\tflag: '\\7c',\n\t\tfolder: '\\2d8',\n\t\tforminator: '\\e908',\n\t\tforminator-2: '\\e907',\n\t\tgallery-slider: '\\f7',\n\t\tgoogle-analytics: '\\e5',\n\t\tgraph-bar: '\\c7',\n\t\tgraph-bar-2: '\\2db',\n\t\theart: '\\4b',\n\t\thelp-support: '\\48',\n\t\thome: '\\4a',\n\t\thub: '\\fb02',\n\t\thummingbird: '\\b0',\n\t\thustle: '\\2014',\n\t\tindent-less: '\\201d',\n\t\tindent-more: '\\2019',\n\t\tinfinity: '\\56',\n\t\tinfo: '\\49',\n\t\titalic: '\\7b',\n\t\tjobs-pros-search: '\\e90e',\n\t\tkey: '\\25ca',\n\t\tlaptop: '\\ab',\n\t\tlayers: '\\e6',\n\t\tlayout: '\\a9',\n\t\tlayout-grid: '\\221e',\n\t\tlightbulb: '\\4c',\n\t\tlightbulb-line: '\\e913',\n\t\tlike: '\\6a',\n\t\tlink: '\\35',\n\t\tlist: '\\60',\n\t\tlist-bullet: '\\38',\n\t\tlist-number: '\\37',\n\t\tloader: '\\e9be',\n\t\tlocation-marker: '\\6c',\n\t\tlock: '\\39',\n\t\tmagnifying-glass-search: '\\ba',\n\t\tmagnifying-search-glass-love: '\\2022',\n\t\tmail: '\\6d',\n\t\tmap: '\\34',\n\t\tmegaphone: '\\c5',\n\t\tmicrophone-audio: '\\2030',\n\t\tminus: '\\2d',\n\t\tmobile: '\\201c',\n\t\tmobile-signal: '\\201b',\n\t\tmonitor: '\\5c',\n\t\tmore: '\\2026',\n\t\tmouse-scroll: '\\df',\n\t\tnews-paper: '\\2211',\n\t\tnotification: '\\6e',\n\t\tnotification-count: '\\e900',\n\t\topen-new-window: '\\e909',\n\t\tpage: '\\d2',\n\t\tpage-multiple: '\\e7',\n\t\tpage-pdf: '\\c6',\n\t\tpage-search: '\\da',\n\t\tpaint-bucket: '\\222b',\n\t\tpaperclip: '\\41',\n\t\tpause: '\\6f',\n\t\tpaypal: '\\59',\n\t\tpencil: '\\2f',\n\t\tperformance: '\\e903',\n\t\tphoto-picture: '\\44',\n\t\tplay: '\\70',\n\t\tplug-connected: '\\e90b',\n\t\tplug-disconnected: '\\e90a',\n\t\tplugin-2: '\\4f',\n\t\tplugins: '\\50',\n\t\tplus: '\\3d',\n\t\tpower-on-off: '\\e904',\n\t\tprice-tag: '\\2c7',\n\t\tprofile-female: '\\192',\n\t\tprofile-male: '\\b5',\n\t\tprogress: '\\e9b1',\n\t\tpulse: '\\201e',\n\t\tpuzzle: '\\7d',\n\t\tquestion: '\\3f',\n\t\tquote: '\\3b',\n\t\tquote-2: '\\27',\n\t\trefresh: '\\45',\n\t\treply: '\\72',\n\t\trocket-launch: '\\e9bf',\n\t\tsecurity-thumb-print: '\\e90f',\n\t\tsettings-slider-control: '\\153',\n\t\tshare: '\\73',\n\t\tsheild-badge: '\\e96a',\n\t\tshipper-anchor: '\\e906',\n\t\tshopping-cart: '\\cd',\n\t\tsitemap: '\\b8',\n\t\tskull: '\\e96c',\n\t\tsmart-crawl: '\\2202',\n\t\tsmush: '\\2021',\n\t\tsnapshot: '\\fb01',\n\t\tsocial-android: '\\2e',\n\t\tsocial-apple: '\\61',\n\t\tsocial-drive: '\\76',\n\t\tsocial-dropbox: '\\64',\n\t\tsocial-facebook: '\\66',\n\t\tsocial-github: '\\68',\n\t\tsocial-google-plus: '\\67',\n\t\tsocial-linkedin: '\\69',\n\t\tsocial-twitter: '\\74',\n\t\tsocial-youtube: '\\79',\n\t\tspeed-optimize: '\\f8',\n\t\tstar: '\\53',\n\t\tstar-line: '\\cf',\n\t\tstopwatch: '\\e986',\n\t\tstorage-server-data: '\\ce',\n\t\tstyle-type: '\\3c',\n\t\ttablet-landscape: '\\5b',\n\t\ttablet-portrait: '\\5d',\n\t\ttarget: '\\2020',\n\t\ttech-support: '\\e915',\n\t\ttesting-bottle-beaker: '\\e9b4',\n\t\ttext-color: '\\a8',\n\t\tthemes: '\\54',\n\t\tthumbnails: '\\47',\n\t\tticket: '\\e97d',\n\t\ttimed-countdown: '\\e911',\n\t\ttrash: '\\51',\n\t\tunderline: '\\55',\n\t\tunlink: '\\36',\n\t\tunlock: '\\30',\n\t\tupdate: '\\ae',\n\t\tupdate-arrow: '\\e902',\n\t\tupfront: '\\201a',\n\t\tupload-cloud: '\\a2',\n\t\tuptime: '\\b1',\n\t\tuser-hero-points-trophy: '\\31',\n\t\tuser-reputation-points: '\\32',\n\t\tuser-star-level-up: '\\33',\n\t\twand-magic: '\\5a',\n\t\twarning-alert: '\\21',\n\t\tweb-globe-world: '\\57',\n\t\twhite-label-video: '\\75',\n\t\twidget-settings-config: '\\78',\n\t\twordpress: '\\77',\n\t\twpmudev-logo: '\\2039',\n\t\twpmudev-logo-2: '\\203a',\n\t\twrench-tool: '\\2044',\n\t\tzip: '\\3a9',\n\t\tzoom-in: '\\2260',\n\t\tzoom-out: '\\2013',\n);\n\n@font-face {\n\tfont-family: 'WPMU-DEV-Icon';\n\tsrc: url('#{$sui-font-path}WPMU-DEV-Icon.eot');\n\tsrc: url('#{$sui-font-path}WPMU-DEV-Icon.eot') format('embedded-opentype'),\n\turl('#{$sui-font-path}WPMU-DEV-Icon.ttf') format('truetype'),\n\turl('#{$sui-font-path}WPMU-DEV-Icon.woff') format('woff'),\n\turl('#{$sui-font-path}WPMU-DEV-Icon.woff2') format('woff2'),\n\turl('#{$sui-font-path}WPMU-DEV-Icon.svg') format('svg');\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n@include body-class {\n\n\t.sui-loading:before {\n\t\tanimation: spin 1.3s linear infinite;\n\t}\n\n\t// Set the required styles on all icons.\n\t[class*=\"sui-icon-\"] {\n\t\tdisplay: inline-block;\n\t\t@include icon(both);\n\t}\n\n\t// Icon sizes.\n\t[class*=\"sui-icon-\"].sui-xl {\n\t\t&:before {\n\t\t\tfont-size: 30px;\n\t\t}\n\t}\n\n\t[class*=\"sui-icon-\"].sui-lg {\n\t\t&:before {\n\t\t\tfont-size: 20px;\n\t\t}\n\t}\n\n\t[class*=\"sui-icon-\"].sui-md {\n\t\t&:before {\n\t\t\tfont-size: 16px;\n\t\t}\n\t}\n\n\t[class*=\"sui-icon-\"].sui-sm {\n\t\t&:before {\n\t\t\tfont-size: 12px;\n\t\t}\n\t}\n\n\t// Colors.\n\t[class*=\"sui-icon-\"].sui-success {\n\t\t&:before {\n\t\t\tcolor: inherit;\n\t\t}\n\t}\n\n\t[class*=\"sui-icon-\"].sui-error {\n\t\t&:before {\n\t\t\tcolor: inherit;\n\t\t}\n\t}\n\n\t[class*=\"sui-icon-\"].sui-warning {\n\t\t&:before {\n\t\t\tcolor: inherit;\n\t\t}\n\t}\n\n\t[class*=\"sui-icon-\"].sui-info {\n\t\t&:before {\n\t\t\tcolor: inherit;\n\t\t}\n\t}\n\n\t// Fixed width icons.\n\t[class*=\"sui-icon-\"].sui-fw {\n\t\twidth: 1.8em;\n\t\ttext-align: center;\n\t\tmin-height: 1em;\n\t}\n\n\t// Setup a class name for each icon.\n\t@each $name, $char in $icons {\n\t\t.sui-icon-#{$name}:before {\n\t\t\tcontent: $char;\n\t\t}\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_icons.scss","// Buttons\n\n@include body-class {\n\tbutton.sui-button,\n\ta.sui-button,\n\t.sui-button {\n\t\tmin-width: 80px;\n\t\theight: 30px;\n\t\tcursor: pointer;\n\t\tdisplay: inline-block;\n\t\tposition: relative;\n\t\tpadding: 7px 16px;\n\t\tmargin: 0 10px 0 0;\n\t\tborder: 0;\n\t\tbackground-color: $button-bg-color;\n\t\tcolor: $white;\n\t\tfont: 500 12px/16px $font;\n\t\tletter-spacing: -.025em;\n\t\ttext-transform: uppercase;\n\t\ttext-align: center;\n\t\ttext-decoration: none;\n\t\tborder-radius: 3px;\n\t\ttransition: all .3s ease;\n\t\ttext-shadow: none;\n\t\twhite-space: nowrap;\n\n\t\t.sui-loading {\n\t\t\tdisplay: none;\n\t\t\tposition: absolute;\n\t\t\ttop: 50%;\n\t\t\tleft: 50%;\n\t\t\tmargin: -8px;\n\t\t}\n\n\t\t.sui-loading-text {\n\t\t\tpointer-events: none;\n\t\t}\n\n\t\ti:before {\n\t\t\ttransition: all .3s ease;\n\t\t\tcolor: $white;\n\t\t}\n\n\t\t&:hover,\n\t\t&:focus {\n\t\t\toutline: none;\n\t\t\tbackground: $button-action-bg-color;\n\t\t\tborder-color: $button-action-bg-color;\n\t\t}\n\n\t\t&:focus,\n\t\t&:active {\n\t\t\toutline: none;\n\t\t\tbox-shadow: none;\n\t\t\tbackground: $button-action-bg-color;\n\t\t\tborder-color: $button-action-bg-color;\n\t\t}\n\n\t\t&.sui-button-primary,\n\t\t&.sui-button-blue {\n\t\t\tbackground: $button-blue-bg-color;\n\n\t\t\ti:before {\n\t\t\t\tcolor: $white;\n\t\t\t}\n\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\tbackground: $button-blue-action-bg-color;\n\t\t\t}\n\t\t}\n\n\t\t&.sui-button-red {\n\t\t\tbackground: $button-red-bg-color;\n\n\t\t\ti:before {\n\t\t\t\tcolor: $white;\n\t\t\t}\n\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\topacity: 1;\n\t\t\t\tbackground: $button-red-action-bg-color;\n\t\t\t}\n\t\t}\n\n\t\t&.sui-button-green {\n\t\t\tbackground: $button-green-bg-color;\n\n\t\t\ti:before {\n\t\t\t\tcolor: $white;\n\t\t\t}\n\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\topacity: 1;\n\t\t\t\tbackground: $button-green-action-bg-color;\n\t\t\t}\n\t\t}\n\n\t\t&.sui-button-upsell {\n\t\t\tborder: 2px solid $tag-upsell-color;\n\t\t\tcolor: $green;\n\t\t\twidth: auto;\n\t\t\theight: 26px;\n\t\t\tline-height: 15px;\n\t\t\tbackground: transparent;\n\t\t\tpadding: 4px 16px;\n\t\t\tborder-radius: 15px;\n\t\t\ttext-transform: none;\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\topacity: 1;\n\t\t\t\tborder-color: $button-green-action-bg-color;\n\t\t\t\tbackground: $button-green-action-bg-color;\n\t\t\t\tcolor: $white;\n\t\t\t}\n\t\t}\n\n\t\t&.sui-button-ghost {\n\t\t\tpadding: 5px 16px 7px;\n\t\t\tborder: 2px solid $button-ghost-border-color;\n\t\t\tbackground: transparent;\n\t\t\tcolor: $button-ghost-color;\n\n\t\t\ti:before {\n\t\t\t\tcolor: $button-ghost-color;\n\t\t\t}\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\tborder-color: $button-ghost-action-border-color;\n\t\t\t\tbackground: $button-ghost-action-bg-color;\n\t\t\t\tcolor: $white;\n\t\t\t\ti:before {\n\t\t\t\t\tcolor: $white;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.sui-button-blue {\n\t\t\t\tborder-color: $blue;\n\t\t\t\tcolor: $blue;\n\n\t\t\t\ti:before {\n\t\t\t\t\tcolor: $blue;\n\t\t\t\t}\n\n\t\t\t\t&:hover,\n\t\t\t\t&:focus {\n\t\t\t\t\tborder-color: $blue;\n\t\t\t\t\tbackground: $blue;\n\t\t\t\t\tcolor: $white;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.sui-button-red {\n\t\t\t\tborder-color: $button-red-action-bg-color;\n\t\t\t\tcolor: $button-red-action-bg-color;\n\n\t\t\t\ti:before {\n\t\t\t\t\tcolor: red;\n\t\t\t\t}\n\n\t\t\t\t&:hover,\n\t\t\t\t&:focus {\n\t\t\t\t\topacity: 1;\n\t\t\t\t\tborder-color: $red;\n\t\t\t\t\tbackground: $red;\n\t\t\t\t\tcolor: $white;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&.sui-button-green {\n\t\t\t\tborder-color: $green;\n\t\t\t\tcolor: $green;\n\n\t\t\t\ti:before {\n\t\t\t\t\tcolor: $green;\n\t\t\t\t}\n\n\t\t\t\t&:hover,\n\t\t\t\t&:focus {\n\t\t\t\t\topacity: 1;\n\t\t\t\t\tborder-color: $button-green-action-bg-color;\n\t\t\t\t\tbackground: $button-green-action-bg-color;\n\t\t\t\t\tcolor: $white;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.sui-button-lg {\n\t\t\theight: 40px;\n\t\t\tpadding: 11px 20px 9px;\n\t\t\tborder-radius: $border-radius;\n\t\t\tfont: 500 15px/20px $font;\n\n\t\t\t&.sui-button-ghost {\n\t\t\t\tpadding: 9px 20px 9px;\n\t\t\t}\n\t\t}\n\n\t\t&.sui-button-onload {\n\t\t\tpointer-events: none;\n\n\t\t\t.sui-loading {\n\t\t\t\tdisplay: block;\n\t\t\t}\n\n\t\t\t&,\n\t\t\t&.sui-button-blue,\n\t\t\t&.sui-button-green,\n\t\t\t&.sui-button-red {\n\t\t\t\tbackground: $button-onload-color;\n\n\t\t\t\t.sui-loading-text {\n\t\t\t\t\tcolor: $button-onload-color;\n\t\t\t\t}\n\t\t\t}\n\t\t\t&.sui-button-ghost {\n\t\t\t\tborder-color: $button-onload-color;\n\t\t\t\tbackground: transparent;\n\n\t\t\t\t.sui-loading-text {\n\t\t\t\t\tcolor: transparent;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&:disabled,\n\t\t&[disabled],\n\t\t&.disabled {\n\t\t\tcolor: $button-disabled-color;\n\t\t\tborder-color: $button-disabled-border-color;\n\t\t\tbackground: $button-disabled-bg-color;\n\t\t\tbox-shadow: none;\n\t\t\tpointer-events: none;\n\t\t\tcursor: default;\n\t\t\t-webkit-transform: none;\n\t\t\ttransform: none;\n\t\t\t&:hover,\n\t\t\t&:focus {\n\t\t\t\tcolor: $button-disabled-color;\n\t\t\t\tborder-color: $button-disabled-border-color;\n\t\t\t\tbackground: $button-disabled-bg-color;\n\t\t\t\tbox-shadow: none;\n\t\t\t\tcursor: default;\n\t\t\t\t-webkit-transform: none;\n\t\t\t\ttransform: none;\n\t\t\t}\n\t\t}\n\n\t\t&:last-child {\n\t\t\tmargin: 0;\n\t\t}\n\n\t\t&.sui-button-icon {\n\t\t\tmin-width: 0;\n\t\t}\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_buttons.scss","// Colors\n$palettes: (\n\tmono: (\n\t\tdefault: #000000,\n\t\tblack: #000000,\n\t\twhite: #FFFFFF,\n\t),\n\tgray: (\n\t\tdefault: #666666,\n\t\tlighter: #DDDDDD,\n\t\tlight: #888888,\n\t\tmedium: #7B7B7B,\n\t\tdark: #333333,\n\t\talt: #777771,\n\t),\n\tsilver: (\n\t\tdefault: #F2F2F2,\n\t\tlight: #F8F8F8,\n\t\tsoft: #E6E6E6,\n\t\tmedium: #AAAAAA,\n\t\talt: #EAEAEA,\n\t),\n\tblue: (\n\t\tdefault: #17A8E3,\n\t\tlight: #D2F0FF,\n\t\tsoft: #E1F6FF,\n\t\tmedium: #0A9BD6,\n\t),\n\tred: (\n\t\tdefault: #C40000,\n\t\tlighter: #FFE5E9,\n\t\tlight: #CB4B57,\n\t\tsoft: #FF7F83,\n\t),\n\tyellow: (\n\t\tdefault: #FECF2F,\n\t\tlight: #FFF5D5,\n\t),\n\tgreen: (\n\t\tdefault: #1ABC9C,\n\t\tsoft: #D1F1EA,\n\t\tmedium: #148F77,\n\t)\n) !default;\n\n$success: palette(green) !default;\n$warning: palette(yellow) !default;\n$error: palette(red, soft) !default;\n$info: palette(blue) !default;\n\n// Primary Colors\n$white: palette(mono, white) !default;\n$black: palette(mono, black) !default;\n$gray: palette(gray) !default;\n$gray-alt: palette(gray, dark) !default;\n$blue: palette(blue) !default;\n$red: palette(red) !default;\n$green: palette(green) !default;\n$silver: palette(silver) !default;\n\n// Boxes Colors (_boxes.scss)\n$box-bg-color: palette(mono, white) !default;\n$box-box-shadow-color: palette(silver, alt) !default;\n$box-header-border-color: palette(silver, alt) !default;\n$box-footer-border-color: palette(silver, alt) !default;\n$box-settings-box-border-color: palette(silver, soft) !default;\n$box-settings-label-color: palette(gray, dark) !default;\n$box-upsell-p-color: palette(gray, dark) !default;\n$box-upsell-p-bg-color: palette(blue, soft) !default;\n\n// Buttons Colors (_buttons.scss)\n// Default Button\n$button-bg-color: palette(gray, light) !default;\n$button-action-bg-color: palette(gray, medium) !default;\n\n// Blue Button\n$button-blue-bg-color: palette(blue) !default;\n$button-blue-ghost-color: palette(blue) !default;\n$button-blue-action-bg-color: palette(blue, medium) !default;\n\n// Red Button\n$button-red-bg-color: palette(red, light) !default;\n$button-red-action-bg-color: palette(red) !default;\n\n// Green Button\n$button-green-bg-color: palette(green) !default;\n$button-green-action-bg-color: palette(green, medium) !default;\n\n// Ghost Button\n$button-ghost-border-color: palette(gray, lighter) !default;\n$button-ghost-color: palette(gray, light) !default;\n$button-ghost-action-border-color: palette(gray, light) !default;\n$button-ghost-action-bg-color: palette(gray, light) !default;\n\n// Onload Button\n$button-onload-color: palette(silver, soft) !default;\n\n// Disabled Button\n$button-disabled-color: palette(silver, medium) !default;\n$button-disabled-border-color: palette(gray, lighter) !default;\n$button-disabled-bg-color: palette(silver, light) !default;\n\n// Toggles Colors (_toggles.scss)\n$toggle-slider-bg-color: palette(silver, light) !default;\n$toggle-slider-before-bg-color: palette(gray, light) !default;\n$toggle-slider-before-checked-bg-color: palette(blue) !default;\n$toggle-slider-border-color: palette(silver, soft) !default;\n\n// Typography Colors (_typography.scss)\n$headings-color: palette(gray, dark) !default;\n$font-color: $gray !default;\n$p-small-color: palette(gray, light) !default;\n$a-color: palette(blue) !default;\n$a-action-color: palette(blue, medium) !default;\n$a-disabled-color: palette(gray, light) !default;\n$code-bg-color: palette(silver, light) !default;\n$code-border-color: palette(silver, soft) !default;\n$dfn-border-color: palette(gray, light) !default;\n$pre-color: palette(gray, dark) !default;\n\n// Notifications Colors (_notifications.scss)\n$notice-font-color: palette(gray, dark) !default;\n$notice-default-bg-color: palette(silver) !default;\n$notice-default-icon-color: palette(gray, light) !default;\n$notice-warning-bg-color: palette(yellow, light) !default;\n$notice-warning-icon-color: $warning !default;\n$notice-success-bg-color: palette(green, soft) !default;\n$notice-success-icon-color: $success !default;\n$notice-error-bg-color: palette(red, lighter) !default;\n$notice-error-icon-color: $error !default;\n$notice-info-bg-color: palette(blue, soft) !default;\n$notice-info-icon-color: palette(blue) !default;\n\n// Tooltips (_tooltips.scss)\n$tooltips-color: palette(mono, black) !default;\n\n// Select (_select.scss)\n$select-container-border-color: palette(gray, lighter) !default;\n$select-container-action-border-color: palette(gray, lighter) !default;\n$select-container-bg-color: palette(silver, light) !default;\n$select-dropdown-handle-bg-color: palette(silver, light) !default;\n$select-dropdown-handle-color: palette(grey, light) !default;\n$select-list-value-color: palette(silver, medium) !default;\n$select-list-value-hover-color: palette(gray, dark) !default;\n$select-list-results-bg-color: palette(mono, white) !default;\n$select-list-results-border-color: palette(silver, alt) !default;\n$select-list-results-li-color: palette(gray, alt) !default;\n$select-list-results-li-optgroup-color: palette(silver, medium) !default;\n$select-list-hover-bg-color: palette(silver) !default;\n$select-current-bg-color: palette(gray, light) !default;\n$select-active-list-value-color: palette(gray, dark) !default;\n$select-active-list-value-bg-color: palette(silver, light) !default;\n$select-mobile-nav-handle-color: palette(gray, lighter) !default;\n$select-mobile-nav-handle-hover-color: palette(gray, alt) !default;\n\n// Sidebar (_sidebar.scss)\n$sidenav-tab-color: palette(gray) !default;\n$sidenav-tab-color-hover: palette(gray, dark) !default;\n$sidenav-tab-active-color: palette(gray, dark) !default;\n$sidenav-tab-active-bg-color: palette(silver, soft) !default;\n$sidenav-tab-icon-color: palette(green) !default;\n\n// Summary (_summary.scss)\n$list-summary-number-color: palette(gray, light) !default;\n$list-summary-small-color: palette(gray, light) !default;\n\n// Tags (_tags.scss)\n$tag-color: palette(gray, dark) !default;\n$tag-color-alt: palette(mono, white) !default;\n$tag-bg-color: $warning !default;\n$tag-success-bg-color: $success !default;\n$tag-error-bg-color: $error !default;\n$tag-inactive-bg-color: palette(silver, soft) !default;\n$tag-upgrade-bg-color: palette(green) !default;\n$tag-upsell-color: palette(green, soft) !default;\n$tag-disabled-color: palette(silver, medium) !default;\n$tag-disabled-bg-color: palette(silver, light) !default;\n\n// Forms (_forms.scss)\n$form--description-color: palette(gray, light) !default;\n$form--input-color: palette(gray, dark) !default;\n$form--input-color-focus: palette(gray, dark) !default;\n$form--input-bg-color: palette(silver, light) !default;\n$form--input-bg-color-focus: palette(mono, white) !default;\n$form--input-border-color: palette(gray, lighter) !default;\n$form--input-border-color-hover: palette(gray, lighter) !default;\n$form--input-border-color-error: $error !default;\n$form--input-error-color: $error !default;\n$form--input-icon-color: palette(gray, light) !default;\n$form--input-placeholder-color: palette(gray, lighter) !default;\n$form--label-color: palette(gray, light) !default;\n$checkbox-radio-bg-color: palette(silver, soft) !default;\n$checkbox-radio-disabled-color: palette(silver, medium) !default;\n$checkbox-radio-active-color: $blue !default;\n\n// Tabs Colors (_tabs.scss)\n$tabs-label-color: palette(gray, light) !default;\n$tabs-label-checked-color: palette(gray, alt) !default;\n$tabs-label-active-color: palette(gray, dark) !default;\n$tabs-label-active-border-color: palette(gray, dark) !default;\n$tabs-content-border-color: palette(silver, alt) !default;\n\n// Modals (_modals.scss)\n$modal-overlay-bg-color: rgba(51, 51, 51, 0.95) !default;\n$modal-box-shadow-color: rgba(0, 0, 0, 0.2) !default;\n$modal-close-color: palette(silver, medium) !default;\n$modal-close-action-color: palette(gray, alt) !default;\n$modal-close-action-color: palette(gray, alt) !default;\n\n// Dropdowns (_dropdowns.scss)\n$dropdown-anchor-color: palette(gray, light) !default;\n$dropdown-ul-border-color: palette(gray, lighter) !default;\n$dropdown-label-border-color: palette(silver, soft) !default;\n$dropdown-ul-before-border-color: palette(silver, soft) !default;\n\n// Scores (_scores.scss)\n$circle-score-success-color: $success !default;\n$circle-score-warning-color: $warning !default;\n$circle-score-error-color: $error !default;\n$circle-score-bg-color: $silver !default;\n$circle-score-default-dial-color: $success !default;\n\n// Footer (_footer.scss)\n$footer-color: palette(silver, medium) !default;\n$footer-cross-sell-border-color: palette(silver, soft) !default;\n$footer-cross-sell-icon-color: palette(gray, light) !default;\n$footer-cross-sell-p-color: palette(gray, light) !default;\n\n// Progress Bars (_progress-bars.scss)\n$progress-text-span-color: palette(gray, dark) !default;\n$progress-bar-bg-color: palette(silver, soft) !default;\n$progress-bar-span-bg-color: palette(blue) !default;\n$progress-block-bg-color: palette(silver, light) !default;\n$progress-state-text-color: palette(gray, light) !default;\n$progress-close-color: palette(silver, medium) !default;\n\n// Tables (_tables.scss)\n$table--border-color: palette(silver, soft) !default;\n$table--th-color: $headings-color !default;\n$table--text-color: $font-color !default;\n$table--field-list-title-color: $headings-color !default;\n\n// Accordions (_accordions.scss)\n$accordion--content-bg-color: palette(silver,light) !default;\n$accordion--open-indicator-color: palette(gray,light) !default;\n\n// Icons (_icons.scss)\n$icon-color: palette(gray,light) !default;\n\n// Lists (_list.scss)\n$list-detail-color: palette(gray,light) !default;\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_colors.scss","$sui-version: '2.1.0';\n\n// Import Google Fonts\n$import-font: true !default;\n$google-fonts-url: 'https://fonts.googleapis.com/css?family=Roboto+Condensed:400,500,700|Roboto:400,500,700' !default;\n\n// Typography\n$font: \"Roboto\", Arial, sans-serif !default;\n$font--alt: \"Roboto Condensed\", \"Roboto\", Arial, sans-serif !default;\n$font--size: 15px !default;\n\n$font--weight: 400;\n$font--weight-bold: 700;\n\n$font--line-height: 30px !default;\n$font--letter-spacing: -0.025em !default;\n\n$h1-font-size: 32px !default;\n$h2-font-size: 22px !default;\n$h3-font-size: 18px !default;\n$h4-font-size: 15px !default;\n$h5-font-size: 15px !default;\n$h6-font-size: 15px !default;\n\n$h1-line-height: 40px;\n$h2-line-height: 35px;\n$h3-line-height: 40px;\n\n$border-radius: 3px !default;\n\n// Layout\n$sui-gutter: 30px !default;\n$sui-gutter-md: 20px !default;\n$sui-total-grid-cols: 12 !default;\n$sui-breakpoints: (\n\txs: 0px,\n\tsm: 480px,\n\tmd: 783px,\n\tlg: 1200px\n) !default;\n\n// Summary\n$summary-image-default-url: '../images/graphic-hb-minify-summary@2x.png' !default;\n$summary-image-default-position: 3% 100% !default;\n$summary-image-default-width: 192px !default;\n$summary-image-default-height: 172px !default;\n\n// Forms\n$form--input-border-radius: $border-radius !default;\n$form--input-height-base: 40px !default;\n$form--input-line-height: $font--line-height !default;\n$form--input-font-weight: 500 !default;\n$form--input-error-font-size: 12px !default;\n$form--input-error-line-height: 16px !default;\n$form--input-error-font-weight: 500 !default;\n$form--label-font: $font !default;\n$form--label-font-weight: 500 !default;\n$form--label-font-size: 12px !default;\n$form--label-line-height: 16px !default;\n$form--description-font-weight: 400 !default;\n$form--description-font-size: 13px !default;\n\n// Paths\n$sui-image-path: '../images/' !default;\n$sui-font-path: '../fonts/' !default;\n\n// Scores\n$circle-score-sm: 30px !default;\n$circle-score-lg: 120px !default;\n$circle-score-label-spacing: 10px !default;\n\n// Sidenav\n$sidenav-width: 220px !default;\n\n// Margin\n$default-margin: 30px !default;\n\n// Padding\n$default-padding: 30px !default;\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_variables.scss","@include body-class {\n\n\t// Toggle base styles.\n\t.sui-toggle {\n\t\tposition: relative;\n\t\tdisplay: inline-block;\n\t\twidth: 34px;\n\t\theight: 16px;\n\t\tmargin-right: 10px;\n\n\t\t&.sui-toggle-label {\n\t\t\ttop: 3px;\n\t\t}\n\t}\n\n\t.sui-toggle-label {\n\t\tvertical-align: text-bottom;\n\t\tline-height: 22px;\n\t\tmargin-left: 10px;\n\t}\n\n\t// Checkbox powering the toggle.\n\t.sui-toggle input[type=\"checkbox\"] {\n\t\t@extend %sui-screen-reader-text;\n\n\t\t&[disabled] + .sui-toggle-slider {\n\t\t\topacity: .5;\n\t\t\tcursor: not-allowed;\n\t\t}\n\t}\n\n\t// Toggle background when off.\n\t.sui-toggle-slider {\n\t\tposition: absolute;\n\t\tcursor: pointer;\n\t\ttop: 0;\n\t\tleft: 0;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tbackground-color: $toggle-slider-bg-color;\n\t\tborder-radius: 100px;\n\t\ttransition: .4s;\n\t\tborder: 1px solid $toggle-slider-border-color;\n\t}\n\n\t// Knob when off.\n\t.sui-toggle-slider:before {\n\t\tposition: absolute;\n\t\tcontent: \"\";\n\t\theight: 16px;\n\t\twidth: 16px;\n\t\tleft: -1px;\n\t\tbottom: -1px;\n\t\tbackground-color: $toggle-slider-before-bg-color;\n\t\tborder-radius: 50%;\n\t\ttransition: .2s;\n\t}\n\n\t// Knob when on.\n\tinput[type=\"checkbox\"]:checked + .sui-toggle-slider:before {\n\t\tbackground-color: $toggle-slider-before-checked-bg-color;\n\t\ttransform: translateX(18px);\n\t}\n\n\t// Toggle focus style.\n\tinput[type=\"checkbox\"]:focus + .sui-toggle-slider {\n\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_toggles.scss","@include body-class {\n\n\t.sui-wrap * {\n\t\tbox-sizing: border-box;\n\t}\n\n\t.sui-wrap *:before,\n\t.sui-wrap *:after {\n\t\tbox-sizing: border-box;\n\t}\n\n\t.sui-box {\n\t\tposition: relative;\n\t\tmin-height: 20px;\n\t\tbackground-color: $box-bg-color;\n\t\tborder-radius: 5px;\n\t\tmargin-bottom: $sui-gutter;\n\t\tbox-shadow: 0 2px 0 $box-box-shadow-color;\n\n\t\t@include media( max-width, md ) {\n\t\t\tmargin-bottom: $sui-gutter-md;\n\t\t}\n\t}\n\n\t.sui-box-header {\n\t\tborder-bottom: 1px solid $box-header-border-color;\n\t\tpadding: 15px 30px;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\n\t\t@include media( max-width, md ) {\n\t\t\tpadding: 15px $sui-gutter-md;\n\t\t}\n\n\t\t& > h3 > i {\n\t\t\tline-height: 30px;\n\t\t}\n\t}\n\n\t.sui-box-body {\n\t\tpadding: 30px;\n\n\t\t@include media( max-width, md ) {\n\t\t\tpadding: $sui-gutter-md;\n\t\t}\n\n\t\t.sui-box-settings-row {\n\t\t\tposition: relative;\n\t\t\tborder-bottom: 1px solid #E6E6E6;\n\t\t\tpadding-bottom: 30px;\n\t\t\tdisplay: table;\n\t\t\twidth: 100%;\n\t\t\tmargin-top: 30px;\n\n\t\t\t@include media(max-width, md) {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin-top: $sui-gutter-md;\n\t\t\t\tpadding-bottom: $sui-gutter-md;\n\t\t\t}\n\n\t\t\t&:first-of-type {\n\t\t\t\tmargin-top: 0;\n\t\t\t}\n\n\t\t\t&:last-of-type {\n\t\t\t\tpadding-bottom: 0;\n\t\t\t\tborder: 0;\n\t\t\t}\n\n\t\t\t.sui-box-settings-col-1 {\n\t\t\t\tdisplay: table-cell;\n\t\t\t\twidth: 230px;\n\t\t\t\tpadding-right: 30px;\n\n\t\t\t\t@include media(max-width, md) {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tpadding-top: $sui-gutter-md;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tpadding-right: 0;\n\n\t\t\t\t\t&:first-child {\n\t\t\t\t\t\tpadding-top: 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.sui-box-settings-col-2 {\n\t\t\t\tdisplay: table-cell;\n\n\n\t\t\t\t@include media(max-width, md) {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tpadding-top: $sui-gutter-md;\n\t\t\t\t}\n\n\t\t\t\t.sui-settings-label {\n\t\t\t\t\tcolor: $gray;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.sui-form-field {\n\t\t\t\t&:last-of-type {\n\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.sui-settings-label {\n\t\t\t\tdisplay: block;\n\t\t\t\tfont-weight: 500;\n\t\t\t\tline-height: 22px;\n\t\t\t\tcolor: $box-settings-label-color;\n\t\t\t}\n\n\t\t\t.sui-description {\n\t\t\t\tline-height: 22px;\n\t\t\t}\n\n\t\t\t&.sui-disabled {\n\t\t\t\tbackground-color: rgba(242, 242, 242, 0.5);\n\t\t\t\topacity: 0.5;\n\t\t\t\tpointer-events: none;\n\t\t\t}\n\t\t}\n\n\t\t&.sui-upsell-items {\n\t\t\tpadding: 0;\n\n\t\t\t.sui-box-settings-row {\n\t\t\t\tborder-bottom: none;\n\t\t\t\tmargin-top: 0;\n\n\t\t\t\t&:before {\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tclear: both;\n\t\t\t\t\theight: 1px;\n\t\t\t\t\tcontent: '';\n\t\t\t\t\tbackground-color: #E6E6E6;\n\t\t\t\t\tleft: 30px;\n\t\t\t\t\tright: 30px;\n\t\t\t\t\ttop: 0;\n\n\t\t\t\t}\n\n\t\t\t\t&:first-of-type {\n\t\t\t\t\tmargin-top: 0;\n\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t&:last-of-type {\n\t\t\t\t\tpadding-bottom: 30px;\n\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.sui-box-settings-row {\n\t\t\t\tpadding-right: 30px;\n\t\t\t\tpadding-left: 30px;\n\t\t\t\tpadding-top: 31px;\n\n\t\t\t\t@include media(max-width, md) {\n\t\t\t\t\tpadding-right: $sui-gutter-md;\n\t\t\t\t\tpadding-left: $sui-gutter-md;\n\t\t\t\t\tpadding-top: $sui-gutter-md + 1;\n\t\t\t\t}\n\t\t\t\t&:first-of-type {\n\t\t\t\t\t@include media(max-width, md) {\n\t\t\t\t\t\tpadding-top: $sui-gutter-md;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.sui-upsell-row {\n\t\t\tposition: relative;\n\n\t\t\t.sui-upsell-image {\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 0;\n\t\t\t\twidth: 100px;\n\t\t\t\t@include media(max-width, md) {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.sui-upsell-notice {\n\t\t\t\tpadding-left: 130px;\n\n\t\t\t\t@include media(max-width, md) {\n\t\t\t\t\tpadding-left: 0;\n\t\t\t\t}\n\n\t\t\t\tp {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\tborder-radius: 4px;\n\t\t\t\t\tbackground-color: $box-upsell-p-bg-color;\n\t\t\t\t\tpadding: 20px 30px;\n\t\t\t\t\tcolor: $box-upsell-p-color;\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\tline-height: 22px;\n\n\t\t\t\t\t&:after {\n\t\t\t\t\t\tposition: absolute;\n\t\t\t\t\t\ttop: 43%;\n\t\t\t\t\t\tleft: 0;\n\t\t\t\t\t\tmargin-left: -7px;\n\t\t\t\t\t\tcontent: '';\n\t\t\t\t\t\twidth: 0;\n\t\t\t\t\t\theight: 0;\n\t\t\t\t\t\tborder-top: 7px solid transparent;\n\t\t\t\t\t\tborder-bottom: 7px solid transparent;\n\t\t\t\t\t\tborder-right: 7px solid $box-upsell-p-bg-color;\n\n\t\t\t\t\t\t@include media(max-width, md) {\n\t\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\ta {\n\t\t\t\t\t\tcolor: $box-upsell-p-color;\n\t\t\t\t\t\ttext-decoration: underline;\n\t\t\t\t\t\tfont-weight: 500;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t.sui-settings-box {\n\t\t\tpadding: 30px;\n\t\t\tborder: 1px solid $box-settings-box-border-color;\n\t\t\tborder-radius: 5px;\n\t\t\t@include media(max-width, md) {\n\t\t\t\tpadding: $sui-gutter-md;\n\t\t\t}\n\t\t}\n\t}\n\n\t.sui-box-footer {\n\t\tborder-top: 1px solid $box-footer-border-color;\n\t\tpadding: 30px;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\t\t&.sui-pull-up {\n\t\t\tmargin-top: -15px;\n\t\t}\n\n\t\t@include media( max-width, md ) {\n\t\t\tpadding: $sui-gutter-md;\n\t\t}\n\t}\n\n\t.sui-box-title {\n\t\tdisplay: block;\n\t\tfont-weight: $font--weight-bold;\n\t\tfont-size: 15px;\n\t\tline-height: 30px;\n\t\tfont-family: $font;\n\t\tmargin: 0;\n\t\t@include text-truncate;\n\n\t\t* {\n\t\t\tvertical-align: middle;\n\t\t}\n\n\t\ti {\n\t\t\tmargin-right: 10px;\n\t\t\tdisplay: block;\n\t\t\tfloat: left;\n\t\t\t&:before {\n\t\t\t\tcolor: inherit;\n\t\t\t\tfont-size: 20px;\n\t\t\t\tvertical-align: text-bottom;\n\t\t\t}\n\t\t}\n\t}\n\th3.sui-box-title {\n\t\ttext-transform: none;\n\t}\n\t.sui-with-bottom-border {\n\t\tpadding-bottom: $default-padding;\n\t\tborder-bottom: 1px solid $box-settings-box-border-color;\n\t\tmargin-bottom: $default-margin;\n\n\t\t@include media( max-width, md ) {\n\t\t\tmargin-bottom: $sui-gutter-md;\n\t\t\tpadding-bottom: $sui-gutter-md;\n\t\t}\n\t}\n\t.sui-border-frame {\n\t\tborder: 1px solid #E6E6E6;\n\t\tborder-radius: 5px;\n\t\tmargin: 10px 0 0;\n\t\tpadding: 30px;\n\t\t@include media( max-width, md ) {\n\t\t\tpadding: $sui-gutter-md;\n\t\t}\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_boxes.scss","@mixin generate-column-class($size) {\n\t@for $i from $sui-total-grid-cols through 1 {\n\t\t$width: percentage($i / $sui-total-grid-cols);\n\t\t.sui-col-#{$size}-#{$i} {\n\t\t\twidth: $width;\n\t\t\tmax-width: $width;\n\t\t\tflex-basis: $width;\n\t\t}\n\t\t.sui-col-#{$size}-offset-#{$i} {\n\t\t\tmargin-left: $width;\n\t\t}\n\t}\n}\n\n@include body-class {\n\n\t%column {\n\t\tmin-height: 1px;\n\t\tpadding-left: ($sui-gutter / 2);\n\t\tpadding-right: ($sui-gutter / 2);\n\t\tposition: relative;\n\n\t\t@include media( max-width, md ) {\n\t\t\tpadding-left: ($sui-gutter-md / 2);\n\t\t\tpadding-right: ($sui-gutter-md / 2);\n\t\t}\n\t}\n\n\t.sui-row {\n\t\tdisplay: flex;\n\t\tflex-flow: wrap;\n\t\tmargin-right: (-$sui-gutter / 2);\n\t\tmargin-left: (-$sui-gutter / 2);\n\n\t\t@include media( max-width, md ) {\n\t\t\tmargin-left: (-$sui-gutter-md / 2);\n\t\t\tmargin-right: (-$sui-gutter-md / 2);\n\t\t}\n\t}\n\n\t.sui-reverse {\n\t\tflex-direction: row-reverse;\n\t}\n\n\t.sui-col {\n\t\t@extend %column;\n\t\tflex: 1;\n\t}\n\n\t[class*=\"sui-col-\"] {\n\t\t@extend %column;\n\t\tflex: 0 0 auto;\n\t\twidth: 100%;\n\t\tmax-width: 100%;\n\t\tflex-basis: 100%;\n\t}\n\n\t@for $i from 1 through length($sui-breakpoints) {\n\t\t$size: nth(nth($sui-breakpoints, $i), 1);\n\t\t$screen-width: nth(nth($sui-breakpoints, $i), 2);\n\t\t@if ($i == 1) {\n\t\t\t@include generate-column-class($size);\n\t\t}\n\t\t@media (min-width: $screen-width) {\n\t\t\t@include generate-column-class($size);\n\t\t}\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_layout.scss","@include body-class {\n\n\t.sui-notice-top,\n\t.sui-notice {\n\t\tcolor: #333;\n\t\tfont-weight: $font--weight;\n\t\tpadding: 15px 30px;\n\t\tposition: relative;\n\t\twidth: 100%;\n\t\tborder-radius: 5px;\n\t\tmargin-bottom: $sui-gutter;\n\t\tbackground-color: $notice-default-bg-color;\n\n\t\t@include media( max-width, md ) {\n\t\t\tmargin-bottom: $sui-gutter-md;\n\t\t\tpadding: 15px;\n\t\t}\n\n\t\t&:last-child {\n\t\t\tmargin-bottom: 0;\n\t\t}\n\n\t\t& p {\n\t\t\t@include icon(before, info);\n\t\t\tpadding: 0 0 0 30px;\n\t\t\tcolor: $gray-alt;\n\t\t\ta {\n\t\t\t\tcolor: $gray-alt;\n\t\t\t\t&:hover,\n\t\t\t\t&:focus {\n\t\t\t\t\tcolor: $gray-alt;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&:before {\n\t\t\t\tcolor: $notice-default-icon-color;\n\t\t\t\tvertical-align: middle;\n\t\t\t\ttop: -2px;\n\t\t\t\tmargin-left: -30px;\n\t\t\t\tposition: relative;\n\t\t\t\tmargin-right: 10px;\n\t\t\t\tfont-size: 20px;\n\t\t\t}\n\t\t\t&:last-of-type {\n\t\t\t\tmargin: 0;\n\t\t\t}\n\t\t}\n\n\t\t&.sui-notice-success {\n\t\t\tbackground-color: $notice-success-bg-color;\n\t\t\t& p {\n\t\t\t\t@include icon(before, check-tick, false);\n\t\t\t\t&:before {\n\t\t\t\t\tcolor: $notice-success-icon-color;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.sui-notice-warning {\n\t\t\tbackground-color: $notice-warning-bg-color;\n\t\t\t& p {\n\t\t\t\t@include icon(before, warning-alert, false);\n\t\t\t\t&:before {\n\t\t\t\t\tcolor: $notice-warning-icon-color;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.sui-notice-error {\n\t\t\tbackground-color: $notice-error-bg-color;\n\t\t\t& p {\n\t\t\t\t@include icon(before, warning-alert, false);\n\t\t\t\t&:before {\n\t\t\t\t\tcolor: $notice-error-icon-color;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.sui-notice-info {\n\t\t\tbackground-color: $notice-info-bg-color;\n\t\t\t& p {\n\t\t\t\t&:before {\n\t\t\t\t\tcolor: $notice-info-icon-color;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t&.sui-notice-sm {\n\n\t\t\tp {\n\t\t\t\tfont-size: 13px;\n\t\t\t\tline-height: 22px;\n\n\t\t\t\t&:before {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\n\t\t\t}\n\t\t\t& a {\n\t\t\t\tfont-size: 13px;\n\t\t\t}\n\n\t\t\t.sui-notice-dismiss {\n\t\t\t\ta {\n\t\t\t\t\tmargin-left: -14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t\t& .sui-notice-dismiss {\n\t\t\t\tpadding: 0 0 0 30px;\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin-top: 6px;\n\t\t\t\tmargin-bottom: -5px;\n\n\n\t\t\t& a {\n\t\t\t\tfont-weight: 500;\n\t\t\t\tfont-size: 12px;\n\t\t\t\ttext-transform: uppercase;\n\t\t\t\ttext-decoration: none;\n\t\t\t\tcolor: #888;\n\t\t\t\tline-height: 16px;\n\t\t\t\tpadding: 5px 10px;\n\t\t\t\tmargin-left: -10px;\n\t\t\t}\n\t\t}\n\n\t\t&.sui-notice-icon-tick {\n\t\t\t& p {\n\t\t\t\t@include icon(before, check-tick, false);\n\t\t\t}\n\t\t}\n\n\t\t&.sui-no-notice-icon p {\n\t\t\tpadding: 0;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '';\n\t\t\t\tmargin: 0;\n\t\t\t\tpadding: 0;\n\t\t\t}\n\t\t}\n\n\t\t&.sui-notice-top {\n\t\t\tposition: absolute;\n\t\t\ttop: 0;\n\t\t\twidth: 600px;\n\t\t\tz-index: 100;\n\t\t\tleft: 50%;\n\t\t\ttransform: translateX(-50%);\n\t\t\tbox-shadow: rgba(0, 0, 0, 0.15) 0 5px 25px 0;\n\t\t\t&:last-of-type {\n\t\t\t\tmargin: 0;\n\t\t\t}\n\n\n\t\t\t@media (max-width: 782px) {\n\t\t\t\twidth: 90%;\n\t\t\t}\n\n\t\t\t@media (max-width: 600px) {\n\t\t\t\ttop: 46px;\n\t\t\t}\n\n\t\t}\n\t\t.sui-notice-buttons {\n\t\t\tmargin: 10px 30px 0;\n\t\t}\n\t}\n\tp + .sui-notice {\n\t\tmargin-top: 30px;\n\t\t@include media( max-width, md ) {\n\t\t\tmargin-top: $sui-gutter-md;\n\t\t}\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_notifications.scss","@include body-class {\n\n\t.sui-header {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\talign-items: center;\n\t\tposition: relative;\n\t\tline-height: 1;\n\t\tmargin-bottom: $sui-gutter;\n\t\th1 {\n\t\t\ttext-transform: uppercase;\n\t\t\t@include media( max-width, md ) {\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\t\t@include media( max-width, md ) {\n\t\t\tmargin-bottom: $sui-gutter-md;\n\t\t}\n\n\t\t.sui-actions-right {\n\t\t\t@include media( max-width, md ) {\n\t\t\t\tmargin-left: 0;\n\t\t\t\tmargin-right: auto;\n\t\t\t\tmargin-top: 10px;\n\t\t\t}\n\t\t}\n\n\t\t.sui-actions-left{\n\t\t\t@include media( max-width, md ) {\n\t\t\t\tmargin-left: 0;\n\t\t\t\tmargin-right: 0;\n\t\t\t\tmargin-top: 10px;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t.sui-header-title {\n\t\tcolor: $headings-color;\n\t\tmargin: 0;\n\t\ttext-align: left;\n\t\ttext-transform: uppercase;\n\t\tfont-weight: bold;\n\t\tmax-width: none;\n\t\twhite-space: nowrap;\n\t\toverflow: hidden;\n\t\ttext-overflow: ellipsis;\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_header.scss","@include body-class {\n\n\t.sui-summary {\n\t\tpadding: 15px 30px 0;\n\t\tbackground-image: url($summary-image-default-url);\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-position: $summary-image-default-position;\n\t\tbackground-size: $summary-image-default-width $summary-image-default-height;\n\t\t@include media( max-width, md ) {\n\t\t\tpadding: $sui-gutter-md $sui-gutter-md 10px;\n\t\t}\n\n\t\t@media( max-width: 1100px ){\n\t\t\tbackground-image: none !important;\n\t\t}\n\n\t\t.sui-summary-image-space {\n\t\t\twidth: 100%;\n\t\t\tmin-height: $summary-image-default-height;\n\t\t\tfloat: left;\n\t\t\tmax-width: $summary-image-default-width;\n\n\t\t\t@media( max-width: 1100px ){\n\t\t\t\tdisplay: none !important;\n\t\t\t}\n\t\t}\n\n\t\t.sui-summary-segment {\n\t\t\tposition: relative;\n\t\t\tcolor: #333333;\n\t\t\twidth: calc(100% / 2 - 98px);\n\t\t\tpadding-left: 5%;\n\t\t\tdisplay: inline-block;\n\t\t\tvertical-align: middle;\n\n\t\t\t.sui-summary-details {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: -5px;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t\tmin-height: 80px;\n\n\t\t\t\t@media( max-width: 600px ){\n\t\t\t\t\tposition: inherit;\n\t\t\t\t\ttop: 0;\n\t\t\t\t\ttransform: translateY(0);\n\t\t\t\t}\n\n\t\t\t\t.sui-summary-sub {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\tmargin-bottom: 20px;\n\t\t\t\t\tline-height: 22px;\n\t\t\t\t\tcolor: $list-summary-small-color;\n\n\t\t\t\t\t&:last-of-type {\n\t\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\t}\n\n\t\t\t\t\t@media ( max-width: 960px ) {\n\t\t\t\t\t\tmargin-bottom: 5px;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.sui-summary-percent {\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\tline-height: 22px;\n\t\t\t\t\tmargin-left: -5px;\n\t\t\t\t}\n\n\t\t\t\ti {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\ttop: -22px;\n\t\t\t\t\tleft: 5px;\n\t\t\t\t\tfont-size: 16px;\n\n\t\t\t\t\t+ .sui-summary-percent {\n\t\t\t\t\t\tmargin-left: -20px;\n\n\t\t\t\t\t}\n\t\t\t\t\t&.sui-warning,\n\t\t\t\t\t&.sui-info,\n\t\t\t\t\t&.sui-error,\n\t\t\t\t\t&.sui-success {\n\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\tcolor: inherit;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\t.sui-summary-large {\n\t\t\t\t\tfont-size: 50px;\n\t\t\t\t\tline-height: 55px;\n\t\t\t\t\tmargin-bottom: 20px;\n\t\t\t\t}\n\n\n\t\t\t}\n\n\t\t\t@media( max-width: 1100px ){\n\t\t\t\ttext-align: left;\n\t\t\t\tpadding-left: 0;\n\t\t\t\twidth: 49%;\n\t\t\t}\n\n\t\t\t@media( max-width: 600px ){\n\t\t\t\tdisplay: block;\n\t\t\t\ttext-align: center;\n\t\t\t\twidth: 100%;\n\t\t\t}\n\n\t\t\t.sui-list {\n\t\t\t\tmargin: 0 0 15px;\n\n\t\t\t\t@media( max-width: 783px ){\n\t\t\t\t\tmargin: 0 0 10px;\n\t\t\t\t}\n\t\t\t\t@media( max-width: 600px ){\n\t\t\t\t\ttext-align: left;\n\t\t\t\t}\n\n\t\t\t\t.sui-list-detail {\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\tfont-weight: 500;\n\t\t\t\t\tline-height: 22px;\n\t\t\t\t\tcolor: $list-summary-number-color;\n\t\t\t\t\ti {\n\t\t\t\t\t\tline-height: 0;\n\t\t\t\t\t\tvertical-align: middle;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_summary.scss","@include body-class {\n\n\t.sui-list {\n\t\tlist-style: none;\n\t\tmargin: 0 0 20px;\n\t\tpadding: 0;\n\n\t\t&.sui-list-inline {\n\t\t\tmargin-top: 20px;\n\t\t\tmargin-bottom: 0;\n\t\t}\n\t\t&.sui-list-standalone {\n\t\t\tmargin-bottom: 20px;\n\t\t}\n\n\t\t& > li {\n\t\t\tposition: relative;\n\t\t\tdisplay: table;\n\t\t\twidth: 100%;\n\t\t\tpadding: 6px 0;\n\t\t\tmargin: 0;\n\t\t\tborder-collapse: collapse;\n\t\t\tborder-spacing: 0;\n\t\t\t& > div {\n\t\t\t\tdisplay: table-row;\n\t\t\t}\n\n\t\t\t&.sui-list-header {\n\t\t\t\tcolor: #333333;\n\t\t\t\tfont-size: 13px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tline-height: 30px;\n\t\t\t\tpadding-bottom: 0;\n\t\t\t\tspan {\n\t\t\t\t\tdisplay: table-cell;\n\t\t\t\t\tborder-bottom: 1px solid #EEEEEE;\n\t\t\t\t\t&:nth-child(2) {\n\t\t\t\t\t\ttext-align: right;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.sui-list-detail {\n\t\t\t\tcolor: $list-detail-color;\n\t\t\t\ttext-align: right;\n\t\t\t\tpadding: 10px 0;\n\t\t\t\tfont-size: 13px;\n\t\t\t\tfont-weight: 500;\n\t\t\t\tline-height: 22px;\n\t\t\t\t.sui-tag {\n\t\t\t\t\tfont-family: $font;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t& .sui-list-detail,\n\t\t\t& .sui-list-label {\n\t\t\t\tdisplay: table-cell;\n\t\t\t\tvertical-align: middle;\n\t\t\t\tcursor: default;\n\t\t\t\tborder-bottom: 1px solid #EEEEEE;\n\t\t\t}\n\n\t\t\t& .sui-list-label {\n\t\t\t\tfont-size: 13px;\n\t\t\t\tfont-weight: 500;\n\t\t\t\tline-height: 22px;\n\t\t\t\tpadding: 19px 10px 19px 0;\n\t\t\t\tcolor: $gray-alt;\n\n\t\t\t\t&.sui-list-header {\n\t\t\t\t\tfont-family: $font--alt;\n\t\t\t\t\twidth: 200px;\n\t\t\t\t\tcolor: palette(gray, alt);\n\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&:last-of-type {\n\t\t\t\t.sui-list-detail,\n\t\t\t\t.sui-list-label {\n\t\t\t\t\tborder-bottom: none;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t&.sui-list-top-border {\n\t\t\tborder-top: 1px solid #EEEEEE;\n\t\t}\n\t\t&.sui-list-bottom-border {\n\t\t\tborder-bottom: 1px solid #EEEEEE;\n\t\t}\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_list.scss","@include body-class {\n\n\t.sui-tooltip {\n\t\tposition: relative;\n\n\t\t&:before,\n\t\t&:after {\n\t\t\tcontent: \"\";\n\t\t\topacity: 0;\n\t\t\tbackface-visibility: hidden;\n\t\t\tpointer-events: none;\n\t\t\tposition: absolute;\n\t\t\tz-index: 1;\n\t\t\ttransition: margin .2s, opacity .2s;\n\t\t}\n\n\t\t&:before {\n\t\t\tborder: 5px solid transparent;\n\t\t}\n\n\t\t&:after {\n\t\t\tcontent: attr(data-tooltip);\n\t\t\tmin-width: 40px;\n\t\t\tpadding: 8px 12px;\n\t\t\tborder-radius: 4px;\n\t\t\tbackground: $tooltips-color;\n\t\t\tbox-sizing: border-box;\n\t\t\tcolor: $white;\n\t\t\tfont: 400 12px/18px $font;\n\t\t\ttext-transform: none;\n\t\t\ttext-align: center;\n\t\t\twhite-space: nowrap;\n\t\t}\n\n\t\t&:hover {\n\t\t\t&:before,\n\t\t\t&:after {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t}\n\n\t\t// Size: One Line Constrained Width\n\t\t&.sui-tooltip-constrained {\n\t\t\t&:after {\n\t\t\t\tmin-width: 240px;\n\t\t\t\twhite-space: normal;\n\t\t\t}\n\t\t}\n\n\t\t// Position: Top\n\t\t&.sui-tooltip-top:before,\n\t\t&:before {\n\t\t\tbottom: 100%;\n\t\t\tleft: 50%;\n\t\t\tborder-top-color: $tooltips-color;\n\t\t\ttransform: translateX(-50%);\n\t\t}\n\n\t\t&.sui-tooltip-top:after,\n\t\t&:after {\n\t\t\tbottom: 100%;\n\t\t\tleft: 50%;\n\t\t\tmargin: 0 0 10px;\n\t\t\ttransform: translateX(-50%);\n\t\t}\n\n\t\t// Position: Top-right & Top-left\n\t\t&.sui-tooltip-top {\n\t\t\t&-right {\n\t\t\t\t&:after {\n\t\t\t\t\tleft: 0;\n\t\t\t\t\ttransform: translateX(0);\n\t\t\t\t}\n\t\t\t}\n\t\t\t&-left {\n\t\t\t\t&:after {\n\t\t\t\t\tleft: auto;\n\t\t\t\t\ttransform: translateX(0);\n\t\t\t\t\tright: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Position: Bottom, Bottom-right & Bottom-left\n\t\t&.sui-tooltip-bottom {\n\t\t\t&-left:before,\n\t\t\t&-right:before,\n\t\t\t&:before {\n\t\t\t\ttop: 100%;\n\t\t\t\tbottom: inherit;\n\t\t\t\tborder-top-color: transparent;\n\t\t\t\tborder-bottom-color: $tooltips-color;\n\t\t\t}\n\n\t\t\t&-left:after,\n\t\t\t&-right:after,\n\t\t\t&:after {\n\t\t\t\ttop: 100%;\n\t\t\t\tbottom: inherit;\n\t\t\t\tmargin: 10px 0 0;\n\t\t\t\ttransform: translateX(0);\n\t\t\t}\n\n\t\t\t&:after {\n\t\t\t\ttransform: translateX(-50%);\n\t\t\t}\n\n\t\t\t&-right {\n\t\t\t\t&:after {\n\t\t\t\t\tleft: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&-left {\n\t\t\t\t&:after {\n\t\t\t\t\tleft: auto;\n\t\t\t\t\tright: 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Position: Left\n\t\t&.sui-tooltip-left {\n\t\t\t&:before {\n\t\t\t\ttop: 50%;\n\t\t\t\tright: 100%;\n\t\t\t\tbottom: inherit;\n\t\t\t\tleft: inherit;\n\t\t\t\tborder-top-color: transparent;\n\t\t\t\tborder-left-color: $tooltips-color;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t}\n\n\t\t\t&:after {\n\t\t\t\ttop: 50%;\n\t\t\t\tright: 100%;\n\t\t\t\tbottom: inherit;\n\t\t\t\tleft: inherit;\n\t\t\t\tmargin: 0 10px 0 0;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t}\n\t\t}\n\n\t\t// Position: Right\n\t\t&.sui-tooltip-right {\n\t\t\t&:before {\n\t\t\t\ttop: 50%;\n\t\t\t\tbottom: inherit;\n\t\t\t\tleft: 100%;\n\t\t\t\tborder-top-color: transparent;\n\t\t\t\tborder-right-color: $tooltips-color;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t}\n\n\t\t\t&:after {\n\t\t\t\ttop: 50%;\n\t\t\t\tbottom: inherit;\n\t\t\t\tleft: 100%;\n\t\t\t\tmargin: 0 0 0 10px;\n\t\t\t\ttransform: translateY(-50%);\n\t\t\t}\n\t\t}\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_tooltips.scss","@include body-class {\n\n\t.select-container {\n\t\tposition: relative;\n\t\tz-index: 1;\n\t\tdisplay: block;\n\t\tcursor: pointer;\n\t\tborder-radius: 4px;\n\t\ttransition-property: background, border-color;\n\t\ttransition-duration: 0.3s;\n\t\ttext-align: left;\n\t\tborder: 1px solid $select-container-border-color;\n\t\tbackground-color: $select-container-bg-color;\n\n\t\t.dropdown-handle {\n\t\t\ttransition: border-color 0.3s;\n\t\t\tdisplay: inline-block;\n\t\t\tposition: absolute;\n\t\t\twidth: 45px;\n\t\t\theight: auto;\n\t\t\ttop: 0;\n\t\t\tright: 0;\n\t\t\tz-index: 1011;\n\t\t\tborder-radius: 0 4px 4px 0;\n\t\t\tborder-bottom: 0;\n\t\t\tborder-left-color: transparent;\n\t\t\tpadding: 0;\n\t\t\ttext-align: center;\n\t\t\tline-height: 40px;\n\t\t\ttransition-property: color, border-color;\n\t\t\ttransition-duration: 0.3s;\n\t\t\tcolor: $select-dropdown-handle-color;\n\n\t\t\ti:before {\n\t\t\t\tvertical-align: middle;\n\t\t\t\tfont-size: 12px;\n\t\t\t}\n\t\t}\n\n\t\t&.sui-mobile-nav {\n\t\t\tbackground-color: $white;\n\t\t\tmargin-bottom: $sui-gutter;\n\n\t\t\t@include media( max-width, md ) {\n\t\t\t\tmargin-bottom: $sui-gutter-md;\n\t\t\t}\n\n\t\t\t.dropdown-handle {\n\t\t\t\tbackground-color: $white;\n\t\t\t\tfont-size: 13px;\n\t\t\t}\n\t\t}\n\n\t\t&:hover {\n\t\t\tborder-color: $select-container-action-border-color;\n\n\t\t\t.list-value {\n\t\t\t\tcolor: $select-list-value-hover-color;\n\t\t\t}\n\n\t\t\t.list-results {\n\t\t\t\tborder-left-color: $select-container-action-border-color;\n\t\t\t\tborder-right-color: $select-container-action-border-color;\n\t\t\t\tborder-bottom-color: $select-container-action-border-color;\n\t\t\t}\n\n\t\t\t.dropdown-handle {\n\t\t\t\tborder-top-color: $select-container-action-border-color;\n\t\t\t\tborder-right-color: $select-container-action-border-color;\n\t\t\t}\n\t\t}\n\n\t\t&.active {\n\t\t\tz-index: 99999;\n\t\t\tbackground: #f8f8f8;\n\n\t\t\t.list-value {\n\t\t\t\tbackground: $select-active-list-value-bg-color;\n\t\t\t\tborder-radius: 3px 0 0 0;\n\t\t\t\tcolor: $select-active-list-value-color;\n\t\t\t}\n\n\t\t\t.dropdown-handle {\n\t\t\t\tborder-color: $select-container-action-border-color;\n\t\t\t\tborder-bottom-right-radius: 3px;\n\t\t\t}\n\n\t\t\t.list-results {\n\t\t\t\tleft: 0;\n\t\t\t\tright: 0;\n\t\t\t\twidth: auto;\n\t\t\t\tdisplay: block;\n\t\t\t\ttransition-duration: 0ms;\n\t\t\t}\n\n\t\t\t&.sui-mobile-nav {\n\t\t\t\t.dropdown-handle {\n\t\t\t\t\tbackground-color: transparent;\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&:hover {\n\t\t\t\tborder-color: $select-container-action-border-color;\n\n\t\t\t\t.list-value {\n\t\t\t\t\tcolor: $select-active-list-value-color;\n\t\t\t\t}\n\n\t\t\t\t.list-results {\n\t\t\t\t\tborder-color: $select-container-action-border-color;\n\t\t\t\t\tli {\n\t\t\t\t\t\topacity: 1;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.dropdown-handle {\n\t\t\t\t\tborder-color: $select-container-action-border-color;\n\t\t\t\t\tcolor: $select-container-action-border-color;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t.select-list-container {\n\t\tposition: relative;\n\t\tdisplay: block;\n\t\tvertical-align: middle;\n\t\tpadding-right: 45px;\n\t\tzoom: 1;\n\n\t\t.list-value {\n\t\t\tposition: relative;\n\t\t\tdisplay: block;\n\t\t\toverflow: hidden;\n\t\t\ttext-overflow: ellipsis;\n\t\t\tbackground-clip: padding-box;\n\t\t\ttext-decoration: none;\n\t\t\twhite-space: nowrap;\n\t\t\tline-height: 24px;\n\t\t\theight: auto;\n\t\t\twidth: 100%;\n\t\t\tpadding: 8px 8px 8px 15px;\n\t\t\tborder: 0;\n\t\t\tcolor: $select-list-value-color;\n\t\t\tfont: 500 15px/25px $font;\n\t\t\ttransition-property: color;\n\t\t\ttransition-duration: 0.3s;\n\t\t}\n\n\t\t.list-results {\n\t\t\tposition: absolute;\n\t\t\ttop: 41px;\n\t\t\tleft: -9999px;\n\t\t\tright: -9999px;\n\t\t\tz-index: 1010;\n\t\t\twidth: 0;\n\t\t\tbackground: $select-list-results-bg-color;\n\t\t\tborder: 1px solid $select-list-results-border-color;\n\t\t\tmargin-left: -1px;\n\t\t\tmargin-right: -1px;\n\t\t\tmargin-top: 1px;\n\t\t\tdisplay: none;\n\t\t\tborder-radius: 4px;\n\t\t\tfont: 500 15px/25px $font;\n\t\t\ttransition-property: opacity, border-color;\n\t\t\ttransition-duration: 0.3s;\n\t\t\tpadding-left: 0;\n\t\t\tmax-height: 200px;\n\t\t\toverflow-y: auto;\n\n\t\t\tli {\n\t\t\t\tpadding: 10px 15px;\n\t\t\t\tbackground: none;\n\t\t\t\tcolor: $select-list-results-li-color;\n\t\t\t\tcursor: pointer;\n\t\t\t\tlist-style: none;\n\t\t\t\tfont-weight: 400;\n\t\t\t\tline-height: 15px;\n\t\t\t\tword-wrap: break-word;\n\t\t\t\tmargin: 0;\n\t\t\t\topacity: 0.8;\n\t\t\t\ttransition-property: opacity;\n\t\t\t\ttransition-duration: 0.3s;\n\t\t\t\tborder-radius: 0 !important;\n\t\t\t}\n\n\t\t\t.optgroup {\n\t\t\t\tcursor: default;\n\t\t\t\tli {\n\t\t\t\t\tpadding-left: 30px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\t&.optgroup-label {\n\t\t\t\t\t\tpadding-left: 10px;\n\t\t\t\t\t\tcolor: $select-list-results-li-optgroup-color;\n\t\t\t\t\t\tcursor: default;\n\t\t\t\t\t\tpointer-events: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tli {\n\t\t\t\t&:last-child {\n\t\t\t\t\tborder-radius: 0 0 3px 3px;\n\t\t\t\t}\n\t\t\t\t&:hover {\n\t\t\t\t\tbackground: $select-list-hover-bg-color;\n\t\t\t\t\tcolor: $select-list-value-hover-color;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.optgroup li.optgroup-label:hover {\n\t\t\t\tbackground: none;\n\t\t\t}\n\n\t\t\t.current {\n\t\t\t\tbackground: $select-current-bg-color;\n\t\t\t\tcolor: $white;\n\t\t\t}\n\t\t}\n\t}\n\n\t.list-table > {\n\t\tthead > .select-open th, tfoot > .select-open th, tbody > .select-open td {\n\t\t\tz-index: 9;\n\t\t}\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_select.scss","@include body-class {\n\n\t.sui-tag {\n\t\tdisplay: inline-block;\n\t\tbackground-color: $tag-bg-color;\n\t\tcolor: $tag-color;\n\t\tborder-radius: 15px;\n\t\tmin-width: 39px;\n\t\theight: 26px;\n\t\tfont-size: 12px;\n\t\tline-height: 26px;\n\t\ttext-align: center;\n\t\tfont-weight: 500;\n\t\tpadding: 0 16px;\n\t\tcursor: default;\n\n\t\t&.sui-tag-success {\n\t\t\tbackground-color: $tag-success-bg-color;\n\t\t\tcolor: $tag-color-alt;\n\t\t}\n\n\t\t&.sui-tag-error {\n\t\t\tbackground-color: $tag-error-bg-color;\n\t\t\tcolor: $tag-color-alt;\n\t\t}\n\n\t\t&.sui-tag-inactive {\n\t\t\tbackground-color: $tag-inactive-bg-color;\n\t\t\tcolor: $tag-disabled-color;\n\t\t}\n\n\t\t&.sui-tag-disabled {\n\t\t\tbackground-color: $tag-disabled-bg-color;\n\t\t\tcolor: $tag-disabled-color;\n\t\t}\n\n\t\t&.sui-tag-upgrade {\n\t\t\tbackground-color: $tag-upgrade-bg-color;\n\t\t\tcolor: $tag-color-alt;\n\t\t}\n\n\t\t&.sui-tag-upsell {\n\t\t\tborder: 2px solid $tag-upsell-color;\n\t\t\tcolor: $green;\n\t\t\twidth: auto;\n\t\t\theight: 26px;\n\t\t\tline-height: 15px;\n\t\t\tbackground: transparent;\n\t\t\tpadding: 4px 16px;\n\t\t}\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_tags.scss","@include body-class {\n\n\t%label {\n\t\tfont-family: $form--label-font;\n\t\tfont-size: $form--label-font-size;\n\t\tfont-weight: $form--label-font-weight;\n\t\tline-height: $form--label-line-height;\n\t\tcolor: $form--label-color;\n\t\tdisplay: inline-flex;\n\t\twidth: 100%;\n\t}\n\n\tlabel[for] {\n\t\tcursor: pointer;\n\t}\n\n\t.sui-label {\n\t\t@extend %label;\n\t}\n\n\t.sui-label-link {\n\t\tmargin-left: auto;\n\t\tmargin-right: 0;\n\t\tfont-weight: 400;\n\t\tcolor: $form--label-color;\n\t}\n\n\t.sui-inline-label {\n\t\t@extend %label;\n\t\tdisplay: inline-block;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\n\t.sui-form-control {\n\t\tfont-family: $font;\n\t\tletter-spacing: -0.025em;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: $form--input-height-base;\n\t\tpadding: 7px 15px;\n\t\tfont-size: $font--size;\n\t\tfont-weight: $form--input-font-weight;\n\t\tline-height: $form--input-line-height;\n\t\tcolor: $form--input-color;\n\t\tbackground-color: $form--input-bg-color;\n\t\tbackground-image: none;\n\t\tborder: 1px solid $form--input-border-color;\n\t\tborder-radius: $form--input-border-radius;\n\t\ttransition: color .3s ease-in-out, border-color .3s ease-in-out, background-color .3s ease-in-out;\n\n\t\t// Unstyle the caret on `<select>`s in IE10+.\n\t\t&::-ms-expand {\n\t\t\tborder: 0;\n\t\t\tbackground-color: transparent;\n\t\t}\n\n\t\t&[disabled],\n\t\tfieldset[disabled] & {\n\t\t\tcursor: not-allowed;\n\t\t}\n\n\t\t&:hover,\n\t\t&:focus {\n\t\t\tbackground-color: $white;\n\t\t\tborder: 1px solid $form--input-border-color-hover;\n\t\t}\n\n\t\t&:focus {\n\t\t\tcolor: $form--input-color-focus;\n\t\t\toutline: 0;\n\t\t\tbackground-color: $form--input-bg-color-focus;\n\t\t}\n\n\t\t&::placeholder {\n\t\t\tcolor: $form--input-placeholder-color;\n\t\t}\n\t}\n\n\t// Reset height for `textarea`s.\n\ttextarea.sui-form-control {\n\t\tline-height: 20px;\n\t\theight: auto;\n\t\tmax-width: 100%;\n\t\tresize: vertical;\n\t}\n\n\tselect.sui-form-control {\n\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAs0lEQVQ4T6WS2w0CIRBF59KA2oklaAdbgpbgB48SIBThduKWYClrA2CGgEEXNWH5moR7Zu48QJ0PnRytA6WUe67svb//clDrUkWt9UxEMYRw/AYzJIS4sd45t0ugMeZERNcY49yCCwRgS0Rna+346rGGAVz4s06aW0gQx2/DUUoNAEYAG86cxezkAWCw1k5lBoupZltThomhEMLhs/fmOgrM2VvQwmq9in8rWncAPWfXXfEJ6RpWD7sJ1JwAAAAASUVORK5CYII=);\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-position: center right 10px;\n\t\tappearance: none;\n\t\tcursor: pointer;\n\t\tline-height: 1;\n\t}\n\n\t.sui-input-group {\n\t\tposition: relative;\n\t\tdisplay: flex;\n\t\talign-items: stretch;\n\t\twidth: 100%;\n\t}\n\n\t.sui-form-field {\n\t\tmargin-bottom: $sui-gutter;\n\n\t\t@include media( max-width, md ) {\n\t\t\tmargin-bottom: $sui-gutter-md;\n\t\t}\n\t}\n\n\t.sui-form-field-error {\n\t\t.sui-form-control {\n\t\t\tborder-bottom: 2px solid $form--input-border-color-error;\n\t\t}\n\t}\n\n\t.sui-error-message {\n\t\tdisplay: block;\n\t\tmargin-top: 8px;\n\t\tcolor: $form--input-error-color;\n\t\tfont-size: $form--input-error-font-size;\n\t\tline-height: $form--input-error-line-height;\n\t\tfont-weight: $form--input-error-font-weight;\n\t}\n\n\t.sui-description {\n\t\tdisplay: block;\n\t\tmargin-top: 5px;\n\t\tcolor: $form--description-color;\n\t\tfont-size: $form--description-font-size;\n\t\tline-height: $form--label-line-height;\n\t\tfont-weight: $form--description-font-weight;\n\t\t&.sui-toggle-description {\n\t\t\tmargin-left: 48px;\n\t\t}\n\t\t&.sui-checkbox-description,\n\t\t&.sui-radio-description {\n\t\t\tmargin: 0 27px 5px;\n\t\t}\n\t}\n\n\t.sui-password-group {\n\t\tposition: relative;\n\n\t\t.sui-password-toggle {\n\t\t\tcursor: pointer;\n\t\t\tbackground: transparent;\n\t\t\tborder: none;\n\t\t\tcolor: $form--input-icon-color;\n\t\t\tfont-size: 15px;\n\t\t\tline-height: 1em;\n\t\t\tpadding: 0;\n\t\t\tposition: absolute;\n\t\t\ttop: 50%;\n\t\t\tright: 7px;\n\t\t\theight: 30px;\n\t\t\twidth: 30px;\n\t\t\ttransform: translateY(-50%);\n\t\t\toutline: 0;\n\t\t\tborder-radius: 4px;\n\t\t\t&:hover {\n\t\t\t\tbackground-color: rgba(0, 0, 0, .03);\n\t\t\t\ti:before {\n\t\t\t\t\tcolor: $gray;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t%radio-checkbox {\n\t\t$size: 16px;\n\t\tuser-select: none;\n\t\tdisplay: flex;\n\t\talign-items: start;\n\n\t\tinput {\n\t\t\t@extend %sui-screen-reader-text;\n\t\t}\n\n\t\tspan {\n\t\t\tflex-shrink: 0;\n\t\t\tposition: relative;\n\t\t\tdisplay: inline-block;\n\t\t\twidth: $size;\n\t\t\theight: $size;\n\t\t\tbackground-color: $checkbox-radio-bg-color;\n\t\t\tcursor: pointer;\n\t\t\ttransition: .2s;\n\t\t\tborder-radius: 3px;\n\t\t\tmargin-top: 3px;\n\t\t\t&:before {\n\t\t\t\t@extend %sui-icons;\n\t\t\t\topacity: 0;\n\t\t\t\tcontent: \"(\";\n\t\t\t\tcolor: $white;\n\t\t\t\tfont-size: 10px;\n\t\t\t\tline-height: $size;\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 100%;\n\t\t\t\ttext-align: center;\n\t\t\t\ttransition: .2s;\n\t\t\t}\n\t\t}\n\n\t\tinput:checked + span {\n\t\t\tbackground-color: $checkbox-radio-active-color;\n\t\t\t&:before {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t}\n\n\t\t.sui-description {\n\n\t\t\tcursor: pointer;\n\t\t\tmargin-top: 0;\n\t\t\tmargin-left: 10px;\n\t\t\tfont-size: 15px;\n\t\t\tline-height: 22px;\n\t\t\tcolor: #666;\n\t\t\tfont-weight: 500;\n\n\t\t\t&.sui-description-sm {\n\t\t\t\tfont-size: 13px;\n\t\t\t}\n\t\t}\n\n\t\tinput[disabled] + span,\n\t\tfieldset[disabled] & + span {\n\t\t\tcursor: not-allowed;\n\t\t\topacity: .5;\n\t\t}\n\n\t\tinput[disabled] + span + div.sui-description {\n\t\t\tcolor: $checkbox-radio-disabled-color;\n\t\t\tcursor: not-allowed;\n\t\t}\n\t}\n\n\t.sui-checkbox {\n\t\t@extend %radio-checkbox;\n\n\t\tspan {\n\t\t\tborder-radius: 3px;\n\t\t}\n\n\t\t+ .sui-checkbox {\n\t\t\tmargin-top: 10px;\n\t\t}\n\t}\n\n\t.sui-radio {\n\t\t@extend %radio-checkbox;\n\n\t\tspan {\n\t\t\tborder-radius: 50%;\n\t\t}\n\n\t\t+ .sui-radio {\n\t\t\tmargin-top: 10px;\n\t\t}\n\t}\n\n\t.sui-upload-group {\n\t\t@extend .sui-form-control;\n\t\tdisplay: flex;\n\t\talign-items: center;\n\n\t\tinput[type=\"file\"] {\n\t\t\t@extend %sui-screen-reader-text;\n\t\t}\n\t}\n\n\t.sui-upload-button {\n\t\tbackground-color: transparent;\n\t\tborder-radius: 4px;\n\t\tdisplay: inline-block;\n\t\tmargin: 0 5px 0 0;\n\t\tfont-size: 13px;\n\t\tfont-weight: 400;\n\t\tline-height: 1.5;\n\t\tpointer-events: none;\n\t\tpadding: 1px 16px;\n\t\tborder: 1px solid $button-ghost-border-color;\n\t\tbackground: 0 0;\n\t\tcolor: #888;\n\t\ttransition: all .2s;\n\t}\n\n\t.sui-upload-label {\n\t\twidth: 100%;\n\n\t\t&:hover, &:focus {\n\t\t\t.sui-upload-button {\n\t\t\t\tbackground-color: $button-ghost-action-bg-color;\n\t\t\t\tborder-color: $button-ghost-action-border-color;\n\t\t\t\tcolor: $white;\n\t\t\t}\n\t\t}\n\t}\n\n\t.sui-upload-message {\n\t\tfont-weight: 400;\n\t}\n}\n\n\n\n// WEBPACK FOOTER //\n// ./node_modules/@wpmudev/shared-ui/scss/_forms.scss","@include body-class {\n\n\t.sui-tabs {\n\t\tfloat: none;\n\t\tposition: relative;\n\t\tpadding: 0;\n\t\tmargin: 0;\n\t\tbackground-color: $white;\n\t\tborder-top-left-radius: 5px;\n\t\tborder-top-right-radius: 5px;\n\n\t\t&:before, &:after {\n\t\t\tcontent: '';\n\t\t\tdisplay: table;\n\t\t\tclear: both;\n\t\t}\n\n\t\t.sui-tab {\n\t\t\tfloat: left;\n\n\t\t\t&:first-child label {\n\t\t\t\tborder-top-left-radius: 5px;\n\t\t\t}\n\n\t\t\tlabel {\n\t\t\t\tdisplay: block;\n\t\t\t\tmargin: 0;\n\t\t\t\ttop: 0;\n\t\t\t\tcursor: pointer;\n\t\t\t\tposition: relative;\n\t\t\t\tborder: 0;\n\t\t\t\tfont-size: 15px;\n\t\t\t\ttext-transform: capitalize;\n\t\t\t\tcolor: $tabs-label-color;\n\t\t\t\tpadding: 0 10px;\n\t\t\t\tline-height: 1.5em;\n\t\t\t\theight: 40px;\n\t\t\t}\n\n\t\t\tinput[type=radio] {\n\t\t\t\tdisplay: none;\n\t\t\t\t&:checked + label {\n\t\t\t\t\tbackground-color: $white;\n\t\t\t\t\tcolor: $tabs-label-checked-color;\n\t\t\t\t\theight: 61px;\n\t\t\t\t\tz-index: 3;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.su