Hummingbird Page Speed Optimization - Version 1.8.2

Version Description

( 2018-04-24 ) = - New: System Information module in Advanced Tools - Enhance: Improve caching notices - Enhance: Remove clear cache notice in Asset Optimizztion when re-checking files - Enhance: Asset Optimization performance improvements - Enhance: Asset Optimization log option in multisite moved to network settings - Fix: Performance test previous score not updated - Fix: Links in performance reports in multisite are not always redirecting to correct page - Fix: PHP 5.2 compatibility - Fix: Various UI fixes and improvements - Fix: Browser caching changes not reflected when selecting LiteSpeed server - Fix: Asset Optimization incorrect states for some files - Fix: CDN option changing state during a new scan - Fix: Remove wphb_minify_clear_files cron task when Asset Optimization module is not enabled - Fix: Warnings during ignore performance report

Download this release

Release Info

Developer jdailey
Plugin Icon 128x128 Hummingbird Page Speed Optimization
Version 1.8.2
Comparing to
See all releases

Code changes from version 1.8.1 to 1.8.2

_src/js/admin-advanced.js CHANGED
@@ -6,9 +6,11 @@ import Fetcher from './utils/fetcher';
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
@@ -25,7 +27,6 @@ import Fetcher from './utils/fetcher';
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') )
@@ -51,6 +52,27 @@ import Fetcher from './utils/fetcher';
51
  $('.schedule-box').toggle();
52
  });
53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  return this;
55
  },
56
 
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
+ system_info_dropdown = $('#wphb-system-info-dropdown'),
12
+ hash = window.location.hash,
13
+ delete_entries = $('#wphb-db-delete-all, #wphb-db-row-delete');
14
 
15
  /**
16
  * Process form submit for advanced tools forms
27
  e.preventDefault();
28
 
29
  const spinner = $(this).parent().find('.sui-icon-loader');
 
30
  spinner.removeClass('sui-hidden');
31
 
32
  Fetcher.advanced.saveSettings( $(this).serialize(), $(this).attr('id') )
52
  $('.schedule-box').toggle();
53
  });
54
 
55
+ /**
56
+ * Show initial system information table.
57
+ */
58
+ $('#wphb-system-info-php').removeClass('sui-hidden');
59
+ if ( hash ) {
60
+ const system = hash.replace('#','');
61
+ $('.wphb-sys-info-table').addClass('sui-hidden');
62
+ $('#wphb-system-info-' + system).removeClass('sui-hidden');
63
+ system_info_dropdown.val(system).trigger('sui:change');
64
+ }
65
+
66
+ /**
67
+ * Show/hide system information tables on dropdown change.
68
+ */
69
+ system_info_dropdown.change( function(e) {
70
+ e.preventDefault();
71
+ $('.wphb-sys-info-table').addClass('sui-hidden');
72
+ $('#wphb-system-info-' + $(this).val()).removeClass('sui-hidden');
73
+ location.hash = $(this).val();
74
+ });
75
+
76
  return this;
77
  },
78
 
_src/js/admin-caching.js CHANGED
@@ -40,7 +40,6 @@ import Fetcher from './utils/fetcher';
40
  $('html, body').animate({ scrollTop: $('#wphb-box-caching-settings').offset().top }, 'slow');
41
  });
42
  if (hash) {
43
- console.log(hash);
44
  $('html, body').animate({ scrollTop: $(hash).offset().top }, 'slow');
45
  }
46
 
@@ -56,7 +55,6 @@ import Fetcher from './utils/fetcher';
56
  let serverInstructions = $( '#wphb-server-instructions-' + self.selectedServer.toLowerCase() );
57
  $('#manual-' + self.selectedServer.toLowerCase() ).trigger("click");
58
  let caching = window.WPHB_Admin.getModule( 'caching' );
59
- caching.updateTabSize();
60
  $('html, body').animate({ scrollTop: serverInstructions.offset().top - 50 }, 'slow');
61
  });
62
 
@@ -102,9 +100,9 @@ import Fetcher from './utils/fetcher';
102
  self.showServerInstructions( value );
103
  self.setServer(value);
104
  self.selectedServer = value;
105
- // Update tab size on select change.
106
- self.updateTabSize();
107
  $('.hb-server-type').val( value );
 
 
108
  });
109
 
110
  let expiryInput = $("input[name='expiry-set-type']");
@@ -223,13 +221,6 @@ import Fetcher from './utils/fetcher';
223
  Fetcher.caching.setServer( 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
-
233
  hideCurrentInstructions: function() {
234
  let selected = this.selectedServer;
235
  if ( this.$serverInstructions[ selected ] ) {
40
  $('html, body').animate({ scrollTop: $('#wphb-box-caching-settings').offset().top }, 'slow');
41
  });
42
  if (hash) {
 
43
  $('html, body').animate({ scrollTop: $(hash).offset().top }, 'slow');
44
  }
45
 
55
  let serverInstructions = $( '#wphb-server-instructions-' + self.selectedServer.toLowerCase() );
56
  $('#manual-' + self.selectedServer.toLowerCase() ).trigger("click");
57
  let caching = window.WPHB_Admin.getModule( 'caching' );
 
58
  $('html, body').animate({ scrollTop: serverInstructions.offset().top - 50 }, 'slow');
59
  });
60
 
100
  self.showServerInstructions( value );
101
  self.setServer(value);
102
  self.selectedServer = value;
 
 
103
  $('.hb-server-type').val( value );
104
+ // This is used to trigger the resizing of the tabs.
105
+ $(window).trigger( 'resize' );
106
  });
107
 
108
  let expiryInput = $("input[name='expiry-set-type']");
221
  Fetcher.caching.setServer( value );
222
  },
223
 
 
 
 
 
 
 
 
224
  hideCurrentInstructions: function() {
225
  let selected = this.selectedServer;
226
  if ( this.$serverInstructions[ selected ] ) {
_src/js/admin-dashboard.js CHANGED
@@ -39,6 +39,14 @@ import Fetcher from './utils/fetcher';
39
  });
40
  });
41
 
 
 
 
 
 
 
 
 
42
  $('#admins_disable_caching').change( function() {
43
  const value = $(this).is(':checked');
44
  Fetcher.caching.toggleSubsitePageCaching( value )
39
  });
40
  });
41
 
42
+ $("input[type=checkbox][name=debug_log]").change( function() {
43
+ Fetcher.minification.toggleLog( $(this).is(':checked') )
44
+ .then( () => {
45
+ WPHB_Admin.notices.show( 'wphb-notice-minification-settings-updated' );
46
+ $('#wphb-minification-debug-log').toggleClass('sui-hidden');
47
+ });
48
+ });
49
+
50
  $('#admins_disable_caching').change( function() {
51
  const value = $(this).is(':checked');
52
  Fetcher.caching.toggleSubsitePageCaching( value )
_src/js/admin-gzip.js CHANGED
@@ -30,8 +30,8 @@ import Clipboard from './utils/clipboard';
30
  self.showServerInstructions(value);
31
  self.setServer(value);
32
  self.selectedServer = value;
33
- // Update tab size on select change.
34
- self.updateTabSize();
35
  });
36
  configureLink.on('click', function(e) {
37
  e.preventDefault();
@@ -65,13 +65,6 @@ import Clipboard from './utils/clipboard';
65
  $("#enable-cache-wrap").hide();
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
- },
75
 
76
  setServer: function( value ) {
77
  Fetcher.caching.setServer( value );
30
  self.showServerInstructions(value);
31
  self.setServer(value);
32
  self.selectedServer = value;
33
+ // This is used to trigger the resizing of the tabs.
34
+ $(window).trigger( 'resize' );
35
  });
36
  configureLink.on('click', function(e) {
37
  e.preventDefault();
65
  $("#enable-cache-wrap").hide();
66
  }
67
  },
 
 
 
 
 
 
 
68
 
69
  setServer: function( value ) {
70
  Fetcher.caching.setServer( value );
_src/scss/components/_notices.scss CHANGED
@@ -191,6 +191,13 @@
191
  margin-top: 0;
192
  }
193
 
 
 
 
 
 
 
 
194
  @include bp(tablet) {
195
  .wpmud .wrap-wp-hummingbird > .wphb-notice {
196
  width: 85%;
191
  margin-top: 0;
192
  }
193
 
194
+ /* Overwrite for clear cache notice additional info link */
195
+ .wpmud .wphb-notice p>a {
196
+ font-weight: 400;
197
+ margin-left: 0 !important;
198
+ }
199
+
200
+
201
  @include bp(tablet) {
202
  .wpmud .wrap-wp-hummingbird > .wphb-notice {
203
  width: 85%;
_src/scss/modules/_advanced.scss CHANGED
@@ -125,3 +125,35 @@
125
  }
126
  }
127
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  }
126
  }
127
  }
128
+
129
+
130
+ /* Database cleanup tab */
131
+ .wpmud .box-advanced-system-info {
132
+ .sui-table {
133
+ &.wphb-sys-info-table {
134
+ border: none;
135
+ tr {
136
+ height: 40px;
137
+ &:nth-child(odd){
138
+ border-radius: 4px;
139
+ background-color: #FAFAFA
140
+ }
141
+ td {
142
+ vertical-align: top;
143
+ padding: 5px 20px;
144
+ border-bottom: none;
145
+ border-radius: 4px;
146
+ &:first-child {
147
+ color: #333;
148
+ font-weight: 500;
149
+ }
150
+ }
151
+ }
152
+ }
153
+ }
154
+
155
+ .wphb-system-info-dropdown {
156
+ max-width: 160px;
157
+ }
158
+
159
+ }
admin/abstract-class-admin-page.php CHANGED
@@ -166,7 +166,7 @@ abstract class WP_Hummingbird_Admin_Page {
166
  */
167
  public function admin_body_class( $classes ) {
168
 
169
- $classes .= ' sui-2-1-0 wpmud ';
170
 
171
  return $classes;
172
 
@@ -189,7 +189,7 @@ abstract class WP_Hummingbird_Admin_Page {
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 );
@@ -198,9 +198,9 @@ abstract class WP_Hummingbird_Admin_Page {
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
 
166
  */
167
  public function admin_body_class( $classes ) {
168
 
169
+ $classes .= ' sui-2-1-3 wpmud ';
170
 
171
  return $classes;
172
 
189
  */
190
  public function enqueue_scripts( $hook ) {
191
  // WPMU DEV Shared UI.
192
+ wp_enqueue_style( 'wpmudev-sui', WPHB_DIR_URL . 'admin/assets/css/shared-ui.min.css', array(), WPHB_VERSION );
193
 
194
  // Styles.
195
  wp_enqueue_style( 'wphb-admin', WPHB_DIR_URL . 'admin/assets/css/app.min.css', array(), WPHB_VERSION );
198
  WP_Hummingbird_Utils::enqueue_admin_scripts( WPHB_VERSION );
199
  wp_enqueue_script(
200
  'wpmudev-sui',
201
+ WPHB_DIR_URL . 'admin/assets/js/shared-ui.min.js',
202
  array( 'jquery' ),
203
+ WPHB_VERSION,
204
  true
205
  );
206
 
admin/assets/css/app.min.css CHANGED
@@ -1,2 +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*/
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}.wpmud .wphb-notice p>a{font-weight:400;margin-left:0!important}@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}}.wpmud .box-advanced-system-info .sui-table.wphb-sys-info-table{border:none}.wpmud .box-advanced-system-info .sui-table.wphb-sys-info-table tr{height:40px}.wpmud .box-advanced-system-info .sui-table.wphb-sys-info-table tr:nth-child(odd){border-radius:4px;background-color:#fafafa}.wpmud .box-advanced-system-info .sui-table.wphb-sys-info-table tr td{vertical-align:top;padding:5px 20px;border-bottom:none;border-radius:4px}.wpmud .box-advanced-system-info .sui-table.wphb-sys-info-table tr td:first-child{color:#333;font-weight:500}.wpmud .box-advanced-system-info .wphb-system-info-dropdown{max-width:160px}.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 CHANGED
@@ -1 +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":"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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,oB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+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":""}
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":"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yBAGJ,4CACI,gBAGJ,4CACI,aACA,mBACA,kBACH,8CAGG,eAGJ,qDACI,eAGJ,wDACI,gBACA,0BACA,kBACH,0DAGG,0BACH,oCAGG,qGAEI,sEAEJ,qIAEI,2Cdq7GL,Ce7+GH,uBACI,mBACA,qDACA,gEACA,YAEJ,mCACI,sEACH,4CAIG,SACA,mBACA,WACA,YACA,gBACA,UACA,kBACA,UACA,cAGJ,kDACI,yBACA,kBACA,qDACA,UACA,kEACA,oEACA,kBACA,YACA,kBACA,kFACA,wDACA,4BACA,gBACA,gBACH,oEAIG,WAIJ,mCACI,WACA,YACH,8DAGG,aACA,WACA,YAGJ,wCACI,gBACA,aAIJ,oIAEI,wCACA,yBAGJ,wHAEI,WACA,UACA,eACH,4BAGG,WACA,eACA,iBAGJ,sEACI,eACA,oBACA,iBAQJ,4OAEI,eACH,oOAKG,cACH,0IAIG,WACH,2DAGG,sBAGJ,4DACI,kBACA,OACA,MACA,SACA,QACA,UACH,0CAGG,cACA,mBAKJ,iDACI,mBACH,gCAIG,yBACA,mBAGJ,gEACI,qBACA,mBACH,4DAIG,4BAGJ,uEACI,8BACA,cACA,YACA,UACA,kBACA,kBACA,WAGJ,8EACI,8BACA,YACA,iBACA,oBACA,iBACH,+EAEG,kBACH,4EAEG,YACA,WACA,cACA,2BACH,8EAGG,WACA,eACA,iBACA,kBACA,SACH,kFAGG,cACH,uCAGG,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,mBACH,uIAIG,gBAGJ,2IAEI,yBACA,mBACH,oEAGG,sBACA,kBACA,sFAGJ,6EAEI,eACA,gBACA,iBACA,WACA,gBACA,oBACA,iBACH,6CAIG,mBACA,WAGJ,+DACI,WACA,WACA,eACA,gBACA,iBACA,yBACH,oCAIG,WACA,iBACA,gBACA,kBACA,mBACA,YAGJ,0EAGI,mJACA,WACA,YACA,oBACA,kBACA,QACA,MACA,WAGJ,sCACI,WACA,eACA,gBACA,iBAGJ,qDACI,WACA,cACA,eACA,iBAGJ,sCACI,gBACA,gBAGJ,+DACI,6BACH,uHAIG,cAGJ,kEACI,cACA,kBACA,MACH,yCAIG,oBACA,qDACA,2DACI,cAIR,uCACI,qDACA,kEACA,+CACA,cACA,qDACI,iBAIH,0DAFO,gBACH,0CAKL,mBAGJ,6CACI,WAGJ,sCACI,WACA,iBACA,kBACA,eACH,kCAGG,iBACH,iCAIG,sBACA,eACA,iBACH,qCAGG,YACA,qDACA,kEACA,+CACH,2CAIG,wBACA,oBACA,mCAGJ,uDACI,WACA,2CACA,oBACA,kBACH,wDAGG,0BACH,uFAKG,aAGJ,8DAEI,yBAGJ,mEACI,wCACH,gQAMG,WACH,sCAGG,iBACH,mEAGG,WAKJ,8CACI,SACH,0FAIG,aAKA,oDACI,kBdpXA,0Cc0XJ,sEACI,Yfi+GL,CCn2HK,0CcuYJ,4DACI,WACA,4BAGJ,sEACI,YACH,oEAGG,iBAGJ,4DACI,gBfi+GL,Ce79GH,qCACI,uDAEI,afi+GL,CCp4HK,yCcwaJ,4DACI,YACA,4Bfi+GL,CCl5HK,yCcsbJ,+DACI,uCACA,gBACA,kBACA,UACA,kBACA,eAGJ,sEACI,gBAGJ,yDACI,eACA,gBAGJ,sEACI,UACA,gBACH,wEAGG,gBAGJ,wEACI,aACA,cACA,6BACA,2BACA,WACA,YAGJ,8EACI,iBAGJ,2EACI,WAGJ,oEACI,YACA,efi+GL,CC58HK,yCcgfJ,kHAEI,qBAGJ,uEACI,YACA,kBACA,kBACA,MAGJ,oCACI,YAGJ,iEACI,cACA,eACA,gBACA,efi+GL,CC5+HK,yCcghBJ,2IAEI,mBAGJ,uCACI,aAGJ,yDACI,sBAGJ,yCACI,oBAGJ,uCACI,cAGJ,mCACI,YAGJ,iHAEI,aAGJ,oCACI,YAGJ,sEACI,gBACH,wCAKG,aACA,gBAGJ,4BACI,iBACA,iBACA,6CACH,kDAGG,WAGJ,sEACI,eACH,uEAGG,aAGJ,+DACI,kBf+9GL,CgBhmIH,sFAGQ,kBACH,qCAEG,eACA,WACH,wCAGD,gDAEJ,mDACI,iBAGJ,6CACI,gBACA,mBAGJ,kCACI,aACA,mBACA,eAGJ,kCACI,UACA,oCACA,eACA,gBAEJ,4CACI,iBACA,WACA,aAGJ,+CACI,UACA,gBAGJ,oFAEI,YACA,iBACA,YACA,kBAGJ,2CACI,mBAGJ,6CACI,gBACH,+HAIG,gBACA,cAGJ,kCACI,oCACA,UACA,gBACA,eACA,iBAGJ,+CACI,iBACA,cAGJ,+DACI,YACH,2EAEG,sBACA,gBACH,0EAEG,aAEJ,kCACI,mBACH,kCAEG,mBACA,eAGJ,gCACI,WACA,eACA,iBACA,kBACA,gBACH,uCAGG,WACA,qBACA,YACA,WACA,kBACA,kBACA,mBAGJ,yDACI,yBACA,6BACA,YAEJ,kDACI,yBACH,oDAEG,yBACH,mDAEG,yBAGJ,8CACI,mBACH,oGAGG,YACA,kBACA,sBACA,kBACA,eACA,iBAPJ,kHASQ,WAKR,mDACI,yBAGJ,iDACI,yBACH,2CAGG,WAGJ,oFAEI,gBACA,WACA,eACA,YACA,iBACA,kBAGJ,wDACI,SACH,yCAGG,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,iBACH,gFAGG,eACA,WACA,iBACA,cACH,yCAOG,2CACI,kBACA,MACA,QACA,eAGJ,iDACI,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,WhB2mIL,CC11IK,yCeoPJ,wCACI,eACH,qBAGG,kBhB2mIL,CiBn5IC,sCACI,kBACA,mBACH,2CAKD,0BAEA,+GAEI,kBhBiDA,yCgBtDR,+GAQY,ejBy5IT,CC32IK,yCgB1CJ,yDAEQ,iBjBy5IT,CiBv6IH,6DAmBQ,6CAnBR,+IAwBQ,+CAxBR,0DA6BY,YACA,eACA,iBAMH,sEAHO,WACA,gBACH,4EAID,WACA,eACA,iBAEA,kFAAU,WAAe,mFACd,sBAA0B,0EAIrC,WACA,YACA,qBACA,kBACA,gBACA,kBACA,sBACA,eAxDZ,gFA2DgB,yBAEA,6FACI,cACH,+DAKL,eApEZ,mEAwEY,WACA,eACA,QA1EZ,2DA+EO,gBAIF,yCALD,2DAGQ,ejB+5IT,CiBz5IH,mKAIY,aAJZ,uEAQY,eACA,WACH,gEAMD,cAOH,0CALG,0FAEQ,gBjBy5Ib,CiBj5IH,gEAGY,YAkBH,mEAhBO,YACA,kFACI,kBACA,yBACH,sEAEG,mBACA,iBACA,mBACA,kBAdpB,kFAgBwB,WACA,gBAjBxB,4DAyBQ,gBjBs5IP,0BA7gJG,iBAihJH,mCA7gJG,mBAihJH,8BA7gJG,gBAihJH,0CA7gJG,WACA,gBACA,yBAihJH,gBA7gJG,oBAihJH,2BA7gJG,gCACA,oBAihJH,0CA9gJG,6BAkhJH,+BA9gJG,oBACA,eACA,gBAkhJH,+BA9gJG,kBAkhJH,0CA9gJG,qBAkhJH,oDA9gJG,sBAkhJH,iBA9gJG,oBAkhJH,0BA9gJG,eACA,6BAkhJH,gCA9gJG,oBACA,WACA,eAkhJH,0CA9gJG,gBAkhJH,gCA9gJG,eACA,gBACA,iBACA,yBAkhJH,uFA7gJG,6BAkhJH,0iBAvgJG,oCAkhJH,oDA9gJG,wCACA,eACA,WACA,iBACA,iBACA,gBAkhJH,mHA7gJG,0BAkhJH,iHA7gJG,yBAkhJH,iGA7gJG,WACA,2CAkhJH,qDA9gJG,gBACA,eACA,WAkhJH,gEA9gJG,cACA,cACA,2CACA,eAkhJH,kCA9gJG,SAkhJH,6GA7gJG,iBAkhJH,2DA9gJG,eAkhJH,iDA9gJG,kBAkhJH,wBA9gJG,cAkhJH,4BA9gJG,kBACA,yBACA,yBAkhJH,uBA9gJG,0BACA,iBACA,gBACA,eACA,gBACA,wDACA,oBAkhJH,oBA9gJG,gBAkhJH,0BA9gJG,iBAkhJH,sDA9gJG,kBACA,OACA,MACA,SACA,QACA,UAkhJH,0BA7gJG,6BACA,mBACA,WACA,0BACA,qBACA,YACA,SACA,eACA,qBACA,iBACA,oBACA,mBAihJH,8BA7gJG,mBAihJH,iCA7gJG,mBACA,WAihJH,gCA7gJG,mBAihJH,gCA7gJG,WACA,yBAihJH,wCA5gJG,WACA,cACA,0BACA,iBACA,mBAghJH,+CA5gJG,mBACA,kBACA,iBAghJH,uDA5gJG,mBACA,cAghJH,sDA5gJG,qBACA,eACA,WACA,cAghJH,iDA5gJG,mBACA,mBACA,aACA,qBACA,2CACA,gBACA,YACA,kBACA,yBAghJH,mCAvgJG,gBACA,gBACA,6BA2gJH,mBAvgJG,gBACA,eACA,WACA,WA2gJH,kEArgJG,UAygJH,2JAlgJG,iCAygJH,+KAlgJG,WACA,iBAygJH,mDApgJG,cACA,YACA,eAygJH,iEApgJG,kBACA,iBAygJH,oCArgJG,mBAygJH,qBApgJG,SAwgJH,wBApgJG,oCACA,eACA,gBACA,iBACA,gBACA,gBAwgJH,oCApgJG,aAwgJH,6BApgJG,gBAwgJH,6BApgJG,kBAwgJH,+BApgJG,gBAwgJH,+BApgJG,cACA,MAwgJH,0BApgJG,eACA,iBACA,eAwgJH,0BAngJG,WAugJH,gCAngJG,WACA,cACA,WAugJH,8DAlgJG,WACA,cAugJH,gCAngJG,iBACA,kBAugJH,yBAngJG,gBAugJH,gCAngJG,iBAugJH,mCAngJG,YAugJH,2BA7/IG,GACI,+BACA,uBAigJL,IA7/IK,iCACA,yBAigJL,GA7/IK,gCACA,wBAigJL,CACF,mBA9gJG,GACI,+BACA,uBAigJL,IA7/IK,iCACA,yBAigJL,GA7/IK,gCACA,wBAigJL,CACF,oBA7/IG,gBACA,WAigJH,iGA5/IG,YACA,WACA,YACA,qBACA,kBACA,QACA,SACA,kBACA,yBACA,4BACA,mBACA,eACA,oDACA,4FAigJH,6CA7/IG,WACA,WACA,gBAigJH,iDA7/IG,qBACA,sBACA,kBAigJH,kDA7/IG,gBACA,wCACA,eACA,WACA,sBACA,iBAigJH,4CA7/IG,mBAGA,kBACA,YACA,UACA,gBACA,gBACA,kBAig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","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.wpmud .wphb-notice p>a {\n font-weight: 400;\n margin-left: 0 !important;\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.wpmud .box-advanced-system-info .sui-table.wphb-sys-info-table {\n border: none;\n}\n\n.wpmud .box-advanced-system-info .sui-table.wphb-sys-info-table tr {\n height: 40px;\n}\n\n.wpmud .box-advanced-system-info .sui-table.wphb-sys-info-table tr:nth-child(odd) {\n border-radius: 4px;\n background-color: #FAFAFA;\n}\n\n.wpmud .box-advanced-system-info .sui-table.wphb-sys-info-table tr td {\n vertical-align: top;\n padding: 5px 20px;\n border-bottom: none;\n border-radius: 4px;\n}\n\n.wpmud .box-advanced-system-info .sui-table.wphb-sys-info-table tr td:first-child {\n color: #333;\n font-weight: 500;\n}\n\n.wpmud .box-advanced-system-info .wphb-system-info-dropdown {\n max-width: 160px;\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/* Overwrite for clear cache notice additional info link */\n.wpmud .wphb-notice p>a {\n font-weight: 400;\n margin-left: 0 !important;\n}\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/* Database cleanup tab */\n.wpmud .box-advanced-system-info {\n .sui-table {\n &.wphb-sys-info-table {\n border: none;\n tr {\n height: 40px;\n &:nth-child(odd){\n border-radius: 4px;\n background-color: #FAFAFA\n }\n td {\n vertical-align: top;\n padding: 5px 20px;\n border-bottom: none;\n border-radius: 4px;\n &:first-child {\n color: #333;\n font-weight: 500;\n }\n }\n }\n }\n }\n\n .wphb-system-info-dropdown {\n max-width: 160px;\n }\n\n}\n\n\n\n// WEBPACK FOOTER //\n// ./_src/scss/modules/_advanced.scss"],"sourceRoot":""}
admin/assets/css/shared-ui.min.css CHANGED
@@ -1,2 +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*/
1
+ @import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,500,700|Roboto:400,500,700);.sui-2-1-3 .sui-checkbox input,.sui-2-1-3 .sui-radio input,.sui-2-1-3 .sui-toggle input[type=checkbox],.sui-2-1-3 .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-3 .sui-hidden{display:none!important}.sui-2-1-3 .sui-block-content-center{text-align:center}.sui-2-1-3 .sui-image{display:block;height:auto;max-width:100%}.sui-2-1-3 .sui-image-center{margin-right:auto;margin-left:auto}.sui-2-1-3 .sui-actions-left{margin-left:10px;margin-right:auto}.sui-2-1-3 .sui-actions-left,.sui-2-1-3 .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-3 .sui-actions-right{margin-left:auto;margin-right:0}.sui-2-1-3 .sui-space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.sui-2-1-3 .sui-align-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.sui-2-1-3 .sui-align-end{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.sui-2-1-3 .sui-success{color:#1abc9c}.sui-2-1-3 .sui-warning{color:#fecf2f}.sui-2-1-3 .sui-error{color:#ff7f83}.sui-2-1-3 .sui-info{color:#17a8e3}.sui-2-1-3 .sui-no-margin{margin:0!important}.sui-2-1-3 .sui-no-margin-top{margin-top:0!important}.sui-2-1-3 .sui-no-margin-bottom{margin-bottom:0!important}.sui-2-1-3 .sui-no-margin-left{margin-left:0!important}.sui-2-1-3 .sui-no-margin-right{margin-right:0!important}.sui-2-1-3 .sui-no-padding{padding:0!important}.sui-2-1-3 .sui-no-padding-top{padding-top:0!important}.sui-2-1-3 .sui-no-padding-bottom{padding-bottom:0!important}.sui-2-1-3 .sui-no-padding-left{padding-left:0!important}.sui-2-1-3 .sui-no-padding-right{padding-right:0!important}.sui-2-1-3 .sui-margin{margin:30px!important}.sui-2-1-3 .sui-margin-top{margin-top:30px!important}.sui-2-1-3 .sui-margin-bottom{margin-bottom:30px!important}.sui-2-1-3 .sui-margin-left{margin-left:30px!important}.sui-2-1-3 .sui-margin-right{margin-right:30px!important}.sui-2-1-3 .sui-padding{padding:30px!important}.sui-2-1-3 .sui-padding-top{padding-top:30px!important}.sui-2-1-3 .sui-padding-bottom{padding-bottom:30px!important}.sui-2-1-3 .sui-padding-left{padding-left:30px!important}.sui-2-1-3 .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-3 .sui-fade-in{-webkit-animation:fadeIn .3s ease-in forwards;animation:fadeIn .3s ease-in forwards}.sui-2-1-3 .sui-fade-out{-webkit-animation:fadeOut .3s ease-in forwards;animation:fadeOut .3s ease-in forwards}.sui-2-1-3 .sui-bounce-in{-webkit-animation:bounceInJiggle .8s ease-in forwards;animation:bounceInJiggle .8s ease-in forwards}.sui-2-1-3 .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-3 .sui-wrap{font-family:Roboto,Arial,sans-serif;font-weight:400;font-size:15px;line-height:30px;color:#666;letter-spacing:-.025em;margin:30px 30px 0 10px}.sui-2-1-3 .sui-wrap *{font-variant-ligatures:none;-webkit-font-variant-ligatures:none;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale;font-smoothing:antialiased;-webkit-font-smoothing:antialiased;text-shadow:rgba(0,0,0,.01) 0 0 1px}@media (max-width:782px){.sui-2-1-3 .sui-wrap{margin:20px 10px 0 0}}.sui-2-1-3 h1,.sui-2-1-3 h2,.sui-2-1-3 h3,.sui-2-1-3 h4,.sui-2-1-3 h5,.sui-2-1-3 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-3 h1{font-size:32px;line-height:40px;color:#333;margin:0}.sui-2-1-3 h2{font-size:22px;line-height:35px}.sui-2-1-3 h3{font-size:18px;line-height:40px}.sui-2-1-3 h4,.sui-2-1-3 h5,.sui-2-1-3 h6,.sui-2-1-3 p{font-size:15px}.sui-2-1-3 p{font-family:Roboto,Arial,sans-serif;font-weight:400;line-height:30px;color:#666;letter-spacing:-.025em;text-rendering:optimizeLegibility}.sui-2-1-3 p:first-child{margin-top:0}.sui-2-1-3 p:last-child{margin-bottom:0}.sui-2-1-3 p small{font-size:13px;line-height:22px;color:#888}.sui-2-1-3 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-3 a:active:not(.sui-button),.sui-2-1-3 a:focus:not(.sui-button),.sui-2-1-3 a:hover:not(.sui-button){color:#0a9bd6}.sui-2-1-3 a.disabled{pointer-events:none}.sui-2-1-3 a.disabled:active,.sui-2-1-3 a.disabled:focus,.sui-2-1-3 a.disabled:hover{color:#888;cursor:default}.sui-2-1-3 code,.sui-2-1-3 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-3 code{display:inline-block;padding:2px 5px}.sui-2-1-3 b,.sui-2-1-3 strong{font-weight:500}.sui-2-1-3 dfn{font-style:normal;font-weight:400;border-bottom:1px dotted #888}.sui-2-1-3 .sui-checkbox span:not(.sui-description):before,.sui-2-1-3 .sui-dialog-close:before,.sui-2-1-3 .sui-listing li:before,.sui-2-1-3 .sui-notice-top p:before,.sui-2-1-3 .sui-notice p:before,.sui-2-1-3 .sui-radio span:not(.sui-description):before,.sui-2-1-3 [class*=sui-icon-]:after,.sui-2-1-3 [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-3 .sui-loading:before{-webkit-animation:spin 1.3s linear infinite;animation:spin 1.3s linear infinite}.sui-2-1-3 [class*=sui-icon-]{display:inline-block}.sui-2-1-3 [class*=sui-icon-].sui-xl:before{font-size:30px}.sui-2-1-3 [class*=sui-icon-].sui-lg:before{font-size:20px}.sui-2-1-3 [class*=sui-icon-].sui-md:before{font-size:16px}.sui-2-1-3 [class*=sui-icon-].sui-sm:before{font-size:12px}.sui-2-1-3 [class*=sui-icon-].sui-error:before,.sui-2-1-3 [class*=sui-icon-].sui-info:before,.sui-2-1-3 [class*=sui-icon-].sui-success:before,.sui-2-1-3 [class*=sui-icon-].sui-warning:before{color:inherit}.sui-2-1-3 [class*=sui-icon-].sui-fw{width:1.8em;text-align:center;min-height:1em}.sui-2-1-3 .sui-icon-24-hour-support:before{content:"\C1"}.sui-2-1-3 .sui-icon-2FA:before{content:"\E912"}.sui-2-1-3 .sui-icon-IP:before{content:"\E910"}.sui-2-1-3 .sui-icon-ab-testing:before{content:"\BB"}.sui-2-1-3 .sui-icon-academy:before{content:"\3C0"}.sui-2-1-3 .sui-icon-accounts-billing:before{content:"\E914"}.sui-2-1-3 .sui-icon-alert:before{content:"X"}.sui-2-1-3 .sui-icon-align-center:before{content:"^"}.sui-2-1-3 .sui-icon-align-justify:before{content:"#"}.sui-2-1-3 .sui-icon-align-left:before{content:"%"}.sui-2-1-3 .sui-icon-align-right:before{content:"&"}.sui-2-1-3 .sui-icon-animation-video:before{content:"F"}.sui-2-1-3 .sui-icon-annotate:before{content:"\B4"}.sui-2-1-3 .sui-icon-archive:before{content:"b"}.sui-2-1-3 .sui-icon-arrow-down:before{content:"\C2"}.sui-2-1-3 .sui-icon-arrow-left:before{content:"\F8FF"}.sui-2-1-3 .sui-icon-arrow-location:before{content:"M"}.sui-2-1-3 .sui-icon-arrow-pointer-cursor:before{content:"N"}.sui-2-1-3 .sui-icon-arrow-return-back:before{content:"R"}.sui-2-1-3 .sui-icon-arrow-right:before{content:"\AF"}.sui-2-1-3 .sui-icon-arrow-skip-back:before{content:"\E916"}.sui-2-1-3 .sui-icon-arrow-skip-end:before{content:"\E919"}.sui-2-1-3 .sui-icon-arrow-skip-forward:before{content:"\E917"}.sui-2-1-3 .sui-icon-arrow-skip-start:before{content:"\E918"}.sui-2-1-3 .sui-icon-arrow-up:before{content:"\D4"}.sui-2-1-3 .sui-icon-arrows-compress:before{content:"\2265"}.sui-2-1-3 .sui-icon-arrows-expand:before{content:"\AC"}.sui-2-1-3 .sui-icon-arrows-in:before{content:"\2264"}.sui-2-1-3 .sui-icon-arrows-out:before{content:"\2DA"}.sui-2-1-3 .sui-icon-asterisk:before{content:"*"}.sui-2-1-3 .sui-icon-at-sign:before{content:"@"}.sui-2-1-3 .sui-icon-audio-sound:before{content:"\E9AE"}.sui-2-1-3 .sui-icon-automate:before{content:"\152"}.sui-2-1-3 .sui-icon-blog:before{content:"\E90D"}.sui-2-1-3 .sui-icon-bold:before{content:"B"}.sui-2-1-3 .sui-icon-book:before{content:"\2206"}.sui-2-1-3 .sui-icon-book-bookmark:before{content:"\2D9"}.sui-2-1-3 .sui-icon-bookmark:before{content:"\221A"}.sui-2-1-3 .sui-icon-brush:before{content:"~"}.sui-2-1-3 .sui-icon-buddypress:before{content:"\E90C"}.sui-2-1-3 .sui-icon-calendar:before{content:"\220F"}.sui-2-1-3 .sui-icon-camera:before{content:"\D8"}.sui-2-1-3 .sui-icon-check:before{content:"("}.sui-2-1-3 .sui-icon-check-tick:before{content:"_"}.sui-2-1-3 .sui-icon-chevron-down:before{content:"\131"}.sui-2-1-3 .sui-icon-chevron-left:before{content:"\D3"}.sui-2-1-3 .sui-icon-chevron-right:before{content:"\2DC"}.sui-2-1-3 .sui-icon-chevron-up:before{content:"\2DD"}.sui-2-1-3 .sui-icon-clipboard-notes:before{content:"\BF"}.sui-2-1-3 .sui-icon-clock:before{content:","}.sui-2-1-3 .sui-icon-close:before{content:")"}.sui-2-1-3 .sui-icon-cloud:before{content:"\2122"}.sui-2-1-3 .sui-icon-cloud-migration:before{content:"\E905"}.sui-2-1-3 .sui-icon-cloudflare:before{content:"\D0"}.sui-2-1-3 .sui-icon-code:before{content:":"}.sui-2-1-3 .sui-icon-coffee-cup:before{content:"\E96B"}.sui-2-1-3 .sui-icon-color-pick-eyedropper:before{content:"\A5"}.sui-2-1-3 .sui-icon-comment:before{content:"\A7"}.sui-2-1-3 .sui-icon-comment-2:before{content:"\AA"}.sui-2-1-3 .sui-icon-comments:before{content:"\B6"}.sui-2-1-3 .sui-icon-community-people:before{content:"\2018"}.sui-2-1-3 .sui-icon-compass:before{content:"\2C6"}.sui-2-1-3 .sui-icon-credit-card:before{content:"c"}.sui-2-1-3 .sui-icon-crop:before{content:"C"}.sui-2-1-3 .sui-icon-cross-close:before{content:"+"}.sui-2-1-3 .sui-icon-crown:before{content:"\A1"}.sui-2-1-3 .sui-icon-dashboard:before{content:"\E9B2"}.sui-2-1-3 .sui-icon-dashboard-settings:before{content:"\E901"}.sui-2-1-3 .sui-icon-defender:before{content:"\B7"}.sui-2-1-3 .sui-icon-devman:before{content:"\20AC"}.sui-2-1-3 .sui-icon-dislike:before{content:"k"}.sui-2-1-3 .sui-icon-dollar:before{content:"$"}.sui-2-1-3 .sui-icon-download:before{content:"\E93B"}.sui-2-1-3 .sui-icon-download-cloud:before{content:"\A3"}.sui-2-1-3 .sui-icon-eye:before{content:"e"}.sui-2-1-3 .sui-icon-eye-hide:before{content:"q"}.sui-2-1-3 .sui-icon-fast-forward:before{content:">"}.sui-2-1-3 .sui-icon-filter:before{content:"z"}.sui-2-1-3 .sui-icon-finger-point:before{content:"\2248"}.sui-2-1-3 .sui-icon-finger-swipe:before{content:"\2203"}.sui-2-1-3 .sui-icon-first-aid:before{content:"\E93F"}.sui-2-1-3 .sui-icon-flag:before{content:"|"}.sui-2-1-3 .sui-icon-folder:before{content:"\2D8"}.sui-2-1-3 .sui-icon-forminator:before{content:"\E908"}.sui-2-1-3 .sui-icon-forminator-2:before{content:"\E907"}.sui-2-1-3 .sui-icon-gallery-slider:before{content:"\F7"}.sui-2-1-3 .sui-icon-google-analytics:before{content:"\E5"}.sui-2-1-3 .sui-icon-graph-bar:before{content:"\C7"}.sui-2-1-3 .sui-icon-graph-bar-2:before{content:"\2DB"}.sui-2-1-3 .sui-icon-heart:before{content:"K"}.sui-2-1-3 .sui-icon-help-support:before{content:"H"}.sui-2-1-3 .sui-icon-home:before{content:"J"}.sui-2-1-3 .sui-icon-hub:before{content:"\FB02"}.sui-2-1-3 .sui-icon-hummingbird:before{content:"\B0"}.sui-2-1-3 .sui-icon-hustle:before{content:"\2014"}.sui-2-1-3 .sui-icon-indent-less:before{content:"\201D"}.sui-2-1-3 .sui-icon-indent-more:before{content:"\2019"}.sui-2-1-3 .sui-icon-infinity:before{content:"V"}.sui-2-1-3 .sui-icon-info:before{content:"I"}.sui-2-1-3 .sui-icon-italic:before{content:"{"}.sui-2-1-3 .sui-icon-jobs-pros-search:before{content:"\E90E"}.sui-2-1-3 .sui-icon-key:before{content:"\25CA"}.sui-2-1-3 .sui-icon-laptop:before{content:"\AB"}.sui-2-1-3 .sui-icon-layers:before{content:"\E6"}.sui-2-1-3 .sui-icon-layout:before{content:"\A9"}.sui-2-1-3 .sui-icon-layout-grid:before{content:"\221E"}.sui-2-1-3 .sui-icon-lightbulb:before{content:"L"}.sui-2-1-3 .sui-icon-lightbulb-line:before{content:"\E913"}.sui-2-1-3 .sui-icon-like:before{content:"j"}.sui-2-1-3 .sui-icon-link:before{content:"5"}.sui-2-1-3 .sui-icon-list:before{content:"`"}.sui-2-1-3 .sui-icon-list-bullet:before{content:"8"}.sui-2-1-3 .sui-icon-list-number:before{content:"7"}.sui-2-1-3 .sui-icon-loader:before{content:"\E9BE"}.sui-2-1-3 .sui-icon-location-marker:before{content:"l"}.sui-2-1-3 .sui-icon-lock:before{content:"9"}.sui-2-1-3 .sui-icon-magnifying-glass-search:before{content:"\BA"}.sui-2-1-3 .sui-icon-magnifying-search-glass-love:before{content:"\2022"}.sui-2-1-3 .sui-icon-mail:before{content:"m"}.sui-2-1-3 .sui-icon-map:before{content:"4"}.sui-2-1-3 .sui-icon-megaphone:before{content:"\C5"}.sui-2-1-3 .sui-icon-microphone-audio:before{content:"\2030"}.sui-2-1-3 .sui-icon-minus:before{content:"-"}.sui-2-1-3 .sui-icon-mobile:before{content:"\201C"}.sui-2-1-3 .sui-icon-mobile-signal:before{content:"\201B"}.sui-2-1-3 .sui-icon-monitor:before{content:"\\"}.sui-2-1-3 .sui-icon-more:before{content:"\2026"}.sui-2-1-3 .sui-icon-mouse-scroll:before{content:"\DF"}.sui-2-1-3 .sui-icon-news-paper:before{content:"\2211"}.sui-2-1-3 .sui-icon-notification:before{content:"n"}.sui-2-1-3 .sui-icon-notification-count:before{content:"\E900"}.sui-2-1-3 .sui-icon-open-new-window:before{content:"\E909"}.sui-2-1-3 .sui-icon-page:before{content:"\D2"}.sui-2-1-3 .sui-icon-page-multiple:before{content:"\E7"}.sui-2-1-3 .sui-icon-page-pdf:before{content:"\C6"}.sui-2-1-3 .sui-icon-page-search:before{content:"\DA"}.sui-2-1-3 .sui-icon-paint-bucket:before{content:"\222B"}.sui-2-1-3 .sui-icon-paperclip:before{content:"A"}.sui-2-1-3 .sui-icon-pause:before{content:"o"}.sui-2-1-3 .sui-icon-paypal:before{content:"Y"}.sui-2-1-3 .sui-icon-pencil:before{content:"/"}.sui-2-1-3 .sui-icon-performance:before{content:"\E903"}.sui-2-1-3 .sui-icon-photo-picture:before{content:"D"}.sui-2-1-3 .sui-icon-play:before{content:"p"}.sui-2-1-3 .sui-icon-plug-connected:before{content:"\E90B"}.sui-2-1-3 .sui-icon-plug-disconnected:before{content:"\E90A"}.sui-2-1-3 .sui-icon-plugin-2:before{content:"O"}.sui-2-1-3 .sui-icon-plugins:before{content:"P"}.sui-2-1-3 .sui-icon-plus:before{content:"="}.sui-2-1-3 .sui-icon-power-on-off:before{content:"\E904"}.sui-2-1-3 .sui-icon-price-tag:before{content:"\2C7"}.sui-2-1-3 .sui-icon-profile-female:before{content:"\192"}.sui-2-1-3 .sui-icon-profile-male:before{content:"\B5"}.sui-2-1-3 .sui-icon-progress:before{content:"\E9B1"}.sui-2-1-3 .sui-icon-pulse:before{content:"\201E"}.sui-2-1-3 .sui-icon-puzzle:before{content:";\A}\A\A"}.sui-2-1-3 .sui-icon-question:before{content:"?"}.sui-2-1-3 .sui-icon-quote:before{content:";"}.sui-2-1-3 .sui-icon-quote-2:before{content:"'"}.sui-2-1-3 .sui-icon-refresh:before{content:"E"}.sui-2-1-3 .sui-icon-reply:before{content:"r"}.sui-2-1-3 .sui-icon-rocket-launch:before{content:"\E9BF"}.sui-2-1-3 .sui-icon-security-thumb-print:before{content:"\E90F"}.sui-2-1-3 .sui-icon-settings-slider-control:before{content:"\153"}.sui-2-1-3 .sui-icon-share:before{content:"s"}.sui-2-1-3 .sui-icon-sheild-badge:before{content:"\E96A"}.sui-2-1-3 .sui-icon-shipper-anchor:before{content:"\E906"}.sui-2-1-3 .sui-icon-shopping-cart:before{content:"\CD"}.sui-2-1-3 .sui-icon-sitemap:before{content:"\B8"}.sui-2-1-3 .sui-icon-skull:before{content:"\E96C"}.sui-2-1-3 .sui-icon-smart-crawl:before{content:"\2202"}.sui-2-1-3 .sui-icon-smush:before{content:"\2021"}.sui-2-1-3 .sui-icon-snapshot:before{content:"\FB01"}.sui-2-1-3 .sui-icon-social-android:before{content:"."}.sui-2-1-3 .sui-icon-social-apple:before{content:"a"}.sui-2-1-3 .sui-icon-social-drive:before{content:"v"}.sui-2-1-3 .sui-icon-social-dropbox:before{content:"d"}.sui-2-1-3 .sui-icon-social-facebook:before{content:"f"}.sui-2-1-3 .sui-icon-social-github:before{content:"h"}.sui-2-1-3 .sui-icon-social-google-plus:before{content:"g"}.sui-2-1-3 .sui-icon-social-linkedin:before{content:"i"}.sui-2-1-3 .sui-icon-social-twitter:before{content:"t"}.sui-2-1-3 .sui-icon-social-youtube:before{content:"y"}.sui-2-1-3 .sui-icon-speed-optimize:before{content:"\F8"}.sui-2-1-3 .sui-icon-star:before{content:"S"}.sui-2-1-3 .sui-icon-star-line:before{content:"\CF"}.sui-2-1-3 .sui-icon-stopwatch:before{content:"\E986"}.sui-2-1-3 .sui-icon-storage-server-data:before{content:"\CE"}.sui-2-1-3 .sui-icon-style-type:before{content:"<"}.sui-2-1-3 .sui-icon-tablet-landscape:before{content:"["}.sui-2-1-3 .sui-icon-tablet-portrait:before{content:"]"}.sui-2-1-3 .sui-icon-target:before{content:"\2020"}.sui-2-1-3 .sui-icon-tech-support:before{content:"\E915"}.sui-2-1-3 .sui-icon-testing-bottle-beaker:before{content:"\E9B4"}.sui-2-1-3 .sui-icon-text-color:before{content:"\A8"}.sui-2-1-3 .sui-icon-themes:before{content:"T"}.sui-2-1-3 .sui-icon-thumbnails:before{content:"G"}.sui-2-1-3 .sui-icon-ticket:before{content:"\E97D"}.sui-2-1-3 .sui-icon-timed-countdown:before{content:"\E911"}.sui-2-1-3 .sui-icon-trash:before{content:"Q"}.sui-2-1-3 .sui-icon-underline:before{content:"U"}.sui-2-1-3 .sui-icon-unlink:before{content:"6"}.sui-2-1-3 .sui-icon-unlock:before{content:"0"}.sui-2-1-3 .sui-icon-update:before{content:"\AE"}.sui-2-1-3 .sui-icon-update-arrow:before{content:"\E902"}.sui-2-1-3 .sui-icon-upfront:before{content:"\201A"}.sui-2-1-3 .sui-icon-upload-cloud:before{content:"\A2"}.sui-2-1-3 .sui-icon-uptime:before{content:"\B1"}.sui-2-1-3 .sui-icon-user-hero-points-trophy:before{content:"1"}.sui-2-1-3 .sui-icon-user-reputation-points:before{content:"2"}.sui-2-1-3 .sui-icon-user-star-level-up:before{content:"3"}.sui-2-1-3 .sui-icon-wand-magic:before{content:"Z"}.sui-2-1-3 .sui-icon-warning-alert:before{content:"!"}.sui-2-1-3 .sui-icon-web-globe-world:before{content:"W"}.sui-2-1-3 .sui-icon-white-label-video:before{content:"u"}.sui-2-1-3 .sui-icon-widget-settings-config:before{content:"x"}.sui-2-1-3 .sui-icon-wordpress:before{content:"w"}.sui-2-1-3 .sui-icon-wpmudev-logo:before{content:"\2039"}.sui-2-1-3 .sui-icon-wpmudev-logo-2:before{content:"\203A"}.sui-2-1-3 .sui-icon-wrench-tool:before{content:"\2044"}.sui-2-1-3 .sui-icon-zip:before{content:"\3A9"}.sui-2-1-3 .sui-icon-zoom-in:before{content:"\2260"}.sui-2-1-3 .sui-icon-zoom-out:before{content:"\2013"}.sui-2-1-3 .sui-button,.sui-2-1-3 a.sui-button,.sui-2-1-3 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-3 .sui-button .sui-loading,.sui-2-1-3 a.sui-button .sui-loading,.sui-2-1-3 button.sui-button .sui-loading{display:none;position:absolute;top:50%;left:50%;margin:-8px}.sui-2-1-3 .sui-button .sui-loading-text,.sui-2-1-3 a.sui-button .sui-loading-text,.sui-2-1-3 button.sui-button .sui-loading-text{pointer-events:none}.sui-2-1-3 .sui-button i:before,.sui-2-1-3 a.sui-button i:before,.sui-2-1-3 button.sui-button i:before{-webkit-transition:all .3s ease;transition:all .3s ease;color:#fff}.sui-2-1-3 .sui-button:focus,.sui-2-1-3 .sui-button:hover,.sui-2-1-3 a.sui-button:focus,.sui-2-1-3 a.sui-button:hover,.sui-2-1-3 button.sui-button:focus,.sui-2-1-3 button.sui-button:hover{outline:none;background:#7b7b7b;border-color:#7b7b7b}.sui-2-1-3 .sui-button:active,.sui-2-1-3 .sui-button:focus,.sui-2-1-3 a.sui-button:active,.sui-2-1-3 a.sui-button:focus,.sui-2-1-3 button.sui-button:active,.sui-2-1-3 button.sui-button:focus{outline:none;-webkit-box-shadow:none;box-shadow:none;background:#7b7b7b;border-color:#7b7b7b}.sui-2-1-3 .sui-button.sui-button-blue,.sui-2-1-3 .sui-button.sui-button-primary,.sui-2-1-3 a.sui-button.sui-button-blue,.sui-2-1-3 a.sui-button.sui-button-primary,.sui-2-1-3 button.sui-button.sui-button-blue,.sui-2-1-3 button.sui-button.sui-button-primary{background:#17a8e3}.sui-2-1-3 .sui-button.sui-button-blue i:before,.sui-2-1-3 .sui-button.sui-button-primary i:before,.sui-2-1-3 a.sui-button.sui-button-blue i:before,.sui-2-1-3 a.sui-button.sui-button-primary i:before,.sui-2-1-3 button.sui-button.sui-button-blue i:before,.sui-2-1-3 button.sui-button.sui-button-primary i:before{color:#fff}.sui-2-1-3 .sui-button.sui-button-blue:focus,.sui-2-1-3 .sui-button.sui-button-blue:hover,.sui-2-1-3 .sui-button.sui-button-primary:focus,.sui-2-1-3 .sui-button.sui-button-primary:hover,.sui-2-1-3 a.sui-button.sui-button-blue:focus,.sui-2-1-3 a.sui-button.sui-button-blue:hover,.sui-2-1-3 a.sui-button.sui-button-primary:focus,.sui-2-1-3 a.sui-button.sui-button-primary:hover,.sui-2-1-3 button.sui-button.sui-button-blue:focus,.sui-2-1-3 button.sui-button.sui-button-blue:hover,.sui-2-1-3 button.sui-button.sui-button-primary:focus,.sui-2-1-3 button.sui-button.sui-button-primary:hover{background:#0a9bd6}.sui-2-1-3 .sui-button.sui-button-red,.sui-2-1-3 a.sui-button.sui-button-red,.sui-2-1-3 button.sui-button.sui-button-red{background:#cb4b57}.sui-2-1-3 .sui-button.sui-button-red i:before,.sui-2-1-3 a.sui-button.sui-button-red i:before,.sui-2-1-3 button.sui-button.sui-button-red i:before{color:#fff}.sui-2-1-3 .sui-button.sui-button-red:focus,.sui-2-1-3 .sui-button.sui-button-red:hover,.sui-2-1-3 a.sui-button.sui-button-red:focus,.sui-2-1-3 a.sui-button.sui-button-red:hover,.sui-2-1-3 button.sui-button.sui-button-red:focus,.sui-2-1-3 button.sui-button.sui-button-red:hover{opacity:1;background:#c40000}.sui-2-1-3 .sui-button.sui-button-green,.sui-2-1-3 a.sui-button.sui-button-green,.sui-2-1-3 button.sui-button.sui-button-green{background:#1abc9c}.sui-2-1-3 .sui-button.sui-button-green i:before,.sui-2-1-3 a.sui-button.sui-button-green i:before,.sui-2-1-3 button.sui-button.sui-button-green i:before{color:#fff}.sui-2-1-3 .sui-button.sui-button-green:focus,.sui-2-1-3 .sui-button.sui-button-green:hover,.sui-2-1-3 a.sui-button.sui-button-green:focus,.sui-2-1-3 a.sui-button.sui-button-green:hover,.sui-2-1-3 button.sui-button.sui-button-green:focus,.sui-2-1-3 button.sui-button.sui-button-green:hover{opacity:1;background:#148f77}.sui-2-1-3 .sui-button.sui-button-upsell,.sui-2-1-3 a.sui-button.sui-button-upsell,.sui-2-1-3 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-3 .sui-button.sui-button-upsell:focus,.sui-2-1-3 .sui-button.sui-button-upsell:hover,.sui-2-1-3 a.sui-button.sui-button-upsell:focus,.sui-2-1-3 a.sui-button.sui-button-upsell:hover,.sui-2-1-3 button.sui-button.sui-button-upsell:focus,.sui-2-1-3 button.sui-button.sui-button-upsell:hover{opacity:1;border-color:#148f77;background:#148f77;color:#fff}.sui-2-1-3 .sui-button.sui-button-ghost,.sui-2-1-3 a.sui-button.sui-button-ghost,.sui-2-1-3 button.sui-button.sui-button-ghost{padding:5px 16px 7px;border:2px solid #ddd;background:transparent;color:#888}.sui-2-1-3 .sui-button.sui-button-ghost i:before,.sui-2-1-3 a.sui-button.sui-button-ghost i:before,.sui-2-1-3 button.sui-button.sui-button-ghost i:before{color:#888}.sui-2-1-3 .sui-button.sui-button-ghost:focus,.sui-2-1-3 .sui-button.sui-button-ghost:hover,.sui-2-1-3 a.sui-button.sui-button-ghost:focus,.sui-2-1-3 a.sui-button.sui-button-ghost:hover,.sui-2-1-3 button.sui-button.sui-button-ghost:focus,.sui-2-1-3 button.sui-button.sui-button-ghost:hover{border-color:#888;background:#888;color:#fff}.sui-2-1-3 .sui-button.sui-button-ghost:focus i:before,.sui-2-1-3 .sui-button.sui-button-ghost:hover i:before,.sui-2-1-3 a.sui-button.sui-button-ghost:focus i:before,.sui-2-1-3 a.sui-button.sui-button-ghost:hover i:before,.sui-2-1-3 button.sui-button.sui-button-ghost:focus i:before,.sui-2-1-3 button.sui-button.sui-button-ghost:hover i:before{color:#fff}.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-blue,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-blue,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-blue{border-color:#17a8e3;color:#17a8e3}.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-blue i:before,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-blue i:before,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-blue i:before{color:#17a8e3}.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-blue:focus,.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-blue:hover,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-blue:focus,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-blue:hover,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-blue:focus,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-blue:hover{border-color:#17a8e3;background:#17a8e3;color:#fff}.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-red,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-red,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-red{border-color:#c40000;color:#c40000}.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-red i:before,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-red i:before,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-red i:before{color:red}.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-red:focus,.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-red:hover,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-red:focus,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-red:hover,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-red:focus,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-red:hover{opacity:1;border-color:#c40000;background:#c40000;color:#fff}.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-green,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-green,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-green{border-color:#1abc9c;color:#1abc9c}.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-green i:before,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-green i:before,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-green i:before{color:#1abc9c}.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-green:focus,.sui-2-1-3 .sui-button.sui-button-ghost.sui-button-green:hover,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-green:focus,.sui-2-1-3 a.sui-button.sui-button-ghost.sui-button-green:hover,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-green:focus,.sui-2-1-3 button.sui-button.sui-button-ghost.sui-button-green:hover{opacity:1;border-color:#148f77;background:#148f77;color:#fff}.sui-2-1-3 .sui-button.sui-button-lg,.sui-2-1-3 a.sui-button.sui-button-lg,.sui-2-1-3 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-3 .sui-button.sui-button-lg.sui-button-ghost,.sui-2-1-3 a.sui-button.sui-button-lg.sui-button-ghost,.sui-2-1-3 button.sui-button.sui-button-lg.sui-button-ghost{padding:9px 20px}.sui-2-1-3 .sui-button.sui-button-onload,.sui-2-1-3 a.sui-button.sui-button-onload,.sui-2-1-3 button.sui-button.sui-button-onload{pointer-events:none}.sui-2-1-3 .sui-button.sui-button-onload .sui-loading,.sui-2-1-3 a.sui-button.sui-button-onload .sui-loading,.sui-2-1-3 button.sui-button.sui-button-onload .sui-loading{display:block}.sui-2-1-3 .sui-button.sui-button-onload,.sui-2-1-3 .sui-button.sui-button-onload.sui-button-blue,.sui-2-1-3 .sui-button.sui-button-onload.sui-button-green,.sui-2-1-3 .sui-button.sui-button-onload.sui-button-red,.sui-2-1-3 a.sui-button.sui-button-onload,.sui-2-1-3 a.sui-button.sui-button-onload.sui-button-blue,.sui-2-1-3 a.sui-button.sui-button-onload.sui-button-green,.sui-2-1-3 a.sui-button.sui-button-onload.sui-button-red,.sui-2-1-3 button.sui-button.sui-button-onload,.sui-2-1-3 button.sui-button.sui-button-onload.sui-button-blue,.sui-2-1-3 button.sui-button.sui-button-onload.sui-button-green,.sui-2-1-3 button.sui-button.sui-button-onload.sui-button-red{background:#e6e6e6}.sui-2-1-3 .sui-button.sui-button-onload.sui-button-blue .sui-loading-text,.sui-2-1-3 .sui-button.sui-button-onload.sui-button-green .sui-loading-text,.sui-2-1-3 .sui-button.sui-button-onload.sui-button-red .sui-loading-text,.sui-2-1-3 .sui-button.sui-button-onload .sui-loading-text,.sui-2-1-3 a.sui-button.sui-button-onload.sui-button-blue .sui-loading-text,.sui-2-1-3 a.sui-button.sui-button-onload.sui-button-green .sui-loading-text,.sui-2-1-3 a.sui-button.sui-button-onload.sui-button-red .sui-loading-text,.sui-2-1-3 a.sui-button.sui-button-onload .sui-loading-text,.sui-2-1-3 button.sui-button.sui-button-onload.sui-button-blue .sui-loading-text,.sui-2-1-3 button.sui-button.sui-button-onload.sui-button-green .sui-loading-text,.sui-2-1-3 button.sui-button.sui-button-onload.sui-button-red .sui-loading-text,.sui-2-1-3 button.sui-button.sui-button-onload .sui-loading-text{color:#e6e6e6}.sui-2-1-3 .sui-button.sui-button-onload.sui-button-ghost,.sui-2-1-3 a.sui-button.sui-button-onload.sui-button-ghost,.sui-2-1-3 button.sui-button.sui-button-onload.sui-button-ghost{border-color:#e6e6e6;background:transparent}.sui-2-1-3 .sui-button.sui-button-onload.sui-button-ghost .sui-loading-text,.sui-2-1-3 a.sui-button.sui-button-onload.sui-button-ghost .sui-loading-text,.sui-2-1-3 button.sui-button.sui-button-onload.sui-button-ghost .sui-loading-text{color:transparent}.sui-2-1-3 .sui-button.disabled,.sui-2-1-3 .sui-button:disabled,.sui-2-1-3 .sui-button[disabled],.sui-2-1-3 a.sui-button.disabled,.sui-2-1-3 a.sui-button:disabled,.sui-2-1-3 a.sui-button[disabled],.sui-2-1-3 button.sui-button.disabled,.sui-2-1-3 button.sui-button:disabled,.sui-2-1-3 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-3 .sui-button.disabled:focus,.sui-2-1-3 .sui-button.disabled:hover,.sui-2-1-3 .sui-button:disabled:focus,.sui-2-1-3 .sui-button:disabled:hover,.sui-2-1-3 .sui-button[disabled]:focus,.sui-2-1-3 .sui-button[disabled]:hover,.sui-2-1-3 a.sui-button.disabled:focus,.sui-2-1-3 a.sui-button.disabled:hover,.sui-2-1-3 a.sui-button:disabled:focus,.sui-2-1-3 a.sui-button:disabled:hover,.sui-2-1-3 a.sui-button[disabled]:focus,.sui-2-1-3 a.sui-button[disabled]:hover,.sui-2-1-3 button.sui-button.disabled:focus,.sui-2-1-3 button.sui-button.disabled:hover,.sui-2-1-3 button.sui-button:disabled:focus,.sui-2-1-3 button.sui-button:disabled:hover,.sui-2-1-3 button.sui-button[disabled]:focus,.sui-2-1-3 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-3 .sui-button:last-child,.sui-2-1-3 a.sui-button:last-child,.sui-2-1-3 button.sui-button:last-child{margin:0}.sui-2-1-3 .sui-button.sui-button-icon,.sui-2-1-3 a.sui-button.sui-button-icon,.sui-2-1-3 button.sui-button.sui-button-icon{min-width:0}.sui-2-1-3 .sui-toggle{position:relative;display:inline-block;width:34px;height:16px;margin-right:10px}.sui-2-1-3 .sui-toggle.sui-toggle-label{top:3px}.sui-2-1-3 .sui-toggle-label{vertical-align:text-bottom;line-height:22px;margin-left:10px}.sui-2-1-3 .sui-toggle input[type=checkbox][disabled]+.sui-toggle-slider{opacity:.5;cursor:not-allowed}.sui-2-1-3 .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-3 .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-3 input[type=checkbox]:checked+.sui-toggle-slider:before{background-color:#17a8e3;-webkit-transform:translateX(18px);transform:translateX(18px)}.sui-2-1-3 .sui-wrap *,.sui-2-1-3 .sui-wrap :after,.sui-2-1-3 .sui-wrap :before{-webkit-box-sizing:border-box;box-sizing:border-box}.sui-2-1-3 .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-3 .sui-box{margin-bottom:20px}}.sui-2-1-3 .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-3 .sui-box-header{padding:15px 20px}}.sui-2-1-3 .sui-box-header>h3>i{line-height:30px}.sui-2-1-3 .sui-box-body{padding:30px}@media (max-width:782px){.sui-2-1-3 .sui-box-body{padding:20px}}.sui-2-1-3 .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-3 .sui-box-body .sui-box-settings-row{display:block;margin-top:20px;padding-bottom:20px}}.sui-2-1-3 .sui-box-body .sui-box-settings-row:first-of-type{margin-top:0}.sui-2-1-3 .sui-box-body .sui-box-settings-row:last-of-type{padding-bottom:0;border:0}.sui-2-1-3 .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-3 .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-3 .sui-box-body .sui-box-settings-row .sui-box-settings-col-1:first-child{padding-top:0}}.sui-2-1-3 .sui-box-body .sui-box-settings-row .sui-box-settings-col-2{display:table-cell}@media (max-width:782px){.sui-2-1-3 .sui-box-body .sui-box-settings-row .sui-box-settings-col-2{display:block;padding-top:20px}}.sui-2-1-3 .sui-box-body .sui-box-settings-row .sui-box-settings-col-2 .sui-settings-label{color:#666}.sui-2-1-3 .sui-box-body .sui-box-settings-row .sui-form-field:last-of-type{margin-bottom:0}.sui-2-1-3 .sui-box-body .sui-box-settings-row .sui-settings-label{display:block;font-weight:500;line-height:22px;color:#333}.sui-2-1-3 .sui-box-body .sui-box-settings-row .sui-description{line-height:22px}.sui-2-1-3 .sui-box-body .sui-box-settings-row.sui-disabled{background-color:hsla(0,0%,95%,.5);opacity:.5;pointer-events:none}.sui-2-1-3 .sui-box-body.sui-upsell-items{padding:0}.sui-2-1-3 .sui-box-body.sui-upsell-items .sui-box-settings-row{border-bottom:none;margin-top:0}.sui-2-1-3 .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-3 .sui-box-body.sui-upsell-items .sui-box-settings-row:first-of-type{margin-top:0}.sui-2-1-3 .sui-box-body.sui-upsell-items .sui-box-settings-row:first-of-type:before{display:none}.sui-2-1-3 .sui-box-body.sui-upsell-items .sui-box-settings-row:last-of-type{padding-bottom:30px}.sui-2-1-3 .sui-box-body.sui-upsell-items .sui-box-settings-row:last-of-type:before{display:none}.sui-2-1-3 .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-3 .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-3 .sui-box-body.sui-upsell-items .sui-box-settings-row:first-of-type{padding-top:20px}}.sui-2-1-3 .sui-box-body .sui-upsell-row{position:relative}.sui-2-1-3 .sui-box-body .sui-upsell-row .sui-upsell-image{position:absolute;bottom:0;width:100px}@media (max-width:782px){.sui-2-1-3 .sui-box-body .sui-upsell-row .sui-upsell-image{display:none}}.sui-2-1-3 .sui-box-body .sui-upsell-row .sui-upsell-notice{padding-left:130px}@media (max-width:782px){.sui-2-1-3 .sui-box-body .sui-upsell-row .sui-upsell-notice{padding-left:0}}.sui-2-1-3 .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-3 .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-3 .sui-box-body .sui-upsell-row .sui-upsell-notice p:after{display:none}}.sui-2-1-3 .sui-box-body .sui-upsell-row .sui-upsell-notice p a{color:#333;text-decoration:underline;font-weight:500}.sui-2-1-3 .sui-box-body .sui-settings-box{padding:30px;border:1px solid #e6e6e6;border-radius:5px}@media (max-width:782px){.sui-2-1-3 .sui-box-body .sui-settings-box{padding:20px}}.sui-2-1-3 .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-3 .sui-box-footer.sui-pull-up{margin-top:-15px}@media (max-width:782px){.sui-2-1-3 .sui-box-footer{padding:20px}}.sui-2-1-3 .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-3 .sui-box-title *{vertical-align:middle}.sui-2-1-3 .sui-box-title i{margin-right:10px;display:block;float:left}.sui-2-1-3 .sui-box-title i:before{color:inherit;font-size:20px;vertical-align:text-bottom}.sui-2-1-3 h3.sui-box-title{text-transform:none}.sui-2-1-3 .sui-with-bottom-border{padding-bottom:30px;border-bottom:1px solid #e6e6e6;margin-bottom:30px}@media (max-width:782px){.sui-2-1-3 .sui-with-bottom-border{margin-bottom:20px;padding-bottom:20px}}.sui-2-1-3 .sui-border-frame{border:1px solid #e6e6e6;border-radius:5px;margin:10px 0 0;padding:30px}@media (max-width:782px){.sui-2-1-3 .sui-border-frame{padding:20px}}.sui-2-1-3 .sui-col,.sui-2-1-3 [class*=sui-col-]{min-height:1px;padding-left:15px;padding-right:15px;position:relative}@media (max-width:782px){.sui-2-1-3 .sui-col,.sui-2-1-3 [class*=sui-col-]{padding-left:10px;padding-right:10px}}.sui-2-1-3 .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-3 .sui-row{margin-left:-10px;margin-right:-10px}}.sui-2-1-3 .sui-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.sui-2-1-3 .sui-col{-webkit-box-flex:1;-ms-flex:1;flex:1}.sui-2-1-3 [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-3 .sui-col-xs-12{width:100%;max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.sui-2-1-3 .sui-col-xs-offset-12{margin-left:100%}.sui-2-1-3 .sui-col-xs-11{width:91.66667%;max-width:91.66667%;-ms-flex-preferred-size:91.66667%;flex-basis:91.66667%}.sui-2-1-3 .sui-col-xs-offset-11{margin-left:91.66667%}.sui-2-1-3 .sui-col-xs-10{width:83.33333%;max-width:83.33333%;-ms-flex-preferred-size:83.33333%;flex-basis:83.33333%}.sui-2-1-3 .sui-col-xs-offset-10{margin-left:83.33333%}.sui-2-1-3 .sui-col-xs-9{width:75%;max-width:75%;-ms-flex-preferred-size:75%;flex-basis:75%}.sui-2-1-3 .sui-col-xs-offset-9{margin-left:75%}.sui-2-1-3 .sui-col-xs-8{width:66.66667%;max-width:66.66667%;-ms-flex-preferred-size:66.66667%;flex-basis:66.66667%}.sui-2-1-3 .sui-col-xs-offset-8{margin-left:66.66667%}.sui-2-1-3 .sui-col-xs-7{width:58.33333%;max-width:58.33333%;-ms-flex-preferred-size:58.33333%;flex-basis:58.33333%}.sui-2-1-3 .sui-col-xs-offset-7{margin-left:58.33333%}.sui-2-1-3 .sui-col-xs-6{width:50%;max-width:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.sui-2-1-3 .sui-col-xs-offset-6{margin-left:50%}.sui-2-1-3 .sui-col-xs-5{width:41.66667%;max-width:41.66667%;-ms-flex-preferred-size:41.66667%;flex-basis:41.66667%}.sui-2-1-3 .sui-col-xs-offset-5{margin-left:41.66667%}.sui-2-1-3 .sui-col-xs-4{width:33.33333%;max-width:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.sui-2-1-3 .sui-col-xs-offset-4{margin-left:33.33333%}.sui-2-1-3 .sui-col-xs-3{width:25%;max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.sui-2-1-3 .sui-col-xs-offset-3{margin-left:25%}.sui-2-1-3 .sui-col-xs-2{width:16.66667%;max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%}.sui-2-1-3 .sui-col-xs-offset-2{margin-left:16.66667%}.sui-2-1-3 .sui-col-xs-1{width:8.33333%;max-width:8.33333%;-ms-flex-preferred-size:8.33333%;flex-basis:8.33333%}.sui-2-1-3 .sui-col-xs-offset-1{margin-left:8.33333%}@media (min-width:0px){.sui-2-1-3 .sui-col-xs-12{width:100%;max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.sui-2-1-3 .sui-col-xs-offset-12{margin-left:100%}.sui-2-1-3 .sui-col-xs-11{width:91.66667%;max-width:91.66667%;-ms-flex-preferred-size:91.66667%;flex-basis:91.66667%}.sui-2-1-3 .sui-col-xs-offset-11{margin-left:91.66667%}.sui-2-1-3 .sui-col-xs-10{width:83.33333%;max-width:83.33333%;-ms-flex-preferred-size:83.33333%;flex-basis:83.33333%}.sui-2-1-3 .sui-col-xs-offset-10{margin-left:83.33333%}.sui-2-1-3 .sui-col-xs-9{width:75%;max-width:75%;-ms-flex-preferred-size:75%;flex-basis:75%}.sui-2-1-3 .sui-col-xs-offset-9{margin-left:75%}.sui-2-1-3 .sui-col-xs-8{width:66.66667%;max-width:66.66667%;-ms-flex-preferred-size:66.66667%;flex-basis:66.66667%}.sui-2-1-3 .sui-col-xs-offset-8{margin-left:66.66667%}.sui-2-1-3 .sui-col-xs-7{width:58.33333%;max-width:58.33333%;-ms-flex-preferred-size:58.33333%;flex-basis:58.33333%}.sui-2-1-3 .sui-col-xs-offset-7{margin-left:58.33333%}.sui-2-1-3 .sui-col-xs-6{width:50%;max-width:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.sui-2-1-3 .sui-col-xs-offset-6{margin-left:50%}.sui-2-1-3 .sui-col-xs-5{width:41.66667%;max-width:41.66667%;-ms-flex-preferred-size:41.66667%;flex-basis:41.66667%}.sui-2-1-3 .sui-col-xs-offset-5{margin-left:41.66667%}.sui-2-1-3 .sui-col-xs-4{width:33.33333%;max-width:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.sui-2-1-3 .sui-col-xs-offset-4{margin-left:33.33333%}.sui-2-1-3 .sui-col-xs-3{width:25%;max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.sui-2-1-3 .sui-col-xs-offset-3{margin-left:25%}.sui-2-1-3 .sui-col-xs-2{width:16.66667%;max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%}.sui-2-1-3 .sui-col-xs-offset-2{margin-left:16.66667%}.sui-2-1-3 .sui-col-xs-1{width:8.33333%;max-width:8.33333%;-ms-flex-preferred-size:8.33333%;flex-basis:8.33333%}.sui-2-1-3 .sui-col-xs-offset-1{margin-left:8.33333%}}@media (min-width:480px){.sui-2-1-3 .sui-col-sm-12{width:100%;max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.sui-2-1-3 .sui-col-sm-offset-12{margin-left:100%}.sui-2-1-3 .sui-col-sm-11{width:91.66667%;max-width:91.66667%;-ms-flex-preferred-size:91.66667%;flex-basis:91.66667%}.sui-2-1-3 .sui-col-sm-offset-11{margin-left:91.66667%}.sui-2-1-3 .sui-col-sm-10{width:83.33333%;max-width:83.33333%;-ms-flex-preferred-size:83.33333%;flex-basis:83.33333%}.sui-2-1-3 .sui-col-sm-offset-10{margin-left:83.33333%}.sui-2-1-3 .sui-col-sm-9{width:75%;max-width:75%;-ms-flex-preferred-size:75%;flex-basis:75%}.sui-2-1-3 .sui-col-sm-offset-9{margin-left:75%}.sui-2-1-3 .sui-col-sm-8{width:66.66667%;max-width:66.66667%;-ms-flex-preferred-size:66.66667%;flex-basis:66.66667%}.sui-2-1-3 .sui-col-sm-offset-8{margin-left:66.66667%}.sui-2-1-3 .sui-col-sm-7{width:58.33333%;max-width:58.33333%;-ms-flex-preferred-size:58.33333%;flex-basis:58.33333%}.sui-2-1-3 .sui-col-sm-offset-7{margin-left:58.33333%}.sui-2-1-3 .sui-col-sm-6{width:50%;max-width:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.sui-2-1-3 .sui-col-sm-offset-6{margin-left:50%}.sui-2-1-3 .sui-col-sm-5{width:41.66667%;max-width:41.66667%;-ms-flex-preferred-size:41.66667%;flex-basis:41.66667%}.sui-2-1-3 .sui-col-sm-offset-5{margin-left:41.66667%}.sui-2-1-3 .sui-col-sm-4{width:33.33333%;max-width:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.sui-2-1-3 .sui-col-sm-offset-4{margin-left:33.33333%}.sui-2-1-3 .sui-col-sm-3{width:25%;max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.sui-2-1-3 .sui-col-sm-offset-3{margin-left:25%}.sui-2-1-3 .sui-col-sm-2{width:16.66667%;max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%}.sui-2-1-3 .sui-col-sm-offset-2{margin-left:16.66667%}.sui-2-1-3 .sui-col-sm-1{width:8.33333%;max-width:8.33333%;-ms-flex-preferred-size:8.33333%;flex-basis:8.33333%}.sui-2-1-3 .sui-col-sm-offset-1{margin-left:8.33333%}}@media (min-width:783px){.sui-2-1-3 .sui-col-md-12{width:100%;max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.sui-2-1-3 .sui-col-md-offset-12{margin-left:100%}.sui-2-1-3 .sui-col-md-11{width:91.66667%;max-width:91.66667%;-ms-flex-preferred-size:91.66667%;flex-basis:91.66667%}.sui-2-1-3 .sui-col-md-offset-11{margin-left:91.66667%}.sui-2-1-3 .sui-col-md-10{width:83.33333%;max-width:83.33333%;-ms-flex-preferred-size:83.33333%;flex-basis:83.33333%}.sui-2-1-3 .sui-col-md-offset-10{margin-left:83.33333%}.sui-2-1-3 .sui-col-md-9{width:75%;max-width:75%;-ms-flex-preferred-size:75%;flex-basis:75%}.sui-2-1-3 .sui-col-md-offset-9{margin-left:75%}.sui-2-1-3 .sui-col-md-8{width:66.66667%;max-width:66.66667%;-ms-flex-preferred-size:66.66667%;flex-basis:66.66667%}.sui-2-1-3 .sui-col-md-offset-8{margin-left:66.66667%}.sui-2-1-3 .sui-col-md-7{width:58.33333%;max-width:58.33333%;-ms-flex-preferred-size:58.33333%;flex-basis:58.33333%}.sui-2-1-3 .sui-col-md-offset-7{margin-left:58.33333%}.sui-2-1-3 .sui-col-md-6{width:50%;max-width:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.sui-2-1-3 .sui-col-md-offset-6{margin-left:50%}.sui-2-1-3 .sui-col-md-5{width:41.66667%;max-width:41.66667%;-ms-flex-preferred-size:41.66667%;flex-basis:41.66667%}.sui-2-1-3 .sui-col-md-offset-5{margin-left:41.66667%}.sui-2-1-3 .sui-col-md-4{width:33.33333%;max-width:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.sui-2-1-3 .sui-col-md-offset-4{margin-left:33.33333%}.sui-2-1-3 .sui-col-md-3{width:25%;max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.sui-2-1-3 .sui-col-md-offset-3{margin-left:25%}.sui-2-1-3 .sui-col-md-2{width:16.66667%;max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%}.sui-2-1-3 .sui-col-md-offset-2{margin-left:16.66667%}.sui-2-1-3 .sui-col-md-1{width:8.33333%;max-width:8.33333%;-ms-flex-preferred-size:8.33333%;flex-basis:8.33333%}.sui-2-1-3 .sui-col-md-offset-1{margin-left:8.33333%}}@media (min-width:1200px){.sui-2-1-3 .sui-col-lg-12{width:100%;max-width:100%;-ms-flex-preferred-size:100%;flex-basis:100%}.sui-2-1-3 .sui-col-lg-offset-12{margin-left:100%}.sui-2-1-3 .sui-col-lg-11{width:91.66667%;max-width:91.66667%;-ms-flex-preferred-size:91.66667%;flex-basis:91.66667%}.sui-2-1-3 .sui-col-lg-offset-11{margin-left:91.66667%}.sui-2-1-3 .sui-col-lg-10{width:83.33333%;max-width:83.33333%;-ms-flex-preferred-size:83.33333%;flex-basis:83.33333%}.sui-2-1-3 .sui-col-lg-offset-10{margin-left:83.33333%}.sui-2-1-3 .sui-col-lg-9{width:75%;max-width:75%;-ms-flex-preferred-size:75%;flex-basis:75%}.sui-2-1-3 .sui-col-lg-offset-9{margin-left:75%}.sui-2-1-3 .sui-col-lg-8{width:66.66667%;max-width:66.66667%;-ms-flex-preferred-size:66.66667%;flex-basis:66.66667%}.sui-2-1-3 .sui-col-lg-offset-8{margin-left:66.66667%}.sui-2-1-3 .sui-col-lg-7{width:58.33333%;max-width:58.33333%;-ms-flex-preferred-size:58.33333%;flex-basis:58.33333%}.sui-2-1-3 .sui-col-lg-offset-7{margin-left:58.33333%}.sui-2-1-3 .sui-col-lg-6{width:50%;max-width:50%;-ms-flex-preferred-size:50%;flex-basis:50%}.sui-2-1-3 .sui-col-lg-offset-6{margin-left:50%}.sui-2-1-3 .sui-col-lg-5{width:41.66667%;max-width:41.66667%;-ms-flex-preferred-size:41.66667%;flex-basis:41.66667%}.sui-2-1-3 .sui-col-lg-offset-5{margin-left:41.66667%}.sui-2-1-3 .sui-col-lg-4{width:33.33333%;max-width:33.33333%;-ms-flex-preferred-size:33.33333%;flex-basis:33.33333%}.sui-2-1-3 .sui-col-lg-offset-4{margin-left:33.33333%}.sui-2-1-3 .sui-col-lg-3{width:25%;max-width:25%;-ms-flex-preferred-size:25%;flex-basis:25%}.sui-2-1-3 .sui-col-lg-offset-3{margin-left:25%}.sui-2-1-3 .sui-col-lg-2{width:16.66667%;max-width:16.66667%;-ms-flex-preferred-size:16.66667%;flex-basis:16.66667%}.sui-2-1-3 .sui-col-lg-offset-2{margin-left:16.66667%}.sui-2-1-3 .sui-col-lg-1{width:8.33333%;max-width:8.33333%;-ms-flex-preferred-size:8.33333%;flex-basis:8.33333%}.sui-2-1-3 .sui-col-lg-offset-1{margin-left:8.33333%}}.sui-2-1-3 .sui-notice,.sui-2-1-3 .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-3 .sui-notice,.sui-2-1-3 .sui-notice-top{margin-bottom:20px;padding:15px}}.sui-2-1-3 .sui-notice-top:last-child,.sui-2-1-3 .sui-notice:last-child{margin-bottom:0}.sui-2-1-3 .sui-notice-top p,.sui-2-1-3 .sui-notice p{padding:0 0 0 30px;color:#333}.sui-2-1-3 .sui-notice-top p:before,.sui-2-1-3 .sui-notice p:before{content:"I"}.sui-2-1-3 .sui-notice-top p a,.sui-2-1-3 .sui-notice-top p a:focus,.sui-2-1-3 .sui-notice-top p a:hover,.sui-2-1-3 .sui-notice p a,.sui-2-1-3 .sui-notice p a:focus,.sui-2-1-3 .sui-notice p a:hover{color:#333}.sui-2-1-3 .sui-notice-top p:before,.sui-2-1-3 .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-3 .sui-notice-top p:last-of-type,.sui-2-1-3 .sui-notice p:last-of-type{margin:0}.sui-2-1-3 .sui-notice-top.sui-notice-success,.sui-2-1-3 .sui-notice.sui-notice-success{background-color:#d1f1ea}.sui-2-1-3 .sui-notice-top.sui-notice-success p:before,.sui-2-1-3 .sui-notice.sui-notice-success p:before{content:"_";color:#1abc9c}.sui-2-1-3 .sui-notice-top.sui-notice-warning,.sui-2-1-3 .sui-notice.sui-notice-warning{background-color:#fff5d5}.sui-2-1-3 .sui-notice-top.sui-notice-warning p:before,.sui-2-1-3 .sui-notice.sui-notice-warning p:before{content:"!";color:#fecf2f}.sui-2-1-3 .sui-notice-top.sui-notice-error,.sui-2-1-3 .sui-notice.sui-notice-error{background-color:#ffe5e9}.sui-2-1-3 .sui-notice-top.sui-notice-error p:before,.sui-2-1-3 .sui-notice.sui-notice-error p:before{content:"!";color:#ff7f83}.sui-2-1-3 .sui-notice-top.sui-notice-info,.sui-2-1-3 .sui-notice.sui-notice-info{background-color:#e1f6ff}.sui-2-1-3 .sui-notice-top.sui-notice-info p:before,.sui-2-1-3 .sui-notice.sui-notice-info p:before{color:#17a8e3}.sui-2-1-3 .sui-notice-top.sui-notice-sm p,.sui-2-1-3 .sui-notice.sui-notice-sm p{font-size:13px;line-height:22px}.sui-2-1-3 .sui-notice-top.sui-notice-sm p:before,.sui-2-1-3 .sui-notice.sui-notice-sm p:before{font-size:16px}.sui-2-1-3 .sui-notice-top.sui-notice-sm a,.sui-2-1-3 .sui-notice.sui-notice-sm a{font-size:13px}.sui-2-1-3 .sui-notice-top.sui-notice-sm .sui-notice-dismiss a,.sui-2-1-3 .sui-notice.sui-notice-sm .sui-notice-dismiss a{margin-left:-14px}.sui-2-1-3 .sui-notice-top .sui-notice-dismiss,.sui-2-1-3 .sui-notice .sui-notice-dismiss{padding:0 0 0 30px;display:block;margin-top:6px;margin-bottom:-5px}.sui-2-1-3 .sui-notice-top .sui-notice-dismiss a,.sui-2-1-3 .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-3 .sui-notice-top.sui-notice-icon-tick p:before,.sui-2-1-3 .sui-notice.sui-notice-icon-tick p:before{content:"_"}.sui-2-1-3 .sui-notice-top.sui-no-notice-icon p,.sui-2-1-3 .sui-notice.sui-no-notice-icon p{padding:0}.sui-2-1-3 .sui-notice-top.sui-no-notice-icon p:before,.sui-2-1-3 .sui-notice.sui-no-notice-icon p:before{content:"";margin:0;padding:0}.sui-2-1-3 .sui-notice-top.sui-notice-top,.sui-2-1-3 .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-3 .sui-notice-top.sui-notice-top:last-of-type,.sui-2-1-3 .sui-notice.sui-notice-top:last-of-type{margin:0}@media (max-width:782px){.sui-2-1-3 .sui-notice-top.sui-notice-top,.sui-2-1-3 .sui-notice.sui-notice-top{width:90%}}@media (max-width:600px){.sui-2-1-3 .sui-notice-top.sui-notice-top,.sui-2-1-3 .sui-notice.sui-notice-top{top:46px}}.sui-2-1-3 .sui-notice-top .sui-notice-buttons,.sui-2-1-3 .sui-notice .sui-notice-buttons{margin:10px 30px 0}.sui-2-1-3 p+.sui-notice{margin-top:30px}@media (max-width:782px){.sui-2-1-3 p+.sui-notice{margin-top:20px}}.sui-2-1-3 .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-3 .sui-header h1{text-transform:uppercase}@media (max-width:782px){.sui-2-1-3 .sui-header h1{width:100%}}@media (max-width:782px){.sui-2-1-3 .sui-header{margin-bottom:20px}}@media (max-width:782px){.sui-2-1-3 .sui-header .sui-actions-right{margin-left:0;margin-right:auto;margin-top:10px}}@media (max-width:782px){.sui-2-1-3 .sui-header .sui-actions-left{margin-left:0;margin-right:0;margin-top:10px}}.sui-2-1-3 .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-3 .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-3 .sui-summary{padding:20px 20px 10px}}@media (max-width:1100px){.sui-2-1-3 .sui-summary{background-image:none!important}}.sui-2-1-3 .sui-summary .sui-summary-image-space{width:100%;min-height:172px;float:left;max-width:192px}@media (max-width:1100px){.sui-2-1-3 .sui-summary .sui-summary-image-space{display:none!important}}.sui-2-1-3 .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-3 .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-3 .sui-summary .sui-summary-segment .sui-summary-details{position:inherit;top:0;-webkit-transform:translateY(0);transform:translateY(0)}}.sui-2-1-3 .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-3 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-sub:last-of-type{margin-bottom:0}@media (max-width:960px){.sui-2-1-3 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-sub{margin-bottom:5px}}.sui-2-1-3 .sui-summary .sui-summary-segment .sui-summary-details .sui-summary-percent{font-size:13px;line-height:22px;margin-left:-5px}.sui-2-1-3 .sui-summary .sui-summary-segment .sui-summary-details i{position:relative;top:-22px;left:5px;font-size:16px}.sui-2-1-3 .sui-summary .sui-summary-segment .sui-summary-details i+.sui-summary-percent{margin-left:-20px}.sui-2-1-3 .sui-summary .sui-summary-segment .sui-summary-details i.sui-error:before,.sui-2-1-3 .sui-summary .sui-summary-segment .sui-summary-details i.sui-info:before,.sui-2-1-3 .sui-summary .sui-summary-segment .sui-summary-details i.sui-success:before,.sui-2-1-3 .sui-summary .sui-summary-segment .sui-summary-details i.sui-warning:before{color:inherit}.sui-2-1-3 .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-3 .sui-summary .sui-summary-segment{text-align:left;padding-left:0;width:49%}}@media (max-width:600px){.sui-2-1-3 .sui-summary .sui-summary-segment{display:block;text-align:center;width:100%}}.sui-2-1-3 .sui-summary .sui-summary-segment .sui-list{margin:0 0 15px}@media (max-width:783px){.sui-2-1-3 .sui-summary .sui-summary-segment .sui-list{margin:0 0 10px}}@media (max-width:600px){.sui-2-1-3 .sui-summary .sui-summary-segment .sui-list{text-align:left}}.sui-2-1-3 .sui-summary .sui-summary-segment .sui-list .sui-list-detail{font-size:13px;font-weight:500;line-height:22px;color:#888}.sui-2-1-3 .sui-summary .sui-summary-segment .sui-list .sui-list-detail i{line-height:0;vertical-align:middle}.sui-2-1-3 .sui-list{list-style:none;margin:0 0 20px;padding:0}.sui-2-1-3 .sui-list.sui-list-inline{margin-top:20px;margin-bottom:0}.sui-2-1-3 .sui-list.sui-list-standalone{margin-bottom:20px}.sui-2-1-3 .sui-list>li{position:relative;display:table;width:100%;padding:6px 0;margin:0;border-collapse:collapse;border-spacing:0}.sui-2-1-3 .sui-list>li>div{display:table-row}.sui-2-1-3 .sui-list>li.sui-list-header{color:#333;font-size:13px;font-weight:700;line-height:30px;padding-bottom:0}.sui-2-1-3 .sui-list>li.sui-list-header span{display:table-cell;border-bottom:1px solid #eee}.sui-2-1-3 .sui-list>li.sui-list-header span:nth-child(2){text-align:right}.sui-2-1-3 .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-3 .sui-list>li .sui-list-detail .sui-tag{font-family:Roboto,Arial,sans-serif}.sui-2-1-3 .sui-list>li .sui-list-detail,.sui-2-1-3 .sui-list>li .sui-list-label{display:table-cell;vertical-align:middle;cursor:default;border-bottom:1px solid #eee}.sui-2-1-3 .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-3 .sui-list>li .sui-list-label.sui-list-header{font-family:Roboto Condensed,Roboto,Arial,sans-serif;width:200px;color:#777771}.sui-2-1-3 .sui-list>li:last-of-type .sui-list-detail,.sui-2-1-3 .sui-list>li:last-of-type .sui-list-label{border-bottom:none}.sui-2-1-3 .sui-list.sui-list-top-border{border-top:1px solid #eee}.sui-2-1-3 .sui-list.sui-list-bottom-border{border-bottom:1px solid #eee}.sui-2-1-3 .sui-tooltip{position:relative}.sui-2-1-3 .sui-tooltip:after,.sui-2-1-3 .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-3 .sui-tooltip:before{border:5px solid transparent}.sui-2-1-3 .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-3 .sui-tooltip:hover:after,.sui-2-1-3 .sui-tooltip:hover:before{opacity:1}.sui-2-1-3 .sui-tooltip.sui-tooltip-constrained:after{min-width:240px;white-space:normal}.sui-2-1-3 .sui-tooltip.sui-tooltip-top:before,.sui-2-1-3 .sui-tooltip:before{bottom:100%;left:50%;border-top-color:#000;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.sui-2-1-3 .sui-tooltip.sui-tooltip-top:after,.sui-2-1-3 .sui-tooltip:after{bottom:100%;left:50%;margin:0 0 10px;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.sui-2-1-3 .sui-tooltip.sui-tooltip-top-right:after{left:0;-webkit-transform:translateX(0);transform:translateX(0)}.sui-2-1-3 .sui-tooltip.sui-tooltip-top-left:after{left:auto;-webkit-transform:translateX(0);transform:translateX(0);right:0}.sui-2-1-3 .sui-tooltip.sui-tooltip-bottom-left:before,.sui-2-1-3 .sui-tooltip.sui-tooltip-bottom-right:before,.sui-2-1-3 .sui-tooltip.sui-tooltip-bottom:before{top:100%;bottom:inherit;border-top-color:transparent;border-bottom-color:#000}.sui-2-1-3 .sui-tooltip.sui-tooltip-bottom-left:after,.sui-2-1-3 .sui-tooltip.sui-tooltip-bottom-right:after,.sui-2-1-3 .sui-tooltip.sui-tooltip-bottom:after{top:100%;bottom:inherit;margin:10px 0 0;-webkit-transform:translateX(0);transform:translateX(0)}.sui-2-1-3 .sui-tooltip.sui-tooltip-bottom:after{-webkit-transform:translateX(-50%);transform:translateX(-50%)}.sui-2-1-3 .sui-tooltip.sui-tooltip-bottom-right:after{left:0}.sui-2-1-3 .sui-tooltip.sui-tooltip-bottom-left:after{left:auto;right:0}.sui-2-1-3 .sui-tooltip.sui-tooltip-left:before{border-top-color:transparent;border-left-color:#000}.sui-2-1-3 .sui-tooltip.sui-tooltip-left:after,.sui-2-1-3 .sui-tooltip.sui-tooltip-left:before{top:50%;right:100%;bottom:inherit;left:inherit;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.sui-2-1-3 .sui-tooltip.sui-tooltip-left:after{margin:0 10px 0 0}.sui-2-1-3 .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-3 .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-3 .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-3 .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-3 .select-container .dropdown-handle i:before{vertical-align:middle;font-size:12px}.sui-2-1-3 .select-container.sui-mobile-nav{background-color:#fff;margin-bottom:30px}@media (max-width:782px){.sui-2-1-3 .select-container.sui-mobile-nav{margin-bottom:20px}}.sui-2-1-3 .select-container.sui-mobile-nav .dropdown-handle{background-color:#fff;font-size:13px}.sui-2-1-3 .select-container:hover{border-color:#ddd}.sui-2-1-3 .select-container:hover .list-value{color:#333}.sui-2-1-3 .select-container:hover .list-results{border-left-color:#ddd;border-right-color:#ddd;border-bottom-color:#ddd}.sui-2-1-3 .select-container:hover .dropdown-handle{border-top-color:#ddd;border-right-color:#ddd}.sui-2-1-3 .select-container.active{z-index:99999;background:#f8f8f8}.sui-2-1-3 .select-container.active .list-value{background:#f8f8f8;border-radius:3px 0 0 0;color:#333}.sui-2-1-3 .select-container.active .dropdown-handle{border-color:#ddd;border-bottom-right-radius:3px}.sui-2-1-3 .select-container.active .list-results{left:0;right:0;width:auto;display:block;-webkit-transition-duration:0ms;transition-duration:0ms}.sui-2-1-3 .select-container.active.sui-mobile-nav .dropdown-handle{background-color:transparent;font-size:13px}.sui-2-1-3 .select-container.active:hover{border-color:#ddd}.sui-2-1-3 .select-container.active:hover .list-value{color:#333}.sui-2-1-3 .select-container.active:hover .list-results{border-color:#ddd}.sui-2-1-3 .select-container.active:hover .list-results li{opacity:1}.sui-2-1-3 .select-container.active:hover .dropdown-handle{border-color:#ddd;color:#ddd}.sui-2-1-3 .select-list-container{position:relative;display:block;vertical-align:middle;padding-right:45px;zoom:1}.sui-2-1-3 .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-3 .select-list-container .list-results,.sui-2-1-3 .select-list-container .list-value{font:500 15px/25px Roboto,Arial,sans-serif;-webkit-transition-duration:.3s;transition-duration:.3s}.sui-2-1-3 .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-3 .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-3 .select-list-container .list-results .optgroup{cursor:default}.sui-2-1-3 .select-list-container .list-results .optgroup li{padding-left:30px;cursor:pointer}.sui-2-1-3 .select-list-container .list-results .optgroup li.optgroup-label{padding-left:10px;color:#aaa;cursor:default;pointer-events:none}.sui-2-1-3 .select-list-container .list-results li:last-child{border-radius:0 0 3px 3px}.sui-2-1-3 .select-list-container .list-results li:hover{background:#f2f2f2;color:#333}.sui-2-1-3 .select-list-container .list-results .optgroup li.optgroup-label:hover{background:none}.sui-2-1-3 .select-list-container .list-results .current{background:#888;color:#fff}.sui-2-1-3 .list-table>tbody>.select-open td,.sui-2-1-3 .list-table>tfoot>.select-open th,.sui-2-1-3 .list-table>thead>.select-open th{z-index:9}.sui-2-1-3 .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-3 .sui-tag.sui-tag-success{background-color:#1abc9c;color:#fff}.sui-2-1-3 .sui-tag.sui-tag-error{background-color:#ff7f83;color:#fff}.sui-2-1-3 .sui-tag.sui-tag-inactive{background-color:#e6e6e6;color:#aaa}.sui-2-1-3 .sui-tag.sui-tag-disabled{background-color:#f8f8f8;color:#aaa}.sui-2-1-3 .sui-tag.sui-tag-upgrade{background-color:#1abc9c;color:#fff}.sui-2-1-3 .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-3 .sui-inline-label,.sui-2-1-3 .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-3 label[for]{cursor:pointer}.sui-2-1-3 .sui-label-link{margin-left:auto;margin-right:0;font-weight:400;color:#888}.sui-2-1-3 .sui-inline-label{display:inline-block;margin:0;padding:0}.sui-2-1-3 .sui-form-control,.sui-2-1-3 .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-3 .sui-form-control::-ms-expand,.sui-2-1-3 .sui-upload-group::-ms-expand{border:0;background-color:transparent}.sui-2-1-3 .sui-form-control[disabled],.sui-2-1-3 .sui-upload-group[disabled],fieldset[disabled] .sui-2-1-3 .sui-form-control,fieldset[disabled] .sui-2-1-3 .sui-upload-group{cursor:not-allowed}.sui-2-1-3 .sui-form-control:focus,.sui-2-1-3 .sui-form-control:hover,.sui-2-1-3 .sui-upload-group:focus,.sui-2-1-3 .sui-upload-group:hover{background-color:#fff;border:1px solid #ddd}.sui-2-1-3 .sui-form-control:focus,.sui-2-1-3 .sui-upload-group:focus{color:#333;outline:0;background-color:#fff}.sui-2-1-3 .sui-form-control::-webkit-input-placeholder,.sui-2-1-3 .sui-upload-group::-webkit-input-placeholder{color:#ddd}.sui-2-1-3 .sui-form-control:-ms-input-placeholder,.sui-2-1-3 .sui-form-control::-ms-input-placeholder,.sui-2-1-3 .sui-upload-group:-ms-input-placeholder,.sui-2-1-3 .sui-upload-group::-ms-input-placeholder{color:#ddd}.sui-2-1-3 .sui-form-control::placeholder,.sui-2-1-3 .sui-upload-group::placeholder{color:#ddd}.sui-2-1-3 textarea.sui-form-control,.sui-2-1-3 textarea.sui-upload-group{line-height:20px;height:auto;max-width:100%;resize:vertical}.sui-2-1-3 select.sui-form-control,.sui-2-1-3 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-3 .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-3 .sui-form-field{margin-bottom:30px}@media (max-width:782px){.sui-2-1-3 .sui-form-field{margin-bottom:20px}}.sui-2-1-3 .sui-form-field-error .sui-form-control,.sui-2-1-3 .sui-form-field-error .sui-upload-group{border-bottom:2px solid #ff7f83}.sui-2-1-3 .sui-error-message{display:block;margin-top:8px;color:#ff7f83;font-size:12px;line-height:16px;font-weight:500}.sui-2-1-3 .sui-description{display:block;margin-top:5px;color:#888;font-size:13px;line-height:16px;font-weight:400}.sui-2-1-3 .sui-description.sui-toggle-description{margin-left:48px}.sui-2-1-3 .sui-description.sui-checkbox-description,.sui-2-1-3 .sui-description.sui-radio-description{margin:0 27px 5px}.sui-2-1-3 .sui-password-group{position:relative}.sui-2-1-3 .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-3 .sui-password-group .sui-password-toggle:hover{background-color:rgba(0,0,0,.03)}.sui-2-1-3 .sui-password-group .sui-password-toggle:hover i:before{color:#666}.sui-2-1-3 .sui-checkbox,.sui-2-1-3 .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-3 .sui-checkbox span:not(.sui-description),.sui-2-1-3 .sui-radio span:not(.sui-description){-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-3 .sui-checkbox span:not(.sui-description):before,.sui-2-1-3 .sui-radio span:not(.sui-description):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-3 .sui-checkbox input:checked+span:not(.sui-description),.sui-2-1-3 .sui-radio input:checked+span:not(.sui-description){background-color:#17a8e3}.sui-2-1-3 .sui-checkbox input:checked+span:not(.sui-description):before,.sui-2-1-3 .sui-radio input:checked+span:not(.sui-description):before{opacity:1}.sui-2-1-3 .sui-checkbox .sui-description,.sui-2-1-3 .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-3 .sui-checkbox .sui-description.sui-description-sm,.sui-2-1-3 .sui-radio .sui-description.sui-description-sm{font-size:13px}.sui-2-1-3 .sui-checkbox input[disabled]+span:not(.sui-description),.sui-2-1-3 .sui-radio input[disabled]+span:not(.sui-description),fieldset[disabled] .sui-2-1-3 .sui-checkbox+span:not(.sui-description),fieldset[disabled] .sui-2-1-3 .sui-radio+span:not(.sui-description){cursor:not-allowed;opacity:.5}.sui-2-1-3 .sui-checkbox input[disabled]+span+span.sui-description,.sui-2-1-3 .sui-radio input[disabled]+span+span.sui-description{color:#aaa;cursor:not-allowed}.sui-2-1-3 .sui-checkbox span:not(.sui-description){border-radius:3px}.sui-2-1-3 .sui-checkbox+.sui-checkbox{margin-top:10px}.sui-2-1-3 .sui-radio span:not(.sui-description){border-radius:50%}.sui-2-1-3 .sui-radio+.sui-radio{margin-top:10px}.sui-2-1-3 .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-3 .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-3 .sui-upload-label{width:100%}.sui-2-1-3 .sui-upload-label:focus .sui-upload-button,.sui-2-1-3 .sui-upload-label:hover .sui-upload-button{background-color:#888;border-color:#888;color:#fff}.sui-2-1-3 .sui-upload-message{font-weight:400}.sui-2-1-3 .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-3 .sui-tabs:after,.sui-2-1-3 .sui-tabs:before{content:"";display:table;clear:both}.sui-2-1-3 .sui-tabs .sui-tab{float:left}.sui-2-1-3 .sui-tabs .sui-tab:first-child label{border-top-left-radius:5px}.sui-2-1-3 .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-3 .sui-tabs .sui-tab input[type=radio]{display:none}.sui-2-1-3 .sui-tabs .sui-tab input[type=radio]:checked+label{background-color:#fff;color:#777771;height:61px;z-index:3}.sui-2-1-3 .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-3 .sui-tabs .sui-tab .sui-tab-content{padding:20px 0 0}}.sui-2-1-3 .sui-tabs .sui-tab input[type=radio]:checked~.sui-tab-content{display:block}.sui-2-1-3 .sui-tabs .sui-tab>.active{color:#333;border-bottom:2px solid #333;z-index:10}.sui-2-1-3 .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-3 .sui-row-with-sidenav{display:block}}.sui-2-1-3 .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-3 .sui-row-with-sidenav .sui-sidenav{display:block;width:100%;padding:0}}.sui-2-1-3 .sui-row-with-sidenav .sui-sidenav ul{padding:0}.sui-2-1-3 .sui-row-with-sidenav .sui-sidenav li{list-style:none;margin-bottom:6px}.sui-2-1-3 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab{padding:5px 15px;height:30px;line-height:1.5em}.sui-2-1-3 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab.current{background-color:#e6e6e6;border-radius:20px}.sui-2-1-3 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab.current a{color:#333;font-weight:500}.sui-2-1-3 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab .sui-tag,.sui-2-1-3 .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-3 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab i{top:-23px;margin-left:-10px}.sui-2-1-3 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs .sui-vertical-tab i:before{font-size:21px}.sui-2-1-3 .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-3 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs a:focus,.sui-2-1-3 .sui-row-with-sidenav .sui-sidenav .sui-vertical-tabs a:hover{color:#333}@media (max-width:1100px){.sui-2-1-3 .sui-row-with-sidenav .sui-sidenav .sui-sidenav-hide-md{display:none}}@media (min-width:1100px){.sui-2-1-3 .sui-row-with-sidenav .sui-sidenav .sui-sidenav-hide-lg{display:none}}.sui-2-1-3 .sui-row-with-sidenav .sui-box{display:block;position:relative;vertical-align:top}@media (max-width:1100px){.sui-2-1-3 .sui-row-with-sidenav .sui-box{display:block}}.sui-2-1-3 .sui-dropdown{position:relative;display:inline-block;text-align:left}.sui-2-1-3 .sui-dropdown-anchor{display:inline-block;color:#888}.sui-2-1-3 .sui-dropdown-anchor:active,.sui-2-1-3 .sui-dropdown-anchor:focus,.sui-2-1-3 .sui-dropdown-anchor:hover,.sui-2-1-3 .sui-dropdown-anchor:hover:not(:focus):not(:active),.sui-2-1-3 .sui-dropdown.open .sui-dropdown-anchor{color:#17a8e3}.sui-2-1-3 .sui-dropdown.open ul{display:block;list-style:none}.sui-2-1-3 .sui-dropdown.open:after,.sui-2-1-3 .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-3 .sui-dropdown.open:after{border-color:#fff transparent;z-index:11;top:24px}.sui-2-1-3 .sui-dropdown.open:before{border-color:#e6e6e6 transparent;z-index:10;top:23px}.sui-2-1-3 .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-3 .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-3 .sui-dropdown ul li a{font-weight:300;color:inherit}.sui-2-1-3 .sui-dropdown ul li a:hover{color:inherit}.sui-2-1-3 .sui-dropdown ul li:hover:not(.sui-dropdown-label){background:#f2f2f2;color:#333}.sui-2-1-3 .sui-dropdown ul li.active{background:#f8f8f8;color:#333}.sui-2-1-3 .sui-dropdown ul li.current{background:#888;color:#fff}.sui-2-1-3 .sui-dropdown ul li.sui-dropdown-label{border-bottom:1px solid #e6e6e6;line-height:30px;cursor:default;color:#666}.sui-2-1-3 .sui-dropdown.sui-dropdown-right ul{left:-22px;-webkit-transform:none;transform:none}.sui-2-1-3 .sui-dropdown.sui-dropdown-center ul{left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.sui-2-1-3 .sui-dropdown.wds-item-loading{font-size:18px}.sui-2-1-3 .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-3 .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-3 .sui-circle-score svg{height:100%;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:center;transform-origin:center}.sui-2-1-3 .sui-circle-score svg circle{fill:none;stroke-linecap:butt}.sui-2-1-3 .sui-circle-score svg circle:first-child{stroke:#f2f2f2}.sui-2-1-3 .sui-circle-score svg circle:last-child{stroke:#1abc9c}.sui-2-1-3 .sui-circle-score.loaded{opacity:1}.sui-2-1-3 .sui-circle-score-label{margin-left:10px;font-weight:500}.sui-2-1-3 .sui-circle-score-sm{height:30px}.sui-2-1-3 .sui-circle-score-lg{height:120px}.sui-2-1-3 .sui-circle-score-lg .sui-circle-score-label{display:none}.sui-2-1-3 .sui-grade-aplus svg circle:last-child,.sui-2-1-3 .sui-grade-a svg circle:last-child,.sui-2-1-3 .sui-grade-b svg circle:last-child{stroke:#1abc9c}.sui-2-1-3 .sui-grade-c svg circle:last-child,.sui-2-1-3 .sui-grade-d svg circle:last-child{stroke:#fecf2f}.sui-2-1-3 .sui-grade-e svg circle:last-child,.sui-2-1-3 .sui-grade-f svg circle:last-child{stroke:#ff7f83}.sui-2-1-3 #wpfooter{display:none}.sui-2-1-3 .sui-footer{text-align:center;margin-top:50px;color:#aaa;font-size:13px}.sui-2-1-3 .sui-footer i:before{font-size:11px;line-height:22px;margin:0 3px}.sui-2-1-3 #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-3 #sui-cross-sell-footer>div>span{position:relative;color:#888;background-color:#f1f1f1;padding:0 30px;font-size:16px;top:8px}.sui-2-1-3 #sui-cross-sell-footer h3{font-size:22px;font-weight:700;line-height:30px;text-transform:none}.sui-2-1-3 .sui-cross-sell-modules{margin-top:30px}.sui-2-1-3 .sui-cross-sell-modules .sui-cross-1,.sui-2-1-3 .sui-cross-sell-modules .sui-cross-2,.sui-2-1-3 .sui-cross-sell-modules .sui-cross-3{min-height:150px;border-radius:5px 5px 0 0}.sui-2-1-3 .sui-cross-sell-modules .sui-cross-1>span,.sui-2-1-3 .sui-cross-sell-modules .sui-cross-2>span,.sui-2-1-3 .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-3 .sui-cross-sell-modules .sui-cross-1{background:url(../image/plugins-smush.jpg) 50%;background-size:cover}.sui-2-1-3 .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-3 .sui-cross-sell-modules .sui-cross-1>span{background-image:url(../image/plugins-smush-icon@2x.png)}}.sui-2-1-3 .sui-cross-sell-modules .sui-cross-2{background:url(../image/plugins-defender.jpg) 50%;background-size:cover}.sui-2-1-3 .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-3 .sui-cross-sell-modules .sui-cross-2>span{background-image:url(../image/plugins-defender-icon@2x.png)}}.sui-2-1-3 .sui-cross-sell-modules .sui-cross-3{background:url(../image/plugins-crawl.jpg) 50%;background-size:cover}.sui-2-1-3 .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-3 .sui-cross-sell-modules .sui-cross-3>span{background-image:url(../image/plugins-crawl-icon@2x.png)}}.sui-2-1-3 .sui-cross-sell-modules .sui-box-body{text-align:center;border-radius:0 0 5px 5px}.sui-2-1-3 .sui-cross-sell-modules .sui-box-body p{color:#888;font-size:13px;line-height:20px;margin-bottom:30px}.sui-2-1-3 .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-3 .sui-cross-sell-bottom{text-align:center;margin-top:50px}.sui-2-1-3 .sui-cross-sell-bottom h3{font-size:22px;font-weight:700;line-height:30px;text-transform:none}.sui-2-1-3 .sui-cross-sell-bottom p{max-width:500px;margin:20px auto 30px}.sui-2-1-3 .sui-cross-sell-bottom .sui-button{margin:0}.sui-2-1-3 .sui-cross-sell-bottom img{display:block;height:auto;max-width:100%;margin:30px auto 0}.sui-2-1-3 .sui-progress-block{background-color:#f8f8f8;border-radius:5px;width:100%;height:60px;padding:15px 30px}.sui-2-1-3 .sui-progress-block .sui-progress{overflow:hidden;width:100%}.sui-2-1-3 .sui-progress-block .sui-progress .sui-progress-text{width:65px;float:left;text-align:left}.sui-2-1-3 .sui-progress-block .sui-progress .sui-progress-text:before{margin-right:10px;position:relative;top:3px;font-size:18px}.sui-2-1-3 .sui-progress-block .sui-progress .sui-progress-text img{display:inline-block;vertical-align:middle;margin-right:10px}.sui-2-1-3 .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-3 .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-3 .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-3 .sui-progress-block .sui-progress-close{display:none}.sui-2-1-3 .sui-progress-block.sui-progress-can-close{position:relative}.sui-2-1-3 .sui-progress-block.sui-progress-can-close .sui-progress{padding-right:40px}.sui-2-1-3 .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-3 .sui-progress-block.sui-progress-can-close .sui-progress-close i:before{color:#aaa;font-size:16px;position:relative}.sui-2-1-3 .sui-progress-block.sui-progress-can-close .sui-progress-close:hover{background-color:rgba(0,0,0,.03)}.sui-2-1-3 .sui-progress-block.sui-progress-can-close .sui-progress-close:hover i:before{color:#666}.sui-2-1-3 .sui-progress-state{margin-top:10px;text-align:center}.sui-2-1-3 .sui-progress-state .sui-progress-state-text{color:#888;font-size:13px;line-height:22px}.sui-2-1-3 .sui-table{width:100%;table-layout:fixed;border:1px solid #e6e6e6;border-collapse:collapse;border-spacing:unset;border-radius:5px;color:#666;font-size:13px}.sui-2-1-3 .sui-table td,.sui-2-1-3 .sui-table th{padding:20px 15px;border-bottom:1px solid #e6e6e6}.sui-2-1-3 .sui-table td:first-child,.sui-2-1-3 .sui-table th:first-child{padding-left:30px}@media (max-width:782px){.sui-2-1-3 .sui-table td:first-child,.sui-2-1-3 .sui-table th:first-child{padding-left:0}}.sui-2-1-3 .sui-table td:last-child,.sui-2-1-3 .sui-table th:last-child{padding-right:30px}@media (max-width:782px){.sui-2-1-3 .sui-table td:last-child,.sui-2-1-3 .sui-table th:last-child{padding-right:0}}@media (max-width:782px){.sui-2-1-3 .sui-table td,.sui-2-1-3 .sui-table th{padding:20px 10px}}.sui-2-1-3 .sui-table th{white-space:nowrap;text-align:left;font-weight:500;line-height:1;color:#333}.sui-2-1-3 .sui-table tr:last-child td{border-bottom:0}@media (max-width:782px){.sui-2-1-3 .sui-table{border:0}}.sui-2-1-3 .sui-table tfoot th{border-bottom:none;border-top:1px solid #e6e6e6}.sui-2-1-3 .sui-field-list{border:1px solid #e6e6e6;border-radius:5px}.sui-2-1-3 .sui-field-list-header{padding:20px 30px}.sui-2-1-3 .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-3 .sui-field-list-item-label{margin-left:0;margin-right:auto}.sui-2-1-3 .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}.sui-2-1-3 .sui-accordion{border:0;table-layout:auto}.sui-2-1-3 .sui-accordion:after{content:"";display:table;margin-bottom:30px}@media (max-width:782px){.sui-2-1-3 .sui-accordion th,.sui-2-1-3 .sui-accordion th:first-child,.sui-2-1-3 .sui-accordion th:last-child{padding:15px 20px}}.sui-2-1-3 .sui-accordion-item{display:table-row;vertical-align:middle;cursor:pointer;-webkit-transition:background-color .2s;transition:background-color .2s}.sui-2-1-3 .sui-accordion-item,.sui-2-1-3 .sui-accordion-item+.sui-accordion-item-content{border-left:2px solid transparent}.sui-2-1-3 .sui-accordion-item.sui-success{color:inherit;border-color:#1abc9c}.sui-2-1-3 .sui-accordion-item.sui-success i:before{color:inherit}.sui-2-1-3 .sui-accordion-item.sui-success+.sui-accordion-item-content{border-color:#1abc9c}.sui-2-1-3 .sui-accordion-item.sui-warning{color:inherit;border-color:#fecf2f}.sui-2-1-3 .sui-accordion-item.sui-warning i:before{color:inherit}.sui-2-1-3 .sui-accordion-item.sui-warning+.sui-accordion-item-content{border-color:#fecf2f}.sui-2-1-3 .sui-accordion-item.sui-error{color:inherit;border-color:#ff7f83}.sui-2-1-3 .sui-accordion-item.sui-error i:before{color:inherit}.sui-2-1-3 .sui-accordion-item.sui-error+.sui-accordion-item-content{border-color:#ff7f83}.sui-2-1-3 .sui-accordion-item:focus,.sui-2-1-3 .sui-accordion-item:hover{background-color:#f8f8f8}@media (max-width:782px){.sui-2-1-3 .sui-accordion-item td,.sui-2-1-3 .sui-accordion-item td:first-child,.sui-2-1-3 .sui-accordion-item td:last-child{padding:15px 20px}}.sui-2-1-3 .sui-accordion-item td>*{vertical-align:middle}.sui-2-1-3 .sui-accordion-item--open td{background-color:#f8f8f8;border-bottom:1px solid #f8f8f8}.sui-2-1-3 .sui-accordion-item--open+.sui-accordion-item-content{display:table-row}.sui-2-1-3 .sui-accordion-item--open .sui-accordion-open-indicator i{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.sui-2-1-3 .sui-accordion-open-indicator{float:right;text-align:center}.sui-2-1-3 .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-3 .sui-accordion-open-indicator i:before{position:relative;top:2px}.sui-2-1-3 .sui-accordion-item-title{font-size:15px}.sui-2-1-3 .sui-accordion-item-title i{font-size:20px;margin-right:10px}.sui-2-1-3 .sui-accordion-item-content{display:none;background-color:#f8f8f8;border-top:0}.sui-2-1-3 .sui-accordion-item-content td{width:100%;padding:0 30px 30px}@media (max-width:782px){.sui-2-1-3 .sui-accordion-item-content td{padding:0 20px 20px}}.sui-2-1-3 .sui-accordion-item-content .sui-box{margin-bottom:0}.sui-2-1-3 .sui-code-snippet-wrapper{position:relative}.sui-2-1-3 .sui-code-snippet-wrapper [data-clipboard-target]{position:absolute;right:15px;top:15px;margin:0;min-width:auto}.sui-2-1-3 .sui-dialog[aria-hidden=true]{display:none}.sui-2-1-3 .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-3 .sui-dialog.sui-dialog-sm .sui-dialog-content{max-width:400px}@media (max-width:400px){.sui-2-1-3 .sui-dialog.sui-dialog-sm .sui-dialog-content{max-width:90%}}.sui-2-1-3 .sui-dialog.sui-dialog-sm .sui-box-header{border:none;text-align:center;display:block;position:relative}.sui-2-1-3 .sui-dialog.sui-dialog-sm .sui-box-header .sui-box-title{margin-top:30px;margin-bottom:-10px;font-size:22px}.sui-2-1-3 .sui-dialog.sui-dialog-sm .sui-box-header .sui-dialog-close{position:absolute;right:30px;top:30px}.sui-2-1-3 .sui-dialog.sui-dialog-sm .sui-box-body p{font-size:13px;line-height:22px;text-align:center}.sui-2-1-3 .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-3 .sui-dialog.sui-dialog-lg .sui-dialog-content{max-width:980px}@media (max-width:1200px){.sui-2-1-3 .sui-dialog.sui-dialog-lg .sui-dialog-content{max-width:90%}}@media (max-width:960px){.sui-2-1-3 .sui-dialog{left:36px}}@media (max-width:782px){.sui-2-1-3 .sui-dialog{left:0}}.sui-2-1-3 .sui-dialog *{-webkit-box-sizing:border-box;box-sizing:border-box}.sui-2-1-3 .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-3 .sui-dialog-overlay{left:36px}}@media (max-width:782px){.sui-2-1-3 .sui-dialog-overlay{left:0}}.sui-2-1-3 .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-3 .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-3 .sui-dialog-content .sui-box-body>*{margin-bottom:30px}@media (max-width:782px){.sui-2-1-3 .sui-dialog-content .sui-box-body>*{margin-bottom:20px}}.sui-2-1-3 .sui-dialog-content .sui-box-body>:last-child{margin-bottom:0}.sui-2-1-3 .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-3 .sui-dialog-close:before{content:")"}.sui-2-1-3 .sui-listing li{color:#777771;line-height:26px;padding:2px 0 2px 34px;position:relative}.sui-2-1-3 .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}.sui-2-1-3 .sui-pagination{display:-webkit-box;display:-ms-flexbox;display:flex;margin:15px 0;padding:0 1px;border:0;list-style:none}.sui-2-1-3 .sui-pagination li{display:block;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin:0 -1px;padding:0;border:1px solid #e6e6e6;background:#fff;list-style:none;font:500 12px/16px Roboto,Arial,sans-serif}.sui-2-1-3 .sui-pagination li a{min-width:38px;height:28px;display:block;margin:0;padding:0 5px;border:0;line-height:28px;text-align:center}.sui-2-1-3 .sui-pagination li a i{font-size:10px}.sui-2-1-3 .sui-pagination li a,.sui-2-1-3 .sui-pagination li a:visited,.sui-2-1-3 .sui-pagination li a:visited i:before,.sui-2-1-3 .sui-pagination li a i:before{color:#888}.sui-2-1-3 .sui-pagination li a:hover,.sui-2-1-3 .sui-pagination li a:hover i:before{color:#17a8e3}.sui-2-1-3 .sui-pagination li a:disabled,.sui-2-1-3 .sui-pagination li a[disabled]{pointer-events:none;color:#ddd}.sui-2-1-3 .sui-pagination li a:disabled i:before,.sui-2-1-3 .sui-pagination li a[disabled] i:before{color:#ddd}@media (max-width:782px){.sui-2-1-3 .sui-pagination li a{min-width:unset}}.sui-2-1-3 .sui-pagination li.sui-active a{pointer-events:none}.sui-2-1-3 .sui-pagination li.sui-active a,.sui-2-1-3 .sui-pagination li.sui-active a:visited{background:#f8f8f8;color:#333}.sui-2-1-3 .sui-pagination li:first-child{border-radius:5px 0 0 5px}.sui-2-1-3 .sui-pagination li:last-child{border-radius:0 5px 5px 0}@media (max-width:782px){.sui-2-1-3 .sui-pagination li{-webkit-box-flex:1;-ms-flex:1;flex:1}}.sui-2-1-3 .sui-pagination:first-child{margin-top:0}.sui-2-1-3 .sui-pagination:last-child{margin-bottom:0}@media (max-width:782px){.sui-2-1-3 .sui-pagination{margin:10px 0}}.sui-2-1-3 .sui-pagination-results{display:inline-block;color:#888;font:400 13px/22px Roboto,Arial,sans-serif}.sui-2-1-3 .sui-pagination-open-filter{width:40px;cursor:pointer;display:inline-block;margin:0;padding:0 5px;border:2px solid #ddd;border-radius:4px;font-size:12px;line-height:26px;text-align:center}.sui-2-1-3 .sui-pagination-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sui-2-1-3 .sui-pagination-wrap .sui-pagination-results+.sui-pagination{margin-left:15px}@media (max-width:782px){.sui-2-1-3 .sui-pagination-wrap .sui-pagination-results+.sui-pagination{margin-left:0}}@media (max-width:782px){.sui-2-1-3 .sui-pagination-wrap .sui-pagination-results{display:none}}.sui-2-1-3 .sui-pagination-wrap .sui-pagination+.sui-pagination-open-filter{margin-left:15px}@media (max-width:782px){.sui-2-1-3 .sui-pagination-wrap .sui-pagination+.sui-pagination-open-filter{margin-left:10px}}@media (max-width:782px){.sui-2-1-3 .sui-pagination-wrap .sui-pagination{-webkit-box-flex:1;-ms-flex:1;flex:1}}
2
  /*# sourceMappingURL=shared-ui.min.css.map*/
admin/assets/css/shared-ui.min.css.map CHANGED
@@ -1 +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: -1